@delightui/components 0.1.64 → 0.1.65
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/List/List.types.d.ts +1 -3
- package/dist/cjs/components/molecules/List/components/RepeaterList.d.ts +2 -1
- package/dist/cjs/library.js +1 -1
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/molecules/List/List.types.d.ts +1 -3
- package/dist/esm/components/molecules/List/components/RepeaterList.d.ts +2 -1
- package/dist/esm/library.js +1 -1
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +2 -4
- package/package.json +1 -1
|
@@ -44,9 +44,7 @@ export type RootListProps<T extends ListItemType> = Omit<ListProps<T>, 'data' |
|
|
|
44
44
|
*
|
|
45
45
|
* @template T - The type of the list items.
|
|
46
46
|
*/
|
|
47
|
-
export type RepeaterListProps<T extends ListItemType> = Omit<ListProps<T>, 'keyExtractor' | 'sortable' | 'updateSortOrder' | 'align' | 'wrap'
|
|
48
|
-
data: T[];
|
|
49
|
-
};
|
|
47
|
+
export type RepeaterListProps<T extends ListItemType> = Omit<ListProps<T>, 'keyExtractor' | 'sortable' | 'updateSortOrder' | 'align' | 'wrap'>;
|
|
50
48
|
/**
|
|
51
49
|
* Props for the sortable list component.
|
|
52
50
|
*
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
import { ListItemType, RepeaterListProps } from "../List.types";
|
|
2
|
-
declare const RepeaterList: <T extends ListItemType>(props: RepeaterListProps<T>) =>
|
|
3
|
+
declare const RepeaterList: <T extends ListItemType>(props: RepeaterListProps<T>) => React.JSX.Element;
|
|
3
4
|
export default RepeaterList;
|