@umami/react-zen 0.220.0 → 0.221.0
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.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +213 -163
- package/dist/index.mjs +141 -91
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -386,8 +386,8 @@ interface GridProps extends Omit<BoxProps, 'display'> {
|
|
|
386
386
|
gapX?: Responsive<Gap>;
|
|
387
387
|
gapY?: Responsive<Gap>;
|
|
388
388
|
autoFlow?: Responsive<GridAutoFlow>;
|
|
389
|
-
rows?: Responsive<GridRows
|
|
390
|
-
columns?: Responsive<GridColumns
|
|
389
|
+
rows?: Responsive<GridRows | string>;
|
|
390
|
+
columns?: Responsive<GridColumns | string>;
|
|
391
391
|
areas?: GridTemplateAreas;
|
|
392
392
|
}
|
|
393
393
|
declare function Grid({ display, justifyContent, justifyItems, alignContent, alignItems, gap, gapX, gapY, autoFlow, rows, columns, areas, className, style, children, ...props }: GridProps): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -386,8 +386,8 @@ interface GridProps extends Omit<BoxProps, 'display'> {
|
|
|
386
386
|
gapX?: Responsive<Gap>;
|
|
387
387
|
gapY?: Responsive<Gap>;
|
|
388
388
|
autoFlow?: Responsive<GridAutoFlow>;
|
|
389
|
-
rows?: Responsive<GridRows
|
|
390
|
-
columns?: Responsive<GridColumns
|
|
389
|
+
rows?: Responsive<GridRows | string>;
|
|
390
|
+
columns?: Responsive<GridColumns | string>;
|
|
391
391
|
areas?: GridTemplateAreas;
|
|
392
392
|
}
|
|
393
393
|
declare function Grid({ display, justifyContent, justifyItems, alignContent, alignItems, gap, gapX, gapY, autoFlow, rows, columns, areas, className, style, children, ...props }: GridProps): react_jsx_runtime.JSX.Element;
|