Skip to content
This repository was archived by the owner on Sep 19, 2024. It is now read-only.

Commit 0d604ea

Browse files
committed
Bump deps.
1 parent 4bca060 commit 0d604ea

File tree

4 files changed

+1981
-1925
lines changed

4 files changed

+1981
-1925
lines changed

.eslintrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"browser": true,
44
"shared-node-browser": true,
55
"node": true,
6-
"es2020": true
6+
"es2021": true
77
},
88
"extends": [
99
"airbnb",
@@ -34,7 +34,7 @@
3434
],
3535
"parser": "@typescript-eslint/parser",
3636
"parserOptions": {
37-
"ecmaVersion": 2020,
37+
"ecmaVersion": 2021,
3838
"sourceType": "module",
3939
"project": "./tsconfig.json",
4040
"ecmaFeatures": {

package.json

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nosferatu500/react-sortable-tree",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"description": "Drag-and-drop sortable component for nested data and hierarchies",
55
"main": "./index.js",
66
"types": "./index.d.ts",
@@ -65,38 +65,37 @@
6565
"license": "MIT",
6666
"bugs": "https://github.com/nosferatu500/react-sortable-tree/issues",
6767
"dependencies": {
68-
"@nosferatu500/react-dnd-scrollzone": "^2.0.8",
68+
"@nosferatu500/react-dnd-scrollzone": "^2.0.9",
6969
"lodash.isequal": "^4.5.0",
70-
"react-dnd": "14.0.4",
70+
"react-dnd": "^14.0.5",
7171
"react-dnd-html5-backend": "^14.1.0",
72-
"react-virtuoso": "^2.11.0"
72+
"react-virtuoso": "^2.11.2"
7373
},
7474
"devDependencies": {
75-
"@babel/core": "^7.17.10",
75+
"@babel/core": "^7.18.0",
7676
"@babel/eslint-parser": "^7.17.0",
7777
"@babel/helper-module-imports": "^7.16.7",
78-
"@babel/plugin-transform-react-jsx": "^7.17.3",
79-
"@babel/preset-env": "^7.17.10",
80-
"@babel/types": "^7.17.10",
81-
"@nosferatu500/theme-file-explorer": "^3.0.16",
78+
"@babel/plugin-transform-react-jsx": "^7.17.12",
79+
"@babel/preset-env": "^7.18.0",
80+
"@babel/types": "^7.18.0",
8281
"@rollup/plugin-babel": "^5.3.1",
8382
"@rollup/plugin-node-resolve": "^13.3.0",
8483
"@rollup/plugin-typescript": "^8.3.2",
8584
"@storybook/addon-postcss": "^2.0.0",
86-
"@storybook/addons": "^6.4.22",
87-
"@storybook/react": "^6.4.22",
88-
"@storybook/theming": "^6.4.22",
85+
"@storybook/addons": "^6.5.3",
86+
"@storybook/react": "^6.5.3",
87+
"@storybook/theming": "^6.5.3",
8988
"@types/babel-plugin-macros": "^2.8.5",
9089
"@types/lodash.isequal": "^4.5.6",
91-
"@types/react": "^17.0.44",
92-
"@types/react-dom": "^17.0.16",
93-
"@typescript-eslint/eslint-plugin": "^5.22.0",
94-
"@typescript-eslint/parser": "^5.22.0",
90+
"@types/react": "^17.0.45",
91+
"@types/react-dom": "^17.0.17",
92+
"@typescript-eslint/eslint-plugin": "^5.25.0",
93+
"@typescript-eslint/parser": "^5.25.0",
9594
"acorn-jsx": "^5.3.2",
9695
"autoprefixer": "^10.4.7",
9796
"babel-plugin-macros": "^3.1.0",
98-
"esbuild": "^0.14.38",
99-
"eslint": "^8.14.0",
97+
"esbuild": "^0.14.39",
98+
"eslint": "^8.16.0",
10099
"eslint-config-airbnb": "^19.0.4",
101100
"eslint-config-airbnb-typescript": "^17.0.0",
102101
"eslint-config-prettier": "^8.5.0",
@@ -105,20 +104,20 @@
105104
"eslint-plugin-jsx-a11y": "^6.5.1",
106105
"eslint-plugin-prettier": "^4.0.0",
107106
"eslint-plugin-promise": "^6.0.0",
108-
"eslint-plugin-react": "^7.29.4",
107+
"eslint-plugin-react": "^7.30.0",
109108
"eslint-plugin-react-hooks": "^4.5.0",
110109
"eslint-plugin-sonarjs": "^0.13.0",
111-
"eslint-plugin-storybook": "^0.5.11",
110+
"eslint-plugin-storybook": "^0.5.12",
112111
"eslint-plugin-unicorn": "^42.0.0",
113112
"json": "^11.0.0",
114-
"postcss": "^8.4.13",
113+
"postcss": "^8.4.14",
115114
"prettier": "^2.6.2",
116115
"prop-types": "^15.8.1",
117116
"react": "^17.0.2",
118117
"react-dnd-touch-backend": "^14.1.1",
119118
"react-dom": "^17.0.2",
120119
"rimraf": "^3.0.2",
121-
"rollup": "^2.71.1",
120+
"rollup": "^2.74.1",
122121
"rollup-plugin-esbuild": "^4.9.1",
123122
"rollup-plugin-postcss": "^4.0.2",
124123
"shx": "^0.3.4",

stories/themes.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React, { Component } from 'react'
2-
import FileExplorerTheme from '@nosferatu500/theme-file-explorer'
32
import SortableTree from '../src'
43
// In your own app, you would need to use import styles once in the app
54
// import 'react-sortable-tree/styles.css';
@@ -49,7 +48,6 @@ export default class App extends Component {
4948
return (
5049
<div style={{ height: 300 }}>
5150
<SortableTree
52-
theme={FileExplorerTheme}
5351
treeData={this.state.treeData}
5452
onChange={(treeData) => this.setState({ treeData })}
5553
/>

0 commit comments

Comments
 (0)