@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/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). Acts as max columns when minChildWidth is set. */
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
- * - Use `minChildWidth` for responsive auto-fill grids
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurora-ds/components",
3
- "version": "0.17.10",
3
+ "version": "0.17.11",
4
4
  "type": "module",
5
5
  "description": "Aurora DS - React Components Library",
6
6
  "main": "dist/cjs/index.js",