@byteluck-fe/model-driven-driven 2.7.0-beta.4 → 2.8.0-alpha.11
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/Designer.js +1 -1
- package/dist/esm/Driven.js +24 -5
- package/dist/esm/Store.js +11 -12
- package/dist/esm/designerUtils.js +3 -0
- package/dist/esm/utils.js +4 -1
- package/dist/index.umd.js +3 -3
- package/dist/types/Designer.d.ts +1 -1
- package/dist/types/designerUtils.d.ts +1 -0
- package/package.json +6 -6
package/dist/esm/Designer.js
CHANGED
|
@@ -279,7 +279,7 @@ var Designer = /*#__PURE__*/ function _target(RegisterControls) {
|
|
|
279
279
|
{
|
|
280
280
|
key: "registerControl",
|
|
281
281
|
value: function registerControl(control) {
|
|
282
|
-
this.constructor.register(control);
|
|
282
|
+
this.constructor.register(control, "Designer");
|
|
283
283
|
var DesignerClass = control.Designer, Setting = control.Setting;
|
|
284
284
|
this.register(DesignerClass);
|
|
285
285
|
this.registeredControlTypes.add(DesignerClass.controlType);
|
package/dist/esm/Driven.js
CHANGED
|
@@ -342,6 +342,7 @@ var applyingPluginName = "";
|
|
|
342
342
|
var setting = this.getControlSetting(instance.type);
|
|
343
343
|
// console.log('iswrap:', instance.parent?.controlType, instance.parent)
|
|
344
344
|
// if (instance.parent instanceof DesignerWrapControl) {
|
|
345
|
+
// 如果父控件为自定义控件wrapper
|
|
345
346
|
if (((_instance_parent = instance.parent) === null || _instance_parent === void 0 ? void 0 : _instance_parent.controlType) === CONTROL_BASE_TYPE.WRAP) {
|
|
346
347
|
var _instance_parent1;
|
|
347
348
|
var wrapSetting = this.getControlSetting((_instance_parent1 = instance.parent) === null || _instance_parent1 === void 0 ? void 0 : _instance_parent1.type);
|
|
@@ -363,7 +364,7 @@ var applyingPluginName = "";
|
|
|
363
364
|
key: "concatSetting",
|
|
364
365
|
value: function concatSetting(settings, otherSettings, settingFromId) {
|
|
365
366
|
var _this = this;
|
|
366
|
-
var _settings_, _otherSettings_, _settings_1, _otherSettings_1;
|
|
367
|
+
var _settings_, _otherSettings_, _settings_1, _otherSettings_1, _settings_2, _otherSettings_2, _settings_3, _otherSettings_3;
|
|
367
368
|
var result = settings;
|
|
368
369
|
// tab
|
|
369
370
|
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") {
|
|
@@ -393,8 +394,27 @@ var applyingPluginName = "";
|
|
|
393
394
|
var groupSettings = settings;
|
|
394
395
|
var otherGroupSettings = otherSettings;
|
|
395
396
|
result = _to_consumable_array(this.formatGroupSetting(otherGroupSettings, settingFromId)).concat(_to_consumable_array(groupSettings));
|
|
396
|
-
|
|
397
|
-
|
|
397
|
+
// 当前控件setting是tab,合并控件setting是group
|
|
398
|
+
} else if (((_settings_2 = settings[0]) === null || _settings_2 === void 0 ? void 0 : _settings_2.type) === "tab" && ((_otherSettings_2 = otherSettings[0]) === null || _otherSettings_2 === void 0 ? void 0 : _otherSettings_2.type) === "group") {
|
|
399
|
+
var tabSettings1 = settings;
|
|
400
|
+
var otherGroupSettings1 = otherSettings;
|
|
401
|
+
result = tabSettings1.map(function(tab, index) {
|
|
402
|
+
var result = new Tab(tab);
|
|
403
|
+
if (index === 0) {
|
|
404
|
+
result.items = _to_consumable_array(_this.formatGroupSetting(otherGroupSettings1, settingFromId)).concat(_to_consumable_array(result.items));
|
|
405
|
+
}
|
|
406
|
+
return result;
|
|
407
|
+
});
|
|
408
|
+
} else if (((_settings_3 = settings[0]) === null || _settings_3 === void 0 ? void 0 : _settings_3.type) === "group" && ((_otherSettings_3 = otherSettings[0]) === null || _otherSettings_3 === void 0 ? void 0 : _otherSettings_3.type) === "tab") {
|
|
409
|
+
var groupSettings1 = settings;
|
|
410
|
+
var otherTabSettings1 = otherSettings;
|
|
411
|
+
result = otherTabSettings1.map(function(tab, index) {
|
|
412
|
+
var result = new Tab(tab);
|
|
413
|
+
if (index === 0) {
|
|
414
|
+
result.items = _to_consumable_array(result.items).concat(_to_consumable_array(_this.formatGroupSetting(groupSettings1, settingFromId)));
|
|
415
|
+
}
|
|
416
|
+
return result;
|
|
417
|
+
});
|
|
398
418
|
}
|
|
399
419
|
return result;
|
|
400
420
|
}
|
|
@@ -700,8 +720,7 @@ var applyingPluginName = "";
|
|
|
700
720
|
for(var _len = arguments.length, arg = new Array(_len), _key = 0; _key < _len; _key++){
|
|
701
721
|
arg[_key] = arguments[_key];
|
|
702
722
|
}
|
|
703
|
-
|
|
704
|
-
(_this_designer = this.designer).registerControl.apply(_this_designer, _to_consumable_array(arg));
|
|
723
|
+
this.designer.registerControl(arg[0]);
|
|
705
724
|
return this;
|
|
706
725
|
}
|
|
707
726
|
},
|
package/dist/esm/Store.js
CHANGED
|
@@ -41,13 +41,6 @@ function _define_property(obj, key, value) {
|
|
|
41
41
|
}
|
|
42
42
|
return obj;
|
|
43
43
|
}
|
|
44
|
-
function _instanceof(left, right) {
|
|
45
|
-
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
46
|
-
return !!right[Symbol.hasInstance](left);
|
|
47
|
-
} else {
|
|
48
|
-
return left instanceof right;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
44
|
function _iterable_to_array(iter) {
|
|
52
45
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
53
46
|
}
|
|
@@ -95,9 +88,8 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
95
88
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
96
89
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
97
90
|
}
|
|
98
|
-
import {
|
|
99
|
-
import { hasChildrenControl, hasHeaderControl } from "./designerUtils";
|
|
100
|
-
import { Group } from "@byteluck-fe/model-driven-settings";
|
|
91
|
+
import { isDataBind } from "@byteluck-fe/model-driven-core";
|
|
92
|
+
import { hasChildrenControl, hasFooterControl, hasHeaderControl } from "./designerUtils";
|
|
101
93
|
import { CONTROL_BASE_TYPE, CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
|
|
102
94
|
// 维护当前selected,。。 selectedControlSetting
|
|
103
95
|
export var Store = /*#__PURE__*/ function() {
|
|
@@ -207,7 +199,8 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
207
199
|
{
|
|
208
200
|
key: "getSettingItems",
|
|
209
201
|
value: function getSettingItems(group) {
|
|
210
|
-
return
|
|
202
|
+
// return group instanceof Group
|
|
203
|
+
return group.type === "group" ? group.items : group.items.reduce(function(result, curr) {
|
|
211
204
|
var _result;
|
|
212
205
|
(_result = result).push.apply(_result, _to_consumable_array(curr.items));
|
|
213
206
|
return result;
|
|
@@ -297,7 +290,8 @@ function setInstanceInDataFieldCodeMap(instance, dataFieldCodeMap) {
|
|
|
297
290
|
// if (instance instanceof DesignerFormControl) {
|
|
298
291
|
if (instance.controlType === CONTROL_BASE_TYPE.FORM) {
|
|
299
292
|
var dataBind = instance.props.dataBind;
|
|
300
|
-
if (
|
|
293
|
+
//if (dataBind instanceof DataBind) {
|
|
294
|
+
if (isDataBind(dataBind)) {
|
|
301
295
|
setDataFieldCodeMap(dataFieldCodeMap, dataBind, instance);
|
|
302
296
|
} else {
|
|
303
297
|
Object.values(dataBind).forEach(function(subDataBind) {
|
|
@@ -318,6 +312,11 @@ export function loop(instances, callback) {
|
|
|
318
312
|
if (hasHeaderControl(item)) {
|
|
319
313
|
loop(item.props.headers, callback);
|
|
320
314
|
}
|
|
315
|
+
if (hasFooterControl(item)) {
|
|
316
|
+
var _item_props;
|
|
317
|
+
var _item_props_footers;
|
|
318
|
+
loop((_item_props_footers = (_item_props = item.props) === null || _item_props === void 0 ? void 0 : _item_props.footers) !== null && _item_props_footers !== void 0 ? _item_props_footers : [], callback);
|
|
319
|
+
}
|
|
321
320
|
});
|
|
322
321
|
}
|
|
323
322
|
export function isDataScopeInstance(instance) {
|
|
@@ -5,6 +5,9 @@ export function hasChildrenControl(instance) {
|
|
|
5
5
|
export function hasHeaderControl(instance) {
|
|
6
6
|
return "headers" in instance.props && isArray(instance.props.headers);
|
|
7
7
|
}
|
|
8
|
+
export function hasFooterControl(instance) {
|
|
9
|
+
return "footers" in instance.props && isArray(instance.props.footers);
|
|
10
|
+
}
|
|
8
11
|
export function loopFormControl(control, callback) {
|
|
9
12
|
if (Array.isArray(control)) {
|
|
10
13
|
control.map(function(item) {
|
package/dist/esm/utils.js
CHANGED
|
@@ -377,7 +377,10 @@ var PermissionExcludeControlTypes = [
|
|
|
377
377
|
// 暂时不能控制权限
|
|
378
378
|
CONTROL_TYPE.TAB_PANE,
|
|
379
379
|
CONTROL_TYPE.TAB,
|
|
380
|
-
CONTROL_TYPE.CARD_GROUP
|
|
380
|
+
CONTROL_TYPE.CARD_GROUP,
|
|
381
|
+
CONTROL_TYPE.ACTION_BAR,
|
|
382
|
+
CONTROL_TYPE.GRID_LAYOUT_CONTAINER,
|
|
383
|
+
CONTROL_TYPE.GRID_LAYOUT_WRAP
|
|
381
384
|
];
|
|
382
385
|
// 不可以编辑的控件
|
|
383
386
|
var cannotEditControlTypes = [
|
package/dist/index.umd.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var op=Object.defineProperty;var Gr=Object.getOwnPropertySymbols;var ap=Object.prototype.hasOwnProperty,sp=Object.prototype.propertyIsEnumerable;var Kr=(m,$,R)=>$ in m?op(m,$,{enumerable:!0,configurable:!0,writable:!0,value:R}):m[$]=R,de=(m,$)=>{for(var R in $||($={}))ap.call($,R)&&Kr(m,R,$[R]);if(Gr)for(var R of Gr($))sp.call($,R)&&Kr(m,R,$[R]);return m};var mn=(m,$,R)=>new Promise((ut,Ce)=>{var ot=G=>{try{he(R.next(G))}catch(ye){Ce(ye)}},at=G=>{try{he(R.throw(G))}catch(ye){Ce(ye)}},he=G=>G.done?ut(G.value):Promise.resolve(G.value).then(ot,at);he((R=R.apply(m,$)).next())});(function(m,$){typeof exports=="object"&&typeof module!="undefined"?$(exports):typeof define=="function"&&define.amd?define(["exports"],$):(m=typeof globalThis!="undefined"?globalThis:m||self,$(m.modelDrivenDriven={}))})(this,function(m){"use strict";var $="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",R="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",ut="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Ce="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",ot="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",at="{caption}\u5FC5\u586B",he="\u8BF7\u8F93\u5165\u6807\u9898",G="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ye="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Xr="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Jr="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Zr="\u8BF7\u7ED1\u5B9A\u8868\u5355",Qr="\u8BF7\u7ED1\u5B9A\u5217\u8868",Yr="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",ei="\u8BF7\u8F93\u5165\u663E\u793A\u503C",ti="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ni="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ri="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",ii="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ui="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",oi="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ai="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",si="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",ci="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",li="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",fi="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",pi="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",di="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",hi="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",yi="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",vi="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",_i="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",gi="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",mi="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Ei="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",bi="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",wi="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Bi="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ai="\u8BF7\u9009\u62E9\u7701",Si="\u8BF7\u9009\u62E9\u5E02",Ii="\u8BF7\u9009\u62E9\u533A",Fi="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Di="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Ci="\u8BF7\u8F93\u5165\u5217\u5BBD",Oi="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",$i="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Ri="\u8BF7\u9009\u62E9\u63A7\u4EF6",Pi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Mi="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",xi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ti="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Li="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ji="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",qi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ui="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Vi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Ni="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ki="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Hi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Wi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",zi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Gi="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ki="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Xi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Ji="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Zi="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Qi="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Yi="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",eu={isNotNumber:$,isNotString:R,isNotObject:ut,isNotArray:Ce,isNotBoolean:ot,runtimeRequired:at,pleaseEnterCaption:he,pleaseEnterCaptionTip:G,pleaseEnterRowCaption:ye,pleaseEnterPlaceholder:Xr,pleaseEnterFieldCode:Jr,pleaseEnterForm:Zr,pleaseEnterList:Qr,pleaseEnterProcess:Yr,pleaseEnterLabel:ei,pleaseEnterValue:ti,bizKeyNotBindFiled:ni,pleaseSelectOneField:ri,pleaseEnterNumberRange:ii,pleaseEnterAValueGreaterThanMin:ui,pleaseEnterAValueLessThanMax:oi,numberRangeSetError:ai,stringRangeError:si,attachmentMaxSize:ci,pleaseEnterTotalScoreSetting:li,theTotalScoreMustNotBeLessThan1:fi,scoreDefaultValueRange:pi,attachmentLimitError:di,PleaseReselectTheOptionalQuantity:hi,TheMaximumLengthIsGreaterThanTheMinimumLength:yi,TheMinimumLengthIsGreaterThanTheMaximumLength:vi,PleaseSelectTheCorrectOptionSettings:_i,optionIdIsRepeat:gi,optionIsRequired:mi,pleaseEnterDataCode:Ei,pleaseEnterValueFieldCode:bi,pleaseEnterSvcCode:wi,pleaseBindAtLeastOneDisplayValue:Bi,pleaseSelectProvince:Ai,pleaseSelectCity:Si,pleaseSelectDistrict:Ii,limitRowsCannotBeLessThan0:Fi,TheNumberOfRowsCannotBeLessThanMinRows:Di,pleaseEnterColumnWidth:Ci,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Oi,pleaseCompleteAllRulesAndConditions:$i,pleaseSelectControl:Ri,pleaseSelectAtLeastOneColumn:Pi,pleaseSelectFillBackMode:Mi,pleaseSelectDashboard:xi,rootNodeIsRequired:Ti,theViewNameCannotBeEmpty:Li,pleaseSelectOcrType:ji,pleaseSelectAtLeastOneFieldToFillIn:qi,pleaseChooseAtLeastOne:Ui,pleaseEnterButtonContent:Vi,pleaseEnterDataCodeInDataSetting:Ni,pleaseEnterValueFieldCodeInDataSetting:ki,pleaseEnterSvcCodeInDataSetting:Hi,pleaseBindAtLeastOneDisplayValueInDataSetting:Wi,rootNodeIsRequiredInDataSetting:zi,pleaseEnterMaxHeight:Gi,pleaseEnter:Ki,pleaseEnterWatermark:Xi,pleaseEnterFileName:Ji,pleaseUploadAtLeastOnePrintTemplate:Zi,pleaseAssignBusiness:Qi,pleaseAssignExternal:Yi},tu="Please enter a number",nu="Please enter a string",ru="Please enter an object",iu="Please enter an array",uu="Please enter a boolean",ou="{caption} Required",au="Please enter the title",su="Please enter the bubble prompt",cu="Please enter the row title",lu="Please enter the prompt text",fu="Please bind data items",pu="Please bind the form",du="Please bind the list",hu="Please bind the process",yu="Please enter the displayed value",vu="Please enter the stored value",_u="The document number is not bound to the data item",gu="Please select at least one display field",mu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Eu="Please enter a value greater than or equal to {min}",bu="Please enter a value less than or equal to {max}",wu="The value range is set incorrectly",Bu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Au="The attachment size must be between 0MB and 1000MB",Su="Please fill in the total score setting",Iu="The total score cannot be less than 1",Fu="The default value must be between {min} and {max}",Du="The number of attachments uploaded must be between {min} and {max}",Cu="Please re-select the optional quantity",Ou="The maximum length of the control must be greater than the minimum length",$u="The minimum length of the control must be less than the maximum length",Ru="Please select the correct option setting",Pu="Option ID cannot be repeated",Mu="Please enter at least one option",xu="Please bind the data source",Tu="Please bind the stored value",Lu="Please bind the service",ju="At least one display value must be bound",qu="Please select a province",Uu="Please select a city",Vu="Please select a district",Nu="The minimum number of lines to fill in cannot be less than 0",ku="The number of rows cannot be less than {min} rows",Hu="Please enter the column width",Wu="Please set the logical relationship of all rule conditions",zu="Please complete all rules and conditions",Gu="please select control",Ku="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Xu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ju="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Zu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Qu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Yu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",eo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",to="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",no="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ro="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",io="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",uo="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",oo="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ao="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",so="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",co="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",lo="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",fo="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",po={isNotNumber:tu,isNotString:nu,isNotObject:ru,isNotArray:iu,isNotBoolean:uu,runtimeRequired:ou,pleaseEnterCaption:au,pleaseEnterCaptionTip:su,pleaseEnterRowCaption:cu,pleaseEnterPlaceholder:lu,pleaseEnterFieldCode:fu,pleaseEnterForm:pu,pleaseEnterList:du,pleaseEnterProcess:hu,pleaseEnterLabel:yu,pleaseEnterValue:vu,bizKeyNotBindFiled:_u,pleaseSelectOneField:gu,pleaseEnterNumberRange:mu,pleaseEnterAValueGreaterThanMin:Eu,pleaseEnterAValueLessThanMax:bu,numberRangeSetError:wu,stringRangeError:Bu,attachmentMaxSize:Au,pleaseEnterTotalScoreSetting:Su,theTotalScoreMustNotBeLessThan1:Iu,scoreDefaultValueRange:Fu,attachmentLimitError:Du,PleaseReselectTheOptionalQuantity:Cu,TheMaximumLengthIsGreaterThanTheMinimumLength:Ou,TheMinimumLengthIsGreaterThanTheMaximumLength:$u,PleaseSelectTheCorrectOptionSettings:Ru,optionIdIsRepeat:Pu,optionIsRequired:Mu,pleaseEnterDataCode:xu,pleaseEnterValueFieldCode:Tu,pleaseEnterSvcCode:Lu,pleaseBindAtLeastOneDisplayValue:ju,pleaseSelectProvince:qu,pleaseSelectCity:Uu,pleaseSelectDistrict:Vu,limitRowsCannotBeLessThan0:Nu,TheNumberOfRowsCannotBeLessThanMinRows:ku,pleaseEnterColumnWidth:Hu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Wu,pleaseCompleteAllRulesAndConditions:zu,pleaseSelectControl:Gu,pleaseSelectDashboard:Ku,theViewNameCannotBeEmpty:Xu,pleaseSelectOcrType:Ju,pleaseSelectAtLeastOneFieldToFillIn:Zu,pleaseChooseAtLeastOne:Qu,pleaseEnterButtonContent:Yu,pleaseEnterDataCodeInDataSetting:eo,pleaseEnterValueFieldCodeInDataSetting:to,pleaseEnterSvcCodeInDataSetting:no,pleaseBindAtLeastOneDisplayValueInDataSetting:ro,rootNodeIsRequiredInDataSetting:io,pleaseEnterMaxHeight:uo,pleaseEnter:oo,pleaseEnterWatermark:ao,pleaseEnterFileName:so,pleaseUploadAtLeastOnePrintTemplate:co,pleaseAssignBusiness:lo,pleaseAssignExternal:fo},ho="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",yo="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vo="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_o="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",go="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",mo="{caption}\u5FC5\u9808",Eo="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bo="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wo="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Bo="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ao="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",So="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Io="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Fo="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Do="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Co="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oo="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",$o="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ro="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Po="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Mo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xo="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",To="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Lo="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",jo="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",qo="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Uo="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Vo="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",No="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ko="\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",Ho="\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",Wo="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",zo="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Go="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Ko="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Xo="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Jo="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Zo="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Qo="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Yo="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ea="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ta="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",na="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ra="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ia="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ua="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",oa="please select control",aa="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",sa="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ca="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",la="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",fa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",pa="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",da="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ha="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ya="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",va="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",_a="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ga="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ma="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Ea="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ba="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",wa="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Ba="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Aa="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Sa={isNotNumber:ho,isNotString:yo,isNotObject:vo,isNotArray:_o,isNotBoolean:go,runtimeRequired:mo,pleaseEnterCaption:Eo,pleaseEnterCaptionTip:bo,pleaseEnterRowCaption:wo,pleaseEnterPlaceholder:Bo,pleaseEnterFieldCode:Ao,pleaseEnterForm:So,pleaseEnterList:Io,pleaseEnterProcess:Fo,pleaseEnterLabel:Do,pleaseEnterValue:Co,bizKeyNotBindFiled:Oo,pleaseSelectOneField:$o,pleaseEnterNumberRange:Ro,pleaseEnterAValueGreaterThanMin:Po,pleaseEnterAValueLessThanMax:Mo,numberRangeSetError:xo,stringRangeError:To,attachmentMaxSize:Lo,pleaseEnterTotalScoreSetting:jo,theTotalScoreMustNotBeLessThan1:qo,scoreDefaultValueRange:Uo,attachmentLimitError:Vo,PleaseReselectTheOptionalQuantity:No,TheMaximumLengthIsGreaterThanTheMinimumLength:ko,TheMinimumLengthIsGreaterThanTheMaximumLength:Ho,PleaseSelectTheCorrectOptionSettings:Wo,optionIdIsRepeat:zo,optionIsRequired:Go,pleaseEnterDataCode:Ko,pleaseEnterValueFieldCode:Xo,pleaseEnterSvcCode:Jo,pleaseBindAtLeastOneDisplayValue:Zo,pleaseSelectProvince:Qo,pleaseSelectCity:Yo,pleaseSelectDistrict:ea,limitRowsCannotBeLessThan0:ta,TheNumberOfRowsCannotBeLessThanMinRows:na,pleaseEnterColumnWidth:ra,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ia,pleaseCompleteAllRulesAndConditions:ua,pleaseSelectControl:oa,pleaseSelectDashboard:aa,theViewNameCannotBeEmpty:sa,pleaseSelectOcrType:ca,pleaseSelectAtLeastOneFieldToFillIn:la,pleaseChooseAtLeastOne:fa,pleaseEnterButtonContent:pa,pleaseEnterDataCodeInDataSetting:da,pleaseEnterValueFieldCodeInDataSetting:ha,pleaseEnterSvcCodeInDataSetting:ya,pleaseBindAtLeastOneDisplayValueInDataSetting:va,rootNodeIsRequiredInDataSetting:_a,pleaseEnterMaxHeight:ga,pleaseEnter:ma,pleaseEnterWatermark:Ea,pleaseEnterFileName:ba,pleaseUploadAtLeastOnePrintTemplate:wa,pleaseAssignBusiness:Ba,pleaseAssignExternal:Aa},Ia={zhCN:eu,enUS:po,jaJP:Sa},En;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(En||(En={}));var bn;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(bn||(bn={}));var Fa="zh-CN",Da=function(){};function x(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var P;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(P||(P={}));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.ORGANIZATION_SELECTION="organization-selection",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 I;(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"})(I||(I={}));var M,Ca=(M={},x(M,I.ARRAY,d.ARRAY_COLUMN),x(M,I.AUTO_NUMBER,d.AUTO_NUMBER_COLUMN),x(M,I.DECIMAL,d.DECIMAL_COLUMN),x(M,I.DEPARTMENTS,d.DEPARTMENT_COLUMN),x(M,I.FILE,d.FILE_COLUMN),x(M,I.IMAGE,d.IMAGE_COLUMN),x(M,I.ADDRESS,d.LOCATION_COLUMN),x(M,I.EMPLOYEES,d.EMPLOYEE_COLUMN),x(M,I.TEXT,d.TEXT_COLUMN),x(M,I.TIMESCOPE,d.TIMESCOPE_COLUMN),x(M,I.TIMESTAMP,d.TIMESTAMP_COLUMN),x(M,I.VARCHAR,d.VARCHAR_COLUMN),x(M,I.RELATION,d.VARCHAR_COLUMN),M),wn;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(wn||(wn={}));var Bn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Oa=Bn+"0123456789";function st(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?Bn:Oa,i=Math.random()*r.length;t+=r[parseInt(String(i),10)]}return t}function ct(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function $a(e){if(Array.isArray(e))return ct(e)}function Ra(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function An(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Oe(e,t,n){return Fn()?Oe=Reflect.construct:Oe=function(i,u,o){var s=[null];s.push.apply(s,u);var c=Function.bind.apply(i,s),a=new c;return o&&_e(a,o.prototype),a},Oe.apply(null,arguments)}function ve(e){return ve=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ve(e)}function Sn(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&_e(e,t)}function Pa(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Ma(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function xa(){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 Ta(e,t){return t&&(La(t)==="object"||typeof t=="function")?t:Ra(e)}function _e(e,t){return _e=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},_e(e,t)}function In(e){return $a(e)||Ma(e)||ja(e)||xa()}function La(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ja(e,t){if(!!e){if(typeof e=="string")return ct(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ct(e,t)}}function lt(e){var t=typeof Map=="function"?new Map:void 0;return lt=function(r){if(r===null||!Pa(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,i)}function i(){return Oe(r,arguments,ve(this).constructor)}return i.prototype=Object.create(r.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),_e(i,r)},lt(e)}function Fn(){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 Dn(e){var t=Fn();return function(){var r=ve(e),i;if(t){var u=ve(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Ta(this,i)}}var ft=console;function $e(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,i=t.slice(1);(r=ft).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(In(i)))}function Cn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,i=t.slice(1);(r=ft).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(In(i)))}function qa(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var pt=function(e){Sn(n,e);var t=Dn(n);function n(r){An(this,n);var i;return i=t.call(this,r),i.name="\u{1F4A5} Driven Error",i.message=r?qa(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",i}return n}(lt(Error)),Ua=function(e){Sn(n,e);var t=Dn(n);function n(r){An(this,n);var i;return i=t.call(this,r),i.name="\u{1F6A8} Driven Reference Error",i}return n}(pt);function ge(e){throw new pt(e)}function On(e){throw new Ua(e)}function Va(e){ft.error(new pt(e))}var Na=Object.prototype.toString;function $n(e,t){return Na.call(e)==="[object "+t+"]"}function ka(e){return $n(e,"String")}function Ha(e){return $n(e,"Promise")}var Wa=function(){function e(t){var n,r;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((r=(n=t.messages)!==null&&n!==void 0?n:this.getPreImport(t.locale))!==null&&r!==void 0?r:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var n=this;this.locale=t,this._messageCache.clear();var r=this.getMessageData();Ha(r)?r.then(function(i){n._messageCache.clear(),n.messages[n.localeInMessageKey]=i}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var i=this.getMessage(t);return i?this.formatMessage(i,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(i,u,o,s){if(i!==void 0){var c=i[u];if(!(o===s.length-1&&!ka(c)))return c}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,i){var u=n[i];return u!==void 0?String(u):r}):t},e.prototype.getPreImport=function(t){var n;if(window.okI18nPreImport){var r=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(r)?window.okI18nPreImport:(n={},n[r]=window.okI18nPreImport,n)}},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 za(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Rn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ga(e,t,n){return t&&Rn(e.prototype,t),n&&Rn(e,n),e}function Ka(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var U=function(){function e(){za(this,e)}return Ga(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Fa;return new Wa({locale:n,messages:Ia})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();Ka(U,"$i18n",U.resetI18n());function Pn(e,t,n){var r=t.replace(/\[(\d)]/g,function(u,o){return"."+o}).split("."),i=!1;return r.reduce(function(u,o,s,c){var a=u;if(!!u){if(!Object.prototype.hasOwnProperty.call(u,o)){$e("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),u,u);return}return s===c.length-1&&!Object.is(a[o],n)&&(a[o]=n,i=!0),a[o]}},e),i}var Xa=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Ja={exports:{}};(function(e){(function(t){var n=function(l,y,b){if(!a(y)||h(y)||v(y)||E(y)||c(y))return y;var B,F=0,W=0;if(f(y))for(B=[],W=y.length;F<W;F++)B.push(n(l,y[F],b));else{B={};for(var S in y)Object.prototype.hasOwnProperty.call(y,S)&&(B[l(S,b)]=n(l,y[S],b))}return B},r=function(l,y){y=y||{};var b=y.separator||"_",B=y.split||/(?=[A-Z])/;return l.split(B).join(b)},i=function(l){return w(l)?l:(l=l.replace(/[\-_\s]+(.)?/g,function(y,b){return b?b.toUpperCase():""}),l.substr(0,1).toLowerCase()+l.substr(1))},u=function(l){var y=i(l);return y.substr(0,1).toUpperCase()+y.substr(1)},o=function(l,y){return r(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]"},h=function(l){return s.call(l)=="[object Date]"},v=function(l){return s.call(l)=="[object RegExp]"},E=function(l){return s.call(l)=="[object Boolean]"},w=function(l){return l=l-0,l===l},p=function(l,y){var b=y&&"process"in y?y.process:y;return typeof b!="function"?l:function(B,F){return b(B,l,F)}},_={camelize:i,decamelize:o,pascalize:u,depascalize:o,camelizeKeys:function(l,y){return n(p(i,y),l)},decamelizeKeys:function(l,y){return n(p(o,y),l,y)},pascalizeKeys:function(l,y){return n(p(u,y),l)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=_:t.humps=_})(Xa)})(Ja);var Mn={};Object.defineProperty(Mn,"__esModule",{value:!0});function dt(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:dt(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:dt(r)}return t}}var Za=Mn.default=dt;function te(e){if(e!==void 0)return typeof e=="object"?Za(e):e}function ht(e){return Object.prototype.toString.call(e)==="[object Object]"}function Qa(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function me(e){return Array.isArray(e)}function yt(e){return typeof e=="string"}function Ya(e){return Object.values(d).includes(e)}function vt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function es(e){if(Array.isArray(e))return vt(e)}function xn(e,t,n,r,i,u,o){try{var s=e[u](o),c=s.value}catch(a){n(a);return}s.done?t(c):Promise.resolve(c).then(r,i)}function ts(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){xn(u,r,i,o,s,"next",c)}function s(c){xn(u,r,i,o,s,"throw",c)}o(void 0)})}}function ns(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Tn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function rs(e,t,n){return t&&Tn(e.prototype,t),n&&Tn(e,n),e}function Ln(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function is(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function us(){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 _t(e){return es(e)||is(e)||os(e)||us()}function os(e,t){if(!!e){if(typeof e=="string")return vt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return vt(e,t)}}function as(e,t){var n,r,i,u,o={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]};return u={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(u[Symbol.iterator]=function(){return this}),u;function s(a){return function(f){return c([a,f])}}function c(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(i=o.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(a[0]===6&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var jn=function(){function e(){ns(this,e),Ln(this,"_events",new Map),Ln(this,"debug",!1)}return rs(e,[{key:"emit",value:function(n){for(var r=arguments.length,i=new Array(r>1?r-1:0),u=1;u<r;u++)i[u-1]=arguments[u];var o=this;return ts(function(){var s,c,a,f,h,v,E,w,p,_,l,y;return as(this,function(b){switch(b.label){case 0:if(s=o._events.get(n),c=[],!s)return[3,10];a=s.slice(),f=!0,h=!1,v=void 0,b.label=1;case 1:b.trys.push([1,8,9,10]),E=a[Symbol.iterator](),b.label=2;case 2:if(f=(w=E.next()).done)return[3,7];if(p=w.value,!s.includes(p))return[3,6];b.label=3;case 3:return b.trys.push([3,5,,6]),o.debug&&Cn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(p.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+p.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"\u3002")].concat(_t(i))),[4,p.apply(null,_t(i))];case 4:return _=b.sent(),o.debug&&Cn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(p.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+p.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(_t(i),[_])),c.push(_),_===!1?[3,7]:[3,6];case 5:return l=b.sent(),Va(String(l)+":"+String(l.stack)),[3,6];case 6:return f=!0,[3,2];case 7:return[3,10];case 8:return y=b.sent(),h=!0,v=y,[3,10];case 9:try{!f&&E.return!=null&&E.return()}finally{if(h)throw v}return[7];case 10:return[2,c]}})})()}},{key:"on",value:function(n,r){if(this._events.has(n)){var i;(i=this._events.get(n))===null||i===void 0||i.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var i=this._events.get(n),u=i==null?void 0:i.indexOf(r);i==null||i.splice(u,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function ss(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function cs(e,t,n){return t&&qn(e.prototype,t),n&&qn(e,n),e}function ls(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var fs=[{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_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{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"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],Ee=function(){function e(){ss(this,e)}return cs(e,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(i){return r.includes(i.key)})}}]),e}();ls(Ee,"events",fs);function ps(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Un(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ds(e,t,n){return t&&Un(e.prototype,t),n&&Un(e,n),e}function ne(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Vn=[],Re=function(){function e(t){ps(this,e),ne(this,"registeredControlTypes",new Set),ne(this,"controlConfigMap",new Map),ne(this,"_controls",[]),ne(this,"_type",void 0),this._type=t,this._initControls(t)}return ds(e,[{key:"registerControlConfig",value:function(n,r){return this.controlConfigMap.set(n,r),this}},{key:"getControlConfig",value:function(n){return this.controlConfigMap.get(n)}},{key:"getControls",value:function(){return this._controls}},{key:"register",value:function(n){n.__is_control__||ge("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(i){return i.controlType===n.controlType});return r>-1&&($e("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===P.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===P.FORM}},{key:"isListControl",value:function(n){return n.controlType===P.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===P.COLUMN}},{key:"createControl",value:function(n,r){var i=this;if(Array.isArray(n))return n.map(function(a){return i.createControl(a,r)});n.children&&(n.children=n.children.map(function(a){return i.createControl(a,r)})),this.isListControl(n)&&n.props.headers&&(n.props.headers=n.props.headers.map(function(a){return i.createControl(a,r)}));var u=this.getControlFormType(n.type);if(u){var o=n;if(typeof r=="function"){var s=r(o);s&&(o=s)}var c=new u(o);return c}else ge("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"createControlInstance",value:function(n,r){var i=this.getControlFormType(n);if(i)return new i(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(i){r.register(i[n])})}}],[{key:"register",value:function(n){var r=n.Designer,i=n.Runtime;(!r||!i||!r.__is_control__||!i.__is_control__)&&ge("".concat(n," is can't register as a Control"));var u=this.staticControls.findIndex(function(o){return o.Designer.controlType===r.controlType});return u>-1&&($e("The ".concat(r.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(u,1)),this.staticRegisteredTypes.add(r.controlType),this.staticControls.push(n),this}}]),e}();ne(Re,"staticControls",Vn),ne(Re,"staticRegisteredTypes",new Set(Vn.map(function(e){return e.Designer.controlType}))),ne(Re,"staticRegisteredConfigs",new Map);function gt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function N(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Pe=function e(t){gt(this,e),N(this,"dataCode",void 0),N(this,"fieldCode",void 0),N(this,"fieldType",void 0);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var i;this.fieldType=(i=t==null?void 0:t.fieldType)!==null&&i!==void 0?i:""},hs=function e(t){gt(this,e),N(this,"minWidth",void 0),N(this,"maxWidth",void 0),N(this,"flex",void 0);var n;this.minWidth=(n=t==null?void 0:t.minWidth)!==null&&n!==void 0?n:150,this.maxWidth=t==null?void 0:t.maxWidth;var r;this.flex=(r=t==null?void 0:t.flex)!==null&&r!==void 0?r:1},Nn;(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"})(Nn||(Nn={}));var kn;(function(e){e.DEFAULT_DISPLAY="defaultDisplay",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.VIEW_FORM_MODEL_TYPE="viewFormModelType",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.IS_SHOW_WATERMARK="isShowWatermark",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions",e.IS_PASTE="isPaste"})(kn||(kn={}));var mt;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(mt||(mt={}));var ys=function e(t){gt(this,e),N(this,"width",void 0),N(this,"height",void 0),N(this,"widthConfig",void 0),N(this,"heightConfig",void 0);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var i;this.widthConfig=(i=t==null?void 0:t.widthConfig)!==null&&i!==void 0?i:"fill";var u;this.heightConfig=(u=t==null?void 0:t.heightConfig)!==null&&u!==void 0?u:"fill"};function vs(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 Me(e,t,n){return Hn()?Me=Reflect.construct:Me=function(i,u,o){var s=[null];s.push.apply(s,u);var c=Function.bind.apply(i,s),a=new c;return o&&we(a,o.prototype),a},Me.apply(null,arguments)}function re(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function be(e){return be=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},be(e)}function _s(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&&we(e,t)}function gs(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function ms(e,t){return t&&(Es(t)==="object"||typeof t=="function")?t:vs(e)}function we(e,t){return we=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},we(e,t)}function Es(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function bt(e){var t=typeof Map=="function"?new Map:void 0;return bt=function(r){if(r===null||!gs(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,i)}function i(){return Me(r,arguments,be(this).constructor)}return i.prototype=Object.create(r.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),we(i,r)},bt(e)}function Hn(){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 bs(e){var t=Hn();return function(){var r=be(e),i;if(t){var u=be(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return ms(this,i)}}var wt=function e(t){Et(this,e),re(this,"isHide",{type:"boolean"})},Wn=function(e){_s(n,e);var t=bs(n);function n(r){return Et(this,n),t.call(this)}return n}(bt(Array)),X=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";Et(this,e),re(this,"isHide",void 0),re(this,"className",void 0),re(this,"style",void 0),re(this,"caption",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new ys(t==null?void 0:t.style);var i;this.caption=(i=t==null?void 0:t.caption)!==null&&i!==void 0?i:n};re(X,"Rules",wt),re(X,"RuntimeRules",Wn);function k(){return k=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},k.apply(this,arguments)}function ws(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function Bt(e){return Bt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Bt(e)}function xe(e,t){return xe=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},xe(e,t)}function Bs(){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 Te(e,t,n){return Bs()?Te=Reflect.construct:Te=function(i,u,o){var s=[null];s.push.apply(s,u);var c=Function.bind.apply(i,s),a=new c;return o&&xe(a,o.prototype),a},Te.apply(null,arguments)}function As(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function At(e){var t=typeof Map=="function"?new Map:void 0;return At=function(r){if(r===null||!As(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,i)}function i(){return Te(r,arguments,Bt(this).constructor)}return i.prototype=Object.create(r.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),xe(i,r)},At(e)}var Ss=/%[sdj%]/g,zn=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(zn=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function St(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function T(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,i=t[0],u=t.length;if(typeof i=="function")return i.apply(null,t.slice(1));if(typeof i=="string"){var o=String(i).replace(Ss,function(s){if(s==="%%")return"%";if(r>=u)return s;switch(s){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(c){return"[Circular]"}break;default:return s}});return o}return i}function Is(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function C(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Is(t)&&typeof e=="string"&&!e)}function Fs(e,t,n){var r=[],i=0,u=e.length;function o(s){r.push.apply(r,s),i++,i===u&&n(r)}e.forEach(function(s){t(s,o)})}function Gn(e,t,n){var r=0,i=e.length;function u(o){if(o&&o.length){n(o);return}var s=r;r=r+1,s<i?t(e[s],u):n([])}u([])}function Ds(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var Kn=function(e){ws(t,e);function t(n,r){var i;return i=e.call(this,"Async Validation Error")||this,i.errors=n,i.fields=r,i}return t}(At(Error));function Cs(e,t,n,r){if(t.first){var i=new Promise(function(h,v){var E=function(_){return r(_),_.length?v(new Kn(_,St(_))):h()},w=Ds(e);Gn(w,n,E)});return i.catch(function(h){return h}),i}var u=t.firstFields||[];u===!0&&(u=Object.keys(e));var o=Object.keys(e),s=o.length,c=0,a=[],f=new Promise(function(h,v){var E=function(p){if(a.push.apply(a,p),c++,c===s)return r(a),a.length?v(new Kn(a,St(a))):h()};o.length||(r(a),h()),o.forEach(function(w){var p=e[w];u.indexOf(w)!==-1?Gn(p,n,E):Fs(p,n,E)})});return f.catch(function(h){return h}),f}function Xn(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 Jn(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=k(k({},e[n]),r):e[n]=r}}return e}function Zn(e,t,n,r,i,u){e.required&&(!n.hasOwnProperty(e.field)||C(t,u||e.type))&&r.push(T(i.messages.required,e.fullField))}function Os(e,t,n,r,i){(/^\s+$/.test(t)||t==="")&&r.push(T(i.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},Be={integer:function(t){return Be.number(t)&&parseInt(t,10)===t},float:function(t){return Be.number(t)&&!Be.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(n){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"&&!Be.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 $s(e,t,n,r,i){if(e.required&&t===void 0){Zn(e,t,n,r,i);return}var u=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;u.indexOf(o)>-1?Be[o](t)||r.push(T(i.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(T(i.messages.types[o],e.fullField,e.type))}function Rs(e,t,n,r,i){var u=typeof e.len=="number",o=typeof e.min=="number",s=typeof e.max=="number",c=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,h=typeof t=="number",v=typeof t=="string",E=Array.isArray(t);if(h?f="number":v?f="string":E&&(f="array"),!f)return!1;E&&(a=t.length),v&&(a=t.replace(c,"_").length),u?a!==e.len&&r.push(T(i.messages[f].len,e.fullField,e.len)):o&&!s&&a<e.min?r.push(T(i.messages[f].min,e.fullField,e.min)):s&&!o&&a>e.max?r.push(T(i.messages[f].max,e.fullField,e.max)):o&&s&&(a<e.min||a>e.max)&&r.push(T(i.messages[f].range,e.fullField,e.min,e.max))}var oe="enum";function Ps(e,t,n,r,i){e[oe]=Array.isArray(e[oe])?e[oe]:[],e[oe].indexOf(t)===-1&&r.push(T(i.messages[oe],e.fullField,e[oe].join(", ")))}function Ms(e,t,n,r,i){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(T(i.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var u=new RegExp(e.pattern);u.test(t)||r.push(T(i.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var g={required:Zn,whitespace:Os,type:$s,range:Rs,enum:Ps,pattern:Ms};function xs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t,"string")&&!e.required)return n();g.required(e,t,r,u,i,"string"),C(t,"string")||(g.type(e,t,r,u,i),g.range(e,t,r,u,i),g.pattern(e,t,r,u,i),e.whitespace===!0&&g.whitespace(e,t,r,u,i))}n(u)}function Ts(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&g.type(e,t,r,u,i)}n(u)}function Ls(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&(g.type(e,t,r,u,i),g.range(e,t,r,u,i))}n(u)}function js(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&g.type(e,t,r,u,i)}n(u)}function qs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),C(t)||g.type(e,t,r,u,i)}n(u)}function Us(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&(g.type(e,t,r,u,i),g.range(e,t,r,u,i))}n(u)}function Vs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&(g.type(e,t,r,u,i),g.range(e,t,r,u,i))}n(u)}function Ns(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return n();g.required(e,t,r,u,i,"array"),t!=null&&(g.type(e,t,r,u,i),g.range(e,t,r,u,i))}n(u)}function ks(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&g.type(e,t,r,u,i)}n(u)}var Hs="enum";function Ws(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&g[Hs](e,t,r,u,i)}n(u)}function zs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t,"string")&&!e.required)return n();g.required(e,t,r,u,i),C(t,"string")||g.pattern(e,t,r,u,i)}n(u)}function Gs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t,"date")&&!e.required)return n();if(g.required(e,t,r,u,i),!C(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),g.type(e,s,r,u,i),s&&g.range(e,s.getTime(),r,u,i)}}n(u)}function Ks(e,t,n,r,i){var u=[],o=Array.isArray(t)?"array":typeof t;g.required(e,t,r,u,i,o),n(u)}function Ft(e,t,n,r,i){var u=e.type,o=[],s=e.required||!e.required&&r.hasOwnProperty(e.field);if(s){if(C(t,u)&&!e.required)return n();g.required(e,t,r,o,i,u),C(t,u)||g.type(e,t,r,o,i)}n(o)}function Xs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i)}n(u)}var Ae={string:xs,method:Ts,number:Ls,boolean:js,regexp:qs,integer:Us,float:Vs,array:Ns,object:ks,enum:Ws,pattern:zs,date:Gs,url:Ft,hex:Ft,email:Ft,required:Ks,any:Xs};function Dt(){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=Dt();function J(e){this.rules=null,this._messages=Ct,this.define(e)}J.prototype={messages:function(t){return t&&(this._messages=Jn(Dt(),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 n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var i=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var u=t,o=n,s=r;if(typeof o=="function"&&(s=o,o={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function c(p){var _,l=[],y={};function b(B){if(Array.isArray(B)){var F;l=(F=l).concat.apply(F,B)}else l.push(B)}for(_=0;_<p.length;_++)b(p[_]);l.length?y=St(l):(l=null,y=null),s(l,y)}if(o.messages){var a=this.messages();a===Ct&&(a=Dt()),Jn(a,o.messages),o.messages=a}else o.messages=this.messages();var f,h,v={},E=o.keys||Object.keys(this.rules);E.forEach(function(p){f=i.rules[p],h=u[p],f.forEach(function(_){var l=_;typeof l.transform=="function"&&(u===t&&(u=k({},u)),h=u[p]=l.transform(h)),typeof l=="function"?l={validator:l}:l=k({},l),l.validator=i.getValidationMethod(l),l.field=p,l.fullField=l.fullField||p,l.type=i.getType(l),l.validator&&(v[p]=v[p]||[],v[p].push({rule:l,value:h,source:u,field:p}))})});var w={};return Cs(v,o,function(p,_){var l=p.rule,y=(l.type==="object"||l.type==="array")&&(typeof l.fields=="object"||typeof l.defaultField=="object");y=y&&(l.required||!l.required&&p.value),l.field=p.field;function b(W,S){return k(k({},S),{},{fullField:l.fullField+"."+W})}function B(W){W===void 0&&(W=[]);var S=W;if(Array.isArray(S)||(S=[S]),!o.suppressWarning&&S.length&&J.warning("async-validator:",S),S.length&&l.message!==void 0&&(S=[].concat(l.message)),S=S.map(Xn(l)),o.first&&S.length)return w[l.field]=1,_(S);if(!y)_(S);else{if(l.required&&!p.value)return l.message!==void 0?S=[].concat(l.message).map(Xn(l)):o.error&&(S=[o.error(l,T(o.messages.required,l.field))]),_(S);var z={};if(l.defaultField)for(var Wr in p.value)p.value.hasOwnProperty(Wr)&&(z[Wr]=l.defaultField);z=k(k({},z),p.rule.fields);for(var fe in z)if(z.hasOwnProperty(fe)){var up=Array.isArray(z[fe])?z[fe]:[z[fe]];z[fe]=up.map(b.bind(null,fe))}var zr=new J(z);zr.messages(o.messages),p.rule.options&&(p.rule.options.messages=o.messages,p.rule.options.error=o.error),zr.validate(p.value,p.rule.options||o,function(gn){var pe=[];S&&S.length&&pe.push.apply(pe,S),gn&&gn.length&&pe.push.apply(pe,gn),_(pe.length?pe:null)})}}var F;l.asyncValidator?F=l.asyncValidator(l,p.value,B,p.source,o):l.validator&&(F=l.validator(l,p.value,B,p.source,o),F===!0?B():F===!1?B(l.message||l.field+" fails"):F instanceof Array?B(F):F instanceof Error&&B(F.message)),F&&F.then&&F.then(function(){return B()},function(W){return B(W)})},function(p){c(p)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Ae.hasOwnProperty(t.type))throw new Error(T("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var n=Object.keys(t),r=n.indexOf("message");return r!==-1&&n.splice(r,1),n.length===1&&n[0]==="required"?Ae.required:Ae[this.getType(t)]||!1}},J.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Ae[t]=n},J.warning=zn,J.messages=Ct,J.validators=Ae;var Js={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 Zs(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new J(e);return n.messages(Object.assign(Js,t)),n}var Qn=new jn;function Ot(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Qs(e){if(Array.isArray(e))return e}function Ys(e){if(Array.isArray(e))return Ot(e)}function Yn(e,t,n,r,i,u,o){try{var s=e[u](o),c=s.value}catch(a){n(a);return}s.done?t(c):Promise.resolve(c).then(r,i)}function er(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){Yn(u,r,i,o,s,"next",c)}function s(c){Yn(u,r,i,o,s,"throw",c)}o(void 0)})}}function ec(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function tr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function tc(e,t,n){return t&&tr(e.prototype,t),n&&tr(e,n),e}function A(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function nr(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function rr(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function nc(){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 rc(){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 ir(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){A(e,i,n[i])})}return e}function ic(e){return Qs(e)||rr(e)||ur(e)||nc()}function $t(e){return Ys(e)||rr(e)||ur(e)||rc()}function ur(e,t){if(!!e){if(typeof e=="string")return Ot(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ot(e,t)}}function or(e,t){var n,r,i,u,o={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]};return u={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(u[Symbol.iterator]=function(){return this}),u;function s(a){return function(f){return c([a,f])}}function c(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(i=o.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(a[0]===6&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var L=function(){function t(n){var r=this;ec(this,t),A(this,"id",void 0),A(this,"name",void 0),A(this,"icon",void 0),A(this,"type",void 0),A(this,"controlType",void 0),A(this,"props",void 0),A(this,"setting",[]),A(this,"fieldType",void 0),A(this,"eventKeys",[]),A(this,"customEvents",[]),A(this,"parent",null),A(this,"updateSetting",sr),A(this,"removeSetting",ar),this._callControlHooks("preInstance",n);var i=nr(this,t)?this.constructor:void 0,u=i.controlName,o=i.controlIcon,s=i.controlType,c=i.controlFieldType,a=i.controlEventKeys,f=i.controlCustomEvents,h=i.name,v=i.setting;u&&o&&s||On("The ".concat(h," controlName,controlIcon,controlType is not define"));var E;this.id=(E=n==null?void 0:n.id)!==null&&E!==void 0?E:st(10),this.name=u,this.icon=o;var w;this.type=(w=n==null?void 0:n.type)!==null&&w!==void 0?w:s,this.props=new X(n==null?void 0:n.props,(nr(this,t)?this.constructor:void 0).controlName);var p;this.controlType=(p=n==null?void 0:n.controlType)!==null&&p!==void 0?p:"base",this.setting=te(v);var _;this.fieldType=(_=n==null?void 0:n.fieldType)!==null&&_!==void 0?_:c,this.eventKeys=te(a),this.customEvents=te(f),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return tc(t,[{key:"rules",get:function(){var r=this.props.constructor.Rules;return r?new r(this.props):{}}},{key:"_callControlHooks",value:function(){for(var r=arguments.length,i=new Array(r),u=0;u<r;u++)i[u]=arguments[u];var o,s=ic(i),c=s[0],a=s.slice(1);return(o=Qn).emit.apply(o,[c,this].concat($t(a)))}},{key:"preUpdate",value:function(r,i){this._callControlHooks("preUpdateProps",r,i)}},{key:"postUpdate",value:function(r,i){this._callControlHooks("postUpdateProps",r,i)}},{key:"updateProps",value:function(r,i){this.preUpdate(r,i),Pn(this.props,r,i),this.postUpdate(r,i)}},{key:"preValidate",value:function(){var r=this;return er(function(){var i,u,o;return or(this,function(s){switch(s.label){case 0:return i=ir({},r.rules),[4,r._callControlHooks("preValidate",i)];case 1:return u=s.sent(),o=u[u.length-1],[2,o===!1?void 0:o]}})})()}},{key:"validate",value:function(r,i){var u=this;return er(function(){var o,s,c,a;return or(this,function(f){switch(f.label){case 0:return[4,u.preValidate()];case 1:o=f.sent(),s=o!==void 0?o:ir({},u.rules),Array.isArray(i)&&i.forEach(function(h){s.hasOwnProperty(h)&&delete s[h]}),c=Zs(s,r),f.label=2;case 2:return f.trys.push([2,4,,5]),[4,c.validate(u.props)];case 3:return f.sent(),[2,!0];case 4:throw a=f.sent(),a.control||(a.control=u),a;case 5:return[2]}})})()}},{key:"toDataBindModel",value:function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this.fieldType,u=this.id,o=this.type,s=this.props,c=s.dataBind,a=s.datasourceBind,f=s.optionConfig,h=s.caption,v=s.required,E=s.maxLength,w=s.options,p=s.encrypted,_=s.encryptedMode;if(!(!i&&!c&&!a)){var l={parentId:r,fieldType:i,controlId:u,caption:h,type:o,props:{}};switch(c&&(l.dataBind=c),f){case"datasource":case void 0:a&&(l.datasourceBind=a);break;case"custom":l.props.options=w;break}return v!==void 0&&(l.required=v),E!==void 0&&(l.maxLength=E),p!==void 0&&(l.encrypted=p),_!==void 0&&(l.encryptedMode=_),l}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:te(this.props),fieldType:this.fieldType,controlType:this.controlType}}}],[{key:"updateBasicControl",value:function(r,i){if(r==="setting"){if(i.add){var u;(u=this.setting).push.apply(u,$t(i.add))}i.remove&&this.removeSettingItem(i.remove),i.update}}}]),t}();A(L,"controlName","\u63A7\u4EF6"),A(L,"controlIcon","icon"),A(L,"controlType","control"),A(L,"controlFieldType",void 0),A(L,"controlEventKeys",[]),A(L,"controlCustomEvents",[]),A(L,"setting",[]),A(L,"__is_control__",!0),A(L,"removeSettingItem",ar),A(L,"updateSettingItem",sr);function ar(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var i=typeof r!="string",u=t.setting.findIndex(function(c){return c.key===(i?r.key:r)});if(u!==-1){var o,s;i?t.setting[u].showItems=(o=t.setting[u].showItems)===null||o===void 0?void 0:o.filter(function(c){return!r.hideItems.includes(c)}):t.setting.splice(u,1),i&&!(!((s=t.setting[u].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(u,1)}})}function sr(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(i){var u=n.setting.find(function(a){return a.key===i});if(u){if(typeof t=="boolean")u.visible=t;else if(typeof t=="object"){var o,s=(o=t.type)!==null&&o!==void 0?o:"replace";if(s==="replace")u.showItems=t.showItems;else{var c;(c=u.showItems).push.apply(c,$t(t.showItems))}}}})}function uc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function cr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function oc(e,t,n){return t&&cr(e.prototype,t),n&&cr(e,n),e}function V(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ac(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var Le=function(){function t(n){uc(this,t),V(this,"id",void 0),V(this,"type",void 0),V(this,"controlType",void 0),V(this,"props",void 0),V(this,"fieldType",void 0),V(this,"customEvents",[]),V(this,"pageStatus",void 0),V(this,"parent",null);var r=ac(this,t)?this.constructor:void 0,i=r.controlType,u=r.controlFieldType,o=r.name,s=r.controlCustomEvents;i||On("The ".concat(o," controlType is not define"));var c;this.id=(c=n==null?void 0:n.id)!==null&&c!==void 0?c:st(10);var a;this.type=(a=n==null?void 0:n.type)!==null&&a!==void 0?a:i,this.props=new X(n==null?void 0:n.props),this.customEvents=s;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var h;this.fieldType=(h=n==null?void 0:n.fieldType)!==null&&h!==void 0?h:u;var v;this.pageStatus=(v=n==null?void 0:n.pageStatus)!==null&&v!==void 0?v:mt.UNKNOWN}return oc(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var i=new r(this.props);return Array.from(i)}return[]}}]),t}();V(Le,"controlType","control"),V(Le,"controlFieldType",void 0),V(Le,"__is_control__",!0),V(Le,"controlCustomEvents",[]);function O(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Rt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function D(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function je(e){return je=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},je(e)}function Pt(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 sc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function cc(e,t){return t&&(lc(t)==="object"||typeof t=="function")?t:O(e)}function Mt(e,t){return Mt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Mt(e,t)}function lc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function fc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function xt(e){var t=fc();return function(){var r=je(e),i;if(t){var u=je(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return cc(this,i)}}var pc=function(e){Pt(n,e);var t=xt(n);function n(r){Rt(this,n);var i;i=t.call(this,r),D(O(i),"dataBind",{}),D(O(i),"caption",{type:"string",required:!0,message:U.getMessage("pleaseEnterCaption")}),D(O(i),"isHideCaption",{type:"boolean"}),D(O(i),"labelPosition",{type:"enum",enum:["top","left"]}),D(O(i),"defaultState",{type:"enum",enum:["default","readonly"]}),D(O(i),"required",{type:"boolean"}),D(O(i),"captionTip",{type:"string",required:!1,message:U.getMessage("pleaseEnterCaptionTip")});var u={fieldCode:{type:"string",required:!0,message:U.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:U.getMessage("pleaseEnterFieldCode")}};if(sc(r.dataBind,Pe))i.dataBind={type:"object",required:!0,fields:te(u),message:U.getMessage("pleaseEnterFieldCode")};else{var o={type:"object",required:!0,fields:{},message:U.getMessage("pleaseEnterFieldCode")};Object.keys(r.dataBind).forEach(function(s){o.fields[s]={type:"object",required:!0,fields:te(u),message:U.getMessage("pleaseEnterFieldCode")}}),i.dataBind=o}return r.isShowCaptionTip&&(i.captionTip.required=!0),i}return n}(wt),dc=function(e){Pt(n,e);var t=xt(n);function n(r){Rt(this,n);var i;return i=t.call(this,r),i.push({type:"string",required:r.isHide?!1:r.required,message:r.requiredMessage!==""?r.requiredMessage:U.getMessage("runtimeRequired",{caption:r.caption})}),i}return n}(Wn),Tt=function(e){Pt(n,e);var t=xt(n);function n(r){Rt(this,n);var i;i=t.call(this,r),D(O(i),"caption",void 0),D(O(i),"isHideCaption",void 0),D(O(i),"isShowCaptionTip",void 0),D(O(i),"captionTip",void 0),D(O(i),"labelPosition",void 0),D(O(i),"dataBind",void 0),D(O(i),"defaultValue",void 0),D(O(i),"placeholder",void 0),D(O(i),"defaultState",void 0),D(O(i),"required",void 0),D(O(i),"requiredMessage",void 0);var u;i.caption=(u=r==null?void 0:r.caption)!==null&&u!==void 0?u:"";var o;i.isHideCaption=(o=r==null?void 0:r.isHideCaption)!==null&&o!==void 0?o:!1;var s;i.isShowCaptionTip=(s=r==null?void 0:r.isShowCaptionTip)!==null&&s!==void 0?s:!1;var c;i.captionTip=(c=r==null?void 0:r.captionTip)!==null&&c!==void 0?c:"";var a;i.defaultState=(a=r==null?void 0:r.defaultState)!==null&&a!==void 0?a:"default";var f;i.labelPosition=(f=r==null?void 0:r.labelPosition)!==null&&f!==void 0?f:"top";var h;i.placeholder=(h=r==null?void 0:r.placeholder)!==null&&h!==void 0?h:"";var v;i.required=(v=r==null?void 0:r.required)!==null&&v!==void 0?v:!1;var E;i.requiredMessage=(E=r==null?void 0:r.requiredMessage)!==null&&E!==void 0?E:"",i.dataBind=new Pe(r==null?void 0:r.dataBind);var w;return i.defaultValue=(w=r==null?void 0:r.defaultValue)!==null&&w!==void 0?w:"",i}return n}(X);D(Tt,"Rules",pc),D(Tt,"RuntimeRules",dc);function Lt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function hc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ue(e){return Ue=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ue(e)}function yc(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 vc(e,t){return t&&(_c(t)==="object"||typeof t=="function")?t:Lt(e)}function jt(e,t){return jt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},jt(e,t)}function _c(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function gc(){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 mc(e){var t=gc();return function(){var r=Ue(e),i;if(t){var u=Ue(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return vc(this,i)}}var lr=function(e){yc(n,e);var t=mc(n);function n(r){hc(this,n);var i;return i=t.call(this,r),qe(Lt(i),"controlType","form"),qe(Lt(i),"props",void 0),i.props=new Tt(r==null?void 0:r.props),i}return n}(L);qe(lr,"controlEventKeys",["on_change","on_focus","on_blur"]),qe(lr,"controlCustomAttributes",void 0);function Ec(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function bc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ve(e){return Ve=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ve(e)}function wc(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 Bc(e,t){return t&&(Ac(t)==="object"||typeof t=="function")?t:Ec(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},qt(e,t)}function Ac(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Sc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ic(e){var t=Sc();return function(){var r=Ve(e),i;if(t){var u=Ve(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Bc(this,i)}}var Fc=function(e){wc(n,e);var t=Ic(n);function n(r){return bc(this,n),t.call(this,r)}return n}(X);function Ut(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Dc(e){if(Array.isArray(e))return Ut(e)}function Cc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Oc(){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 fr(e){return Dc(e)||Cc(e)||$c(e)||Oc()}function $c(e,t){if(!!e){if(typeof e=="string")return Ut(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ut(e,t)}}function Rc(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function pr(e,t){e.parent=t,Rc(e,"parent")}function Pc(e,t){e.forEach(function(n){pr(n,t)})}var dr=Symbol("targetKey");function hr(e){var t;return(t=e[dr])!==null&&t!==void 0?t:e}function yr(e,t){return Pc(e,t),new Proxy(e,{get:function(r,i){for(var u=arguments.length,o=new Array(u>2?u-2:0),s=2;s<u;s++)o[s-2]=arguments[s];var c;return i===dr?r:(c=Reflect).get.apply(c,[r,i].concat(fr(o)))},set:function(r,i,u){for(var o=arguments.length,s=new Array(o>3?o-3:0),c=3;c<o;c++)s[c-3]=arguments[c];var a;if(me(e)&&i==="length"&&u===e.length)return!0;var f=(a=Reflect).set.apply(a,[r,i,u].concat(fr(s)));return ht(u)&&pr(u,t),f}})}function vr(e,t,n,r){var i=r!=null?r:e,u=yr(hr(n!=null?n:[]),i);Object.defineProperty(e,t,{get:function(){return u},set:function(s){u=yr(hr(s),i)},enumerable:!0})}function Vt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Mc(e){if(Array.isArray(e))return Vt(e)}function ie(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function _r(e,t,n,r,i,u,o){try{var s=e[u](o),c=s.value}catch(a){n(a);return}s.done?t(c):Promise.resolve(c).then(r,i)}function xc(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){_r(u,r,i,o,s,"next",c)}function s(c){_r(u,r,i,o,s,"throw",c)}o(void 0)})}}function Tc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function gr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Lc(e,t,n){return t&&gr(e.prototype,t),n&&gr(e,n),e}function Z(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ae(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?ae=Reflect.get:ae=function(i,u,o){var s=zc(i,u);if(!!s){var c=Object.getOwnPropertyDescriptor(s,u);return c.get?c.get.call(o||i):c.value}},ae(e,t,n||e)}function Q(e){return Q=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Q(e)}function jc(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 qc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Uc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Vc(){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 Nc(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){Z(e,i,n[i])})}return e}function kc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function Hc(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):kc(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Wc(e,t){return t&&(Gc(t)==="object"||typeof t=="function")?t:ie(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Nt(e,t)}function zc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Q(e),e!==null););return e}function mr(e){return Mc(e)||Uc(e)||Kc(e)||Vc()}function Gc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Kc(e,t){if(!!e){if(typeof e=="string")return Vt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Vt(e,t)}}function Xc(){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 Jc(e){var t=Xc();return function(){var r=Q(e),i;if(t){var u=Q(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Wc(this,i)}}function Zc(e,t){var n,r,i,u,o={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]};return u={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(u[Symbol.iterator]=function(){return this}),u;function s(a){return function(f){return c([a,f])}}function c(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(i=o.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(a[0]===6&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var Qc=1e4,Er=function(t){jc(r,t);var n=Jc(r);function r(i){Tc(this,r);var u;u=n.call(this,i),Z(ie(u),"controlType","layout"),Z(ie(u),"children",void 0),Z(ie(u),"excludes",void 0),Z(ie(u),"childrenMaxLength",void 0),Z(ie(u),"props",void 0);var o=qc(this,r)?this.constructor:void 0,s=o.excludes,c=o.childrenMaxLength;return u.props=new Fc(i==null?void 0:i.props),vr(ie(u),"children",i==null?void 0:i.children),u.excludes=te(s),u.childrenMaxLength=c,u}return Lc(r,[{key:"judgeExcludesChildren",value:function(u){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(u)}},{key:"judgeJoinChildren",value:function(u){var o=this.judgeExcludesChildren(u);return o&&this.childrenMaxLength>this.children.length}},{key:"validate",value:function(u,o){var s=this,c=this,a=function(){return ae(Q(r.prototype),"validate",s)};return xc(function(){return Zc(this,function(f){switch(f.label){case 0:return[4,a().call(c,u,o)];case 1:return f.sent(),[4,Promise.all(c.children.map(function(h){return h.validate(u,o)}))];case 2:return f.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,o=ae(Q(r.prototype),"toDataBindModel",this).call(this),s=o?[o]:[];return this.children.reduce(function(c,a){var f=a.toDataBindModel(u);if(Array.isArray(f)){var h=f.filter(function(v){return!!v});return mr(c).concat(mr(h))}return f&&c.push(f),c},s)}},{key:"toSchema",value:function(){var u=ae(Q(r.prototype),"toSchema",this).call(this),o=this.children.map(function(s){var c=s.toSchema();return c});return Hc(Nc({},u),{children:o})}}]),r}(L);Z(Er,"excludes",!1),Z(Er,"childrenMaxLength",Qc);function kt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Yc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function el(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ne(e){return Ne=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ne(e)}function tl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ht(e,t)}function nl(e,t){return t&&(rl(t)==="object"||typeof t=="function")?t:kt(e)}function Ht(e,t){return Ht=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Ht(e,t)}function rl(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 ul(e){var t=il();return function(){var r=Ne(e),i;if(t){var u=Ne(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return nl(this,i)}}var ol=function(e){tl(n,e);var t=ul(n);function n(r,i){Yc(this,n);var u;return u=t.call(this,i),el(kt(u),"headers",void 0),vr(kt(u),"headers",i==null?void 0:i.headers,r),u}return n}(X);function Wt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function al(e){if(Array.isArray(e))return Wt(e)}function ke(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function br(e,t,n,r,i,u,o){try{var s=e[u](o),c=s.value}catch(a){n(a);return}s.done?t(c):Promise.resolve(c).then(r,i)}function sl(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){br(u,r,i,o,s,"next",c)}function s(c){br(u,r,i,o,s,"throw",c)}o(void 0)})}}function cl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function wr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ll(e,t,n){return t&&wr(e.prototype,t),n&&wr(e,n),e}function He(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function se(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?se=Reflect.get:se=function(i,u,o){var s=vl(i,u);if(!!s){var c=Object.getOwnPropertyDescriptor(s,u);return c.get?c.get.call(o||i):c.value}},se(e,t,n||e)}function Y(e){return Y=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Y(e)}function fl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&zt(e,t)}function pl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function dl(){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 Br(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){He(e,i,n[i])})}return e}function hl(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function Ar(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):hl(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function yl(e,t){return t&&(_l(t)==="object"||typeof t=="function")?t:ke(e)}function zt(e,t){return zt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},zt(e,t)}function vl(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Y(e),e!==null););return e}function Sr(e){return al(e)||pl(e)||gl(e)||dl()}function _l(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function gl(e,t){if(!!e){if(typeof e=="string")return Wt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Wt(e,t)}}function ml(){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 El(e){var t=ml();return function(){var r=Y(e),i;if(t){var u=Y(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return yl(this,i)}}function bl(e,t){var n,r,i,u,o={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]};return u={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(u[Symbol.iterator]=function(){return this}),u;function s(a){return function(f){return c([a,f])}}function c(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(i=o.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(a[0]===6&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var wl=function(e){fl(n,e);var t=El(n);function n(r){cl(this,n);var i;return i=t.call(this,r),He(ke(i),"controlType","list"),He(ke(i),"props",void 0),i.props=new ol(ke(i),r==null?void 0:r.props),i}return ll(n,[{key:"validate",value:function(i,u){var o=this,s=this,c=function(){return se(Y(n.prototype),"validate",o)};return sl(function(){return bl(this,function(a){switch(a.label){case 0:return[4,c().call(s,i)];case 1:return a.sent(),[4,Promise.all(s.props.headers.map(function(f){return f.validate(i,u)}))];case 2:return a.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var i=se(Y(n.prototype),"toDataBindModel",this).call(this),u=i?[i]:[],o=this.id;return this.props.headers.reduce(function(s,c){var a=c.toDataBindModel(o);if(Array.isArray(a)){var f=a.filter(function(h){return!!h});return Sr(s).concat(Sr(f))}return a&&s.push(a),s},u)}},{key:"toSchema",value:function(){var i=se(Y(n.prototype),"toSchema",this).call(this),u=this.props.headers.map(function(o){return o.toSchema()});return Ar(Br({},i),{props:Ar(Br({},this.props),{headers:u})})}}]),n}(L);He(wl,"controlFieldType",I.LIST);function j(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ir(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function q(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function We(e){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},We(e)}function Fr(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&&Gt(e,t)}function Bl(e,t){return t&&(Al(t)==="object"||typeof t=="function")?t:j(e)}function Gt(e,t){return Gt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Gt(e,t)}function Al(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Sl(){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 Dr(e){var t=Sl();return function(){var r=We(e),i;if(t){var u=We(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Bl(this,i)}}var Il=function(e){Fr(n,e);var t=Dr(n);function n(r){Ir(this,n);var i;return i=t.call(this,r),q(j(i),"caption",{type:"string",required:!0,message:U.getMessage("pleaseEnterCaption")}),q(j(i),"width",{type:"number",required:!1,message:U.getMessage("pleaseEnterColumnWidth")}),i.width.required=r.widthType==="px",i}return n}(wt),Fl=function(e){Fr(n,e);var t=Dr(n);function n(r){Ir(this,n);var i;i=t.call(this,r),q(j(i),"widthType",void 0),q(j(i),"width",void 0),q(j(i),"caption",void 0),q(j(i),"dataBind",void 0),q(j(i),"autoWidth",void 0),q(j(i),"fixed",void 0),q(j(i),"sort",void 0),q(j(i),"align",void 0),q(j(i),"colSpan",void 0),q(j(i),"autoHeight",void 0);var u;i.width=(u=r==null?void 0:r.width)!==null&&u!==void 0?u:150,i.widthType=(r==null?void 0:r.widthType)||"auto";var o;i.caption=(o=r==null?void 0:r.caption)!==null&&o!==void 0?o:"";var s;i.fixed=(s=r==null?void 0:r.fixed)!==null&&s!==void 0?s:"none",i.autoWidth=new hs(r==null?void 0:r.autoWidth),i.dataBind=new Pe(r==null?void 0:r.dataBind);var c;i.sort=(c=r==null?void 0:r.sort)!==null&&c!==void 0?c:!0,i.align=r==null?void 0:r.align,i.colSpan=r==null?void 0:r.colSpan;var a;return i.autoHeight=(a=r==null?void 0:r.autoHeight)!==null&&a!==void 0?a:!1,i}return n}(X);q(Fl,"Rules",Il);function Kt(e){return"children"in e&&me(e.children)}function Cr(e){return"headers"in e.props&&me(e.props.headers)}function ze(e,t){Array.isArray(e)&&e.map(n=>{n.type===d.SUBTABLE?ze(n.props.headers,t):Kt(n)?ze(n==null?void 0:n.children,t):n.controlType===P.FORM&&t(n)})}const Or=[d.AMOUNT,d.CALC,d.DATE_RANGE],$r={amount:{caption:"\u91D1\u989D",fieldType:I.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:I.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:I.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:I.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:I.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:I.TIMESTAMP}};function Dl(e){let t=[];return ze(e,n=>{n.controlType===P.FORM?t.push(n):(n.type,d.SUBTABLE)}),t}function Cl(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===d.TITLE)return n;if(Or.includes(n.type)){const r=n.dataBind;Object.keys(r).forEach(i=>{const u=r[i],o=n.controlId+"_"+i;u.fieldCode=Rr(o),u.dataCode=t})}else n.dataBind.fieldCode=Rr(n.controlId),n.dataBind.dataCode=t;return n})}function Rr(e){const t="field_";return e.startsWith(t)?e:t+e}function Ge(e){return Ca[e]}function Ol(e){const t=new ee,n=[];return e.forEach(r=>{if(!(r.parentId||!r.dataBind))if(Or.includes(r.type)){const i=r.dataBind,u=r.datasourceBind;Object.keys(i).forEach(o=>{const s=i[o],c=$r[o].fieldType,a=r.caption+"_"+$r[o].caption,f=Ge(c);if(!f)return;const h={caption:a,dataBind:s};o==="currency"&&(h.optionConfig="datasource",h.datasourceBind=u);const v=t.createControlInstance(f,{props:h});v&&n.push(v)})}else{const i=Ge(r.fieldType);if(!i)return;const u=t.createControlInstance(i,{props:{caption:r.caption,dataBind:r.dataBind,datasourceBind:r.datasourceBind}});u&&n.push(u)}}),n}function $l(e){const t=new ee,r=(Array.isArray(e)?e:[e]).map(i=>{const u=Ge(i);return t.createControlInstance(u)});return Array.isArray(e)?r:r[0]}function Xt(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function Jt(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Zt(e,t,n){return mn(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(i=>i.validate(t,n)))).every(i=>i):yield e.validate(t,n)})}const Rl=[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],Pl=[d.CALC],Ml={check:{id:"listPageCheckBtnId",caption:"\u67E5\u770B"},edit:{id:"listPageEditBtnId",caption:"\u7F16\u8F91"},delete:{id:"listPageDeleteBtnId",caption:"\u5220\u9664"}};function Se(e,t){var r,i,u,o,s,c,a,f,h;const n=[];if(me(e))n.push(...e.map(v=>Se(v,t)).flat());else{const v=e.type,{caption:E,content:w}=e.props;let p;if(Rl.includes(v))v===d.OPERATION_COLUMN&&Object.entries(Ml).reduce((_,[l,{caption:y,id:b}])=>{var F;const B=e.props[l];return B&&B.isShow&&_.push({controlId:b,caption:y,type:e.type,controlType:e.controlType,parentId:(F=t==null?void 0:t.controlId)!=null?F:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),_},n);else if(p={controlId:e.id,caption:E||w||e.name,type:e.type,controlType:e.controlType,parentId:(r=t==null?void 0:t.controlId)!=null?r:null,canEdit:!Pl.includes(v),canRead:!0,canHide:!0,group:"element"},t&&t.type===d.SUBTABLE&&(p.caption=t.caption+"_"+p.caption),v===d.VUE_FORM_ITEM&&(p.caption=e.props.controlExportName||e.name),(e.controlType===P.FORM||e.controlType===P.COLUMN)&&((u=(i=e.props)==null?void 0:i.dataBind)==null?void 0:u.fieldCode)!==void 0&&((s=(o=e.props)==null?void 0:o.dataBind)==null?void 0:s.fieldCode)!==""&&(p.group="field"),n.push(p),v===d.VUE_FORM_ITEM){let _="element";((a=(c=e.props)==null?void 0:c.dataBind)==null?void 0:a.fieldCode)!==void 0&&((h=(f=e.props)==null?void 0:f.dataBind)==null?void 0:h.fieldCode)!==""&&(_="field");const l=e.props.permissions;l==null||l.map(y=>{var b;p={controlId:y.key,caption:y.caption,type:e.type,controlType:e.controlType,parentId:(b=e.id)!=null?b:null,canEdit:!0,canRead:!0,canHide:!0,group:_},n.push(p)})}e.children&&n.push(...e.children.map(_=>Se(_,t)).flat()),e.controlType===P.LIST&&n.push(...e.props.headers.map(_=>Se(_,p)).flat())}return n}class ee extends Re{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new Ee,this.fieldTypes=I,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:n,Setting:r}=t;this.controlSettingMap.set(n.controlType,r)})}registerControl(t){this.constructor.register(t);const{Designer:n,Setting:r}=t;this.register(n),this.registeredControlTypes.add(n.controlType),this.controlSettingMap.set(n.controlType,r)}getControlSetting(t){const n=this.controlSettingMap.get(t);return n||null}setInstance(t,n,r){try{if(!t)return;t.updateProps(n,r)}catch(i){throw i}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return mn(this,null,function*(){return Zt(...t)})}getModelBindInfoList(...t){return Jt(...t)}getSchema(...t){return Xt(...t)}listenControlHook(...t){return Qn.on(...t)}}ee.EventLogic=Ee;class xl{constructor(){this.designer=new ee}ListPageBuilder(){const t=this.designer.createControlInstance(d.LIST_VIEW),n=this.designer.createControlInstance(d.SIMPLE_SEARCH),r=this.designer.createControlInstance(d.GRID_TABLE),i=this.designer.createControlInstance(d.CREATE_FORM_LIST_BUTTON),u=this.designer.createControlInstance(d.IMPORT_RECORD_LIST_BUTTON),o=this.designer.createControlInstance(d.EXPORT_LIST_BUTTON),s=this.designer.createControlInstance(d.EXPORT_RECORD_LIST_BUTTON);return r.children.push(i),r.children.push(u),r.children.push(o),r.children.push(s),t.children.push(n),t.children.push(r),t}ProListPageBuilder(){const t=this.designer.createControlInstance(d.LIST_VIEW);t.props.countType="async";const n=this.designer.createControlInstance(d.SIMPLE_SEARCH),r=this.designer.createControlInstance(d.GRID_TABLE),i=this.designer.createControlInstance(d.EXPORT_LIST_BUTTON),u=this.designer.createControlInstance(d.EXPORT_RECORD_LIST_BUTTON);return r.children.push(i),r.children.push(u),t.children.push(n),t.children.push(r),t}FormPageBuilder(){const t=this.designer.createControlInstance(d.DATA_VIEW),n=this.designer.createControlInstance(d.TITLE),r=this.designer.createControlInstance(d.GRID);return t.children.push(n),t.children.push(r),t}VuePageBuilder(){const t=this.designer.createControlInstance(d.GRID),n=this.designer.createControlInstance(d.VUE_FORM_ITEM);return n.props.isHideCaption=!0,n.props.controlExportName="VuePage",t.children.push(n),t}}function Tl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ll(e,t,n){return t&&Pr(e.prototype,t),n&&Pr(e,n),e}function Mr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var K=function(){function e(t){Tl(this,e),Mr(this,"visible",void 0),Mr(this,"expression",void 0);var n;this.visible=(n=t==null?void 0:t.visible)!==null&&n!==void 0?n:!0;var r;this.expression=(r=t==null?void 0:t.expression)!==null&&r!==void 0?r:!1}return Ll(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function jl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function xr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ql(e,t,n){return t&&xr(e.prototype,t),n&&xr(e,n),e}function H(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ul=function(){function e(t){jl(this,e),H(this,"type",void 0),H(this,"label",void 0),H(this,"key",void 0),H(this,"component",void 0),H(this,"effect",void 0),H(this,"scopeEffect",void 0),H(this,"defaultValue",void 0),H(this,"validator",void 0),H(this,"props",void 0),H(this,"effectKeys",void 0),this.type=t.type,this.label=t.label,this.key=t.key,this.component=t.component;var n;this.effect=(n=t.effect)!==null&&n!==void 0?n:{};var r;this.scopeEffect=(r=t.scopeEffect)!==null&&r!==void 0?r:Da,this.defaultValue=t.defaultValue,this.validator=t.validator;var i;this.props=(i=t.props)!==null&&i!==void 0?i:new K,this.effectKeys=Object.keys(this.effect)}return ql(e,[{key:"filterEffects",value:function(n){var r=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(i){var u=new RegExp("^".concat(i,"(\\.\\w+)*$"));return u.test(n)}).map(function(i){return r.effect[i]})}},{key:"callEffectFn",value:function(n,r){try{var i=n.apply(null,r);ht(i)&&Object.assign(this.props,i)}catch(u){ge(`effect error
|
|
2
|
-
`.concat(u))}}},{key:"callEffect",value:function(n){for(var r=arguments.length,i=new Array(r>1?r-1:0),u=1;u<r;u++)i[u-1]=arguments[u];var o=this;this.filterEffects(n).forEach(function(s){return o.callEffectFn(s,i)})}},{key:"callScopeEffect",value:function(){for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];this.callEffectFn(this.scopeEffect,r)}}]),e}();function Vl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ce(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Qt=function e(t){Vl(this,e),ce(this,"type","group"),ce(this,"title",void 0),ce(this,"required",void 0),ce(this,"items",void 0),ce(this,"tips",void 0),ce(this,"fromId",void 0);var n;this.title=(n=t.title)!==null&&n!==void 0?n:"";var r;this.required=(r=t.required)!==null&&r!==void 0?r:!1,this.items=t.items,this.tips=t.tips};function Nl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Yt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function kl(e){return"type"in e&&e.type==="tab"}var en=function e(t){Nl(this,e),Yt(this,"type","tab"),Yt(this,"title",void 0),Yt(this,"items",void 0),this.title=t.title,this.items=t.items};function Tr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Hl(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 zl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ke(e){return Ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ke(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&&tn(e,t)}function Kl(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n!=null){var r=[],i=!0,u=!1,o,s;try{for(n=n.call(e);!(i=(o=n.next()).done)&&(r.push(o.value),!(t&&r.length===t));i=!0);}catch(c){u=!0,s=c}finally{try{!i&&n.return!=null&&n.return()}finally{if(u)throw s}}return r}}function Xl(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Jl(e,t){return t&&(Ql(t)==="object"||typeof t=="function")?t:Wl(e)}function tn(e,t){return tn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},tn(e,t)}function Zl(e,t){return Hl(e)||Kl(e,t)||Yl(e,t)||Xl()}function Ql(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Yl(e,t){if(!!e){if(typeof e=="string")return Tr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Tr(e,t)}}function ef(){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 tf(e){var t=ef();return function(){var r=Ke(e),i;if(t){var u=Ke(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Jl(this,i)}}var nf=function(e){Gl(n,e);var t=tf(n);function n(r){zl(this,n);var i;return i=t.call(this,r),ht(r)&&Object.entries(r).forEach(function(u){var o=Zl(u,2),s=o[0],c=o[1];i[s]=c}),i}return n}(K);function Ie(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function rf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Xe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Je(e){return Je=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Je(e)}function uf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&nn(e,t)}function of(e,t){return t&&(af(t)==="object"||typeof t=="function")?t:Ie(e)}function nn(e,t){return nn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},nn(e,t)}function af(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function sf(){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 cf(e){var t=sf();return function(){var r=Je(e),i;if(t){var u=Je(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return of(this,i)}}var lf=function(e){uf(n,e);var t=cf(n);function n(r){rf(this,n);var i;i=t.call(this,r),Xe(Ie(i),"maxLength",void 0),Xe(Ie(i),"minLength",void 0),Xe(Ie(i),"placeholder",void 0),Xe(Ie(i),"i18n",void 0);var u;i.maxLength=(u=r==null?void 0:r.maxLength)!==null&&u!==void 0?u:"";var o;i.minLength=(o=r==null?void 0:r.minLength)!==null&&o!==void 0?o:"";var s;i.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var c;return i.i18n=(c=r==null?void 0:r.i18n)!==null&&c!==void 0?c:!1,i}return n}(K);function Ze(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ff(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function rn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Qe(e){return Qe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Qe(e)}function pf(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&&un(e,t)}function df(e,t){return t&&(hf(t)==="object"||typeof t=="function")?t:Ze(e)}function un(e,t){return un=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},un(e,t)}function hf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function yf(){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 vf(e){var t=yf();return function(){var r=Qe(e),i;if(t){var u=Qe(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return df(this,i)}}var _f=function(e){pf(n,e);var t=vf(n);function n(r){ff(this,n);var i;i=t.call(this,r),rn(Ze(i),"max",void 0),rn(Ze(i),"min",void 0),rn(Ze(i),"placeholder",void 0);var u;i.max=(u=r==null?void 0:r.max)!==null&&u!==void 0?u:"";var o;i.min=(o=r==null?void 0:r.min)!==null&&o!==void 0?o:"";var s;return i.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"",i}return n}(K);function Ye(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 on(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function et(e){return et=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},et(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&&an(e,t)}function Ef(e,t){return t&&(bf(t)==="object"||typeof t=="function")?t:Ye(e)}function an(e,t){return an=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},an(e,t)}function bf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function wf(){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=wf();return function(){var r=et(e),i;if(t){var u=et(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Ef(this,i)}}var Af=function(e){mf(n,e);var t=Bf(n);function n(r){gf(this,n);var i;i=t.call(this,r),on(Ye(i),"showType",void 0),on(Ye(i),"tips",void 0),on(Ye(i),"disabled",void 0);var u;i.showType=(u=r==null?void 0:r.showType)!==null&&u!==void 0?u:"switch";var o;i.tips=(o=r==null?void 0:r.tips)!==null&&o!==void 0?o:"";var s;return i.disabled=(s=r==null?void 0:r.disabled)!==null&&s!==void 0?s:!1,i}return n}(K);function Lr(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Sf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function If(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function tt(e){return tt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},tt(e)}function Ff(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&&sn(e,t)}function Df(e,t){return t&&(Cf(t)==="object"||typeof t=="function")?t:Lr(e)}function sn(e,t){return sn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},sn(e,t)}function Cf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Of(){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 $f(e){var t=Of();return function(){var r=tt(e),i;if(t){var u=tt(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Df(this,i)}}var Rf=function(e){Ff(n,e);var t=$f(n);function n(r){Sf(this,n);var i;i=t.call(this,r),If(Lr(i),"options",void 0);var u;return i.options=(u=r==null?void 0:r.options)!==null&&u!==void 0?u:[],i}return n}(K);function cn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Pf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function nt(e){return nt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},nt(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&&ln(e,t)}function xf(e,t){return t&&(Tf(t)==="object"||typeof t=="function")?t:cn(e)}function ln(e,t){return ln=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},ln(e,t)}function Tf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Lf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function jf(e){var t=Lf();return function(){var r=nt(e),i;if(t){var u=nt(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return xf(this,i)}}var qf=function(e){Mf(n,e);var t=jf(n);function n(r){Pf(this,n);var i;i=t.call(this,r),jr(cn(i),"placeholder",void 0),jr(cn(i),"options",void 0);var u;i.placeholder=(u=r==null?void 0:r.placeholder)!==null&&u!==void 0?u:"";var o;return i.options=(o=r==null?void 0:r.options)!==null&&o!==void 0?o:[],i}return n}(K);function fn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Uf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function rt(e){return rt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},rt(e)}function Vf(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&&pn(e,t)}function Nf(e,t){return t&&(kf(t)==="object"||typeof t=="function")?t:fn(e)}function pn(e,t){return pn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},pn(e,t)}function kf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Hf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Wf(e){var t=Hf();return function(){var r=rt(e),i;if(t){var u=rt(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Nf(this,i)}}var zf=function(e){Vf(n,e);var t=Wf(n);function n(r){Uf(this,n);var i;i=t.call(this,r),qr(fn(i),"options",void 0),qr(fn(i),"showType",void 0);var u;i.options=(u=r==null?void 0:r.options)!==null&&u!==void 0?u:[];var o;return i.showType=(o=r==null?void 0:r.showType)!==null&&o!==void 0?o:"outline",i}return n}(K);function ue(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,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function it(e){return it=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},it(e)}function Kf(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&&dn(e,t)}function Xf(e,t){return t&&(Jf(t)==="object"||typeof t=="function")?t:ue(e)}function dn(e,t){return dn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},dn(e,t)}function Jf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Zf(){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 Qf(e){var t=Zf();return function(){var r=it(e),i;if(t){var u=it(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Xf(this,i)}}var Yf=function(e){Kf(n,e);var t=Qf(n);function n(r){Gf(this,n);var i;i=t.call(this,r),le(ue(i),"maxLength",void 0),le(ue(i),"minLength",void 0),le(ue(i),"placeholder",void 0),le(ue(i),"i18n",void 0),le(ue(i),"maxRows",void 0),le(ue(i),"minRows",void 0);var u;i.maxLength=(u=r==null?void 0:r.maxLength)!==null&&u!==void 0?u:"";var o;i.minLength=(o=r==null?void 0:r.minLength)!==null&&o!==void 0?o:"";var s;i.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var c;i.maxRows=(c=r==null?void 0:r.maxRows)!==null&&c!==void 0?c:"";var a;i.minRows=(a=r==null?void 0:r.minRows)!==null&&a!==void 0?a:"";var f;return i.i18n=(f=r==null?void 0:r.i18n)!==null&&f!==void 0?f:!1,i}return n}(K);function ep(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function hn(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){ep(e,i,n[i])})}return e}function tp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function yn(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):tp(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function np(e,t){switch(e){case"input":return new lf(t);case"textarea":return new Yf(t);case"input-number":return new _f(t);case"switch":return new Af(t);case"radio":return new zf(t);case"checkbox":return new Rf(t);case"select":return new qf(t);default:return new nf(t)}}function rp(e){return function(t){var n=e.get(t);if(!!n)return new Ul(yn(hn({},n),{props:np(n.component,"props"in n?n.props:void 0)}))}}function ip(e){var t=function(u){return new Qt(yn(hn({},u),{items:u.items.map(rp(r)).filter(Boolean)}))},n=function(u){return u.map(t)},r=e.fields.reduce(function(i,u){return i.set(u.key,u),i},new Map);return e.groups.map(function(i){return kl(i)?new en(yn(hn({},i),{items:n(i.items)})):t(i)})}class Ur{constructor(t){var n;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=(n=t.getParentBeforeInstanceMove)!=null?n:r=>r.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?De(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?kr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(n=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(n))})}getSettingItems(t){return t instanceof Qt?t.items:t.items.reduce((n,r)=>(n.push(...r.items),n),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=De(t)}updateDataFieldCodeMap(t){const n=De(t);if(!n)return;const r=this.dataFieldCodeMap.get(n.props.datasourceBind.dataCode);if(!!r){for(const[i,u]of r.entries())if(u.id===t.id){r.delete(i);break}Nr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;Fe(this.instance,i=>{t.push(i),n.set(i.id,i),Nr(i,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function Vr(e,t,n){const{dataCode:r,fieldCode:i}=t;r&&i&&(e.has(r)||e.set(r,new Map),e.get(r).set(i,n))}function Nr(e,t){if(e.controlType===P.FORM){const n=e.props.dataBind;n instanceof Pe?Vr(t,n,e):Object.values(n).forEach(r=>{Vr(t,r,e)})}}function Fe(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{t(r),Kt(r)&&Fe(r.children,t),Cr(r)&&Fe(r.props.headers,t)})}function vn(e){return[d.SUBTABLE,d.DATA_VIEW,d.LIST_VIEW].includes(e.type)}function De(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!vn(t);)t=t.parent;return t}function kr(e){const t=[e];return Fe(e,n=>{n!==e&&t.includes(n.parent)&&!vn(n)&&t.push(n)}),t}let _n="";class Hr extends jn{constructor(t){super(),this.isMounted=!1,this.id=st(8),this.__pluginsApplied=!1,this.getSchema=Xt,this.getModelBindInfoList=Jt,this.generatePermissions=Se,this.$options=Object.freeze(t);const{autoMount:n=!1,Designer:r=ee,schema:i,mode:u="form",store:o={}}=this.$options;this.eventLogic=new Ee,this.designer=new r,this.store=new Ur(de({instance:this.designer.createControl(Array.isArray(i)?i:[i])},o)),this.mode=u,n&&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 n;try{_n=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this),_n=""}catch(r){ge(`${_n||t.constructor.name} Plugin apply Error
|
|
3
|
-
${r}`)}}),this.__pluginsApplied=!0)}emit(t,...n){return super.emit(t,n)}on(t,n){return super.on(t,n)}setInstances(t,n){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],n))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var i
|
|
1
|
+
var Ad=Object.defineProperty;var Zr=Object.getOwnPropertySymbols;var Fd=Object.prototype.hasOwnProperty,Cd=Object.prototype.propertyIsEnumerable;var Qr=(m,$,O)=>$ in m?Ad(m,$,{enumerable:!0,configurable:!0,writable:!0,value:O}):m[$]=O,_e=(m,$)=>{for(var O in $||($={}))Fd.call($,O)&&Qr(m,O,$[O]);if(Zr)for(var O of Zr($))Cd.call($,O)&&Qr(m,O,$[O]);return m};var En=(m,$,O)=>new Promise((at,xe)=>{var st=G=>{try{ge(O.next(G))}catch(me){xe(me)}},lt=G=>{try{ge(O.throw(G))}catch(me){xe(me)}},ge=G=>G.done?at(G.value):Promise.resolve(G.value).then(st,lt);ge((O=O.apply(m,$)).next())});(function(m,$){typeof exports=="object"&&typeof module!="undefined"?$(exports):typeof define=="function"&&define.amd?define(["exports"],$):(m=typeof globalThis!="undefined"?globalThis:m||self,$(m.modelDrivenDriven={}))})(this,function(m){"use strict";var $="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",at="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",xe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",st="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",lt="{caption}\u5FC5\u586B",ge="\u8BF7\u8F93\u5165\u6807\u9898",G="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",me="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Yr="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",eu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",tu="\u8BF7\u7ED1\u5B9A\u8868\u5355",nu="\u8BF7\u7ED1\u5B9A\u5217\u8868",ru="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",uu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",iu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ou="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",au="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",su="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",lu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",cu="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",fu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",du="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",pu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",hu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",vu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",yu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",_u="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",gu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",mu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",bu="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Eu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",wu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Bu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Su="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Au="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Fu="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Cu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Iu="\u8BF7\u9009\u62E9\u7701",Du="\u8BF7\u9009\u62E9\u5E02",$u="\u8BF7\u9009\u62E9\u533A",Ou="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Pu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Ru="\u8BF7\u8F93\u5165\u5217\u5BBD",xu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Mu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Tu="\u8BF7\u9009\u62E9\u63A7\u4EF6",Lu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",ju="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",qu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Vu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Uu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ku="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Nu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Hu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Wu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",zu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Gu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ku="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Xu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ju="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Zu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Qu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Yu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ei="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ti="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ni="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ri="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ui="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",ii="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",oi="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",ai="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",si="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",li="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",ci={isNotNumber:$,isNotString:O,isNotObject:at,isNotArray:xe,isNotBoolean:st,runtimeRequired:lt,pleaseEnterCaption:ge,pleaseEnterCaptionTip:G,pleaseEnterRowCaption:me,pleaseEnterPlaceholder:Yr,pleaseEnterFieldCode:eu,pleaseEnterForm:tu,pleaseEnterList:nu,pleaseEnterProcess:ru,pleaseEnterLabel:uu,pleaseEnterValue:iu,bizKeyNotBindFiled:ou,pleaseSelectOneField:au,pleaseEnterNumberRange:su,pleaseEnterAValueGreaterThanMin:lu,pleaseEnterAValueLessThanMax:cu,numberRangeSetError:fu,stringRangeError:du,attachmentMaxSize:pu,pleaseEnterTotalScoreSetting:hu,theTotalScoreMustNotBeLessThan1:vu,scoreDefaultValueRange:yu,attachmentLimitError:_u,PleaseReselectTheOptionalQuantity:gu,TheMaximumLengthIsGreaterThanTheMinimumLength:mu,TheMinimumLengthIsGreaterThanTheMaximumLength:bu,PleaseSelectTheCorrectOptionSettings:Eu,optionIdIsRepeat:wu,optionIsRequired:Bu,pleaseEnterDataCode:Su,pleaseEnterValueFieldCode:Au,pleaseEnterSvcCode:Fu,pleaseBindAtLeastOneDisplayValue:Cu,pleaseSelectProvince:Iu,pleaseSelectCity:Du,pleaseSelectDistrict:$u,limitRowsCannotBeLessThan0:Ou,TheNumberOfRowsCannotBeLessThanMinRows:Pu,pleaseEnterColumnWidth:Ru,pleaseSetTheLogicalRelationshipOfAllRuleConditions:xu,pleaseCompleteAllRulesAndConditions:Mu,pleaseSelectControl:Tu,pleaseSelectAtLeastOneColumn:Lu,pleaseSelectFillBackMode:ju,pleaseSelectDashboard:qu,rootNodeIsRequired:Vu,theViewNameCannotBeEmpty:Uu,pleaseSelectOcrType:ku,pleaseSelectAtLeastOneFieldToFillIn:Nu,pleaseChooseAtLeastOne:Hu,pleaseEnterButtonContent:Wu,pleaseEnterDataCodeInDataSetting:zu,pleaseEnterValueFieldCodeInDataSetting:Gu,pleaseEnterSvcCodeInDataSetting:Ku,pleaseBindAtLeastOneDisplayValueInDataSetting:Xu,rootNodeIsRequiredInDataSetting:Ju,pleaseEnterMaxHeight:Zu,pleaseEnter:Qu,pleaseEnterWatermark:Yu,pleaseEnterFileName:ei,pleaseUploadAtLeastOnePrintTemplate:ti,pleaseAssignBusiness:ni,pleaseAssignExternal:ri,pleaseEnterAliasCode:ui,pleaseSelectDataCode:ii,pleaseSelectSvcCode:oi,pleaseSelectJoinFieldCode:ai,pleaseSelectMainFieldCode:si,pleaseSelectSortFieldCode:li},fi="Please enter a number",di="Please enter a string",pi="Please enter an object",hi="Please enter an array",vi="Please enter a boolean",yi="{caption} Required",_i="Please enter the title",gi="Please enter the bubble prompt",mi="Please enter the row title",bi="Please enter the prompt text",Ei="Please bind data items",wi="Please bind the form",Bi="Please bind the list",Si="Please bind the process",Ai="Please enter the displayed value",Fi="Please enter the stored value",Ci="The document number is not bound to the data item",Ii="Please select at least one display field",Di="Please enter a value greater than or equal to {min} and less than or equal to {max}",$i="Please enter a value greater than or equal to {min}",Oi="Please enter a value less than or equal to {max}",Pi="The value range is set incorrectly",Ri="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",xi="The attachment size must be between 0MB and 1000MB",Mi="Please fill in the total score setting",Ti="The total score cannot be less than 1",Li="The default value must be between {min} and {max}",ji="The number of attachments uploaded must be between {min} and {max}",qi="Please re-select the optional quantity",Vi="The maximum length of the control must be greater than the minimum length",Ui="The minimum length of the control must be less than the maximum length",ki="Please select the correct option setting",Ni="Option ID cannot be repeated",Hi="Please enter at least one option",Wi="Please bind the data source",zi="Please bind the stored value",Gi="Please bind the service",Ki="At least one display value must be bound",Xi="Please select a province",Ji="Please select a city",Zi="Please select a district",Qi="The minimum number of lines to fill in cannot be less than 0",Yi="The number of rows cannot be less than {min} rows",eo="Please enter the column width",to="Please set the logical relationship of all rule conditions",no="Please complete all rules and conditions",ro="please select control",uo="Please select the dashboard",io="View name cannot be empty",oo="Please select recognition type",ao="Please select at least one field to fill in",so="Please select at least one",lo="Please enter the button title",co="Please bind the business model in the data settings",fo="Please bind storage values in data settings",po="Please bind the service in the data settings",ho="Please bind at least one display value in the data settings",vo="Please select the root node in the data settings",yo="Please enter the maximum height",_o="The input content cannot be empty",go="Watermark cannot be empty",mo="File name cannot be empty",bo="Please upload at least one printing template!\uFF01",Eo="Please select a specific business department",wo="Please select a specified external organization",Bo="Please enter a sub table alias",So="Please select the associated table to set the business model",Ao="Please select the association table to set the binding service",Fo="Select associated sub table fields",Co="Please select the associated main table field",Io="Please select the sort field",Do={isNotNumber:fi,isNotString:di,isNotObject:pi,isNotArray:hi,isNotBoolean:vi,runtimeRequired:yi,pleaseEnterCaption:_i,pleaseEnterCaptionTip:gi,pleaseEnterRowCaption:mi,pleaseEnterPlaceholder:bi,pleaseEnterFieldCode:Ei,pleaseEnterForm:wi,pleaseEnterList:Bi,pleaseEnterProcess:Si,pleaseEnterLabel:Ai,pleaseEnterValue:Fi,bizKeyNotBindFiled:Ci,pleaseSelectOneField:Ii,pleaseEnterNumberRange:Di,pleaseEnterAValueGreaterThanMin:$i,pleaseEnterAValueLessThanMax:Oi,numberRangeSetError:Pi,stringRangeError:Ri,attachmentMaxSize:xi,pleaseEnterTotalScoreSetting:Mi,theTotalScoreMustNotBeLessThan1:Ti,scoreDefaultValueRange:Li,attachmentLimitError:ji,PleaseReselectTheOptionalQuantity:qi,TheMaximumLengthIsGreaterThanTheMinimumLength:Vi,TheMinimumLengthIsGreaterThanTheMaximumLength:Ui,PleaseSelectTheCorrectOptionSettings:ki,optionIdIsRepeat:Ni,optionIsRequired:Hi,pleaseEnterDataCode:Wi,pleaseEnterValueFieldCode:zi,pleaseEnterSvcCode:Gi,pleaseBindAtLeastOneDisplayValue:Ki,pleaseSelectProvince:Xi,pleaseSelectCity:Ji,pleaseSelectDistrict:Zi,limitRowsCannotBeLessThan0:Qi,TheNumberOfRowsCannotBeLessThanMinRows:Yi,pleaseEnterColumnWidth:eo,pleaseSetTheLogicalRelationshipOfAllRuleConditions:to,pleaseCompleteAllRulesAndConditions:no,pleaseSelectControl:ro,pleaseSelectDashboard:uo,theViewNameCannotBeEmpty:io,pleaseSelectOcrType:oo,pleaseSelectAtLeastOneFieldToFillIn:ao,pleaseChooseAtLeastOne:so,pleaseEnterButtonContent:lo,pleaseEnterDataCodeInDataSetting:co,pleaseEnterValueFieldCodeInDataSetting:fo,pleaseEnterSvcCodeInDataSetting:po,pleaseBindAtLeastOneDisplayValueInDataSetting:ho,rootNodeIsRequiredInDataSetting:vo,pleaseEnterMaxHeight:yo,pleaseEnter:_o,pleaseEnterWatermark:go,pleaseEnterFileName:mo,pleaseUploadAtLeastOnePrintTemplate:bo,pleaseAssignBusiness:Eo,pleaseAssignExternal:wo,pleaseEnterAliasCode:Bo,pleaseSelectDataCode:So,pleaseSelectSvcCode:Ao,pleaseSelectJoinFieldCode:Fo,pleaseSelectMainFieldCode:Co,pleaseSelectSortFieldCode:Io},$o="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oo="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Po="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ro="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xo="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mo="{caption}\u5FC5\u9808",To="\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",jo="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",qo="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Vo="\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",ko="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",No="\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="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ko="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Xo="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Jo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Zo="\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",Yo="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ea="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ta="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",na="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ra="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ua="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ia="\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",oa="\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",aa="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",sa="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",la="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ca="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",fa="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",da="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",pa="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ha="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",va="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ya="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",_a="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ga="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ma="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ba="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ea="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",wa="please select control",Ba="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Sa="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Aa="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fa="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ca="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ia="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Da="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",$a="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Oa="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Pa="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Ra="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",xa="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ma="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ta="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",La="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ja="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",qa="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Va="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ua="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ka="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",Na="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ha="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",Wa="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",za="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ga={isNotNumber:$o,isNotString:Oo,isNotObject:Po,isNotArray:Ro,isNotBoolean:xo,runtimeRequired:Mo,pleaseEnterCaption:To,pleaseEnterCaptionTip:Lo,pleaseEnterRowCaption:jo,pleaseEnterPlaceholder:qo,pleaseEnterFieldCode:Vo,pleaseEnterForm:Uo,pleaseEnterList:ko,pleaseEnterProcess:No,pleaseEnterLabel:Ho,pleaseEnterValue:Wo,bizKeyNotBindFiled:zo,pleaseSelectOneField:Go,pleaseEnterNumberRange:Ko,pleaseEnterAValueGreaterThanMin:Xo,pleaseEnterAValueLessThanMax:Jo,numberRangeSetError:Zo,stringRangeError:Qo,attachmentMaxSize:Yo,pleaseEnterTotalScoreSetting:ea,theTotalScoreMustNotBeLessThan1:ta,scoreDefaultValueRange:na,attachmentLimitError:ra,PleaseReselectTheOptionalQuantity:ua,TheMaximumLengthIsGreaterThanTheMinimumLength:ia,TheMinimumLengthIsGreaterThanTheMaximumLength:oa,PleaseSelectTheCorrectOptionSettings:aa,optionIdIsRepeat:sa,optionIsRequired:la,pleaseEnterDataCode:ca,pleaseEnterValueFieldCode:fa,pleaseEnterSvcCode:da,pleaseBindAtLeastOneDisplayValue:pa,pleaseSelectProvince:ha,pleaseSelectCity:va,pleaseSelectDistrict:ya,limitRowsCannotBeLessThan0:_a,TheNumberOfRowsCannotBeLessThanMinRows:ga,pleaseEnterColumnWidth:ma,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ba,pleaseCompleteAllRulesAndConditions:Ea,pleaseSelectControl:wa,pleaseSelectDashboard:Ba,theViewNameCannotBeEmpty:Sa,pleaseSelectOcrType:Aa,pleaseSelectAtLeastOneFieldToFillIn:Fa,pleaseChooseAtLeastOne:Ca,pleaseEnterButtonContent:Ia,pleaseEnterDataCodeInDataSetting:Da,pleaseEnterValueFieldCodeInDataSetting:$a,pleaseEnterSvcCodeInDataSetting:Oa,pleaseBindAtLeastOneDisplayValueInDataSetting:Pa,rootNodeIsRequiredInDataSetting:Ra,pleaseEnterMaxHeight:xa,pleaseEnter:Ma,pleaseEnterWatermark:Ta,pleaseEnterFileName:La,pleaseUploadAtLeastOnePrintTemplate:ja,pleaseAssignBusiness:qa,pleaseAssignExternal:Va,pleaseEnterAliasCode:Ua,pleaseSelectDataCode:ka,pleaseSelectSvcCode:Na,pleaseSelectJoinFieldCode:Ha,pleaseSelectMainFieldCode:Wa,pleaseSelectSortFieldCode:za},Ka={zhCN:ci,enUS:Do,jaJP:Ga},wn;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(wn||(wn={}));var Bn;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(Bn||(Bn={}));var Xa="zh-CN",Ja=function(){};function M(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var P;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(P||(P={}));var h;(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.ORGANIZATION_SELECTION="organization-selection",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.Approval_Status_Column="approval-status-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.GRID_LAYOUT_CONTAINER="grid-layout-container",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.ACTION_BAR="action-bar",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",e.GRID_LAYOUT_WRAP="grid-layout-wrap"})(h||(h={}));var k;(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"})(k||(k={}));var R,Za=(R={},M(R,"array","array-column"),M(R,"auto_number","auto-number-column"),M(R,"decimal","decimal-column"),M(R,"department","department-column"),M(R,"file","file-column"),M(R,"image","image-column"),M(R,"location","location-column"),M(R,"people","employee-column"),M(R,"text","text-column"),M(R,"timescope","timescope-column"),M(R,"timestamp","timestamp-column"),M(R,"varchar","varchar-column"),M(R,"relation","varchar-column"),R),Sn;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(Sn||(Sn={}));var An="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Qa=An+"0123456789";function ct(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?An:Qa,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function ft(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Ya(e){if(Array.isArray(e))return ft(e)}function es(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Fn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Me(e,t,n){return Dn()?Me=Reflect.construct:Me=function(u,i,o){var s=[null];s.push.apply(s,i);var l=Function.bind.apply(u,s),a=new l;return o&&Ee(a,o.prototype),a},Me.apply(null,arguments)}function be(e){return be=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},be(e)}function Cn(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&&Ee(e,t)}function ts(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function ns(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function rs(){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 us(e,t){return t&&(is(t)==="object"||typeof t=="function")?t:es(e)}function Ee(e,t){return Ee=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ee(e,t)}function In(e){return Ya(e)||ns(e)||os(e)||rs()}function is(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function os(e,t){if(!!e){if(typeof e=="string")return ft(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ft(e,t)}}function dt(e){var t=typeof Map=="function"?new Map:void 0;return dt=function(r){if(r===null||!ts(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Me(r,arguments,be(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Ee(u,r)},dt(e)}function Dn(){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 $n(e){var t=Dn();return function(){var r=be(e),u;if(t){var i=be(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return us(this,u)}}var pt=console;function Te(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=pt).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(In(u)))}function On(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=pt).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(In(u)))}function as(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var ht=function(e){Cn(n,e);var t=$n(n);function n(r){Fn(this,n);var u;return u=t.call(this,r),u.name="\u{1F4A5} Driven Error",u.message=r?as(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return n}(dt(Error)),ss=function(e){Cn(n,e);var t=$n(n);function n(r){Fn(this,n);var u;return u=t.call(this,r),u.name="\u{1F6A8} Driven Reference Error",u}return n}(ht);function we(e){throw new ht(e)}function Pn(e){throw new ss(e)}function ls(e){pt.error(new ht(e))}var cs=Object.prototype.toString;function Rn(e,t){return cs.call(e)==="[object "+t+"]"}function fs(e){return Rn(e,"String")}function ds(e){return Rn(e,"Promise")}var ps=function(){function e(t){var n,r;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((r=(n=t.messages)!==null&&n!==void 0?n:this.getPreImport(t.locale))!==null&&r!==void 0?r:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var n=this;this.locale=t,this._messageCache.clear();var r=this.getMessageData();ds(r)?r.then(function(u){n._messageCache.clear(),n.messages[n.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var u=this.getMessage(t);return u?this.formatMessage(u,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(u,i,o,s){if(u!==void 0){var l=u[i];if(!(o===s.length-1&&!fs(l)))return l}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,u){var i=n[u];return i!==void 0?String(i):r}):t},e.prototype.getPreImport=function(t){var n;if(window.okI18nPreImport){var r=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(r)?window.okI18nPreImport:(n={},n[r]=window.okI18nPreImport,n)}},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 hs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function xn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function vs(e,t,n){return t&&xn(e.prototype,t),n&&xn(e,n),e}function ys(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var V=function(){function e(){hs(this,e)}return vs(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Xa;return new ps({locale:n,messages:Ka})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();ys(V,"$i18n",V.resetI18n());function Mn(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,o){return"."+o}).split("."),u=!1;return r.reduce(function(i,o,s,l){var a=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,o)){Te("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),i,i);return}return s===l.length-1&&!Object.is(a[o],n)&&(a[o]=n,u=!0),a[o]}},e),u}var _s=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},gs={exports:{}};(function(e){(function(t){var n=function(c,v,w){if(!a(v)||p(v)||y(v)||g(v)||l(v))return v;var B,F=0,W=0;if(f(v))for(B=[],W=v.length;F<W;F++)B.push(n(c,v[F],w));else{B={};for(var A in v)Object.prototype.hasOwnProperty.call(v,A)&&(B[c(A,w)]=n(c,v[A],w))}return B},r=function(c,v){v=v||{};var w=v.separator||"_",B=v.split||/(?=[A-Z])/;return c.split(B).join(w)},u=function(c){return E(c)?c:(c=c.replace(/[\-_\s]+(.)?/g,function(v,w){return w?w.toUpperCase():""}),c.substr(0,1).toLowerCase()+c.substr(1))},i=function(c){var v=u(c);return v.substr(0,1).toUpperCase()+v.substr(1)},o=function(c,v){return r(c,v).toLowerCase()},s=Object.prototype.toString,l=function(c){return typeof c=="function"},a=function(c){return c===Object(c)},f=function(c){return s.call(c)=="[object Array]"},p=function(c){return s.call(c)=="[object Date]"},y=function(c){return s.call(c)=="[object RegExp]"},g=function(c){return s.call(c)=="[object Boolean]"},E=function(c){return c=c-0,c===c},d=function(c,v){var w=v&&"process"in v?v.process:v;return typeof w!="function"?c:function(B,F){return w(B,c,F)}},_={camelize:u,decamelize:o,pascalize:i,depascalize:o,camelizeKeys:function(c,v){return n(d(u,v),c)},decamelizeKeys:function(c,v){return n(d(o,v),c,v)},pascalizeKeys:function(c,v){return n(d(i,v),c)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=_:t.humps=_})(_s)})(gs);var Tn={};Object.defineProperty(Tn,"__esModule",{value:!0});function vt(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:vt(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:vt(r)}return t}}var ms=Tn.default=vt;function ue(e){if(e!==void 0)return typeof e=="object"?ms(e):e}function yt(e){return Object.prototype.toString.call(e)==="[object Object]"}function bs(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function se(e){return Array.isArray(e)}function _t(e){return typeof e=="string"}function Es(e){return Object.values(h).includes(e)}function gt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function ws(e){if(Array.isArray(e))return gt(e)}function Ln(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function Bs(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){Ln(i,r,u,o,s,"next",l)}function s(l){Ln(i,r,u,o,s,"throw",l)}o(void 0)})}}function Ss(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function As(e,t,n){return t&&jn(e.prototype,t),n&&jn(e,n),e}function qn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Fs(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Cs(){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 mt(e){return ws(e)||Fs(e)||Is(e)||Cs()}function Is(e,t){if(!!e){if(typeof e=="string")return gt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return gt(e,t)}}function Ds(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var Vn=function(){function e(){Ss(this,e),qn(this,"_events",new Map),qn(this,"debug",!1)}return As(e,[{key:"emit",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),i=1;i<r;i++)u[i-1]=arguments[i];var o=this;return Bs(function(){var s,l,a,f,p,y,g,E,d,_,c,v;return Ds(this,function(w){switch(w.label){case 0:if(s=o._events.get(n),l=[],!s)return[3,10];a=s.slice(),f=!0,p=!1,y=void 0,w.label=1;case 1:w.trys.push([1,8,9,10]),g=a[Symbol.iterator](),w.label=2;case 2:if(f=(E=g.next()).done)return[3,7];if(d=E.value,!s.includes(d))return[3,6];w.label=3;case 3:return w.trys.push([3,5,,6]),o.debug&&On.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(d.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+d.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"\u3002")].concat(mt(u))),[4,d.apply(null,mt(u))];case 4:return _=w.sent(),o.debug&&On.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(d.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+d.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(mt(u),[_])),l.push(_),_===!1?[3,7]:[3,6];case 5:return c=w.sent(),ls(String(c)+":"+String(c.stack)),[3,6];case 6:return f=!0,[3,2];case 7:return[3,10];case 8:return v=w.sent(),p=!0,y=v,[3,10];case 9:try{!f&&g.return!=null&&g.return()}finally{if(p)throw y}return[7];case 10:return[2,l]}})})()}},{key:"on",value:function(n,r){if(this._events.has(n)){var u;(u=this._events.get(n))===null||u===void 0||u.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var u=this._events.get(n),i=u==null?void 0:u.indexOf(r);u==null||u.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function $s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Un(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Os(e,t,n){return t&&Un(e.prototype,t),n&&Un(e,n),e}function Ps(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Rs=[{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_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{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"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],Be=function(){function e(){$s(this,e)}return Os(e,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(u){return r.includes(u.key)})}}]),e}();Ps(Be,"events",Rs);function bt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function xs(e){if(Array.isArray(e))return bt(e)}function Ms(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Ts(){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){return xs(e)||Ms(e)||Ls(e)||Ts()}function Ls(e,t){if(!!e){if(typeof e=="string")return bt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return bt(e,t)}}function Et(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function Nn(e,t,n){n==="Designer"&&(e.parent=t,Et(e,"parent"))}function js(e,t,n){e.forEach(function(r){Nn(r,t,n)})}var Hn=Symbol("targetKey");function Wn(e){var t;return(t=e[Hn])!==null&&t!==void 0?t:e}function zn(e,t,n){return js(e,t,n),new Proxy(e,{get:function(u,i){for(var o=arguments.length,s=new Array(o>2?o-2:0),l=2;l<o;l++)s[l-2]=arguments[l];var a;return i===Hn?u:(a=Reflect).get.apply(a,[u,i].concat(kn(s)))},set:function(u,i,o){for(var s=arguments.length,l=new Array(s>3?s-3:0),a=3;a<s;a++)l[a-3]=arguments[a];var f;if(se(e)&&i==="length"&&o===e.length)return!0;var p=(f=Reflect).set.apply(f,[u,i,o].concat(kn(l)));return yt(o)&&Nn(o,t,n),p}})}function wt(e,t,n,r,u){var i=r!=null?r:e,o=zn(Wn(n!=null?n:[]),i,u);Object.defineProperty(e,t,{get:function(){return o},set:function(l){o=zn(Wn(l),i,u)},enumerable:!0})}function qs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Gn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Vs(e,t,n){return t&&Gn(e.prototype,t),n&&Gn(e,n),e}function Z(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Kn=[],Se=function(){function e(t){qs(this,e),Z(this,"registeredControlTypes",new Set),Z(this,"controlConfigMap",new Map),Z(this,"_controls",[]),Z(this,"_type",void 0),this._type=t,this._initControls(t)}return Vs(e,[{key:"registerControlConfig",value:function(n,r){return this.controlConfigMap.set(n,r),this}},{key:"getControlConfig",value:function(n){return this.controlConfigMap.get(n)}},{key:"getControls",value:function(){return this._controls}},{key:"register",value:function(n){n.__is_control__||we("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(u){return u.controlType===n.controlType});return r>-1&&(Te("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===P.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===P.FORM}},{key:"isListControl",value:function(n){return n.controlType===P.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===P.COLUMN}},{key:"createControl",value:function(n,r){var u=this;if(Array.isArray(n))return n.map(function(f){return u.createControl(f,r)});if(n.children&&(n.children=n.children.map(function(f){return u.createControl(f,r)})),this.isListControl(n)){var i=n.props;i.headers&&(i.headers=i.headers.map(function(f){return u.createControl(f,r)})),i.footers&&(i.footers=i.footers.map(function(f){var p;return f&&(p=u.createControl(f,r)),p}))}var o=this.getControlFormType(n.type);if(o){var s=n;if(typeof r=="function"){var l=r(s);l&&(s=l)}var a;return o.mode==="Runtime"?(a=s,a.fieldType=o.controlFieldType,this._setParentPrototypeToSchema(a,this)):a=new o(s),a}else we("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"resetInstanceParent",value:function(n,r){delete n.parent,Object.defineProperty(n,"parent",{configurable:!0,get:function(){return r}}),Et(n,"parent")}},{key:"_setParentPrototypeToSchema",value:function(n,r){r._type==="Runtime"&&(Object.defineProperty(n,"parent",{configurable:!0,get:function(){var i=n.id,o=r._controlParentIdMap,s=r.instanceMap;if(!(!o||!s)){var l=o[i],a=s[i];if(!(!l&&!a)){var f=a.findIndex(function(g){return g==n}),p=s[l]||[],y;return p.length!==a.length?y=p[0]:y=p[f],y}}}}),Et(n,"parent"))}},{key:"createControlInstance",value:function(n,r){var u=this.getControlFormType(n);if(u)return new u(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(u){r.register(u[n]),e.staticControlsRuntimeRules.set(u.Runtime.controlType,u.Property.RuntimeRules),u.Property.mode=n})}}],[{key:"staticGetRules",value:function(n,r){var u=e.staticControlsRuntimeRules.get(n),i=[];if(u){var o=new u(r);i=Array.from(o)}return i}},{key:"register",value:function(n,r){var u=n.Designer,i=n.Runtime,o=n.Property;(!u||!i||!u.__is_control__||!i.__is_control__)&&we("".concat(n," is can't register as a Control"));var s=this.staticControls.findIndex(function(l){return l.Designer.controlType===u.controlType});return s>-1&&(Te("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(s,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),o.mode=r,this}}]),e}();Z(Se,"staticControlsRuntimeRules",new Map),Z(Se,"staticControls",Kn),Z(Se,"staticRegisteredTypes",new Set(Kn.map(function(e){return e.Designer.controlType}))),Z(Se,"staticRegisteredConfigs",new Map);function Bt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function U(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Xn=function e(t){Bt(this,e),U(this,"dataCode",void 0),U(this,"fieldCode",void 0),U(this,"fieldType",void 0),U(this,"aliasCode",void 0);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:"",this.aliasCode=t==null?void 0:t.aliasCode},Us=function e(t){Bt(this,e),U(this,"minWidth",void 0),U(this,"maxWidth",void 0),U(this,"flex",void 0);var n;this.minWidth=(n=t==null?void 0:t.minWidth)!==null&&n!==void 0?n:150,this.maxWidth=t==null?void 0:t.maxWidth;var r;this.flex=(r=t==null?void 0:t.flex)!==null&&r!==void 0?r:1},Jn;(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"})(Jn||(Jn={}));var Zn;(function(e){e.DEFAULT_DISPLAY="defaultDisplay",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.VIEW_FORM_MODEL_TYPE="viewFormModelType",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",e.IS_PASTE="isPaste"})(Zn||(Zn={}));var St;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(St||(St={}));var ks=function e(t){Bt(this,e),U(this,"width",void 0),U(this,"height",void 0),U(this,"widthConfig",void 0),U(this,"heightConfig",void 0);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var i;this.heightConfig=(i=t==null?void 0:t.heightConfig)!==null&&i!==void 0?i:"fill"};function Ns(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function At(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Le(e,t,n){return Qn()?Le=Reflect.construct:Le=function(u,i,o){var s=[null];s.push.apply(s,i);var l=Function.bind.apply(u,s),a=new l;return o&&Fe(a,o.prototype),a},Le.apply(null,arguments)}function Q(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ae(e){return Ae=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ae(e)}function Hs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Fe(e,t)}function Ws(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function zs(e,t){return t&&(Gs(t)==="object"||typeof t=="function")?t:Ns(e)}function Fe(e,t){return Fe=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Fe(e,t)}function Gs(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ft(e){var t=typeof Map=="function"?new Map:void 0;return Ft=function(r){if(r===null||!Ws(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Le(r,arguments,Ae(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Fe(u,r)},Ft(e)}function Qn(){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 Ks(e){var t=Qn();return function(){var r=Ae(e),u;if(t){var i=Ae(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return zs(this,u)}}var Ct=function e(t){At(this,e),Q(this,"isHide",{type:"boolean"})},Yn=function(e){Hs(n,e);var t=Ks(n);function n(r){return At(this,n),t.call(this)}return n}(Ft(Array)),K=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";At(this,e),Q(this,"isHide",void 0),Q(this,"className",void 0),Q(this,"style",void 0),Q(this,"caption",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new ks(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};Q(K,"mode",void 0),Q(K,"Rules",Ct),Q(K,"RuntimeRules",Yn);function N(){return N=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},N.apply(this,arguments)}function Xs(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function It(e){return It=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},It(e)}function je(e,t){return je=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},je(e,t)}function Js(){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 qe(e,t,n){return Js()?qe=Reflect.construct:qe=function(u,i,o){var s=[null];s.push.apply(s,i);var l=Function.bind.apply(u,s),a=new l;return o&&je(a,o.prototype),a},qe.apply(null,arguments)}function Zs(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Dt(e){var t=typeof Map=="function"?new Map:void 0;return Dt=function(r){if(r===null||!Zs(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return qe(r,arguments,It(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),je(u,r)},Dt(e)}var Qs=/%[sdj%]/g,er=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(er=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function $t(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function T(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,u=t[0],i=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var o=String(u).replace(Qs,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(l){return"[Circular]"}break;default:return s}});return o}return u}function Ys(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||Ys(t)&&typeof e=="string"&&!e)}function el(e,t,n){var r=[],u=0,i=e.length;function o(s){r.push.apply(r,s),u++,u===i&&n(r)}e.forEach(function(s){t(s,o)})}function tr(e,t,n){var r=0,u=e.length;function i(o){if(o&&o.length){n(o);return}var s=r;r=r+1,s<u?t(e[s],i):n([])}i([])}function tl(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var nr=function(e){Xs(t,e);function t(n,r){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=n,u.fields=r,u}return t}(Dt(Error));function nl(e,t,n,r){if(t.first){var u=new Promise(function(p,y){var g=function(_){return r(_),_.length?y(new nr(_,$t(_))):p()},E=tl(e);tr(E,n,g)});return u.catch(function(p){return p}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var o=Object.keys(e),s=o.length,l=0,a=[],f=new Promise(function(p,y){var g=function(d){if(a.push.apply(a,d),l++,l===s)return r(a),a.length?y(new nr(a,$t(a))):p()};o.length||(r(a),p()),o.forEach(function(E){var d=e[E];i.indexOf(E)!==-1?tr(d,n,g):el(d,n,g)})});return f.catch(function(p){return p}),f}function rr(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 ur(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=N(N({},e[n]),r):e[n]=r}}return e}function ir(e,t,n,r,u,i){e.required&&(!n.hasOwnProperty(e.field)||I(t,i||e.type))&&r.push(T(u.messages.required,e.fullField))}function rl(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(T(u.messages.whitespace,e.fullField))}var Ot={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},Ce={integer:function(t){return Ce.number(t)&&parseInt(t,10)===t},float:function(t){return Ce.number(t)&&!Ce.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(n){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"&&!Ce.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(Ot.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(Ot.url)},hex:function(t){return typeof t=="string"&&!!t.match(Ot.hex)}};function ul(e,t,n,r,u){if(e.required&&t===void 0){ir(e,t,n,r,u);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;i.indexOf(o)>-1?Ce[o](t)||r.push(T(u.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(T(u.messages.types[o],e.fullField,e.type))}function il(e,t,n,r,u){var i=typeof e.len=="number",o=typeof e.min=="number",s=typeof e.max=="number",l=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,p=typeof t=="number",y=typeof t=="string",g=Array.isArray(t);if(p?f="number":y?f="string":g&&(f="array"),!f)return!1;g&&(a=t.length),y&&(a=t.replace(l,"_").length),i?a!==e.len&&r.push(T(u.messages[f].len,e.fullField,e.len)):o&&!s&&a<e.min?r.push(T(u.messages[f].min,e.fullField,e.min)):s&&!o&&a>e.max?r.push(T(u.messages[f].max,e.fullField,e.max)):o&&s&&(a<e.min||a>e.max)&&r.push(T(u.messages[f].range,e.fullField,e.min,e.max))}var le="enum";function ol(e,t,n,r,u){e[le]=Array.isArray(e[le])?e[le]:[],e[le].indexOf(t)===-1&&r.push(T(u.messages[le],e.fullField,e[le].join(", ")))}function al(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(T(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var i=new RegExp(e.pattern);i.test(t)||r.push(T(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var b={required:ir,whitespace:rl,type:ul,range:il,enum:ol,pattern:al};function sl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t,"string")&&!e.required)return n();b.required(e,t,r,i,u,"string"),I(t,"string")||(b.type(e,t,r,i,u),b.range(e,t,r,i,u),b.pattern(e,t,r,i,u),e.whitespace===!0&&b.whitespace(e,t,r,i,u))}n(i)}function ll(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&b.type(e,t,r,i,u)}n(i)}function cl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&(b.type(e,t,r,i,u),b.range(e,t,r,i,u))}n(i)}function fl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&b.type(e,t,r,i,u)}n(i)}function dl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),I(t)||b.type(e,t,r,i,u)}n(i)}function pl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&(b.type(e,t,r,i,u),b.range(e,t,r,i,u))}n(i)}function hl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&(b.type(e,t,r,i,u),b.range(e,t,r,i,u))}n(i)}function vl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return n();b.required(e,t,r,i,u,"array"),t!=null&&(b.type(e,t,r,i,u),b.range(e,t,r,i,u))}n(i)}function yl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&b.type(e,t,r,i,u)}n(i)}var _l="enum";function gl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&b[_l](e,t,r,i,u)}n(i)}function ml(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t,"string")&&!e.required)return n();b.required(e,t,r,i,u),I(t,"string")||b.pattern(e,t,r,i,u)}n(i)}function bl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t,"date")&&!e.required)return n();if(b.required(e,t,r,i,u),!I(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),b.type(e,s,r,i,u),s&&b.range(e,s.getTime(),r,i,u)}}n(i)}function El(e,t,n,r,u){var i=[],o=Array.isArray(t)?"array":typeof t;b.required(e,t,r,i,u,o),n(i)}function Pt(e,t,n,r,u){var i=e.type,o=[],s=e.required||!e.required&&r.hasOwnProperty(e.field);if(s){if(I(t,i)&&!e.required)return n();b.required(e,t,r,o,u,i),I(t,i)||b.type(e,t,r,o,u)}n(o)}function wl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u)}n(i)}var Ie={string:sl,method:ll,number:cl,boolean:fl,regexp:dl,integer:pl,float:hl,array:vl,object:yl,enum:gl,pattern:ml,date:bl,url:Pt,hex:Pt,email:Pt,required:El,any:wl};function Rt(){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 xt=Rt();function Y(e){this.rules=null,this._messages=xt,this.define(e)}Y.prototype={messages:function(t){return t&&(this._messages=ur(Rt(),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 n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var u=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var i=t,o=n,s=r;if(typeof o=="function"&&(s=o,o={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function l(d){var _,c=[],v={};function w(B){if(Array.isArray(B)){var F;c=(F=c).concat.apply(F,B)}else c.push(B)}for(_=0;_<d.length;_++)w(d[_]);c.length?v=$t(c):(c=null,v=null),s(c,v)}if(o.messages){var a=this.messages();a===xt&&(a=Rt()),ur(a,o.messages),o.messages=a}else o.messages=this.messages();var f,p,y={},g=o.keys||Object.keys(this.rules);g.forEach(function(d){f=u.rules[d],p=i[d],f.forEach(function(_){var c=_;typeof c.transform=="function"&&(i===t&&(i=N({},i)),p=i[d]=c.transform(p)),typeof c=="function"?c={validator:c}:c=N({},c),c.validator=u.getValidationMethod(c),c.field=d,c.fullField=c.fullField||d,c.type=u.getType(c),c.validator&&(y[d]=y[d]||[],y[d].push({rule:c,value:p,source:i,field:d}))})});var E={};return nl(y,o,function(d,_){var c=d.rule,v=(c.type==="object"||c.type==="array")&&(typeof c.fields=="object"||typeof c.defaultField=="object");v=v&&(c.required||!c.required&&d.value),c.field=d.field;function w(W,A){return N(N({},A),{},{fullField:c.fullField+"."+W})}function B(W){W===void 0&&(W=[]);var A=W;if(Array.isArray(A)||(A=[A]),!o.suppressWarning&&A.length&&Y.warning("async-validator:",A),A.length&&c.message!==void 0&&(A=[].concat(c.message)),A=A.map(rr(c)),o.first&&A.length)return E[c.field]=1,_(A);if(!v)_(A);else{if(c.required&&!d.value)return c.message!==void 0?A=[].concat(c.message).map(rr(c)):o.error&&(A=[o.error(c,T(o.messages.required,c.field))]),_(A);var z={};if(c.defaultField)for(var Xr in d.value)d.value.hasOwnProperty(Xr)&&(z[Xr]=c.defaultField);z=N(N({},z),d.rule.fields);for(var ve in z)if(z.hasOwnProperty(ve)){var Sd=Array.isArray(z[ve])?z[ve]:[z[ve]];z[ve]=Sd.map(w.bind(null,ve))}var Jr=new Y(z);Jr.messages(o.messages),d.rule.options&&(d.rule.options.messages=o.messages,d.rule.options.error=o.error),Jr.validate(d.value,d.rule.options||o,function(bn){var ye=[];A&&A.length&&ye.push.apply(ye,A),bn&&bn.length&&ye.push.apply(ye,bn),_(ye.length?ye:null)})}}var F;c.asyncValidator?F=c.asyncValidator(c,d.value,B,d.source,o):c.validator&&(F=c.validator(c,d.value,B,d.source,o),F===!0?B():F===!1?B(c.message||c.field+" fails"):F instanceof Array?B(F):F instanceof Error&&B(F.message)),F&&F.then&&F.then(function(){return B()},function(W){return B(W)})},function(d){l(d)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Ie.hasOwnProperty(t.type))throw new Error(T("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var n=Object.keys(t),r=n.indexOf("message");return r!==-1&&n.splice(r,1),n.length===1&&n[0]==="required"?Ie.required:Ie[this.getType(t)]||!1}},Y.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Ie[t]=n},Y.warning=er,Y.messages=xt,Y.validators=Ie;var Bl={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 Sl(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new Y(e);return n.messages(Object.assign(Bl,t)),n}var or=new Vn;function Mt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Al(e){if(Array.isArray(e))return e}function Fl(e){if(Array.isArray(e))return Mt(e)}function ar(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function sr(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){ar(i,r,u,o,s,"next",l)}function s(l){ar(i,r,u,o,s,"throw",l)}o(void 0)})}}function Cl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function lr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Il(e,t,n){return t&&lr(e.prototype,t),n&&lr(e,n),e}function S(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function cr(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function fr(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Dl(){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 $l(){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 dr(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){S(e,u,n[u])})}return e}function Ol(e){return Al(e)||fr(e)||pr(e)||Dl()}function Tt(e){return Fl(e)||fr(e)||pr(e)||$l()}function pr(e,t){if(!!e){if(typeof e=="string")return Mt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Mt(e,t)}}function hr(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var x=function(){function t(n){var r=this;Cl(this,t),S(this,"id",void 0),S(this,"name",void 0),S(this,"icon",void 0),S(this,"type",void 0),S(this,"controlType",void 0),S(this,"props",void 0),S(this,"setting",[]),S(this,"fieldType",void 0),S(this,"eventKeys",[]),S(this,"customEvents",[]),S(this,"parent",null),S(this,"updateSetting",yr),S(this,"removeSetting",vr),this._callControlHooks("preInstance",n);var u=cr(this,t)?this.constructor:void 0,i=u.controlName,o=u.controlIcon,s=u.controlType,l=u.controlFieldType,a=u.controlEventKeys,f=u.controlCustomEvents,p=u.name,y=u.setting;i&&o&&s||Pn("The ".concat(p," controlName,controlIcon,controlType is not define"));var g;this.id=(g=n==null?void 0:n.id)!==null&&g!==void 0?g:ct(10),this.name=i,this.icon=o;var E;this.type=(E=n==null?void 0:n.type)!==null&&E!==void 0?E:s,this.props=new K(n==null?void 0:n.props,(cr(this,t)?this.constructor:void 0).controlName);var d;this.controlType=(d=n==null?void 0:n.controlType)!==null&&d!==void 0?d:"base",this.setting=ue(y);var _;this.fieldType=(_=n==null?void 0:n.fieldType)!==null&&_!==void 0?_:l,this.eventKeys=ue(a),this.customEvents=ue(f),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return Il(t,[{key:"rules",get:function(){var r=this.props.constructor.Rules;return r?new r(this.props):{}}},{key:"_callControlHooks",value:function(){for(var r=arguments.length,u=new Array(r),i=0;i<r;i++)u[i]=arguments[i];var o,s=Ol(u),l=s[0],a=s.slice(1);return(o=or).emit.apply(o,[l,this].concat(Tt(a)))}},{key:"preUpdate",value:function(r,u){this._callControlHooks("preUpdateProps",r,u)}},{key:"postUpdate",value:function(r,u){this._callControlHooks("postUpdateProps",r,u)}},{key:"updateProps",value:function(r,u){this.preUpdate(r,u),Mn(this.props,r,u),this.postUpdate(r,u)}},{key:"preValidate",value:function(){var r=this;return sr(function(){var u,i,o;return hr(this,function(s){switch(s.label){case 0:return u=dr({},r.rules),[4,r._callControlHooks("preValidate",u)];case 1:return i=s.sent(),o=i[i.length-1],[2,o===!1?void 0:o]}})})()}},{key:"validate",value:function(r,u){var i=this;return sr(function(){var o,s,l,a;return hr(this,function(f){switch(f.label){case 0:return[4,i.preValidate()];case 1:o=f.sent(),s=o!==void 0?o:dr({},i.rules),Array.isArray(u)&&u.forEach(function(p){s.hasOwnProperty(p)&&delete s[p]}),l=Sl(s,r),f.label=2;case 2:return f.trys.push([2,4,,5]),[4,l.validate(i.props)];case 3:return f.sent(),[2,!0];case 4:throw a=f.sent(),a.control||(a.control=i),a;case 5:return[2]}})})()}},{key:"toDataBindModel",value:function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,u=this.fieldType,i=this.id,o=this.type,s=this.props,l=s.dataBind,a=s.datasourceBind,f=s.optionConfig,p=s.caption,y=s.required,g=s.maxLength,E=s.options,d=s.encrypted,_=s.encryptedMode;if(!(!u&&!l&&!a)){var c={parentId:r,fieldType:u,controlId:i,caption:p,type:o,props:{}};switch(l&&(c.dataBind=l),f){case"datasource":case void 0:a&&(c.datasourceBind=a);break;case"custom":c.props.options=E;break}return y!==void 0&&(c.required=y),g!==void 0&&(c.maxLength=g),d!==void 0&&(c.encrypted=d),_!==void 0&&(c.encryptedMode=_),c}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:ue(this.props),fieldType:this.fieldType,controlType:this.controlType}}}],[{key:"updateBasicControl",value:function(r,u){if(r==="setting"){if(u.add){var i;(i=this.setting).push.apply(i,Tt(u.add))}u.remove&&this.removeSettingItem(u.remove),u.update}}}]),t}();S(x,"mode","Designer"),S(x,"controlName","\u63A7\u4EF6"),S(x,"controlIcon","icon"),S(x,"controlType","control"),S(x,"controlFieldType",void 0),S(x,"controlEventKeys",[]),S(x,"controlCustomEvents",[]),S(x,"setting",[]),S(x,"__is_control__",!0),S(x,"removeSettingItem",vr),S(x,"updateSettingItem",yr);function vr(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u,i=typeof r!="string",o=(u=t.setting)===null||u===void 0?void 0:u.findIndex(function(a){return a.key===(i?r.key:r)});if(o!==-1){var s,l;i?t.setting[o].showItems=(s=t.setting[o].showItems)===null||s===void 0?void 0:s.filter(function(a){return!r.hideItems.includes(a)}):t.setting.splice(o,1),i&&!(!((l=t.setting[o].showItems)===null||l===void 0)&&l.length)&&t.setting.splice(o,1)}})}function yr(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var i=n.setting.find(function(a){return a.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if(typeof t=="object"){var o,s=(o=t.type)!==null&&o!==void 0?o:"replace";if(s==="replace")i.showItems=t.showItems;else{var l;(l=i.showItems).push.apply(l,Tt(t.showItems))}}}})}function Pl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Rl(e,t,n){return t&&_r(e.prototype,t),n&&_r(e,n),e}function L(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function xl(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var De=function(){function t(n){Pl(this,t),L(this,"id",void 0),L(this,"type",void 0),L(this,"controlType",void 0),L(this,"props",void 0),L(this,"fieldType",void 0),L(this,"customEvents",[]),L(this,"pageStatus",void 0),L(this,"parent",null);var r=xl(this,t)?this.constructor:void 0,u=r.controlType,i=r.controlFieldType,o=r.name,s=r.controlCustomEvents;u||Pn("The ".concat(o," controlType is not define"));var l;this.id=(l=n==null?void 0:n.id)!==null&&l!==void 0?l:ct(10);var a;this.type=(a=n==null?void 0:n.type)!==null&&a!==void 0?a:u,this.props=new K(n==null?void 0:n.props),this.customEvents=s;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var p;this.fieldType=(p=n==null?void 0:n.fieldType)!==null&&p!==void 0?p:i;var y;this.pageStatus=(y=n==null?void 0:n.pageStatus)!==null&&y!==void 0?y:St.UNKNOWN}return Rl(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var u=new r(this.props);return Array.from(u)}return[]}}]),t}();L(De,"mode","Runtime"),L(De,"controlType","control"),L(De,"controlFieldType",void 0),L(De,"__is_control__",!0),L(De,"controlCustomEvents",[]);function gr(e){return(e==null?void 0:e.dataCode)!==void 0&&(e==null?void 0:e.fieldCode)!==void 0}function D(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Lt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function C(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ve(e){return Ve=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ve(e)}function jt(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 Ml(e,t){return t&&(Tl(t)==="object"||typeof t=="function")?t:D(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},qt(e,t)}function Tl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ll(){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=Ll();return function(){var r=Ve(e),u;if(t){var i=Ve(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Ml(this,u)}}var jl=function(e){jt(n,e);var t=Vt(n);function n(r){Lt(this,n);var u;u=t.call(this,r),C(D(u),"dataBind",{}),C(D(u),"caption",{type:"string",required:!0,message:V.getMessage("pleaseEnterCaption")}),C(D(u),"isHideCaption",{type:"boolean"}),C(D(u),"labelPosition",{type:"enum",enum:["top","left"]}),C(D(u),"defaultState",{type:"enum",enum:["default","readonly"]}),C(D(u),"required",{type:"boolean"}),C(D(u),"captionTip",{type:"string",required:!1,message:V.getMessage("pleaseEnterCaptionTip")});var i={fieldCode:{type:"string",required:!0,message:V.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:V.getMessage("pleaseEnterFieldCode")}};if(gr(r.dataBind))u.dataBind={type:"object",required:!0,fields:ue(i),message:V.getMessage("pleaseEnterFieldCode")};else{var o={type:"object",required:!0,fields:{},message:V.getMessage("pleaseEnterFieldCode")};Object.keys(r.dataBind).forEach(function(s){o.fields[s]={type:"object",required:!0,fields:ue(i),message:V.getMessage("pleaseEnterFieldCode")}}),u.dataBind=o}return r.isShowCaptionTip&&(u.captionTip.required=!0),u}return n}(Ct),ql=function(e){jt(n,e);var t=Vt(n);function n(r){Lt(this,n);var u;u=t.call(this,r);var i=r.isHide?!1:r.required;return i&&u.push({type:"string",required:i,message:r.requiredMessage!==""?r.requiredMessage:V.getMessage("runtimeRequired",{caption:r.caption})}),u}return n}(Yn),Ut=function(e){jt(n,e);var t=Vt(n);function n(r){Lt(this,n);var u;u=t.call(this,r),C(D(u),"caption",void 0),C(D(u),"isHideCaption",void 0),C(D(u),"isShowCaptionTip",void 0),C(D(u),"captionTip",void 0),C(D(u),"labelPosition",void 0),C(D(u),"dataBind",void 0),C(D(u),"defaultValue",void 0),C(D(u),"placeholder",void 0),C(D(u),"defaultState",void 0),C(D(u),"required",void 0),C(D(u),"requiredMessage",void 0);var i;u.caption=(i=r==null?void 0:r.caption)!==null&&i!==void 0?i:"";var o;u.isHideCaption=(o=r==null?void 0:r.isHideCaption)!==null&&o!==void 0?o:!1;var s;u.isShowCaptionTip=(s=r==null?void 0:r.isShowCaptionTip)!==null&&s!==void 0?s:!1;var l;u.captionTip=(l=r==null?void 0:r.captionTip)!==null&&l!==void 0?l:"";var a;u.defaultState=(a=r==null?void 0:r.defaultState)!==null&&a!==void 0?a:"default";var f;u.labelPosition=(f=r==null?void 0:r.labelPosition)!==null&&f!==void 0?f:"top";var p;u.placeholder=(p=r==null?void 0:r.placeholder)!==null&&p!==void 0?p:"";var y;u.required=(y=r==null?void 0:r.required)!==null&&y!==void 0?y:!1;var g;u.requiredMessage=(g=r==null?void 0:r.requiredMessage)!==null&&g!==void 0?g:"",u.dataBind=new Xn(r==null?void 0:r.dataBind);var E;return u.defaultValue=(E=r==null?void 0:r.defaultValue)!==null&&E!==void 0?E:"",u}return n}(K);C(Ut,"Rules",jl),C(Ut,"RuntimeRules",ql);function kt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Vl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ue(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ke(e){return ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ke(e)}function Ul(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&&(Nl(t)==="object"||typeof t=="function")?t:kt(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Nt(e,t)}function Nl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Hl(){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 Wl(e){var t=Hl();return function(){var r=ke(e),u;if(t){var i=ke(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return kl(this,u)}}var mr=function(e){Ul(n,e);var t=Wl(n);function n(r){Vl(this,n);var u;return u=t.call(this,r),Ue(kt(u),"controlType","form"),Ue(kt(u),"props",void 0),u.props=new Ut(r==null?void 0:r.props),u}return n}(x);Ue(mr,"controlEventKeys",["on_change","on_focus","on_blur"]),Ue(mr,"controlCustomAttributes",void 0);function zl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Gl(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(n){return n.__proto__||Object.getPrototypeOf(n)},Ne(e)}function Kl(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 Xl(e,t){return t&&(Jl(t)==="object"||typeof t=="function")?t:zl(e)}function Ht(e,t){return Ht=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ht(e,t)}function Jl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Zl(){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=Zl();return function(){var r=Ne(e),u;if(t){var i=Ne(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Xl(this,u)}}var Yl=function(e){Kl(n,e);var t=Ql(n);function n(r){return Gl(this,n),t.call(this,r)}return n}(K);function Wt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function ec(e){if(Array.isArray(e))return Wt(e)}function ie(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function br(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function tc(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){br(i,r,u,o,s,"next",l)}function s(l){br(i,r,u,o,s,"throw",l)}o(void 0)})}}function nc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Er(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function rc(e,t,n){return t&&Er(e.prototype,t),n&&Er(e,n),e}function ee(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ce(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?ce=Reflect.get:ce=function(u,i,o){var s=dc(u,i);if(!!s){var l=Object.getOwnPropertyDescriptor(s,i);return l.get?l.get.call(o||u):l.value}},ce(e,t,n||e)}function te(e){return te=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},te(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&&zt(e,t)}function ic(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function oc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ac(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function sc(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){ee(e,u,n[u])})}return e}function lc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function cc(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):lc(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function fc(e,t){return t&&(pc(t)==="object"||typeof t=="function")?t:ie(e)}function zt(e,t){return zt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},zt(e,t)}function dc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=te(e),e!==null););return e}function wr(e){return ec(e)||oc(e)||hc(e)||ac()}function pc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function hc(e,t){if(!!e){if(typeof e=="string")return Wt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Wt(e,t)}}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 yc(e){var t=vc();return function(){var r=te(e),u;if(t){var i=te(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return fc(this,u)}}function _c(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var gc=1e4,Br=function(t){uc(r,t);var n=yc(r);function r(u){nc(this,r);var i;i=n.call(this,u),ee(ie(i),"controlType","layout"),ee(ie(i),"children",void 0),ee(ie(i),"excludes",void 0),ee(ie(i),"childrenMaxLength",void 0),ee(ie(i),"props",void 0);var o=ic(this,r)?this.constructor:void 0,s=o.excludes,l=o.childrenMaxLength;return i.props=new Yl(u==null?void 0:u.props),wt(ie(i),"children",u==null?void 0:u.children,void 0,"Designer"),i.excludes=ue(s),i.childrenMaxLength=l,i}return rc(r,[{key:"judgeExcludesChildren",value:function(i){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(i)}},{key:"judgeJoinChildren",value:function(i){var o=this.judgeExcludesChildren(i);return o&&this.childrenMaxLength>this.children.length}},{key:"validate",value:function(i,o){var s=this,l=this,a=function(){return ce(te(r.prototype),"validate",s)};return tc(function(){return _c(this,function(f){switch(f.label){case 0:return[4,a().call(l,i,o)];case 1:return f.sent(),[4,Promise.all(l.children.map(function(p){return p.validate(i,o)}))];case 2:return f.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var i=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,o=ce(te(r.prototype),"toDataBindModel",this).call(this),s=o?[o]:[];return this.children.reduce(function(l,a){var f=a.toDataBindModel(i);if(Array.isArray(f)){var p=f.filter(function(y){return!!y});return wr(l).concat(wr(p))}return f&&l.push(f),l},s)}},{key:"toSchema",value:function(){var i=ce(te(r.prototype),"toSchema",this).call(this),o=this.children.map(function(s){var l=s.toSchema();return l});return cc(sc({},i),{children:o})}}]),r}(x);ee(Br,"excludes",!1),ee(Br,"childrenMaxLength",gc);function X(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function mc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function fe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function He(e){return He=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},He(e)}function bc(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&&Gt(e,t)}function Ec(e,t){return t&&(wc(t)==="object"||typeof t=="function")?t:X(e)}function Gt(e,t){return Gt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Gt(e,t)}function wc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Bc(){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 Sc(e){var t=Bc();return function(){var r=He(e),u;if(t){var i=He(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Ec(this,u)}}var Ac=function(e){bc(n,e);var t=Sc(n);function n(r,u,i){mc(this,n);var o;o=t.call(this,u),fe(X(o),"headers",void 0),fe(X(o),"footers",void 0),fe(X(o),"pageIndex",void 0),fe(X(o),"pageSize",void 0),fe(X(o),"pageSizeOptions",void 0),fe(X(o),"totalCount",void 0),wt(X(o),"headers",u==null?void 0:u.headers,r,i),wt(X(o),"footers",u==null?void 0:u.footers,r);var s;o.pageIndex=(s=u==null?void 0:u.pageIndex)!==null&&s!==void 0?s:1;var l;o.pageSize=(l=u==null?void 0:u.pageSize)!==null&&l!==void 0?l:20;var a;o.pageSizeOptions=(a=u==null?void 0:u.pageSizeOptions)!==null&&a!==void 0?a:[20];var f;return o.totalCount=(f=u==null?void 0:u.totalCount)!==null&&f!==void 0?f:0,o}return n}(K);function Kt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Fc(e){if(Array.isArray(e))return Kt(e)}function We(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Sr(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function Cc(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){Sr(i,r,u,o,s,"next",l)}function s(l){Sr(i,r,u,o,s,"throw",l)}o(void 0)})}}function Ic(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ar(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Dc(e,t,n){return t&&Ar(e.prototype,t),n&&Ar(e,n),e}function ze(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function de(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?de=Reflect.get:de=function(u,i,o){var s=Mc(u,i);if(!!s){var l=Object.getOwnPropertyDescriptor(s,i);return l.get?l.get.call(o||u):l.value}},de(e,t,n||e)}function ne(e){return ne=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ne(e)}function $c(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Xt(e,t)}function Oc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Pc(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Fr(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){ze(e,u,n[u])})}return e}function Rc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function Cr(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Rc(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function xc(e,t){return t&&(Tc(t)==="object"||typeof t=="function")?t:We(e)}function Xt(e,t){return Xt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Xt(e,t)}function Mc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=ne(e),e!==null););return e}function Ir(e){return Fc(e)||Oc(e)||Lc(e)||Pc()}function Tc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Lc(e,t){if(!!e){if(typeof e=="string")return Kt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Kt(e,t)}}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 qc(e){var t=jc();return function(){var r=ne(e),u;if(t){var i=ne(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return xc(this,u)}}function Vc(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var Uc=function(e){$c(n,e);var t=qc(n);function n(r){Ic(this,n);var u;return u=t.call(this,r),ze(We(u),"controlType","list"),ze(We(u),"props",void 0),u.props=new Ac(We(u),r==null?void 0:r.props,"Designer"),u}return Dc(n,[{key:"validate",value:function(u,i){var o=this,s=this,l=function(){return de(ne(n.prototype),"validate",o)};return Cc(function(){return Vc(this,function(a){switch(a.label){case 0:return[4,l().call(s,u)];case 1:return a.sent(),[4,Promise.all(s.props.headers.map(function(f){return f.validate(u,i)}))];case 2:return a.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var u=de(ne(n.prototype),"toDataBindModel",this).call(this),i=u?[u]:[],o=this.id;return this.props.headers.reduce(function(s,l){var a=l.toDataBindModel(o);if(Array.isArray(a)){var f=a.filter(function(p){return!!p});return Ir(s).concat(Ir(f))}return a&&s.push(a),s},i)}},{key:"toSchema",value:function(){var u,i,o=de(ne(n.prototype),"toSchema",this).call(this),s=this.props.headers.map(function(a){return a.toSchema()}),l=(i=this.props)===null||i===void 0||(u=i.footers)===null||u===void 0?void 0:u.map(function(a){if(a)return a.toSchema()});return Cr(Fr({},o),{props:Cr(Fr({},this.props),{headers:s,footers:l})})}}]),n}(x);ze(Uc,"controlFieldType",k.LIST);function j(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Dr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function q(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ge(e){return Ge=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ge(e)}function $r(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 kc(e,t){return t&&(Nc(t)==="object"||typeof t=="function")?t:j(e)}function Jt(e,t){return Jt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Jt(e,t)}function Nc(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 Or(e){var t=Hc();return function(){var r=Ge(e),u;if(t){var i=Ge(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return kc(this,u)}}var Wc=function(e){$r(n,e);var t=Or(n);function n(r){Dr(this,n);var u;return u=t.call(this,r),q(j(u),"caption",{type:"string",required:!0,message:V.getMessage("pleaseEnterCaption")}),q(j(u),"width",{type:"number",required:!1,message:V.getMessage("pleaseEnterColumnWidth")}),u.width.required=r.widthType==="px",u}return n}(Ct),zc=function(e){$r(n,e);var t=Or(n);function n(r){Dr(this,n);var u;u=t.call(this,r),q(j(u),"widthType",void 0),q(j(u),"width",void 0),q(j(u),"caption",void 0),q(j(u),"dataBind",void 0),q(j(u),"autoWidth",void 0),q(j(u),"fixed",void 0),q(j(u),"sort",void 0),q(j(u),"align",void 0),q(j(u),"colSpan",void 0),q(j(u),"autoHeight",void 0);var i;u.width=(i=r==null?void 0:r.width)!==null&&i!==void 0?i:150,u.widthType=(r==null?void 0:r.widthType)||"auto";var o;u.caption=(o=r==null?void 0:r.caption)!==null&&o!==void 0?o:"";var s;u.fixed=(s=r==null?void 0:r.fixed)!==null&&s!==void 0?s:"none",u.autoWidth=new Us(r==null?void 0:r.autoWidth),u.dataBind=new Xn(r==null?void 0:r.dataBind);var l;u.sort=(l=r==null?void 0:r.sort)!==null&&l!==void 0?l:!0,u.align=r==null?void 0:r.align,u.colSpan=r==null?void 0:r.colSpan;var a;return u.autoHeight=(a=r==null?void 0:r.autoHeight)!==null&&a!==void 0?a:!1,u}return n}(K);q(zc,"Rules",Wc);function Zt(e){return"children"in e&&se(e.children)}function Pr(e){return"headers"in e.props&&se(e.props.headers)}function Rr(e){return"footers"in e.props&&se(e.props.footers)}function Ke(e,t){Array.isArray(e)&&e.map(n=>{n.type===h.SUBTABLE?Ke(n.props.headers,t):Zt(n)?Ke(n==null?void 0:n.children,t):n.controlType===P.FORM&&t(n)})}const xr=[h.AMOUNT,h.CALC,h.DATE_RANGE],Mr={amount:{caption:"\u91D1\u989D",fieldType:k.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:k.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:k.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:k.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:k.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:k.TIMESTAMP}};function Gc(e){let t=[];return Ke(e,n=>{n.controlType===P.FORM?t.push(n):(n.type,h.SUBTABLE)}),t}function Kc(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===h.TITLE)return n;if(xr.includes(n.type)){const r=n.dataBind;Object.keys(r).forEach(u=>{const i=r[u],o=n.controlId+"_"+u;i.fieldCode=Tr(o),i.dataCode=t})}else n.dataBind.fieldCode=Tr(n.controlId),n.dataBind.dataCode=t;return n})}function Tr(e){const t="field_";return e.startsWith(t)?e:t+e}function Xe(e){return Za[e]}function Xc(e){const t=new re,n=[];return e.forEach(r=>{if(!(r.parentId||!r.dataBind))if(xr.includes(r.type)){const u=r.dataBind,i=r.datasourceBind;Object.keys(u).forEach(o=>{const s=u[o],l=Mr[o].fieldType,a=r.caption+"_"+Mr[o].caption,f=Xe(l);if(!f)return;const p={caption:a,dataBind:s};o==="currency"&&(p.optionConfig="datasource",p.datasourceBind=i);const y=t.createControlInstance(f,{props:p});y&&n.push(y)})}else{const u=Xe(r.fieldType);if(!u)return;const i=t.createControlInstance(u,{props:{caption:r.caption,dataBind:r.dataBind,datasourceBind:r.datasourceBind}});i&&n.push(i)}}),n}function Jc(e){const t=new re,r=(Array.isArray(e)?e:[e]).map(u=>{const i=Xe(u);return t.createControlInstance(i)});return Array.isArray(e)?r:r[0]}function Qt(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function Yt(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function en(e,t,n){return En(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(u=>u.validate(t,n)))).every(u=>u):yield e.validate(t,n)})}const Zc=[h.TITLE,h.GRID_TABLE_COLUMN,h.SUBTABLE_COLUMN,h.OPERATION_COLUMN,h.DATA_VIEW,h.LIST_VIEW,h.HEADER,h.FOOTER,h.SIMPLE_SEARCH,h.ROW,h.GRID_ROW,h.COL,h.GRID,h.DIVIDER,h.TAB_PANE,h.TAB,h.CARD_GROUP,h.ACTION_BAR,h.GRID_LAYOUT_CONTAINER,h.GRID_LAYOUT_WRAP],Qc=[h.CALC],Yc={check:{id:"listPageCheckBtnId",caption:"\u67E5\u770B"},edit:{id:"listPageEditBtnId",caption:"\u7F16\u8F91"},delete:{id:"listPageDeleteBtnId",caption:"\u5220\u9664"}};function $e(e,t){var r,u,i,o,s,l,a,f,p;const n=[];if(se(e))n.push(...e.map(y=>$e(y,t)).flat());else{const y=e.type,{caption:g,content:E}=e.props;let d;if(Zc.includes(y))y===h.OPERATION_COLUMN&&Object.entries(Yc).reduce((_,[c,{caption:v,id:w}])=>{var F;const B=e.props[c];return B&&B.isShow&&_.push({controlId:w,caption:v,type:e.type,controlType:e.controlType,parentId:(F=t==null?void 0:t.controlId)!=null?F:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),_},n);else if(d={controlId:e.id,caption:g||E||e.name,type:e.type,controlType:e.controlType,parentId:(r=t==null?void 0:t.controlId)!=null?r:null,canEdit:!Qc.includes(y),canRead:!0,canHide:!0,group:"element"},t&&t.type===h.SUBTABLE&&(d.caption=t.caption+"_"+d.caption),y===h.VUE_FORM_ITEM&&(d.caption=e.props.controlExportName||e.name),(e.controlType===P.FORM||e.controlType===P.COLUMN)&&((i=(u=e.props)==null?void 0:u.dataBind)==null?void 0:i.fieldCode)!==void 0&&((s=(o=e.props)==null?void 0:o.dataBind)==null?void 0:s.fieldCode)!==""&&(d.group="field"),n.push(d),y===h.VUE_FORM_ITEM){let _="element";((a=(l=e.props)==null?void 0:l.dataBind)==null?void 0:a.fieldCode)!==void 0&&((p=(f=e.props)==null?void 0:f.dataBind)==null?void 0:p.fieldCode)!==""&&(_="field");const c=e.props.permissions;c==null||c.map(v=>{var w;d={controlId:v.key,caption:v.caption,type:e.type,controlType:e.controlType,parentId:(w=e.id)!=null?w:null,canEdit:!0,canRead:!0,canHide:!0,group:_},n.push(d)})}e.children&&n.push(...e.children.map(_=>$e(_,t)).flat()),e.controlType===P.LIST&&n.push(...e.props.headers.map(_=>$e(_,d)).flat())}return n}class re extends Se{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new Be,this.fieldTypes=k,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:n,Setting:r}=t;this.controlSettingMap.set(n.controlType,r)})}registerControl(t){this.constructor.register(t,"Designer");const{Designer:n,Setting:r}=t;this.register(n),this.registeredControlTypes.add(n.controlType),this.controlSettingMap.set(n.controlType,r)}getControlSetting(t){const n=this.controlSettingMap.get(t);return n||null}setInstance(t,n,r){try{if(!t)return;t.updateProps(n,r)}catch(u){throw u}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return En(this,null,function*(){return en(...t)})}getModelBindInfoList(...t){return Yt(...t)}getSchema(...t){return Qt(...t)}listenControlHook(...t){return or.on(...t)}}re.EventLogic=Be;class ef{constructor(){this.designer=new re}ListPageBuilder(){const t=this.designer.createControlInstance(h.LIST_VIEW),n=this.designer.createControlInstance(h.SIMPLE_SEARCH),r=this.designer.createControlInstance(h.GRID_TABLE),u=this.designer.createControlInstance(h.CREATE_FORM_LIST_BUTTON),i=this.designer.createControlInstance(h.IMPORT_RECORD_LIST_BUTTON),o=this.designer.createControlInstance(h.EXPORT_LIST_BUTTON),s=this.designer.createControlInstance(h.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(i),r.children.push(o),r.children.push(s),t.children.push(n),t.children.push(r),t}ProListPageBuilder(){const t=this.designer.createControlInstance(h.LIST_VIEW);t.props.countType="async";const n=this.designer.createControlInstance(h.SIMPLE_SEARCH),r=this.designer.createControlInstance(h.GRID_TABLE),u=this.designer.createControlInstance(h.EXPORT_LIST_BUTTON),i=this.designer.createControlInstance(h.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(i),t.children.push(n),t.children.push(r),t}FormPageBuilder(){const t=this.designer.createControlInstance(h.DATA_VIEW),n=this.designer.createControlInstance(h.TITLE),r=this.designer.createControlInstance(h.GRID);return t.children.push(n),t.children.push(r),t}VuePageBuilder(){const t=this.designer.createControlInstance(h.GRID),n=this.designer.createControlInstance(h.VUE_FORM_ITEM);return n.props.isHideCaption=!0,n.props.controlExportName="VuePage",t.children.push(n),t}}class Lr{constructor(t){var n;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=(n=t.getParentBeforeInstanceMove)!=null?n:r=>r.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?Oe(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?Vr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(n=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(n))})}getSettingItems(t){return t.type==="group"?t.items:t.items.reduce((n,r)=>(n.push(...r.items),n),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=Oe(t)}updateDataFieldCodeMap(t){const n=Oe(t);if(!n)return;const r=this.dataFieldCodeMap.get(n.props.datasourceBind.dataCode);if(!!r){for(const[u,i]of r.entries())if(i.id===t.id){r.delete(u);break}qr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;pe(this.instance,u=>{t.push(u),n.set(u.id,u),qr(u,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function jr(e,t,n){const{dataCode:r,fieldCode:u}=t;r&&u&&(e.has(r)||e.set(r,new Map),e.get(r).set(u,n))}function qr(e,t){if(e.controlType===P.FORM){const n=e.props.dataBind;gr(n)?jr(t,n,e):Object.values(n).forEach(r=>{jr(t,r,e)})}}function pe(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{var u,i;t(r),Zt(r)&&pe(r.children,t),Pr(r)&&pe(r.props.headers,t),Rr(r)&&pe((i=(u=r.props)==null?void 0:u.footers)!=null?i:[],t)})}function tn(e){return[h.SUBTABLE,h.DATA_VIEW,h.LIST_VIEW].includes(e.type)}function Oe(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!tn(t);)t=t.parent;return t}function Vr(e){const t=[e];return pe(e,n=>{n!==e&&t.includes(n.parent)&&!tn(n)&&t.push(n)}),t}function tf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ur(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function nf(e,t,n){return t&&Ur(e.prototype,t),n&&Ur(e,n),e}function nn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var J=function(){function e(t){tf(this,e),nn(this,"visible",void 0),nn(this,"expression",void 0),nn(this,"updateParent",void 0);var n;this.visible=(n=t==null?void 0:t.visible)!==null&&n!==void 0?n:!0;var r;this.expression=(r=t==null?void 0:t.expression)!==null&&r!==void 0?r:!1;var u;this.updateParent=(u=t==null?void 0:t.updateParent)!==null&&u!==void 0?u:!1}return nf(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function rf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function kr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function uf(e,t,n){return t&&kr(e.prototype,t),n&&kr(e,n),e}function H(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var of=function(){function e(t){rf(this,e),H(this,"type",void 0),H(this,"label",void 0),H(this,"key",void 0),H(this,"component",void 0),H(this,"effect",void 0),H(this,"scopeEffect",void 0),H(this,"defaultValue",void 0),H(this,"validator",void 0),H(this,"props",void 0),H(this,"effectKeys",void 0),this.type=t.type,this.label=t.label,this.key=t.key,this.component=t.component;var n;this.effect=(n=t.effect)!==null&&n!==void 0?n:{};var r;this.scopeEffect=(r=t.scopeEffect)!==null&&r!==void 0?r:Ja,this.defaultValue=t.defaultValue,this.validator=t.validator;var u;this.props=(u=t.props)!==null&&u!==void 0?u:new J,this.effectKeys=Object.keys(this.effect)}return uf(e,[{key:"filterEffects",value:function(n){var r=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(u){var i=new RegExp("^".concat(u,"(\\.\\w+)*$"));return i.test(n)}).map(function(u){return r.effect[u]})}},{key:"callEffectFn",value:function(n,r){try{var u=n.apply(null,r);yt(u)&&Object.assign(this.props,u)}catch(i){we(`effect error
|
|
2
|
+
`.concat(i))}}},{key:"callEffect",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),i=1;i<r;i++)u[i-1]=arguments[i];var o=this;this.filterEffects(n).forEach(function(s){return o.callEffectFn(s,u)})}},{key:"callScopeEffect",value:function(){for(var n=arguments.length,r=new Array(n),u=0;u<n;u++)r[u]=arguments[u];this.callEffectFn(this.scopeEffect,r)}}]),e}();function af(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function oe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Nr=function e(t){af(this,e),oe(this,"type","group"),oe(this,"title",void 0),oe(this,"required",void 0),oe(this,"items",void 0),oe(this,"tips",void 0),oe(this,"fromId",void 0),oe(this,"visible",void 0);var n;this.title=(n=t.title)!==null&&n!==void 0?n:"";var r;this.required=(r=t.required)!==null&&r!==void 0?r:!1,this.items=t.items,this.tips=t.tips,this.visible=t.items.some(function(u){var i;return(i=u.props)===null||i===void 0?void 0:i.visible})};function sf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function rn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function lf(e){return"type"in e&&e.type==="tab"}var Pe=function e(t){sf(this,e),rn(this,"type","tab"),rn(this,"title",void 0),rn(this,"items",void 0),this.title=t.title,this.items=t.items};function Hr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function cf(e){if(Array.isArray(e))return e}function ff(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function df(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(n){return n.__proto__||Object.getPrototypeOf(n)},Je(e)}function pf(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&&un(e,t)}function hf(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n!=null){var r=[],u=!0,i=!1,o,s;try{for(n=n.call(e);!(u=(o=n.next()).done)&&(r.push(o.value),!(t&&r.length===t));u=!0);}catch(l){i=!0,s=l}finally{try{!u&&n.return!=null&&n.return()}finally{if(i)throw s}}return r}}function vf(){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 yf(e,t){return t&&(gf(t)==="object"||typeof t=="function")?t:ff(e)}function un(e,t){return un=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},un(e,t)}function _f(e,t){return cf(e)||hf(e,t)||mf(e,t)||vf()}function gf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function mf(e,t){if(!!e){if(typeof e=="string")return Hr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Hr(e,t)}}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 Ef(e){var t=bf();return function(){var r=Je(e),u;if(t){var i=Je(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return yf(this,u)}}var wf=function(e){pf(n,e);var t=Ef(n);function n(r){df(this,n);var u;return u=t.call(this,r),yt(r)&&Object.entries(r).forEach(function(i){var o=_f(i,2),s=o[0],l=o[1];u[s]=l}),u}return n}(J);function Re(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Bf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ze(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Qe(e){return Qe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Qe(e)}function Sf(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&&on(e,t)}function Af(e,t){return t&&(Ff(t)==="object"||typeof t=="function")?t:Re(e)}function on(e,t){return on=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},on(e,t)}function Ff(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Cf(){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 If(e){var t=Cf();return function(){var r=Qe(e),u;if(t){var i=Qe(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Af(this,u)}}var Df=function(e){Sf(n,e);var t=If(n);function n(r){Bf(this,n);var u;u=t.call(this,r),Ze(Re(u),"maxLength",void 0),Ze(Re(u),"minLength",void 0),Ze(Re(u),"placeholder",void 0),Ze(Re(u),"i18n",void 0);var i;u.maxLength=(i=r==null?void 0:r.maxLength)!==null&&i!==void 0?i:"";var o;u.minLength=(o=r==null?void 0:r.minLength)!==null&&o!==void 0?o:"";var s;u.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var l;return u.i18n=(l=r==null?void 0:r.i18n)!==null&&l!==void 0?l:!1,u}return n}(J);function Ye(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 an(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function et(e){return et=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},et(e)}function Of(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&&sn(e,t)}function Pf(e,t){return t&&(Rf(t)==="object"||typeof t=="function")?t:Ye(e)}function sn(e,t){return sn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},sn(e,t)}function Rf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function xf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Mf(e){var t=xf();return function(){var r=et(e),u;if(t){var i=et(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Pf(this,u)}}var Tf=function(e){Of(n,e);var t=Mf(n);function n(r){$f(this,n);var u;u=t.call(this,r),an(Ye(u),"max",void 0),an(Ye(u),"min",void 0),an(Ye(u),"placeholder",void 0);var i;u.max=(i=r==null?void 0:r.max)!==null&&i!==void 0?i:"";var o;u.min=(o=r==null?void 0:r.min)!==null&&o!==void 0?o:"";var s;return u.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"",u}return n}(J);function tt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Lf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ln(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function nt(e){return nt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},nt(e)}function jf(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&&cn(e,t)}function qf(e,t){return t&&(Vf(t)==="object"||typeof t=="function")?t:tt(e)}function cn(e,t){return cn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},cn(e,t)}function Vf(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 kf(e){var t=Uf();return function(){var r=nt(e),u;if(t){var i=nt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return qf(this,u)}}var Nf=function(e){jf(n,e);var t=kf(n);function n(r){Lf(this,n);var u;u=t.call(this,r),ln(tt(u),"showType",void 0),ln(tt(u),"tips",void 0),ln(tt(u),"disabled",void 0);var i;u.showType=(i=r==null?void 0:r.showType)!==null&&i!==void 0?i:"switch";var o;u.tips=(o=r==null?void 0:r.tips)!==null&&o!==void 0?o:"";var s;return u.disabled=(s=r==null?void 0:r.disabled)!==null&&s!==void 0?s:!1,u}return n}(J);function Wr(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Hf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Wf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function rt(e){return rt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},rt(e)}function zf(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&&fn(e,t)}function Gf(e,t){return t&&(Kf(t)==="object"||typeof t=="function")?t:Wr(e)}function fn(e,t){return fn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},fn(e,t)}function Kf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Xf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Jf(e){var t=Xf();return function(){var r=rt(e),u;if(t){var i=rt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Gf(this,u)}}var Zf=function(e){zf(n,e);var t=Jf(n);function n(r){Hf(this,n);var u;u=t.call(this,r),Wf(Wr(u),"options",void 0);var i;return u.options=(i=r==null?void 0:r.options)!==null&&i!==void 0?i:[],u}return n}(J);function dn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Qf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function zr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ut(e){return ut=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ut(e)}function Yf(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&&pn(e,t)}function ed(e,t){return t&&(td(t)==="object"||typeof t=="function")?t:dn(e)}function pn(e,t){return pn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},pn(e,t)}function td(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function nd(){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 rd(e){var t=nd();return function(){var r=ut(e),u;if(t){var i=ut(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return ed(this,u)}}var ud=function(e){Yf(n,e);var t=rd(n);function n(r){Qf(this,n);var u;u=t.call(this,r),zr(dn(u),"placeholder",void 0),zr(dn(u),"options",void 0);var i;u.placeholder=(i=r==null?void 0:r.placeholder)!==null&&i!==void 0?i:"";var o;return u.options=(o=r==null?void 0:r.options)!==null&&o!==void 0?o:[],u}return n}(J);function hn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function id(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Gr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function it(e){return it=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},it(e)}function od(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&&vn(e,t)}function ad(e,t){return t&&(sd(t)==="object"||typeof t=="function")?t:hn(e)}function vn(e,t){return vn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},vn(e,t)}function sd(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ld(){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 cd(e){var t=ld();return function(){var r=it(e),u;if(t){var i=it(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return ad(this,u)}}var fd=function(e){od(n,e);var t=cd(n);function n(r){id(this,n);var u;u=t.call(this,r),Gr(hn(u),"options",void 0),Gr(hn(u),"showType",void 0);var i;u.options=(i=r==null?void 0:r.options)!==null&&i!==void 0?i:[];var o;return u.showType=(o=r==null?void 0:r.showType)!==null&&o!==void 0?o:"outline",u}return n}(J);function ae(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dd(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function he(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ot(e){return ot=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ot(e)}function pd(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&&yn(e,t)}function hd(e,t){return t&&(vd(t)==="object"||typeof t=="function")?t:ae(e)}function yn(e,t){return yn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},yn(e,t)}function vd(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function yd(){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 _d(e){var t=yd();return function(){var r=ot(e),u;if(t){var i=ot(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return hd(this,u)}}var gd=function(e){pd(n,e);var t=_d(n);function n(r){dd(this,n);var u;u=t.call(this,r),he(ae(u),"maxLength",void 0),he(ae(u),"minLength",void 0),he(ae(u),"placeholder",void 0),he(ae(u),"i18n",void 0),he(ae(u),"maxRows",void 0),he(ae(u),"minRows",void 0);var i;u.maxLength=(i=r==null?void 0:r.maxLength)!==null&&i!==void 0?i:"";var o;u.minLength=(o=r==null?void 0:r.minLength)!==null&&o!==void 0?o:"";var s;u.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var l;u.maxRows=(l=r==null?void 0:r.maxRows)!==null&&l!==void 0?l:"";var a;u.minRows=(a=r==null?void 0:r.minRows)!==null&&a!==void 0?a:"";var f;return u.i18n=(f=r==null?void 0:r.i18n)!==null&&f!==void 0?f:!1,u}return n}(J);function md(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _n(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){md(e,u,n[u])})}return e}function bd(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function gn(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):bd(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Ed(e,t){switch(e){case"input":return new Df(t);case"textarea":return new gd(t);case"input-number":return new Tf(t);case"switch":return new Nf(t);case"radio":return new fd(t);case"checkbox":return new Zf(t);case"select":return new ud(t);default:return new wf(t)}}function wd(e){return function(t){var n=e.get(t);if(!!n)return new of(gn(_n({},n),{props:Ed(n.component,"props"in n?n.props:void 0)}))}}function Bd(e){var t=e.fields.reduce(function(u,i){return u.set(i.key,i),u},new Map);function n(u){return new Nr(gn(_n({},u),{items:u.items.map(wd(t)).filter(Boolean)}))}function r(u){return u.map(n)}return e.groups.map(function(u){return lf(u)?new Pe(gn(_n({},u),{items:r(u.items)})):n(u)})}let mn="";class Kr extends Vn{constructor(t){super(),this.isMounted=!1,this.id=ct(8),this.__pluginsApplied=!1,this.getSchema=Qt,this.getModelBindInfoList=Yt,this.generatePermissions=$e,this.$options=Object.freeze(t);const{autoMount:n=!1,Designer:r=re,schema:u,mode:i="form",store:o={}}=this.$options;this.eventLogic=new Be,this.designer=new r,this.store=new Lr(_e({instance:this.designer.createControl(Array.isArray(u)?u:[u])},o)),this.mode=i,n&&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 n;try{mn=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this),mn=""}catch(r){we(`${mn||t.constructor.name} Plugin apply Error
|
|
3
|
+
${r}`)}}),this.__pluginsApplied=!0)}emit(t,...n){return super.emit(t,n)}on(t,n){return super.on(t,n)}setInstances(t,n){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],n))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var u,i;const t=this.store.selected;if(!t)return;let n=this.getControlSetting(t.type);if(((u=t.parent)==null?void 0:u.controlType)===P.WRAP){const o=this.getControlSetting((i=t.parent)==null?void 0:i.type);n=this.concatSetting(n,o,t.parent.id)}this.store.setSelectInstanceSettings(n),this.callSelectedEffect("");const r={from:null,current:this.store.selectedInstanceDataScopeParent,oldParent:null,newParent:t.parent};this.callSelectedScopeEffect(r)}concatSetting(t,n,r){var i,o,s,l,a,f,p,y;let u=t;if(((i=t[0])==null?void 0:i.type)==="tab"&&((o=n[0])==null?void 0:o.type)==="tab"){const g=t,E=n.slice(0);u=g.map((d,_)=>{const c=new Pe(d),v=E.findIndex(B=>B.title===d.title);if(v===-1)return c;const w=E.splice(v,1)[0];return w&&(c.items=[...this.formatGroupSetting(w.items,r),...c.items]),c}),E.length&&(u=[...u,...E.map(d=>this.formatGroupSetting(d,r))])}else if(((s=t[0])==null?void 0:s.type)==="group"&&((l=n[0])==null?void 0:l.type)==="group"){const g=t,E=n;u=[...this.formatGroupSetting(E,r),...g]}else if(((a=t[0])==null?void 0:a.type)==="tab"&&((f=n[0])==null?void 0:f.type)==="group"){const g=t,E=n;u=g.map((d,_)=>{const c=new Pe(d);return _===0&&(c.items=[...this.formatGroupSetting(E,r),...c.items]),c})}else if(((p=t[0])==null?void 0:p.type)==="group"&&((y=n[0])==null?void 0:y.type)==="tab"){const g=t;u=n.map((d,_)=>{const c=new Pe(d);return _===0&&(c.items=[...c.items,...this.formatGroupSetting(g,r)]),c})}return u}formatGroupSetting(t,n){if(se(t))return t.map(r=>{const u=new Nr(r);return u.fromId=n,u});{const r=new Pe(t);return r.items=this.formatGroupSetting(r.items,n),r}}setControlConfig(...t){return this.designer.registerControlConfig(...t)}getControlConfig(t){return this.designer.getControlConfig(t)}getControlSetting(t){const n=this.designer.getControlSetting(t);return n?Bd(n):[]}selectInstance(t){this.beforeSelectInstance(),this.store.setSelectInstance(t),this.afterSelectInstance()}setSelectedFieldItem(t){this.store.setSelectedFieldItem(t),this.callSelectedEffect("dataBind",{fieldItem:t})}moveStart(t){const n=this.getInstance(t);n&&this.store.setMovingInstance(n)}moveEnd(t=this.store.movingInstance){var l;if(t===null)return;const n=this.getInstance(t);if(!n)return;const r=this.store.movingInstanceOldDataScopeParent,u=Oe(n),i=this.store.movingInstanceOldParent,o=n.parent;this.store.setMovingInstance(null),n.id!==((l=this.store.selected)==null?void 0:l.id)?this.selectInstance(n):this.store.setSelectInstance(n),this.store.getFlatInstances();const s={from:r,current:u,oldParent:i,newParent:o};this.callSelectedScopeEffect(s),i?this.emit("moved",_e({},s)):this.emit("joined",_e({},s))}createInstance(t,n){return this.designer.createControlInstance(t,n)}getInstance(t){return typeof t=="string"?this.store.instanceIdMap.get(t):t}getInstances(){return this.store.flatInstances}getInstancesFromType(t){return this.getInstances().filter(n=>n.type===t)}getDataScopeInstances(){return this.store.selectedDataScopeFlatInstances}getDataScopeInstancesFromType(t){return this.getDataScopeInstances().filter(n=>n.type===t)}updateInstancePropValue(t,n,r,u){var o;!Mn(t.props,n,r)||(n.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((o=this.store.selected)==null?void 0:o.id)&&this.callSelectedEffect(n,u),this.emit("updated",{instance:t,propName:n,value:r}))}updateInstanceProps(t,n,r,u=""){Object.entries(n).forEach(([i,o])=>{const s=`${u?u+".":""}${i}`;bs(o)?this.updateInstanceProps(t,o,r,s):this.updateInstancePropValue(t,s,o,r)})}setInstance(t,n,r,u){_t(n)?this.updateInstancePropValue(t,String(n),r,u):this.updateInstanceProps(t,n,r)}removeInstance(t){const n=t.parent;if(!n)return;const r=n.controlType===P.LIST&&n.props.headers.includes(t)?n.props.headers:n.children,u=r.findIndex(i=>i===t);u>-1&&r.splice(u,1),this.store.getFlatInstances(),this.emit("removed",{instance:t,index:u,parent:n})}replaceInstance(t,n){const r=t.parent;if(!r)return;const u=r.controlType===P.LIST&&r.props.headers.includes(t)?r.props.headers:r.children,i=u.findIndex(o=>o===t);i>-1&&u.splice(i,1,n),this.store.getFlatInstances()}updateInstanceType(t,n){const r=t.toSchema(),u=this.createInstance(n,{id:r.id,props:r.props});if(!u){Te(`can\u2018t update instance type to ${n}`);return}return u}validate(t,n){return en(this.store.instance,t,n)}getCustomControlsInUse(){return this.getInstances().filter(this.assertInstanceIsCustomControl).reduce((t,n)=>(t.includes(n.type)||t.push(n.type),t),[])}assertInstanceIsCustomControl(t){return!Es(_t(t)?t:t.type)}static register(...t){return re.register(...t),this}static judgeControlIsRegistered(t){return re.staticRegisteredTypes.has(t.Designer.controlType)}judgeControlIsRegistered(t){return this.designer.registeredControlTypes.has(t.Designer.controlType)}register(...t){return this.designer.registerControl(t[0]),this}assertInstance(t,n){return _t(n)?t.type===n:n.includes(t.type)}getInstanceInListControl(t){let n=t;for(;n;){if(n.controlType===P.LIST)return!0;n=n.parent}return!1}getInstanceParentControl(t,n){if(!!t.parent)return this.assertInstance(t.parent,n)?t.parent:this.getInstanceParentControl(t.parent,n)}callSelectedEffect(t,n={}){this.store.selectedInstanceSettingItems.forEach(r=>{r.callEffect(t,this,_e({control:this.store.selected},n))})}callSelectedScopeEffect(t={}){this.store.selectedInstanceSettingItems.forEach(n=>{n.callScopeEffect(this,_e({control:this.store.selected},t))})}}Kr.EventLogic=Be,m.Builder=ef,m.Designer=re,m.Driven=Kr,m.Store=Lr,m.checkSchema=en,m.fillModelBindInfoListFieldCode=Kc,m.findInstanceDataScopeParent=Oe,m.generatePermissions=$e,m.getColumnTypeFromFiledType=Xe,m.getColumnsFromFiledType=Jc,m.getColumnsFromModelBindInfoList=Xc,m.getDataScopeFlatInstances=Vr,m.getMasterFormControls=Gc,m.getModelBindInfoList=Yt,m.hasChildrenControl=Zt,m.hasFooterControl=Rr,m.hasHeaderControl=Pr,m.isDataScopeInstance=tn,m.loop=pe,m.loopFormControl=Ke,m.toSchema=Qt,Object.defineProperty(m,"__esModule",{value:!0})});
|
package/dist/types/Designer.d.ts
CHANGED
|
@@ -31,6 +31,6 @@ export default class Designer<EventKeys extends string = string> extends Registe
|
|
|
31
31
|
checkSchema(...args: Parameters<typeof checkSchema>): Promise<ReturnType<typeof checkSchema>>;
|
|
32
32
|
getModelBindInfoList(...args: Parameters<typeof getModelBindInfoList>): ReturnType<typeof getModelBindInfoList>;
|
|
33
33
|
getSchema(...args: Parameters<typeof toSchema>): ReturnType<typeof toSchema>;
|
|
34
|
-
listenControlHook(...args: Parameters<
|
|
34
|
+
listenControlHook(...args: Parameters<typeof controlHooksEmitter['on']>): ReturnType<typeof controlHooksEmitter['on']>;
|
|
35
35
|
}
|
|
36
36
|
export { ToolboxType, DesignerServices, Designer };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ControlsKeys, ControlDesignerInstance, DesignerFormControl, DesignerLayoutControl, DesignerControl, DesignerListControl, DesignerSearchControl, DesignerWrapControl } from '@byteluck-fe/model-driven-core';
|
|
2
2
|
export declare function hasChildrenControl(instance: DesignerControl): instance is DesignerLayoutControl | DesignerSearchControl | DesignerWrapControl;
|
|
3
3
|
export declare function hasHeaderControl(instance: DesignerControl): instance is DesignerListControl;
|
|
4
|
+
export declare function hasFooterControl(instance: DesignerControl): instance is DesignerListControl;
|
|
4
5
|
export declare function loopFormControl(control: ControlDesignerInstance<ControlsKeys>[], callback: (item: DesignerFormControl | ControlDesignerInstance<'subtable'>, children?: DesignerFormControl[]) => any): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-driven",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0-alpha.11",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-controls": "2.
|
|
30
|
-
"@byteluck-fe/model-driven-core": "2.
|
|
31
|
-
"@byteluck-fe/model-driven-settings": "2.
|
|
32
|
-
"@byteluck-fe/model-driven-shared": "2.7.0-
|
|
29
|
+
"@byteluck-fe/model-driven-controls": "2.8.0-alpha.11",
|
|
30
|
+
"@byteluck-fe/model-driven-core": "2.8.0-alpha.7",
|
|
31
|
+
"@byteluck-fe/model-driven-settings": "2.8.0-alpha.7",
|
|
32
|
+
"@byteluck-fe/model-driven-shared": "2.7.0-alpha.38a"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "9461a0a8ecd7b491a38113bdc91de07cf78e971d"
|
|
35
35
|
}
|