@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/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/auto-fit columns */
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
 
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.12",
4
4
  "type": "module",
5
5
  "description": "Aurora DS - React Components Library",
6
6
  "main": "dist/cjs/index.js",