@delightui/components 0.1.57 → 0.1.58
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/molecules/GridList/GridList.types.d.ts +1 -0
- package/dist/cjs/library.js +1 -1
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/molecules/GridList/GridList.types.d.ts +1 -0
- package/dist/esm/library.js +1 -1
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1574,6 +1574,7 @@ declare const GridItem: (props: GridItemProps) => React$1.JSX.Element;
|
|
|
1574
1574
|
|
|
1575
1575
|
type GridListProps<T extends ListItemType> = Omit<ListProps<T>, 'style'> & {
|
|
1576
1576
|
columns?: number;
|
|
1577
|
+
gap?: string | number;
|
|
1577
1578
|
};
|
|
1578
1579
|
|
|
1579
1580
|
declare const GridList: <T extends ListItemType>(props: GridListProps<T>) => React__default.JSX.Element;
|