zmdms-webui 3.2.1 → 3.2.3
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/dist/es/applayout/index.css +1 -1
- package/dist/es/dynamicsetting/dynamicDrawer.js +254 -12
- package/dist/es/dynamicsetting/interface.d.ts +7 -0
- package/dist/es/table/interface.d.ts +9 -0
- package/dist/es/table/useDynamicListByColumns.js +2 -1
- package/dist/index.dark.css +2 -2
- package/dist/index.default.css +2 -2
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zmdms-webui",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.es.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
"test": "craco test",
|
|
42
42
|
"eject": "craco eject",
|
|
43
43
|
"storybook": "storybook dev -p 6006",
|
|
44
|
-
"build-storybook": "storybook build"
|
|
44
|
+
"build-storybook": "storybook build",
|
|
45
|
+
"extract:docs": "tsx scripts/extract-docs/index.ts"
|
|
45
46
|
},
|
|
46
47
|
"eslintConfig": {
|
|
47
48
|
"extends": [
|
|
@@ -97,6 +98,8 @@
|
|
|
97
98
|
"@types/react-dom": "^18.0.11",
|
|
98
99
|
"@types/react-resizable": "^3.0.4",
|
|
99
100
|
"@types/react-router-dom": "^5.3.3",
|
|
101
|
+
"@typescript-eslint/parser": "^5.62.0",
|
|
102
|
+
"@typescript-eslint/typescript-estree": "^8.58.2",
|
|
100
103
|
"@welldone-software/why-did-you-render": "^7.0.1",
|
|
101
104
|
"ahooks": "^3.8.4",
|
|
102
105
|
"antd": "^4.24.16",
|
|
@@ -134,6 +137,7 @@
|
|
|
134
137
|
"rollup-plugin-visualizer": "^5.9.0",
|
|
135
138
|
"sass": "^1.58.3",
|
|
136
139
|
"storybook": "^7.6.16",
|
|
140
|
+
"tsx": "^4.21.0",
|
|
137
141
|
"typescript": "^4.9.5",
|
|
138
142
|
"web-vitals": "^2.1.4",
|
|
139
143
|
"zmdms-utils": "^0.0.92"
|
|
@@ -155,4 +159,4 @@
|
|
|
155
159
|
"xlsx": "^0.18.5",
|
|
156
160
|
"xlsx-js-style": "^1.2.0"
|
|
157
161
|
}
|
|
158
|
-
}
|
|
162
|
+
}
|