fansunited-management-components 1.30.0-RC2 → 1.30.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/index.es.js +16610 -12144
- package/index.umd.js +1192 -187
- package/package.json +1 -1
- package/src/components/DragAndDrop/BasicSortableList/BasicSortableList.d.ts +2 -3
package/package.json
CHANGED
|
@@ -5,7 +5,6 @@ interface ISortableItem {
|
|
|
5
5
|
name: string;
|
|
6
6
|
image?: string;
|
|
7
7
|
type?: string;
|
|
8
|
-
group?: string;
|
|
9
8
|
description?: string;
|
|
10
9
|
color?: string;
|
|
11
10
|
}
|
|
@@ -15,11 +14,11 @@ type SortableListProps = {
|
|
|
15
14
|
noItemsToDisplay: string;
|
|
16
15
|
dragToReorder: string;
|
|
17
16
|
};
|
|
18
|
-
|
|
17
|
+
setItems: Dispatch<SetStateAction<any[]>>;
|
|
19
18
|
};
|
|
20
19
|
/**
|
|
21
20
|
* Enhanced sortable list using the `dnd-kit` library with improved UI/UX.
|
|
22
|
-
* Features rich item cards with support for images, descriptions
|
|
21
|
+
* Features rich item cards with support for images, descriptions and types.
|
|
23
22
|
* dnd-kit documentation: https://docs.dndkit.com/
|
|
24
23
|
*/
|
|
25
24
|
declare const BasicSortableList: React.FC<SortableListProps>;
|