@aurora-ds/components 0.17.10 → 0.17.11
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 -1
- package/dist/cjs/components/layout/grid/Grid.props.d.ts +1 -4
- package/dist/cjs/index.js +13 -24
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/layout/grid/Grid.d.ts +1 -1
- package/dist/esm/components/layout/grid/Grid.props.d.ts +1 -4
- package/dist/esm/index.js +13 -24
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -558,7 +558,7 @@ declare const Card: FC<CardProps>;
|
|
|
558
558
|
type GridProps = {
|
|
559
559
|
/** Grid children elements */
|
|
560
560
|
children: ReactNode;
|
|
561
|
-
/** Number of columns (number or CSS grid-template-columns value).
|
|
561
|
+
/** Number of columns (number or CSS grid-template-columns value). */
|
|
562
562
|
columns?: number | string;
|
|
563
563
|
/** Number of rows (number or CSS grid-template-rows value). */
|
|
564
564
|
rows?: number | string;
|
|
@@ -584,8 +584,6 @@ 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/auto-fit columns */
|
|
588
|
-
minChildWidth?: CSSProperties['width'];
|
|
589
587
|
/** Accessibility label for screen readers */
|
|
590
588
|
ariaLabel?: string;
|
|
591
589
|
/** ID of element that labels this grid */
|
|
@@ -606,7 +604,7 @@ type GridProps = {
|
|
|
606
604
|
* **Usage:**
|
|
607
605
|
* - Use `columns` to define the number of columns or a custom grid-template-columns value
|
|
608
606
|
* - Use `rows` to define the number of rows or a custom grid-template-rows value
|
|
609
|
-
* -
|
|
607
|
+
* - Children with min-width will cause the grid to overflow if space is insufficient
|
|
610
608
|
*/
|
|
611
609
|
declare const Grid: FC<GridProps>;
|
|
612
610
|
|