Skip to content

Commit 4bceae9

Browse files
committed
Bump version
1 parent 35a4ebb commit 4bceae9

File tree

3 files changed

+192
-434
lines changed

3 files changed

+192
-434
lines changed

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nosferatu500/react-sortable-tree",
3-
"version": "4.0.0-beta.4",
3+
"version": "4.0.0-beta.7",
44
"description": "Drag-and-drop sortable component for nested data and hierarchies",
55
"main": "./index.js",
66
"types": "./index.d.ts",
@@ -121,7 +121,7 @@
121121
]
122122
},
123123
"dependencies": {
124-
"@nosferatu500/react-dnd-scrollzone": "^2.0.2",
124+
"@nosferatu500/react-dnd-scrollzone": "^2.0.4",
125125
"lodash.isequal": "^4.5.0",
126126
"prop-types": "^15.7.2",
127127
"react-dnd": "^14.0.4",
@@ -135,6 +135,7 @@
135135
"@babel/plugin-transform-react-jsx": "^7.14.9",
136136
"@babel/preset-env": "^7.15.8",
137137
"@babel/types": "^7.15.6",
138+
"@nosferatu500/theme-file-explorer": "^3.0.10",
138139
"@rollup/plugin-babel": "^5.3.0",
139140
"@rollup/plugin-node-resolve": "^13.0.5",
140141
"@rollup/plugin-typescript": "^8.2.5",
@@ -147,7 +148,7 @@
147148
"@types/enzyme": "^3.10.9",
148149
"@types/jest": "^27.0.2",
149150
"@types/lodash.isequal": "^4.5.5",
150-
"@types/react": "^17.0.29",
151+
"@types/react": "^17.0.30",
151152
"@types/react-dom": "^17.0.9",
152153
"@types/react-test-renderer": "^17.0.1",
153154
"@typescript-eslint/eslint-plugin": "^5.0.0",
@@ -161,7 +162,7 @@
161162
"eslint": "^8.0.1",
162163
"eslint-config-prettier": "^8.3.0",
163164
"eslint-plugin-import": "^2.25.2",
164-
"eslint-plugin-jest": "^25.0.6",
165+
"eslint-plugin-jest": "^25.2.0",
165166
"eslint-plugin-prettier": "^4.0.0",
166167
"eslint-plugin-react": "^7.26.1",
167168
"jest": "^27.2.5",
@@ -179,7 +180,7 @@
179180
"rollup-plugin-esbuild": "^4.5.0",
180181
"rollup-plugin-postcss": "^4.0.1",
181182
"shx": "^0.3.3",
182-
"ts-jest": "^27.0.5",
183+
"ts-jest": "^27.0.6",
183184
"tslib": "^2.3.1",
184185
"typescript": "^4.4.4"
185186
},

src/react-sortable-tree.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ const SortableTreeWithoutDndContext = (props) => (
890890
)
891891

892892
const SortableTree = (props) => (
893-
<DndProvider backend={HTML5Backend}>
893+
<DndProvider debugMode={props.debugMode} backend={HTML5Backend}>
894894
<SortableTreeWithoutDndContext {...props} />
895895
</DndProvider>
896896
)

0 commit comments

Comments
 (0)