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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fansunited-management-components",
3
- "version": "1.30.0-RC2",
3
+ "version": "1.30.0",
4
4
  "main": "index.es.js",
5
5
  "author": "Fans United",
6
6
  "description": "",
@@ -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
- setEntities: Dispatch<SetStateAction<any[]>>;
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, types, and group tags.
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>;