Skip to content

Commit

Permalink
fix(masonry): reduced actions size
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafoscili committed Feb 15, 2025
1 parent 69804e1 commit f975228
Show file tree
Hide file tree
Showing 15 changed files with 79 additions and 110 deletions.
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,11 @@ After installing, you can import and use LF Widgets components in your project.
<title>LF Widgets Example</title>
<script
type="module"
src="./path/to/@lf-widgets/foundations/dist/index.js"
src="./path/to/@lf-widgets/framework/dist/framework/lf-framework.esm.js"
></script>
<script
type="module"
src="./path/to/@lf-widgets/framework/dist/index.js"
></script>
<script
type="module"
src="./path/to/@lf-widgets/core/dist/esm/lf-widgets.js"
src="./path/to/@lf-widgets/core/dist/lf-core/lf-core.esm.js"
></script>
</head>
<body>
Expand Down
8 changes: 2 additions & 6 deletions packages/assets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,11 @@ After installing, you can import and use LF Widgets components in your project.
<title>LF Widgets Example</title>
<script
type="module"
src="./path/to/@lf-widgets/foundations/dist/index.js"
src="./path/to/@lf-widgets/framework/dist/framework/lf-framework.esm.js"
></script>
<script
type="module"
src="./path/to/@lf-widgets/framework/dist/index.js"
></script>
<script
type="module"
src="./path/to/@lf-widgets/core/dist/esm/lf-widgets.js"
src="./path/to/@lf-widgets/core/dist/lf-core/lf-core.esm.js"
></script>
</head>
<body>
Expand Down
8 changes: 2 additions & 6 deletions packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,11 @@ After installing, you can import and use LF Widgets components in your project.
<title>LF Widgets Example</title>
<script
type="module"
src="./path/to/@lf-widgets/foundations/dist/index.js"
src="./path/to/@lf-widgets/framework/dist/framework/lf-framework.esm.js"
></script>
<script
type="module"
src="./path/to/@lf-widgets/framework/dist/index.js"
></script>
<script
type="module"
src="./path/to/@lf-widgets/core/dist/esm/lf-widgets.js"
src="./path/to/@lf-widgets/core/dist/lf-core/lf-core.esm.js"
></script>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/lf-chart/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ component, and resizing the chart.
| `lfSizeX` | `lf-size-x` | The width of the chart, defaults to 100%. Accepts any valid CSS format (px, %, vw, etc.). | `string` | `"100%"` |
| `lfSizeY` | `lf-size-y` | The height of the chart, defaults to 100%. Accepts any valid CSS format (px, %, vh, etc.). | `string` | `"100%"` |
| `lfStyle` | `lf-style` | Custom styling for the component. | `string` | `""` |
| `lfTypes` | -- | The type of the chart. Supported formats: Bar, Gaussian, Line, Pie, Map and Scatter. | `("bar" \| "line" \| "radar" \| "calendar" \| "scatter" \| "pie" \| "area" \| "funnel" \| "sankey" \| "candlestick" \| "heatmap" \| "bubble" \| "gaussian" \| "hbar" \| "sbar")[]` | `["line"]` |
| `lfTypes` | -- | The type of the chart. Supported formats: Bar, Gaussian, Line, Pie, Map and Scatter. | `("area" \| "line" \| "bar" \| "radar" \| "calendar" \| "scatter" \| "pie" \| "funnel" \| "sankey" \| "candlestick" \| "heatmap" \| "bubble" \| "gaussian" \| "hbar" \| "sbar")[]` | `["line"]` |
| `lfXAxis` | -- | Customization options for the x Axis. | `AxisBaseOptionCommon & { gridIndex?: number; gridId?: string; position?: CartesianAxisPosition; offset?: number; categorySortInfo?: OrdinalSortInfo; } & { mainType?: "xAxis"; } \| CategoryAxisBaseOption & { gridIndex?: number; gridId?: string; position?: CartesianAxisPosition; offset?: number; categorySortInfo?: OrdinalSortInfo; } & { mainType?: "xAxis"; } \| LogAxisBaseOption & { gridIndex?: number; gridId?: string; position?: CartesianAxisPosition; offset?: number; categorySortInfo?: OrdinalSortInfo; } & { mainType?: "xAxis"; } \| TimeAxisBaseOption & { gridIndex?: number; gridId?: string; position?: CartesianAxisPosition; offset?: number; categorySortInfo?: OrdinalSortInfo; } & { mainType?: "xAxis"; } \| ValueAxisBaseOption & { gridIndex?: number; gridId?: string; position?: CartesianAxisPosition; offset?: number; categorySortInfo?: OrdinalSortInfo; } & { mainType?: "xAxis"; }` | `null` |
| `lfYAxis` | -- | Customization options for the y Axis. | `AxisBaseOptionCommon & { gridIndex?: number; gridId?: string; position?: CartesianAxisPosition; offset?: number; categorySortInfo?: OrdinalSortInfo; } & { mainType?: "yAxis"; } \| CategoryAxisBaseOption & { gridIndex?: number; gridId?: string; position?: CartesianAxisPosition; offset?: number; categorySortInfo?: OrdinalSortInfo; } & { mainType?: "yAxis"; } \| LogAxisBaseOption & { gridIndex?: number; gridId?: string; position?: CartesianAxisPosition; offset?: number; categorySortInfo?: OrdinalSortInfo; } & { mainType?: "yAxis"; } \| TimeAxisBaseOption & { gridIndex?: number; gridId?: string; position?: CartesianAxisPosition; offset?: number; categorySortInfo?: OrdinalSortInfo; } & { mainType?: "yAxis"; } \| ValueAxisBaseOption & { gridIndex?: number; gridId?: string; position?: CartesianAxisPosition; offset?: number; categorySortInfo?: OrdinalSortInfo; } & { mainType?: "yAxis"; }` | `null` |

Expand Down
Loading

0 comments on commit f975228

Please sign in to comment.