@zat-design/sisyphus-react 3.10.4 → 3.11.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/dist/index.esm.css +8 -0
- package/dist/less.esm.css +8 -0
- package/es/ProEditTable/components/RcTable/BaseTable.js +13 -2
- package/es/ProEditTable/components/RcTable/VirtualTable.d.ts +2 -5
- package/es/ProEditTable/components/RcTable/VirtualTable.js +5 -163
- package/es/ProEditTable/components/RcTable/index.d.ts +1 -1
- package/es/ProEditTable/components/RcTable/index.js +1 -1
- package/es/ProEditTable/index.js +20 -4
- package/es/ProEditTable/propsType.d.ts +1 -0
- package/es/ProEditTable/style/index.less +8 -0
- package/es/ProEditTable/utils/tools.d.ts +9 -0
- package/es/ProEditTable/utils/tools.js +277 -2
- package/es/ProForm/components/base/InputNumber/index.js +2 -1
- package/es/ProForm/utils/useForm.js +12 -6
- package/es/ProStep/components/Item/index.d.ts +3 -3
- package/es/ProStep/components/Item/index.js +51 -16
- package/es/ProStep/components/Listener/index.js +13 -4
- package/es/ProStep/index.d.ts +1 -1
- package/es/ProStep/index.js +20 -8
- package/es/ProStep/propsType.d.ts +12 -1
- package/es/ProStep/utils/index.d.ts +3 -0
- package/es/ProStep/utils/index.js +14 -1
- package/lib/ProEditTable/components/RcTable/BaseTable.js +11 -2
- package/lib/ProEditTable/components/RcTable/VirtualTable.d.ts +2 -5
- package/lib/ProEditTable/components/RcTable/VirtualTable.js +3 -161
- package/lib/ProEditTable/components/RcTable/index.d.ts +1 -1
- package/lib/ProEditTable/index.js +19 -3
- package/lib/ProEditTable/propsType.d.ts +1 -0
- package/lib/ProEditTable/style/index.less +8 -0
- package/lib/ProEditTable/utils/tools.d.ts +9 -0
- package/lib/ProEditTable/utils/tools.js +278 -2
- package/lib/ProForm/components/base/InputNumber/index.js +2 -1
- package/lib/ProForm/utils/useForm.js +12 -6
- package/lib/ProStep/components/Item/index.d.ts +3 -3
- package/lib/ProStep/components/Item/index.js +51 -16
- package/lib/ProStep/components/Listener/index.js +13 -4
- package/lib/ProStep/index.d.ts +1 -1
- package/lib/ProStep/index.js +20 -8
- package/lib/ProStep/propsType.d.ts +12 -1
- package/lib/ProStep/utils/index.d.ts +3 -0
- package/lib/ProStep/utils/index.js +15 -1
- package/package.json +7 -6
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zat-design/sisyphus-react",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.11.1",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"main": "lib/index.js",
|
6
6
|
"module": "es/index.js",
|
@@ -61,16 +61,16 @@
|
|
61
61
|
"@dnd-kit/utilities": "^3.2.1",
|
62
62
|
"@pansy/react-watermark": "^3.1.13",
|
63
63
|
"@zat-design/utils": "1.1.37",
|
64
|
-
"ahooks": "3.
|
65
|
-
"antd": "4.24.
|
64
|
+
"ahooks": "3.8.4",
|
65
|
+
"antd": "4.24.12",
|
66
66
|
"big.js": "^6.2.1",
|
67
67
|
"classnames": "^2.3.1",
|
68
68
|
"lodash": "^4.17.21",
|
69
69
|
"moment": "^2.29.1",
|
70
70
|
"rc-resize-observer": "^1.4.0",
|
71
|
-
"react-
|
72
|
-
"react-
|
73
|
-
"react-
|
71
|
+
"react-lazyload": "^3.2.1",
|
72
|
+
"react-resizable": "^3.0.5",
|
73
|
+
"react-svg": "^15.1.7"
|
74
74
|
},
|
75
75
|
"peerDependencies": {
|
76
76
|
"antd": "^4.24.8",
|
@@ -88,6 +88,7 @@
|
|
88
88
|
"@types/lodash": "^4.14.171",
|
89
89
|
"@types/react": "^17.0.53",
|
90
90
|
"@types/react-dom": "^17.0.0",
|
91
|
+
"@types/react-lazyload": "^3.2.3",
|
91
92
|
"@types/react-resizable": "^1.7.4",
|
92
93
|
"@typescript-eslint/eslint-plugin": "4.0.1",
|
93
94
|
"@typescript-eslint/parser": "4.0.1",
|