@cniot/mdd-editor 0.2.0-beta.34 → 0.2.0-beta.36
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/README.MD +6 -0
- package/build/index.cjs.js +1 -1
- package/build/index.es.js +7 -2
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -18063,10 +18063,12 @@ const formilySchema = ({ moduleDataSource = {} }) => {
|
|
|
18063
18063
|
type: "string",
|
|
18064
18064
|
title: "loading\u63D0\u793A\u6700\u957F\u65F6\u957F",
|
|
18065
18065
|
"x-decorator": "CnFormItem",
|
|
18066
|
-
"x-component": "
|
|
18066
|
+
"x-component": "NumberPicker",
|
|
18067
18067
|
"x-validator": [],
|
|
18068
18068
|
"x-component-props": {
|
|
18069
|
-
innerAfter: "\u6BEB\u79D2"
|
|
18069
|
+
innerAfter: "\u6BEB\u79D2",
|
|
18070
|
+
step: 1e3,
|
|
18071
|
+
min: 1e3
|
|
18070
18072
|
},
|
|
18071
18073
|
"x-decorator-props": {
|
|
18072
18074
|
tip: "\u4EC5\u5F53 \u8BE5\u63A5\u53E3 \u54CD\u5E94\u65F6\u95F4 \u8FC7\u957F(\u4F8B\u5982 \u8D85\u8FC710\u79D2)\u65F6\u4F7F\u7528\uFF0C\u5176\u4ED6\u60C5\u51B5\u4E0D\u63A8\u8350\u4F7F\u7528\u3002key\uFF1AdelayLoadingMessageDuration"
|
|
@@ -18173,6 +18175,7 @@ const dataAdaptor$2 = (data, isValue) => {
|
|
|
18173
18175
|
isDisabled,
|
|
18174
18176
|
successMessage,
|
|
18175
18177
|
errorMessage,
|
|
18178
|
+
delayLoadingMessageDuration,
|
|
18176
18179
|
...otherAction
|
|
18177
18180
|
} = action || {};
|
|
18178
18181
|
if (type === "ajax") {
|
|
@@ -18187,6 +18190,7 @@ const dataAdaptor$2 = (data, isValue) => {
|
|
|
18187
18190
|
isDisabled,
|
|
18188
18191
|
successMessage,
|
|
18189
18192
|
errorMessage,
|
|
18193
|
+
delayLoadingMessageDuration,
|
|
18190
18194
|
...dataSource
|
|
18191
18195
|
};
|
|
18192
18196
|
} else {
|
|
@@ -18202,6 +18206,7 @@ const dataAdaptor$2 = (data, isValue) => {
|
|
|
18202
18206
|
secondConfirmTitle,
|
|
18203
18207
|
secondConfirmContent,
|
|
18204
18208
|
successMessage,
|
|
18209
|
+
delayLoadingMessageDuration,
|
|
18205
18210
|
errorMessage,
|
|
18206
18211
|
...otherAction
|
|
18207
18212
|
};
|