material-react-table 1.9.3 → 1.9.4
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/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"version": "1.9.
|
2
|
+
"version": "1.9.4",
|
3
3
|
"license": "MIT",
|
4
4
|
"name": "material-react-table",
|
5
5
|
"description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.",
|
@@ -45,29 +45,32 @@
|
|
45
45
|
"node": ">=14"
|
46
46
|
},
|
47
47
|
"scripts": {
|
48
|
-
"build": "
|
49
|
-
"
|
50
|
-
"
|
48
|
+
"build": "pnpm lib:build",
|
49
|
+
"build-locales": "pnpm lib:build-locales",
|
50
|
+
"build-no-locales": "pnpm lib:build-no-locales",
|
51
|
+
"lib:build": "rm -rf dist && pnpm build-no-locales && pnpm build-locales",
|
52
|
+
"lib:build-locales": "rm -rf locales && rollup --config rollup-locales.config.mjs",
|
53
|
+
"lib:build-no-locales": "rm -rf dist && rollup --config rollup.config.mjs && size-limit",
|
51
54
|
"lint": "eslint .",
|
52
55
|
"size": "size-limit"
|
53
56
|
},
|
54
57
|
"devDependencies": {
|
55
|
-
"@babel/core": "^7.21.
|
58
|
+
"@babel/core": "^7.21.4",
|
56
59
|
"@babel/preset-react": "^7.18.6",
|
57
60
|
"@emotion/react": "^11.10.6",
|
58
61
|
"@emotion/styled": "^11.10.6",
|
59
|
-
"@mui/icons-material": "^5.11.
|
60
|
-
"@mui/material": "^5.
|
62
|
+
"@mui/icons-material": "^5.11.16",
|
63
|
+
"@mui/material": "^5.12.0",
|
61
64
|
"@rollup/plugin-babel": "^6.0.3",
|
62
|
-
"@rollup/plugin-node-resolve": "^15.0.
|
63
|
-
"@rollup/plugin-typescript": "^11.
|
65
|
+
"@rollup/plugin-node-resolve": "^15.0.2",
|
66
|
+
"@rollup/plugin-typescript": "^11.1.0",
|
64
67
|
"@size-limit/preset-small-lib": "^8.2.4",
|
65
|
-
"@types/node": "^18.15.
|
66
|
-
"@types/react": "^18.0.
|
68
|
+
"@types/node": "^18.15.11",
|
69
|
+
"@types/react": "^18.0.35",
|
67
70
|
"@types/react-dom": "^18.0.11",
|
68
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
69
|
-
"@typescript-eslint/parser": "^5.
|
70
|
-
"eslint": "^8.
|
71
|
+
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
72
|
+
"@typescript-eslint/parser": "^5.58.0",
|
73
|
+
"eslint": "^8.38.0",
|
71
74
|
"eslint-plugin-mui-path-imports": "^0.0.15",
|
72
75
|
"react": "^18.2.0",
|
73
76
|
"react-dom": "^18.2.0",
|
@@ -78,7 +81,7 @@
|
|
78
81
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
79
82
|
"size-limit": "^8.2.4",
|
80
83
|
"tslib": "^2.5.0",
|
81
|
-
"typescript": "^5.0.
|
84
|
+
"typescript": "^5.0.4"
|
82
85
|
},
|
83
86
|
"peerDependencies": {
|
84
87
|
"@emotion/react": ">=11",
|
@@ -218,6 +218,8 @@ export const MRT_TableRoot: any = <TData extends Record<string, any> = {}>(
|
|
218
218
|
props.localization,
|
219
219
|
props.positionActionsColumn,
|
220
220
|
props.renderDetailPanel,
|
221
|
+
props.renderRowActionMenuItems,
|
222
|
+
props.renderRowActions,
|
221
223
|
props.state?.columnOrder,
|
222
224
|
props.state?.grouping,
|
223
225
|
],
|