@sistent/mui-datatables 5.1.3 → 6.0.1
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/README.md +40 -62
- package/dist/index.js +23 -101
- package/dist/index.js.map +1 -1
- package/package.json +13 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sistent/mui-datatables",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "Datatables for React using Material-UI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|
|
26
|
-
"url": "git+https://github.com/
|
|
26
|
+
"url": "git+https://github.com/layer5io/mui-datatables.git"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"material-ui",
|
|
@@ -33,19 +33,22 @@
|
|
|
33
33
|
"author": "Lee Calcote <leecalcote@gmail.com>",
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"bugs": {
|
|
36
|
-
"url": "https://github.com/
|
|
36
|
+
"url": "https://github.com/layer5io/mui-datatables/issues"
|
|
37
37
|
},
|
|
38
|
-
"homepage": "https://github.com/
|
|
38
|
+
"homepage": "https://github.com/layer5io/mui-datatables#readme",
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@babel/core": "^7.10.2",
|
|
41
41
|
"@babel/plugin-external-helpers": "^7.10.1",
|
|
42
42
|
"@babel/plugin-proposal-class-properties": "^7.10.1",
|
|
43
|
+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
|
43
44
|
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
|
|
45
|
+
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
|
44
46
|
"@babel/plugin-transform-async-to-generator": "^7.12.1",
|
|
45
47
|
"@babel/plugin-transform-runtime": "^7.12.1",
|
|
46
48
|
"@babel/preset-env": "^7.12.1",
|
|
47
49
|
"@babel/preset-react": "^7.12.1",
|
|
48
50
|
"@babel/register": "^7.10.1",
|
|
51
|
+
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
|
|
49
52
|
"@emotion/react": "^11.14.0",
|
|
50
53
|
"@emotion/styled": "^11.14.1",
|
|
51
54
|
"@lopatnov/rollup-plugin-uglify": "^2.1.1",
|
|
@@ -55,7 +58,6 @@
|
|
|
55
58
|
"@rollup/plugin-commonjs": "^12.0.0",
|
|
56
59
|
"@rollup/plugin-node-resolve": "^8.0.0",
|
|
57
60
|
"@rollup/plugin-replace": "^2.3.2",
|
|
58
|
-
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
|
|
59
61
|
"babel-eslint": "^10.1.0",
|
|
60
62
|
"babel-loader": "^8.1.0",
|
|
61
63
|
"babel-plugin-istanbul": "^6.0.0",
|
|
@@ -73,6 +75,7 @@
|
|
|
73
75
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
74
76
|
"eslint-plugin-react": "^7.21.5",
|
|
75
77
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
78
|
+
"html-webpack-plugin": "^4.5.2",
|
|
76
79
|
"ignore-styles": "^5.0.1",
|
|
77
80
|
"jsdom": "^16.2.2",
|
|
78
81
|
"jsdom-global": "^3.0.2",
|
|
@@ -88,6 +91,7 @@
|
|
|
88
91
|
"react-dom": "^18.2.0",
|
|
89
92
|
"react-router-dom": "^5.0.1",
|
|
90
93
|
"react-waypoint": "^10.1.0",
|
|
94
|
+
"regenerator-runtime": "^0.14.1",
|
|
91
95
|
"rollup": "^2.3.4",
|
|
92
96
|
"rollup-pluginutils": "^2.8.2",
|
|
93
97
|
"simulant": "^0.2.2",
|
|
@@ -101,13 +105,12 @@
|
|
|
101
105
|
"@emotion/react": "^11.14.0",
|
|
102
106
|
"@mui/icons-material": "^7.3.7",
|
|
103
107
|
"@mui/material": "^7.3.7",
|
|
104
|
-
"react": "^
|
|
105
|
-
"react-dom": "^
|
|
108
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
109
|
+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
106
110
|
},
|
|
107
111
|
"dependencies": {
|
|
108
112
|
"@babel/runtime-corejs3": "^7.12.1",
|
|
109
113
|
"@emotion/cache": "^11.7.1",
|
|
110
|
-
"tss-react": "^4.9.20",
|
|
111
114
|
"clsx": "^1.1.1",
|
|
112
115
|
"lodash.assignwith": "^4.2.0",
|
|
113
116
|
"lodash.clonedeep": "^4.5.0",
|
|
@@ -122,7 +125,8 @@
|
|
|
122
125
|
"react-dnd": "^11.1.3",
|
|
123
126
|
"react-dnd-html5-backend": "^11.1.3",
|
|
124
127
|
"react-sortable-tree-patch-react-17": "^2.9.0",
|
|
125
|
-
"react-to-print": "^2.8.0"
|
|
128
|
+
"react-to-print": "^2.8.0",
|
|
129
|
+
"tss-react": "^4.9.20"
|
|
126
130
|
},
|
|
127
131
|
"overrides": {
|
|
128
132
|
"cheerio": "1.0.0-rc.12"
|