szld-libs 0.3.29 → 0.3.30
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/style.css +1 -1
- package/dist/szld-components.es.js +3997 -4004
- package/dist/szld-components.umd.js +38 -38
- package/es/components/CreateForm/index.css +0 -3
- package/es/components/CreateForm/index.js +1 -9
- package/lib/components/CreateForm/index.css +0 -3
- package/lib/components/CreateForm/index.js +1 -9
- package/package.json +1 -1
|
@@ -8,14 +8,11 @@ const fieldModal = "create-form-module_fieldModal_8bf3d";
|
|
|
8
8
|
const content = "create-form-module_content_61f84";
|
|
9
9
|
const suffix = "create-form-module_suffix_42205";
|
|
10
10
|
const placeholder = "create-form-module_placeholder_90d6a";
|
|
11
|
-
const createFormSelectPopup = "create-form-module_create-form-select-popup_a5ca5";
|
|
12
11
|
const styles = {
|
|
13
12
|
fieldModal,
|
|
14
13
|
content,
|
|
15
14
|
suffix,
|
|
16
|
-
placeholder
|
|
17
|
-
"create-form-select-popup": "create-form-module_create-form-select-popup_a5ca5",
|
|
18
|
-
createFormSelectPopup
|
|
15
|
+
placeholder
|
|
19
16
|
};
|
|
20
17
|
const formLayout = {
|
|
21
18
|
labelCol: {
|
|
@@ -116,11 +113,6 @@ const FormFields = (props) => {
|
|
|
116
113
|
Select,
|
|
117
114
|
{
|
|
118
115
|
placeholder: langId === "10001" ? "请选择" : "Please select",
|
|
119
|
-
classNames: {
|
|
120
|
-
popup: {
|
|
121
|
-
root: styles["create-form-select-popup"]
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
116
|
allowClear: true,
|
|
125
117
|
...valueProps
|
|
126
118
|
}
|
|
@@ -10,14 +10,11 @@ const fieldModal = "create-form-module_fieldModal_8bf3d";
|
|
|
10
10
|
const content = "create-form-module_content_61f84";
|
|
11
11
|
const suffix = "create-form-module_suffix_42205";
|
|
12
12
|
const placeholder = "create-form-module_placeholder_90d6a";
|
|
13
|
-
const createFormSelectPopup = "create-form-module_create-form-select-popup_a5ca5";
|
|
14
13
|
const styles = {
|
|
15
14
|
fieldModal,
|
|
16
15
|
content,
|
|
17
16
|
suffix,
|
|
18
|
-
placeholder
|
|
19
|
-
"create-form-select-popup": "create-form-module_create-form-select-popup_a5ca5",
|
|
20
|
-
createFormSelectPopup
|
|
17
|
+
placeholder
|
|
21
18
|
};
|
|
22
19
|
const formLayout = {
|
|
23
20
|
labelCol: {
|
|
@@ -118,11 +115,6 @@ const FormFields = (props) => {
|
|
|
118
115
|
antd.Select,
|
|
119
116
|
{
|
|
120
117
|
placeholder: langId === "10001" ? "请选择" : "Please select",
|
|
121
|
-
classNames: {
|
|
122
|
-
popup: {
|
|
123
|
-
root: styles["create-form-select-popup"]
|
|
124
|
-
}
|
|
125
|
-
},
|
|
126
118
|
allowClear: true,
|
|
127
119
|
...valueProps
|
|
128
120
|
}
|