@sistent/mui-datatables 6.1.0 → 6.2.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.
Files changed (2) hide show
  1. package/dist/index.js.map +1 -1
  2. package/package.json +18 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sistent/mui-datatables",
3
- "version": "6.1.0",
3
+ "version": "6.2.0",
4
4
  "description": "Datatables for React using Material-UI",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "docs:export": "next export docs -o docs/export",
15
15
  "docs:deploy": "npm run docs:build && npm run docs:export && firebase deploy",
16
16
  "docs:start": "next start docs",
17
- "coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --require ./test/babel-register.js --extensions js,jsx test/*.js && nyc report --reporter=html | cat coverage/lcov.info | coveralls",
17
+ "coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --require ./test/babel-register.js --extensions js,jsx test/*.js && nyc report --reporter=html",
18
18
  "coverage:html": "cross-env NODE_ENV=test nyc check-coverage --lines 55 --reporter=html --reporter=text mocha --require ./test/babel-register.js --extensions js,jsx test/*.js && nyc report --reporter=html",
19
19
  "prettier": "find src/ docs/ test/ -type f -name \"*.js\" ! -path \"*/.next/*\" | xargs prettier --write",
20
20
  "lint": "eslint src",
@@ -39,10 +39,10 @@
39
39
  "devDependencies": {
40
40
  "@babel/core": "^7.29.0",
41
41
  "@babel/plugin-external-helpers": "^7.27.1",
42
- "@babel/plugin-proposal-class-properties": "^7.18.6",
43
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
44
- "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
45
- "@babel/plugin-proposal-optional-chaining": "^7.21.0",
42
+ "@babel/plugin-transform-class-properties": "^7.25.9",
43
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6",
44
+ "@babel/plugin-transform-object-rest-spread": "^7.25.9",
45
+ "@babel/plugin-transform-optional-chaining": "^7.25.9",
46
46
  "@babel/plugin-transform-async-to-generator": "^7.28.6",
47
47
  "@babel/plugin-transform-runtime": "^7.29.0",
48
48
  "@babel/preset-env": "^7.29.2",
@@ -58,18 +58,17 @@
58
58
  "@rollup/plugin-commonjs": "^29.0.2",
59
59
  "@rollup/plugin-node-resolve": "^16.0.3",
60
60
  "@rollup/plugin-replace": "^6.0.3",
61
- "babel-eslint": "^10.1.0",
61
+ "@babel/eslint-parser": "^7.27.1",
62
62
  "babel-loader": "^10.1.1",
63
63
  "babel-plugin-istanbul": "^7.0.1",
64
64
  "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
65
- "chai": "^6.2.2",
65
+ "chai": "^5.3.3",
66
66
  "core-js": "^3.49.0",
67
- "coveralls": "^3.1.1",
68
67
  "cross-env": "^10.1.0",
69
68
  "css-loader": "^7.1.4",
70
69
  "enzyme": "^3.11.0",
71
70
  "eslint": "^10.1.0",
72
- "eslint-loader": "^4.0.2",
71
+ "eslint-webpack-plugin": "^5.0.3",
73
72
  "eslint-plugin-filenames": "^1.3.2",
74
73
  "eslint-plugin-import": "^2.32.0",
75
74
  "eslint-plugin-jsx-a11y": "^6.10.2",
@@ -122,11 +121,18 @@
122
121
  "prop-types": "^15.8.1",
123
122
  "react-dnd": "^16.0.1",
124
123
  "react-dnd-html5-backend": "^16.0.1",
125
- "react-to-print": "^3.3.0",
124
+ "react-to-print": "^2.15.1",
126
125
  "tss-react": "^4.9.20"
127
126
  },
127
+ "engines": {
128
+ "node": ">=20"
129
+ },
128
130
  "overrides": {
129
- "cheerio": "1.0.0-rc.12"
131
+ "cheerio": "1.0.0-rc.12",
132
+ "test-exclude": "^8.0.0",
133
+ "diff": "^8.0.4",
134
+ "minimatch": ">=3.1.4",
135
+ "serialize-javascript": "^7.0.4"
130
136
  },
131
137
  "side-effects": false,
132
138
  "nyc": {