@byteluck-fe/model-driven-driven 1.8.0-beta.8 → 1.8.1-beta.1
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 +15 -15
- package/dist/esm/Store.js +5 -5
- package/dist/esm/utils.js +12 -12
- package/dist/index.umd.js +3 -3
- package/dist/types/Driven.d.ts +2 -2
- package/dist/types/Store.d.ts +1 -1
- package/package.json +6 -6
package/dist/esm/Driven.js
CHANGED
|
@@ -214,7 +214,7 @@ var applyingPluginName = "";
|
|
|
214
214
|
// TODO 拿到permission_controls
|
|
215
215
|
_this.generatePermissions = generatePermissions;
|
|
216
216
|
_this.$options = Object.freeze(options);
|
|
217
|
-
var
|
|
217
|
+
var _this_$options = _this.$options, _this_$options_autoMount = _this_$options.autoMount, autoMount = _this_$options_autoMount === void 0 ? false : _this_$options_autoMount, tmp = _this_$options.Designer, DesignerClass = tmp === void 0 ? Designer : tmp, schema = _this_$options.schema, _this_$options_mode = _this_$options.mode, mode = _this_$options_mode === void 0 ? "form" : _this_$options_mode, tmp1 = _this_$options.store, storeOptions = tmp1 === void 0 ? {} : tmp1;
|
|
218
218
|
_this.eventLogic = new EventLogic();
|
|
219
219
|
_this.designer = new DesignerClass();
|
|
220
220
|
_this.store = new Store(_objectSpread({
|
|
@@ -229,7 +229,7 @@ var applyingPluginName = "";
|
|
|
229
229
|
var _proto = Driven.prototype;
|
|
230
230
|
// 挂载
|
|
231
231
|
_proto.mount = function mount() {
|
|
232
|
-
var
|
|
232
|
+
var _this_$options = this.$options, _this_$options_plugins = _this_$options.plugins, plugins = _this_$options_plugins === void 0 ? [] : _this_$options_plugins;
|
|
233
233
|
this.__plugins = plugins;
|
|
234
234
|
this.applyPlugins();
|
|
235
235
|
this.isMounted = true;
|
|
@@ -245,8 +245,8 @@ var applyingPluginName = "";
|
|
|
245
245
|
if (this.__pluginsApplied) return;
|
|
246
246
|
this.__plugins.forEach(function(plugin) {
|
|
247
247
|
try {
|
|
248
|
-
var
|
|
249
|
-
applyingPluginName = (
|
|
248
|
+
var _plugin_pluginName;
|
|
249
|
+
applyingPluginName = (_plugin_pluginName = plugin.pluginName) !== null && _plugin_pluginName !== void 0 ? _plugin_pluginName : plugin.constructor.name;
|
|
250
250
|
plugin.apply(_this);
|
|
251
251
|
applyingPluginName = "";
|
|
252
252
|
} catch (e) {
|
|
@@ -307,10 +307,10 @@ var applyingPluginName = "";
|
|
|
307
307
|
};
|
|
308
308
|
_proto.concatSetting = function concatSetting(settings, otherSettings, settingFromId) {
|
|
309
309
|
var _this = this;
|
|
310
|
-
var
|
|
310
|
+
var _settings_, _otherSettings_, _settings_1, _otherSettings_1;
|
|
311
311
|
var result = settings;
|
|
312
312
|
// tab
|
|
313
|
-
if (((
|
|
313
|
+
if (((_settings_ = settings[0]) === null || _settings_ === void 0 ? void 0 : _settings_.type) === "tab" && ((_otherSettings_ = otherSettings[0]) === null || _otherSettings_ === void 0 ? void 0 : _otherSettings_.type) === "tab") {
|
|
314
314
|
var tabSettings = settings;
|
|
315
315
|
var otherTabSettings = otherSettings.slice(0);
|
|
316
316
|
result = tabSettings.map(function(tab, index) {
|
|
@@ -333,7 +333,7 @@ var applyingPluginName = "";
|
|
|
333
333
|
})));
|
|
334
334
|
}
|
|
335
335
|
// group
|
|
336
|
-
} else if (((
|
|
336
|
+
} else if (((_settings_1 = settings[0]) === null || _settings_1 === void 0 ? void 0 : _settings_1.type) === "group" && ((_otherSettings_1 = otherSettings[0]) === null || _otherSettings_1 === void 0 ? void 0 : _otherSettings_1.type) === "group") {
|
|
337
337
|
var groupSettings = settings;
|
|
338
338
|
var otherGroupSettings = otherSettings;
|
|
339
339
|
result = _toConsumableArray(this.formatGroupSetting(otherGroupSettings, settingFromId)).concat(_toConsumableArray(groupSettings));
|
|
@@ -359,8 +359,8 @@ var applyingPluginName = "";
|
|
|
359
359
|
for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){
|
|
360
360
|
args[_key] = arguments[_key];
|
|
361
361
|
}
|
|
362
|
-
var
|
|
363
|
-
return (
|
|
362
|
+
var _this_designer;
|
|
363
|
+
return (_this_designer = this.designer).registerControlConfig.apply(_this_designer, _toConsumableArray(args));
|
|
364
364
|
};
|
|
365
365
|
_proto.getControlConfig = function getControlConfig(control) {
|
|
366
366
|
return this.designer.getControlConfig(control);
|
|
@@ -395,7 +395,7 @@ var applyingPluginName = "";
|
|
|
395
395
|
};
|
|
396
396
|
_proto.moveEnd = function moveEnd() {
|
|
397
397
|
var instance = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : this.store.movingInstance;
|
|
398
|
-
var
|
|
398
|
+
var _this_store_selected;
|
|
399
399
|
if (instance === null) return;
|
|
400
400
|
var _instance = this.getInstance(instance);
|
|
401
401
|
if (!_instance) return;
|
|
@@ -409,7 +409,7 @@ var applyingPluginName = "";
|
|
|
409
409
|
var newParent = _instance.parent;
|
|
410
410
|
// 移动之后清空movingInstance
|
|
411
411
|
this.store.setMovingInstance(null);
|
|
412
|
-
if (_instance.id !== ((
|
|
412
|
+
if (_instance.id !== ((_this_store_selected = this.store.selected) === null || _this_store_selected === void 0 ? void 0 : _this_store_selected.id)) {
|
|
413
413
|
this.selectInstance(_instance);
|
|
414
414
|
} else {
|
|
415
415
|
this.store.setSelectInstance(_instance);
|
|
@@ -455,7 +455,7 @@ var applyingPluginName = "";
|
|
|
455
455
|
});
|
|
456
456
|
};
|
|
457
457
|
_proto.updateInstancePropValue = function updateInstancePropValue(instance, propName, value, payload) {
|
|
458
|
-
var
|
|
458
|
+
var _this_store_selected;
|
|
459
459
|
var result = updateValueFromKeys(instance.props, propName, value);
|
|
460
460
|
if (!result) {
|
|
461
461
|
return;
|
|
@@ -464,7 +464,7 @@ var applyingPluginName = "";
|
|
|
464
464
|
if (propName.startsWith("dataBind")) {
|
|
465
465
|
this.store.updateDataFieldCodeMap(instance);
|
|
466
466
|
}
|
|
467
|
-
if (instance.id === ((
|
|
467
|
+
if (instance.id === ((_this_store_selected = this.store.selected) === null || _this_store_selected === void 0 ? void 0 : _this_store_selected.id)) {
|
|
468
468
|
this.callSelectedEffect(propName, payload);
|
|
469
469
|
}
|
|
470
470
|
this.emit("updated", {
|
|
@@ -563,8 +563,8 @@ var applyingPluginName = "";
|
|
|
563
563
|
for(var _len = arguments.length, arg = new Array(_len), _key = 0; _key < _len; _key++){
|
|
564
564
|
arg[_key] = arguments[_key];
|
|
565
565
|
}
|
|
566
|
-
var
|
|
567
|
-
(
|
|
566
|
+
var _this_designer;
|
|
567
|
+
(_this_designer = this.designer).registerControl.apply(_this_designer, _toConsumableArray(arg));
|
|
568
568
|
return this;
|
|
569
569
|
};
|
|
570
570
|
/**
|
package/dist/esm/Store.js
CHANGED
|
@@ -111,8 +111,8 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
111
111
|
this.movingInstance = null;
|
|
112
112
|
this.movingInstanceOldParent = null;
|
|
113
113
|
this.movingInstanceOldDataScopeParent = null;
|
|
114
|
-
var
|
|
115
|
-
this.getParentBeforeInstanceMove = (
|
|
114
|
+
var _options_getParentBeforeInstanceMove;
|
|
115
|
+
this.getParentBeforeInstanceMove = (_options_getParentBeforeInstanceMove = options.getParentBeforeInstanceMove) !== null && _options_getParentBeforeInstanceMove !== void 0 ? _options_getParentBeforeInstanceMove : function(instance) {
|
|
116
116
|
return instance.parent;
|
|
117
117
|
};
|
|
118
118
|
this.instance = options.instance;
|
|
@@ -133,8 +133,8 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
133
133
|
this.selectedInstanceSetting = settings;
|
|
134
134
|
this.selectedInstanceSettingItems = [];
|
|
135
135
|
this.selectedInstanceSetting.forEach(function(group) {
|
|
136
|
-
var
|
|
137
|
-
(
|
|
136
|
+
var _this_selectedInstanceSettingItems;
|
|
137
|
+
(_this_selectedInstanceSettingItems = _this.selectedInstanceSettingItems).push.apply(_this_selectedInstanceSettingItems, _toConsumableArray(_this.getSettingItems(group)));
|
|
138
138
|
});
|
|
139
139
|
};
|
|
140
140
|
_proto.getSettingItems = function getSettingItems(group) {
|
|
@@ -164,7 +164,7 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
164
164
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
165
165
|
try {
|
|
166
166
|
for(var _iterator = map.entries()[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
167
|
-
var
|
|
167
|
+
var _step_value = _slicedToArray(_step.value, 2), key = _step_value[0], value = _step_value[1];
|
|
168
168
|
if (value.id === instance.id) {
|
|
169
169
|
map.delete(key);
|
|
170
170
|
break;
|
package/dist/esm/utils.js
CHANGED
|
@@ -415,16 +415,16 @@ function generatePermissions(controls, parent) {
|
|
|
415
415
|
}).flat()));
|
|
416
416
|
} else {
|
|
417
417
|
var type = controls.type;
|
|
418
|
-
var
|
|
418
|
+
var _controls_props = controls.props, caption = _controls_props.caption, content = _controls_props.content;
|
|
419
419
|
var permissionItem;
|
|
420
420
|
if (!PermissionExcludeControlTypes.includes(type)) {
|
|
421
|
-
var
|
|
421
|
+
var _parent_controlId;
|
|
422
422
|
permissionItem = {
|
|
423
423
|
controlId: controls.id,
|
|
424
424
|
caption: caption || content || controls.name,
|
|
425
425
|
type: controls.type,
|
|
426
426
|
controlType: controls.controlType,
|
|
427
|
-
parentId: (
|
|
427
|
+
parentId: (_parent_controlId = parent === null || parent === void 0 ? void 0 : parent.controlId) !== null && _parent_controlId !== void 0 ? _parent_controlId : null,
|
|
428
428
|
canEdit: !cannotEditControlTypes.includes(type),
|
|
429
429
|
canRead: true,
|
|
430
430
|
canHide: true,
|
|
@@ -438,28 +438,28 @@ function generatePermissions(controls, parent) {
|
|
|
438
438
|
permissionItem.caption = controls.props.controlExportName || controls.name;
|
|
439
439
|
}
|
|
440
440
|
if (_instanceof(controls, DesignerFormControl) || _instanceof(controls, DesignerColumnControl)) {
|
|
441
|
-
var
|
|
442
|
-
if (((
|
|
441
|
+
var _controls_props1, _controls_props_dataBind, _controls_props2, _controls_props_dataBind1;
|
|
442
|
+
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
443
|
permissionItem.group = "field";
|
|
444
444
|
}
|
|
445
445
|
}
|
|
446
446
|
result.push(permissionItem);
|
|
447
447
|
//追加vue容器权限
|
|
448
448
|
if (type === CONTROL_TYPE.VUE_FORM_ITEM) {
|
|
449
|
-
var
|
|
449
|
+
var _controls_props3, _controls_props_dataBind2, _controls_props4, _controls_props_dataBind3;
|
|
450
450
|
var vueFormItemGroup = "element";
|
|
451
|
-
if (((
|
|
451
|
+
if (((_controls_props3 = controls.props) === null || _controls_props3 === void 0 ? void 0 : (_controls_props_dataBind2 = _controls_props3.dataBind) === null || _controls_props_dataBind2 === void 0 ? void 0 : _controls_props_dataBind2.fieldCode) !== undefined && ((_controls_props4 = controls.props) === null || _controls_props4 === void 0 ? void 0 : (_controls_props_dataBind3 = _controls_props4.dataBind) === null || _controls_props_dataBind3 === void 0 ? void 0 : _controls_props_dataBind3.fieldCode) !== "") {
|
|
452
452
|
vueFormItemGroup = "field";
|
|
453
453
|
}
|
|
454
454
|
var permissions = controls.props["permissions"];
|
|
455
455
|
permissions === null || permissions === void 0 ? void 0 : permissions.map(function(item) {
|
|
456
|
-
var
|
|
456
|
+
var _controls_id;
|
|
457
457
|
permissionItem = {
|
|
458
458
|
controlId: item.key,
|
|
459
459
|
caption: item.caption,
|
|
460
460
|
type: controls.type,
|
|
461
461
|
controlType: controls.controlType,
|
|
462
|
-
parentId: (
|
|
462
|
+
parentId: (_controls_id = controls.id) !== null && _controls_id !== void 0 ? _controls_id : null,
|
|
463
463
|
canEdit: true,
|
|
464
464
|
canRead: true,
|
|
465
465
|
canHide: true,
|
|
@@ -471,17 +471,17 @@ function generatePermissions(controls, parent) {
|
|
|
471
471
|
} else if (type === CONTROL_TYPE.OPERATION_COLUMN) {
|
|
472
472
|
// 列表的操作列单独处理
|
|
473
473
|
Object.entries(LIST_OPERATION_BUTTON_PERMISSIONS_MAPS).reduce(function(result, param) {
|
|
474
|
-
var _param = _slicedToArray(param, 2), key = _param[0],
|
|
474
|
+
var _param = _slicedToArray(param, 2), key = _param[0], _param_ = _param[1], caption = _param_.caption, controlId = _param_.id;
|
|
475
475
|
var operationItem = controls.props[key];
|
|
476
476
|
if (operationItem && operationItem.isShow) {
|
|
477
|
-
var
|
|
477
|
+
var _parent_controlId;
|
|
478
478
|
// 只能控制是否显示
|
|
479
479
|
result.push({
|
|
480
480
|
controlId: controlId,
|
|
481
481
|
caption: caption,
|
|
482
482
|
type: controls.type,
|
|
483
483
|
controlType: controls.controlType,
|
|
484
|
-
parentId: (
|
|
484
|
+
parentId: (_parent_controlId = parent === null || parent === void 0 ? void 0 : parent.controlId) !== null && _parent_controlId !== void 0 ? _parent_controlId : null,
|
|
485
485
|
canEdit: false,
|
|
486
486
|
canRead: false,
|
|
487
487
|
canHide: true,
|
package/dist/index.umd.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var zf=Object.defineProperty;var hr=Object.getOwnPropertySymbols;var Gf=Object.prototype.hasOwnProperty,Kf=Object.prototype.propertyIsEnumerable;var yr=(E,O,F)=>O in E?zf(E,O,{enumerable:!0,configurable:!0,writable:!0,value:F}):E[O]=F,Z=(E,O)=>{for(var F in O||(O={}))Gf.call(O,F)&&yr(E,F,O[F]);if(hr)for(var F of hr(O))Kf.call(O,F)&&yr(E,F,O[F]);return E};var Jt=(E,O,F)=>new Promise((Ue,ye)=>{var Ve=L=>{try{Y(F.next(L))}catch(ee){ye(ee)}},ke=L=>{try{Y(F.throw(L))}catch(ee){ye(ee)}},Y=L=>L.done?Ue(L.value):Promise.resolve(L.value).then(Ve,ke);Y((F=F.apply(E,O)).next())});(function(E,O){typeof exports=="object"&&typeof module!="undefined"?O(exports):typeof define=="function"&&define.amd?define(["exports"],O):(E=typeof globalThis!="undefined"?globalThis:E||self,O(E.modelDrivenDriven={}))})(this,function(E){"use strict";var O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",F="\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",ke="{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",vr="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",gr="\u8BF7\u7ED1\u5B9A\u8868\u5355",mr="\u8BF7\u7ED1\u5B9A\u5217\u8868",Er="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",br="\u8BF7\u8F93\u5165\u663E\u793A\u503C",_r="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Br="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Sr="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Ar="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",wr="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Cr="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Ir="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Or="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Fr="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Dr="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Rr="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Pr="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",$r="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Tr="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Mr="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",xr="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",jr="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Lr="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Nr="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",qr="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Ur="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Vr="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",kr="\u8BF7\u9009\u62E9\u7701",Hr="\u8BF7\u9009\u62E9\u5E02",Wr="\u8BF7\u9009\u62E9\u533A",zr="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Gr="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Kr="\u8BF7\u8F93\u5165\u5217\u5BBD",Xr="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Jr="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Qr="\u8BF7\u9009\u62E9\u63A7\u4EF6",Zr="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Yr="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",eu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",tu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",nu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ru="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",uu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ou="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",iu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",au="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",su="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",cu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",lu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",fu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",pu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",du="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",hu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",yu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",vu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",gu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",mu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Eu={isNotNumber:O,isNotString:F,isNotObject:Ue,isNotArray:ye,isNotBoolean:Ve,runtimeRequired:ke,pleaseEnterCaption:Y,pleaseEnterCaptionTip:L,pleaseEnterPlaceholder:ee,pleaseEnterFieldCode:vr,pleaseEnterForm:gr,pleaseEnterList:mr,pleaseEnterProcess:Er,pleaseEnterLabel:br,pleaseEnterValue:_r,bizKeyNotBindFiled:Br,pleaseEnterNumberRange:Sr,pleaseEnterAValueGreaterThanMin:Ar,pleaseEnterAValueLessThanMax:wr,numberRangeSetError:Cr,stringRangeError:Ir,attachmentMaxSize:Or,pleaseEnterTotalScoreSetting:Fr,theTotalScoreMustNotBeLessThan1:Dr,scoreDefaultValueRange:Rr,attachmentLimitError:Pr,PleaseReselectTheOptionalQuantity:$r,TheMaximumLengthIsGreaterThanTheMinimumLength:Tr,TheMinimumLengthIsGreaterThanTheMaximumLength:Mr,PleaseSelectTheCorrectOptionSettings:xr,optionIdIsRepeat:jr,optionIsRequired:Lr,pleaseEnterDataCode:Nr,pleaseEnterValueFieldCode:qr,pleaseEnterSvcCode:Ur,pleaseBindAtLeastOneDisplayValue:Vr,pleaseSelectProvince:kr,pleaseSelectCity:Hr,pleaseSelectDistrict:Wr,limitRowsCannotBeLessThan0:zr,TheNumberOfRowsCannotBeLessThanMinRows:Gr,pleaseEnterColumnWidth:Kr,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Xr,pleaseCompleteAllRulesAndConditions:Jr,pleaseSelectControl:Qr,pleaseSelectAtLeastOneColumn:Zr,pleaseSelectFillBackMode:Yr,pleaseSelectDashboard:eu,rootNodeIsRequired:tu,theViewNameCannotBeEmpty:nu,pleaseSelectOcrType:ru,pleaseSelectAtLeastOneFieldToFillIn:uu,pleaseChooseAtLeastOne:ou,pleaseEnterButtonContent:iu,pleaseEnterDataCodeInDataSetting:au,pleaseEnterValueFieldCodeInDataSetting:su,pleaseEnterSvcCodeInDataSetting:cu,pleaseBindAtLeastOneDisplayValueInDataSetting:lu,rootNodeIsRequiredInDataSetting:fu,pleaseEnterMaxHeight:pu,pleaseEnter:du,pleaseEnterWatermark:hu,pleaseEnterFileName:yu,pleaseUploadAtLeastOnePrintTemplate:vu,pleaseAssignBusiness:gu,pleaseAssignExternal:mu},bu="Please enter a number",_u="Please enter a string",Bu="Please enter an object",Su="Please enter an array",Au="Please enter a boolean",wu="{caption} Required",Cu="Please enter the title",Iu="Please enter the bubble prompt",Ou="Please enter the prompt text",Fu="Please bind data items",Du="Please bind the form",Ru="Please bind the list",Pu="Please bind the process",$u="Please enter the displayed value",Tu="Please enter the stored value",Mu="The document number is not bound to the data item",xu="Please enter a value greater than or equal to {min} and less than or equal to {max}",ju="Please enter a value greater than or equal to {min}",Lu="Please enter a value less than or equal to {max}",Nu="The value range is set incorrectly",qu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Uu="The attachment size must be between 0MB and 1000MB",Vu="Please fill in the total score setting",ku="The total score cannot be less than 1",Hu="The default value must be between {min} and {max}",Wu="The number of attachments uploaded must be between {min} and {max}",zu="Please re-select the optional quantity",Gu="The maximum length of the control must be greater than the minimum length",Ku="The minimum length of the control must be less than the maximum length",Xu="Please select the correct option setting",Ju="Option ID cannot be repeated",Qu="Please enter at least one option",Zu="Please bind the data source",Yu="Please bind the stored value",eo="Please bind the service",to="At least one display value must be bound",no="Please select a province",ro="Please select a city",uo="Please select a district",oo="The minimum number of lines to fill in cannot be less than 0",io="The number of rows cannot be less than {min} rows",ao="Please enter the column width",so="Please set the logical relationship of all rule conditions",co="Please complete all rules and conditions",lo="please select control",fo="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",po="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ho="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",yo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",vo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",go="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",mo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Eo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",bo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",_o="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Bo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",So="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ao="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",wo="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Co="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Io="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Oo="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Fo="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Do={isNotNumber:bu,isNotString:_u,isNotObject:Bu,isNotArray:Su,isNotBoolean:Au,runtimeRequired:wu,pleaseEnterCaption:Cu,pleaseEnterCaptionTip:Iu,pleaseEnterPlaceholder:Ou,pleaseEnterFieldCode:Fu,pleaseEnterForm:Du,pleaseEnterList:Ru,pleaseEnterProcess:Pu,pleaseEnterLabel:$u,pleaseEnterValue:Tu,bizKeyNotBindFiled:Mu,pleaseEnterNumberRange:xu,pleaseEnterAValueGreaterThanMin:ju,pleaseEnterAValueLessThanMax:Lu,numberRangeSetError:Nu,stringRangeError:qu,attachmentMaxSize:Uu,pleaseEnterTotalScoreSetting:Vu,theTotalScoreMustNotBeLessThan1:ku,scoreDefaultValueRange:Hu,attachmentLimitError:Wu,PleaseReselectTheOptionalQuantity:zu,TheMaximumLengthIsGreaterThanTheMinimumLength:Gu,TheMinimumLengthIsGreaterThanTheMaximumLength:Ku,PleaseSelectTheCorrectOptionSettings:Xu,optionIdIsRepeat:Ju,optionIsRequired:Qu,pleaseEnterDataCode:Zu,pleaseEnterValueFieldCode:Yu,pleaseEnterSvcCode:eo,pleaseBindAtLeastOneDisplayValue:to,pleaseSelectProvince:no,pleaseSelectCity:ro,pleaseSelectDistrict:uo,limitRowsCannotBeLessThan0:oo,TheNumberOfRowsCannotBeLessThanMinRows:io,pleaseEnterColumnWidth:ao,pleaseSetTheLogicalRelationshipOfAllRuleConditions:so,pleaseCompleteAllRulesAndConditions:co,pleaseSelectControl:lo,pleaseSelectDashboard:fo,theViewNameCannotBeEmpty:po,pleaseSelectOcrType:ho,pleaseSelectAtLeastOneFieldToFillIn:yo,pleaseChooseAtLeastOne:vo,pleaseEnterButtonContent:go,pleaseEnterDataCodeInDataSetting:mo,pleaseEnterValueFieldCodeInDataSetting:Eo,pleaseEnterSvcCodeInDataSetting:bo,pleaseBindAtLeastOneDisplayValueInDataSetting:_o,rootNodeIsRequiredInDataSetting:Bo,pleaseEnterMaxHeight:So,pleaseEnter:Ao,pleaseEnterWatermark:wo,pleaseEnterFileName:Co,pleaseUploadAtLeastOnePrintTemplate:Io,pleaseAssignBusiness:Oo,pleaseAssignExternal:Fo},Ro="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Po="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$o="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",To="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mo="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xo="{caption}\u5FC5\u9808",jo="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Lo="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",No="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",qo="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Uo="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Vo="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ko="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ho="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Wo="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",zo="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Go="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ko="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Xo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Jo="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Qo="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Zo="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Yo="\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",ti="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ni="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ri="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ui="\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",oi="\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",ii="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ai="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",si="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ci="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",li="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",fi="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",pi="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",di="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",hi="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",yi="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",vi="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",gi="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",mi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ei="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",bi="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",_i="please select control",Bi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Si="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ai="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",wi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ci="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ii="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Oi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Fi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Di="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ri="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Pi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",$i="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ti="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Mi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",xi="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ji="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Li="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ni="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",qi={isNotNumber:Ro,isNotString:Po,isNotObject:$o,isNotArray:To,isNotBoolean:Mo,runtimeRequired:xo,pleaseEnterCaption:jo,pleaseEnterCaptionTip:Lo,pleaseEnterPlaceholder:No,pleaseEnterFieldCode:qo,pleaseEnterForm:Uo,pleaseEnterList:Vo,pleaseEnterProcess:ko,pleaseEnterLabel:Ho,pleaseEnterValue:Wo,bizKeyNotBindFiled:zo,pleaseEnterNumberRange:Go,pleaseEnterAValueGreaterThanMin:Ko,pleaseEnterAValueLessThanMax:Xo,numberRangeSetError:Jo,stringRangeError:Qo,attachmentMaxSize:Zo,pleaseEnterTotalScoreSetting:Yo,theTotalScoreMustNotBeLessThan1:ei,scoreDefaultValueRange:ti,attachmentLimitError:ni,PleaseReselectTheOptionalQuantity:ri,TheMaximumLengthIsGreaterThanTheMinimumLength:ui,TheMinimumLengthIsGreaterThanTheMaximumLength:oi,PleaseSelectTheCorrectOptionSettings:ii,optionIdIsRepeat:ai,optionIsRequired:si,pleaseEnterDataCode:ci,pleaseEnterValueFieldCode:li,pleaseEnterSvcCode:fi,pleaseBindAtLeastOneDisplayValue:pi,pleaseSelectProvince:di,pleaseSelectCity:hi,pleaseSelectDistrict:yi,limitRowsCannotBeLessThan0:vi,TheNumberOfRowsCannotBeLessThanMinRows:gi,pleaseEnterColumnWidth:mi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ei,pleaseCompleteAllRulesAndConditions:bi,pleaseSelectControl:_i,pleaseSelectDashboard:Bi,theViewNameCannotBeEmpty:Si,pleaseSelectOcrType:Ai,pleaseSelectAtLeastOneFieldToFillIn:wi,pleaseChooseAtLeastOne:Ci,pleaseEnterButtonContent:Ii,pleaseEnterDataCodeInDataSetting:Oi,pleaseEnterValueFieldCodeInDataSetting:Fi,pleaseEnterSvcCodeInDataSetting:Di,pleaseBindAtLeastOneDisplayValueInDataSetting:Ri,rootNodeIsRequiredInDataSetting:Pi,pleaseEnterMaxHeight:$i,pleaseEnter:Ti,pleaseEnterWatermark:Mi,pleaseEnterFileName:xi,pleaseUploadAtLeastOnePrintTemplate:ji,pleaseAssignBusiness:Li,pleaseAssignExternal:Ni},Ui={zhCN:Eu,enUS:Do,jaJP:qi},Qt;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(Qt||(Qt={}));var Zt;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(Zt||(Zt={}));var Vi="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,Hi=(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),Yt;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(Yt||(Yt={}));var en="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Wi=en+"0123456789";function He(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",r=0;r<e;r++){var n=r===0?en:Wi,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 zi(e){if(Array.isArray(e))return We(e)}function Gi(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function tn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ki(){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 Ki()?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 nn(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 Xi(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Ji(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Qi(){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 Zi(e,t){return t&&(Yi(t)==="object"||typeof t=="function")?t:Gi(e)}function ne(e,t){return ne=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ne(e,t)}function rn(e){return zi(e)||Ji(e)||ea(e)||Qi()}var Yi=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function ea(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||!Xi(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 ta(){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 un(e){var t=ta();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 Zi(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(rn(u)))}function on(){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(rn(u)))}function na(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Ke=function(e){nn(r,e);var t=un(r);function r(n){tn(this,r);var u;return u=t.call(this,n),u.name="\u{1F4A5} Driven Error",u.message=n?na(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)),ra=function(e){nn(r,e);var t=un(r);function r(n){tn(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 an(e){throw new ra(e)}function ua(e){Ge.error(new Ke(e))}var oa=Object.prototype.toString;function sn(e,t){return oa.call(e)==="[object "+t+"]"}function ia(e){return sn(e,"String")}function aa(e){return sn(e,"Promise")}var sa=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();aa(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&&!ia(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 ca(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var T=function(){function e(){ca(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]:Vi;return new sa({locale:r,messages:Ui})},e.setLocale=function(r){return this.$i18n.setLocale(r)},e}();T.$i18n=T.resetI18n();function cn(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 la=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},fa={exports:{}};(function(e){(function(t){var r=function(l,y,w){if(!a(y)||p(y)||v(y)||_(y)||c(y))return y;var b,C=0,x=0;if(f(y))for(b=[],x=y.length;C<x;C++)b.push(r(l,y[C],w));else{b={};for(var S in y)Object.prototype.hasOwnProperty.call(y,S)&&(b[l(S,w)]=r(l,y[S],w))}return b},n=function(l,y){y=y||{};var w=y.separator||"_",b=y.split||/(?=[A-Z])/;return l.split(b).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]"},_=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(b,C){return w(b,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})(la)})(fa);function W(e){if(e!==void 0)return typeof e=="object"?JSON.parse(JSON.stringify(e)):e}function Xe(e){return Object.prototype.toString.call(e)==="[object Object]"}function pa(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function ue(e){return Array.isArray(e)}function Je(e){return typeof e=="string"}function da(e){return Object.values(d).includes(e)}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 ha(e){if(Array.isArray(e))return Qe(e)}function ln(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 ya(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){ln(o,n,u,i,s,"next",c)}function s(c){ln(o,n,u,i,s,"throw",c)}i(void 0)})}}function va(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ga(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ma(){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 Ze(e){return ha(e)||ga(e)||Ea(e)||ma()}function Ea(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 ba=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}}},fn=function(){function e(){va(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 ya(function(){var c,a,f,p,v,_,B,h,g,l,y,w;return ba(this,function(b){switch(b.label){case 0:if(c=s._events.get(n),a=[],!c)return[3,10];f=c.slice(),p=!0,v=!1,_=void 0,b.label=1;case 1:b.trys.push([1,8,9,10]),B=f[Symbol.iterator](),b.label=2;case 2:if(p=(h=B.next()).done)return[3,7];if(g=h.value,!c.includes(g))return[3,6];b.label=3;case 3:return b.trys.push([3,5,,6]),s.debug&&on.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(Ze(o))),[4,g.apply(null,Ze(o))];case 4:return l=b.sent(),s.debug&&on.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(Ze(o),[l])),a.push(l),l===!1?[3,7]:[3,6];case 5:return y=b.sent(),ua(String(y)),[3,6];case 6:return p=!0,[3,2];case 7:return[3,10];case 8:return w=b.sent(),v=!0,_=w,[3,10];case 9:try{!p&&B.return!=null&&B.return()}finally{if(v)throw _}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 _a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ba=[{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(){_a(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=Ba;function Sa(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var pn=[],me=function(){function e(r){Sa(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=pn,me.staticRegisteredTypes=new Set(pn.map(function(e){return e.Designer.controlType})),me.staticRegisteredConfigs=new Map;function dn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ee=function e(t){dn(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:""},hn;(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"})(hn||(hn={}));var yn;(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"})(yn||(yn={}));var Ye;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(Ye||(Ye={}));var Aa=function e(t){dn(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 wa(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function et(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ca(){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 Ca()?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&&ae(a,i.prototype),a},be.apply(null,arguments)}function ie(e){return ie=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ie(e)}function Ia(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 Oa(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Fa(e,t){return t&&(Da(t)==="object"||typeof t=="function")?t:wa(e)}function ae(e,t){return ae=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ae(e,t)}var Da=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function tt(e){var t=typeof Map=="function"?new Map:void 0;return tt=function(n){if(n===null||!Oa(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,ie(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),ae(u,n)},tt(e)}function Ra(){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 Pa(e){var t=Ra();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 Fa(this,u)}}var nt=function e(t){et(this,e),this.isHide={type:"boolean"}},vn=function(e){Ia(r,e);var t=Pa(r);function r(n){return et(this,r),t.call(this)}return r}(tt(Array)),q=function e(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";et(this,e);var n;this.isHide=(n=t==null?void 0:t.isHide)!==null&&n!==void 0?n:!1,this.style=new Aa(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=nt,q.RuntimeRules=vn;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 $a(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function rt(e){return rt=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},rt(e)}function _e(e,t){return _e=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},_e(e,t)}function Ta(){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 Ta()?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&&_e(a,i.prototype),a},Be.apply(null,arguments)}function Ma(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function ut(e){var t=typeof Map=="function"?new Map:void 0;return ut=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 Be(n,arguments,rt(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),_e(u,n)},ut(e)}var xa=/%[sdj%]/g,gn=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(gn=function(t,r){typeof console!="undefined"&&console.warn&&r.every(function(n){return typeof n=="string"})&&console.warn(t,r)});function ot(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(xa,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 ja(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||ja(t)&&typeof e=="string"&&!e)}function La(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 mn(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 Na(e){var t=[];return Object.keys(e).forEach(function(r){t.push.apply(t,e[r])}),t}var En=function(e){$a(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}(ut(Error));function qa(e,t,r,n){if(t.first){var u=new Promise(function(p,v){var _=function(g){return n(g),g.length?v(new En(g,ot(g))):p()},B=Na(e);mn(B,r,_)});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 _=function(h){if(a.push.apply(a,h),c++,c===s)return n(a),a.length?v(new En(a,ot(a))):p()};i.length||(n(a),p()),i.forEach(function(B){var h=e[B];o.indexOf(B)!==-1?mn(h,r,_):La(h,r,_)})});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 _n(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 Bn(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 Ua(e,t,r,n,u){(/^\s+$/.test(t)||t==="")&&n.push($(u.messages.whitespace,e.fullField))}var it={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(it.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(it.url)},hex:function(t){return typeof t=="string"&&!!t.match(it.hex)}};function Va(e,t,r,n,u){if(e.required&&t===void 0){Bn(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 ka(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",_=Array.isArray(t);if(p?f="number":v?f="string":_&&(f="array"),!f)return!1;_&&(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 Ha(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 Wa(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:Bn,whitespace:Ua,type:Va,range:ka,enum:Ha,pattern:Wa};function za(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 Ga(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 Ka(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 Xa(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 Ja(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 Qa(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 Za(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 Ya(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 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)}var ts="enum";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[ts](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,"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 us(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 os(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 at(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 is(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:za,method:Ga,number:Ka,boolean:Xa,regexp:Ja,integer:Qa,float:Za,array:Ya,object:es,enum:ns,pattern:rs,date:us,url:at,hex:at,email:at,required:os,any:is};function st(){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 ct=st();function U(e){this.rules=null,this._messages=ct,this.define(e)}U.prototype={messages:function(t){return t&&(this._messages=_n(st(),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(b){if(Array.isArray(b)){var C;l=(C=l).concat.apply(C,b)}else l.push(b)}for(g=0;g<h.length;g++)w(h[g]);l.length?y=ot(l):(l=null,y=null),s(l,y)}if(i.messages){var a=this.messages();a===ct&&(a=st()),_n(a,i.messages),i.messages=a}else i.messages=this.messages();var f,p,v={},_=i.keys||Object.keys(this.rules);_.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 qa(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 b(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 pr in h.value)h.value.hasOwnProperty(pr)&&(j[pr]=l.defaultField);j=M(M({},j),h.rule.fields);for(var J in j)if(j.hasOwnProperty(J)){var Wf=Array.isArray(j[J])?j[J]:[j[J]];j[J]=Wf.map(w.bind(null,J))}var dr=new U(j);dr.messages(i.messages),h.rule.options&&(h.rule.options.messages=i.messages,h.rule.options.error=i.error),dr.validate(h.value,h.rule.options||i,function(Xt){var Q=[];S&&S.length&&Q.push.apply(Q,S),Xt&&Xt.length&&Q.push.apply(Q,Xt),g(Q.length?Q:null)})}}var C;l.asyncValidator?C=l.asyncValidator(l,h.value,b,h.source,i):l.validator&&(C=l.validator(l,h.value,b,h.source,i),C===!0?b():C===!1?b(l.message||l.field+" fails"):C instanceof Array?b(C):C instanceof Error&&b(C.message)),C&&C.then&&C.then(function(){return b()},function(x){return b(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=gn,U.messages=ct,U.validators=ce;var as={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 ss(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=new U(e);return r.messages(Object.assign(as,t)),r}var Sn=new fn;function lt(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 cs(e){if(Array.isArray(e))return e}function ls(e){if(Array.isArray(e))return lt(e)}function An(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 wn(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){An(o,n,u,i,s,"next",c)}function s(c){An(o,n,u,i,s,"throw",c)}i(void 0)})}}function fs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Cn(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&&Cn(e.prototype,t),r&&Cn(e,r),e}function ds(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function In(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function On(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function hs(){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 ys(){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 Fn(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){ds(e,u,r[u])})}return e}function vs(e){return cs(e)||On(e)||Dn(e)||hs()}function ft(e){return ls(e)||On(e)||Dn(e)||ys()}function Dn(e,t){if(!!e){if(typeof e=="string")return lt(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 lt(e,t)}}var Rn=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;fs(this,t),this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=$n,this.removeSetting=Pn,this._callControlHooks("preInstance",n);var o=In(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,_=o.setting;i&&s&&c||an("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:He(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,(In(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(_);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=vs(o),a=c[0],f=c.slice(1);return(s=Sn).emit.apply(s,[a,this].concat(ft(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),cn(this.props,u,o),this.postUpdate(u,o)},r.preValidate=function(){var u=this;return wn(function(){var o,i,s;return Rn(this,function(c){switch(c.label){case 0:return o=Fn({},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 wn(function(){var s,c,a,f;return Rn(this,function(p){switch(p.label){case 0:return[4,i.preValidate()];case 1:s=p.sent(),c=s!==void 0?s:Fn({},i.rules),Array.isArray(o)&&o.forEach(function(v){c.hasOwnProperty(v)&&delete c[v]}),a=ss(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,_=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 _!==void 0&&(y.required=_),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,ft(o.add))}o.remove&&this.removeSettingItem(o.remove),o.update}},ps(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=Pn,R.updateSettingItem=$n;function Pn(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 $n(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,ft(t.showItems))}}}})}function gs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Tn(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 ms(e,t,r){return t&&Tn(e.prototype,t),r&&Tn(e,r),e}function Es(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var pt=function(){function t(r){gs(this,t),this.customEvents=[],this.parent=null;var n=Es(this,t)?this.constructor:void 0,u=n.controlType,o=n.controlFieldType,i=n.name,s=n.controlCustomEvents;u||an("The ".concat(i," controlType is not define"));var c;this.id=(c=r==null?void 0:r.id)!==null&&c!==void 0?c:He(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:Ye.UNKNOWN}return ms(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}();pt.controlType="control",pt.__is_control__=!0,pt.controlCustomEvents=[];function bs(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dt(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 ht(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 _s(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Bs(e,t){return t&&(Ss(t)==="object"||typeof t=="function")?t:bs(e)}function yt(e,t){return yt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},yt(e,t)}var Ss=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function As(){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 vt(e){var t=As();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 Bs(this,u)}}var ws=function(e){ht(r,e);var t=vt(r);function r(n){dt(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(_s(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}(nt),Cs=function(e){ht(r,e);var t=vt(r);function r(n){dt(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}(vn),gt=function(e){ht(r,e);var t=vt(r);function r(n){dt(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 _;u.requiredMessage=(_=n==null?void 0:n.requiredMessage)!==null&&_!==void 0?_:"",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);gt.Rules=ws,gt.RuntimeRules=Cs;function Is(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Os(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 Fs(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&&mt(e,t)}function Ds(e,t){return t&&(Rs(t)==="object"||typeof t=="function")?t:Is(e)}function mt(e,t){return mt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},mt(e,t)}var Rs=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Ps(){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=Ps();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 Ds(this,u)}}var le=function(e){Fs(r,e);var t=$s(r);function r(n){Os(this,r);var u;return u=t.call(this,n),u.controlType="form",u.props=new gt(n==null?void 0:n.props),u}return r}(R);le.controlEventKeys=["on_change","on_focus","on_blur"];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 we(e){return we=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},we(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&&Et(e,t)}function js(e,t){return t&&(Ls(t)==="object"||typeof t=="function")?t:Ts(e)}function Et(e,t){return Et=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Et(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=we(e),u;if(t){var o=we(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return js(this,u)}}var Mn=function(e){xs(r,e);var t=qs(r);function r(n){return Ms(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 Us(e){if(Array.isArray(e))return bt(e)}function Vs(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ks(){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 xn(e){return Us(e)||Vs(e)||Hs(e)||ks()}function Hs(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 Ws(e,t){var r;!((r=Object.getOwnPropertyDescriptors(e)[t])===null||r===void 0)&&r.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function jn(e,t){e.parent=t,Ws(e,"parent")}function zs(e,t){e.forEach(function(r){jn(r,t)})}var Ln=Symbol("targetKey");function Nn(e){var t;return(t=e[Ln])!==null&&t!==void 0?t:e}function qn(e,t){return zs(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===Ln?n:(c=Reflect).get.apply(c,[n,u].concat(xn(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(xn(s)));return Xe(o)&&jn(o,t),f}})}function Un(e,t,r,n){var u=n!=null?n:e,o=qn(Nn(r!=null?r:[]),u);Object.defineProperty(e,t,{get:function(){return o},set:function(s){o=qn(Nn(s),u)},enumerable:!0})}function _t(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 Gs(e){if(Array.isArray(e))return _t(e)}function Vn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function kn(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 Ks(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){kn(o,n,u,i,s,"next",c)}function s(c){kn(o,n,u,i,s,"throw",c)}i(void 0)})}}function Xs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Js(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=oc(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 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&&Bt(e,t)}function Zs(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Ys(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ec(){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 tc(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){Js(e,u,r[u])})}return e}function nc(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 rc(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):nc(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function uc(e,t){return t&&(ic(t)==="object"||typeof t=="function")?t:Vn(e)}function Bt(e,t){return Bt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Bt(e,t)}function oc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=V(e),e!==null););return e}function Hn(e){return Gs(e)||Ys(e)||ac(e)||ec()}var ic=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function ac(e,t){if(!!e){if(typeof e=="string")return _t(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 _t(e,t)}}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 cc(e){var t=sc();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 uc(this,u)}}var lc=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}}},fc=1e4,St=function(t){Qs(n,t);var r=cc(n);function n(o){Xs(this,n);var i;i=r.call(this,o),i.controlType="layout";var s=Zs(this,n)?this.constructor:void 0,c=s.excludes,a=s.childrenMaxLength;return i.props=new Mn(o==null?void 0:o.props),Un(Vn(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 Ks(function(){return lc(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(_){return!!_});return Hn(a).concat(Hn(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 rc(tc({},i),{children:s})},n}(R);St.excludes=!1,St.childrenMaxLength=fc;function Wn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function pc(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 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&&At(e,t)}function hc(e,t){return t&&(yc(t)==="object"||typeof t=="function")?t:Wn(e)}function At(e,t){return At=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},At(e,t)}var yc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function vc(){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 gc(e){var t=vc();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 hc(this,u)}}var mc=function(e){dc(r,e);var t=gc(r);function r(n,u){pc(this,r);var o;return o=t.call(this,u),Un(Wn(o),"headers",u==null?void 0:u.headers,n),o}return r}(q);function wt(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 wt(e)}function zn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Gn(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 bc(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){Gn(o,n,u,i,s,"next",c)}function s(c){Gn(o,n,u,i,s,"throw",c)}i(void 0)})}}function _c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Bc(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=Oc(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 k(e){return k=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},k(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&&Ct(e,t)}function Ac(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function wc(){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 Kn(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){Bc(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 Xn(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 Ic(e,t){return t&&(Fc(t)==="object"||typeof t=="function")?t:zn(e)}function Ct(e,t){return Ct=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ct(e,t)}function Oc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=k(e),e!==null););return e}function Jn(e){return Ec(e)||Ac(e)||Dc(e)||wc()}var Fc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Dc(e,t){if(!!e){if(typeof e=="string")return wt(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 wt(e,t)}}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 Pc(e){var t=Rc();return function(){var n=k(e),u;if(t){var o=k(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Ic(this,u)}}var $c=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){Sc(r,e);var t=Pc(r);function r(u){_c(this,r);var o;return o=t.call(this,u),o.controlType="list",o.props=new mc(zn(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(k(r.prototype),"validate",s)};return bc(function(){return $c(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(k(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 Jn(c).concat(Jn(p))}return f&&c.push(f),c},i)},n.toSchema=function(){var o=X(k(r.prototype),"toSchema",this).call(this),i=this.props.headers.map(function(s){return s.toSchema()});return Xn(Kn({},o),{props:Xn(Kn({},this.props),{headers:i})})},r}(R);fe.controlFieldType=A.LIST;function Tc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Qn(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 Zn(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&&It(e,t)}function Mc(e,t){return t&&(xc(t)==="object"||typeof t=="function")?t:Tc(e)}function It(e,t){return It=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},It(e,t)}var xc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function jc(){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 Yn(e){var t=jc();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 Mc(this,u)}}var Lc=function(e){Zn(r,e);var t=Yn(r);function r(n){Qn(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}(nt),er=function(e){Zn(r,e);var t=Yn(r);function r(n){Qn(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.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);er.Rules=Lc;function Nc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function qc(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 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&&Ot(e,t)}function Vc(e,t){return t&&(kc(t)==="object"||typeof t=="function")?t:Nc(e)}function Ot(e,t){return Ot=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ot(e,t)}var kc=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 Wc(e){var t=Hc();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 Vc(this,u)}}var zc=function(e){Uc(r,e);var t=Wc(r);function r(n){qc(this,r);var u;return u=t.call(this,n),u.controlType="column",u.props=new er(n==null?void 0:n.props),u}return r}(R);function Gc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Kc(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 Xc(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 Jc(e,t){return t&&(Qc(t)==="object"||typeof t=="function")?t:Gc(e)}function Ft(e,t){return Ft=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ft(e,t)}var Qc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Zc(){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 Yc(e){var t=Zc();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 Jc(this,u)}}var el=function(e){Xc(r,e);var t=Yc(r);function r(n){return Kc(this,r),t.call(this,n)}return r}(Mn);function tl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function nl(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 rl(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 ul(e,t){return t&&(ol(t)==="object"||typeof t=="function")?t:tl(e)}function Dt(e,t){return Dt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Dt(e,t)}var ol=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function il(){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 al(e){var t=il();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 ul(this,u)}}var sl=function(e){rl(r,e);var t=al(r);function r(n){nl(this,r);var u;return u=t.call(this,n),u.controlType="wrap",u.props=new el(n==null?void 0:n.props),u}return r}(St);function Rt(e){return"children"in e&&ue(e.children)}function tr(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):Rt(r)?Re(r==null?void 0:r.children,t):r instanceof le&&t(r)})}const nr=[d.AMOUNT,d.CALC,d.DATE_RANGE],rr={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 cl(e){let t=[];return Re(e,r=>{r instanceof le?t.push(r):(r.type,d.SUBTABLE)}),t}function ll(e,t=""){return!e||!Array.isArray(e)?[]:e.map(r=>{if(!r.dataBind||r.type===d.TITLE)return r;if(nr.includes(r.type)){const n=r.dataBind;Object.keys(n).forEach(u=>{const o=n[u],i=r.controlId+"_"+u;o.fieldCode=ur(i),o.dataCode=t})}else r.dataBind.fieldCode=ur(r.controlId),r.dataBind.dataCode=t;return r})}function ur(e){const t="field_";return e.startsWith(t)?e:t+e}function Pe(e){return Hi[e]}function fl(e){const t=new H,r=[];return e.forEach(n=>{if(!(n.parentId||!n.dataBind))if(nr.includes(n.type)){const u=n.dataBind,o=n.datasourceBind;Object.keys(u).forEach(i=>{const s=u[i],c=rr[i].fieldType,a=n.caption+"_"+rr[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 pl(e){const t=new H,n=(Array.isArray(e)?e:[e]).map(u=>{const o=Pe(u);return t.createControlInstance(o)});return Array.isArray(e)?n:n[0]}function Pt(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function $t(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Tt(e,t,r){return Jt(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 dl=[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],hl=[d.CALC],yl={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:_,content:B}=e.props;let h;if(dl.includes(v))v===d.OPERATION_COLUMN&&Object.entries(yl).reduce((g,[l,{caption:y,id:w}])=>{var C;const b=e.props[l];return b&&b.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||e.name,type:e.type,controlType:e.controlType,parentId:(n=t==null?void 0:t.controlId)!=null?n:null,canEdit:!hl.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 zc)&&((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 H 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 Jt(this,null,function*(){return Tt(...t)})}getModelBindInfoList(...t){return $t(...t)}getSchema(...t){return Pt(...t)}listenControlHook(...t){return Sn.on(...t)}}H.EventLogic=oe;class vl{constructor(){this.designer=new H}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),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 gl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function or(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 ml(e,t,r){return t&&or(e.prototype,t),r&&or(e,r),e}var N=function(){function e(t){gl(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 ml(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function El(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var bl=function(){function e(r){El(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);Xe(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 _l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Mt=function e(t){_l(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 Bl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Sl(e){return"type"in e&&e.type==="tab"}var xt=function e(t){Bl(this,e),this.type="tab",this.title=t.title,this.items=t.items};function ir(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 Al(e){if(Array.isArray(e))return e}function wl(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 $e(e){return $e=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},$e(e)}function Il(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&&jt(e,t)}function Ol(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 Fl(){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 Dl(e,t){return t&&(Pl(t)==="object"||typeof t=="function")?t:wl(e)}function jt(e,t){return jt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},jt(e,t)}function Rl(e,t){return Al(e)||Ol(e,t)||$l(e,t)||Fl()}var Pl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function $l(e,t){if(!!e){if(typeof e=="string")return ir(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 ir(e,t)}}function Tl(){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 Ml(e){var t=Tl();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 Dl(this,u)}}var xl=function(e){Il(r,e);var t=Ml(r);function r(n){Cl(this,r);var u;return u=t.call(this,n),Xe(n)&&Object.entries(n).forEach(function(o){var i=Rl(o,2),s=i[0],c=i[1];u[s]=c}),u}return r}(N);function jl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ll(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 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&&Lt(e,t)}function ql(e,t){return t&&(Ul(t)==="object"||typeof t=="function")?t:jl(e)}function Lt(e,t){return Lt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Lt(e,t)}var Ul=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Vl(){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 kl(e){var t=Vl();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 ql(this,u)}}var Hl=function(e){Nl(r,e);var t=kl(r);function r(n){Ll(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 Wl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function zl(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 Gl(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 Kl(e,t){return t&&(Xl(t)==="object"||typeof t=="function")?t:Wl(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Nt(e,t)}var Xl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Jl(){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 Ql(e){var t=Jl();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 Kl(this,u)}}var Zl=function(e){Gl(r,e);var t=Ql(r);function r(n){zl(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 Yl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ef(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 tf(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 nf(e,t){return t&&(rf(t)==="object"||typeof t=="function")?t:Yl(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},qt(e,t)}var rf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function uf(){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=uf();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 nf(this,u)}}var af=function(e){tf(r,e);var t=of(r);function r(n){ef(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 sf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function cf(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 lf(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 ff(e,t){return t&&(pf(t)==="object"||typeof t=="function")?t:sf(e)}function Ut(e,t){return Ut=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ut(e,t)}var pf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function df(){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 hf(e){var t=df();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 ff(this,u)}}var yf=function(e){lf(r,e);var t=hf(r);function r(n){cf(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 vf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function gf(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 mf(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 Ef(e,t){return t&&(bf(t)==="object"||typeof t=="function")?t:vf(e)}function Vt(e,t){return Vt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Vt(e,t)}var bf=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=Le(e),u;if(t){var o=Le(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Ef(this,u)}}var Sf=function(e){mf(r,e);var t=Bf(r);function r(n){gf(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 Af(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function wf(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 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&&kt(e,t)}function If(e,t){return t&&(Of(t)==="object"||typeof t=="function")?t:Af(e)}function kt(e,t){return kt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},kt(e,t)}var Of=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 Df(e){var t=Ff();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 If(this,u)}}var Rf=function(e){Cf(r,e);var t=Df(r);function r(n){wf(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 Pf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function $f(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 Tf(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&&(xf(t)==="object"||typeof t=="function")?t:Pf(e)}function Ht(e,t){return Ht=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ht(e,t)}var xf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function jf(){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 Lf(e){var t=jf();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 Mf(this,u)}}var Nf=function(e){Tf(r,e);var t=Lf(r);function r(n){$f(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 qf(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Wt(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){qf(e,u,r[u])})}return e}function Uf(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 zt(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Uf(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function Vf(e,t){switch(e){case"input":return new Hl(t);case"textarea":return new Nf(t);case"input-number":return new Zl(t);case"switch":return new af(t);case"radio":return new Rf(t);case"checkbox":return new yf(t);case"select":return new Sf(t);default:return new xl(t)}}function kf(e){return function(t){var r=e.get(t);if(!!r)return new bl(zt(Wt({},r),{props:Vf(r.component,"props"in r?r.props:void 0)}))}}function Hf(e){var t=function(o){return new Mt(zt(Wt({},o),{items:o.items.map(kf(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 Sl(u)?new xt(zt(Wt({},u),{items:r(u.items)})):t(u)})}class ar{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?lr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(r=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(r))})}getSettingItems(t){return t instanceof Mt?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}cr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],r=new Map,n=new Map;de(this.instance,u=>{t.push(u),r.set(u.id,u),cr(u,n)}),this.flatInstances=t,this.instanceIdMap=r,this.dataFieldCodeMap=n}}function sr(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 cr(e,t){if(e instanceof le){const r=e.props.dataBind;r instanceof Ee?sr(t,r,e):Object.values(r).forEach(n=>{sr(t,n,e)})}}function de(e,t){(Array.isArray(e)?e:[e]).forEach(n=>{t(n),Rt(n)&&de(n.children,t),tr(n)&&de(n.props.headers,t)})}function Gt(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&&!Gt(t);)t=t.parent;return t}function lr(e){const t=[e];return de(e,r=>{r!==e&&t.includes(r.parent)&&!Gt(r)&&t.push(r)}),t}let Kt="";class fr extends fn{constructor(t){super(),this.isMounted=!1,this.id=He(8),this.__pluginsApplied=!1,this.getSchema=Pt,this.getModelBindInfoList=$t,this.generatePermissions=pe,this.$options=Object.freeze(t);const{autoMount:r=!1,Designer:n=H,schema:u,mode:o="form",store:i={}}=this.$options;this.eventLogic=new oe,this.designer=new n,this.store=new ar(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{Kt=(r=t.pluginName)!=null?r:t.constructor.name,t.apply(this),Kt=""}catch(n){re(`${Kt||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 instanceof sl){const u=this.getControlSetting(t.parent.type);r=this.concatSetting(r,u,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 o,i,s,c;let u=t;if(((o=t[0])==null?void 0:o.type)==="tab"&&((i=r[0])==null?void 0:i.type)==="tab"){const a=t,f=r.slice(0);u=a.map((p,v)=>{const
|
|
1
|
+
var zf=Object.defineProperty;var hr=Object.getOwnPropertySymbols;var Gf=Object.prototype.hasOwnProperty,Kf=Object.prototype.propertyIsEnumerable;var yr=(E,O,F)=>O in E?zf(E,O,{enumerable:!0,configurable:!0,writable:!0,value:F}):E[O]=F,Z=(E,O)=>{for(var F in O||(O={}))Gf.call(O,F)&&yr(E,F,O[F]);if(hr)for(var F of hr(O))Kf.call(O,F)&&yr(E,F,O[F]);return E};var Jt=(E,O,F)=>new Promise((Ue,ye)=>{var Ve=L=>{try{Y(F.next(L))}catch(ee){ye(ee)}},He=L=>{try{Y(F.throw(L))}catch(ee){ye(ee)}},Y=L=>L.done?Ue(L.value):Promise.resolve(L.value).then(Ve,He);Y((F=F.apply(E,O)).next())});(function(E,O){typeof exports=="object"&&typeof module!="undefined"?O(exports):typeof define=="function"&&define.amd?define(["exports"],O):(E=typeof globalThis!="undefined"?globalThis:E||self,O(E.modelDrivenDriven={}))})(this,function(E){"use strict";var O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",F="\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",vr="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",gr="\u8BF7\u7ED1\u5B9A\u8868\u5355",mr="\u8BF7\u7ED1\u5B9A\u5217\u8868",Er="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",_r="\u8BF7\u8F93\u5165\u663E\u793A\u503C",br="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Br="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Sr="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Ar="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",wr="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Cr="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Ir="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Or="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Fr="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Dr="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Rr="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Pr="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",$r="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Tr="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Mr="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",xr="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",jr="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Lr="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Nr="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",qr="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Ur="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Vr="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Hr="\u8BF7\u9009\u62E9\u7701",kr="\u8BF7\u9009\u62E9\u5E02",Wr="\u8BF7\u9009\u62E9\u533A",zr="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Gr="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Kr="\u8BF7\u8F93\u5165\u5217\u5BBD",Xr="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Jr="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Qr="\u8BF7\u9009\u62E9\u63A7\u4EF6",Zr="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Yr="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",eu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",tu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",nu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ru="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",uu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ou="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",iu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",au="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",su="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",cu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",lu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",fu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",pu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",du="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",hu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",yu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",vu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",gu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",mu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Eu={isNotNumber:O,isNotString:F,isNotObject:Ue,isNotArray:ye,isNotBoolean:Ve,runtimeRequired:He,pleaseEnterCaption:Y,pleaseEnterCaptionTip:L,pleaseEnterPlaceholder:ee,pleaseEnterFieldCode:vr,pleaseEnterForm:gr,pleaseEnterList:mr,pleaseEnterProcess:Er,pleaseEnterLabel:_r,pleaseEnterValue:br,bizKeyNotBindFiled:Br,pleaseEnterNumberRange:Sr,pleaseEnterAValueGreaterThanMin:Ar,pleaseEnterAValueLessThanMax:wr,numberRangeSetError:Cr,stringRangeError:Ir,attachmentMaxSize:Or,pleaseEnterTotalScoreSetting:Fr,theTotalScoreMustNotBeLessThan1:Dr,scoreDefaultValueRange:Rr,attachmentLimitError:Pr,PleaseReselectTheOptionalQuantity:$r,TheMaximumLengthIsGreaterThanTheMinimumLength:Tr,TheMinimumLengthIsGreaterThanTheMaximumLength:Mr,PleaseSelectTheCorrectOptionSettings:xr,optionIdIsRepeat:jr,optionIsRequired:Lr,pleaseEnterDataCode:Nr,pleaseEnterValueFieldCode:qr,pleaseEnterSvcCode:Ur,pleaseBindAtLeastOneDisplayValue:Vr,pleaseSelectProvince:Hr,pleaseSelectCity:kr,pleaseSelectDistrict:Wr,limitRowsCannotBeLessThan0:zr,TheNumberOfRowsCannotBeLessThanMinRows:Gr,pleaseEnterColumnWidth:Kr,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Xr,pleaseCompleteAllRulesAndConditions:Jr,pleaseSelectControl:Qr,pleaseSelectAtLeastOneColumn:Zr,pleaseSelectFillBackMode:Yr,pleaseSelectDashboard:eu,rootNodeIsRequired:tu,theViewNameCannotBeEmpty:nu,pleaseSelectOcrType:ru,pleaseSelectAtLeastOneFieldToFillIn:uu,pleaseChooseAtLeastOne:ou,pleaseEnterButtonContent:iu,pleaseEnterDataCodeInDataSetting:au,pleaseEnterValueFieldCodeInDataSetting:su,pleaseEnterSvcCodeInDataSetting:cu,pleaseBindAtLeastOneDisplayValueInDataSetting:lu,rootNodeIsRequiredInDataSetting:fu,pleaseEnterMaxHeight:pu,pleaseEnter:du,pleaseEnterWatermark:hu,pleaseEnterFileName:yu,pleaseUploadAtLeastOnePrintTemplate:vu,pleaseAssignBusiness:gu,pleaseAssignExternal:mu},_u="Please enter a number",bu="Please enter a string",Bu="Please enter an object",Su="Please enter an array",Au="Please enter a boolean",wu="{caption} Required",Cu="Please enter the title",Iu="Please enter the bubble prompt",Ou="Please enter the prompt text",Fu="Please bind data items",Du="Please bind the form",Ru="Please bind the list",Pu="Please bind the process",$u="Please enter the displayed value",Tu="Please enter the stored value",Mu="The document number is not bound to the data item",xu="Please enter a value greater than or equal to {min} and less than or equal to {max}",ju="Please enter a value greater than or equal to {min}",Lu="Please enter a value less than or equal to {max}",Nu="The value range is set incorrectly",qu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Uu="The attachment size must be between 0MB and 1000MB",Vu="Please fill in the total score setting",Hu="The total score cannot be less than 1",ku="The default value must be between {min} and {max}",Wu="The number of attachments uploaded must be between {min} and {max}",zu="Please re-select the optional quantity",Gu="The maximum length of the control must be greater than the minimum length",Ku="The minimum length of the control must be less than the maximum length",Xu="Please select the correct option setting",Ju="Option ID cannot be repeated",Qu="Please enter at least one option",Zu="Please bind the data source",Yu="Please bind the stored value",eo="Please bind the service",to="At least one display value must be bound",no="Please select a province",ro="Please select a city",uo="Please select a district",oo="The minimum number of lines to fill in cannot be less than 0",io="The number of rows cannot be less than {min} rows",ao="Please enter the column width",so="Please set the logical relationship of all rule conditions",co="Please complete all rules and conditions",lo="please select control",fo="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",po="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ho="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",yo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",vo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",go="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",mo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Eo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",_o="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",bo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Bo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",So="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ao="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",wo="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Co="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Io="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Oo="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Fo="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Do={isNotNumber:_u,isNotString:bu,isNotObject:Bu,isNotArray:Su,isNotBoolean:Au,runtimeRequired:wu,pleaseEnterCaption:Cu,pleaseEnterCaptionTip:Iu,pleaseEnterPlaceholder:Ou,pleaseEnterFieldCode:Fu,pleaseEnterForm:Du,pleaseEnterList:Ru,pleaseEnterProcess:Pu,pleaseEnterLabel:$u,pleaseEnterValue:Tu,bizKeyNotBindFiled:Mu,pleaseEnterNumberRange:xu,pleaseEnterAValueGreaterThanMin:ju,pleaseEnterAValueLessThanMax:Lu,numberRangeSetError:Nu,stringRangeError:qu,attachmentMaxSize:Uu,pleaseEnterTotalScoreSetting:Vu,theTotalScoreMustNotBeLessThan1:Hu,scoreDefaultValueRange:ku,attachmentLimitError:Wu,PleaseReselectTheOptionalQuantity:zu,TheMaximumLengthIsGreaterThanTheMinimumLength:Gu,TheMinimumLengthIsGreaterThanTheMaximumLength:Ku,PleaseSelectTheCorrectOptionSettings:Xu,optionIdIsRepeat:Ju,optionIsRequired:Qu,pleaseEnterDataCode:Zu,pleaseEnterValueFieldCode:Yu,pleaseEnterSvcCode:eo,pleaseBindAtLeastOneDisplayValue:to,pleaseSelectProvince:no,pleaseSelectCity:ro,pleaseSelectDistrict:uo,limitRowsCannotBeLessThan0:oo,TheNumberOfRowsCannotBeLessThanMinRows:io,pleaseEnterColumnWidth:ao,pleaseSetTheLogicalRelationshipOfAllRuleConditions:so,pleaseCompleteAllRulesAndConditions:co,pleaseSelectControl:lo,pleaseSelectDashboard:fo,theViewNameCannotBeEmpty:po,pleaseSelectOcrType:ho,pleaseSelectAtLeastOneFieldToFillIn:yo,pleaseChooseAtLeastOne:vo,pleaseEnterButtonContent:go,pleaseEnterDataCodeInDataSetting:mo,pleaseEnterValueFieldCodeInDataSetting:Eo,pleaseEnterSvcCodeInDataSetting:_o,pleaseBindAtLeastOneDisplayValueInDataSetting:bo,rootNodeIsRequiredInDataSetting:Bo,pleaseEnterMaxHeight:So,pleaseEnter:Ao,pleaseEnterWatermark:wo,pleaseEnterFileName:Co,pleaseUploadAtLeastOnePrintTemplate:Io,pleaseAssignBusiness:Oo,pleaseAssignExternal:Fo},Ro="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Po="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$o="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",To="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mo="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xo="{caption}\u5FC5\u9808",jo="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Lo="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",No="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",qo="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Uo="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Vo="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ho="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ko="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Wo="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",zo="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Go="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ko="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Xo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Jo="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Qo="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Zo="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Yo="\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",ti="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ni="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ri="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ui="\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",oi="\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",ii="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ai="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",si="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ci="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",li="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",fi="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",pi="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",di="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",hi="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",yi="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",vi="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",gi="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",mi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ei="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",_i="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",bi="please select control",Bi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Si="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ai="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",wi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ci="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ii="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Oi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Fi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Di="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ri="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Pi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",$i="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ti="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Mi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",xi="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ji="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Li="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ni="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",qi={isNotNumber:Ro,isNotString:Po,isNotObject:$o,isNotArray:To,isNotBoolean:Mo,runtimeRequired:xo,pleaseEnterCaption:jo,pleaseEnterCaptionTip:Lo,pleaseEnterPlaceholder:No,pleaseEnterFieldCode:qo,pleaseEnterForm:Uo,pleaseEnterList:Vo,pleaseEnterProcess:Ho,pleaseEnterLabel:ko,pleaseEnterValue:Wo,bizKeyNotBindFiled:zo,pleaseEnterNumberRange:Go,pleaseEnterAValueGreaterThanMin:Ko,pleaseEnterAValueLessThanMax:Xo,numberRangeSetError:Jo,stringRangeError:Qo,attachmentMaxSize:Zo,pleaseEnterTotalScoreSetting:Yo,theTotalScoreMustNotBeLessThan1:ei,scoreDefaultValueRange:ti,attachmentLimitError:ni,PleaseReselectTheOptionalQuantity:ri,TheMaximumLengthIsGreaterThanTheMinimumLength:ui,TheMinimumLengthIsGreaterThanTheMaximumLength:oi,PleaseSelectTheCorrectOptionSettings:ii,optionIdIsRepeat:ai,optionIsRequired:si,pleaseEnterDataCode:ci,pleaseEnterValueFieldCode:li,pleaseEnterSvcCode:fi,pleaseBindAtLeastOneDisplayValue:pi,pleaseSelectProvince:di,pleaseSelectCity:hi,pleaseSelectDistrict:yi,limitRowsCannotBeLessThan0:vi,TheNumberOfRowsCannotBeLessThanMinRows:gi,pleaseEnterColumnWidth:mi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ei,pleaseCompleteAllRulesAndConditions:_i,pleaseSelectControl:bi,pleaseSelectDashboard:Bi,theViewNameCannotBeEmpty:Si,pleaseSelectOcrType:Ai,pleaseSelectAtLeastOneFieldToFillIn:wi,pleaseChooseAtLeastOne:Ci,pleaseEnterButtonContent:Ii,pleaseEnterDataCodeInDataSetting:Oi,pleaseEnterValueFieldCodeInDataSetting:Fi,pleaseEnterSvcCodeInDataSetting:Di,pleaseBindAtLeastOneDisplayValueInDataSetting:Ri,rootNodeIsRequiredInDataSetting:Pi,pleaseEnterMaxHeight:$i,pleaseEnter:Ti,pleaseEnterWatermark:Mi,pleaseEnterFileName:xi,pleaseUploadAtLeastOnePrintTemplate:ji,pleaseAssignBusiness:Li,pleaseAssignExternal:Ni},Ui={zhCN:Eu,enUS:Do,jaJP:qi},Qt;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(Qt||(Qt={}));var Zt;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(Zt||(Zt={}));var Vi="zh-CN",Hi=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,ki=(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),Yt;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(Yt||(Yt={}));var en="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Wi=en+"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?en:Wi,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 zi(e){if(Array.isArray(e))return We(e)}function Gi(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function tn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ki(){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 Ki()?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 nn(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 Xi(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Ji(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Qi(){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 Zi(e,t){return t&&(Yi(t)==="object"||typeof t=="function")?t:Gi(e)}function ne(e,t){return ne=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ne(e,t)}function rn(e){return zi(e)||Ji(e)||ea(e)||Qi()}var Yi=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function ea(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||!Xi(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 ta(){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 un(e){var t=ta();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 Zi(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(rn(u)))}function on(){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(rn(u)))}function na(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Ke=function(e){nn(r,e);var t=un(r);function r(n){tn(this,r);var u;return u=t.call(this,n),u.name="\u{1F4A5} Driven Error",u.message=n?na(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)),ra=function(e){nn(r,e);var t=un(r);function r(n){tn(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 an(e){throw new ra(e)}function ua(e){Ge.error(new Ke(e))}var oa=Object.prototype.toString;function sn(e,t){return oa.call(e)==="[object "+t+"]"}function ia(e){return sn(e,"String")}function aa(e){return sn(e,"Promise")}var sa=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();aa(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&&!ia(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 ca(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var T=function(){function e(){ca(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]:Vi;return new sa({locale:r,messages:Ui})},e.setLocale=function(r){return this.$i18n.setLocale(r)},e}();T.$i18n=T.resetI18n();function cn(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 la=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},fa={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})(la)})(fa);function W(e){if(e!==void 0)return typeof e=="object"?JSON.parse(JSON.stringify(e)):e}function Xe(e){return Object.prototype.toString.call(e)==="[object Object]"}function pa(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function ue(e){return Array.isArray(e)}function Je(e){return typeof e=="string"}function da(e){return Object.values(d).includes(e)}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 ha(e){if(Array.isArray(e))return Qe(e)}function ln(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 ya(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){ln(o,n,u,i,s,"next",c)}function s(c){ln(o,n,u,i,s,"throw",c)}i(void 0)})}}function va(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ga(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ma(){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 Ze(e){return ha(e)||ga(e)||Ea(e)||ma()}function Ea(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 _a=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}}},fn=function(){function e(){va(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 ya(function(){var c,a,f,p,v,b,B,h,g,l,y,w;return _a(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&&on.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(Ze(o))),[4,g.apply(null,Ze(o))];case 4:return l=_.sent(),s.debug&&on.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(Ze(o),[l])),a.push(l),l===!1?[3,7]:[3,6];case 5:return y=_.sent(),ua(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 ba(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ba=[{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(){ba(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=Ba;function Sa(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var pn=[],me=function(){function e(r){Sa(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=pn,me.staticRegisteredTypes=new Set(pn.map(function(e){return e.Designer.controlType})),me.staticRegisteredConfigs=new Map;function dn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ee=function e(t){dn(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:""},hn;(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"})(hn||(hn={}));var yn;(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"})(yn||(yn={}));var Ye;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(Ye||(Ye={}));var Aa=function e(t){dn(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 wa(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function et(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ca(){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 Ca()?_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 Ia(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 Oa(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Fa(e,t){return t&&(Da(t)==="object"||typeof t=="function")?t:wa(e)}function ae(e,t){return ae=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ae(e,t)}var Da=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function tt(e){var t=typeof Map=="function"?new Map:void 0;return tt=function(n){if(n===null||!Oa(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)},tt(e)}function Ra(){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 Pa(e){var t=Ra();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 Fa(this,u)}}var nt=function e(t){et(this,e),this.isHide={type:"boolean"}},vn=function(e){Ia(r,e);var t=Pa(r);function r(n){return et(this,r),t.call(this)}return r}(tt(Array)),q=function e(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";et(this,e);var n;this.isHide=(n=t==null?void 0:t.isHide)!==null&&n!==void 0?n:!1,this.style=new Aa(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=nt,q.RuntimeRules=vn;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 $a(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function rt(e){return rt=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},rt(e)}function be(e,t){return be=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},be(e,t)}function Ta(){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 Ta()?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 Ma(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function ut(e){var t=typeof Map=="function"?new Map:void 0;return ut=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 Be(n,arguments,rt(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),be(u,n)},ut(e)}var xa=/%[sdj%]/g,gn=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(gn=function(t,r){typeof console!="undefined"&&console.warn&&r.every(function(n){return typeof n=="string"})&&console.warn(t,r)});function ot(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(xa,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 ja(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||ja(t)&&typeof e=="string"&&!e)}function La(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 mn(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 Na(e){var t=[];return Object.keys(e).forEach(function(r){t.push.apply(t,e[r])}),t}var En=function(e){$a(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}(ut(Error));function qa(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 En(g,ot(g))):p()},B=Na(e);mn(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 En(a,ot(a))):p()};i.length||(n(a),p()),i.forEach(function(B){var h=e[B];o.indexOf(B)!==-1?mn(h,r,b):La(h,r,b)})});return f.catch(function(p){return p}),f}function _n(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 bn(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 Bn(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 Ua(e,t,r,n,u){(/^\s+$/.test(t)||t==="")&&n.push($(u.messages.whitespace,e.fullField))}var it={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(it.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(it.url)},hex:function(t){return typeof t=="string"&&!!t.match(it.hex)}};function Va(e,t,r,n,u){if(e.required&&t===void 0){Bn(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 Ha(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 ka(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 Wa(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:Bn,whitespace:Ua,type:Va,range:Ha,enum:ka,pattern:Wa};function za(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 Ga(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 Ka(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 Xa(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 Ja(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 Qa(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 Za(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 Ya(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 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)}var ts="enum";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[ts](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,"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 us(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 os(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 at(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 is(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:za,method:Ga,number:Ka,boolean:Xa,regexp:Ja,integer:Qa,float:Za,array:Ya,object:es,enum:ns,pattern:rs,date:us,url:at,hex:at,email:at,required:os,any:is};function st(){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 ct=st();function U(e){this.rules=null,this._messages=ct,this.define(e)}U.prototype={messages:function(t){return t&&(this._messages=bn(st(),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=ot(l):(l=null,y=null),s(l,y)}if(i.messages){var a=this.messages();a===ct&&(a=st()),bn(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 qa(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(_n(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(_n(l)):i.error&&(S=[i.error(l,$(i.messages.required,l.field))]),g(S);var j={};if(l.defaultField)for(var pr in h.value)h.value.hasOwnProperty(pr)&&(j[pr]=l.defaultField);j=M(M({},j),h.rule.fields);for(var J in j)if(j.hasOwnProperty(J)){var Wf=Array.isArray(j[J])?j[J]:[j[J]];j[J]=Wf.map(w.bind(null,J))}var dr=new U(j);dr.messages(i.messages),h.rule.options&&(h.rule.options.messages=i.messages,h.rule.options.error=i.error),dr.validate(h.value,h.rule.options||i,function(Xt){var Q=[];S&&S.length&&Q.push.apply(Q,S),Xt&&Xt.length&&Q.push.apply(Q,Xt),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=gn,U.messages=ct,U.validators=ce;var as={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 ss(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=new U(e);return r.messages(Object.assign(as,t)),r}var Sn=new fn;function lt(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 cs(e){if(Array.isArray(e))return e}function ls(e){if(Array.isArray(e))return lt(e)}function An(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 wn(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){An(o,n,u,i,s,"next",c)}function s(c){An(o,n,u,i,s,"throw",c)}i(void 0)})}}function fs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Cn(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&&Cn(e.prototype,t),r&&Cn(e,r),e}function ds(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function In(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function On(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function hs(){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 ys(){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 Fn(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){ds(e,u,r[u])})}return e}function vs(e){return cs(e)||On(e)||Dn(e)||hs()}function ft(e){return ls(e)||On(e)||Dn(e)||ys()}function Dn(e,t){if(!!e){if(typeof e=="string")return lt(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 lt(e,t)}}var Rn=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;fs(this,t),this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=$n,this.removeSetting=Pn,this._callControlHooks("preInstance",n);var o=In(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||an("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,(In(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=vs(o),a=c[0],f=c.slice(1);return(s=Sn).emit.apply(s,[a,this].concat(ft(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),cn(this.props,u,o),this.postUpdate(u,o)},r.preValidate=function(){var u=this;return wn(function(){var o,i,s;return Rn(this,function(c){switch(c.label){case 0:return o=Fn({},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 wn(function(){var s,c,a,f;return Rn(this,function(p){switch(p.label){case 0:return[4,i.preValidate()];case 1:s=p.sent(),c=s!==void 0?s:Fn({},i.rules),Array.isArray(o)&&o.forEach(function(v){c.hasOwnProperty(v)&&delete c[v]}),a=ss(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,ft(o.add))}o.remove&&this.removeSettingItem(o.remove),o.update}},ps(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=Pn,R.updateSettingItem=$n;function Pn(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 $n(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,ft(t.showItems))}}}})}function gs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Tn(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 ms(e,t,r){return t&&Tn(e.prototype,t),r&&Tn(e,r),e}function Es(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var pt=function(){function t(r){gs(this,t),this.customEvents=[],this.parent=null;var n=Es(this,t)?this.constructor:void 0,u=n.controlType,o=n.controlFieldType,i=n.name,s=n.controlCustomEvents;u||an("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:Ye.UNKNOWN}return ms(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}();pt.controlType="control",pt.__is_control__=!0,pt.controlCustomEvents=[];function _s(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dt(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 ht(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 bs(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Bs(e,t){return t&&(Ss(t)==="object"||typeof t=="function")?t:_s(e)}function yt(e,t){return yt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},yt(e,t)}var Ss=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function As(){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 vt(e){var t=As();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 Bs(this,u)}}var ws=function(e){ht(r,e);var t=vt(r);function r(n){dt(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(bs(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}(nt),Cs=function(e){ht(r,e);var t=vt(r);function r(n){dt(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}(vn),gt=function(e){ht(r,e);var t=vt(r);function r(n){dt(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);gt.Rules=ws,gt.RuntimeRules=Cs;function Is(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Os(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 Fs(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&&mt(e,t)}function Ds(e,t){return t&&(Rs(t)==="object"||typeof t=="function")?t:Is(e)}function mt(e,t){return mt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},mt(e,t)}var Rs=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Ps(){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=Ps();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 Ds(this,u)}}var le=function(e){Fs(r,e);var t=$s(r);function r(n){Os(this,r);var u;return u=t.call(this,n),u.controlType="form",u.props=new gt(n==null?void 0:n.props),u}return r}(R);le.controlEventKeys=["on_change","on_focus","on_blur"];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 we(e){return we=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},we(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&&Et(e,t)}function js(e,t){return t&&(Ls(t)==="object"||typeof t=="function")?t:Ts(e)}function Et(e,t){return Et=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Et(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=we(e),u;if(t){var o=we(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return js(this,u)}}var Mn=function(e){xs(r,e);var t=qs(r);function r(n){return Ms(this,r),t.call(this,n)}return r}(q);function _t(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 Us(e){if(Array.isArray(e))return _t(e)}function Vs(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Hs(){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 xn(e){return Us(e)||Vs(e)||ks(e)||Hs()}function ks(e,t){if(!!e){if(typeof e=="string")return _t(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 _t(e,t)}}function Ws(e,t){var r;!((r=Object.getOwnPropertyDescriptors(e)[t])===null||r===void 0)&&r.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function jn(e,t){e.parent=t,Ws(e,"parent")}function zs(e,t){e.forEach(function(r){jn(r,t)})}var Ln=Symbol("targetKey");function Nn(e){var t;return(t=e[Ln])!==null&&t!==void 0?t:e}function qn(e,t){return zs(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===Ln?n:(c=Reflect).get.apply(c,[n,u].concat(xn(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(xn(s)));return Xe(o)&&jn(o,t),f}})}function Un(e,t,r,n){var u=n!=null?n:e,o=qn(Nn(r!=null?r:[]),u);Object.defineProperty(e,t,{get:function(){return o},set:function(s){o=qn(Nn(s),u)},enumerable:!0})}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 Gs(e){if(Array.isArray(e))return bt(e)}function Vn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Hn(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 Ks(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){Hn(o,n,u,i,s,"next",c)}function s(c){Hn(o,n,u,i,s,"throw",c)}i(void 0)})}}function Xs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Js(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=oc(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 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&&Bt(e,t)}function Zs(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Ys(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ec(){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 tc(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){Js(e,u,r[u])})}return e}function nc(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 rc(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):nc(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function uc(e,t){return t&&(ic(t)==="object"||typeof t=="function")?t:Vn(e)}function Bt(e,t){return Bt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Bt(e,t)}function oc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=V(e),e!==null););return e}function kn(e){return Gs(e)||Ys(e)||ac(e)||ec()}var ic=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function ac(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 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 cc(e){var t=sc();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 uc(this,u)}}var lc=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}}},fc=1e4,St=function(t){Qs(n,t);var r=cc(n);function n(o){Xs(this,n);var i;i=r.call(this,o),i.controlType="layout";var s=Zs(this,n)?this.constructor:void 0,c=s.excludes,a=s.childrenMaxLength;return i.props=new Mn(o==null?void 0:o.props),Un(Vn(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 Ks(function(){return lc(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 kn(a).concat(kn(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 rc(tc({},i),{children:s})},n}(R);St.excludes=!1,St.childrenMaxLength=fc;function Wn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function pc(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 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&&At(e,t)}function hc(e,t){return t&&(yc(t)==="object"||typeof t=="function")?t:Wn(e)}function At(e,t){return At=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},At(e,t)}var yc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function vc(){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 gc(e){var t=vc();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 hc(this,u)}}var mc=function(e){dc(r,e);var t=gc(r);function r(n,u){pc(this,r);var o;return o=t.call(this,u),Un(Wn(o),"headers",u==null?void 0:u.headers,n),o}return r}(q);function wt(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 wt(e)}function zn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Gn(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 _c(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){Gn(o,n,u,i,s,"next",c)}function s(c){Gn(o,n,u,i,s,"throw",c)}i(void 0)})}}function bc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Bc(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=Oc(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 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&&Ct(e,t)}function Ac(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function wc(){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 Kn(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){Bc(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 Xn(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 Ic(e,t){return t&&(Fc(t)==="object"||typeof t=="function")?t:zn(e)}function Ct(e,t){return Ct=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ct(e,t)}function Oc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=H(e),e!==null););return e}function Jn(e){return Ec(e)||Ac(e)||Dc(e)||wc()}var Fc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Dc(e,t){if(!!e){if(typeof e=="string")return wt(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 wt(e,t)}}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 Pc(e){var t=Rc();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 Ic(this,u)}}var $c=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){Sc(r,e);var t=Pc(r);function r(u){bc(this,r);var o;return o=t.call(this,u),o.controlType="list",o.props=new mc(zn(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 _c(function(){return $c(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 Jn(c).concat(Jn(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 Xn(Kn({},o),{props:Xn(Kn({},this.props),{headers:i})})},r}(R);fe.controlFieldType=A.LIST;function Tc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Qn(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 Zn(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&&It(e,t)}function Mc(e,t){return t&&(xc(t)==="object"||typeof t=="function")?t:Tc(e)}function It(e,t){return It=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},It(e,t)}var xc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function jc(){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 Yn(e){var t=jc();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 Mc(this,u)}}var Lc=function(e){Zn(r,e);var t=Yn(r);function r(n){Qn(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}(nt),er=function(e){Zn(r,e);var t=Yn(r);function r(n){Qn(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.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);er.Rules=Lc;function Nc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function qc(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 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&&Ot(e,t)}function Vc(e,t){return t&&(Hc(t)==="object"||typeof t=="function")?t:Nc(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 Wc(e){var t=kc();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 Vc(this,u)}}var zc=function(e){Uc(r,e);var t=Wc(r);function r(n){qc(this,r);var u;return u=t.call(this,n),u.controlType="column",u.props=new er(n==null?void 0:n.props),u}return r}(R);function Gc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Kc(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 Xc(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 Jc(e,t){return t&&(Qc(t)==="object"||typeof t=="function")?t:Gc(e)}function Ft(e,t){return Ft=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ft(e,t)}var Qc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Zc(){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 Yc(e){var t=Zc();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 Jc(this,u)}}var el=function(e){Xc(r,e);var t=Yc(r);function r(n){return Kc(this,r),t.call(this,n)}return r}(Mn);function tl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function nl(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 rl(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 ul(e,t){return t&&(ol(t)==="object"||typeof t=="function")?t:tl(e)}function Dt(e,t){return Dt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Dt(e,t)}var ol=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function il(){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 al(e){var t=il();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 ul(this,u)}}var sl=function(e){rl(r,e);var t=al(r);function r(n){nl(this,r);var u;return u=t.call(this,n),u.controlType="wrap",u.props=new el(n==null?void 0:n.props),u}return r}(St);function Rt(e){return"children"in e&&ue(e.children)}function tr(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):Rt(r)?Re(r==null?void 0:r.children,t):r instanceof le&&t(r)})}const nr=[d.AMOUNT,d.CALC,d.DATE_RANGE],rr={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 cl(e){let t=[];return Re(e,r=>{r instanceof le?t.push(r):(r.type,d.SUBTABLE)}),t}function ll(e,t=""){return!e||!Array.isArray(e)?[]:e.map(r=>{if(!r.dataBind||r.type===d.TITLE)return r;if(nr.includes(r.type)){const n=r.dataBind;Object.keys(n).forEach(u=>{const o=n[u],i=r.controlId+"_"+u;o.fieldCode=ur(i),o.dataCode=t})}else r.dataBind.fieldCode=ur(r.controlId),r.dataBind.dataCode=t;return r})}function ur(e){const t="field_";return e.startsWith(t)?e:t+e}function Pe(e){return ki[e]}function fl(e){const t=new k,r=[];return e.forEach(n=>{if(!(n.parentId||!n.dataBind))if(nr.includes(n.type)){const u=n.dataBind,o=n.datasourceBind;Object.keys(u).forEach(i=>{const s=u[i],c=rr[i].fieldType,a=n.caption+"_"+rr[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 pl(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 Pt(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function $t(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Tt(e,t,r){return Jt(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 dl=[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],hl=[d.CALC],yl={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(dl.includes(v))v===d.OPERATION_COLUMN&&Object.entries(yl).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:!hl.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 zc)&&((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 Jt(this,null,function*(){return Tt(...t)})}getModelBindInfoList(...t){return $t(...t)}getSchema(...t){return Pt(...t)}listenControlHook(...t){return Sn.on(...t)}}k.EventLogic=oe;class vl{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),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 gl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function or(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 ml(e,t,r){return t&&or(e.prototype,t),r&&or(e,r),e}var N=function(){function e(t){gl(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 ml(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function El(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var _l=function(){function e(r){El(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:Hi,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);Xe(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 bl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Mt=function e(t){bl(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 Bl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Sl(e){return"type"in e&&e.type==="tab"}var xt=function e(t){Bl(this,e),this.type="tab",this.title=t.title,this.items=t.items};function ir(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 Al(e){if(Array.isArray(e))return e}function wl(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 $e(e){return $e=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},$e(e)}function Il(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&&jt(e,t)}function Ol(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 Fl(){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 Dl(e,t){return t&&(Pl(t)==="object"||typeof t=="function")?t:wl(e)}function jt(e,t){return jt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},jt(e,t)}function Rl(e,t){return Al(e)||Ol(e,t)||$l(e,t)||Fl()}var Pl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function $l(e,t){if(!!e){if(typeof e=="string")return ir(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 ir(e,t)}}function Tl(){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 Ml(e){var t=Tl();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 Dl(this,u)}}var xl=function(e){Il(r,e);var t=Ml(r);function r(n){Cl(this,r);var u;return u=t.call(this,n),Xe(n)&&Object.entries(n).forEach(function(o){var i=Rl(o,2),s=i[0],c=i[1];u[s]=c}),u}return r}(N);function jl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ll(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 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&&Lt(e,t)}function ql(e,t){return t&&(Ul(t)==="object"||typeof t=="function")?t:jl(e)}function Lt(e,t){return Lt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Lt(e,t)}var Ul=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Vl(){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=Vl();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 ql(this,u)}}var kl=function(e){Nl(r,e);var t=Hl(r);function r(n){Ll(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 Wl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function zl(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 Gl(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 Kl(e,t){return t&&(Xl(t)==="object"||typeof t=="function")?t:Wl(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Nt(e,t)}var Xl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Jl(){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 Ql(e){var t=Jl();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 Kl(this,u)}}var Zl=function(e){Gl(r,e);var t=Ql(r);function r(n){zl(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 Yl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ef(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 tf(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 nf(e,t){return t&&(rf(t)==="object"||typeof t=="function")?t:Yl(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},qt(e,t)}var rf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function uf(){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=uf();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 nf(this,u)}}var af=function(e){tf(r,e);var t=of(r);function r(n){ef(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 sf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function cf(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 lf(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 ff(e,t){return t&&(pf(t)==="object"||typeof t=="function")?t:sf(e)}function Ut(e,t){return Ut=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ut(e,t)}var pf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function df(){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 hf(e){var t=df();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 ff(this,u)}}var yf=function(e){lf(r,e);var t=hf(r);function r(n){cf(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 vf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function gf(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 mf(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 Ef(e,t){return t&&(_f(t)==="object"||typeof t=="function")?t:vf(e)}function Vt(e,t){return Vt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Vt(e,t)}var _f=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function bf(){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=bf();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 Ef(this,u)}}var Sf=function(e){mf(r,e);var t=Bf(r);function r(n){gf(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 Af(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function wf(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 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&&Ht(e,t)}function If(e,t){return t&&(Of(t)==="object"||typeof t=="function")?t:Af(e)}function Ht(e,t){return Ht=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ht(e,t)}var Of=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 Df(e){var t=Ff();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 If(this,u)}}var Rf=function(e){Cf(r,e);var t=Df(r);function r(n){wf(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 Pf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function $f(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 Tf(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 Mf(e,t){return t&&(xf(t)==="object"||typeof t=="function")?t:Pf(e)}function kt(e,t){return kt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},kt(e,t)}var xf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function jf(){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 Lf(e){var t=jf();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 Mf(this,u)}}var Nf=function(e){Tf(r,e);var t=Lf(r);function r(n){$f(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 qf(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Wt(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){qf(e,u,r[u])})}return e}function Uf(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 zt(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Uf(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function Vf(e,t){switch(e){case"input":return new kl(t);case"textarea":return new Nf(t);case"input-number":return new Zl(t);case"switch":return new af(t);case"radio":return new Rf(t);case"checkbox":return new yf(t);case"select":return new Sf(t);default:return new xl(t)}}function Hf(e){return function(t){var r=e.get(t);if(!!r)return new _l(zt(Wt({},r),{props:Vf(r.component,"props"in r?r.props:void 0)}))}}function kf(e){var t=function(o){return new Mt(zt(Wt({},o),{items:o.items.map(Hf(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 Sl(u)?new xt(zt(Wt({},u),{items:r(u.items)})):t(u)})}class ar{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?lr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(r=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(r))})}getSettingItems(t){return t instanceof Mt?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}cr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],r=new Map,n=new Map;de(this.instance,u=>{t.push(u),r.set(u.id,u),cr(u,n)}),this.flatInstances=t,this.instanceIdMap=r,this.dataFieldCodeMap=n}}function sr(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 cr(e,t){if(e instanceof le){const r=e.props.dataBind;r instanceof Ee?sr(t,r,e):Object.values(r).forEach(n=>{sr(t,n,e)})}}function de(e,t){(Array.isArray(e)?e:[e]).forEach(n=>{t(n),Rt(n)&&de(n.children,t),tr(n)&&de(n.props.headers,t)})}function Gt(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&&!Gt(t);)t=t.parent;return t}function lr(e){const t=[e];return de(e,r=>{r!==e&&t.includes(r.parent)&&!Gt(r)&&t.push(r)}),t}let Kt="";class fr extends fn{constructor(t){super(),this.isMounted=!1,this.id=ke(8),this.__pluginsApplied=!1,this.getSchema=Pt,this.getModelBindInfoList=$t,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 ar(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{Kt=(r=t.pluginName)!=null?r:t.constructor.name,t.apply(this),Kt=""}catch(n){re(`${Kt||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 instanceof sl){const u=this.getControlSetting(t.parent.type);r=this.concatSetting(r,u,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 o,i,s,c;let u=t;if(((o=t[0])==null?void 0:o.type)==="tab"&&((i=r[0])==null?void 0:i.type)==="tab"){const a=t,f=r.slice(0);u=a.map((p,v)=>{const b=new xt(p),B=f.findIndex(g=>g.title===p.title);if(B===-1)return b;const h=f.splice(B,1)[0];return h&&(b.items=[...this.formatGroupSetting(h.items,n),...b.items]),b}),f.length&&(u=[...u,...f.map(p=>this.formatGroupSetting(p,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(ue(t))return t.map(n=>{const u=new Mt(n);return u.fromId=r,u});{const n=new xt(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?kf(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=he(r),o=this.store.movingInstanceOldParent,i=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:o,newParent:i};this.callSelectedScopeEffect(s),o?this.emit("moved",Z({},s)):this.emit("joined",Z({},s))}createInstance(t,r){return this.designer.createControlInstance(t,r)}getInstance(t){return t instanceof R?t:this.store.instanceIdMap.get(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 i;!cn(t.props,r,n)||(r.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((i=this.store.selected)==null?void 0:i.id)&&this.callSelectedEffect(r,u),this.emit("updated",{instance:t,propName:r,value:n}))}updateInstanceProps(t,r,n,u=""){Object.entries(r).forEach(([o,i])=>{const s=`${u?u+".":""}${o}`;pa(i)?this.updateInstanceProps(t,i,n,s):this.updateInstancePropValue(t,s,i,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 instanceof fe&&r.props.headers.includes(t)?r.props.headers:r.children,u=n.findIndex(o=>o===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 instanceof fe&&n.props.headers.includes(t)?n.props.headers:n.children,o=u.findIndex(i=>i===t);o>-1&&u.splice(o,1,r),this.store.getFlatInstances()}updateInstanceType(t,r){const n=t.toSchema(),u=this.createInstance(r,{id:n.id,props:n.props});if(!u){ge(`can\u2018t update instance type to ${r}`);return}return u}validate(t,r){return Tt(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!da(Je(t)?t:t.type)}static register(...t){return k.register(...t),this}static judgeControlIsRegistered(t){return k.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 instanceof fe)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))})}}fr.EventLogic=oe,E.Builder=vl,E.Designer=k,E.Driven=fr,E.Store=ar,E.checkSchema=Tt,E.fillModelBindInfoListFieldCode=ll,E.findInstanceDataScopeParent=he,E.generatePermissions=pe,E.getColumnTypeFromFiledType=Pe,E.getColumnsFromFiledType=pl,E.getColumnsFromModelBindInfoList=fl,E.getDataScopeFlatInstances=lr,E.getMasterFormControls=cl,E.getModelBindInfoList=$t,E.hasChildrenControl=Rt,E.hasHeaderControl=tr,E.isDataScopeInstance=Gt,E.loop=de,E.loopFormControl=Re,E.toSchema=Pt,Object.defineProperty(E,"__esModule",{value:!0})});
|
package/dist/types/Driven.d.ts
CHANGED
|
@@ -6,8 +6,8 @@ import { Plugin } from './Plugin';
|
|
|
6
6
|
import { DesignerControl, ControlDesignerInstance, ControlsKeys, Schema, DeepPartial, Messages, BeforeCreateInstance } from '@byteluck-fe/model-driven-core';
|
|
7
7
|
import { generatePermissions, getModelBindInfoList, toSchema } from './utils';
|
|
8
8
|
import { Settings } from '@byteluck-fe/model-driven-settings';
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
type EventKeys = 'before-validate' | 'validated' | 'updated' | 'joined' | 'moved' | 'removed' | 'select' | 'field-changed';
|
|
10
|
+
type SchemaBaseType = Schema<ControlsKeys>;
|
|
11
11
|
interface DrivenOptions {
|
|
12
12
|
autoMount?: boolean;
|
|
13
13
|
plugins?: Plugin[];
|
package/dist/types/Store.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export interface StoreOptions {
|
|
|
5
5
|
instance: DesignerControl[];
|
|
6
6
|
getParentBeforeInstanceMove?: (instance: DesignerControl) => DesignerControl | null;
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
type DataScopeControl = ControlDesignerInstance<'data-view' | 'subtable' | 'list-view'> | null;
|
|
9
9
|
export declare class Store {
|
|
10
10
|
/**
|
|
11
11
|
* 页面控件实例树
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-driven",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.1-beta.1",
|
|
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": "
|
|
26
|
-
"@byteluck-fe/model-driven-core": "
|
|
27
|
-
"@byteluck-fe/model-driven-settings": "
|
|
28
|
-
"@byteluck-fe/model-driven-shared": "
|
|
25
|
+
"@byteluck-fe/model-driven-controls": "1.8.1-beta.1",
|
|
26
|
+
"@byteluck-fe/model-driven-core": "1.8.1-beta.1",
|
|
27
|
+
"@byteluck-fe/model-driven-settings": "1.8.1-beta.1",
|
|
28
|
+
"@byteluck-fe/model-driven-shared": "1.8.1-beta.1"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "cfdad9f0a091d4eb8fe1908c057a64d4e98598e8"
|
|
31
31
|
}
|