@aurora-ds/components 0.17.10 → 0.17.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/layout/grid/Grid.d.ts +1 -0
- package/dist/cjs/components/layout/grid/Grid.props.d.ts +1 -1
- package/dist/cjs/index.js +15 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/layout/grid/Grid.d.ts +1 -0
- package/dist/esm/components/layout/grid/Grid.props.d.ts +1 -1
- package/dist/esm/index.js +15 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -584,7 +584,7 @@ type GridProps = {
|
|
|
584
584
|
justifyContent?: CSSProperties['justifyContent'];
|
|
585
585
|
/** Padding inside the grid */
|
|
586
586
|
padding?: keyof Theme['spacing'];
|
|
587
|
-
/** Minimum width for auto-fill
|
|
587
|
+
/** Minimum width for each grid child. Enables responsive auto-fill behavior. */
|
|
588
588
|
minChildWidth?: CSSProperties['width'];
|
|
589
589
|
/** Accessibility label for screen readers */
|
|
590
590
|
ariaLabel?: string;
|
|
@@ -607,6 +607,7 @@ type GridProps = {
|
|
|
607
607
|
* - Use `columns` to define the number of columns or a custom grid-template-columns value
|
|
608
608
|
* - Use `rows` to define the number of rows or a custom grid-template-rows value
|
|
609
609
|
* - Use `minChildWidth` for responsive auto-fill grids
|
|
610
|
+
* - Combine `columns` + `minChildWidth` for responsive grid with max columns limit
|
|
610
611
|
*/
|
|
611
612
|
declare const Grid: FC<GridProps>;
|
|
612
613
|
|