hlyc-web-pack 3.3.7 → 3.4.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.
- package/lib/ButtonGroup/index.d.ts +1 -1
- package/lib/GaoDeMap/index.d.ts +1 -1
- package/lib/GenerateForm/index.d.ts +5 -4
- package/lib/GenerateTable/index.d.ts +1 -1
- package/lib/IconSelectionModal/index.d.ts +1 -1
- package/lib/QuicklyProcessForms/index.d.ts +1 -1
- package/lib/TreeNode/index.d.ts +1 -1
- package/lib/Upload/index.d.ts +3 -8
- package/lib/index.js +4 -19
- package/lib/unrelated/utils/index.d.ts +1 -1
- package/package.json +6 -3
|
@@ -6,7 +6,7 @@ import { SelectType } from '../../unrelated/typings';
|
|
|
6
6
|
* @Author bihongbin
|
|
7
7
|
* @Date 2021-08-26 14:10:48
|
|
8
8
|
*/
|
|
9
|
-
export declare const isEqualWith: (prevProps: any, nextProps: any) =>
|
|
9
|
+
export declare const isEqualWith: (prevProps: any, nextProps: any) => boolean;
|
|
10
10
|
/**
|
|
11
11
|
* @Description 检查数据类型是否符合
|
|
12
12
|
* @Author bihongbin
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hlyc-web-pack",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "华旅云创web端组件",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -29,8 +29,11 @@
|
|
|
29
29
|
"@rollup/plugin-commonjs": "^17.1.0",
|
|
30
30
|
"@rollup/plugin-json": "^4.1.0",
|
|
31
31
|
"@rollup/plugin-node-resolve": "^11.2.0",
|
|
32
|
+
"@types/lodash": "^4.14.181",
|
|
32
33
|
"@types/react": "^17.0.43",
|
|
33
34
|
"@types/react-dom": "^17.0.14",
|
|
35
|
+
"@types/react-resizable": "^1.7.4",
|
|
36
|
+
"@types/uuid": "^8.3.4",
|
|
34
37
|
"@typescript-eslint/parser": "^4.15.2",
|
|
35
38
|
"@umijs/fabric": "^2.7.0",
|
|
36
39
|
"antd": "4.16.13",
|
|
@@ -73,10 +76,10 @@
|
|
|
73
76
|
"webpack": "^5.52.1"
|
|
74
77
|
},
|
|
75
78
|
"peerDependencies": {
|
|
76
|
-
"react": "17.0.2",
|
|
77
|
-
"react-dom": "17.0.2",
|
|
78
79
|
"lodash": "^4.17.21",
|
|
79
80
|
"moment": "^2.29.1",
|
|
81
|
+
"react": "17.0.2",
|
|
82
|
+
"react-dom": "17.0.2",
|
|
80
83
|
"react-draggable": "^4.4.3",
|
|
81
84
|
"uuid": "^8.3.2"
|
|
82
85
|
}
|