@byteluck-fe/model-driven-driven 2.1.0-sourcemap.11 → 2.1.0-sourcemap.12
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/esm/Driven.js +20 -17
- package/dist/esm/Store.js +4 -3
- package/dist/esm/designerUtils.js +2 -9
- package/dist/esm/utils.js +13 -13
- package/dist/index.umd.js +3 -3
- package/package.json +5 -5
package/dist/esm/Driven.js
CHANGED
|
@@ -68,13 +68,6 @@ function _inherits(subClass, superClass) {
|
|
|
68
68
|
});
|
|
69
69
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
70
70
|
}
|
|
71
|
-
function _instanceof(left, right) {
|
|
72
|
-
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
73
|
-
return !!right[Symbol.hasInstance](left);
|
|
74
|
-
} else {
|
|
75
|
-
return left instanceof right;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
71
|
function _iterableToArray(iter) {
|
|
79
72
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
80
73
|
}
|
|
@@ -185,11 +178,10 @@ function _createSuper(Derived) {
|
|
|
185
178
|
return _possibleConstructorReturn(this, result);
|
|
186
179
|
};
|
|
187
180
|
}
|
|
188
|
-
import { error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from "@byteluck-fe/model-driven-shared";
|
|
181
|
+
import { CONTROL_BASE_TYPE, error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from "@byteluck-fe/model-driven-shared";
|
|
189
182
|
import { findInstanceDataScopeParent, Store } from "./Store";
|
|
190
183
|
import { Designer } from "./Designer";
|
|
191
184
|
import EventLogic from "./EventLogic";
|
|
192
|
-
import { DesignerControl, DesignerListControl, DesignerWrapControl } from "@byteluck-fe/model-driven-core";
|
|
193
185
|
import { checkSchema, generatePermissions, getModelBindInfoList, toSchema } from "./utils";
|
|
194
186
|
import { Group, initSettings, Tab } from "@byteluck-fe/model-driven-settings";
|
|
195
187
|
// 当前正在注册的插件名称
|
|
@@ -285,13 +277,17 @@ var applyingPluginName = "";
|
|
|
285
277
|
});
|
|
286
278
|
};
|
|
287
279
|
_proto.setSelectedInstanceSetting = function setSelectedInstanceSetting() {
|
|
280
|
+
var _instance_parent, _instance_parent1;
|
|
288
281
|
var instance = this.store.selected;
|
|
289
282
|
if (!instance) {
|
|
290
283
|
return;
|
|
291
284
|
}
|
|
292
285
|
var setting = this.getControlSetting(instance.type);
|
|
293
|
-
|
|
294
|
-
|
|
286
|
+
console.log("iswrap:", (_instance_parent = instance.parent) === null || _instance_parent === void 0 ? void 0 : _instance_parent.controlType, instance.parent);
|
|
287
|
+
// if (instance.parent instanceof DesignerWrapControl) {
|
|
288
|
+
if (((_instance_parent1 = instance.parent) === null || _instance_parent1 === void 0 ? void 0 : _instance_parent1.layoutType) === "wrap") {
|
|
289
|
+
var _instance_parent2;
|
|
290
|
+
var wrapSetting = this.getControlSetting((_instance_parent2 = instance.parent) === null || _instance_parent2 === void 0 ? void 0 : _instance_parent2.type);
|
|
295
291
|
setting = this.concatSetting(setting, wrapSetting, instance.parent.id);
|
|
296
292
|
}
|
|
297
293
|
this.store.setSelectInstanceSettings(setting);
|
|
@@ -433,10 +429,14 @@ var applyingPluginName = "";
|
|
|
433
429
|
return this.designer.createControlInstance(type, initSchema);
|
|
434
430
|
};
|
|
435
431
|
_proto.getInstance = function getInstance(instanceId) {
|
|
436
|
-
if (
|
|
437
|
-
|
|
432
|
+
// if (instanceId instanceof DesignerControl) {
|
|
433
|
+
// return instanceId
|
|
434
|
+
// }
|
|
435
|
+
// return this.store.instanceIdMap.get(instanceId)
|
|
436
|
+
if (typeof instanceId === "string") {
|
|
437
|
+
return this.store.instanceIdMap.get(instanceId);
|
|
438
438
|
}
|
|
439
|
-
return
|
|
439
|
+
return instanceId;
|
|
440
440
|
};
|
|
441
441
|
_proto.getInstances = function getInstances() {
|
|
442
442
|
return this.store.flatInstances;
|
|
@@ -501,7 +501,8 @@ var applyingPluginName = "";
|
|
|
501
501
|
if (!parent) {
|
|
502
502
|
return;
|
|
503
503
|
}
|
|
504
|
-
var parentList =
|
|
504
|
+
var parentList = // parent instanceof DesignerListControl &&
|
|
505
|
+
parent.controlType === CONTROL_BASE_TYPE.LIST && parent.props.headers.includes(instance) ? parent.props.headers : parent.children;
|
|
505
506
|
var index = parentList.findIndex(function(item) {
|
|
506
507
|
return item === instance;
|
|
507
508
|
});
|
|
@@ -518,7 +519,8 @@ var applyingPluginName = "";
|
|
|
518
519
|
if (!parent) {
|
|
519
520
|
return;
|
|
520
521
|
}
|
|
521
|
-
var parentList =
|
|
522
|
+
var parentList = // parent instanceof DesignerListControl &&
|
|
523
|
+
parent.controlType === CONTROL_BASE_TYPE.LIST && parent.props.headers.includes(oldInstance) ? parent.props.headers : parent.children;
|
|
522
524
|
var index = parentList.findIndex(function(item) {
|
|
523
525
|
return item === oldInstance;
|
|
524
526
|
});
|
|
@@ -577,7 +579,8 @@ var applyingPluginName = "";
|
|
|
577
579
|
* */ _proto.getInstanceInListControl = function getInstanceInListControl(instance) {
|
|
578
580
|
var _instance = instance;
|
|
579
581
|
while(_instance){
|
|
580
|
-
if (
|
|
582
|
+
// if (_instance instanceof DesignerListControl) {
|
|
583
|
+
if (_instance.controlType === CONTROL_BASE_TYPE.LIST) {
|
|
581
584
|
return true;
|
|
582
585
|
}
|
|
583
586
|
_instance = _instance.parent;
|
package/dist/esm/Store.js
CHANGED
|
@@ -82,10 +82,10 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
82
82
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
83
83
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
|
|
84
84
|
}
|
|
85
|
-
import {
|
|
85
|
+
import { DataBind } from "@byteluck-fe/model-driven-core";
|
|
86
86
|
import { hasChildrenControl, hasHeaderControl } from "./designerUtils";
|
|
87
87
|
import { Group } from "@byteluck-fe/model-driven-settings";
|
|
88
|
-
import { CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
|
|
88
|
+
import { CONTROL_BASE_TYPE, CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
|
|
89
89
|
// 维护当前selected,。。 selectedControlSetting
|
|
90
90
|
export var Store = /*#__PURE__*/ function() {
|
|
91
91
|
"use strict";
|
|
@@ -237,7 +237,8 @@ function setDataFieldCodeMap(dataFieldCodeMap, dataBind, instance) {
|
|
|
237
237
|
}
|
|
238
238
|
}
|
|
239
239
|
function setInstanceInDataFieldCodeMap(instance, dataFieldCodeMap) {
|
|
240
|
-
if (
|
|
240
|
+
// if (instance instanceof DesignerFormControl) {
|
|
241
|
+
if (instance.controlType === CONTROL_BASE_TYPE.FORM) {
|
|
241
242
|
var dataBind = instance.props.dataBind;
|
|
242
243
|
if (_instanceof(dataBind, DataBind)) {
|
|
243
244
|
setDataFieldCodeMap(dataFieldCodeMap, dataBind, instance);
|
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
function _instanceof(left, right) {
|
|
2
|
-
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
3
|
-
return !!right[Symbol.hasInstance](left);
|
|
4
|
-
} else {
|
|
5
|
-
return left instanceof right;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
import { DesignerFormControl } from "@byteluck-fe/model-driven-core";
|
|
9
1
|
import { CONTROL_TYPE, isArray } from "@byteluck-fe/model-driven-shared";
|
|
10
2
|
export function hasChildrenControl(instance) {
|
|
11
3
|
return "children" in instance && isArray(instance.children);
|
|
@@ -25,7 +17,8 @@ export function loopFormControl(control, callback) {
|
|
|
25
17
|
loopFormControl(// @ts-ignore
|
|
26
18
|
item === null || item === void 0 ? void 0 : item.children, callback);
|
|
27
19
|
// @ts-ignore
|
|
28
|
-
} else if (
|
|
20
|
+
// } else if (item instanceof DesignerFormControl) {
|
|
21
|
+
} else if (item.controlType === CONTROL_BASE_TYPE.FORM) {
|
|
29
22
|
callback(item);
|
|
30
23
|
}
|
|
31
24
|
});
|
package/dist/esm/utils.js
CHANGED
|
@@ -38,13 +38,6 @@ function _asyncToGenerator(fn) {
|
|
|
38
38
|
});
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
|
-
function _instanceof(left, right) {
|
|
42
|
-
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
43
|
-
return !!right[Symbol.hasInstance](left);
|
|
44
|
-
} else {
|
|
45
|
-
return left instanceof right;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
41
|
function _iterableToArray(iter) {
|
|
49
42
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
50
43
|
}
|
|
@@ -188,15 +181,15 @@ var __generator = this && this.__generator || function(thisArg, body) {
|
|
|
188
181
|
}
|
|
189
182
|
};
|
|
190
183
|
import { loopFormControl } from "./designerUtils";
|
|
191
|
-
import {
|
|
192
|
-
import { CONTROL_TYPE, FieldTypeToColumnType, isArray } from "@byteluck-fe/model-driven-shared";
|
|
184
|
+
import { CONTROL_BASE_TYPE, CONTROL_TYPE, FieldTypeToColumnType, isArray } from "@byteluck-fe/model-driven-shared";
|
|
193
185
|
import Designer from "./Designer";
|
|
194
186
|
import { objectDataBindControlTypes, objectDataBindKeyToFieldType } from "./constants";
|
|
195
187
|
export function getMasterFormControls(controls) {
|
|
196
188
|
var formctls = [];
|
|
197
189
|
// @ts-ignore
|
|
198
190
|
loopFormControl(controls, function(item) {
|
|
199
|
-
if (
|
|
191
|
+
// if (item instanceof DesignerFormControl) {
|
|
192
|
+
if (item.controlType === CONTROL_BASE_TYPE.FORM) {
|
|
200
193
|
formctls.push(item);
|
|
201
194
|
} else if (item.type === CONTROL_TYPE.SUBTABLE) {}
|
|
202
195
|
});
|
|
@@ -437,8 +430,14 @@ function generatePermissions(controls, parent) {
|
|
|
437
430
|
if (type === CONTROL_TYPE.VUE_FORM_ITEM) {
|
|
438
431
|
permissionItem.caption = controls.props.controlExportName || controls.name;
|
|
439
432
|
}
|
|
440
|
-
if (
|
|
441
|
-
|
|
433
|
+
// if (
|
|
434
|
+
// controls instanceof DesignerFormControl ||
|
|
435
|
+
// controls instanceof DesignerColumnControl
|
|
436
|
+
// ) {
|
|
437
|
+
if (controls.controlType === CONTROL_BASE_TYPE.FORM || controls.controlType === CONTROL_BASE_TYPE.COLUMN) {
|
|
438
|
+
var //@ts-ignore
|
|
439
|
+
_controls_props1, _controls_props_dataBind, //@ts-ignore
|
|
440
|
+
_controls_props2, _controls_props_dataBind1;
|
|
442
441
|
if (((_controls_props1 = controls.props) === null || _controls_props1 === void 0 ? void 0 : (_controls_props_dataBind = _controls_props1.dataBind) === null || _controls_props_dataBind === void 0 ? void 0 : _controls_props_dataBind.fieldCode) !== undefined && ((_controls_props2 = controls.props) === null || _controls_props2 === void 0 ? void 0 : (_controls_props_dataBind1 = _controls_props2.dataBind) === null || _controls_props_dataBind1 === void 0 ? void 0 : _controls_props_dataBind1.fieldCode) !== "") {
|
|
443
442
|
permissionItem.group = "field";
|
|
444
443
|
}
|
|
@@ -517,7 +516,8 @@ function generatePermissions(controls, parent) {
|
|
|
517
516
|
return generatePermissions(item, parent);
|
|
518
517
|
}).flat()));
|
|
519
518
|
}
|
|
520
|
-
if (
|
|
519
|
+
// if (controls instanceof DesignerListControl) {
|
|
520
|
+
if (controls.controlType === CONTROL_BASE_TYPE.LIST) {
|
|
521
521
|
var // 明细子表和列表的需要给parentId
|
|
522
522
|
_result2;
|
|
523
523
|
(_result2 = result).push.apply(_result2, _toConsumableArray(controls.props.headers.map(function(item) {
|
package/dist/index.umd.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var Yf=Object.defineProperty;var vr=Object.getOwnPropertySymbols;var ep=Object.prototype.hasOwnProperty,tp=Object.prototype.propertyIsEnumerable;var gr=(E,F,O)=>F in E?Yf(E,F,{enumerable:!0,configurable:!0,writable:!0,value:O}):E[F]=O,Z=(E,F)=>{for(var O in F||(F={}))ep.call(F,O)&&gr(E,O,F[O]);if(vr)for(var O of vr(F))tp.call(F,O)&&gr(E,O,F[O]);return E};var Zt=(E,F,O)=>new Promise((Ue,ye)=>{var Ve=L=>{try{Y(O.next(L))}catch(ee){ye(ee)}},He=L=>{try{Y(O.throw(L))}catch(ee){ye(ee)}},Y=L=>L.done?Ue(L.value):Promise.resolve(L.value).then(Ve,He);Y((O=O.apply(E,F)).next())});(function(E,F){typeof exports=="object"&&typeof module!="undefined"?F(exports):typeof define=="function"&&define.amd?define(["exports"],F):(E=typeof globalThis!="undefined"?globalThis:E||self,F(E.modelDrivenDriven={}))})(this,function(E){"use strict";var F="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Ue="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",ye="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Ve="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",He="{caption}\u5FC5\u586B",Y="\u8BF7\u8F93\u5165\u6807\u9898",L="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ee="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",mr="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Er="\u8BF7\u7ED1\u5B9A\u8868\u5355",_r="\u8BF7\u7ED1\u5B9A\u5217\u8868",br="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Br="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Sr="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Ar="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",wr="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Cr="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Ir="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Fr="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Or="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Dr="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Rr="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Pr="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",$r="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Tr="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Mr="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",xr="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",jr="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Lr="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Nr="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",qr="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Ur="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Vr="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Hr="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",kr="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Wr="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",zr="\u8BF7\u9009\u62E9\u7701",Gr="\u8BF7\u9009\u62E9\u5E02",Kr="\u8BF7\u9009\u62E9\u533A",Xr="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Jr="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Qr="\u8BF7\u8F93\u5165\u5217\u5BBD",Zr="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Yr="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",eu="\u8BF7\u9009\u62E9\u63A7\u4EF6",tu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",nu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",ru="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",uu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",ou="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",iu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",au="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",su="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",cu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",lu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",fu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",pu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",du="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",hu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",yu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",vu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",gu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",mu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Eu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",_u="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",bu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Bu={isNotNumber:F,isNotString:O,isNotObject:Ue,isNotArray:ye,isNotBoolean:Ve,runtimeRequired:He,pleaseEnterCaption:Y,pleaseEnterCaptionTip:L,pleaseEnterPlaceholder:ee,pleaseEnterFieldCode:mr,pleaseEnterForm:Er,pleaseEnterList:_r,pleaseEnterProcess:br,pleaseEnterLabel:Br,pleaseEnterValue:Sr,bizKeyNotBindFiled:Ar,pleaseSelectOneField:wr,pleaseEnterNumberRange:Cr,pleaseEnterAValueGreaterThanMin:Ir,pleaseEnterAValueLessThanMax:Fr,numberRangeSetError:Or,stringRangeError:Dr,attachmentMaxSize:Rr,pleaseEnterTotalScoreSetting:Pr,theTotalScoreMustNotBeLessThan1:$r,scoreDefaultValueRange:Tr,attachmentLimitError:Mr,PleaseReselectTheOptionalQuantity:xr,TheMaximumLengthIsGreaterThanTheMinimumLength:jr,TheMinimumLengthIsGreaterThanTheMaximumLength:Lr,PleaseSelectTheCorrectOptionSettings:Nr,optionIdIsRepeat:qr,optionIsRequired:Ur,pleaseEnterDataCode:Vr,pleaseEnterValueFieldCode:Hr,pleaseEnterSvcCode:kr,pleaseBindAtLeastOneDisplayValue:Wr,pleaseSelectProvince:zr,pleaseSelectCity:Gr,pleaseSelectDistrict:Kr,limitRowsCannotBeLessThan0:Xr,TheNumberOfRowsCannotBeLessThanMinRows:Jr,pleaseEnterColumnWidth:Qr,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Zr,pleaseCompleteAllRulesAndConditions:Yr,pleaseSelectControl:eu,pleaseSelectAtLeastOneColumn:tu,pleaseSelectFillBackMode:nu,pleaseSelectDashboard:ru,rootNodeIsRequired:uu,theViewNameCannotBeEmpty:ou,pleaseSelectOcrType:iu,pleaseSelectAtLeastOneFieldToFillIn:au,pleaseChooseAtLeastOne:su,pleaseEnterButtonContent:cu,pleaseEnterDataCodeInDataSetting:lu,pleaseEnterValueFieldCodeInDataSetting:fu,pleaseEnterSvcCodeInDataSetting:pu,pleaseBindAtLeastOneDisplayValueInDataSetting:du,rootNodeIsRequiredInDataSetting:hu,pleaseEnterMaxHeight:yu,pleaseEnter:vu,pleaseEnterWatermark:gu,pleaseEnterFileName:mu,pleaseUploadAtLeastOnePrintTemplate:Eu,pleaseAssignBusiness:_u,pleaseAssignExternal:bu},Su="Please enter a number",Au="Please enter a string",wu="Please enter an object",Cu="Please enter an array",Iu="Please enter a boolean",Fu="{caption} Required",Ou="Please enter the title",Du="Please enter the bubble prompt",Ru="Please enter the prompt text",Pu="Please bind data items",$u="Please bind the form",Tu="Please bind the list",Mu="Please bind the process",xu="Please enter the displayed value",ju="Please enter the stored value",Lu="The document number is not bound to the data item",Nu="Please select at least one display field",qu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Uu="Please enter a value greater than or equal to {min}",Vu="Please enter a value less than or equal to {max}",Hu="The value range is set incorrectly",ku="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Wu="The attachment size must be between 0MB and 1000MB",zu="Please fill in the total score setting",Gu="The total score cannot be less than 1",Ku="The default value must be between {min} and {max}",Xu="The number of attachments uploaded must be between {min} and {max}",Ju="Please re-select the optional quantity",Qu="The maximum length of the control must be greater than the minimum length",Zu="The minimum length of the control must be less than the maximum length",Yu="Please select the correct option setting",eo="Option ID cannot be repeated",to="Please enter at least one option",no="Please bind the data source",ro="Please bind the stored value",uo="Please bind the service",oo="At least one display value must be bound",io="Please select a province",ao="Please select a city",so="Please select a district",co="The minimum number of lines to fill in cannot be less than 0",lo="The number of rows cannot be less than {min} rows",fo="Please enter the column width",po="Please set the logical relationship of all rule conditions",ho="Please complete all rules and conditions",yo="please select control",vo="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",go="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",mo="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Eo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",_o="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",bo="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Bo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",So="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ao="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",wo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Co="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Io="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Fo="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Oo="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Do="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ro="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Po="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",$o="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",To={isNotNumber:Su,isNotString:Au,isNotObject:wu,isNotArray:Cu,isNotBoolean:Iu,runtimeRequired:Fu,pleaseEnterCaption:Ou,pleaseEnterCaptionTip:Du,pleaseEnterPlaceholder:Ru,pleaseEnterFieldCode:Pu,pleaseEnterForm:$u,pleaseEnterList:Tu,pleaseEnterProcess:Mu,pleaseEnterLabel:xu,pleaseEnterValue:ju,bizKeyNotBindFiled:Lu,pleaseSelectOneField:Nu,pleaseEnterNumberRange:qu,pleaseEnterAValueGreaterThanMin:Uu,pleaseEnterAValueLessThanMax:Vu,numberRangeSetError:Hu,stringRangeError:ku,attachmentMaxSize:Wu,pleaseEnterTotalScoreSetting:zu,theTotalScoreMustNotBeLessThan1:Gu,scoreDefaultValueRange:Ku,attachmentLimitError:Xu,PleaseReselectTheOptionalQuantity:Ju,TheMaximumLengthIsGreaterThanTheMinimumLength:Qu,TheMinimumLengthIsGreaterThanTheMaximumLength:Zu,PleaseSelectTheCorrectOptionSettings:Yu,optionIdIsRepeat:eo,optionIsRequired:to,pleaseEnterDataCode:no,pleaseEnterValueFieldCode:ro,pleaseEnterSvcCode:uo,pleaseBindAtLeastOneDisplayValue:oo,pleaseSelectProvince:io,pleaseSelectCity:ao,pleaseSelectDistrict:so,limitRowsCannotBeLessThan0:co,TheNumberOfRowsCannotBeLessThanMinRows:lo,pleaseEnterColumnWidth:fo,pleaseSetTheLogicalRelationshipOfAllRuleConditions:po,pleaseCompleteAllRulesAndConditions:ho,pleaseSelectControl:yo,pleaseSelectDashboard:vo,theViewNameCannotBeEmpty:go,pleaseSelectOcrType:mo,pleaseSelectAtLeastOneFieldToFillIn:Eo,pleaseChooseAtLeastOne:_o,pleaseEnterButtonContent:bo,pleaseEnterDataCodeInDataSetting:Bo,pleaseEnterValueFieldCodeInDataSetting:So,pleaseEnterSvcCodeInDataSetting:Ao,pleaseBindAtLeastOneDisplayValueInDataSetting:wo,rootNodeIsRequiredInDataSetting:Co,pleaseEnterMaxHeight:Io,pleaseEnter:Fo,pleaseEnterWatermark:Oo,pleaseEnterFileName:Do,pleaseUploadAtLeastOnePrintTemplate:Ro,pleaseAssignBusiness:Po,pleaseAssignExternal:$o},Mo="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xo="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",jo="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Lo="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",No="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",qo="{caption}\u5FC5\u9808",Uo="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Vo="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ho="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ko="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Wo="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",zo="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Go="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ko="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Xo="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Jo="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Qo="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Zo="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Yo="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ei="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ti="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",ni="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ri="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ui="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",oi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ii="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ai="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",si="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ci="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",li="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",fi="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",pi="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",di="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",hi="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",yi="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",vi="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",gi="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",mi="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ei="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",_i="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",bi="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Bi="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Si="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ai="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",wi="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ci="please select control",Ii="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Fi="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Oi="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Di="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ri="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Pi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",$i="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ti="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Mi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",xi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ji="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Li="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ni="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",qi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Ui="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Vi="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Hi="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ki="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Wi={isNotNumber:Mo,isNotString:xo,isNotObject:jo,isNotArray:Lo,isNotBoolean:No,runtimeRequired:qo,pleaseEnterCaption:Uo,pleaseEnterCaptionTip:Vo,pleaseEnterPlaceholder:Ho,pleaseEnterFieldCode:ko,pleaseEnterForm:Wo,pleaseEnterList:zo,pleaseEnterProcess:Go,pleaseEnterLabel:Ko,pleaseEnterValue:Xo,bizKeyNotBindFiled:Jo,pleaseSelectOneField:Qo,pleaseEnterNumberRange:Zo,pleaseEnterAValueGreaterThanMin:Yo,pleaseEnterAValueLessThanMax:ei,numberRangeSetError:ti,stringRangeError:ni,attachmentMaxSize:ri,pleaseEnterTotalScoreSetting:ui,theTotalScoreMustNotBeLessThan1:oi,scoreDefaultValueRange:ii,attachmentLimitError:ai,PleaseReselectTheOptionalQuantity:si,TheMaximumLengthIsGreaterThanTheMinimumLength:ci,TheMinimumLengthIsGreaterThanTheMaximumLength:li,PleaseSelectTheCorrectOptionSettings:fi,optionIdIsRepeat:pi,optionIsRequired:di,pleaseEnterDataCode:hi,pleaseEnterValueFieldCode:yi,pleaseEnterSvcCode:vi,pleaseBindAtLeastOneDisplayValue:gi,pleaseSelectProvince:mi,pleaseSelectCity:Ei,pleaseSelectDistrict:_i,limitRowsCannotBeLessThan0:bi,TheNumberOfRowsCannotBeLessThanMinRows:Bi,pleaseEnterColumnWidth:Si,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ai,pleaseCompleteAllRulesAndConditions:wi,pleaseSelectControl:Ci,pleaseSelectDashboard:Ii,theViewNameCannotBeEmpty:Fi,pleaseSelectOcrType:Oi,pleaseSelectAtLeastOneFieldToFillIn:Di,pleaseChooseAtLeastOne:Ri,pleaseEnterButtonContent:Pi,pleaseEnterDataCodeInDataSetting:$i,pleaseEnterValueFieldCodeInDataSetting:Ti,pleaseEnterSvcCodeInDataSetting:Mi,pleaseBindAtLeastOneDisplayValueInDataSetting:xi,rootNodeIsRequiredInDataSetting:ji,pleaseEnterMaxHeight:Li,pleaseEnter:Ni,pleaseEnterWatermark:qi,pleaseEnterFileName:Ui,pleaseUploadAtLeastOnePrintTemplate:Vi,pleaseAssignBusiness:Hi,pleaseAssignExternal:ki},zi={zhCN:Bu,enUS:To,jaJP:Wi},Yt;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(Yt||(Yt={}));var en;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(en||(en={}));var Gi="zh-CN",Ki=function(){};function P(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var z;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(z||(z={}));var d;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(d||(d={}));var A;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(A||(A={}));var D,Xi=(D={},P(D,A.ARRAY,d.ARRAY_COLUMN),P(D,A.AUTO_NUMBER,d.AUTO_NUMBER_COLUMN),P(D,A.DECIMAL,d.DECIMAL_COLUMN),P(D,A.DEPARTMENTS,d.DEPARTMENT_COLUMN),P(D,A.FILE,d.FILE_COLUMN),P(D,A.IMAGE,d.IMAGE_COLUMN),P(D,A.ADDRESS,d.LOCATION_COLUMN),P(D,A.EMPLOYEES,d.EMPLOYEE_COLUMN),P(D,A.TEXT,d.TEXT_COLUMN),P(D,A.TIMESCOPE,d.TIMESCOPE_COLUMN),P(D,A.TIMESTAMP,d.TIMESTAMP_COLUMN),P(D,A.VARCHAR,d.VARCHAR_COLUMN),P(D,A.RELATION,d.VARCHAR_COLUMN),D),tn;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(tn||(tn={}));var nn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Ji=nn+"0123456789";function ke(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",r=0;r<e;r++){var n=r===0?nn:Ji,u=Math.random()*n.length;t+=n[parseInt(String(u),10)]}return t}function We(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Qi(e){if(Array.isArray(e))return We(e)}function Zi(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function rn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Yi(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function ve(e,t,r){return Yi()?ve=Reflect.construct:ve=function(u,o,i){var s=[null];s.push.apply(s,o);var c=Function.bind.apply(u,s),a=new c;return i&&ne(a,i.prototype),a},ve.apply(null,arguments)}function te(e){return te=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},te(e)}function un(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ne(e,t)}function ea(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function ta(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function na(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function ra(e,t){return t&&(ua(t)==="object"||typeof t=="function")?t:Zi(e)}function ne(e,t){return ne=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ne(e,t)}function on(e){return Qi(e)||ta(e)||oa(e)||na()}var ua=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function oa(e,t){if(!!e){if(typeof e=="string")return We(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return We(e,t)}}function ze(e){var t=typeof Map=="function"?new Map:void 0;return ze=function(n){if(n===null||!ea(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return ve(n,arguments,te(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),ne(u,n)},ze(e)}function ia(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function an(e){var t=ia();return function(){var n=te(e),u;if(t){var o=te(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return ra(this,u)}}var Ge=console;function ge(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n,u=t.slice(1);(n=Ge).warn.apply(n,["\u{1F9D0} Driven Warning:"+t[0]].concat(on(u)))}function sn(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n,u=t.slice(1);(n=Ge).log.apply(n,["\u{1F680} Driven Log:"+t[0]].concat(on(u)))}function aa(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Ke=function(e){un(r,e);var t=an(r);function r(n){rn(this,r);var u;return u=t.call(this,n),u.name="\u{1F4A5} Driven Error",u.message=n?aa(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return r}(ze(Error)),sa=function(e){un(r,e);var t=an(r);function r(n){rn(this,r);var u;return u=t.call(this,n),u.name="\u{1F6A8} Driven Reference Error",u}return r}(Ke);function re(e){throw new Ke(e)}function cn(e){throw new sa(e)}function ca(e){Ge.error(new Ke(e))}var la=Object.prototype.toString;function ln(e,t){return la.call(e)==="[object "+t+"]"}function fa(e){return ln(e,"String")}function pa(e){return ln(e,"Promise")}var da=function(){function e(t){var r,n;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((n=(r=t.messages)!==null&&r!==void 0?r:this.getPreImport(t.locale))!==null&&n!==void 0?n:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var r=this;this.locale=t,this._messageCache.clear();var n=this.getMessageData();pa(n)?n.then(function(u){r._messageCache.clear(),r.messages[r.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=n},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,r,n){var u=this.getMessage(t);return u?this.formatMessage(u,n):this.formatMessage(r,n)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var r=this.getPathArray(t),n=r.reduce(function(u,o,i,s){if(u!==void 0){var c=u[o];if(!(i===s.length-1&&!fa(c)))return c}},this.message);return this._messageCache.set(t,n),n},e.prototype.formatMessage=function(t,r){return r?t.replace(this.variableRegExp,function(n,u){var o=r[u];return o!==void 0?String(o):n}):t},e.prototype.getPreImport=function(t){var r;if(window.okI18nPreImport){var n=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(n)?window.okI18nPreImport:(r={},r[n]=window.okI18nPreImport,r)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function ha(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var T=function(){function e(){ha(this,e)}return e.getMessage=function(r){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(r,"",n)},e.resetI18n=function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Gi;return new da({locale:r,messages:zi})},e.setLocale=function(r){return this.$i18n.setLocale(r)},e}();T.$i18n=T.resetI18n();function fn(e,t,r){var n=t.replace(/\[(\d)]/g,function(o,i){return"."+i}).split("."),u=!1;return n.reduce(function(o,i,s,c){var a=o;if(!!o){if(!Object.prototype.hasOwnProperty.call(o,i)){ge("Can not set ".concat(t,"'s ").concat(i," property in current %o, Because there is no ").concat(i," property on the %o"),o,o);return}return s===c.length-1&&!Object.is(a[i],r)&&(a[i]=r,u=!0),a[i]}},e),u}var ya=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},va={exports:{}};(function(e){(function(t){var r=function(l,y,w){if(!a(y)||p(y)||v(y)||b(y)||c(y))return y;var _,C=0,x=0;if(f(y))for(_=[],x=y.length;C<x;C++)_.push(r(l,y[C],w));else{_={};for(var S in y)Object.prototype.hasOwnProperty.call(y,S)&&(_[l(S,w)]=r(l,y[S],w))}return _},n=function(l,y){y=y||{};var w=y.separator||"_",_=y.split||/(?=[A-Z])/;return l.split(_).join(w)},u=function(l){return B(l)?l:(l=l.replace(/[\-_\s]+(.)?/g,function(y,w){return w?w.toUpperCase():""}),l.substr(0,1).toLowerCase()+l.substr(1))},o=function(l){var y=u(l);return y.substr(0,1).toUpperCase()+y.substr(1)},i=function(l,y){return n(l,y).toLowerCase()},s=Object.prototype.toString,c=function(l){return typeof l=="function"},a=function(l){return l===Object(l)},f=function(l){return s.call(l)=="[object Array]"},p=function(l){return s.call(l)=="[object Date]"},v=function(l){return s.call(l)=="[object RegExp]"},b=function(l){return s.call(l)=="[object Boolean]"},B=function(l){return l=l-0,l===l},h=function(l,y){var w=y&&"process"in y?y.process:y;return typeof w!="function"?l:function(_,C){return w(_,l,C)}},g={camelize:u,decamelize:i,pascalize:o,depascalize:i,camelizeKeys:function(l,y){return r(h(u,y),l)},decamelizeKeys:function(l,y){return r(h(i,y),l,y)},pascalizeKeys:function(l,y){return r(h(o,y),l)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=g:t.humps=g})(ya)})(va);var pn={};Object.defineProperty(pn,"__esModule",{value:!0});function Xe(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:Xe(t));{const t={};for(const r in e){const n=e[r];t[r]=typeof n!="object"||n===null?n:Xe(n)}return t}}var ga=pn.default=Xe;function W(e){if(e!==void 0)return typeof e=="object"?ga(e):e}function Je(e){return Object.prototype.toString.call(e)==="[object Object]"}function ma(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function ue(e){return Array.isArray(e)}function Qe(e){return typeof e=="string"}function Ea(e){return Object.values(d).includes(e)}function Ze(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function _a(e){if(Array.isArray(e))return Ze(e)}function dn(e,t,r,n,u,o,i){try{var s=e[o](i),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function ba(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){dn(o,n,u,i,s,"next",c)}function s(c){dn(o,n,u,i,s,"throw",c)}i(void 0)})}}function Ba(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Sa(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Aa(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ye(e){return _a(e)||Sa(e)||wa(e)||Aa()}function wa(e,t){if(!!e){if(typeof e=="string")return Ze(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Ze(e,t)}}var Ca=function(e,t){var r,n,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;i;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},hn=function(){function e(){Ba(this,e),this._events=new Map,this.debug=!1}var t=e.prototype;return t.emit=function(n){for(var u=arguments.length,o=new Array(u>1?u-1:0),i=1;i<u;i++)o[i-1]=arguments[i];var s=this;return ba(function(){var c,a,f,p,v,b,B,h,g,l,y,w;return Ca(this,function(_){switch(_.label){case 0:if(c=s._events.get(n),a=[],!c)return[3,10];f=c.slice(),p=!0,v=!1,b=void 0,_.label=1;case 1:_.trys.push([1,8,9,10]),B=f[Symbol.iterator](),_.label=2;case 2:if(p=(h=B.next()).done)return[3,7];if(g=h.value,!c.includes(g))return[3,6];_.label=3;case 3:return _.trys.push([3,5,,6]),s.debug&&sn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(g.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+g.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(o.map(function(){return"%o"}).join(","),"\u3002")].concat(Ye(o))),[4,g.apply(null,Ye(o))];case 4:return l=_.sent(),s.debug&&sn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(g.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+g.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(o.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Ye(o),[l])),a.push(l),l===!1?[3,7]:[3,6];case 5:return y=_.sent(),ca(String(y)),[3,6];case 6:return p=!0,[3,2];case 7:return[3,10];case 8:return w=_.sent(),v=!0,b=w,[3,10];case 9:try{!p&&B.return!=null&&B.return()}finally{if(v)throw b}return[7];case 10:return[2,a]}})})()},t.on=function(n,u){if(this._events.has(n)){var o;(o=this._events.get(n))===null||o===void 0||o.push(u)}else this._events.set(n,[u])},t.off=function(n,u){if(this._events.has(n)){var o=this._events.get(n),i=o==null?void 0:o.indexOf(u);o==null||o.splice(i,1)}},t.delete=function(n){this._events.has(n)&&this._events.delete(n)},t.clear=function(){this._events=new Map},e}();function Ia(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Fa=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"}],oe=function(){function e(){Ia(this,e)}var t=e.prototype;return t.getEventsFromKeys=function(n){var u=typeof n=="string"?[n]:n;return e.events.filter(function(o){return u.includes(o.key)})},e}();oe.events=Fa;function Oa(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var yn=[],me=function(){function e(r){Oa(this,e),this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=r,this._initControls(r)}var t=e.prototype;return t.registerControlConfig=function(n,u){return this.controlConfigMap.set(n,u),this},t.getControlConfig=function(n){return this.controlConfigMap.get(n)},t.getControls=function(){return this._controls},t.register=function(n){n.__is_control__||re("".concat(n.name," is not a Control"));var u=this._controls.findIndex(function(o){return o.controlType===n.controlType});return u>-1&&(ge("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(u,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this},t.isLayoutControl=function(n){return n.controlType===z.LAYOUT},t.isFormControl=function(n){return n.controlType===z.FORM},t.isListControl=function(n){return n.controlType===z.LIST},t.isColumnControl=function(n){return n.controlType===z.COLUMN},t.createControl=function(n,u){var o=this;if(Array.isArray(n))return n.map(function(f){return o.createControl(f,u)});n.children&&(n.children=n.children.map(function(f){return o.createControl(f,u)})),this.isListControl(n)&&n.props.headers&&(n.props.headers=n.props.headers.map(function(f){return o.createControl(f,u)}));var i=this.getControlFormType(n.type);if(i){var s=n;if(typeof u=="function"){var c=u(s);c&&(s=c)}var a=new i(s);return a}else re("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))},t.createControlInstance=function(n,u){var o=this.getControlFormType(n);if(o)return new o(u)},t.getControlFormType=function(n){return this._controls.find(function(u){return u.controlType===n})},t._initControls=function(n){var u=this;this.constructor.staticControls.forEach(function(o){u.register(o[n])})},e.register=function(n){var u=n.Designer,o=n.Runtime;(!u||!o||!u.__is_control__||!o.__is_control__)&&re("".concat(n," is can't register as a Control"));var i=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return i>-1&&(ge("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(i,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),this},e}();me.staticControls=yn,me.staticRegisteredTypes=new Set(yn.map(function(e){return e.Designer.controlType})),me.staticRegisteredConfigs=new Map;function et(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ee=function e(t){et(this,e);var r;this.dataCode=(r=t==null?void 0:t.dataCode)!==null&&r!==void 0?r:"";var n;this.fieldCode=(n=t==null?void 0:t.fieldCode)!==null&&n!==void 0?n:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:""},Da=function e(t){et(this,e);var r;this.minWidth=(r=t==null?void 0:t.minWidth)!==null&&r!==void 0?r:150,this.maxWidth=t==null?void 0:t.maxWidth;var n;this.flex=(n=t==null?void 0:t.flex)!==null&&n!==void 0?n:1},vn;(function(e){e.CNY="CNY",e.USD="USD",e.JPY="JPY",e.EUR="EUR",e.INR="INR",e.IDR="IDR",e.BRL="BRL",e.AED="AED",e.AUD="AUD",e.CAD="CAD",e.EGP="EGP",e.GBP="GBP",e.ZAR="ZAR",e.KRW="KRW",e.MAD="MAD",e.MXN="MXN",e.MYR="MYR",e.PHP="PHP",e.PLN="PLN",e.RUB="RUB",e.SGD="SGD",e.THB="THB",e.TRY="TRY",e.TWD="TWD",e.VND="VND",e.HKD="HKD",e.IEP="IEP"})(vn||(vn={}));var gn;(function(e){e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions"})(gn||(gn={}));var tt;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(tt||(tt={}));var Ra=function e(t){et(this,e);var r;this.width=(r=t==null?void 0:t.width)!==null&&r!==void 0?r:"";var n;this.height=(n=t==null?void 0:t.height)!==null&&n!==void 0?n:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var o;this.heightConfig=(o=t==null?void 0:t.heightConfig)!==null&&o!==void 0?o:"fill"};function Pa(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function nt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $a(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function _e(e,t,r){return $a()?_e=Reflect.construct:_e=function(u,o,i){var s=[null];s.push.apply(s,o);var c=Function.bind.apply(u,s),a=new c;return i&&ae(a,i.prototype),a},_e.apply(null,arguments)}function ie(e){return ie=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ie(e)}function Ta(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ae(e,t)}function Ma(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function xa(e,t){return t&&(ja(t)==="object"||typeof t=="function")?t:Pa(e)}function ae(e,t){return ae=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ae(e,t)}var ja=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function rt(e){var t=typeof Map=="function"?new Map:void 0;return rt=function(n){if(n===null||!Ma(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return _e(n,arguments,ie(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),ae(u,n)},rt(e)}function La(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Na(e){var t=La();return function(){var n=ie(e),u;if(t){var o=ie(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return xa(this,u)}}var ut=function e(t){nt(this,e),this.isHide={type:"boolean"}},mn=function(e){Ta(r,e);var t=Na(r);function r(n){return nt(this,r),t.call(this)}return r}(rt(Array)),q=function e(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";nt(this,e);var n;this.isHide=(n=t==null?void 0:t.isHide)!==null&&n!==void 0?n:!1,this.style=new Ra(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:r};q.Rules=ut,q.RuntimeRules=mn;function M(){return M=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},M.apply(this,arguments)}function qa(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function ot(e){return ot=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ot(e)}function be(e,t){return be=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},be(e,t)}function Ua(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Be(e,t,r){return Ua()?Be=Reflect.construct:Be=function(u,o,i){var s=[null];s.push.apply(s,o);var c=Function.bind.apply(u,s),a=new c;return i&&be(a,i.prototype),a},Be.apply(null,arguments)}function Va(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function it(e){var t=typeof Map=="function"?new Map:void 0;return it=function(n){if(n===null||!Va(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return Be(n,arguments,ot(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),be(u,n)},it(e)}var Ha=/%[sdj%]/g,En=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(En=function(t,r){typeof console!="undefined"&&console.warn&&r.every(function(n){return typeof n=="string"})&&console.warn(t,r)});function at(e){if(!e||!e.length)return null;var t={};return e.forEach(function(r){var n=r.field;t[n]=t[n]||[],t[n].push(r)}),t}function $(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n=1,u=t[0],o=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var i=String(u).replace(Ha,function(s){if(s==="%%")return"%";if(n>=o)return s;switch(s){case"%s":return String(t[n++]);case"%d":return Number(t[n++]);case"%j":try{return JSON.stringify(t[n++])}catch(c){return"[Circular]"}break;default:return s}});return i}return u}function ka(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function I(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||ka(t)&&typeof e=="string"&&!e)}function Wa(e,t,r){var n=[],u=0,o=e.length;function i(s){n.push.apply(n,s),u++,u===o&&r(n)}e.forEach(function(s){t(s,i)})}function _n(e,t,r){var n=0,u=e.length;function o(i){if(i&&i.length){r(i);return}var s=n;n=n+1,s<u?t(e[s],o):r([])}o([])}function za(e){var t=[];return Object.keys(e).forEach(function(r){t.push.apply(t,e[r])}),t}var bn=function(e){qa(t,e);function t(r,n){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=r,u.fields=n,u}return t}(it(Error));function Ga(e,t,r,n){if(t.first){var u=new Promise(function(p,v){var b=function(g){return n(g),g.length?v(new bn(g,at(g))):p()},B=za(e);_n(B,r,b)});return u.catch(function(p){return p}),u}var o=t.firstFields||[];o===!0&&(o=Object.keys(e));var i=Object.keys(e),s=i.length,c=0,a=[],f=new Promise(function(p,v){var b=function(h){if(a.push.apply(a,h),c++,c===s)return n(a),a.length?v(new bn(a,at(a))):p()};i.length||(n(a),p()),i.forEach(function(B){var h=e[B];o.indexOf(B)!==-1?_n(h,r,b):Wa(h,r,b)})});return f.catch(function(p){return p}),f}function Bn(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function Sn(e,t){if(t){for(var r in t)if(t.hasOwnProperty(r)){var n=t[r];typeof n=="object"&&typeof e[r]=="object"?e[r]=M(M({},e[r]),n):e[r]=n}}return e}function An(e,t,r,n,u,o){e.required&&(!r.hasOwnProperty(e.field)||I(t,o||e.type))&&n.push($(u.messages.required,e.fullField))}function Ka(e,t,r,n,u){(/^\s+$/.test(t)||t==="")&&n.push($(u.messages.whitespace,e.fullField))}var st={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},se={integer:function(t){return se.number(t)&&parseInt(t,10)===t},float:function(t){return se.number(t)&&!se.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(r){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!se.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(st.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(st.url)},hex:function(t){return typeof t=="string"&&!!t.match(st.hex)}};function Xa(e,t,r,n,u){if(e.required&&t===void 0){An(e,t,r,n,u);return}var o=["integer","float","array","regexp","object","method","email","number","date","url","hex"],i=e.type;o.indexOf(i)>-1?se[i](t)||n.push($(u.messages.types[i],e.fullField,e.type)):i&&typeof t!==e.type&&n.push($(u.messages.types[i],e.fullField,e.type))}function Ja(e,t,r,n,u){var o=typeof e.len=="number",i=typeof e.min=="number",s=typeof e.max=="number",c=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,p=typeof t=="number",v=typeof t=="string",b=Array.isArray(t);if(p?f="number":v?f="string":b&&(f="array"),!f)return!1;b&&(a=t.length),v&&(a=t.replace(c,"_").length),o?a!==e.len&&n.push($(u.messages[f].len,e.fullField,e.len)):i&&!s&&a<e.min?n.push($(u.messages[f].min,e.fullField,e.min)):s&&!i&&a>e.max?n.push($(u.messages[f].max,e.fullField,e.max)):i&&s&&(a<e.min||a>e.max)&&n.push($(u.messages[f].range,e.fullField,e.min,e.max))}var G="enum";function Qa(e,t,r,n,u){e[G]=Array.isArray(e[G])?e[G]:[],e[G].indexOf(t)===-1&&n.push($(u.messages[G],e.fullField,e[G].join(", ")))}function Za(e,t,r,n,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||n.push($(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var o=new RegExp(e.pattern);o.test(t)||n.push($(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var m={required:An,whitespace:Ka,type:Xa,range:Ja,enum:Qa,pattern:Za};function Ya(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t,"string")&&!e.required)return r();m.required(e,t,n,o,u,"string"),I(t,"string")||(m.type(e,t,n,o,u),m.range(e,t,n,o,u),m.pattern(e,t,n,o,u),e.whitespace===!0&&m.whitespace(e,t,n,o,u))}r(o)}function es(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&m.type(e,t,n,o,u)}r(o)}function ts(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(t===""&&(t=void 0),I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&(m.type(e,t,n,o,u),m.range(e,t,n,o,u))}r(o)}function ns(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&m.type(e,t,n,o,u)}r(o)}function rs(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),I(t)||m.type(e,t,n,o,u)}r(o)}function us(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&(m.type(e,t,n,o,u),m.range(e,t,n,o,u))}r(o)}function os(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&(m.type(e,t,n,o,u),m.range(e,t,n,o,u))}r(o)}function is(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(t==null&&!e.required)return r();m.required(e,t,n,o,u,"array"),t!=null&&(m.type(e,t,n,o,u),m.range(e,t,n,o,u))}r(o)}function as(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&m.type(e,t,n,o,u)}r(o)}var ss="enum";function cs(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&m[ss](e,t,n,o,u)}r(o)}function ls(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t,"string")&&!e.required)return r();m.required(e,t,n,o,u),I(t,"string")||m.pattern(e,t,n,o,u)}r(o)}function fs(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t,"date")&&!e.required)return r();if(m.required(e,t,n,o,u),!I(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),m.type(e,s,n,o,u),s&&m.range(e,s.getTime(),n,o,u)}}r(o)}function ps(e,t,r,n,u){var o=[],i=Array.isArray(t)?"array":typeof t;m.required(e,t,n,o,u,i),r(o)}function ct(e,t,r,n,u){var o=e.type,i=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(I(t,o)&&!e.required)return r();m.required(e,t,n,i,u,o),I(t,o)||m.type(e,t,n,i,u)}r(i)}function ds(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u)}r(o)}var ce={string:Ya,method:es,number:ts,boolean:ns,regexp:rs,integer:us,float:os,array:is,object:as,enum:cs,pattern:ls,date:fs,url:ct,hex:ct,email:ct,required:ps,any:ds};function lt(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var ft=lt();function U(e){this.rules=null,this._messages=ft,this.define(e)}U.prototype={messages:function(t){return t&&(this._messages=Sn(lt(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var r,n;for(r in t)t.hasOwnProperty(r)&&(n=t[r],this.rules[r]=Array.isArray(n)?n:[n])},validate:function(t,r,n){var u=this;r===void 0&&(r={}),n===void 0&&(n=function(){});var o=t,i=r,s=n;if(typeof i=="function"&&(s=i,i={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function c(h){var g,l=[],y={};function w(_){if(Array.isArray(_)){var C;l=(C=l).concat.apply(C,_)}else l.push(_)}for(g=0;g<h.length;g++)w(h[g]);l.length?y=at(l):(l=null,y=null),s(l,y)}if(i.messages){var a=this.messages();a===ft&&(a=lt()),Sn(a,i.messages),i.messages=a}else i.messages=this.messages();var f,p,v={},b=i.keys||Object.keys(this.rules);b.forEach(function(h){f=u.rules[h],p=o[h],f.forEach(function(g){var l=g;typeof l.transform=="function"&&(o===t&&(o=M({},o)),p=o[h]=l.transform(p)),typeof l=="function"?l={validator:l}:l=M({},l),l.validator=u.getValidationMethod(l),l.field=h,l.fullField=l.fullField||h,l.type=u.getType(l),l.validator&&(v[h]=v[h]||[],v[h].push({rule:l,value:p,source:o,field:h}))})});var B={};return Ga(v,i,function(h,g){var l=h.rule,y=(l.type==="object"||l.type==="array")&&(typeof l.fields=="object"||typeof l.defaultField=="object");y=y&&(l.required||!l.required&&h.value),l.field=h.field;function w(x,S){return M(M({},S),{},{fullField:l.fullField+"."+x})}function _(x){x===void 0&&(x=[]);var S=x;if(Array.isArray(S)||(S=[S]),!i.suppressWarning&&S.length&&U.warning("async-validator:",S),S.length&&l.message!==void 0&&(S=[].concat(l.message)),S=S.map(Bn(l)),i.first&&S.length)return B[l.field]=1,g(S);if(!y)g(S);else{if(l.required&&!h.value)return l.message!==void 0?S=[].concat(l.message).map(Bn(l)):i.error&&(S=[i.error(l,$(i.messages.required,l.field))]),g(S);var j={};if(l.defaultField)for(var hr in h.value)h.value.hasOwnProperty(hr)&&(j[hr]=l.defaultField);j=M(M({},j),h.rule.fields);for(var J in j)if(j.hasOwnProperty(J)){var Zf=Array.isArray(j[J])?j[J]:[j[J]];j[J]=Zf.map(w.bind(null,J))}var yr=new U(j);yr.messages(i.messages),h.rule.options&&(h.rule.options.messages=i.messages,h.rule.options.error=i.error),yr.validate(h.value,h.rule.options||i,function(Qt){var Q=[];S&&S.length&&Q.push.apply(Q,S),Qt&&Qt.length&&Q.push.apply(Q,Qt),g(Q.length?Q:null)})}}var C;l.asyncValidator?C=l.asyncValidator(l,h.value,_,h.source,i):l.validator&&(C=l.validator(l,h.value,_,h.source,i),C===!0?_():C===!1?_(l.message||l.field+" fails"):C instanceof Array?_(C):C instanceof Error&&_(C.message)),C&&C.then&&C.then(function(){return _()},function(x){return _(x)})},function(h){c(h)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!ce.hasOwnProperty(t.type))throw new Error($("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var r=Object.keys(t),n=r.indexOf("message");return n!==-1&&r.splice(n,1),r.length===1&&r[0]==="required"?ce.required:ce[this.getType(t)]||!1}},U.register=function(t,r){if(typeof r!="function")throw new Error("Cannot register a validator by type, validator is not a function");ce[t]=r},U.warning=En,U.messages=ft,U.validators=ce;var hs={required:"%s \u5FC5\u586B",maxLength:"%s \u8D85\u51FA\u6700\u5927\u957F\u5EA6\u9650\u5236",minLength:"%s \u5C0F\u4E8E\u6700\u5C0F\u957F\u5EA6\u9650\u5236",string:{range:"%s \u4E0D\u5728\u6307\u5B9A\u957F\u5EA6\u5185"}};function ys(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=new U(e);return r.messages(Object.assign(hs,t)),r}var wn=new hn;function pt(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function vs(e){if(Array.isArray(e))return e}function gs(e){if(Array.isArray(e))return pt(e)}function Cn(e,t,r,n,u,o,i){try{var s=e[o](i),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function In(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){Cn(o,n,u,i,s,"next",c)}function s(c){Cn(o,n,u,i,s,"throw",c)}i(void 0)})}}function ms(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Fn(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Es(e,t,r){return t&&Fn(e.prototype,t),r&&Fn(e,r),e}function _s(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function On(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Dn(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function bs(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Bs(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Rn(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){_s(e,u,r[u])})}return e}function Ss(e){return vs(e)||Dn(e)||Pn(e)||bs()}function dt(e){return gs(e)||Dn(e)||Pn(e)||Bs()}function Pn(e,t){if(!!e){if(typeof e=="string")return pt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return pt(e,t)}}var $n=function(e,t){var r,n,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;i;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},R=function(){function t(n){var u=this;ms(this,t),this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=Mn,this.removeSetting=Tn,this._callControlHooks("preInstance",n);var o=On(this,t)?this.constructor:void 0,i=o.controlName,s=o.controlIcon,c=o.controlType,a=o.controlFieldType,f=o.controlEventKeys,p=o.controlCustomEvents,v=o.name,b=o.setting;i&&s&&c||cn("The ".concat(v," controlName,controlIcon,controlType is not define"));var B;this.id=(B=n==null?void 0:n.id)!==null&&B!==void 0?B:ke(10),this.name=i,this.icon=s;var h;this.type=(h=n==null?void 0:n.type)!==null&&h!==void 0?h:c,this.props=new q(n==null?void 0:n.props,(On(this,t)?this.constructor:void 0).controlName);var g;this.controlType=(g=n==null?void 0:n.controlType)!==null&&g!==void 0?g:"base",this.setting=W(b);var l;this.fieldType=(l=n==null?void 0:n.fieldType)!==null&&l!==void 0?l:a,this.eventKeys=W(f),this.customEvents=W(p),Promise.resolve().then(function(){u._callControlHooks("postInstance",n)})}var r=t.prototype;return r._callControlHooks=function(){for(var u=arguments.length,o=new Array(u),i=0;i<u;i++)o[i]=arguments[i];var s,c=Ss(o),a=c[0],f=c.slice(1);return(s=wn).emit.apply(s,[a,this].concat(dt(f)))},r.preUpdate=function(u,o){this._callControlHooks("preUpdateProps",u,o)},r.postUpdate=function(u,o){this._callControlHooks("postUpdateProps",u,o)},r.updateProps=function(u,o){this.preUpdate(u,o),fn(this.props,u,o),this.postUpdate(u,o)},r.preValidate=function(){var u=this;return In(function(){var o,i,s;return $n(this,function(c){switch(c.label){case 0:return o=Rn({},u.rules),[4,u._callControlHooks("preValidate",o)];case 1:return i=c.sent(),s=i[i.length-1],[2,s===!1?void 0:s]}})})()},r.validate=function(u,o){var i=this;return In(function(){var s,c,a,f;return $n(this,function(p){switch(p.label){case 0:return[4,i.preValidate()];case 1:s=p.sent(),c=s!==void 0?s:Rn({},i.rules),Array.isArray(o)&&o.forEach(function(v){c.hasOwnProperty(v)&&delete c[v]}),a=ys(c,u),p.label=2;case 2:return p.trys.push([2,4,,5]),[4,a.validate(i.props)];case 3:return p.sent(),[2,!0];case 4:throw f=p.sent(),f.control||(f.control=i),f;case 5:return[2]}})})()},r.toDataBindModel=function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,o=this.fieldType,i=this.id,s=this.type,c=this.props,a=c.dataBind,f=c.datasourceBind,p=c.optionConfig,v=c.caption,b=c.required,B=c.maxLength,h=c.options,g=c.encrypted,l=c.encryptedMode;if(!(!o&&!a&&!f)){var y={parentId:u,fieldType:o,controlId:i,caption:v,type:s,props:{}};switch(a&&(y.dataBind=a),p){case"datasource":case void 0:f&&(y.datasourceBind=f);break;case"custom":y.props.options=h;break}return b!==void 0&&(y.required=b),B!==void 0&&(y.maxLength=B),g!==void 0&&(y.encrypted=g),l!==void 0&&(y.encryptedMode=l),y}},r.preToSchema=function(){this._callControlHooks("preToSchema",this)},r.toSchema=function(){return this.preToSchema(),{id:this.id,type:this.type,props:W(this.props),fieldType:this.fieldType,controlType:this.controlType}},t.updateBasicControl=function(u,o){if(u==="setting"){if(o.add){var i;(i=this.setting).push.apply(i,dt(o.add))}o.remove&&this.removeSettingItem(o.remove),o.update}},Es(t,[{key:"rules",get:function(){var u=this.props.constructor.Rules;return u?new u(this.props):{}}}]),t}();R.controlName="\u63A7\u4EF6",R.controlIcon="icon",R.controlType="control",R.controlEventKeys=[],R.controlCustomEvents=[],R.setting=[],R.__is_control__=!0,R.removeSettingItem=Tn,R.updateSettingItem=Mn;function Tn(e){var t=this,r=Array.isArray(e)?e:[e];r.forEach(function(n){var u=typeof n!="string",o=t.setting.findIndex(function(c){return c.key===(u?n.key:n)});if(o!==-1){var i,s;u?t.setting[o].showItems=(i=t.setting[o].showItems)===null||i===void 0?void 0:i.filter(function(c){return!n.hideItems.includes(c)}):t.setting.splice(o,1),u&&!(!((s=t.setting[o].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(o,1)}})}function Mn(e,t){var r=this,n=typeof e=="string"?[e]:e;n.forEach(function(u){var o=r.setting.find(function(a){return a.key===u});if(o){if(typeof t=="boolean")o.visible=t;else if(typeof t=="object"){var i,s=(i=t.type)!==null&&i!==void 0?i:"replace";if(s==="replace")o.showItems=t.showItems;else{var c;(c=o.showItems).push.apply(c,dt(t.showItems))}}}})}function As(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function xn(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function ws(e,t,r){return t&&xn(e.prototype,t),r&&xn(e,r),e}function Cs(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var ht=function(){function t(r){As(this,t),this.customEvents=[],this.parent=null;var n=Cs(this,t)?this.constructor:void 0,u=n.controlType,o=n.controlFieldType,i=n.name,s=n.controlCustomEvents;u||cn("The ".concat(i," controlType is not define"));var c;this.id=(c=r==null?void 0:r.id)!==null&&c!==void 0?c:ke(10);var a;this.type=(a=r==null?void 0:r.type)!==null&&a!==void 0?a:u,this.props=new q(r==null?void 0:r.props),this.customEvents=s;var f;this.controlType=(f=r==null?void 0:r.controlType)!==null&&f!==void 0?f:"base";var p;this.fieldType=(p=r==null?void 0:r.fieldType)!==null&&p!==void 0?p:o;var v;this.pageStatus=(v=r==null?void 0:r.pageStatus)!==null&&v!==void 0?v:tt.UNKNOWN}return ws(t,[{key:"rules",get:function(){var n=this.props.constructor.RuntimeRules;if(n){var u=new n(this.props);return Array.from(u)}return[]}}]),t}();ht.controlType="control",ht.__is_control__=!0,ht.controlCustomEvents=[];function Is(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function yt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Se(e){return Se=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Se(e)}function vt(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&>(e,t)}function Fs(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Os(e,t){return t&&(Ds(t)==="object"||typeof t=="function")?t:Is(e)}function gt(e,t){return gt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},gt(e,t)}var Ds=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Rs(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function mt(e){var t=Rs();return function(){var n=Se(e),u;if(t){var o=Se(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Os(this,u)}}var Ps=function(e){vt(r,e);var t=mt(r);function r(n){yt(this,r);var u;u=t.call(this,n),u.dataBind={},u.caption={type:"string",required:!0,message:T.getMessage("pleaseEnterCaption")},u.isHideCaption={type:"boolean"},u.labelPosition={type:"enum",enum:["top","left"]},u.defaultState={type:"enum",enum:["default","readonly"]},u.required={type:"boolean"},u.captionTip={type:"string",required:!1,message:T.getMessage("pleaseEnterCaptionTip")};var o={fieldCode:{type:"string",required:!0,message:T.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:T.getMessage("pleaseEnterFieldCode")}};if(Fs(n.dataBind,Ee))u.dataBind={type:"object",required:!0,fields:W(o),message:T.getMessage("pleaseEnterFieldCode")};else{var i={type:"object",required:!0,fields:{},message:T.getMessage("pleaseEnterFieldCode")};Object.keys(n.dataBind).forEach(function(s){i.fields[s]={type:"object",required:!0,fields:W(o),message:T.getMessage("pleaseEnterFieldCode")}}),u.dataBind=i}return n.isShowCaptionTip&&(u.captionTip.required=!0),u}return r}(ut),$s=function(e){vt(r,e);var t=mt(r);function r(n){yt(this,r);var u;return u=t.call(this,n),u.push({type:"string",required:n.isHide?!1:n.required,message:n.requiredMessage!==""?n.requiredMessage:T.getMessage("runtimeRequired",{caption:n.caption})}),u}return r}(mn),Et=function(e){vt(r,e);var t=mt(r);function r(n){yt(this,r);var u;u=t.call(this,n);var o;u.caption=(o=n==null?void 0:n.caption)!==null&&o!==void 0?o:"";var i;u.isHideCaption=(i=n==null?void 0:n.isHideCaption)!==null&&i!==void 0?i:!1;var s;u.isShowCaptionTip=(s=n==null?void 0:n.isShowCaptionTip)!==null&&s!==void 0?s:!1;var c;u.captionTip=(c=n==null?void 0:n.captionTip)!==null&&c!==void 0?c:"";var a;u.defaultState=(a=n==null?void 0:n.defaultState)!==null&&a!==void 0?a:"default";var f;u.labelPosition=(f=n==null?void 0:n.labelPosition)!==null&&f!==void 0?f:"top";var p;u.placeholder=(p=n==null?void 0:n.placeholder)!==null&&p!==void 0?p:"";var v;u.required=(v=n==null?void 0:n.required)!==null&&v!==void 0?v:!1;var b;u.requiredMessage=(b=n==null?void 0:n.requiredMessage)!==null&&b!==void 0?b:"",u.dataBind=new Ee(n==null?void 0:n.dataBind);var B;return u.defaultValue=(B=n==null?void 0:n.defaultValue)!==null&&B!==void 0?B:"",u}return r}(q);Et.Rules=Ps,Et.RuntimeRules=$s;function Ts(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ms(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ae(e){return Ae=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ae(e)}function xs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&_t(e,t)}function js(e,t){return t&&(Ls(t)==="object"||typeof t=="function")?t:Ts(e)}function _t(e,t){return _t=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},_t(e,t)}var Ls=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Ns(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function qs(e){var t=Ns();return function(){var n=Ae(e),u;if(t){var o=Ae(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return js(this,u)}}var le=function(e){xs(r,e);var t=qs(r);function r(n){Ms(this,r);var u;return u=t.call(this,n),u.controlType="form",u.props=new Et(n==null?void 0:n.props),u}return r}(R);le.controlEventKeys=["on_change","on_focus","on_blur"];function Us(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Vs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function we(e){return we=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},we(e)}function Hs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&bt(e,t)}function ks(e,t){return t&&(Ws(t)==="object"||typeof t=="function")?t:Us(e)}function bt(e,t){return bt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},bt(e,t)}var Ws=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function zs(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Gs(e){var t=zs();return function(){var n=we(e),u;if(t){var o=we(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return ks(this,u)}}var jn=function(e){Hs(r,e);var t=Gs(r);function r(n){return Vs(this,r),t.call(this,n)}return r}(q);function Bt(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Ks(e){if(Array.isArray(e))return Bt(e)}function Xs(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Js(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ln(e){return Ks(e)||Xs(e)||Qs(e)||Js()}function Qs(e,t){if(!!e){if(typeof e=="string")return Bt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Bt(e,t)}}function Zs(e,t){var r;!((r=Object.getOwnPropertyDescriptors(e)[t])===null||r===void 0)&&r.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function Nn(e,t){e.parent=t,Zs(e,"parent")}function Ys(e,t){e.forEach(function(r){Nn(r,t)})}var qn=Symbol("targetKey");function Un(e){var t;return(t=e[qn])!==null&&t!==void 0?t:e}function Vn(e,t){return Ys(e,t),new Proxy(e,{get:function(n,u){for(var o=arguments.length,i=new Array(o>2?o-2:0),s=2;s<o;s++)i[s-2]=arguments[s];var c;return u===qn?n:(c=Reflect).get.apply(c,[n,u].concat(Ln(i)))},set:function(n,u,o){for(var i=arguments.length,s=new Array(i>3?i-3:0),c=3;c<i;c++)s[c-3]=arguments[c];var a;if(ue(e)&&u==="length"&&o===e.length)return!0;var f=(a=Reflect).set.apply(a,[n,u,o].concat(Ln(s)));return Je(o)&&Nn(o,t),f}})}function Hn(e,t,r,n){var u=n!=null?n:e,o=Vn(Un(r!=null?r:[]),u);Object.defineProperty(e,t,{get:function(){return o},set:function(s){o=Vn(Un(s),u)},enumerable:!0})}function St(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function ec(e){if(Array.isArray(e))return St(e)}function kn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Wn(e,t,r,n,u,o,i){try{var s=e[o](i),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function tc(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){Wn(o,n,u,i,s,"next",c)}function s(c){Wn(o,n,u,i,s,"throw",c)}i(void 0)})}}function nc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function rc(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function K(e,t,r){return typeof Reflect!="undefined"&&Reflect.get?K=Reflect.get:K=function(u,o,i){var s=pc(u,o);if(!!s){var c=Object.getOwnPropertyDescriptor(s,o);return c.get?c.get.call(i):c.value}},K(e,t,r||e)}function V(e){return V=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},V(e)}function uc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&At(e,t)}function oc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function ic(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ac(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function sc(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){rc(e,u,r[u])})}return e}function cc(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),r.push.apply(r,n)}return r}function lc(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):cc(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function fc(e,t){return t&&(dc(t)==="object"||typeof t=="function")?t:kn(e)}function At(e,t){return At=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},At(e,t)}function pc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=V(e),e!==null););return e}function zn(e){return ec(e)||ic(e)||hc(e)||ac()}var dc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function hc(e,t){if(!!e){if(typeof e=="string")return St(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return St(e,t)}}function yc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function vc(e){var t=yc();return function(){var n=V(e),u;if(t){var o=V(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return fc(this,u)}}var gc=function(e,t){var r,n,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;i;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},mc=1e4,wt=function(t){uc(n,t);var r=vc(n);function n(o){nc(this,n);var i;i=r.call(this,o),i.controlType="layout";var s=oc(this,n)?this.constructor:void 0,c=s.excludes,a=s.childrenMaxLength;return i.props=new jn(o==null?void 0:o.props),Hn(kn(i),"children",o==null?void 0:o.children),i.excludes=W(c),i.childrenMaxLength=a,i}var u=n.prototype;return u.judgeExcludesChildren=function(i){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(i)},u.judgeJoinChildren=function(i){var s=this.judgeExcludesChildren(i);return s&&this.childrenMaxLength>this.children.length},u.validate=function(i,s){var c=this,a=this,f=function(){return K(V(n.prototype),"validate",c)};return tc(function(){return gc(this,function(p){switch(p.label){case 0:return[4,f().call(a,i,s)];case 1:return p.sent(),[4,Promise.all(a.children.map(function(v){return v.validate(i,s)}))];case 2:return p.sent(),[2,!0]}})})()},u.toDataBindModel=function(){var i=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,s=K(V(n.prototype),"toDataBindModel",this).call(this),c=s?[s]:[];return this.children.reduce(function(a,f){var p=f.toDataBindModel(i);if(Array.isArray(p)){var v=p.filter(function(b){return!!b});return zn(a).concat(zn(v))}return p&&a.push(p),a},c)},u.toSchema=function(){var i=K(V(n.prototype),"toSchema",this).call(this),s=this.children.map(function(c){var a=c.toSchema();return a});return lc(sc({},i),{children:s})},n}(R);wt.excludes=!1,wt.childrenMaxLength=mc;function Gn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ec(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ce(e){return Ce=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ce(e)}function _c(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ct(e,t)}function bc(e,t){return t&&(Bc(t)==="object"||typeof t=="function")?t:Gn(e)}function Ct(e,t){return Ct=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ct(e,t)}var Bc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Sc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ac(e){var t=Sc();return function(){var n=Ce(e),u;if(t){var o=Ce(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return bc(this,u)}}var wc=function(e){_c(r,e);var t=Ac(r);function r(n,u){Ec(this,r);var o;return o=t.call(this,u),Hn(Gn(o),"headers",u==null?void 0:u.headers,n),o}return r}(q);function It(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Cc(e){if(Array.isArray(e))return It(e)}function Kn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Xn(e,t,r,n,u,o,i){try{var s=e[o](i),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function Ic(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){Xn(o,n,u,i,s,"next",c)}function s(c){Xn(o,n,u,i,s,"throw",c)}i(void 0)})}}function Fc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Oc(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function X(e,t,r){return typeof Reflect!="undefined"&&Reflect.get?X=Reflect.get:X=function(u,o,i){var s=Mc(u,o);if(!!s){var c=Object.getOwnPropertyDescriptor(s,o);return c.get?c.get.call(i):c.value}},X(e,t,r||e)}function H(e){return H=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},H(e)}function Dc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ft(e,t)}function Rc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Pc(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Jn(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){Oc(e,u,r[u])})}return e}function $c(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),r.push.apply(r,n)}return r}function Qn(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):$c(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function Tc(e,t){return t&&(xc(t)==="object"||typeof t=="function")?t:Kn(e)}function Ft(e,t){return Ft=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ft(e,t)}function Mc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=H(e),e!==null););return e}function Zn(e){return Cc(e)||Rc(e)||jc(e)||Pc()}var xc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function jc(e,t){if(!!e){if(typeof e=="string")return It(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return It(e,t)}}function Lc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Nc(e){var t=Lc();return function(){var n=H(e),u;if(t){var o=H(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Tc(this,u)}}var qc=function(e,t){var r,n,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;i;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},fe=function(e){Dc(r,e);var t=Nc(r);function r(u){Fc(this,r);var o;return o=t.call(this,u),o.controlType="list",o.props=new wc(Kn(o),u==null?void 0:u.props),o}var n=r.prototype;return n.validate=function(o,i){var s=this,c=this,a=function(){return X(H(r.prototype),"validate",s)};return Ic(function(){return qc(this,function(f){switch(f.label){case 0:return[4,a().call(c,o)];case 1:return f.sent(),[4,Promise.all(c.props.headers.map(function(p){return p.validate(o,i)}))];case 2:return f.sent(),[2,!0]}})})()},n.toDataBindModel=function(){var o=X(H(r.prototype),"toDataBindModel",this).call(this),i=o?[o]:[],s=this.id;return this.props.headers.reduce(function(c,a){var f=a.toDataBindModel(s);if(Array.isArray(f)){var p=f.filter(function(v){return!!v});return Zn(c).concat(Zn(p))}return f&&c.push(f),c},i)},n.toSchema=function(){var o=X(H(r.prototype),"toSchema",this).call(this),i=this.props.headers.map(function(s){return s.toSchema()});return Qn(Jn({},o),{props:Qn(Jn({},this.props),{headers:i})})},r}(R);fe.controlFieldType=A.LIST;function Uc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Yn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ie(e){return Ie=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ie(e)}function er(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ot(e,t)}function Vc(e,t){return t&&(Hc(t)==="object"||typeof t=="function")?t:Uc(e)}function Ot(e,t){return Ot=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ot(e,t)}var Hc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function kc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function tr(e){var t=kc();return function(){var n=Ie(e),u;if(t){var o=Ie(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Vc(this,u)}}var Wc=function(e){er(r,e);var t=tr(r);function r(n){Yn(this,r);var u;return u=t.call(this,n),u.caption={type:"string",required:!0,message:T.getMessage("pleaseEnterCaption")},u.width={type:"number",required:!1,message:T.getMessage("pleaseEnterColumnWidth")},u.width.required=n.widthType==="px",u}return r}(ut),nr=function(e){er(r,e);var t=tr(r);function r(n){Yn(this,r);var u;u=t.call(this,n);var o;u.width=(o=n==null?void 0:n.width)!==null&&o!==void 0?o:150,u.widthType=(n==null?void 0:n.widthType)||"auto";var i;u.caption=(i=n==null?void 0:n.caption)!==null&&i!==void 0?i:"";var s;u.fixed=(s=n==null?void 0:n.fixed)!==null&&s!==void 0?s:"none",u.autoWidth=new Da(n==null?void 0:n.autoWidth),u.dataBind=new Ee(n==null?void 0:n.dataBind);var c;return u.sort=(c=n==null?void 0:n.sort)!==null&&c!==void 0?c:!0,u.align=n==null?void 0:n.align,u.colSpan=n==null?void 0:n.colSpan,u}return r}(q);nr.Rules=Wc;function zc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Gc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Fe(e){return Fe=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Fe(e)}function Kc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Dt(e,t)}function Xc(e,t){return t&&(Jc(t)==="object"||typeof t=="function")?t:zc(e)}function Dt(e,t){return Dt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Dt(e,t)}var Jc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Qc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Zc(e){var t=Qc();return function(){var n=Fe(e),u;if(t){var o=Fe(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Xc(this,u)}}var Yc=function(e){Kc(r,e);var t=Zc(r);function r(n){Gc(this,r);var u;return u=t.call(this,n),u.controlType="column",u.props=new nr(n==null?void 0:n.props),u}return r}(R);function el(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function tl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Oe(e){return Oe=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Oe(e)}function nl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Rt(e,t)}function rl(e,t){return t&&(ul(t)==="object"||typeof t=="function")?t:el(e)}function Rt(e,t){return Rt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Rt(e,t)}var ul=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function ol(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function il(e){var t=ol();return function(){var n=Oe(e),u;if(t){var o=Oe(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return rl(this,u)}}var al=function(e){nl(r,e);var t=il(r);function r(n){return tl(this,r),t.call(this,n)}return r}(jn);function sl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function cl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function De(e){return De=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},De(e)}function ll(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Pt(e,t)}function fl(e,t){return t&&(pl(t)==="object"||typeof t=="function")?t:sl(e)}function Pt(e,t){return Pt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Pt(e,t)}var pl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function dl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function hl(e){var t=dl();return function(){var n=De(e),u;if(t){var o=De(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return fl(this,u)}}var yl=function(e){ll(r,e);var t=hl(r);function r(n){cl(this,r);var u;return u=t.call(this,n),u.controlType="wrap",u.props=new al(n==null?void 0:n.props),u}return r}(wt);console.log("sourcemap 4");function $t(e){return"children"in e&&ue(e.children)}function rr(e){return"headers"in e.props&&ue(e.props.headers)}function Re(e,t){Array.isArray(e)&&e.map(r=>{r.type===d.SUBTABLE?Re(r.props.headers,t):$t(r)?Re(r==null?void 0:r.children,t):r instanceof le&&t(r)})}const ur=[d.AMOUNT,d.CALC,d.DATE_RANGE],or={amount:{caption:"\u91D1\u989D",fieldType:A.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:A.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:A.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:A.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:A.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:A.TIMESTAMP}};function vl(e){let t=[];return Re(e,r=>{r instanceof le?t.push(r):(r.type,d.SUBTABLE)}),t}function gl(e,t=""){return!e||!Array.isArray(e)?[]:e.map(r=>{if(!r.dataBind||r.type===d.TITLE)return r;if(ur.includes(r.type)){const n=r.dataBind;Object.keys(n).forEach(u=>{const o=n[u],i=r.controlId+"_"+u;o.fieldCode=ir(i),o.dataCode=t})}else r.dataBind.fieldCode=ir(r.controlId),r.dataBind.dataCode=t;return r})}function ir(e){const t="field_";return e.startsWith(t)?e:t+e}function Pe(e){return Xi[e]}function ml(e){const t=new k,r=[];return e.forEach(n=>{if(!(n.parentId||!n.dataBind))if(ur.includes(n.type)){const u=n.dataBind,o=n.datasourceBind;Object.keys(u).forEach(i=>{const s=u[i],c=or[i].fieldType,a=n.caption+"_"+or[i].caption,f=Pe(c);if(!f)return;const p={caption:a,dataBind:s};i==="currency"&&(p.optionConfig="datasource",p.datasourceBind=o);const v=t.createControlInstance(f,{props:p});v&&r.push(v)})}else{const u=Pe(n.fieldType);if(!u)return;const o=t.createControlInstance(u,{props:{caption:n.caption,dataBind:n.dataBind,datasourceBind:n.datasourceBind}});o&&r.push(o)}}),r}function El(e){const t=new k,n=(Array.isArray(e)?e:[e]).map(u=>{const o=Pe(u);return t.createControlInstance(o)});return Array.isArray(e)?n:n[0]}function Tt(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function Mt(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function xt(e,t,r){return Zt(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(u=>u.validate(t,r)))).every(u=>u):yield e.validate(t,r)})}const _l=[d.TITLE,d.GRID_TABLE_COLUMN,d.SUBTABLE_COLUMN,d.OPERATION_COLUMN,d.DATA_VIEW,d.LIST_VIEW,d.HEADER,d.FOOTER,d.SIMPLE_SEARCH,d.ROW,d.GRID_ROW,d.COL,d.GRID,d.DIVIDER,d.TAB_PANE,d.TAB,d.CARD_GROUP],bl=[d.CALC],Bl={check:{id:"listPageCheckBtnId",caption:"\u67E5\u770B"},edit:{id:"listPageEditBtnId",caption:"\u7F16\u8F91"},delete:{id:"listPageDeleteBtnId",caption:"\u5220\u9664"}};function pe(e,t){var n,u,o,i,s,c,a,f,p;const r=[];if(ue(e))r.push(...e.map(v=>pe(v,t)).flat());else{const v=e.type,{caption:b,content:B}=e.props;let h;if(_l.includes(v))v===d.OPERATION_COLUMN&&Object.entries(Bl).reduce((g,[l,{caption:y,id:w}])=>{var C;const _=e.props[l];return _&&_.isShow&&g.push({controlId:w,caption:y,type:e.type,controlType:e.controlType,parentId:(C=t==null?void 0:t.controlId)!=null?C:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),g},r);else if(h={controlId:e.id,caption:b||B||e.name,type:e.type,controlType:e.controlType,parentId:(n=t==null?void 0:t.controlId)!=null?n:null,canEdit:!bl.includes(v),canRead:!0,canHide:!0,group:"element"},t&&t.type===d.SUBTABLE&&(h.caption=t.caption+"_"+h.caption),v===d.VUE_FORM_ITEM&&(h.caption=e.props.controlExportName||e.name),(e instanceof le||e instanceof Yc)&&((o=(u=e.props)==null?void 0:u.dataBind)==null?void 0:o.fieldCode)!==void 0&&((s=(i=e.props)==null?void 0:i.dataBind)==null?void 0:s.fieldCode)!==""&&(h.group="field"),r.push(h),v===d.VUE_FORM_ITEM){let g="element";((a=(c=e.props)==null?void 0:c.dataBind)==null?void 0:a.fieldCode)!==void 0&&((p=(f=e.props)==null?void 0:f.dataBind)==null?void 0:p.fieldCode)!==""&&(g="field");const l=e.props.permissions;l==null||l.map(y=>{var w;h={controlId:y.key,caption:y.caption,type:e.type,controlType:e.controlType,parentId:(w=e.id)!=null?w:null,canEdit:!0,canRead:!0,canHide:!0,group:g},r.push(h)})}e.children&&r.push(...e.children.map(g=>pe(g,t)).flat()),e instanceof fe&&r.push(...e.props.headers.map(g=>pe(g,h)).flat())}return r}class k extends me{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new oe,this.fieldTypes=A,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:r,Setting:n}=t;this.controlSettingMap.set(r.controlType,n)})}registerControl(t){this.constructor.register(t);const{Designer:r,Setting:n}=t;this.register(r),this.registeredControlTypes.add(r.controlType),this.controlSettingMap.set(r.controlType,n)}getControlSetting(t){const r=this.controlSettingMap.get(t);return r||null}setInstance(t,r,n){try{if(!t)return;t.updateProps(r,n)}catch(u){throw u}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return Zt(this,null,function*(){return xt(...t)})}getModelBindInfoList(...t){return Mt(...t)}getSchema(...t){return Tt(...t)}listenControlHook(...t){return wn.on(...t)}}k.EventLogic=oe;class Sl{constructor(){this.designer=new k}ListPageBuilder(){const t=this.designer.createControlInstance(d.LIST_VIEW),r=this.designer.createControlInstance(d.SIMPLE_SEARCH),n=this.designer.createControlInstance(d.GRID_TABLE),u=this.designer.createControlInstance(d.CREATE_FORM_LIST_BUTTON),o=this.designer.createControlInstance(d.IMPORT_RECORD_LIST_BUTTON),i=this.designer.createControlInstance(d.EXPORT_LIST_BUTTON),s=this.designer.createControlInstance(d.EXPORT_RECORD_LIST_BUTTON);return n.children.push(u),n.children.push(o),n.children.push(i),n.children.push(s),t.children.push(r),t.children.push(n),t}ProListPageBuilder(){const t=this.designer.createControlInstance(d.LIST_VIEW);t.props.countType="async";const r=this.designer.createControlInstance(d.SIMPLE_SEARCH),n=this.designer.createControlInstance(d.GRID_TABLE),u=this.designer.createControlInstance(d.EXPORT_LIST_BUTTON),o=this.designer.createControlInstance(d.EXPORT_RECORD_LIST_BUTTON);return n.children.push(u),n.children.push(o),t.children.push(r),t.children.push(n),t}FormPageBuilder(){const t=this.designer.createControlInstance(d.DATA_VIEW),r=this.designer.createControlInstance(d.TITLE),n=this.designer.createControlInstance(d.GRID);return t.children.push(r),t.children.push(n),t}VuePageBuilder(){const t=this.designer.createControlInstance(d.GRID),r=this.designer.createControlInstance(d.VUE_FORM_ITEM);return r.props.isHideCaption=!0,r.props.controlExportName="VuePage",t.children.push(r),t}}function Al(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ar(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function wl(e,t,r){return t&&ar(e.prototype,t),r&&ar(e,r),e}var N=function(){function e(t){Al(this,e);var r;this.visible=(r=t==null?void 0:t.visible)!==null&&r!==void 0?r:!0;var n;this.expression=(n=t==null?void 0:t.expression)!==null&&n!==void 0?n:!1}return wl(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function Cl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Il=function(){function e(r){Cl(this,e),this.type=r.type,this.label=r.label,this.key=r.key,this.component=r.component;var n;this.effect=(n=r.effect)!==null&&n!==void 0?n:{};var u;this.scopeEffect=(u=r.scopeEffect)!==null&&u!==void 0?u:Ki,this.defaultValue=r.defaultValue,this.validator=r.validator;var o;this.props=(o=r.props)!==null&&o!==void 0?o:new N,this.effectKeys=Object.keys(this.effect)}var t=e.prototype;return t.filterEffects=function(n){var u=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(o){var i=new RegExp("^".concat(o,"(\\.\\w+)*$"));return i.test(n)}).map(function(o){return u.effect[o]})},t.callEffectFn=function(n,u){try{var o=n.apply(null,u);Je(o)&&Object.assign(this.props,o)}catch(i){re(`effect error
|
|
2
|
-
`.concat(i))}},t.callEffect=function(n){for(var u=arguments.length,o=new Array(u>1?u-1:0),i=1;i<u;i++)o[i-1]=arguments[i];var s=this;this.filterEffects(n).forEach(function(c){return s.callEffectFn(c,o)})},t.callScopeEffect=function(){for(var n=arguments.length,u=new Array(n),o=0;o<n;o++)u[o]=arguments[o];this.callEffectFn(this.scopeEffect,u)},e}();function Fl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var jt=function e(t){Fl(this,e),this.type="group";var r;this.title=(r=t.title)!==null&&r!==void 0?r:"";var n;this.required=(n=t.required)!==null&&n!==void 0?n:!1,this.items=t.items,this.tips=t.tips};function Ol(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Dl(e){return"type"in e&&e.type==="tab"}var Lt=function e(t){Ol(this,e),this.type="tab",this.title=t.title,this.items=t.items};function sr(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Rl(e){if(Array.isArray(e))return e}function Pl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function $l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $e(e){return $e=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},$e(e)}function Tl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Nt(e,t)}function Ml(e,t){var r=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var n=[],u=!0,o=!1,i,s;try{for(r=r.call(e);!(u=(i=r.next()).done)&&(n.push(i.value),!(t&&n.length===t));u=!0);}catch(c){o=!0,s=c}finally{try{!u&&r.return!=null&&r.return()}finally{if(o)throw s}}return n}}function xl(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function jl(e,t){return t&&(Nl(t)==="object"||typeof t=="function")?t:Pl(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Nt(e,t)}function Ll(e,t){return Rl(e)||Ml(e,t)||ql(e,t)||xl()}var Nl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function ql(e,t){if(!!e){if(typeof e=="string")return sr(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return sr(e,t)}}function Ul(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Vl(e){var t=Ul();return function(){var n=$e(e),u;if(t){var o=$e(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return jl(this,u)}}var Hl=function(e){Tl(r,e);var t=Vl(r);function r(n){$l(this,r);var u;return u=t.call(this,n),Je(n)&&Object.entries(n).forEach(function(o){var i=Ll(o,2),s=i[0],c=i[1];u[s]=c}),u}return r}(N);function kl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Wl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Te(e){return Te=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Te(e)}function zl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&qt(e,t)}function Gl(e,t){return t&&(Kl(t)==="object"||typeof t=="function")?t:kl(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},qt(e,t)}var Kl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Xl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Jl(e){var t=Xl();return function(){var n=Te(e),u;if(t){var o=Te(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Gl(this,u)}}var Ql=function(e){zl(r,e);var t=Jl(r);function r(n){Wl(this,r);var u;u=t.call(this,n);var o;u.maxLength=(o=n==null?void 0:n.maxLength)!==null&&o!==void 0?o:"";var i;u.minLength=(i=n==null?void 0:n.minLength)!==null&&i!==void 0?i:"";var s;u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"";var c;return u.i18n=(c=n==null?void 0:n.i18n)!==null&&c!==void 0?c:!1,u}return r}(N);function Zl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Yl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Me(e){return Me=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Me(e)}function ef(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ut(e,t)}function tf(e,t){return t&&(nf(t)==="object"||typeof t=="function")?t:Zl(e)}function Ut(e,t){return Ut=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ut(e,t)}var nf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function rf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function uf(e){var t=rf();return function(){var n=Me(e),u;if(t){var o=Me(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return tf(this,u)}}var of=function(e){ef(r,e);var t=uf(r);function r(n){Yl(this,r);var u;u=t.call(this,n);var o;u.max=(o=n==null?void 0:n.max)!==null&&o!==void 0?o:"";var i;u.min=(i=n==null?void 0:n.min)!==null&&i!==void 0?i:"";var s;return u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"",u}return r}(N);function af(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function sf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function xe(e){return xe=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},xe(e)}function cf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Vt(e,t)}function lf(e,t){return t&&(ff(t)==="object"||typeof t=="function")?t:af(e)}function Vt(e,t){return Vt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Vt(e,t)}var ff=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function pf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function df(e){var t=pf();return function(){var n=xe(e),u;if(t){var o=xe(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return lf(this,u)}}var hf=function(e){cf(r,e);var t=df(r);function r(n){sf(this,r);var u;u=t.call(this,n);var o;u.showType=(o=n==null?void 0:n.showType)!==null&&o!==void 0?o:"switch";var i;u.tips=(i=n==null?void 0:n.tips)!==null&&i!==void 0?i:"";var s;return u.disabled=(s=n==null?void 0:n.disabled)!==null&&s!==void 0?s:!1,u}return r}(N);function yf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function vf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function je(e){return je=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},je(e)}function gf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ht(e,t)}function mf(e,t){return t&&(Ef(t)==="object"||typeof t=="function")?t:yf(e)}function Ht(e,t){return Ht=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ht(e,t)}var Ef=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function _f(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function bf(e){var t=_f();return function(){var n=je(e),u;if(t){var o=je(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return mf(this,u)}}var Bf=function(e){gf(r,e);var t=bf(r);function r(n){vf(this,r);var u;u=t.call(this,n);var o;return u.options=(o=n==null?void 0:n.options)!==null&&o!==void 0?o:[],u}return r}(N);function Sf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Af(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Le(e){return Le=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Le(e)}function wf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&kt(e,t)}function Cf(e,t){return t&&(If(t)==="object"||typeof t=="function")?t:Sf(e)}function kt(e,t){return kt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},kt(e,t)}var If=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Ff(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Of(e){var t=Ff();return function(){var n=Le(e),u;if(t){var o=Le(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Cf(this,u)}}var Df=function(e){wf(r,e);var t=Of(r);function r(n){Af(this,r);var u;u=t.call(this,n);var o;u.placeholder=(o=n==null?void 0:n.placeholder)!==null&&o!==void 0?o:"";var i;return u.options=(i=n==null?void 0:n.options)!==null&&i!==void 0?i:[],u}return r}(N);function Rf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Pf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ne(e){return Ne=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ne(e)}function $f(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Wt(e,t)}function Tf(e,t){return t&&(Mf(t)==="object"||typeof t=="function")?t:Rf(e)}function Wt(e,t){return Wt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Wt(e,t)}var Mf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function xf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function jf(e){var t=xf();return function(){var n=Ne(e),u;if(t){var o=Ne(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Tf(this,u)}}var Lf=function(e){$f(r,e);var t=jf(r);function r(n){Pf(this,r);var u;u=t.call(this,n);var o;u.options=(o=n==null?void 0:n.options)!==null&&o!==void 0?o:[];var i;return u.showType=(i=n==null?void 0:n.showType)!==null&&i!==void 0?i:"outline",u}return r}(N);function Nf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function qf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qe(e){return qe=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},qe(e)}function Uf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&zt(e,t)}function Vf(e,t){return t&&(Hf(t)==="object"||typeof t=="function")?t:Nf(e)}function zt(e,t){return zt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},zt(e,t)}var Hf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function kf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Wf(e){var t=kf();return function(){var n=qe(e),u;if(t){var o=qe(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Vf(this,u)}}var zf=function(e){Uf(r,e);var t=Wf(r);function r(n){qf(this,r);var u;u=t.call(this,n);var o;u.maxLength=(o=n==null?void 0:n.maxLength)!==null&&o!==void 0?o:"";var i;u.minLength=(i=n==null?void 0:n.minLength)!==null&&i!==void 0?i:"";var s;u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"";var c;u.maxRows=(c=n==null?void 0:n.maxRows)!==null&&c!==void 0?c:"";var a;u.minRows=(a=n==null?void 0:n.minRows)!==null&&a!==void 0?a:"";var f;return u.i18n=(f=n==null?void 0:n.i18n)!==null&&f!==void 0?f:!1,u}return r}(N);function Gf(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Gt(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){Gf(e,u,r[u])})}return e}function Kf(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),r.push.apply(r,n)}return r}function Kt(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Kf(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function Xf(e,t){switch(e){case"input":return new Ql(t);case"textarea":return new zf(t);case"input-number":return new of(t);case"switch":return new hf(t);case"radio":return new Lf(t);case"checkbox":return new Bf(t);case"select":return new Df(t);default:return new Hl(t)}}function Jf(e){return function(t){var r=e.get(t);if(!!r)return new Il(Kt(Gt({},r),{props:Xf(r.component,"props"in r?r.props:void 0)}))}}function Qf(e){var t=function(o){return new jt(Kt(Gt({},o),{items:o.items.map(Jf(n)).filter(Boolean)}))},r=function(o){return o.map(t)},n=e.fields.reduce(function(u,o){return u.set(o.key,o),u},new Map);return e.groups.map(function(u){return Dl(u)?new Lt(Kt(Gt({},u),{items:r(u.items)})):t(u)})}class cr{constructor(t){var r;this.selected=null,this.selectedInstanceDataScopeParent=null,this.selectedDataScopeFlatInstances=[],this.selectedInstanceSetting=[],this.selectedInstanceSettingItems=[],this.selectedFieldItem=null,this.external={},this.movingInstance=null,this.movingInstanceOldParent=null,this.movingInstanceOldDataScopeParent=null,this.getParentBeforeInstanceMove=(r=t.getParentBeforeInstanceMove)!=null?r:n=>n.parent,this.instance=t.instance,this.getFlatInstances()}get selectedRules(){return this.selected?this.selected.rules:null}get selectedAntdRules(){const t=this.selectedRules;return t||null}setInstances(t){this.instance=t,this.getFlatInstances()}setSelectInstance(t){this.selected=t,this.selectedInstanceDataScopeParent=t?he(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?pr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(r=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(r))})}getSettingItems(t){return t instanceof jt?t.items:t.items.reduce((r,n)=>(r.push(...n.items),r),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=he(t)}updateDataFieldCodeMap(t){const r=he(t);if(!r)return;const n=this.dataFieldCodeMap.get(r.props.datasourceBind.dataCode);if(!!n){for(const[u,o]of n.entries())if(o.id===t.id){n.delete(u);break}fr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],r=new Map,n=new Map;de(this.instance,u=>{t.push(u),r.set(u.id,u),fr(u,n)}),this.flatInstances=t,this.instanceIdMap=r,this.dataFieldCodeMap=n}}function lr(e,t,r){const{dataCode:n,fieldCode:u}=t;n&&u&&(e.has(n)||e.set(n,new Map),e.get(n).set(u,r))}function fr(e,t){if(e instanceof le){const r=e.props.dataBind;r instanceof Ee?lr(t,r,e):Object.values(r).forEach(n=>{lr(t,n,e)})}}function de(e,t){(Array.isArray(e)?e:[e]).forEach(n=>{t(n),$t(n)&&de(n.children,t),rr(n)&&de(n.props.headers,t)})}function Xt(e){return[d.SUBTABLE,d.DATA_VIEW,d.LIST_VIEW].includes(e.type)}function he(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!Xt(t);)t=t.parent;return t}function pr(e){const t=[e];return de(e,r=>{r!==e&&t.includes(r.parent)&&!Xt(r)&&t.push(r)}),t}let Jt="";class dr extends hn{constructor(t){super(),this.isMounted=!1,this.id=ke(8),this.__pluginsApplied=!1,this.getSchema=Tt,this.getModelBindInfoList=Mt,this.generatePermissions=pe,this.$options=Object.freeze(t);const{autoMount:r=!1,Designer:n=k,schema:u,mode:o="form",store:i={}}=this.$options;this.eventLogic=new oe,this.designer=new n,this.store=new cr(Z({instance:this.designer.createControl(Array.isArray(u)?u:[u])},i)),this.mode=o,r&&this.mount()}mount(){const{plugins:t=[]}=this.$options;this.__plugins=t,this.applyPlugins(),this.isMounted=!0}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var r;try{Jt=(r=t.pluginName)!=null?r:t.constructor.name,t.apply(this),Jt=""}catch(n){re(`${Jt||t.constructor.name} Plugin apply Error
|
|
3
|
-
${n}`)}}),this.__pluginsApplied=!0)}emit(t,...r){return super.emit(t,r)}on(t,r){return super.on(t,r)}setInstances(t,r){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],r))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){const t=this.store.selected;if(!t)return;let r=this.getControlSetting(t.type);if(t.parent
|
|
1
|
+
var ol=Object.defineProperty;var On=Object.getOwnPropertySymbols;var al=Object.prototype.hasOwnProperty,sl=Object.prototype.propertyIsEnumerable;var $n=(E,F,D)=>F in E?ol(E,F,{enumerable:!0,configurable:!0,writable:!0,value:D}):E[F]=D,z=(E,F)=>{for(var D in F||(F={}))al.call(F,D)&&$n(E,D,F[D]);if(On)for(var D of On(F))sl.call(F,D)&&$n(E,D,F[D]);return E};var Bt=(E,F,D)=>new Promise((Fe,le)=>{var De=j=>{try{K(D.next(j))}catch(X){le(X)}},Re=j=>{try{K(D.throw(j))}catch(X){le(X)}},K=j=>j.done?Fe(j.value):Promise.resolve(j.value).then(De,Re);K((D=D.apply(E,F)).next())});(function(E,F){typeof exports=="object"&&typeof module!="undefined"?F(exports):typeof define=="function"&&define.amd?define(["exports"],F):(E=typeof globalThis!="undefined"?globalThis:E||self,F(E.modelDrivenDriven={}))})(this,function(E){"use strict";var F="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",D="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Fe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",le="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",De="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Re="{caption}\u5FC5\u586B",K="\u8BF7\u8F93\u5165\u6807\u9898",j="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",X="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Pn="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Tn="\u8BF7\u7ED1\u5B9A\u8868\u5355",Mn="\u8BF7\u7ED1\u5B9A\u5217\u8868",Ln="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",xn="\u8BF7\u8F93\u5165\u663E\u793A\u503C",jn="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Nn="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Un="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Vn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",qn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Hn="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",kn="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Wn="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Gn="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",zn="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Kn="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Xn="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Jn="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Qn="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Zn="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Yn="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",er="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",tr="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",nr="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",rr="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ur="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",ir="\u8BF7\u7ED1\u5B9A\u670D\u52A1",or="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ar="\u8BF7\u9009\u62E9\u7701",sr="\u8BF7\u9009\u62E9\u5E02",cr="\u8BF7\u9009\u62E9\u533A",lr="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",fr="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",pr="\u8BF7\u8F93\u5165\u5217\u5BBD",dr="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",hr="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",yr="\u8BF7\u9009\u62E9\u63A7\u4EF6",vr="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",gr="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",mr="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Er="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",br="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",_r="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Ar="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Br="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Sr="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Cr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ir="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",wr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Fr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Dr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Rr="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Or="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",$r="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Pr="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Tr="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Mr="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Lr="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",xr={isNotNumber:F,isNotString:D,isNotObject:Fe,isNotArray:le,isNotBoolean:De,runtimeRequired:Re,pleaseEnterCaption:K,pleaseEnterCaptionTip:j,pleaseEnterPlaceholder:X,pleaseEnterFieldCode:Pn,pleaseEnterForm:Tn,pleaseEnterList:Mn,pleaseEnterProcess:Ln,pleaseEnterLabel:xn,pleaseEnterValue:jn,bizKeyNotBindFiled:Nn,pleaseSelectOneField:Un,pleaseEnterNumberRange:Vn,pleaseEnterAValueGreaterThanMin:qn,pleaseEnterAValueLessThanMax:Hn,numberRangeSetError:kn,stringRangeError:Wn,attachmentMaxSize:Gn,pleaseEnterTotalScoreSetting:zn,theTotalScoreMustNotBeLessThan1:Kn,scoreDefaultValueRange:Xn,attachmentLimitError:Jn,PleaseReselectTheOptionalQuantity:Qn,TheMaximumLengthIsGreaterThanTheMinimumLength:Zn,TheMinimumLengthIsGreaterThanTheMaximumLength:Yn,PleaseSelectTheCorrectOptionSettings:er,optionIdIsRepeat:tr,optionIsRequired:nr,pleaseEnterDataCode:rr,pleaseEnterValueFieldCode:ur,pleaseEnterSvcCode:ir,pleaseBindAtLeastOneDisplayValue:or,pleaseSelectProvince:ar,pleaseSelectCity:sr,pleaseSelectDistrict:cr,limitRowsCannotBeLessThan0:lr,TheNumberOfRowsCannotBeLessThanMinRows:fr,pleaseEnterColumnWidth:pr,pleaseSetTheLogicalRelationshipOfAllRuleConditions:dr,pleaseCompleteAllRulesAndConditions:hr,pleaseSelectControl:yr,pleaseSelectAtLeastOneColumn:vr,pleaseSelectFillBackMode:gr,pleaseSelectDashboard:mr,rootNodeIsRequired:Er,theViewNameCannotBeEmpty:br,pleaseSelectOcrType:_r,pleaseSelectAtLeastOneFieldToFillIn:Ar,pleaseChooseAtLeastOne:Br,pleaseEnterButtonContent:Sr,pleaseEnterDataCodeInDataSetting:Cr,pleaseEnterValueFieldCodeInDataSetting:Ir,pleaseEnterSvcCodeInDataSetting:wr,pleaseBindAtLeastOneDisplayValueInDataSetting:Fr,rootNodeIsRequiredInDataSetting:Dr,pleaseEnterMaxHeight:Rr,pleaseEnter:Or,pleaseEnterWatermark:$r,pleaseEnterFileName:Pr,pleaseUploadAtLeastOnePrintTemplate:Tr,pleaseAssignBusiness:Mr,pleaseAssignExternal:Lr},jr="Please enter a number",Nr="Please enter a string",Ur="Please enter an object",Vr="Please enter an array",qr="Please enter a boolean",Hr="{caption} Required",kr="Please enter the title",Wr="Please enter the bubble prompt",Gr="Please enter the prompt text",zr="Please bind data items",Kr="Please bind the form",Xr="Please bind the list",Jr="Please bind the process",Qr="Please enter the displayed value",Zr="Please enter the stored value",Yr="The document number is not bound to the data item",eu="Please select at least one display field",tu="Please enter a value greater than or equal to {min} and less than or equal to {max}",nu="Please enter a value greater than or equal to {min}",ru="Please enter a value less than or equal to {max}",uu="The value range is set incorrectly",iu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",ou="The attachment size must be between 0MB and 1000MB",au="Please fill in the total score setting",su="The total score cannot be less than 1",cu="The default value must be between {min} and {max}",lu="The number of attachments uploaded must be between {min} and {max}",fu="Please re-select the optional quantity",pu="The maximum length of the control must be greater than the minimum length",du="The minimum length of the control must be less than the maximum length",hu="Please select the correct option setting",yu="Option ID cannot be repeated",vu="Please enter at least one option",gu="Please bind the data source",mu="Please bind the stored value",Eu="Please bind the service",bu="At least one display value must be bound",_u="Please select a province",Au="Please select a city",Bu="Please select a district",Su="The minimum number of lines to fill in cannot be less than 0",Cu="The number of rows cannot be less than {min} rows",Iu="Please enter the column width",wu="Please set the logical relationship of all rule conditions",Fu="Please complete all rules and conditions",Du="please select control",Ru="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ou="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",$u="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Pu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Tu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Mu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Lu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",xu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ju="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Nu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Uu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Vu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",qu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Hu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ku="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Wu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Gu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",zu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ku={isNotNumber:jr,isNotString:Nr,isNotObject:Ur,isNotArray:Vr,isNotBoolean:qr,runtimeRequired:Hr,pleaseEnterCaption:kr,pleaseEnterCaptionTip:Wr,pleaseEnterPlaceholder:Gr,pleaseEnterFieldCode:zr,pleaseEnterForm:Kr,pleaseEnterList:Xr,pleaseEnterProcess:Jr,pleaseEnterLabel:Qr,pleaseEnterValue:Zr,bizKeyNotBindFiled:Yr,pleaseSelectOneField:eu,pleaseEnterNumberRange:tu,pleaseEnterAValueGreaterThanMin:nu,pleaseEnterAValueLessThanMax:ru,numberRangeSetError:uu,stringRangeError:iu,attachmentMaxSize:ou,pleaseEnterTotalScoreSetting:au,theTotalScoreMustNotBeLessThan1:su,scoreDefaultValueRange:cu,attachmentLimitError:lu,PleaseReselectTheOptionalQuantity:fu,TheMaximumLengthIsGreaterThanTheMinimumLength:pu,TheMinimumLengthIsGreaterThanTheMaximumLength:du,PleaseSelectTheCorrectOptionSettings:hu,optionIdIsRepeat:yu,optionIsRequired:vu,pleaseEnterDataCode:gu,pleaseEnterValueFieldCode:mu,pleaseEnterSvcCode:Eu,pleaseBindAtLeastOneDisplayValue:bu,pleaseSelectProvince:_u,pleaseSelectCity:Au,pleaseSelectDistrict:Bu,limitRowsCannotBeLessThan0:Su,TheNumberOfRowsCannotBeLessThanMinRows:Cu,pleaseEnterColumnWidth:Iu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:wu,pleaseCompleteAllRulesAndConditions:Fu,pleaseSelectControl:Du,pleaseSelectDashboard:Ru,theViewNameCannotBeEmpty:Ou,pleaseSelectOcrType:$u,pleaseSelectAtLeastOneFieldToFillIn:Pu,pleaseChooseAtLeastOne:Tu,pleaseEnterButtonContent:Mu,pleaseEnterDataCodeInDataSetting:Lu,pleaseEnterValueFieldCodeInDataSetting:xu,pleaseEnterSvcCodeInDataSetting:ju,pleaseBindAtLeastOneDisplayValueInDataSetting:Nu,rootNodeIsRequiredInDataSetting:Uu,pleaseEnterMaxHeight:Vu,pleaseEnter:qu,pleaseEnterWatermark:Hu,pleaseEnterFileName:ku,pleaseUploadAtLeastOnePrintTemplate:Wu,pleaseAssignBusiness:Gu,pleaseAssignExternal:zu},Xu="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ju="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Qu="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Zu="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Yu="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ei="{caption}\u5FC5\u9808",ti="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ni="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ri="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ui="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ii="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",oi="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ai="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",si="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ci="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",li="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",fi="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",pi="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",di="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",hi="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",yi="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",vi="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",gi="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",mi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ei="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",bi="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",_i="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Ai="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Bi="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Si="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ci="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ii="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",wi="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Fi="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Di="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ri="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Oi="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",$i="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Pi="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ti="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Mi="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Li="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",xi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ji="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ni="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ui="please select control",Vi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",qi="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Hi="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ki="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Wi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Gi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",zi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ki="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Xi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ji="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Qi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Zi="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Yi="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",eo="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",to="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",no="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ro="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",uo="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",io={isNotNumber:Xu,isNotString:Ju,isNotObject:Qu,isNotArray:Zu,isNotBoolean:Yu,runtimeRequired:ei,pleaseEnterCaption:ti,pleaseEnterCaptionTip:ni,pleaseEnterPlaceholder:ri,pleaseEnterFieldCode:ui,pleaseEnterForm:ii,pleaseEnterList:oi,pleaseEnterProcess:ai,pleaseEnterLabel:si,pleaseEnterValue:ci,bizKeyNotBindFiled:li,pleaseSelectOneField:fi,pleaseEnterNumberRange:pi,pleaseEnterAValueGreaterThanMin:di,pleaseEnterAValueLessThanMax:hi,numberRangeSetError:yi,stringRangeError:vi,attachmentMaxSize:gi,pleaseEnterTotalScoreSetting:mi,theTotalScoreMustNotBeLessThan1:Ei,scoreDefaultValueRange:bi,attachmentLimitError:_i,PleaseReselectTheOptionalQuantity:Ai,TheMaximumLengthIsGreaterThanTheMinimumLength:Bi,TheMinimumLengthIsGreaterThanTheMaximumLength:Si,PleaseSelectTheCorrectOptionSettings:Ci,optionIdIsRepeat:Ii,optionIsRequired:wi,pleaseEnterDataCode:Fi,pleaseEnterValueFieldCode:Di,pleaseEnterSvcCode:Ri,pleaseBindAtLeastOneDisplayValue:Oi,pleaseSelectProvince:$i,pleaseSelectCity:Pi,pleaseSelectDistrict:Ti,limitRowsCannotBeLessThan0:Mi,TheNumberOfRowsCannotBeLessThanMinRows:Li,pleaseEnterColumnWidth:xi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ji,pleaseCompleteAllRulesAndConditions:Ni,pleaseSelectControl:Ui,pleaseSelectDashboard:Vi,theViewNameCannotBeEmpty:qi,pleaseSelectOcrType:Hi,pleaseSelectAtLeastOneFieldToFillIn:ki,pleaseChooseAtLeastOne:Wi,pleaseEnterButtonContent:Gi,pleaseEnterDataCodeInDataSetting:zi,pleaseEnterValueFieldCodeInDataSetting:Ki,pleaseEnterSvcCodeInDataSetting:Xi,pleaseBindAtLeastOneDisplayValueInDataSetting:Ji,rootNodeIsRequiredInDataSetting:Qi,pleaseEnterMaxHeight:Zi,pleaseEnter:Yi,pleaseEnterWatermark:eo,pleaseEnterFileName:to,pleaseUploadAtLeastOnePrintTemplate:no,pleaseAssignBusiness:ro,pleaseAssignExternal:uo},oo={zhCN:xr,enUS:Ku,jaJP:io},St;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(St||(St={}));var Ct;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(Ct||(Ct={}));var ao="zh-CN",so=function(){};function $(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var O;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(O||(O={}));var p;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(p||(p={}));var S;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(S||(S={}));var R,co=(R={},$(R,S.ARRAY,p.ARRAY_COLUMN),$(R,S.AUTO_NUMBER,p.AUTO_NUMBER_COLUMN),$(R,S.DECIMAL,p.DECIMAL_COLUMN),$(R,S.DEPARTMENTS,p.DEPARTMENT_COLUMN),$(R,S.FILE,p.FILE_COLUMN),$(R,S.IMAGE,p.IMAGE_COLUMN),$(R,S.ADDRESS,p.LOCATION_COLUMN),$(R,S.EMPLOYEES,p.EMPLOYEE_COLUMN),$(R,S.TEXT,p.TEXT_COLUMN),$(R,S.TIMESCOPE,p.TIMESCOPE_COLUMN),$(R,S.TIMESTAMP,p.TIMESTAMP_COLUMN),$(R,S.VARCHAR,p.VARCHAR_COLUMN),$(R,S.RELATION,p.VARCHAR_COLUMN),R),It;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(It||(It={}));var wt="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",lo=wt+"0123456789";function Oe(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",r=0;r<e;r++){var n=r===0?wt:lo,u=Math.random()*n.length;t+=n[parseInt(String(u),10)]}return t}function $e(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function fo(e){if(Array.isArray(e))return $e(e)}function po(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ft(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ho(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function fe(e,t,r){return ho()?fe=Reflect.construct:fe=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),a=new c;return o&&Q(a,o.prototype),a},fe.apply(null,arguments)}function J(e){return J=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},J(e)}function Dt(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Q(e,t)}function yo(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function vo(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function go(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function mo(e,t){return t&&(Eo(t)==="object"||typeof t=="function")?t:po(e)}function Q(e,t){return Q=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Q(e,t)}function Rt(e){return fo(e)||vo(e)||bo(e)||go()}var Eo=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function bo(e,t){if(!!e){if(typeof e=="string")return $e(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return $e(e,t)}}function Pe(e){var t=typeof Map=="function"?new Map:void 0;return Pe=function(n){if(n===null||!yo(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return fe(n,arguments,J(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Q(u,n)},Pe(e)}function _o(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ot(e){var t=_o();return function(){var n=J(e),u;if(t){var i=J(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return mo(this,u)}}var Te=console;function pe(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n,u=t.slice(1);(n=Te).warn.apply(n,["\u{1F9D0} Driven Warning:"+t[0]].concat(Rt(u)))}function $t(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n,u=t.slice(1);(n=Te).log.apply(n,["\u{1F680} Driven Log:"+t[0]].concat(Rt(u)))}function Ao(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Me=function(e){Dt(r,e);var t=Ot(r);function r(n){Ft(this,r);var u;return u=t.call(this,n),u.name="\u{1F4A5} Driven Error",u.message=n?Ao(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return r}(Pe(Error)),Bo=function(e){Dt(r,e);var t=Ot(r);function r(n){Ft(this,r);var u;return u=t.call(this,n),u.name="\u{1F6A8} Driven Reference Error",u}return r}(Me);function Z(e){throw new Me(e)}function Pt(e){throw new Bo(e)}function So(e){Te.error(new Me(e))}var Co=Object.prototype.toString;function Tt(e,t){return Co.call(e)==="[object "+t+"]"}function Io(e){return Tt(e,"String")}function wo(e){return Tt(e,"Promise")}var Fo=function(){function e(t){var r,n;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((n=(r=t.messages)!==null&&r!==void 0?r:this.getPreImport(t.locale))!==null&&n!==void 0?n:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var r=this;this.locale=t,this._messageCache.clear();var n=this.getMessageData();wo(n)?n.then(function(u){r._messageCache.clear(),r.messages[r.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=n},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,r,n){var u=this.getMessage(t);return u?this.formatMessage(u,n):this.formatMessage(r,n)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var r=this.getPathArray(t),n=r.reduce(function(u,i,o,s){if(u!==void 0){var c=u[i];if(!(o===s.length-1&&!Io(c)))return c}},this.message);return this._messageCache.set(t,n),n},e.prototype.formatMessage=function(t,r){return r?t.replace(this.variableRegExp,function(n,u){var i=r[u];return i!==void 0?String(i):n}):t},e.prototype.getPreImport=function(t){var r;if(window.okI18nPreImport){var n=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(n)?window.okI18nPreImport:(r={},r[n]=window.okI18nPreImport,r)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function Do(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Mt=function(){function e(){Do(this,e)}return e.getMessage=function(r){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(r,"",n)},e.resetI18n=function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ao;return new Fo({locale:r,messages:oo})},e.setLocale=function(r){return this.$i18n.setLocale(r)},e}();Mt.$i18n=Mt.resetI18n();function Lt(e,t,r){var n=t.replace(/\[(\d)]/g,function(i,o){return"."+o}).split("."),u=!1;return n.reduce(function(i,o,s,c){var a=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,o)){pe("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),i,i);return}return s===c.length-1&&!Object.is(a[o],r)&&(a[o]=r,u=!0),a[o]}},e),u}var Ro=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Oo={exports:{}};(function(e){(function(t){var r=function(l,h,C){if(!a(h)||y(h)||g(h)||_(h)||c(h))return h;var b,I=0,L=0;if(f(h))for(b=[],L=h.length;I<L;I++)b.push(r(l,h[I],C));else{b={};for(var B in h)Object.prototype.hasOwnProperty.call(h,B)&&(b[l(B,C)]=r(l,h[B],C))}return b},n=function(l,h){h=h||{};var C=h.separator||"_",b=h.split||/(?=[A-Z])/;return l.split(b).join(C)},u=function(l){return A(l)?l:(l=l.replace(/[\-_\s]+(.)?/g,function(h,C){return C?C.toUpperCase():""}),l.substr(0,1).toLowerCase()+l.substr(1))},i=function(l){var h=u(l);return h.substr(0,1).toUpperCase()+h.substr(1)},o=function(l,h){return n(l,h).toLowerCase()},s=Object.prototype.toString,c=function(l){return typeof l=="function"},a=function(l){return l===Object(l)},f=function(l){return s.call(l)=="[object Array]"},y=function(l){return s.call(l)=="[object Date]"},g=function(l){return s.call(l)=="[object RegExp]"},_=function(l){return s.call(l)=="[object Boolean]"},A=function(l){return l=l-0,l===l},d=function(l,h){var C=h&&"process"in h?h.process:h;return typeof C!="function"?l:function(b,I){return C(b,l,I)}},v={camelize:u,decamelize:o,pascalize:i,depascalize:o,camelizeKeys:function(l,h){return r(d(u,h),l)},decamelizeKeys:function(l,h){return r(d(o,h),l,h)},pascalizeKeys:function(l,h){return r(d(i,h),l)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=v:t.humps=v})(Ro)})(Oo);var xt={};Object.defineProperty(xt,"__esModule",{value:!0});function Le(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:Le(t));{const t={};for(const r in e){const n=e[r];t[r]=typeof n!="object"||n===null?n:Le(n)}return t}}var $o=xt.default=Le;function Y(e){if(e!==void 0)return typeof e=="object"?$o(e):e}function xe(e){return Object.prototype.toString.call(e)==="[object Object]"}function Po(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function ee(e){return Array.isArray(e)}function je(e){return typeof e=="string"}function To(e){return Object.values(p).includes(e)}function Ne(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Mo(e){if(Array.isArray(e))return Ne(e)}function jt(e,t,r,n,u,i,o){try{var s=e[i](o),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function Lo(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var i=e.apply(t,r);function o(c){jt(i,n,u,o,s,"next",c)}function s(c){jt(i,n,u,o,s,"throw",c)}o(void 0)})}}function xo(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jo(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function No(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ue(e){return Mo(e)||jo(e)||Uo(e)||No()}function Uo(e,t){if(!!e){if(typeof e=="string")return Ne(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Ne(e,t)}}var Vo=function(e,t){var r,n,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;o;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},Nt=function(){function e(){xo(this,e),this._events=new Map,this.debug=!1}var t=e.prototype;return t.emit=function(n){for(var u=arguments.length,i=new Array(u>1?u-1:0),o=1;o<u;o++)i[o-1]=arguments[o];var s=this;return Lo(function(){var c,a,f,y,g,_,A,d,v,l,h,C;return Vo(this,function(b){switch(b.label){case 0:if(c=s._events.get(n),a=[],!c)return[3,10];f=c.slice(),y=!0,g=!1,_=void 0,b.label=1;case 1:b.trys.push([1,8,9,10]),A=f[Symbol.iterator](),b.label=2;case 2:if(y=(d=A.next()).done)return[3,7];if(v=d.value,!c.includes(v))return[3,6];b.label=3;case 3:return b.trys.push([3,5,,6]),s.debug&&$t.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(v.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+v.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"\u3002")].concat(Ue(i))),[4,v.apply(null,Ue(i))];case 4:return l=b.sent(),s.debug&&$t.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(v.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+v.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Ue(i),[l])),a.push(l),l===!1?[3,7]:[3,6];case 5:return h=b.sent(),So(String(h)),[3,6];case 6:return y=!0,[3,2];case 7:return[3,10];case 8:return C=b.sent(),g=!0,_=C,[3,10];case 9:try{!y&&A.return!=null&&A.return()}finally{if(g)throw _}return[7];case 10:return[2,a]}})})()},t.on=function(n,u){if(this._events.has(n)){var i;(i=this._events.get(n))===null||i===void 0||i.push(u)}else this._events.set(n,[u])},t.off=function(n,u){if(this._events.has(n)){var i=this._events.get(n),o=i==null?void 0:i.indexOf(u);i==null||i.splice(o,1)}},t.delete=function(n){this._events.has(n)&&this._events.delete(n)},t.clear=function(){this._events=new Map},e}();function qo(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ho=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"}],te=function(){function e(){qo(this,e)}var t=e.prototype;return t.getEventsFromKeys=function(n){var u=typeof n=="string"?[n]:n;return e.events.filter(function(i){return u.includes(i.key)})},e}();te.events=Ho;function ko(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ut=[],de=function(){function e(r){ko(this,e),this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=r,this._initControls(r)}var t=e.prototype;return t.registerControlConfig=function(n,u){return this.controlConfigMap.set(n,u),this},t.getControlConfig=function(n){return this.controlConfigMap.get(n)},t.getControls=function(){return this._controls},t.register=function(n){n.__is_control__||Z("".concat(n.name," is not a Control"));var u=this._controls.findIndex(function(i){return i.controlType===n.controlType});return u>-1&&(pe("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(u,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this},t.isLayoutControl=function(n){return n.controlType===O.LAYOUT},t.isFormControl=function(n){return n.controlType===O.FORM},t.isListControl=function(n){return n.controlType===O.LIST},t.isColumnControl=function(n){return n.controlType===O.COLUMN},t.createControl=function(n,u){var i=this;if(Array.isArray(n))return n.map(function(f){return i.createControl(f,u)});n.children&&(n.children=n.children.map(function(f){return i.createControl(f,u)})),this.isListControl(n)&&n.props.headers&&(n.props.headers=n.props.headers.map(function(f){return i.createControl(f,u)}));var o=this.getControlFormType(n.type);if(o){var s=n;if(typeof u=="function"){var c=u(s);c&&(s=c)}var a=new o(s);return a}else Z("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))},t.createControlInstance=function(n,u){var i=this.getControlFormType(n);if(i)return new i(u)},t.getControlFormType=function(n){return this._controls.find(function(u){return u.controlType===n})},t._initControls=function(n){var u=this;this.constructor.staticControls.forEach(function(i){u.register(i[n])})},e.register=function(n){var u=n.Designer,i=n.Runtime;(!u||!i||!u.__is_control__||!i.__is_control__)&&Z("".concat(n," is can't register as a Control"));var o=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return o>-1&&(pe("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(o,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),this},e}();de.staticControls=Ut,de.staticRegisteredTypes=new Set(Ut.map(function(e){return e.Designer.controlType})),de.staticRegisteredConfigs=new Map;function Vt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Wo=function e(t){Vt(this,e);var r;this.dataCode=(r=t==null?void 0:t.dataCode)!==null&&r!==void 0?r:"";var n;this.fieldCode=(n=t==null?void 0:t.fieldCode)!==null&&n!==void 0?n:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:""},qt;(function(e){e.CNY="CNY",e.USD="USD",e.JPY="JPY",e.EUR="EUR",e.INR="INR",e.IDR="IDR",e.BRL="BRL",e.AED="AED",e.AUD="AUD",e.CAD="CAD",e.EGP="EGP",e.GBP="GBP",e.ZAR="ZAR",e.KRW="KRW",e.MAD="MAD",e.MXN="MXN",e.MYR="MYR",e.PHP="PHP",e.PLN="PLN",e.RUB="RUB",e.SGD="SGD",e.THB="THB",e.TRY="TRY",e.TWD="TWD",e.VND="VND",e.HKD="HKD",e.IEP="IEP"})(qt||(qt={}));var Ht;(function(e){e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions"})(Ht||(Ht={}));var Ve;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(Ve||(Ve={}));var Go=function e(t){Vt(this,e);var r;this.width=(r=t==null?void 0:t.width)!==null&&r!==void 0?r:"";var n;this.height=(n=t==null?void 0:t.height)!==null&&n!==void 0?n:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var i;this.heightConfig=(i=t==null?void 0:t.heightConfig)!==null&&i!==void 0?i:"fill"};function zo(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function qe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ko(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function he(e,t,r){return Ko()?he=Reflect.construct:he=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),a=new c;return o&&re(a,o.prototype),a},he.apply(null,arguments)}function ne(e){return ne=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ne(e)}function Xo(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&re(e,t)}function Jo(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Qo(e,t){return t&&(Zo(t)==="object"||typeof t=="function")?t:zo(e)}function re(e,t){return re=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},re(e,t)}var Zo=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function He(e){var t=typeof Map=="function"?new Map:void 0;return He=function(n){if(n===null||!Jo(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return he(n,arguments,ne(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),re(u,n)},He(e)}function Yo(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function ea(e){var t=Yo();return function(){var n=ne(e),u;if(t){var i=ne(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Qo(this,u)}}var ta=function e(t){qe(this,e),this.isHide={type:"boolean"}},na=function(e){Xo(r,e);var t=ea(r);function r(n){return qe(this,r),t.call(this)}return r}(He(Array)),ue=function e(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";qe(this,e);var n;this.isHide=(n=t==null?void 0:t.isHide)!==null&&n!==void 0?n:!1,this.style=new Go(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:r};ue.Rules=ta,ue.RuntimeRules=na;function T(){return T=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},T.apply(this,arguments)}function ra(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function ke(e){return ke=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ke(e)}function ye(e,t){return ye=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ye(e,t)}function ua(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function ve(e,t,r){return ua()?ve=Reflect.construct:ve=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),a=new c;return o&&ye(a,o.prototype),a},ve.apply(null,arguments)}function ia(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function We(e){var t=typeof Map=="function"?new Map:void 0;return We=function(n){if(n===null||!ia(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return ve(n,arguments,ke(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),ye(u,n)},We(e)}var oa=/%[sdj%]/g,kt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(kt=function(t,r){typeof console!="undefined"&&console.warn&&r.every(function(n){return typeof n=="string"})&&console.warn(t,r)});function Ge(e){if(!e||!e.length)return null;var t={};return e.forEach(function(r){var n=r.field;t[n]=t[n]||[],t[n].push(r)}),t}function P(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n=1,u=t[0],i=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var o=String(u).replace(oa,function(s){if(s==="%%")return"%";if(n>=i)return s;switch(s){case"%s":return String(t[n++]);case"%d":return Number(t[n++]);case"%j":try{return JSON.stringify(t[n++])}catch(c){return"[Circular]"}break;default:return s}});return o}return u}function aa(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function w(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||aa(t)&&typeof e=="string"&&!e)}function sa(e,t,r){var n=[],u=0,i=e.length;function o(s){n.push.apply(n,s),u++,u===i&&r(n)}e.forEach(function(s){t(s,o)})}function Wt(e,t,r){var n=0,u=e.length;function i(o){if(o&&o.length){r(o);return}var s=n;n=n+1,s<u?t(e[s],i):r([])}i([])}function ca(e){var t=[];return Object.keys(e).forEach(function(r){t.push.apply(t,e[r])}),t}var Gt=function(e){ra(t,e);function t(r,n){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=r,u.fields=n,u}return t}(We(Error));function la(e,t,r,n){if(t.first){var u=new Promise(function(y,g){var _=function(v){return n(v),v.length?g(new Gt(v,Ge(v))):y()},A=ca(e);Wt(A,r,_)});return u.catch(function(y){return y}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var o=Object.keys(e),s=o.length,c=0,a=[],f=new Promise(function(y,g){var _=function(d){if(a.push.apply(a,d),c++,c===s)return n(a),a.length?g(new Gt(a,Ge(a))):y()};o.length||(n(a),y()),o.forEach(function(A){var d=e[A];i.indexOf(A)!==-1?Wt(d,r,_):sa(d,r,_)})});return f.catch(function(y){return y}),f}function zt(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function Kt(e,t){if(t){for(var r in t)if(t.hasOwnProperty(r)){var n=t[r];typeof n=="object"&&typeof e[r]=="object"?e[r]=T(T({},e[r]),n):e[r]=n}}return e}function Xt(e,t,r,n,u,i){e.required&&(!r.hasOwnProperty(e.field)||w(t,i||e.type))&&n.push(P(u.messages.required,e.fullField))}function fa(e,t,r,n,u){(/^\s+$/.test(t)||t==="")&&n.push(P(u.messages.whitespace,e.fullField))}var ze={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},ie={integer:function(t){return ie.number(t)&&parseInt(t,10)===t},float:function(t){return ie.number(t)&&!ie.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(r){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!ie.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(ze.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(ze.url)},hex:function(t){return typeof t=="string"&&!!t.match(ze.hex)}};function pa(e,t,r,n,u){if(e.required&&t===void 0){Xt(e,t,r,n,u);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;i.indexOf(o)>-1?ie[o](t)||n.push(P(u.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&n.push(P(u.messages.types[o],e.fullField,e.type))}function da(e,t,r,n,u){var i=typeof e.len=="number",o=typeof e.min=="number",s=typeof e.max=="number",c=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,y=typeof t=="number",g=typeof t=="string",_=Array.isArray(t);if(y?f="number":g?f="string":_&&(f="array"),!f)return!1;_&&(a=t.length),g&&(a=t.replace(c,"_").length),i?a!==e.len&&n.push(P(u.messages[f].len,e.fullField,e.len)):o&&!s&&a<e.min?n.push(P(u.messages[f].min,e.fullField,e.min)):s&&!o&&a>e.max?n.push(P(u.messages[f].max,e.fullField,e.max)):o&&s&&(a<e.min||a>e.max)&&n.push(P(u.messages[f].range,e.fullField,e.min,e.max))}var H="enum";function ha(e,t,r,n,u){e[H]=Array.isArray(e[H])?e[H]:[],e[H].indexOf(t)===-1&&n.push(P(u.messages[H],e.fullField,e[H].join(", ")))}function ya(e,t,r,n,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||n.push(P(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var i=new RegExp(e.pattern);i.test(t)||n.push(P(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var m={required:Xt,whitespace:fa,type:pa,range:da,enum:ha,pattern:ya};function va(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t,"string")&&!e.required)return r();m.required(e,t,n,i,u,"string"),w(t,"string")||(m.type(e,t,n,i,u),m.range(e,t,n,i,u),m.pattern(e,t,n,i,u),e.whitespace===!0&&m.whitespace(e,t,n,i,u))}r(i)}function ga(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&m.type(e,t,n,i,u)}r(i)}function ma(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&(m.type(e,t,n,i,u),m.range(e,t,n,i,u))}r(i)}function Ea(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&m.type(e,t,n,i,u)}r(i)}function ba(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),w(t)||m.type(e,t,n,i,u)}r(i)}function _a(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&(m.type(e,t,n,i,u),m.range(e,t,n,i,u))}r(i)}function Aa(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&(m.type(e,t,n,i,u),m.range(e,t,n,i,u))}r(i)}function Ba(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return r();m.required(e,t,n,i,u,"array"),t!=null&&(m.type(e,t,n,i,u),m.range(e,t,n,i,u))}r(i)}function Sa(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&m.type(e,t,n,i,u)}r(i)}var Ca="enum";function Ia(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&m[Ca](e,t,n,i,u)}r(i)}function wa(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t,"string")&&!e.required)return r();m.required(e,t,n,i,u),w(t,"string")||m.pattern(e,t,n,i,u)}r(i)}function Fa(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t,"date")&&!e.required)return r();if(m.required(e,t,n,i,u),!w(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),m.type(e,s,n,i,u),s&&m.range(e,s.getTime(),n,i,u)}}r(i)}function Da(e,t,r,n,u){var i=[],o=Array.isArray(t)?"array":typeof t;m.required(e,t,n,i,u,o),r(i)}function Ke(e,t,r,n,u){var i=e.type,o=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(w(t,i)&&!e.required)return r();m.required(e,t,n,o,u,i),w(t,i)||m.type(e,t,n,o,u)}r(o)}function Ra(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u)}r(i)}var oe={string:va,method:ga,number:ma,boolean:Ea,regexp:ba,integer:_a,float:Aa,array:Ba,object:Sa,enum:Ia,pattern:wa,date:Fa,url:Ke,hex:Ke,email:Ke,required:Da,any:Ra};function Xe(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var Je=Xe();function U(e){this.rules=null,this._messages=Je,this.define(e)}U.prototype={messages:function(t){return t&&(this._messages=Kt(Xe(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var r,n;for(r in t)t.hasOwnProperty(r)&&(n=t[r],this.rules[r]=Array.isArray(n)?n:[n])},validate:function(t,r,n){var u=this;r===void 0&&(r={}),n===void 0&&(n=function(){});var i=t,o=r,s=n;if(typeof o=="function"&&(s=o,o={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function c(d){var v,l=[],h={};function C(b){if(Array.isArray(b)){var I;l=(I=l).concat.apply(I,b)}else l.push(b)}for(v=0;v<d.length;v++)C(d[v]);l.length?h=Ge(l):(l=null,h=null),s(l,h)}if(o.messages){var a=this.messages();a===Je&&(a=Xe()),Kt(a,o.messages),o.messages=a}else o.messages=this.messages();var f,y,g={},_=o.keys||Object.keys(this.rules);_.forEach(function(d){f=u.rules[d],y=i[d],f.forEach(function(v){var l=v;typeof l.transform=="function"&&(i===t&&(i=T({},i)),y=i[d]=l.transform(y)),typeof l=="function"?l={validator:l}:l=T({},l),l.validator=u.getValidationMethod(l),l.field=d,l.fullField=l.fullField||d,l.type=u.getType(l),l.validator&&(g[d]=g[d]||[],g[d].push({rule:l,value:y,source:i,field:d}))})});var A={};return la(g,o,function(d,v){var l=d.rule,h=(l.type==="object"||l.type==="array")&&(typeof l.fields=="object"||typeof l.defaultField=="object");h=h&&(l.required||!l.required&&d.value),l.field=d.field;function C(L,B){return T(T({},B),{},{fullField:l.fullField+"."+L})}function b(L){L===void 0&&(L=[]);var B=L;if(Array.isArray(B)||(B=[B]),!o.suppressWarning&&B.length&&U.warning("async-validator:",B),B.length&&l.message!==void 0&&(B=[].concat(l.message)),B=B.map(zt(l)),o.first&&B.length)return A[l.field]=1,v(B);if(!h)v(B);else{if(l.required&&!d.value)return l.message!==void 0?B=[].concat(l.message).map(zt(l)):o.error&&(B=[o.error(l,P(o.messages.required,l.field))]),v(B);var x={};if(l.defaultField)for(var Dn in d.value)d.value.hasOwnProperty(Dn)&&(x[Dn]=l.defaultField);x=T(T({},x),d.rule.fields);for(var W in x)if(x.hasOwnProperty(W)){var il=Array.isArray(x[W])?x[W]:[x[W]];x[W]=il.map(C.bind(null,W))}var Rn=new U(x);Rn.messages(o.messages),d.rule.options&&(d.rule.options.messages=o.messages,d.rule.options.error=o.error),Rn.validate(d.value,d.rule.options||o,function(At){var G=[];B&&B.length&&G.push.apply(G,B),At&&At.length&&G.push.apply(G,At),v(G.length?G:null)})}}var I;l.asyncValidator?I=l.asyncValidator(l,d.value,b,d.source,o):l.validator&&(I=l.validator(l,d.value,b,d.source,o),I===!0?b():I===!1?b(l.message||l.field+" fails"):I instanceof Array?b(I):I instanceof Error&&b(I.message)),I&&I.then&&I.then(function(){return b()},function(L){return b(L)})},function(d){c(d)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!oe.hasOwnProperty(t.type))throw new Error(P("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var r=Object.keys(t),n=r.indexOf("message");return n!==-1&&r.splice(n,1),r.length===1&&r[0]==="required"?oe.required:oe[this.getType(t)]||!1}},U.register=function(t,r){if(typeof r!="function")throw new Error("Cannot register a validator by type, validator is not a function");oe[t]=r},U.warning=kt,U.messages=Je,U.validators=oe;var Oa={required:"%s \u5FC5\u586B",maxLength:"%s \u8D85\u51FA\u6700\u5927\u957F\u5EA6\u9650\u5236",minLength:"%s \u5C0F\u4E8E\u6700\u5C0F\u957F\u5EA6\u9650\u5236",string:{range:"%s \u4E0D\u5728\u6307\u5B9A\u957F\u5EA6\u5185"}};function $a(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=new U(e);return r.messages(Object.assign(Oa,t)),r}var Jt=new Nt;function Qe(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Pa(e){if(Array.isArray(e))return e}function Ta(e){if(Array.isArray(e))return Qe(e)}function Qt(e,t,r,n,u,i,o){try{var s=e[i](o),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function Zt(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var i=e.apply(t,r);function o(c){Qt(i,n,u,o,s,"next",c)}function s(c){Qt(i,n,u,o,s,"throw",c)}o(void 0)})}}function Ma(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Yt(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function La(e,t,r){return t&&Yt(e.prototype,t),r&&Yt(e,r),e}function xa(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function en(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function tn(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ja(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Na(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function nn(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){xa(e,u,r[u])})}return e}function Ua(e){return Pa(e)||tn(e)||rn(e)||ja()}function Ze(e){return Ta(e)||tn(e)||rn(e)||Na()}function rn(e,t){if(!!e){if(typeof e=="string")return Qe(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Qe(e,t)}}var un=function(e,t){var r,n,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;o;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},M=function(){function t(n){var u=this;Ma(this,t),this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=an,this.removeSetting=on,this._callControlHooks("preInstance",n);var i=en(this,t)?this.constructor:void 0,o=i.controlName,s=i.controlIcon,c=i.controlType,a=i.controlFieldType,f=i.controlEventKeys,y=i.controlCustomEvents,g=i.name,_=i.setting;o&&s&&c||Pt("The ".concat(g," controlName,controlIcon,controlType is not define"));var A;this.id=(A=n==null?void 0:n.id)!==null&&A!==void 0?A:Oe(10),this.name=o,this.icon=s;var d;this.type=(d=n==null?void 0:n.type)!==null&&d!==void 0?d:c,this.props=new ue(n==null?void 0:n.props,(en(this,t)?this.constructor:void 0).controlName);var v;this.controlType=(v=n==null?void 0:n.controlType)!==null&&v!==void 0?v:"base",this.setting=Y(_);var l;this.fieldType=(l=n==null?void 0:n.fieldType)!==null&&l!==void 0?l:a,this.eventKeys=Y(f),this.customEvents=Y(y),Promise.resolve().then(function(){u._callControlHooks("postInstance",n)})}var r=t.prototype;return r._callControlHooks=function(){for(var u=arguments.length,i=new Array(u),o=0;o<u;o++)i[o]=arguments[o];var s,c=Ua(i),a=c[0],f=c.slice(1);return(s=Jt).emit.apply(s,[a,this].concat(Ze(f)))},r.preUpdate=function(u,i){this._callControlHooks("preUpdateProps",u,i)},r.postUpdate=function(u,i){this._callControlHooks("postUpdateProps",u,i)},r.updateProps=function(u,i){this.preUpdate(u,i),Lt(this.props,u,i),this.postUpdate(u,i)},r.preValidate=function(){var u=this;return Zt(function(){var i,o,s;return un(this,function(c){switch(c.label){case 0:return i=nn({},u.rules),[4,u._callControlHooks("preValidate",i)];case 1:return o=c.sent(),s=o[o.length-1],[2,s===!1?void 0:s]}})})()},r.validate=function(u,i){var o=this;return Zt(function(){var s,c,a,f;return un(this,function(y){switch(y.label){case 0:return[4,o.preValidate()];case 1:s=y.sent(),c=s!==void 0?s:nn({},o.rules),Array.isArray(i)&&i.forEach(function(g){c.hasOwnProperty(g)&&delete c[g]}),a=$a(c,u),y.label=2;case 2:return y.trys.push([2,4,,5]),[4,a.validate(o.props)];case 3:return y.sent(),[2,!0];case 4:throw f=y.sent(),f.control||(f.control=o),f;case 5:return[2]}})})()},r.toDataBindModel=function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this.fieldType,o=this.id,s=this.type,c=this.props,a=c.dataBind,f=c.datasourceBind,y=c.optionConfig,g=c.caption,_=c.required,A=c.maxLength,d=c.options,v=c.encrypted,l=c.encryptedMode;if(!(!i&&!a&&!f)){var h={parentId:u,fieldType:i,controlId:o,caption:g,type:s,props:{}};switch(a&&(h.dataBind=a),y){case"datasource":case void 0:f&&(h.datasourceBind=f);break;case"custom":h.props.options=d;break}return _!==void 0&&(h.required=_),A!==void 0&&(h.maxLength=A),v!==void 0&&(h.encrypted=v),l!==void 0&&(h.encryptedMode=l),h}},r.preToSchema=function(){this._callControlHooks("preToSchema",this)},r.toSchema=function(){return this.preToSchema(),{id:this.id,type:this.type,props:Y(this.props),fieldType:this.fieldType,controlType:this.controlType}},t.updateBasicControl=function(u,i){if(u==="setting"){if(i.add){var o;(o=this.setting).push.apply(o,Ze(i.add))}i.remove&&this.removeSettingItem(i.remove),i.update}},La(t,[{key:"rules",get:function(){var u=this.props.constructor.Rules;return u?new u(this.props):{}}}]),t}();M.controlName="\u63A7\u4EF6",M.controlIcon="icon",M.controlType="control",M.controlEventKeys=[],M.controlCustomEvents=[],M.setting=[],M.__is_control__=!0,M.removeSettingItem=on,M.updateSettingItem=an;function on(e){var t=this,r=Array.isArray(e)?e:[e];r.forEach(function(n){var u=typeof n!="string",i=t.setting.findIndex(function(c){return c.key===(u?n.key:n)});if(i!==-1){var o,s;u?t.setting[i].showItems=(o=t.setting[i].showItems)===null||o===void 0?void 0:o.filter(function(c){return!n.hideItems.includes(c)}):t.setting.splice(i,1),u&&!(!((s=t.setting[i].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(i,1)}})}function an(e,t){var r=this,n=typeof e=="string"?[e]:e;n.forEach(function(u){var i=r.setting.find(function(a){return a.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if(typeof t=="object"){var o,s=(o=t.type)!==null&&o!==void 0?o:"replace";if(s==="replace")i.showItems=t.showItems;else{var c;(c=i.showItems).push.apply(c,Ze(t.showItems))}}}})}function Va(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function sn(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function qa(e,t,r){return t&&sn(e.prototype,t),r&&sn(e,r),e}function Ha(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var Ye=function(){function t(r){Va(this,t),this.customEvents=[],this.parent=null;var n=Ha(this,t)?this.constructor:void 0,u=n.controlType,i=n.controlFieldType,o=n.name,s=n.controlCustomEvents;u||Pt("The ".concat(o," controlType is not define"));var c;this.id=(c=r==null?void 0:r.id)!==null&&c!==void 0?c:Oe(10);var a;this.type=(a=r==null?void 0:r.type)!==null&&a!==void 0?a:u,this.props=new ue(r==null?void 0:r.props),this.customEvents=s;var f;this.controlType=(f=r==null?void 0:r.controlType)!==null&&f!==void 0?f:"base";var y;this.fieldType=(y=r==null?void 0:r.fieldType)!==null&&y!==void 0?y:i;var g;this.pageStatus=(g=r==null?void 0:r.pageStatus)!==null&&g!==void 0?g:Ve.UNKNOWN}return qa(t,[{key:"rules",get:function(){var n=this.props.constructor.RuntimeRules;if(n){var u=new n(this.props);return Array.from(u)}return[]}}]),t}();Ye.controlType="control",Ye.__is_control__=!0,Ye.controlCustomEvents=[];function ka(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Wa(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ge(e){return ge=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ge(e)}function Ga(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&et(e,t)}function za(e,t){return t&&(Ka(t)==="object"||typeof t=="function")?t:ka(e)}function et(e,t){return et=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},et(e,t)}var Ka=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Xa(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ja(e){var t=Xa();return function(){var n=ge(e),u;if(t){var i=ge(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return za(this,u)}}var Qa=function(e){Ga(r,e);var t=Ja(r);function r(n){return Wa(this,r),t.call(this,n)}return r}(ue);function tt(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Za(e){if(Array.isArray(e))return tt(e)}function Ya(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function es(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function cn(e){return Za(e)||Ya(e)||ts(e)||es()}function ts(e,t){if(!!e){if(typeof e=="string")return tt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return tt(e,t)}}function ns(e,t){var r;!((r=Object.getOwnPropertyDescriptors(e)[t])===null||r===void 0)&&r.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function ln(e,t){e.parent=t,ns(e,"parent")}function rs(e,t){e.forEach(function(r){ln(r,t)})}var fn=Symbol("targetKey");function pn(e){var t;return(t=e[fn])!==null&&t!==void 0?t:e}function dn(e,t){return rs(e,t),new Proxy(e,{get:function(n,u){for(var i=arguments.length,o=new Array(i>2?i-2:0),s=2;s<i;s++)o[s-2]=arguments[s];var c;return u===fn?n:(c=Reflect).get.apply(c,[n,u].concat(cn(o)))},set:function(n,u,i){for(var o=arguments.length,s=new Array(o>3?o-3:0),c=3;c<o;c++)s[c-3]=arguments[c];var a;if(ee(e)&&u==="length"&&i===e.length)return!0;var f=(a=Reflect).set.apply(a,[n,u,i].concat(cn(s)));return xe(i)&&ln(i,t),f}})}function us(e,t,r,n){var u=n!=null?n:e,i=dn(pn(r!=null?r:[]),u);Object.defineProperty(e,t,{get:function(){return i},set:function(s){i=dn(pn(s),u)},enumerable:!0})}function nt(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function is(e){if(Array.isArray(e))return nt(e)}function hn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function yn(e,t,r,n,u,i,o){try{var s=e[i](o),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function os(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var i=e.apply(t,r);function o(c){yn(i,n,u,o,s,"next",c)}function s(c){yn(i,n,u,o,s,"throw",c)}o(void 0)})}}function as(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ss(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function k(e,t,r){return typeof Reflect!="undefined"&&Reflect.get?k=Reflect.get:k=function(u,i,o){var s=gs(u,i);if(!!s){var c=Object.getOwnPropertyDescriptor(s,i);return c.get?c.get.call(o):c.value}},k(e,t,r||e)}function V(e){return V=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},V(e)}function cs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&rt(e,t)}function ls(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function fs(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ps(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function ds(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){ss(e,u,r[u])})}return e}function hs(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),r.push.apply(r,n)}return r}function ys(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):hs(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function vs(e,t){return t&&(ms(t)==="object"||typeof t=="function")?t:hn(e)}function rt(e,t){return rt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},rt(e,t)}function gs(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=V(e),e!==null););return e}function vn(e){return is(e)||fs(e)||Es(e)||ps()}var ms=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Es(e,t){if(!!e){if(typeof e=="string")return nt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return nt(e,t)}}function bs(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function _s(e){var t=bs();return function(){var n=V(e),u;if(t){var i=V(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return vs(this,u)}}var As=function(e,t){var r,n,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;o;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},Bs=1e4,gn=function(t){cs(n,t);var r=_s(n);function n(i){as(this,n);var o;o=r.call(this,i),o.controlType="layout";var s=ls(this,n)?this.constructor:void 0,c=s.excludes,a=s.childrenMaxLength;return o.props=new Qa(i==null?void 0:i.props),us(hn(o),"children",i==null?void 0:i.children),o.excludes=Y(c),o.childrenMaxLength=a,o}var u=n.prototype;return u.judgeExcludesChildren=function(o){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(o)},u.judgeJoinChildren=function(o){var s=this.judgeExcludesChildren(o);return s&&this.childrenMaxLength>this.children.length},u.validate=function(o,s){var c=this,a=this,f=function(){return k(V(n.prototype),"validate",c)};return os(function(){return As(this,function(y){switch(y.label){case 0:return[4,f().call(a,o,s)];case 1:return y.sent(),[4,Promise.all(a.children.map(function(g){return g.validate(o,s)}))];case 2:return y.sent(),[2,!0]}})})()},u.toDataBindModel=function(){var o=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,s=k(V(n.prototype),"toDataBindModel",this).call(this),c=s?[s]:[];return this.children.reduce(function(a,f){var y=f.toDataBindModel(o);if(Array.isArray(y)){var g=y.filter(function(_){return!!_});return vn(a).concat(vn(g))}return y&&a.push(y),a},c)},u.toSchema=function(){var o=k(V(n.prototype),"toSchema",this).call(this),s=this.children.map(function(c){var a=c.toSchema();return a});return ys(ds({},o),{children:s})},n}(M);gn.excludes=!1,gn.childrenMaxLength=Bs,S.LIST,console.log("sourcemap 4");function ut(e){return"children"in e&&ee(e.children)}function mn(e){return"headers"in e.props&&ee(e.props.headers)}function me(e,t){Array.isArray(e)&&e.map(r=>{r.type===p.SUBTABLE?me(r.props.headers,t):ut(r)?me(r==null?void 0:r.children,t):r.controlType===CONTROL_BASE_TYPE.FORM&&t(r)})}const En=[p.AMOUNT,p.CALC,p.DATE_RANGE],bn={amount:{caption:"\u91D1\u989D",fieldType:S.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:S.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:S.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:S.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:S.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:S.TIMESTAMP}};function Ss(e){let t=[];return me(e,r=>{r.controlType===O.FORM?t.push(r):(r.type,p.SUBTABLE)}),t}function Cs(e,t=""){return!e||!Array.isArray(e)?[]:e.map(r=>{if(!r.dataBind||r.type===p.TITLE)return r;if(En.includes(r.type)){const n=r.dataBind;Object.keys(n).forEach(u=>{const i=n[u],o=r.controlId+"_"+u;i.fieldCode=_n(o),i.dataCode=t})}else r.dataBind.fieldCode=_n(r.controlId),r.dataBind.dataCode=t;return r})}function _n(e){const t="field_";return e.startsWith(t)?e:t+e}function Ee(e){return co[e]}function Is(e){const t=new q,r=[];return e.forEach(n=>{if(!(n.parentId||!n.dataBind))if(En.includes(n.type)){const u=n.dataBind,i=n.datasourceBind;Object.keys(u).forEach(o=>{const s=u[o],c=bn[o].fieldType,a=n.caption+"_"+bn[o].caption,f=Ee(c);if(!f)return;const y={caption:a,dataBind:s};o==="currency"&&(y.optionConfig="datasource",y.datasourceBind=i);const g=t.createControlInstance(f,{props:y});g&&r.push(g)})}else{const u=Ee(n.fieldType);if(!u)return;const i=t.createControlInstance(u,{props:{caption:n.caption,dataBind:n.dataBind,datasourceBind:n.datasourceBind}});i&&r.push(i)}}),r}function ws(e){const t=new q,n=(Array.isArray(e)?e:[e]).map(u=>{const i=Ee(u);return t.createControlInstance(i)});return Array.isArray(e)?n:n[0]}function it(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function ot(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function at(e,t,r){return Bt(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(u=>u.validate(t,r)))).every(u=>u):yield e.validate(t,r)})}const Fs=[p.TITLE,p.GRID_TABLE_COLUMN,p.SUBTABLE_COLUMN,p.OPERATION_COLUMN,p.DATA_VIEW,p.LIST_VIEW,p.HEADER,p.FOOTER,p.SIMPLE_SEARCH,p.ROW,p.GRID_ROW,p.COL,p.GRID,p.DIVIDER,p.TAB_PANE,p.TAB,p.CARD_GROUP],Ds=[p.CALC],Rs={check:{id:"listPageCheckBtnId",caption:"\u67E5\u770B"},edit:{id:"listPageEditBtnId",caption:"\u7F16\u8F91"},delete:{id:"listPageDeleteBtnId",caption:"\u5220\u9664"}};function ae(e,t){var n,u,i,o,s,c,a,f,y;const r=[];if(ee(e))r.push(...e.map(g=>ae(g,t)).flat());else{const g=e.type,{caption:_,content:A}=e.props;let d;if(Fs.includes(g))g===p.OPERATION_COLUMN&&Object.entries(Rs).reduce((v,[l,{caption:h,id:C}])=>{var I;const b=e.props[l];return b&&b.isShow&&v.push({controlId:C,caption:h,type:e.type,controlType:e.controlType,parentId:(I=t==null?void 0:t.controlId)!=null?I:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),v},r);else if(d={controlId:e.id,caption:_||A||e.name,type:e.type,controlType:e.controlType,parentId:(n=t==null?void 0:t.controlId)!=null?n:null,canEdit:!Ds.includes(g),canRead:!0,canHide:!0,group:"element"},t&&t.type===p.SUBTABLE&&(d.caption=t.caption+"_"+d.caption),g===p.VUE_FORM_ITEM&&(d.caption=e.props.controlExportName||e.name),(e.controlType===O.FORM||e.controlType===O.COLUMN)&&((i=(u=e.props)==null?void 0:u.dataBind)==null?void 0:i.fieldCode)!==void 0&&((s=(o=e.props)==null?void 0:o.dataBind)==null?void 0:s.fieldCode)!==""&&(d.group="field"),r.push(d),g===p.VUE_FORM_ITEM){let v="element";((a=(c=e.props)==null?void 0:c.dataBind)==null?void 0:a.fieldCode)!==void 0&&((y=(f=e.props)==null?void 0:f.dataBind)==null?void 0:y.fieldCode)!==""&&(v="field");const l=e.props.permissions;l==null||l.map(h=>{var C;d={controlId:h.key,caption:h.caption,type:e.type,controlType:e.controlType,parentId:(C=e.id)!=null?C:null,canEdit:!0,canRead:!0,canHide:!0,group:v},r.push(d)})}e.children&&r.push(...e.children.map(v=>ae(v,t)).flat()),e.controlType===O.LIST&&r.push(...e.props.headers.map(v=>ae(v,d)).flat())}return r}class q extends de{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new te,this.fieldTypes=S,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:r,Setting:n}=t;this.controlSettingMap.set(r.controlType,n)})}registerControl(t){this.constructor.register(t);const{Designer:r,Setting:n}=t;this.register(r),this.registeredControlTypes.add(r.controlType),this.controlSettingMap.set(r.controlType,n)}getControlSetting(t){const r=this.controlSettingMap.get(t);return r||null}setInstance(t,r,n){try{if(!t)return;t.updateProps(r,n)}catch(u){throw u}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return Bt(this,null,function*(){return at(...t)})}getModelBindInfoList(...t){return ot(...t)}getSchema(...t){return it(...t)}listenControlHook(...t){return Jt.on(...t)}}q.EventLogic=te;class Os{constructor(){this.designer=new q}ListPageBuilder(){const t=this.designer.createControlInstance(p.LIST_VIEW),r=this.designer.createControlInstance(p.SIMPLE_SEARCH),n=this.designer.createControlInstance(p.GRID_TABLE),u=this.designer.createControlInstance(p.CREATE_FORM_LIST_BUTTON),i=this.designer.createControlInstance(p.IMPORT_RECORD_LIST_BUTTON),o=this.designer.createControlInstance(p.EXPORT_LIST_BUTTON),s=this.designer.createControlInstance(p.EXPORT_RECORD_LIST_BUTTON);return n.children.push(u),n.children.push(i),n.children.push(o),n.children.push(s),t.children.push(r),t.children.push(n),t}ProListPageBuilder(){const t=this.designer.createControlInstance(p.LIST_VIEW);t.props.countType="async";const r=this.designer.createControlInstance(p.SIMPLE_SEARCH),n=this.designer.createControlInstance(p.GRID_TABLE),u=this.designer.createControlInstance(p.EXPORT_LIST_BUTTON),i=this.designer.createControlInstance(p.EXPORT_RECORD_LIST_BUTTON);return n.children.push(u),n.children.push(i),t.children.push(r),t.children.push(n),t}FormPageBuilder(){const t=this.designer.createControlInstance(p.DATA_VIEW),r=this.designer.createControlInstance(p.TITLE),n=this.designer.createControlInstance(p.GRID);return t.children.push(r),t.children.push(n),t}VuePageBuilder(){const t=this.designer.createControlInstance(p.GRID),r=this.designer.createControlInstance(p.VUE_FORM_ITEM);return r.props.isHideCaption=!0,r.props.controlExportName="VuePage",t.children.push(r),t}}function $s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function An(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Ps(e,t,r){return t&&An(e.prototype,t),r&&An(e,r),e}var N=function(){function e(t){$s(this,e);var r;this.visible=(r=t==null?void 0:t.visible)!==null&&r!==void 0?r:!0;var n;this.expression=(n=t==null?void 0:t.expression)!==null&&n!==void 0?n:!1}return Ps(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function Ts(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ms=function(){function e(r){Ts(this,e),this.type=r.type,this.label=r.label,this.key=r.key,this.component=r.component;var n;this.effect=(n=r.effect)!==null&&n!==void 0?n:{};var u;this.scopeEffect=(u=r.scopeEffect)!==null&&u!==void 0?u:so,this.defaultValue=r.defaultValue,this.validator=r.validator;var i;this.props=(i=r.props)!==null&&i!==void 0?i:new N,this.effectKeys=Object.keys(this.effect)}var t=e.prototype;return t.filterEffects=function(n){var u=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(i){var o=new RegExp("^".concat(i,"(\\.\\w+)*$"));return o.test(n)}).map(function(i){return u.effect[i]})},t.callEffectFn=function(n,u){try{var i=n.apply(null,u);xe(i)&&Object.assign(this.props,i)}catch(o){Z(`effect error
|
|
2
|
+
`.concat(o))}},t.callEffect=function(n){for(var u=arguments.length,i=new Array(u>1?u-1:0),o=1;o<u;o++)i[o-1]=arguments[o];var s=this;this.filterEffects(n).forEach(function(c){return s.callEffectFn(c,i)})},t.callScopeEffect=function(){for(var n=arguments.length,u=new Array(n),i=0;i<n;i++)u[i]=arguments[i];this.callEffectFn(this.scopeEffect,u)},e}();function Ls(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var st=function e(t){Ls(this,e),this.type="group";var r;this.title=(r=t.title)!==null&&r!==void 0?r:"";var n;this.required=(n=t.required)!==null&&n!==void 0?n:!1,this.items=t.items,this.tips=t.tips};function xs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function js(e){return"type"in e&&e.type==="tab"}var ct=function e(t){xs(this,e),this.type="tab",this.title=t.title,this.items=t.items};function Bn(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Ns(e){if(Array.isArray(e))return e}function Us(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Vs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function be(e){return be=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},be(e)}function qs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&<(e,t)}function Hs(e,t){var r=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var n=[],u=!0,i=!1,o,s;try{for(r=r.call(e);!(u=(o=r.next()).done)&&(n.push(o.value),!(t&&n.length===t));u=!0);}catch(c){i=!0,s=c}finally{try{!u&&r.return!=null&&r.return()}finally{if(i)throw s}}return n}}function ks(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ws(e,t){return t&&(zs(t)==="object"||typeof t=="function")?t:Us(e)}function lt(e,t){return lt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},lt(e,t)}function Gs(e,t){return Ns(e)||Hs(e,t)||Ks(e,t)||ks()}var zs=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Ks(e,t){if(!!e){if(typeof e=="string")return Bn(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Bn(e,t)}}function Xs(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Js(e){var t=Xs();return function(){var n=be(e),u;if(t){var i=be(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Ws(this,u)}}var Qs=function(e){qs(r,e);var t=Js(r);function r(n){Vs(this,r);var u;return u=t.call(this,n),xe(n)&&Object.entries(n).forEach(function(i){var o=Gs(i,2),s=o[0],c=o[1];u[s]=c}),u}return r}(N);function Zs(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ys(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _e(e){return _e=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},_e(e)}function ec(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ft(e,t)}function tc(e,t){return t&&(nc(t)==="object"||typeof t=="function")?t:Zs(e)}function ft(e,t){return ft=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ft(e,t)}var nc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function rc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function uc(e){var t=rc();return function(){var n=_e(e),u;if(t){var i=_e(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return tc(this,u)}}var ic=function(e){ec(r,e);var t=uc(r);function r(n){Ys(this,r);var u;u=t.call(this,n);var i;u.maxLength=(i=n==null?void 0:n.maxLength)!==null&&i!==void 0?i:"";var o;u.minLength=(o=n==null?void 0:n.minLength)!==null&&o!==void 0?o:"";var s;u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"";var c;return u.i18n=(c=n==null?void 0:n.i18n)!==null&&c!==void 0?c:!1,u}return r}(N);function oc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ac(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ae(e){return Ae=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ae(e)}function sc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&pt(e,t)}function cc(e,t){return t&&(lc(t)==="object"||typeof t=="function")?t:oc(e)}function pt(e,t){return pt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},pt(e,t)}var lc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function fc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function pc(e){var t=fc();return function(){var n=Ae(e),u;if(t){var i=Ae(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return cc(this,u)}}var dc=function(e){sc(r,e);var t=pc(r);function r(n){ac(this,r);var u;u=t.call(this,n);var i;u.max=(i=n==null?void 0:n.max)!==null&&i!==void 0?i:"";var o;u.min=(o=n==null?void 0:n.min)!==null&&o!==void 0?o:"";var s;return u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"",u}return r}(N);function hc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function yc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Be(e){return Be=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Be(e)}function vc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&dt(e,t)}function gc(e,t){return t&&(mc(t)==="object"||typeof t=="function")?t:hc(e)}function dt(e,t){return dt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},dt(e,t)}var mc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Ec(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function bc(e){var t=Ec();return function(){var n=Be(e),u;if(t){var i=Be(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return gc(this,u)}}var _c=function(e){vc(r,e);var t=bc(r);function r(n){yc(this,r);var u;u=t.call(this,n);var i;u.showType=(i=n==null?void 0:n.showType)!==null&&i!==void 0?i:"switch";var o;u.tips=(o=n==null?void 0:n.tips)!==null&&o!==void 0?o:"";var s;return u.disabled=(s=n==null?void 0:n.disabled)!==null&&s!==void 0?s:!1,u}return r}(N);function Ac(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Bc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Se(e){return Se=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Se(e)}function Sc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ht(e,t)}function Cc(e,t){return t&&(Ic(t)==="object"||typeof t=="function")?t:Ac(e)}function ht(e,t){return ht=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ht(e,t)}var Ic=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function wc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Fc(e){var t=wc();return function(){var n=Se(e),u;if(t){var i=Se(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Cc(this,u)}}var Dc=function(e){Sc(r,e);var t=Fc(r);function r(n){Bc(this,r);var u;u=t.call(this,n);var i;return u.options=(i=n==null?void 0:n.options)!==null&&i!==void 0?i:[],u}return r}(N);function Rc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Oc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ce(e){return Ce=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ce(e)}function $c(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&yt(e,t)}function Pc(e,t){return t&&(Tc(t)==="object"||typeof t=="function")?t:Rc(e)}function yt(e,t){return yt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},yt(e,t)}var Tc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Mc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Lc(e){var t=Mc();return function(){var n=Ce(e),u;if(t){var i=Ce(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Pc(this,u)}}var xc=function(e){$c(r,e);var t=Lc(r);function r(n){Oc(this,r);var u;u=t.call(this,n);var i;u.placeholder=(i=n==null?void 0:n.placeholder)!==null&&i!==void 0?i:"";var o;return u.options=(o=n==null?void 0:n.options)!==null&&o!==void 0?o:[],u}return r}(N);function jc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Nc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ie(e){return Ie=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ie(e)}function Uc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&vt(e,t)}function Vc(e,t){return t&&(qc(t)==="object"||typeof t=="function")?t:jc(e)}function vt(e,t){return vt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},vt(e,t)}var qc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Hc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function kc(e){var t=Hc();return function(){var n=Ie(e),u;if(t){var i=Ie(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Vc(this,u)}}var Wc=function(e){Uc(r,e);var t=kc(r);function r(n){Nc(this,r);var u;u=t.call(this,n);var i;u.options=(i=n==null?void 0:n.options)!==null&&i!==void 0?i:[];var o;return u.showType=(o=n==null?void 0:n.showType)!==null&&o!==void 0?o:"outline",u}return r}(N);function Gc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function zc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function we(e){return we=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},we(e)}function Kc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&>(e,t)}function Xc(e,t){return t&&(Jc(t)==="object"||typeof t=="function")?t:Gc(e)}function gt(e,t){return gt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},gt(e,t)}var Jc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Qc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Zc(e){var t=Qc();return function(){var n=we(e),u;if(t){var i=we(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Xc(this,u)}}var Yc=function(e){Kc(r,e);var t=Zc(r);function r(n){zc(this,r);var u;u=t.call(this,n);var i;u.maxLength=(i=n==null?void 0:n.maxLength)!==null&&i!==void 0?i:"";var o;u.minLength=(o=n==null?void 0:n.minLength)!==null&&o!==void 0?o:"";var s;u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"";var c;u.maxRows=(c=n==null?void 0:n.maxRows)!==null&&c!==void 0?c:"";var a;u.minRows=(a=n==null?void 0:n.minRows)!==null&&a!==void 0?a:"";var f;return u.i18n=(f=n==null?void 0:n.i18n)!==null&&f!==void 0?f:!1,u}return r}(N);function el(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function mt(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){el(e,u,r[u])})}return e}function tl(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),r.push.apply(r,n)}return r}function Et(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):tl(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function nl(e,t){switch(e){case"input":return new ic(t);case"textarea":return new Yc(t);case"input-number":return new dc(t);case"switch":return new _c(t);case"radio":return new Wc(t);case"checkbox":return new Dc(t);case"select":return new xc(t);default:return new Qs(t)}}function rl(e){return function(t){var r=e.get(t);if(!!r)return new Ms(Et(mt({},r),{props:nl(r.component,"props"in r?r.props:void 0)}))}}function ul(e){var t=function(i){return new st(Et(mt({},i),{items:i.items.map(rl(n)).filter(Boolean)}))},r=function(i){return i.map(t)},n=e.fields.reduce(function(u,i){return u.set(i.key,i),u},new Map);return e.groups.map(function(u){return js(u)?new ct(Et(mt({},u),{items:r(u.items)})):t(u)})}class Sn{constructor(t){var r;this.selected=null,this.selectedInstanceDataScopeParent=null,this.selectedDataScopeFlatInstances=[],this.selectedInstanceSetting=[],this.selectedInstanceSettingItems=[],this.selectedFieldItem=null,this.external={},this.movingInstance=null,this.movingInstanceOldParent=null,this.movingInstanceOldDataScopeParent=null,this.getParentBeforeInstanceMove=(r=t.getParentBeforeInstanceMove)!=null?r:n=>n.parent,this.instance=t.instance,this.getFlatInstances()}get selectedRules(){return this.selected?this.selected.rules:null}get selectedAntdRules(){const t=this.selectedRules;return t||null}setInstances(t){this.instance=t,this.getFlatInstances()}setSelectInstance(t){this.selected=t,this.selectedInstanceDataScopeParent=t?ce(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?wn(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(r=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(r))})}getSettingItems(t){return t instanceof st?t.items:t.items.reduce((r,n)=>(r.push(...n.items),r),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=ce(t)}updateDataFieldCodeMap(t){const r=ce(t);if(!r)return;const n=this.dataFieldCodeMap.get(r.props.datasourceBind.dataCode);if(!!n){for(const[u,i]of n.entries())if(i.id===t.id){n.delete(u);break}In(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],r=new Map,n=new Map;se(this.instance,u=>{t.push(u),r.set(u.id,u),In(u,n)}),this.flatInstances=t,this.instanceIdMap=r,this.dataFieldCodeMap=n}}function Cn(e,t,r){const{dataCode:n,fieldCode:u}=t;n&&u&&(e.has(n)||e.set(n,new Map),e.get(n).set(u,r))}function In(e,t){if(e.controlType===O.FORM){const r=e.props.dataBind;r instanceof Wo?Cn(t,r,e):Object.values(r).forEach(n=>{Cn(t,n,e)})}}function se(e,t){(Array.isArray(e)?e:[e]).forEach(n=>{t(n),ut(n)&&se(n.children,t),mn(n)&&se(n.props.headers,t)})}function bt(e){return[p.SUBTABLE,p.DATA_VIEW,p.LIST_VIEW].includes(e.type)}function ce(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!bt(t);)t=t.parent;return t}function wn(e){const t=[e];return se(e,r=>{r!==e&&t.includes(r.parent)&&!bt(r)&&t.push(r)}),t}let _t="";class Fn extends Nt{constructor(t){super(),this.isMounted=!1,this.id=Oe(8),this.__pluginsApplied=!1,this.getSchema=it,this.getModelBindInfoList=ot,this.generatePermissions=ae,this.$options=Object.freeze(t);const{autoMount:r=!1,Designer:n=q,schema:u,mode:i="form",store:o={}}=this.$options;this.eventLogic=new te,this.designer=new n,this.store=new Sn(z({instance:this.designer.createControl(Array.isArray(u)?u:[u])},o)),this.mode=i,r&&this.mount()}mount(){const{plugins:t=[]}=this.$options;this.__plugins=t,this.applyPlugins(),this.isMounted=!0}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var r;try{_t=(r=t.pluginName)!=null?r:t.constructor.name,t.apply(this),_t=""}catch(n){Z(`${_t||t.constructor.name} Plugin apply Error
|
|
3
|
+
${n}`)}}),this.__pluginsApplied=!0)}emit(t,...r){return super.emit(t,r)}on(t,r){return super.on(t,r)}setInstances(t,r){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],r))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var u,i,o;const t=this.store.selected;if(!t)return;let r=this.getControlSetting(t.type);if(console.log("iswrap:",(u=t.parent)==null?void 0:u.controlType,t.parent),((i=t.parent)==null?void 0:i.layoutType)==="wrap"){const s=this.getControlSetting((o=t.parent)==null?void 0:o.type);r=this.concatSetting(r,s,t.parent.id)}this.store.setSelectInstanceSettings(r),this.callSelectedEffect("");const n={from:null,current:this.store.selectedInstanceDataScopeParent,oldParent:null,newParent:t.parent};this.callSelectedScopeEffect(n)}concatSetting(t,r,n){var i,o,s,c;let u=t;if(((i=t[0])==null?void 0:i.type)==="tab"&&((o=r[0])==null?void 0:o.type)==="tab"){const a=t,f=r.slice(0);u=a.map((y,g)=>{const _=new ct(y),A=f.findIndex(v=>v.title===y.title);if(A===-1)return _;const d=f.splice(A,1)[0];return d&&(_.items=[...this.formatGroupSetting(d.items,n),..._.items]),_}),f.length&&(u=[...u,...f.map(y=>this.formatGroupSetting(y,n))])}else if(((s=t[0])==null?void 0:s.type)==="group"&&((c=r[0])==null?void 0:c.type)==="group"){const a=t,f=r;u=[...this.formatGroupSetting(f,n),...a]}return u}formatGroupSetting(t,r){if(ee(t))return t.map(n=>{const u=new st(n);return u.fromId=r,u});{const n=new ct(t);return n.items=this.formatGroupSetting(n.items,r),n}}setControlConfig(...t){return this.designer.registerControlConfig(...t)}getControlConfig(t){return this.designer.getControlConfig(t)}getControlSetting(t){const r=this.designer.getControlSetting(t);return r?ul(r):[]}selectInstance(t){this.beforeSelectInstance(),this.store.setSelectInstance(t),this.afterSelectInstance()}setSelectedFieldItem(t){this.store.setSelectedFieldItem(t),this.callSelectedEffect("dataBind",{fieldItem:t})}moveStart(t){const r=this.getInstance(t);r&&this.store.setMovingInstance(r)}moveEnd(t=this.store.movingInstance){var c;if(t===null)return;const r=this.getInstance(t);if(!r)return;const n=this.store.movingInstanceOldDataScopeParent,u=ce(r),i=this.store.movingInstanceOldParent,o=r.parent;this.store.setMovingInstance(null),r.id!==((c=this.store.selected)==null?void 0:c.id)?this.selectInstance(r):this.store.setSelectInstance(r),this.store.getFlatInstances();const s={from:n,current:u,oldParent:i,newParent:o};this.callSelectedScopeEffect(s),i?this.emit("moved",z({},s)):this.emit("joined",z({},s))}createInstance(t,r){return this.designer.createControlInstance(t,r)}getInstance(t){return typeof t=="string"?this.store.instanceIdMap.get(t):t}getInstances(){return this.store.flatInstances}getInstancesFromType(t){return this.getInstances().filter(r=>r.type===t)}getDataScopeInstances(){return this.store.selectedDataScopeFlatInstances}getDataScopeInstancesFromType(t){return this.getDataScopeInstances().filter(r=>r.type===t)}updateInstancePropValue(t,r,n,u){var o;!Lt(t.props,r,n)||(r.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((o=this.store.selected)==null?void 0:o.id)&&this.callSelectedEffect(r,u),this.emit("updated",{instance:t,propName:r,value:n}))}updateInstanceProps(t,r,n,u=""){Object.entries(r).forEach(([i,o])=>{const s=`${u?u+".":""}${i}`;Po(o)?this.updateInstanceProps(t,o,n,s):this.updateInstancePropValue(t,s,o,n)})}setInstance(t,r,n,u){je(r)?this.updateInstancePropValue(t,String(r),n,u):this.updateInstanceProps(t,r,n)}removeInstance(t){const r=t.parent;if(!r)return;const n=r.controlType===O.LIST&&r.props.headers.includes(t)?r.props.headers:r.children,u=n.findIndex(i=>i===t);u>-1&&n.splice(u,1),this.store.getFlatInstances(),this.emit("removed",{instance:t,index:u,parent:r})}replaceInstance(t,r){const n=t.parent;if(!n)return;const u=n.controlType===O.LIST&&n.props.headers.includes(t)?n.props.headers:n.children,i=u.findIndex(o=>o===t);i>-1&&u.splice(i,1,r),this.store.getFlatInstances()}updateInstanceType(t,r){const n=t.toSchema(),u=this.createInstance(r,{id:n.id,props:n.props});if(!u){pe(`can\u2018t update instance type to ${r}`);return}return u}validate(t,r){return at(this.store.instance,t,r)}getCustomControlsInUse(){return this.getInstances().filter(this.assertInstanceIsCustomControl).reduce((t,r)=>(t.includes(r.type)||t.push(r.type),t),[])}assertInstanceIsCustomControl(t){return!To(je(t)?t:t.type)}static register(...t){return q.register(...t),this}static judgeControlIsRegistered(t){return q.staticRegisteredTypes.has(t.Designer.controlType)}judgeControlIsRegistered(t){return this.designer.registeredControlTypes.has(t.Designer.controlType)}register(...t){return this.designer.registerControl(...t),this}assertInstance(t,r){return je(r)?t.type===r:r.includes(t.type)}getInstanceInListControl(t){let r=t;for(;r;){if(r.controlType===O.LIST)return!0;r=r.parent}return!1}getInstanceParentControl(t,r){if(!!t.parent)return this.assertInstance(t.parent,r)?t.parent:this.getInstanceParentControl(t.parent,r)}callSelectedEffect(t,r={}){this.store.selectedInstanceSettingItems.forEach(n=>{n.callEffect(t,this,z({control:this.store.selected},r))})}callSelectedScopeEffect(t={}){this.store.selectedInstanceSettingItems.forEach(r=>{r.callScopeEffect(this,z({control:this.store.selected},t))})}}Fn.EventLogic=te,E.Builder=Os,E.Designer=q,E.Driven=Fn,E.Store=Sn,E.checkSchema=at,E.fillModelBindInfoListFieldCode=Cs,E.findInstanceDataScopeParent=ce,E.generatePermissions=ae,E.getColumnTypeFromFiledType=Ee,E.getColumnsFromFiledType=ws,E.getColumnsFromModelBindInfoList=Is,E.getDataScopeFlatInstances=wn,E.getMasterFormControls=Ss,E.getModelBindInfoList=ot,E.hasChildrenControl=ut,E.hasHeaderControl=mn,E.isDataScopeInstance=bt,E.loop=se,E.loopFormControl=me,E.toSchema=it,Object.defineProperty(E,"__esModule",{value:!0})});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-driven",
|
|
3
|
-
"version": "2.1.0-sourcemap.
|
|
3
|
+
"version": "2.1.0-sourcemap.12",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@byteluck-fe/model-driven-controls": "2.1.0-sourcemap.
|
|
26
|
-
"@byteluck-fe/model-driven-core": "2.1.0-sourcemap.
|
|
27
|
-
"@byteluck-fe/model-driven-settings": "2.1.0-sourcemap.
|
|
25
|
+
"@byteluck-fe/model-driven-controls": "2.1.0-sourcemap.12",
|
|
26
|
+
"@byteluck-fe/model-driven-core": "2.1.0-sourcemap.12",
|
|
27
|
+
"@byteluck-fe/model-driven-settings": "2.1.0-sourcemap.12",
|
|
28
28
|
"@byteluck-fe/model-driven-shared": "2.1.0-sourcemap.11"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "078e9f29e4204dad34b60db5c821698bcb5b65c3"
|
|
31
31
|
}
|