react-dragdrop-kit 1.3.0 → 1.4.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.
@@ -30,6 +30,7 @@ export type DragDropListProps<T extends DraggableItem> = {
30
30
  dragHandle?: string;
31
31
  selectedIds?: string[];
32
32
  multiDragEnabled?: boolean;
33
+ liveReorder?: boolean;
33
34
  };
34
35
  export type DraggableItemWrapperProps<T extends DraggableItem> = {
35
36
  item: T;
package/package.json CHANGED
@@ -1,10 +1,9 @@
1
1
  {
2
2
  "name": "react-dragdrop-kit",
3
3
  "author": "Souvik Sen <https://github.com/Yourstruggle11>",
4
- "version": "1.3.0",
4
+ "version": "1.4.0",
5
5
  "description": "A flexible, lightweight React drag-and-drop kit for building sortable lists, grids, and kanban boards with ease.",
6
6
  "license": "MIT",
7
-
8
7
  "main": "dist/index.js",
9
8
  "module": "dist/index.esm.js",
10
9
  "types": "dist/src/index.d.ts",
@@ -20,8 +19,11 @@
20
19
  "require": "./dist/kanban.js"
21
20
  }
22
21
  },
23
- "files": ["dist", "README.md", "LICENSE"],
24
-
22
+ "files": [
23
+ "dist",
24
+ "README.md",
25
+ "LICENSE"
26
+ ],
25
27
  "scripts": {
26
28
  "build": "rollup -c",
27
29
  "dev": "rollup -c -w",
@@ -34,7 +36,6 @@
34
36
  "postpack": "shx rm -f ./README.md ./LICENSE",
35
37
  "prepublishOnly": "npm run build && npm run sync-docs"
36
38
  },
37
-
38
39
  "keywords": [
39
40
  "react",
40
41
  "drag-drop",
@@ -50,17 +51,14 @@
50
51
  "kanban",
51
52
  "dnd"
52
53
  ],
53
-
54
54
  "peerDependencies": {
55
55
  "react": "^16.8 || ^17 || ^18 || ^19",
56
56
  "react-dom": "^16.8 || ^17 || ^18 || ^19"
57
57
  },
58
-
59
58
  "dependencies": {
60
- "@atlaskit/pragmatic-drag-and-drop": "^1.7.4",
59
+ "@atlaskit/pragmatic-drag-and-drop": "^1.7.7",
61
60
  "@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0"
62
61
  },
63
-
64
62
  "devDependencies": {
65
63
  "@rollup/plugin-commonjs": "^25.0.0",
66
64
  "@rollup/plugin-node-resolve": "^15.0.0",
@@ -83,12 +81,13 @@
83
81
  "tslib": "^2.0.0",
84
82
  "typescript": "^5.0.0"
85
83
  },
86
-
87
84
  "repository": {
88
85
  "type": "git",
89
86
  "url": "git+https://github.com/Yourstruggle11/react-dragdrop-kit.git"
90
87
  },
91
- "bugs": { "url": "https://github.com/Yourstruggle11/react-dragdrop-kit/issues" },
88
+ "bugs": {
89
+ "url": "https://github.com/Yourstruggle11/react-dragdrop-kit/issues"
90
+ },
92
91
  "homepage": "https://github.com/Yourstruggle11/react-dragdrop-kit#readme",
93
92
  "sideEffects": false
94
93
  }