zy-react-library 1.1.0 → 1.1.2

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 (76) hide show
  1. package/README.md +5 -1
  2. package/components/Cascader/Area/index.js +11 -11
  3. package/components/Cascader/Basic/index.js +23 -30
  4. package/components/Cascader/Dictionary/index.js +42 -42
  5. package/components/Cascader/Industry/index.js +12 -11
  6. package/components/Editor/index.js +43 -63
  7. package/components/FormBuilder/FormBuilder.js +97 -87
  8. package/components/FormBuilder/FormItemsRenderer.js +579 -581
  9. package/components/FormBuilder/index.js +5 -3
  10. package/components/HeaderBack/index.js +39 -32
  11. package/components/HiddenInfo/gwj/index.js +507 -439
  12. package/components/Icon/AddIcon/index.js +6 -6
  13. package/components/Icon/BackIcon/index.js +6 -6
  14. package/components/Icon/DeleteIcon/index.js +6 -6
  15. package/components/Icon/DownloadIcon/index.js +6 -6
  16. package/components/Icon/EditIcon/index.js +6 -6
  17. package/components/Icon/ExportIcon/index.js +6 -6
  18. package/components/Icon/ImportIcon/index.js +6 -6
  19. package/components/Icon/LocationIcon/index.js +6 -6
  20. package/components/Icon/PrintIcon/index.js +6 -6
  21. package/components/Icon/ResetIcon/index.js +6 -6
  22. package/components/Icon/SearchIcon/index.js +6 -6
  23. package/components/Icon/VideoIcon/index.js +6 -6
  24. package/components/Icon/ViewIcon/index.js +6 -6
  25. package/components/ImportFile/index.js +94 -91
  26. package/components/LeftTree/Area/index.js +15 -15
  27. package/components/LeftTree/Basic/index.js +54 -65
  28. package/components/LeftTree/Department/Gwj/index.js +29 -32
  29. package/components/LeftTree/Dictionary/index.js +42 -42
  30. package/components/Map/MapSelector.js +280 -254
  31. package/components/Map/index.js +90 -77
  32. package/components/Page/index.d.ts +2 -0
  33. package/components/Page/index.js +44 -34
  34. package/components/Pdf/index.js +92 -90
  35. package/components/PreviewImg/index.js +26 -32
  36. package/components/PreviewPdf/index.js +78 -86
  37. package/components/Search/index.js +147 -141
  38. package/components/Select/Basic/index.js +70 -76
  39. package/components/Select/Dictionary/index.js +42 -42
  40. package/components/Select/Personnel/Gwj/index.js +45 -49
  41. package/components/SelectCreate/index.js +33 -40
  42. package/components/SelectTree/Area/index.js +11 -17
  43. package/components/SelectTree/Basic/index.js +105 -102
  44. package/components/SelectTree/Department/Gwj/index.js +40 -46
  45. package/components/SelectTree/Dictionary/index.js +42 -42
  46. package/components/SelectTree/HiddenLevel/Gwj/index.js +33 -35
  47. package/components/SelectTree/HiddenPart/Gwj/index.js +16 -19
  48. package/components/SelectTree/Industry/index.js +12 -18
  49. package/components/Signature/index.js +68 -62
  50. package/components/Table/index.js +77 -73
  51. package/components/Table/index.less +7 -1
  52. package/components/TooltipPreviewImg/index.js +28 -27
  53. package/components/Upload/index.js +229 -275
  54. package/components/Video/AliPlayer.js +182 -160
  55. package/components/Video/index.js +71 -90
  56. package/css/common.less +4 -0
  57. package/enum/dictionary/index.js +5 -3
  58. package/enum/formItemRender/index.js +37 -35
  59. package/enum/hidden/gwj/index.js +65 -26
  60. package/enum/uploadFile/gwj/index.js +166 -84
  61. package/hooks/useDeleteFile/index.js +24 -30
  62. package/hooks/useDictionary/index.js +28 -30
  63. package/hooks/useDownloadBlob/index.js +78 -77
  64. package/hooks/useDownloadFile/index.js +76 -79
  65. package/hooks/useGetFile/index.js +32 -32
  66. package/hooks/useGetUrlQuery/index.js +1 -2
  67. package/hooks/useGetUserInfo/index.js +19 -26
  68. package/hooks/useIdle/index.js +9 -11
  69. package/hooks/useImportFile/index.js +30 -28
  70. package/hooks/useIsExistenceDuplicateSelection/index.js +25 -18
  71. package/hooks/useTable/index.js +49 -38
  72. package/hooks/useUploadFile/index.js +142 -147
  73. package/hooks/useUrlQueryCriteria/index.js +20 -13
  74. package/package.json +14 -1
  75. package/regular/index.js +34 -39
  76. package/utils/index.js +515 -511
@@ -1,160 +1,182 @@
1
- import { useDocumentVisibility } from "ahooks";
2
- import { uniqueId } from "lodash-es";
3
- import { forwardRef, useEffect, useImperativeHandle, useRef } from "react";
4
- import { dynamicLoadCss, dynamicLoadJs } from "../../utils";
5
-
6
- /**
7
- * 视频播放组件
8
- */
9
- const AliPlayer = forwardRef(({
10
- source = "",
11
- vid = "",
12
- playAuth = "",
13
- cover = "",
14
- width = "100%",
15
- height = "600px",
16
- autoplay = true,
17
- showProgress = true,
18
- isLive = false,
19
- playTime = 0,
20
- onEnded,
21
- onTimeupdate,
22
- }, ref) => {
23
- const playerRef = useRef(null);
24
- const containerRef = useRef(null);
25
- const visibility = useDocumentVisibility();
26
- const className = useRef(uniqueId("_")).current;
27
-
28
- useImperativeHandle(ref, () => ({
29
- play: () => {
30
- playerRef.current && playerRef.current.play();
31
- },
32
- pause: () => {
33
- playerRef.current && playerRef.current.pause();
34
- },
35
- }));
36
-
37
- const onDisposeAliPlayer = () => {
38
- if (!playerRef.current)
39
- return;
40
- playerRef.current.dispose();
41
- playerRef.current = null;
42
- };
43
-
44
- const onCreateAliPlayer = async () => {
45
- if (!containerRef.current)
46
- return;
47
- if (!window.Aliplayer) {
48
- await dynamicLoadJs("https://g.alicdn.com/apsara-media-box/imp-web-player/2.16.3/aliplayer-min.js");
49
- await dynamicLoadCss("https://g.alicdn.com/apsara-media-box/imp-web-player/2.16.3/skins/default/aliplayer-min.css");
50
- }
51
-
52
- onDisposeAliPlayer();
53
-
54
- const skinLayout = [
55
- { name: "bigPlayButton", align: "blabs", x: 30, y: 80 },
56
- { name: "H5Loading", align: "cc" },
57
- { name: "errorDisplay", align: "tlabs", x: 0, y: 0 },
58
- { name: "infoDisplay" },
59
- { name: "tooltip", align: "blabs", x: 0, y: 56 },
60
- { name: "thumbnail" },
61
- {
62
- name: "controlBar",
63
- align: "blabs",
64
- x: 0,
65
- y: 0,
66
- children: [
67
- { name: "playButton", align: "tl", x: 15, y: 12 },
68
- { name: "timeDisplay", align: "tl", x: 10, y: 7 },
69
- { name: "fullScreenButton", align: "tr", x: 10, y: 12 },
70
- { name: "setting", align: "tr", x: 15, y: 12 },
71
- { name: "volume", align: "tr", x: 5, y: 10 },
72
- ],
73
- },
74
- ];
75
-
76
- if (showProgress) {
77
- skinLayout[skinLayout.length - 1].children.unshift({
78
- name: "progress",
79
- align: "blabs",
80
- x: 0,
81
- y: 44,
82
- });
83
- }
84
-
85
- playerRef.current = new window.Aliplayer(
86
- {
87
- id: className,
88
- ...(source
89
- ? { source }
90
- : {
91
- vid,
92
- playauth: playAuth,
93
- qualitySort: "asc",
94
- format: "m3u8",
95
- encryptType: 1,
96
- mediaType: "video",
97
- isLive: true,
98
- rePlay: false,
99
- playsinline: true,
100
- controlBarVisibility: "hover",
101
- }),
102
- cover,
103
- width,
104
- height,
105
- autoplay,
106
- isLive,
107
- useH5Prism: true,
108
- skinLayout,
109
- },
110
- (player) => {
111
- if (autoplay) {
112
- player.play();
113
- }
114
-
115
- player.on("ended", () => {
116
- onEnded && onEnded();
117
- });
118
-
119
- player.on("timeupdate", () => {
120
- onTimeupdate && onTimeupdate(player.getCurrentTime());
121
- });
122
-
123
- if (playTime > 0) {
124
- player.seek(playTime);
125
- }
126
- },
127
- );
128
- };
129
-
130
- useEffect(() => {
131
- if (source || (vid && playAuth)) {
132
- onCreateAliPlayer();
133
- }
134
-
135
- return () => {
136
- onDisposeAliPlayer();
137
- };
138
- }, [source, vid, playAuth]);
139
-
140
- useEffect(() => {
141
- if (visibility === "hidden") {
142
- playerRef.current && playerRef.current.pause();
143
- }
144
- else {
145
- playerRef.current && playerRef.current.play();
146
- }
147
- }, [visibility]);
148
-
149
- return (
150
- <div
151
- ref={containerRef}
152
- id={className}
153
- style={{ width, height }}
154
- />
155
- );
156
- });
157
-
158
- AliPlayer.displayName = "AliPlayer";
159
-
160
- export default AliPlayer;
1
+ import { useDocumentVisibility } from 'ahooks';
2
+ import { uniqueId } from 'lodash-es';
3
+ import { forwardRef, useRef, useImperativeHandle, useEffect } from 'react';
4
+ import { dynamicLoadJs, dynamicLoadCss } from '../../utils/index.js';
5
+ import { jsx } from 'react/jsx-runtime';
6
+
7
+ const AliPlayer = /*#__PURE__*/forwardRef(({
8
+ source = "",
9
+ vid = "",
10
+ playAuth = "",
11
+ cover = "",
12
+ width = "100%",
13
+ height = "600px",
14
+ autoplay = true,
15
+ showProgress = true,
16
+ isLive = false,
17
+ playTime = 0,
18
+ onEnded,
19
+ onTimeupdate
20
+ }, ref) => {
21
+ const playerRef = useRef(null);
22
+ const containerRef = useRef(null);
23
+ const visibility = useDocumentVisibility();
24
+ const className = useRef(uniqueId("_")).current;
25
+ useImperativeHandle(ref, () => ({
26
+ play: () => {
27
+ playerRef.current && playerRef.current.play();
28
+ },
29
+ pause: () => {
30
+ playerRef.current && playerRef.current.pause();
31
+ }
32
+ }));
33
+ const onDisposeAliPlayer = () => {
34
+ if (!playerRef.current) return;
35
+ playerRef.current.dispose();
36
+ playerRef.current = null;
37
+ };
38
+ const onCreateAliPlayer = async () => {
39
+ if (!containerRef.current) return;
40
+ if (!window.Aliplayer) {
41
+ if (window?.base?.loadDynamicResource) {
42
+ await window.base.loadDynamicResource({
43
+ url: "https://g.alicdn.com/apsara-media-box/imp-web-player/2.16.3/aliplayer-min.js",
44
+ type: "script"
45
+ });
46
+ await window.base.loadDynamicResource({
47
+ url: "https://g.alicdn.com/apsara-media-box/imp-web-player/2.16.3/skins/default/aliplayer-min.css",
48
+ type: "link"
49
+ });
50
+ } else {
51
+ await dynamicLoadJs("https://g.alicdn.com/apsara-media-box/imp-web-player/2.16.3/aliplayer-min.js");
52
+ await dynamicLoadCss("https://g.alicdn.com/apsara-media-box/imp-web-player/2.16.3/skins/default/aliplayer-min.css");
53
+ }
54
+ }
55
+ onDisposeAliPlayer();
56
+ const skinLayout = [{
57
+ name: "bigPlayButton",
58
+ align: "blabs",
59
+ x: 30,
60
+ y: 80
61
+ }, {
62
+ name: "H5Loading",
63
+ align: "cc"
64
+ }, {
65
+ name: "errorDisplay",
66
+ align: "tlabs",
67
+ x: 0,
68
+ y: 0
69
+ }, {
70
+ name: "infoDisplay"
71
+ }, {
72
+ name: "tooltip",
73
+ align: "blabs",
74
+ x: 0,
75
+ y: 56
76
+ }, {
77
+ name: "thumbnail"
78
+ }, {
79
+ name: "controlBar",
80
+ align: "blabs",
81
+ x: 0,
82
+ y: 0,
83
+ children: [{
84
+ name: "playButton",
85
+ align: "tl",
86
+ x: 15,
87
+ y: 12
88
+ }, {
89
+ name: "timeDisplay",
90
+ align: "tl",
91
+ x: 10,
92
+ y: 7
93
+ }, {
94
+ name: "fullScreenButton",
95
+ align: "tr",
96
+ x: 10,
97
+ y: 12
98
+ }, {
99
+ name: "setting",
100
+ align: "tr",
101
+ x: 15,
102
+ y: 12
103
+ }, {
104
+ name: "volume",
105
+ align: "tr",
106
+ x: 5,
107
+ y: 10
108
+ }]
109
+ }];
110
+ if (showProgress) {
111
+ skinLayout[skinLayout.length - 1].children.unshift({
112
+ name: "progress",
113
+ align: "blabs",
114
+ x: 0,
115
+ y: 44
116
+ });
117
+ }
118
+ playerRef.current = new window.Aliplayer({
119
+ id: className,
120
+ ...(source ? {
121
+ source
122
+ } : {
123
+ vid,
124
+ playauth: playAuth,
125
+ qualitySort: "asc",
126
+ format: "m3u8",
127
+ encryptType: 1,
128
+ mediaType: "video",
129
+ isLive: true,
130
+ rePlay: false,
131
+ playsinline: true,
132
+ controlBarVisibility: "hover"
133
+ }),
134
+ cover,
135
+ width,
136
+ height,
137
+ autoplay,
138
+ isLive,
139
+ useH5Prism: true,
140
+ skinLayout
141
+ }, player => {
142
+ if (autoplay) {
143
+ player.play();
144
+ }
145
+ player.on("ended", () => {
146
+ onEnded && onEnded();
147
+ });
148
+ player.on("timeupdate", () => {
149
+ onTimeupdate && onTimeupdate(player.getCurrentTime());
150
+ });
151
+ if (playTime > 0) {
152
+ player.seek(playTime);
153
+ }
154
+ });
155
+ };
156
+ useEffect(() => {
157
+ if (source || vid && playAuth) {
158
+ onCreateAliPlayer();
159
+ }
160
+ return () => {
161
+ onDisposeAliPlayer();
162
+ };
163
+ }, [source, vid, playAuth]);
164
+ useEffect(() => {
165
+ if (visibility === "hidden") {
166
+ playerRef.current && playerRef.current.pause();
167
+ } else {
168
+ playerRef.current && playerRef.current.play();
169
+ }
170
+ }, [visibility]);
171
+ return /*#__PURE__*/jsx("div", {
172
+ ref: containerRef,
173
+ id: className,
174
+ style: {
175
+ width,
176
+ height
177
+ }
178
+ });
179
+ });
180
+ AliPlayer.displayName = "AliPlayer";
181
+
182
+ export { AliPlayer as default };
@@ -1,90 +1,71 @@
1
- import { Button, Modal } from "antd";
2
- import { useEffect, useRef, useState } from "react";
3
- import { getFileUrl } from "../../utils";
4
- import AliPlayer from "./AliPlayer";
5
-
6
- /**
7
- * 视频播放组件
8
- */
9
- const Video = ({
10
- source = "",
11
- vid = "",
12
- playAuth = "",
13
- cover = "",
14
- autoplay = true,
15
- showProgress = true,
16
- playTime = 0,
17
- inline = false,
18
- isLive = false,
19
- width = "100%",
20
- height = "600px",
21
- title = "视频",
22
- visible: externalVisible = false,
23
- onCancel,
24
- }) => {
25
- const [internalVisible, setInternalVisible] = useState(false);
26
- const playerRef = useRef(null);
27
-
28
- const visible = onCancel ? externalVisible : internalVisible;
29
- const setVisible = onCancel || setInternalVisible;
30
-
31
- const getSource = () => {
32
- if (!source)
33
- return;
34
- if (source.includes("http") || source.includes("https"))
35
- return source;
36
- else return getFileUrl() + source;
37
- };
38
-
39
- useEffect(() => {
40
- if (!inline) {
41
- if (visible) {
42
- playerRef.current && playerRef.current.play();
43
- }
44
- else {
45
- playerRef.current && playerRef.current.pause();
46
- }
47
- }
48
- }, [visible, inline]);
49
-
50
- const playerElement = (
51
- <AliPlayer
52
- ref={playerRef}
53
- source={getSource()}
54
- vid={vid}
55
- playAuth={playAuth}
56
- cover={cover}
57
- autoplay={autoplay}
58
- showProgress={showProgress}
59
- playTime={playTime}
60
- isLive={isLive}
61
- width={width}
62
- height={height}
63
- />
64
- );
65
-
66
- if (!inline) {
67
- return (
68
- <Modal
69
- open={visible}
70
- width={800}
71
- title={title}
72
- footer={[
73
- <Button key="cancel" onClick={() => setVisible(false)}>
74
- 取消
75
- </Button>,
76
- ]}
77
- maskClosable={false}
78
- onCancel={() => setVisible(false)}
79
- >
80
- {playerElement}
81
- </Modal>
82
- );
83
- }
84
-
85
- return playerElement;
86
- };
87
-
88
- Video.displayName = "Video";
89
-
90
- export default Video;
1
+ import { Modal, Button } from 'antd';
2
+ import { useState, useRef, useEffect } from 'react';
3
+ import { getFileUrl } from '../../utils/index.js';
4
+ import AliPlayer from './AliPlayer.js';
5
+ import { jsx } from 'react/jsx-runtime';
6
+
7
+ const Video = ({
8
+ source = "",
9
+ vid = "",
10
+ playAuth = "",
11
+ cover = "",
12
+ autoplay = true,
13
+ showProgress = true,
14
+ playTime = 0,
15
+ inline = false,
16
+ isLive = false,
17
+ width = "100%",
18
+ height = "600px",
19
+ title = "视频",
20
+ visible: externalVisible = false,
21
+ onCancel
22
+ }) => {
23
+ const [internalVisible, setInternalVisible] = useState(false);
24
+ const playerRef = useRef(null);
25
+ const visible = onCancel ? externalVisible : internalVisible;
26
+ const setVisible = onCancel || setInternalVisible;
27
+ const getSource = () => {
28
+ if (!source) return;
29
+ if (source.includes("http") || source.includes("https")) return source;else return getFileUrl() + source;
30
+ };
31
+ useEffect(() => {
32
+ if (!inline) {
33
+ if (visible) {
34
+ playerRef.current && playerRef.current.play();
35
+ } else {
36
+ playerRef.current && playerRef.current.pause();
37
+ }
38
+ }
39
+ }, [visible, inline]);
40
+ const playerElement = /*#__PURE__*/jsx(AliPlayer, {
41
+ ref: playerRef,
42
+ source: getSource(),
43
+ vid: vid,
44
+ playAuth: playAuth,
45
+ cover: cover,
46
+ autoplay: autoplay,
47
+ showProgress: showProgress,
48
+ playTime: playTime,
49
+ isLive: isLive,
50
+ width: width,
51
+ height: height
52
+ });
53
+ if (!inline) {
54
+ return /*#__PURE__*/jsx(Modal, {
55
+ open: visible,
56
+ width: 800,
57
+ title: title,
58
+ footer: [/*#__PURE__*/jsx(Button, {
59
+ onClick: () => setVisible(false),
60
+ children: "\u53D6\u6D88"
61
+ }, "cancel")],
62
+ maskClosable: false,
63
+ onCancel: () => setVisible(false),
64
+ children: playerElement
65
+ });
66
+ }
67
+ return playerElement;
68
+ };
69
+ Video.displayName = "Video";
70
+
71
+ export { Video as default };
package/css/common.less CHANGED
@@ -20,6 +20,10 @@
20
20
  height: 10px;
21
21
  background-color: rgb(241, 241, 242);
22
22
  }
23
+
24
+ + .table-layout .@{ant-prefix}-pro-table-list-toolbar-container {
25
+ padding-top: 26px !important;
26
+ }
23
27
  }
24
28
 
25
29
  .table-layout {
@@ -1,7 +1,9 @@
1
1
  /**
2
2
  * 数据字典 appKey 枚举
3
3
  */
4
- export const DICTIONARY_APP_KEY_ENUM = {
4
+ const DICTIONARY_APP_KEY_ENUM = {
5
5
  DEFAULT: "0bb989ecada5470c87635018ece9f327",
6
- GWJ: "0bb989ecada5470c87635018ece9f327",
7
- }
6
+ GWJ: "0bb989ecada5470c87635018ece9f327"
7
+ };
8
+
9
+ export { DICTIONARY_APP_KEY_ENUM };
@@ -1,37 +1,39 @@
1
1
  /**
2
2
  * 表单项类型枚举
3
- */
4
- export const FORM_ITEM_RENDER_ENUM = {
5
- /** 映射为 antd Input */
6
- INPUT: "input",
7
- /** 映射为 antd Input.TextArea */
8
- TEXTAREA: "textarea",
9
- /** 映射为 antd InputNumber */
10
- INPUT_NUMBER: "inputNumber",
11
- /** 映射为 antd InputNumber */
12
- NUMBER: "number",
13
- /** 映射为 antd Select */
14
- SELECT: "select",
15
- /** 映射为 antd Radio.Group */
16
- RADIO: "radio",
17
- /** 映射为 antd Checkbox.Group */
18
- CHECKBOX: "checkbox",
19
- /** 映射为 antd DatePicker,日期格式为YYYY-MM-DD */
20
- DATE: "date",
21
- /** 映射为 antd DatePicker.MonthPicker,日期格式为YYYY-MM */
22
- DATE_MONTH: "dateMonth",
23
- /** 映射为 antd DatePicker.YearPicker,日期格式为YYYY */
24
- DATE_YEAR: "dateYear",
25
- /** 映射为 antd DatePicker.WeekPicker,日期格式为YYYY-wo */
26
- DATE_WEEK: "dateWeek",
27
- /** 映射为 antd DatePicker.RangePicker,日期格式为YYYY-MM-DD */
28
- DATE_RANGE: "dateRange",
29
- /** 映射为 antd DatePicker,日期格式为YYYY-MM-DD HH:mm:ss */
30
- DATETIME: "datetime",
31
- /** 映射为 antd DatePicker.RangePicker,日期格式为YYYY-MM-DD HH:mm:ss */
32
- DATETIME_RANGE: "datetimeRange",
33
- /** 映射为 antd Divider */
34
- DIVIDER: "divider",
35
- /** 映射为 antd FormList */
36
- FORM_LIST: "formList",
37
- };
3
+ */
4
+ const FORM_ITEM_RENDER_ENUM = {
5
+ /** 映射为 antd Input */
6
+ INPUT: "input",
7
+ /** 映射为 antd Input.TextArea */
8
+ TEXTAREA: "textarea",
9
+ /** 映射为 antd InputNumber */
10
+ INPUT_NUMBER: "inputNumber",
11
+ /** 映射为 antd InputNumber */
12
+ NUMBER: "number",
13
+ /** 映射为 antd Select */
14
+ SELECT: "select",
15
+ /** 映射为 antd Radio.Group */
16
+ RADIO: "radio",
17
+ /** 映射为 antd Checkbox.Group */
18
+ CHECKBOX: "checkbox",
19
+ /** 映射为 antd DatePicker,日期格式为YYYY-MM-DD */
20
+ DATE: "date",
21
+ /** 映射为 antd DatePicker.MonthPicker,日期格式为YYYY-MM */
22
+ DATE_MONTH: "dateMonth",
23
+ /** 映射为 antd DatePicker.YearPicker,日期格式为YYYY */
24
+ DATE_YEAR: "dateYear",
25
+ /** 映射为 antd DatePicker.WeekPicker,日期格式为YYYY-wo */
26
+ DATE_WEEK: "dateWeek",
27
+ /** 映射为 antd DatePicker.RangePicker,日期格式为YYYY-MM-DD */
28
+ DATE_RANGE: "dateRange",
29
+ /** 映射为 antd DatePicker,日期格式为YYYY-MM-DD HH:mm:ss */
30
+ DATETIME: "datetime",
31
+ /** 映射为 antd DatePicker.RangePicker,日期格式为YYYY-MM-DD HH:mm:ss */
32
+ DATETIME_RANGE: "datetimeRange",
33
+ /** 映射为 antd Divider */
34
+ DIVIDER: "divider",
35
+ /** 映射为 antd FormList */
36
+ FORM_LIST: "formList"
37
+ };
38
+
39
+ export { FORM_ITEM_RENDER_ENUM };