@byteluck-fe/model-driven-driven 2.2.0 → 2.2.1-beta.2

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.
@@ -68,13 +68,6 @@ function _inherits(subClass, superClass) {
68
68
  });
69
69
  if (superClass) _setPrototypeOf(subClass, superClass);
70
70
  }
71
- function _instanceof(left, right) {
72
- if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
73
- return !!right[Symbol.hasInstance](left);
74
- } else {
75
- return left instanceof right;
76
- }
77
- }
78
71
  function _iterableToArray(iter) {
79
72
  if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
80
73
  }
@@ -185,11 +178,10 @@ function _createSuper(Derived) {
185
178
  return _possibleConstructorReturn(this, result);
186
179
  };
187
180
  }
188
- import { error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from "@byteluck-fe/model-driven-shared";
181
+ import { CONTROL_BASE_TYPE, error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from "@byteluck-fe/model-driven-shared";
189
182
  import { findInstanceDataScopeParent, Store } from "./Store";
190
183
  import { Designer } from "./Designer";
191
184
  import EventLogic from "./EventLogic";
192
- import { DesignerControl, DesignerListControl, DesignerWrapControl } from "@byteluck-fe/model-driven-core";
193
185
  import { checkSchema, generatePermissions, getModelBindInfoList, toSchema } from "./utils";
194
186
  import { Group, initSettings, Tab } from "@byteluck-fe/model-driven-settings";
195
187
  // 当前正在注册的插件名称
@@ -285,13 +277,17 @@ var applyingPluginName = "";
285
277
  });
286
278
  };
287
279
  _proto.setSelectedInstanceSetting = function setSelectedInstanceSetting() {
280
+ var _instance_parent;
288
281
  var instance = this.store.selected;
289
282
  if (!instance) {
290
283
  return;
291
284
  }
292
285
  var setting = this.getControlSetting(instance.type);
293
- if (_instanceof(instance.parent, DesignerWrapControl)) {
294
- var wrapSetting = this.getControlSetting(instance.parent.type);
286
+ // console.log('iswrap:', instance.parent?.controlType, instance.parent)
287
+ // if (instance.parent instanceof DesignerWrapControl) {
288
+ if (((_instance_parent = instance.parent) === null || _instance_parent === void 0 ? void 0 : _instance_parent.controlType) === CONTROL_BASE_TYPE.WRAP) {
289
+ var _instance_parent1;
290
+ var wrapSetting = this.getControlSetting((_instance_parent1 = instance.parent) === null || _instance_parent1 === void 0 ? void 0 : _instance_parent1.type);
295
291
  setting = this.concatSetting(setting, wrapSetting, instance.parent.id);
296
292
  }
297
293
  this.store.setSelectInstanceSettings(setting);
@@ -433,10 +429,14 @@ var applyingPluginName = "";
433
429
  return this.designer.createControlInstance(type, initSchema);
434
430
  };
435
431
  _proto.getInstance = function getInstance(instanceId) {
436
- if (_instanceof(instanceId, DesignerControl)) {
437
- return instanceId;
432
+ // if (instanceId instanceof DesignerControl) {
433
+ // return instanceId
434
+ // }
435
+ // return this.store.instanceIdMap.get(instanceId)
436
+ if (typeof instanceId === "string") {
437
+ return this.store.instanceIdMap.get(instanceId);
438
438
  }
439
- return this.store.instanceIdMap.get(instanceId);
439
+ return instanceId;
440
440
  };
441
441
  _proto.getInstances = function getInstances() {
442
442
  return this.store.flatInstances;
@@ -501,7 +501,8 @@ var applyingPluginName = "";
501
501
  if (!parent) {
502
502
  return;
503
503
  }
504
- var parentList = _instanceof(parent, DesignerListControl) && parent.props.headers.includes(instance) ? parent.props.headers : parent.children;
504
+ var parentList = // parent instanceof DesignerListControl &&
505
+ parent.controlType === CONTROL_BASE_TYPE.LIST && parent.props.headers.includes(instance) ? parent.props.headers : parent.children;
505
506
  var index = parentList.findIndex(function(item) {
506
507
  return item === instance;
507
508
  });
@@ -518,7 +519,8 @@ var applyingPluginName = "";
518
519
  if (!parent) {
519
520
  return;
520
521
  }
521
- var parentList = _instanceof(parent, DesignerListControl) && parent.props.headers.includes(oldInstance) ? parent.props.headers : parent.children;
522
+ var parentList = // parent instanceof DesignerListControl &&
523
+ parent.controlType === CONTROL_BASE_TYPE.LIST && parent.props.headers.includes(oldInstance) ? parent.props.headers : parent.children;
522
524
  var index = parentList.findIndex(function(item) {
523
525
  return item === oldInstance;
524
526
  });
@@ -577,7 +579,8 @@ var applyingPluginName = "";
577
579
  * */ _proto.getInstanceInListControl = function getInstanceInListControl(instance) {
578
580
  var _instance = instance;
579
581
  while(_instance){
580
- if (_instanceof(_instance, DesignerListControl)) {
582
+ // if (_instance instanceof DesignerListControl) {
583
+ if (_instance.controlType === CONTROL_BASE_TYPE.LIST) {
581
584
  return true;
582
585
  }
583
586
  _instance = _instance.parent;
package/dist/esm/Store.js CHANGED
@@ -82,10 +82,10 @@ function _unsupportedIterableToArray(o, minLen) {
82
82
  if (n === "Map" || n === "Set") return Array.from(n);
83
83
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
84
84
  }
85
- import { DesignerFormControl, DataBind } from "@byteluck-fe/model-driven-core";
85
+ import { DataBind } from "@byteluck-fe/model-driven-core";
86
86
  import { hasChildrenControl, hasHeaderControl } from "./designerUtils";
87
87
  import { Group } from "@byteluck-fe/model-driven-settings";
88
- import { CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
88
+ import { CONTROL_BASE_TYPE, CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
89
89
  // 维护当前selected,。。 selectedControlSetting
90
90
  export var Store = /*#__PURE__*/ function() {
91
91
  "use strict";
@@ -237,7 +237,8 @@ function setDataFieldCodeMap(dataFieldCodeMap, dataBind, instance) {
237
237
  }
238
238
  }
239
239
  function setInstanceInDataFieldCodeMap(instance, dataFieldCodeMap) {
240
- if (_instanceof(instance, DesignerFormControl)) {
240
+ // if (instance instanceof DesignerFormControl) {
241
+ if (instance.controlType === CONTROL_BASE_TYPE.FORM) {
241
242
  var dataBind = instance.props.dataBind;
242
243
  if (_instanceof(dataBind, DataBind)) {
243
244
  setDataFieldCodeMap(dataFieldCodeMap, dataBind, instance);
@@ -1,11 +1,3 @@
1
- function _instanceof(left, right) {
2
- if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
3
- return !!right[Symbol.hasInstance](left);
4
- } else {
5
- return left instanceof right;
6
- }
7
- }
8
- import { DesignerFormControl } from "@byteluck-fe/model-driven-core";
9
1
  import { CONTROL_TYPE, isArray } from "@byteluck-fe/model-driven-shared";
10
2
  export function hasChildrenControl(instance) {
11
3
  return "children" in instance && isArray(instance.children);
@@ -25,7 +17,8 @@ export function loopFormControl(control, callback) {
25
17
  loopFormControl(// @ts-ignore
26
18
  item === null || item === void 0 ? void 0 : item.children, callback);
27
19
  // @ts-ignore
28
- } else if (_instanceof(item, DesignerFormControl)) {
20
+ // } else if (item instanceof DesignerFormControl) {
21
+ } else if (item.controlType === CONTROL_BASE_TYPE.FORM) {
29
22
  callback(item);
30
23
  }
31
24
  });
package/dist/esm/utils.js CHANGED
@@ -38,13 +38,6 @@ function _asyncToGenerator(fn) {
38
38
  });
39
39
  };
40
40
  }
41
- function _instanceof(left, right) {
42
- if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
43
- return !!right[Symbol.hasInstance](left);
44
- } else {
45
- return left instanceof right;
46
- }
47
- }
48
41
  function _iterableToArray(iter) {
49
42
  if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
50
43
  }
@@ -188,15 +181,15 @@ var __generator = this && this.__generator || function(thisArg, body) {
188
181
  }
189
182
  };
190
183
  import { loopFormControl } from "./designerUtils";
191
- import { DesignerColumnControl, DesignerListControl, DesignerFormControl } from "@byteluck-fe/model-driven-core";
192
- import { CONTROL_TYPE, FieldTypeToColumnType, isArray } from "@byteluck-fe/model-driven-shared";
184
+ import { CONTROL_BASE_TYPE, CONTROL_TYPE, FieldTypeToColumnType, isArray } from "@byteluck-fe/model-driven-shared";
193
185
  import Designer from "./Designer";
194
186
  import { objectDataBindControlTypes, objectDataBindKeyToFieldType } from "./constants";
195
187
  export function getMasterFormControls(controls) {
196
188
  var formctls = [];
197
189
  // @ts-ignore
198
190
  loopFormControl(controls, function(item) {
199
- if (_instanceof(item, DesignerFormControl)) {
191
+ // if (item instanceof DesignerFormControl) {
192
+ if (item.controlType === CONTROL_BASE_TYPE.FORM) {
200
193
  formctls.push(item);
201
194
  } else if (item.type === CONTROL_TYPE.SUBTABLE) {}
202
195
  });
@@ -437,8 +430,14 @@ function generatePermissions(controls, parent) {
437
430
  if (type === CONTROL_TYPE.VUE_FORM_ITEM) {
438
431
  permissionItem.caption = controls.props.controlExportName || controls.name;
439
432
  }
440
- if (_instanceof(controls, DesignerFormControl) || _instanceof(controls, DesignerColumnControl)) {
441
- var _controls_props1, _controls_props_dataBind, _controls_props2, _controls_props_dataBind1;
433
+ // if (
434
+ // controls instanceof DesignerFormControl ||
435
+ // controls instanceof DesignerColumnControl
436
+ // ) {
437
+ if (controls.controlType === CONTROL_BASE_TYPE.FORM || controls.controlType === CONTROL_BASE_TYPE.COLUMN) {
438
+ var //@ts-ignore
439
+ _controls_props1, _controls_props_dataBind, //@ts-ignore
440
+ _controls_props2, _controls_props_dataBind1;
442
441
  if (((_controls_props1 = controls.props) === null || _controls_props1 === void 0 ? void 0 : (_controls_props_dataBind = _controls_props1.dataBind) === null || _controls_props_dataBind === void 0 ? void 0 : _controls_props_dataBind.fieldCode) !== undefined && ((_controls_props2 = controls.props) === null || _controls_props2 === void 0 ? void 0 : (_controls_props_dataBind1 = _controls_props2.dataBind) === null || _controls_props_dataBind1 === void 0 ? void 0 : _controls_props_dataBind1.fieldCode) !== "") {
443
442
  permissionItem.group = "field";
444
443
  }
@@ -517,7 +516,8 @@ function generatePermissions(controls, parent) {
517
516
  return generatePermissions(item, parent);
518
517
  }).flat()));
519
518
  }
520
- if (_instanceof(controls, DesignerListControl)) {
519
+ // if (controls instanceof DesignerListControl) {
520
+ if (controls.controlType === CONTROL_BASE_TYPE.LIST) {
521
521
  var // 明细子表和列表的需要给parentId
522
522
  _result2;
523
523
  (_result2 = result).push.apply(_result2, _toConsumableArray(controls.props.headers.map(function(item) {
package/dist/index.umd.js CHANGED
@@ -1,3 +1,3 @@
1
- var Jf=Object.defineProperty;var hr=Object.getOwnPropertySymbols;var Qf=Object.prototype.hasOwnProperty,Zf=Object.prototype.propertyIsEnumerable;var yr=(E,F,O)=>F in E?Jf(E,F,{enumerable:!0,configurable:!0,writable:!0,value:O}):E[F]=O,Z=(E,F)=>{for(var O in F||(F={}))Qf.call(F,O)&&yr(E,O,F[O]);if(hr)for(var O of hr(F))Zf.call(F,O)&&yr(E,O,F[O]);return E};var Qt=(E,F,O)=>new Promise((Ue,ye)=>{var Ve=L=>{try{Y(O.next(L))}catch(ee){ye(ee)}},He=L=>{try{Y(O.throw(L))}catch(ee){ye(ee)}},Y=L=>L.done?Ue(L.value):Promise.resolve(L.value).then(Ve,He);Y((O=O.apply(E,F)).next())});(function(E,F){typeof exports=="object"&&typeof module!="undefined"?F(exports):typeof define=="function"&&define.amd?define(["exports"],F):(E=typeof globalThis!="undefined"?globalThis:E||self,F(E.modelDrivenDriven={}))})(this,function(E){"use strict";var F="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Ue="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",ye="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Ve="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",He="{caption}\u5FC5\u586B",Y="\u8BF7\u8F93\u5165\u6807\u9898",L="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ee="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",vr="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",gr="\u8BF7\u7ED1\u5B9A\u8868\u5355",mr="\u8BF7\u7ED1\u5B9A\u5217\u8868",Er="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",_r="\u8BF7\u8F93\u5165\u663E\u793A\u503C",br="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Br="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Sr="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Ar="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",wr="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Cr="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Ir="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Fr="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Or="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Dr="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Rr="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Pr="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",$r="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Tr="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Mr="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",xr="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",jr="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Lr="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Nr="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",qr="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ur="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Vr="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Hr="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",kr="\u8BF7\u9009\u62E9\u7701",Wr="\u8BF7\u9009\u62E9\u5E02",zr="\u8BF7\u9009\u62E9\u533A",Gr="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Kr="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Xr="\u8BF7\u8F93\u5165\u5217\u5BBD",Jr="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Qr="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Zr="\u8BF7\u9009\u62E9\u63A7\u4EF6",Yr="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",eu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",tu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",nu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",ru="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",uu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ou="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",iu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",au="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",su="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",cu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",lu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",fu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",pu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",du="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",hu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",yu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",vu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",gu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",mu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Eu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",_u={isNotNumber:F,isNotString:O,isNotObject:Ue,isNotArray:ye,isNotBoolean:Ve,runtimeRequired:He,pleaseEnterCaption:Y,pleaseEnterCaptionTip:L,pleaseEnterPlaceholder:ee,pleaseEnterFieldCode:vr,pleaseEnterForm:gr,pleaseEnterList:mr,pleaseEnterProcess:Er,pleaseEnterLabel:_r,pleaseEnterValue:br,bizKeyNotBindFiled:Br,pleaseSelectOneField:Sr,pleaseEnterNumberRange:Ar,pleaseEnterAValueGreaterThanMin:wr,pleaseEnterAValueLessThanMax:Cr,numberRangeSetError:Ir,stringRangeError:Fr,attachmentMaxSize:Or,pleaseEnterTotalScoreSetting:Dr,theTotalScoreMustNotBeLessThan1:Rr,scoreDefaultValueRange:Pr,attachmentLimitError:$r,PleaseReselectTheOptionalQuantity:Tr,TheMaximumLengthIsGreaterThanTheMinimumLength:Mr,TheMinimumLengthIsGreaterThanTheMaximumLength:xr,PleaseSelectTheCorrectOptionSettings:jr,optionIdIsRepeat:Lr,optionIsRequired:Nr,pleaseEnterDataCode:qr,pleaseEnterValueFieldCode:Ur,pleaseEnterSvcCode:Vr,pleaseBindAtLeastOneDisplayValue:Hr,pleaseSelectProvince:kr,pleaseSelectCity:Wr,pleaseSelectDistrict:zr,limitRowsCannotBeLessThan0:Gr,TheNumberOfRowsCannotBeLessThanMinRows:Kr,pleaseEnterColumnWidth:Xr,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Jr,pleaseCompleteAllRulesAndConditions:Qr,pleaseSelectControl:Zr,pleaseSelectAtLeastOneColumn:Yr,pleaseSelectFillBackMode:eu,pleaseSelectDashboard:tu,rootNodeIsRequired:nu,theViewNameCannotBeEmpty:ru,pleaseSelectOcrType:uu,pleaseSelectAtLeastOneFieldToFillIn:ou,pleaseChooseAtLeastOne:iu,pleaseEnterButtonContent:au,pleaseEnterDataCodeInDataSetting:su,pleaseEnterValueFieldCodeInDataSetting:cu,pleaseEnterSvcCodeInDataSetting:lu,pleaseBindAtLeastOneDisplayValueInDataSetting:fu,rootNodeIsRequiredInDataSetting:pu,pleaseEnterMaxHeight:du,pleaseEnter:hu,pleaseEnterWatermark:yu,pleaseEnterFileName:vu,pleaseUploadAtLeastOnePrintTemplate:gu,pleaseAssignBusiness:mu,pleaseAssignExternal:Eu},bu="Please enter a number",Bu="Please enter a string",Su="Please enter an object",Au="Please enter an array",wu="Please enter a boolean",Cu="{caption} Required",Iu="Please enter the title",Fu="Please enter the bubble prompt",Ou="Please enter the prompt text",Du="Please bind data items",Ru="Please bind the form",Pu="Please bind the list",$u="Please bind the process",Tu="Please enter the displayed value",Mu="Please enter the stored value",xu="The document number is not bound to the data item",ju="Please select at least one display field",Lu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Nu="Please enter a value greater than or equal to {min}",qu="Please enter a value less than or equal to {max}",Uu="The value range is set incorrectly",Vu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Hu="The attachment size must be between 0MB and 1000MB",ku="Please fill in the total score setting",Wu="The total score cannot be less than 1",zu="The default value must be between {min} and {max}",Gu="The number of attachments uploaded must be between {min} and {max}",Ku="Please re-select the optional quantity",Xu="The maximum length of the control must be greater than the minimum length",Ju="The minimum length of the control must be less than the maximum length",Qu="Please select the correct option setting",Zu="Option ID cannot be repeated",Yu="Please enter at least one option",eo="Please bind the data source",to="Please bind the stored value",no="Please bind the service",ro="At least one display value must be bound",uo="Please select a province",oo="Please select a city",io="Please select a district",ao="The minimum number of lines to fill in cannot be less than 0",so="The number of rows cannot be less than {min} rows",co="Please enter the column width",lo="Please set the logical relationship of all rule conditions",fo="Please complete all rules and conditions",po="please select control",ho="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",yo="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",vo="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",go="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",mo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Eo="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",_o="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",bo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Bo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",So="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ao="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",wo="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Co="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Io="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Fo="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Oo="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Do="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ro="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Po={isNotNumber:bu,isNotString:Bu,isNotObject:Su,isNotArray:Au,isNotBoolean:wu,runtimeRequired:Cu,pleaseEnterCaption:Iu,pleaseEnterCaptionTip:Fu,pleaseEnterPlaceholder:Ou,pleaseEnterFieldCode:Du,pleaseEnterForm:Ru,pleaseEnterList:Pu,pleaseEnterProcess:$u,pleaseEnterLabel:Tu,pleaseEnterValue:Mu,bizKeyNotBindFiled:xu,pleaseSelectOneField:ju,pleaseEnterNumberRange:Lu,pleaseEnterAValueGreaterThanMin:Nu,pleaseEnterAValueLessThanMax:qu,numberRangeSetError:Uu,stringRangeError:Vu,attachmentMaxSize:Hu,pleaseEnterTotalScoreSetting:ku,theTotalScoreMustNotBeLessThan1:Wu,scoreDefaultValueRange:zu,attachmentLimitError:Gu,PleaseReselectTheOptionalQuantity:Ku,TheMaximumLengthIsGreaterThanTheMinimumLength:Xu,TheMinimumLengthIsGreaterThanTheMaximumLength:Ju,PleaseSelectTheCorrectOptionSettings:Qu,optionIdIsRepeat:Zu,optionIsRequired:Yu,pleaseEnterDataCode:eo,pleaseEnterValueFieldCode:to,pleaseEnterSvcCode:no,pleaseBindAtLeastOneDisplayValue:ro,pleaseSelectProvince:uo,pleaseSelectCity:oo,pleaseSelectDistrict:io,limitRowsCannotBeLessThan0:ao,TheNumberOfRowsCannotBeLessThanMinRows:so,pleaseEnterColumnWidth:co,pleaseSetTheLogicalRelationshipOfAllRuleConditions:lo,pleaseCompleteAllRulesAndConditions:fo,pleaseSelectControl:po,pleaseSelectDashboard:ho,theViewNameCannotBeEmpty:yo,pleaseSelectOcrType:vo,pleaseSelectAtLeastOneFieldToFillIn:go,pleaseChooseAtLeastOne:mo,pleaseEnterButtonContent:Eo,pleaseEnterDataCodeInDataSetting:_o,pleaseEnterValueFieldCodeInDataSetting:bo,pleaseEnterSvcCodeInDataSetting:Bo,pleaseBindAtLeastOneDisplayValueInDataSetting:So,rootNodeIsRequiredInDataSetting:Ao,pleaseEnterMaxHeight:wo,pleaseEnter:Co,pleaseEnterWatermark:Io,pleaseEnterFileName:Fo,pleaseUploadAtLeastOnePrintTemplate:Oo,pleaseAssignBusiness:Do,pleaseAssignExternal:Ro},$o="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",To="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mo="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xo="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",jo="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Lo="{caption}\u5FC5\u9808",No="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",qo="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Uo="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Vo="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ho="\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",Wo="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",zo="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Go="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ko="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Xo="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Jo="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Qo="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Zo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Yo="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",ei="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ti="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ni="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ri="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ui="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",oi="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ii="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ai="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",si="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ci="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",li="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",fi="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",pi="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",di="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",hi="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",yi="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",vi="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",gi="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",mi="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ei="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",_i="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",bi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Bi="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Si="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ai="please select control",wi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ci="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ii="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Fi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Oi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Di="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Ri="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Pi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",$i="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ti="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Mi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",xi="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ji="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Li="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Ni="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",qi="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Ui="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Vi="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Hi={isNotNumber:$o,isNotString:To,isNotObject:Mo,isNotArray:xo,isNotBoolean:jo,runtimeRequired:Lo,pleaseEnterCaption:No,pleaseEnterCaptionTip:qo,pleaseEnterPlaceholder:Uo,pleaseEnterFieldCode:Vo,pleaseEnterForm:Ho,pleaseEnterList:ko,pleaseEnterProcess:Wo,pleaseEnterLabel:zo,pleaseEnterValue:Go,bizKeyNotBindFiled:Ko,pleaseSelectOneField:Xo,pleaseEnterNumberRange:Jo,pleaseEnterAValueGreaterThanMin:Qo,pleaseEnterAValueLessThanMax:Zo,numberRangeSetError:Yo,stringRangeError:ei,attachmentMaxSize:ti,pleaseEnterTotalScoreSetting:ni,theTotalScoreMustNotBeLessThan1:ri,scoreDefaultValueRange:ui,attachmentLimitError:oi,PleaseReselectTheOptionalQuantity:ii,TheMaximumLengthIsGreaterThanTheMinimumLength:ai,TheMinimumLengthIsGreaterThanTheMaximumLength:si,PleaseSelectTheCorrectOptionSettings:ci,optionIdIsRepeat:li,optionIsRequired:fi,pleaseEnterDataCode:pi,pleaseEnterValueFieldCode:di,pleaseEnterSvcCode:hi,pleaseBindAtLeastOneDisplayValue:yi,pleaseSelectProvince:vi,pleaseSelectCity:gi,pleaseSelectDistrict:mi,limitRowsCannotBeLessThan0:Ei,TheNumberOfRowsCannotBeLessThanMinRows:_i,pleaseEnterColumnWidth:bi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Bi,pleaseCompleteAllRulesAndConditions:Si,pleaseSelectControl:Ai,pleaseSelectDashboard:wi,theViewNameCannotBeEmpty:Ci,pleaseSelectOcrType:Ii,pleaseSelectAtLeastOneFieldToFillIn:Fi,pleaseChooseAtLeastOne:Oi,pleaseEnterButtonContent:Di,pleaseEnterDataCodeInDataSetting:Ri,pleaseEnterValueFieldCodeInDataSetting:Pi,pleaseEnterSvcCodeInDataSetting:$i,pleaseBindAtLeastOneDisplayValueInDataSetting:Ti,rootNodeIsRequiredInDataSetting:Mi,pleaseEnterMaxHeight:xi,pleaseEnter:ji,pleaseEnterWatermark:Li,pleaseEnterFileName:Ni,pleaseUploadAtLeastOnePrintTemplate:qi,pleaseAssignBusiness:Ui,pleaseAssignExternal:Vi},ki={zhCN:_u,enUS:Po,jaJP:Hi},Zt;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(Zt||(Zt={}));var Yt;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(Yt||(Yt={}));var Wi="zh-CN",zi=function(){};function P(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var z;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(z||(z={}));var d;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(d||(d={}));var A;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(A||(A={}));var D,Gi=(D={},P(D,A.ARRAY,d.ARRAY_COLUMN),P(D,A.AUTO_NUMBER,d.AUTO_NUMBER_COLUMN),P(D,A.DECIMAL,d.DECIMAL_COLUMN),P(D,A.DEPARTMENTS,d.DEPARTMENT_COLUMN),P(D,A.FILE,d.FILE_COLUMN),P(D,A.IMAGE,d.IMAGE_COLUMN),P(D,A.ADDRESS,d.LOCATION_COLUMN),P(D,A.EMPLOYEES,d.EMPLOYEE_COLUMN),P(D,A.TEXT,d.TEXT_COLUMN),P(D,A.TIMESCOPE,d.TIMESCOPE_COLUMN),P(D,A.TIMESTAMP,d.TIMESTAMP_COLUMN),P(D,A.VARCHAR,d.VARCHAR_COLUMN),P(D,A.RELATION,d.VARCHAR_COLUMN),D),en;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(en||(en={}));var tn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Ki=tn+"0123456789";function ke(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",r=0;r<e;r++){var n=r===0?tn:Ki,u=Math.random()*n.length;t+=n[parseInt(String(u),10)]}return t}function We(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Xi(e){if(Array.isArray(e))return We(e)}function Ji(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function nn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Qi(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function ve(e,t,r){return Qi()?ve=Reflect.construct:ve=function(u,o,i){var s=[null];s.push.apply(s,o);var c=Function.bind.apply(u,s),a=new c;return i&&ne(a,i.prototype),a},ve.apply(null,arguments)}function te(e){return te=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},te(e)}function rn(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ne(e,t)}function Zi(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Yi(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ea(){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&&(na(t)==="object"||typeof t=="function")?t:Ji(e)}function ne(e,t){return ne=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ne(e,t)}function un(e){return Xi(e)||Yi(e)||ra(e)||ea()}var na=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function ra(e,t){if(!!e){if(typeof e=="string")return We(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return We(e,t)}}function ze(e){var t=typeof Map=="function"?new Map:void 0;return ze=function(n){if(n===null||!Zi(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return ve(n,arguments,te(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),ne(u,n)},ze(e)}function ua(){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 on(e){var t=ua();return function(){var n=te(e),u;if(t){var o=te(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return ta(this,u)}}var Ge=console;function ge(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n,u=t.slice(1);(n=Ge).warn.apply(n,["\u{1F9D0} Driven Warning:"+t[0]].concat(un(u)))}function an(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n,u=t.slice(1);(n=Ge).log.apply(n,["\u{1F680} Driven Log:"+t[0]].concat(un(u)))}function oa(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Ke=function(e){rn(r,e);var t=on(r);function r(n){nn(this,r);var u;return u=t.call(this,n),u.name="\u{1F4A5} Driven Error",u.message=n?oa(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return r}(ze(Error)),ia=function(e){rn(r,e);var t=on(r);function r(n){nn(this,r);var u;return u=t.call(this,n),u.name="\u{1F6A8} Driven Reference Error",u}return r}(Ke);function re(e){throw new Ke(e)}function sn(e){throw new ia(e)}function aa(e){Ge.error(new Ke(e))}var sa=Object.prototype.toString;function cn(e,t){return sa.call(e)==="[object "+t+"]"}function ca(e){return cn(e,"String")}function la(e){return cn(e,"Promise")}var fa=function(){function e(t){var r,n;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((n=(r=t.messages)!==null&&r!==void 0?r:this.getPreImport(t.locale))!==null&&n!==void 0?n:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var r=this;this.locale=t,this._messageCache.clear();var n=this.getMessageData();la(n)?n.then(function(u){r._messageCache.clear(),r.messages[r.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=n},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,r,n){var u=this.getMessage(t);return u?this.formatMessage(u,n):this.formatMessage(r,n)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var r=this.getPathArray(t),n=r.reduce(function(u,o,i,s){if(u!==void 0){var c=u[o];if(!(i===s.length-1&&!ca(c)))return c}},this.message);return this._messageCache.set(t,n),n},e.prototype.formatMessage=function(t,r){return r?t.replace(this.variableRegExp,function(n,u){var o=r[u];return o!==void 0?String(o):n}):t},e.prototype.getPreImport=function(t){var r;if(window.okI18nPreImport){var n=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(n)?window.okI18nPreImport:(r={},r[n]=window.okI18nPreImport,r)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function pa(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var T=function(){function e(){pa(this,e)}return e.getMessage=function(r){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(r,"",n)},e.resetI18n=function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Wi;return new fa({locale:r,messages:ki})},e.setLocale=function(r){return this.$i18n.setLocale(r)},e}();T.$i18n=T.resetI18n();function ln(e,t,r){var n=t.replace(/\[(\d)]/g,function(o,i){return"."+i}).split("."),u=!1;return n.reduce(function(o,i,s,c){var a=o;if(!!o){if(!Object.prototype.hasOwnProperty.call(o,i)){ge("Can not set ".concat(t,"'s ").concat(i," property in current %o, Because there is no ").concat(i," property on the %o"),o,o);return}return s===c.length-1&&!Object.is(a[i],r)&&(a[i]=r,u=!0),a[i]}},e),u}var da=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},ha={exports:{}};(function(e){(function(t){var r=function(l,y,w){if(!a(y)||p(y)||v(y)||b(y)||c(y))return y;var _,C=0,x=0;if(f(y))for(_=[],x=y.length;C<x;C++)_.push(r(l,y[C],w));else{_={};for(var S in y)Object.prototype.hasOwnProperty.call(y,S)&&(_[l(S,w)]=r(l,y[S],w))}return _},n=function(l,y){y=y||{};var w=y.separator||"_",_=y.split||/(?=[A-Z])/;return l.split(_).join(w)},u=function(l){return B(l)?l:(l=l.replace(/[\-_\s]+(.)?/g,function(y,w){return w?w.toUpperCase():""}),l.substr(0,1).toLowerCase()+l.substr(1))},o=function(l){var y=u(l);return y.substr(0,1).toUpperCase()+y.substr(1)},i=function(l,y){return n(l,y).toLowerCase()},s=Object.prototype.toString,c=function(l){return typeof l=="function"},a=function(l){return l===Object(l)},f=function(l){return s.call(l)=="[object Array]"},p=function(l){return s.call(l)=="[object Date]"},v=function(l){return s.call(l)=="[object RegExp]"},b=function(l){return s.call(l)=="[object Boolean]"},B=function(l){return l=l-0,l===l},h=function(l,y){var w=y&&"process"in y?y.process:y;return typeof w!="function"?l:function(_,C){return w(_,l,C)}},g={camelize:u,decamelize:i,pascalize:o,depascalize:i,camelizeKeys:function(l,y){return r(h(u,y),l)},decamelizeKeys:function(l,y){return r(h(i,y),l,y)},pascalizeKeys:function(l,y){return r(h(o,y),l)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=g:t.humps=g})(da)})(ha);function W(e){if(e!==void 0)return typeof e=="object"?JSON.parse(JSON.stringify(e)):e}function Xe(e){return Object.prototype.toString.call(e)==="[object Object]"}function ya(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function ue(e){return Array.isArray(e)}function Je(e){return typeof e=="string"}function va(e){return Object.values(d).includes(e)}function Qe(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function ga(e){if(Array.isArray(e))return Qe(e)}function fn(e,t,r,n,u,o,i){try{var s=e[o](i),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function ma(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){fn(o,n,u,i,s,"next",c)}function s(c){fn(o,n,u,i,s,"throw",c)}i(void 0)})}}function Ea(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _a(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ba(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ze(e){return ga(e)||_a(e)||Ba(e)||ba()}function Ba(e,t){if(!!e){if(typeof e=="string")return Qe(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Qe(e,t)}}var Sa=function(e,t){var r,n,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;i;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},pn=function(){function e(){Ea(this,e),this._events=new Map,this.debug=!1}var t=e.prototype;return t.emit=function(n){for(var u=arguments.length,o=new Array(u>1?u-1:0),i=1;i<u;i++)o[i-1]=arguments[i];var s=this;return ma(function(){var c,a,f,p,v,b,B,h,g,l,y,w;return Sa(this,function(_){switch(_.label){case 0:if(c=s._events.get(n),a=[],!c)return[3,10];f=c.slice(),p=!0,v=!1,b=void 0,_.label=1;case 1:_.trys.push([1,8,9,10]),B=f[Symbol.iterator](),_.label=2;case 2:if(p=(h=B.next()).done)return[3,7];if(g=h.value,!c.includes(g))return[3,6];_.label=3;case 3:return _.trys.push([3,5,,6]),s.debug&&an.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(g.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+g.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(o.map(function(){return"%o"}).join(","),"\u3002")].concat(Ze(o))),[4,g.apply(null,Ze(o))];case 4:return l=_.sent(),s.debug&&an.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(g.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+g.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(o.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Ze(o),[l])),a.push(l),l===!1?[3,7]:[3,6];case 5:return y=_.sent(),aa(String(y)),[3,6];case 6:return p=!0,[3,2];case 7:return[3,10];case 8:return w=_.sent(),v=!0,b=w,[3,10];case 9:try{!p&&B.return!=null&&B.return()}finally{if(v)throw b}return[7];case 10:return[2,a]}})})()},t.on=function(n,u){if(this._events.has(n)){var o;(o=this._events.get(n))===null||o===void 0||o.push(u)}else this._events.set(n,[u])},t.off=function(n,u){if(this._events.has(n)){var o=this._events.get(n),i=o==null?void 0:o.indexOf(u);o==null||o.splice(i,1)}},t.delete=function(n){this._events.has(n)&&this._events.delete(n)},t.clear=function(){this._events=new Map},e}();function Aa(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var wa=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"}],oe=function(){function e(){Aa(this,e)}var t=e.prototype;return t.getEventsFromKeys=function(n){var u=typeof n=="string"?[n]:n;return e.events.filter(function(o){return u.includes(o.key)})},e}();oe.events=wa;function Ca(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var dn=[],me=function(){function e(r){Ca(this,e),this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=r,this._initControls(r)}var t=e.prototype;return t.registerControlConfig=function(n,u){return this.controlConfigMap.set(n,u),this},t.getControlConfig=function(n){return this.controlConfigMap.get(n)},t.getControls=function(){return this._controls},t.register=function(n){n.__is_control__||re("".concat(n.name," is not a Control"));var u=this._controls.findIndex(function(o){return o.controlType===n.controlType});return u>-1&&(ge("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(u,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this},t.isLayoutControl=function(n){return n.controlType===z.LAYOUT},t.isFormControl=function(n){return n.controlType===z.FORM},t.isListControl=function(n){return n.controlType===z.LIST},t.isColumnControl=function(n){return n.controlType===z.COLUMN},t.createControl=function(n,u){var o=this;if(Array.isArray(n))return n.map(function(f){return o.createControl(f,u)});n.children&&(n.children=n.children.map(function(f){return o.createControl(f,u)})),this.isListControl(n)&&n.props.headers&&(n.props.headers=n.props.headers.map(function(f){return o.createControl(f,u)}));var i=this.getControlFormType(n.type);if(i){var s=n;if(typeof u=="function"){var c=u(s);c&&(s=c)}var a=new i(s);return a}else re("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))},t.createControlInstance=function(n,u){var o=this.getControlFormType(n);if(o)return new o(u)},t.getControlFormType=function(n){return this._controls.find(function(u){return u.controlType===n})},t._initControls=function(n){var u=this;this.constructor.staticControls.forEach(function(o){u.register(o[n])})},e.register=function(n){var u=n.Designer,o=n.Runtime;(!u||!o||!u.__is_control__||!o.__is_control__)&&re("".concat(n," is can't register as a Control"));var i=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return i>-1&&(ge("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(i,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),this},e}();me.staticControls=dn,me.staticRegisteredTypes=new Set(dn.map(function(e){return e.Designer.controlType})),me.staticRegisteredConfigs=new Map;function Ye(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ee=function e(t){Ye(this,e);var r;this.dataCode=(r=t==null?void 0:t.dataCode)!==null&&r!==void 0?r:"";var n;this.fieldCode=(n=t==null?void 0:t.fieldCode)!==null&&n!==void 0?n:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:""},Ia=function e(t){Ye(this,e);var r;this.minWidth=(r=t==null?void 0:t.minWidth)!==null&&r!==void 0?r:150,this.maxWidth=t==null?void 0:t.maxWidth;var n;this.flex=(n=t==null?void 0:t.flex)!==null&&n!==void 0?n:1},hn;(function(e){e.CNY="CNY",e.USD="USD",e.JPY="JPY",e.EUR="EUR",e.INR="INR",e.IDR="IDR",e.BRL="BRL",e.AED="AED",e.AUD="AUD",e.CAD="CAD",e.EGP="EGP",e.GBP="GBP",e.ZAR="ZAR",e.KRW="KRW",e.MAD="MAD",e.MXN="MXN",e.MYR="MYR",e.PHP="PHP",e.PLN="PLN",e.RUB="RUB",e.SGD="SGD",e.THB="THB",e.TRY="TRY",e.TWD="TWD",e.VND="VND",e.HKD="HKD",e.IEP="IEP"})(hn||(hn={}));var yn;(function(e){e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions"})(yn||(yn={}));var et;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(et||(et={}));var Fa=function e(t){Ye(this,e);var r;this.width=(r=t==null?void 0:t.width)!==null&&r!==void 0?r:"";var n;this.height=(n=t==null?void 0:t.height)!==null&&n!==void 0?n:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var o;this.heightConfig=(o=t==null?void 0:t.heightConfig)!==null&&o!==void 0?o:"fill"};function Oa(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function tt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Da(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function _e(e,t,r){return Da()?_e=Reflect.construct:_e=function(u,o,i){var s=[null];s.push.apply(s,o);var c=Function.bind.apply(u,s),a=new c;return i&&ae(a,i.prototype),a},_e.apply(null,arguments)}function ie(e){return ie=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ie(e)}function Ra(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ae(e,t)}function Pa(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function $a(e,t){return t&&(Ta(t)==="object"||typeof t=="function")?t:Oa(e)}function ae(e,t){return ae=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ae(e,t)}var Ta=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function nt(e){var t=typeof Map=="function"?new Map:void 0;return nt=function(n){if(n===null||!Pa(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return _e(n,arguments,ie(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),ae(u,n)},nt(e)}function Ma(){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 xa(e){var t=Ma();return function(){var n=ie(e),u;if(t){var o=ie(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return $a(this,u)}}var rt=function e(t){tt(this,e),this.isHide={type:"boolean"}},vn=function(e){Ra(r,e);var t=xa(r);function r(n){return tt(this,r),t.call(this)}return r}(nt(Array)),q=function e(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";tt(this,e);var n;this.isHide=(n=t==null?void 0:t.isHide)!==null&&n!==void 0?n:!1,this.style=new Fa(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:r};q.Rules=rt,q.RuntimeRules=vn;function M(){return M=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},M.apply(this,arguments)}function ja(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function ut(e){return ut=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ut(e)}function be(e,t){return be=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},be(e,t)}function La(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Be(e,t,r){return La()?Be=Reflect.construct:Be=function(u,o,i){var s=[null];s.push.apply(s,o);var c=Function.bind.apply(u,s),a=new c;return i&&be(a,i.prototype),a},Be.apply(null,arguments)}function Na(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function ot(e){var t=typeof Map=="function"?new Map:void 0;return ot=function(n){if(n===null||!Na(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return Be(n,arguments,ut(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),be(u,n)},ot(e)}var qa=/%[sdj%]/g,gn=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(gn=function(t,r){typeof console!="undefined"&&console.warn&&r.every(function(n){return typeof n=="string"})&&console.warn(t,r)});function it(e){if(!e||!e.length)return null;var t={};return e.forEach(function(r){var n=r.field;t[n]=t[n]||[],t[n].push(r)}),t}function $(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n=1,u=t[0],o=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var i=String(u).replace(qa,function(s){if(s==="%%")return"%";if(n>=o)return s;switch(s){case"%s":return String(t[n++]);case"%d":return Number(t[n++]);case"%j":try{return JSON.stringify(t[n++])}catch(c){return"[Circular]"}break;default:return s}});return i}return u}function Ua(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||Ua(t)&&typeof e=="string"&&!e)}function Va(e,t,r){var n=[],u=0,o=e.length;function i(s){n.push.apply(n,s),u++,u===o&&r(n)}e.forEach(function(s){t(s,i)})}function mn(e,t,r){var n=0,u=e.length;function o(i){if(i&&i.length){r(i);return}var s=n;n=n+1,s<u?t(e[s],o):r([])}o([])}function Ha(e){var t=[];return Object.keys(e).forEach(function(r){t.push.apply(t,e[r])}),t}var En=function(e){ja(t,e);function t(r,n){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=r,u.fields=n,u}return t}(ot(Error));function ka(e,t,r,n){if(t.first){var u=new Promise(function(p,v){var b=function(g){return n(g),g.length?v(new En(g,it(g))):p()},B=Ha(e);mn(B,r,b)});return u.catch(function(p){return p}),u}var o=t.firstFields||[];o===!0&&(o=Object.keys(e));var i=Object.keys(e),s=i.length,c=0,a=[],f=new Promise(function(p,v){var b=function(h){if(a.push.apply(a,h),c++,c===s)return n(a),a.length?v(new En(a,it(a))):p()};i.length||(n(a),p()),i.forEach(function(B){var h=e[B];o.indexOf(B)!==-1?mn(h,r,b):Va(h,r,b)})});return f.catch(function(p){return p}),f}function _n(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function bn(e,t){if(t){for(var r in t)if(t.hasOwnProperty(r)){var n=t[r];typeof n=="object"&&typeof e[r]=="object"?e[r]=M(M({},e[r]),n):e[r]=n}}return e}function Bn(e,t,r,n,u,o){e.required&&(!r.hasOwnProperty(e.field)||I(t,o||e.type))&&n.push($(u.messages.required,e.fullField))}function Wa(e,t,r,n,u){(/^\s+$/.test(t)||t==="")&&n.push($(u.messages.whitespace,e.fullField))}var at={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},se={integer:function(t){return se.number(t)&&parseInt(t,10)===t},float:function(t){return se.number(t)&&!se.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(r){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!se.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(at.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(at.url)},hex:function(t){return typeof t=="string"&&!!t.match(at.hex)}};function za(e,t,r,n,u){if(e.required&&t===void 0){Bn(e,t,r,n,u);return}var o=["integer","float","array","regexp","object","method","email","number","date","url","hex"],i=e.type;o.indexOf(i)>-1?se[i](t)||n.push($(u.messages.types[i],e.fullField,e.type)):i&&typeof t!==e.type&&n.push($(u.messages.types[i],e.fullField,e.type))}function Ga(e,t,r,n,u){var o=typeof e.len=="number",i=typeof e.min=="number",s=typeof e.max=="number",c=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,p=typeof t=="number",v=typeof t=="string",b=Array.isArray(t);if(p?f="number":v?f="string":b&&(f="array"),!f)return!1;b&&(a=t.length),v&&(a=t.replace(c,"_").length),o?a!==e.len&&n.push($(u.messages[f].len,e.fullField,e.len)):i&&!s&&a<e.min?n.push($(u.messages[f].min,e.fullField,e.min)):s&&!i&&a>e.max?n.push($(u.messages[f].max,e.fullField,e.max)):i&&s&&(a<e.min||a>e.max)&&n.push($(u.messages[f].range,e.fullField,e.min,e.max))}var G="enum";function Ka(e,t,r,n,u){e[G]=Array.isArray(e[G])?e[G]:[],e[G].indexOf(t)===-1&&n.push($(u.messages[G],e.fullField,e[G].join(", ")))}function Xa(e,t,r,n,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||n.push($(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var o=new RegExp(e.pattern);o.test(t)||n.push($(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var m={required:Bn,whitespace:Wa,type:za,range:Ga,enum:Ka,pattern:Xa};function Ja(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t,"string")&&!e.required)return r();m.required(e,t,n,o,u,"string"),I(t,"string")||(m.type(e,t,n,o,u),m.range(e,t,n,o,u),m.pattern(e,t,n,o,u),e.whitespace===!0&&m.whitespace(e,t,n,o,u))}r(o)}function Qa(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&m.type(e,t,n,o,u)}r(o)}function Za(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(t===""&&(t=void 0),I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&(m.type(e,t,n,o,u),m.range(e,t,n,o,u))}r(o)}function Ya(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&m.type(e,t,n,o,u)}r(o)}function es(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),I(t)||m.type(e,t,n,o,u)}r(o)}function ts(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&(m.type(e,t,n,o,u),m.range(e,t,n,o,u))}r(o)}function ns(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&(m.type(e,t,n,o,u),m.range(e,t,n,o,u))}r(o)}function rs(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(t==null&&!e.required)return r();m.required(e,t,n,o,u,"array"),t!=null&&(m.type(e,t,n,o,u),m.range(e,t,n,o,u))}r(o)}function us(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&m.type(e,t,n,o,u)}r(o)}var os="enum";function is(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u),t!==void 0&&m[os](e,t,n,o,u)}r(o)}function as(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t,"string")&&!e.required)return r();m.required(e,t,n,o,u),I(t,"string")||m.pattern(e,t,n,o,u)}r(o)}function ss(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t,"date")&&!e.required)return r();if(m.required(e,t,n,o,u),!I(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),m.type(e,s,n,o,u),s&&m.range(e,s.getTime(),n,o,u)}}r(o)}function cs(e,t,r,n,u){var o=[],i=Array.isArray(t)?"array":typeof t;m.required(e,t,n,o,u,i),r(o)}function st(e,t,r,n,u){var o=e.type,i=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(I(t,o)&&!e.required)return r();m.required(e,t,n,i,u,o),I(t,o)||m.type(e,t,n,i,u)}r(i)}function ls(e,t,r,n,u){var o=[],i=e.required||!e.required&&n.hasOwnProperty(e.field);if(i){if(I(t)&&!e.required)return r();m.required(e,t,n,o,u)}r(o)}var ce={string:Ja,method:Qa,number:Za,boolean:Ya,regexp:es,integer:ts,float:ns,array:rs,object:us,enum:is,pattern:as,date:ss,url:st,hex:st,email:st,required:cs,any:ls};function ct(){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 lt=ct();function U(e){this.rules=null,this._messages=lt,this.define(e)}U.prototype={messages:function(t){return t&&(this._messages=bn(ct(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var r,n;for(r in t)t.hasOwnProperty(r)&&(n=t[r],this.rules[r]=Array.isArray(n)?n:[n])},validate:function(t,r,n){var u=this;r===void 0&&(r={}),n===void 0&&(n=function(){});var o=t,i=r,s=n;if(typeof i=="function"&&(s=i,i={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function c(h){var g,l=[],y={};function w(_){if(Array.isArray(_)){var C;l=(C=l).concat.apply(C,_)}else l.push(_)}for(g=0;g<h.length;g++)w(h[g]);l.length?y=it(l):(l=null,y=null),s(l,y)}if(i.messages){var a=this.messages();a===lt&&(a=ct()),bn(a,i.messages),i.messages=a}else i.messages=this.messages();var f,p,v={},b=i.keys||Object.keys(this.rules);b.forEach(function(h){f=u.rules[h],p=o[h],f.forEach(function(g){var l=g;typeof l.transform=="function"&&(o===t&&(o=M({},o)),p=o[h]=l.transform(p)),typeof l=="function"?l={validator:l}:l=M({},l),l.validator=u.getValidationMethod(l),l.field=h,l.fullField=l.fullField||h,l.type=u.getType(l),l.validator&&(v[h]=v[h]||[],v[h].push({rule:l,value:p,source:o,field:h}))})});var B={};return ka(v,i,function(h,g){var l=h.rule,y=(l.type==="object"||l.type==="array")&&(typeof l.fields=="object"||typeof l.defaultField=="object");y=y&&(l.required||!l.required&&h.value),l.field=h.field;function w(x,S){return M(M({},S),{},{fullField:l.fullField+"."+x})}function _(x){x===void 0&&(x=[]);var S=x;if(Array.isArray(S)||(S=[S]),!i.suppressWarning&&S.length&&U.warning("async-validator:",S),S.length&&l.message!==void 0&&(S=[].concat(l.message)),S=S.map(_n(l)),i.first&&S.length)return B[l.field]=1,g(S);if(!y)g(S);else{if(l.required&&!h.value)return l.message!==void 0?S=[].concat(l.message).map(_n(l)):i.error&&(S=[i.error(l,$(i.messages.required,l.field))]),g(S);var j={};if(l.defaultField)for(var pr in h.value)h.value.hasOwnProperty(pr)&&(j[pr]=l.defaultField);j=M(M({},j),h.rule.fields);for(var J in j)if(j.hasOwnProperty(J)){var Xf=Array.isArray(j[J])?j[J]:[j[J]];j[J]=Xf.map(w.bind(null,J))}var dr=new U(j);dr.messages(i.messages),h.rule.options&&(h.rule.options.messages=i.messages,h.rule.options.error=i.error),dr.validate(h.value,h.rule.options||i,function(Jt){var Q=[];S&&S.length&&Q.push.apply(Q,S),Jt&&Jt.length&&Q.push.apply(Q,Jt),g(Q.length?Q:null)})}}var C;l.asyncValidator?C=l.asyncValidator(l,h.value,_,h.source,i):l.validator&&(C=l.validator(l,h.value,_,h.source,i),C===!0?_():C===!1?_(l.message||l.field+" fails"):C instanceof Array?_(C):C instanceof Error&&_(C.message)),C&&C.then&&C.then(function(){return _()},function(x){return _(x)})},function(h){c(h)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!ce.hasOwnProperty(t.type))throw new Error($("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var r=Object.keys(t),n=r.indexOf("message");return n!==-1&&r.splice(n,1),r.length===1&&r[0]==="required"?ce.required:ce[this.getType(t)]||!1}},U.register=function(t,r){if(typeof r!="function")throw new Error("Cannot register a validator by type, validator is not a function");ce[t]=r},U.warning=gn,U.messages=lt,U.validators=ce;var fs={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 ps(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=new U(e);return r.messages(Object.assign(fs,t)),r}var Sn=new pn;function ft(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function ds(e){if(Array.isArray(e))return e}function hs(e){if(Array.isArray(e))return ft(e)}function An(e,t,r,n,u,o,i){try{var s=e[o](i),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function wn(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){An(o,n,u,i,s,"next",c)}function s(c){An(o,n,u,i,s,"throw",c)}i(void 0)})}}function ys(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Cn(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function vs(e,t,r){return t&&Cn(e.prototype,t),r&&Cn(e,r),e}function gs(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function In(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Fn(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ms(){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 Es(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function On(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){gs(e,u,r[u])})}return e}function _s(e){return ds(e)||Fn(e)||Dn(e)||ms()}function pt(e){return hs(e)||Fn(e)||Dn(e)||Es()}function Dn(e,t){if(!!e){if(typeof e=="string")return ft(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return ft(e,t)}}var Rn=function(e,t){var r,n,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;i;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},R=function(){function t(n){var u=this;ys(this,t),this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=$n,this.removeSetting=Pn,this._callControlHooks("preInstance",n);var o=In(this,t)?this.constructor:void 0,i=o.controlName,s=o.controlIcon,c=o.controlType,a=o.controlFieldType,f=o.controlEventKeys,p=o.controlCustomEvents,v=o.name,b=o.setting;i&&s&&c||sn("The ".concat(v," controlName,controlIcon,controlType is not define"));var B;this.id=(B=n==null?void 0:n.id)!==null&&B!==void 0?B:ke(10),this.name=i,this.icon=s;var h;this.type=(h=n==null?void 0:n.type)!==null&&h!==void 0?h:c,this.props=new q(n==null?void 0:n.props,(In(this,t)?this.constructor:void 0).controlName);var g;this.controlType=(g=n==null?void 0:n.controlType)!==null&&g!==void 0?g:"base",this.setting=W(b);var l;this.fieldType=(l=n==null?void 0:n.fieldType)!==null&&l!==void 0?l:a,this.eventKeys=W(f),this.customEvents=W(p),Promise.resolve().then(function(){u._callControlHooks("postInstance",n)})}var r=t.prototype;return r._callControlHooks=function(){for(var u=arguments.length,o=new Array(u),i=0;i<u;i++)o[i]=arguments[i];var s,c=_s(o),a=c[0],f=c.slice(1);return(s=Sn).emit.apply(s,[a,this].concat(pt(f)))},r.preUpdate=function(u,o){this._callControlHooks("preUpdateProps",u,o)},r.postUpdate=function(u,o){this._callControlHooks("postUpdateProps",u,o)},r.updateProps=function(u,o){this.preUpdate(u,o),ln(this.props,u,o),this.postUpdate(u,o)},r.preValidate=function(){var u=this;return wn(function(){var o,i,s;return Rn(this,function(c){switch(c.label){case 0:return o=On({},u.rules),[4,u._callControlHooks("preValidate",o)];case 1:return i=c.sent(),s=i[i.length-1],[2,s===!1?void 0:s]}})})()},r.validate=function(u,o){var i=this;return wn(function(){var s,c,a,f;return Rn(this,function(p){switch(p.label){case 0:return[4,i.preValidate()];case 1:s=p.sent(),c=s!==void 0?s:On({},i.rules),Array.isArray(o)&&o.forEach(function(v){c.hasOwnProperty(v)&&delete c[v]}),a=ps(c,u),p.label=2;case 2:return p.trys.push([2,4,,5]),[4,a.validate(i.props)];case 3:return p.sent(),[2,!0];case 4:throw f=p.sent(),f.control||(f.control=i),f;case 5:return[2]}})})()},r.toDataBindModel=function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,o=this.fieldType,i=this.id,s=this.type,c=this.props,a=c.dataBind,f=c.datasourceBind,p=c.optionConfig,v=c.caption,b=c.required,B=c.maxLength,h=c.options,g=c.encrypted,l=c.encryptedMode;if(!(!o&&!a&&!f)){var y={parentId:u,fieldType:o,controlId:i,caption:v,type:s,props:{}};switch(a&&(y.dataBind=a),p){case"datasource":case void 0:f&&(y.datasourceBind=f);break;case"custom":y.props.options=h;break}return b!==void 0&&(y.required=b),B!==void 0&&(y.maxLength=B),g!==void 0&&(y.encrypted=g),l!==void 0&&(y.encryptedMode=l),y}},r.preToSchema=function(){this._callControlHooks("preToSchema",this)},r.toSchema=function(){return this.preToSchema(),{id:this.id,type:this.type,props:W(this.props),fieldType:this.fieldType,controlType:this.controlType}},t.updateBasicControl=function(u,o){if(u==="setting"){if(o.add){var i;(i=this.setting).push.apply(i,pt(o.add))}o.remove&&this.removeSettingItem(o.remove),o.update}},vs(t,[{key:"rules",get:function(){var u=this.props.constructor.Rules;return u?new u(this.props):{}}}]),t}();R.controlName="\u63A7\u4EF6",R.controlIcon="icon",R.controlType="control",R.controlEventKeys=[],R.controlCustomEvents=[],R.setting=[],R.__is_control__=!0,R.removeSettingItem=Pn,R.updateSettingItem=$n;function Pn(e){var t=this,r=Array.isArray(e)?e:[e];r.forEach(function(n){var u=typeof n!="string",o=t.setting.findIndex(function(c){return c.key===(u?n.key:n)});if(o!==-1){var i,s;u?t.setting[o].showItems=(i=t.setting[o].showItems)===null||i===void 0?void 0:i.filter(function(c){return!n.hideItems.includes(c)}):t.setting.splice(o,1),u&&!(!((s=t.setting[o].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(o,1)}})}function $n(e,t){var r=this,n=typeof e=="string"?[e]:e;n.forEach(function(u){var o=r.setting.find(function(a){return a.key===u});if(o){if(typeof t=="boolean")o.visible=t;else if(typeof t=="object"){var i,s=(i=t.type)!==null&&i!==void 0?i:"replace";if(s==="replace")o.showItems=t.showItems;else{var c;(c=o.showItems).push.apply(c,pt(t.showItems))}}}})}function bs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Tn(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Bs(e,t,r){return t&&Tn(e.prototype,t),r&&Tn(e,r),e}function Ss(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var dt=function(){function t(r){bs(this,t),this.customEvents=[],this.parent=null;var n=Ss(this,t)?this.constructor:void 0,u=n.controlType,o=n.controlFieldType,i=n.name,s=n.controlCustomEvents;u||sn("The ".concat(i," controlType is not define"));var c;this.id=(c=r==null?void 0:r.id)!==null&&c!==void 0?c:ke(10);var a;this.type=(a=r==null?void 0:r.type)!==null&&a!==void 0?a:u,this.props=new q(r==null?void 0:r.props),this.customEvents=s;var f;this.controlType=(f=r==null?void 0:r.controlType)!==null&&f!==void 0?f:"base";var p;this.fieldType=(p=r==null?void 0:r.fieldType)!==null&&p!==void 0?p:o;var v;this.pageStatus=(v=r==null?void 0:r.pageStatus)!==null&&v!==void 0?v:et.UNKNOWN}return Bs(t,[{key:"rules",get:function(){var n=this.props.constructor.RuntimeRules;if(n){var u=new n(this.props);return Array.from(u)}return[]}}]),t}();dt.controlType="control",dt.__is_control__=!0,dt.controlCustomEvents=[];function As(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ht(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Se(e){return Se=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Se(e)}function yt(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&vt(e,t)}function ws(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Cs(e,t){return t&&(Is(t)==="object"||typeof t=="function")?t:As(e)}function vt(e,t){return vt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},vt(e,t)}var Is=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Fs(){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 gt(e){var t=Fs();return function(){var n=Se(e),u;if(t){var o=Se(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Cs(this,u)}}var Os=function(e){yt(r,e);var t=gt(r);function r(n){ht(this,r);var u;u=t.call(this,n),u.dataBind={},u.caption={type:"string",required:!0,message:T.getMessage("pleaseEnterCaption")},u.isHideCaption={type:"boolean"},u.labelPosition={type:"enum",enum:["top","left"]},u.defaultState={type:"enum",enum:["default","readonly"]},u.required={type:"boolean"},u.captionTip={type:"string",required:!1,message:T.getMessage("pleaseEnterCaptionTip")};var o={fieldCode:{type:"string",required:!0,message:T.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:T.getMessage("pleaseEnterFieldCode")}};if(ws(n.dataBind,Ee))u.dataBind={type:"object",required:!0,fields:W(o),message:T.getMessage("pleaseEnterFieldCode")};else{var i={type:"object",required:!0,fields:{},message:T.getMessage("pleaseEnterFieldCode")};Object.keys(n.dataBind).forEach(function(s){i.fields[s]={type:"object",required:!0,fields:W(o),message:T.getMessage("pleaseEnterFieldCode")}}),u.dataBind=i}return n.isShowCaptionTip&&(u.captionTip.required=!0),u}return r}(rt),Ds=function(e){yt(r,e);var t=gt(r);function r(n){ht(this,r);var u;return u=t.call(this,n),u.push({type:"string",required:n.isHide?!1:n.required,message:n.requiredMessage!==""?n.requiredMessage:T.getMessage("runtimeRequired",{caption:n.caption})}),u}return r}(vn),mt=function(e){yt(r,e);var t=gt(r);function r(n){ht(this,r);var u;u=t.call(this,n);var o;u.caption=(o=n==null?void 0:n.caption)!==null&&o!==void 0?o:"";var i;u.isHideCaption=(i=n==null?void 0:n.isHideCaption)!==null&&i!==void 0?i:!1;var s;u.isShowCaptionTip=(s=n==null?void 0:n.isShowCaptionTip)!==null&&s!==void 0?s:!1;var c;u.captionTip=(c=n==null?void 0:n.captionTip)!==null&&c!==void 0?c:"";var a;u.defaultState=(a=n==null?void 0:n.defaultState)!==null&&a!==void 0?a:"default";var f;u.labelPosition=(f=n==null?void 0:n.labelPosition)!==null&&f!==void 0?f:"top";var p;u.placeholder=(p=n==null?void 0:n.placeholder)!==null&&p!==void 0?p:"";var v;u.required=(v=n==null?void 0:n.required)!==null&&v!==void 0?v:!1;var b;u.requiredMessage=(b=n==null?void 0:n.requiredMessage)!==null&&b!==void 0?b:"",u.dataBind=new Ee(n==null?void 0:n.dataBind);var B;return u.defaultValue=(B=n==null?void 0:n.defaultValue)!==null&&B!==void 0?B:"",u}return r}(q);mt.Rules=Os,mt.RuntimeRules=Ds;function Rs(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ps(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ae(e){return Ae=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ae(e)}function $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&&Et(e,t)}function Ts(e,t){return t&&(Ms(t)==="object"||typeof t=="function")?t:Rs(e)}function Et(e,t){return Et=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Et(e,t)}var Ms=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function xs(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function js(e){var t=xs();return function(){var n=Ae(e),u;if(t){var o=Ae(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Ts(this,u)}}var le=function(e){$s(r,e);var t=js(r);function r(n){Ps(this,r);var u;return u=t.call(this,n),u.controlType="form",u.props=new mt(n==null?void 0:n.props),u}return r}(R);le.controlEventKeys=["on_change","on_focus","on_blur"];function Ls(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ns(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function we(e){return we=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},we(e)}function qs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&_t(e,t)}function Us(e,t){return t&&(Vs(t)==="object"||typeof t=="function")?t:Ls(e)}function _t(e,t){return _t=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},_t(e,t)}var Vs=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Hs(){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=Hs();return function(){var n=we(e),u;if(t){var o=we(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Us(this,u)}}var Mn=function(e){qs(r,e);var t=ks(r);function r(n){return Ns(this,r),t.call(this,n)}return r}(q);function bt(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Ws(e){if(Array.isArray(e))return bt(e)}function zs(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Gs(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function xn(e){return Ws(e)||zs(e)||Ks(e)||Gs()}function Ks(e,t){if(!!e){if(typeof e=="string")return bt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return bt(e,t)}}function Xs(e,t){var r;!((r=Object.getOwnPropertyDescriptors(e)[t])===null||r===void 0)&&r.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function jn(e,t){e.parent=t,Xs(e,"parent")}function Js(e,t){e.forEach(function(r){jn(r,t)})}var Ln=Symbol("targetKey");function Nn(e){var t;return(t=e[Ln])!==null&&t!==void 0?t:e}function qn(e,t){return Js(e,t),new Proxy(e,{get:function(n,u){for(var o=arguments.length,i=new Array(o>2?o-2:0),s=2;s<o;s++)i[s-2]=arguments[s];var c;return u===Ln?n:(c=Reflect).get.apply(c,[n,u].concat(xn(i)))},set:function(n,u,o){for(var i=arguments.length,s=new Array(i>3?i-3:0),c=3;c<i;c++)s[c-3]=arguments[c];var a;if(ue(e)&&u==="length"&&o===e.length)return!0;var f=(a=Reflect).set.apply(a,[n,u,o].concat(xn(s)));return Xe(o)&&jn(o,t),f}})}function Un(e,t,r,n){var u=n!=null?n:e,o=qn(Nn(r!=null?r:[]),u);Object.defineProperty(e,t,{get:function(){return o},set:function(s){o=qn(Nn(s),u)},enumerable:!0})}function Bt(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Qs(e){if(Array.isArray(e))return Bt(e)}function Vn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Hn(e,t,r,n,u,o,i){try{var s=e[o](i),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function Zs(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){Hn(o,n,u,i,s,"next",c)}function s(c){Hn(o,n,u,i,s,"throw",c)}i(void 0)})}}function Ys(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ec(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function K(e,t,r){return typeof Reflect!="undefined"&&Reflect.get?K=Reflect.get:K=function(u,o,i){var s=cc(u,o);if(!!s){var c=Object.getOwnPropertyDescriptor(s,o);return c.get?c.get.call(i):c.value}},K(e,t,r||e)}function V(e){return V=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},V(e)}function tc(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&&St(e,t)}function nc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function rc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function uc(){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 oc(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){ec(e,u,r[u])})}return e}function ic(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),r.push.apply(r,n)}return r}function ac(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ic(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function sc(e,t){return t&&(lc(t)==="object"||typeof t=="function")?t:Vn(e)}function St(e,t){return St=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},St(e,t)}function cc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=V(e),e!==null););return e}function kn(e){return Qs(e)||rc(e)||fc(e)||uc()}var lc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function fc(e,t){if(!!e){if(typeof e=="string")return Bt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Bt(e,t)}}function pc(){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 dc(e){var t=pc();return function(){var n=V(e),u;if(t){var o=V(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return sc(this,u)}}var hc=function(e,t){var r,n,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;i;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},yc=1e4,At=function(t){tc(n,t);var r=dc(n);function n(o){Ys(this,n);var i;i=r.call(this,o),i.controlType="layout";var s=nc(this,n)?this.constructor:void 0,c=s.excludes,a=s.childrenMaxLength;return i.props=new Mn(o==null?void 0:o.props),Un(Vn(i),"children",o==null?void 0:o.children),i.excludes=W(c),i.childrenMaxLength=a,i}var u=n.prototype;return u.judgeExcludesChildren=function(i){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(i)},u.judgeJoinChildren=function(i){var s=this.judgeExcludesChildren(i);return s&&this.childrenMaxLength>this.children.length},u.validate=function(i,s){var c=this,a=this,f=function(){return K(V(n.prototype),"validate",c)};return Zs(function(){return hc(this,function(p){switch(p.label){case 0:return[4,f().call(a,i,s)];case 1:return p.sent(),[4,Promise.all(a.children.map(function(v){return v.validate(i,s)}))];case 2:return p.sent(),[2,!0]}})})()},u.toDataBindModel=function(){var i=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,s=K(V(n.prototype),"toDataBindModel",this).call(this),c=s?[s]:[];return this.children.reduce(function(a,f){var p=f.toDataBindModel(i);if(Array.isArray(p)){var v=p.filter(function(b){return!!b});return kn(a).concat(kn(v))}return p&&a.push(p),a},c)},u.toSchema=function(){var i=K(V(n.prototype),"toSchema",this).call(this),s=this.children.map(function(c){var a=c.toSchema();return a});return ac(oc({},i),{children:s})},n}(R);At.excludes=!1,At.childrenMaxLength=yc;function Wn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function vc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ce(e){return Ce=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ce(e)}function gc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&wt(e,t)}function mc(e,t){return t&&(Ec(t)==="object"||typeof t=="function")?t:Wn(e)}function wt(e,t){return wt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},wt(e,t)}var Ec=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function _c(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function bc(e){var t=_c();return function(){var n=Ce(e),u;if(t){var o=Ce(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return mc(this,u)}}var Bc=function(e){gc(r,e);var t=bc(r);function r(n,u){vc(this,r);var o;return o=t.call(this,u),Un(Wn(o),"headers",u==null?void 0:u.headers,n),o}return r}(q);function Ct(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Sc(e){if(Array.isArray(e))return Ct(e)}function zn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Gn(e,t,r,n,u,o,i){try{var s=e[o](i),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function Ac(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var o=e.apply(t,r);function i(c){Gn(o,n,u,i,s,"next",c)}function s(c){Gn(o,n,u,i,s,"throw",c)}i(void 0)})}}function wc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Cc(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function X(e,t,r){return typeof Reflect!="undefined"&&Reflect.get?X=Reflect.get:X=function(u,o,i){var s=Pc(u,o);if(!!s){var c=Object.getOwnPropertyDescriptor(s,o);return c.get?c.get.call(i):c.value}},X(e,t,r||e)}function H(e){return H=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},H(e)}function Ic(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&It(e,t)}function Fc(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 Kn(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){Cc(e,u,r[u])})}return e}function Dc(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),r.push.apply(r,n)}return r}function Xn(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Dc(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function Rc(e,t){return t&&($c(t)==="object"||typeof t=="function")?t:zn(e)}function It(e,t){return It=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},It(e,t)}function Pc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=H(e),e!==null););return e}function Jn(e){return Sc(e)||Fc(e)||Tc(e)||Oc()}var $c=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Tc(e,t){if(!!e){if(typeof e=="string")return Ct(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Ct(e,t)}}function Mc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function xc(e){var t=Mc();return function(){var n=H(e),u;if(t){var o=H(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Rc(this,u)}}var jc=function(e,t){var r,n,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;i;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},fe=function(e){Ic(r,e);var t=xc(r);function r(u){wc(this,r);var o;return o=t.call(this,u),o.controlType="list",o.props=new Bc(zn(o),u==null?void 0:u.props),o}var n=r.prototype;return n.validate=function(o,i){var s=this,c=this,a=function(){return X(H(r.prototype),"validate",s)};return Ac(function(){return jc(this,function(f){switch(f.label){case 0:return[4,a().call(c,o)];case 1:return f.sent(),[4,Promise.all(c.props.headers.map(function(p){return p.validate(o,i)}))];case 2:return f.sent(),[2,!0]}})})()},n.toDataBindModel=function(){var o=X(H(r.prototype),"toDataBindModel",this).call(this),i=o?[o]:[],s=this.id;return this.props.headers.reduce(function(c,a){var f=a.toDataBindModel(s);if(Array.isArray(f)){var p=f.filter(function(v){return!!v});return Jn(c).concat(Jn(p))}return f&&c.push(f),c},i)},n.toSchema=function(){var o=X(H(r.prototype),"toSchema",this).call(this),i=this.props.headers.map(function(s){return s.toSchema()});return Xn(Kn({},o),{props:Xn(Kn({},this.props),{headers:i})})},r}(R);fe.controlFieldType=A.LIST;function Lc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Qn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ie(e){return Ie=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ie(e)}function Zn(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ft(e,t)}function Nc(e,t){return t&&(qc(t)==="object"||typeof t=="function")?t:Lc(e)}function Ft(e,t){return Ft=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ft(e,t)}var qc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Uc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Yn(e){var t=Uc();return function(){var n=Ie(e),u;if(t){var o=Ie(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Nc(this,u)}}var Vc=function(e){Zn(r,e);var t=Yn(r);function r(n){Qn(this,r);var u;return u=t.call(this,n),u.caption={type:"string",required:!0,message:T.getMessage("pleaseEnterCaption")},u.width={type:"number",required:!1,message:T.getMessage("pleaseEnterColumnWidth")},u.width.required=n.widthType==="px",u}return r}(rt),er=function(e){Zn(r,e);var t=Yn(r);function r(n){Qn(this,r);var u;u=t.call(this,n);var o;u.width=(o=n==null?void 0:n.width)!==null&&o!==void 0?o:150,u.widthType=(n==null?void 0:n.widthType)||"auto";var i;u.caption=(i=n==null?void 0:n.caption)!==null&&i!==void 0?i:"";var s;u.fixed=(s=n==null?void 0:n.fixed)!==null&&s!==void 0?s:"none",u.autoWidth=new Ia(n==null?void 0:n.autoWidth),u.dataBind=new Ee(n==null?void 0:n.dataBind);var c;return u.sort=(c=n==null?void 0:n.sort)!==null&&c!==void 0?c:!0,u.align=n==null?void 0:n.align,u.colSpan=n==null?void 0:n.colSpan,u}return r}(q);er.Rules=Vc;function Hc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function kc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Fe(e){return Fe=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Fe(e)}function 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&&Ot(e,t)}function zc(e,t){return t&&(Gc(t)==="object"||typeof t=="function")?t:Hc(e)}function Ot(e,t){return Ot=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ot(e,t)}var Gc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Kc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Xc(e){var t=Kc();return function(){var n=Fe(e),u;if(t){var o=Fe(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return zc(this,u)}}var Jc=function(e){Wc(r,e);var t=Xc(r);function r(n){kc(this,r);var u;return u=t.call(this,n),u.controlType="column",u.props=new er(n==null?void 0:n.props),u}return r}(R);function Qc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Zc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Oe(e){return Oe=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Oe(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&&Dt(e,t)}function el(e,t){return t&&(tl(t)==="object"||typeof t=="function")?t:Qc(e)}function Dt(e,t){return Dt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Dt(e,t)}var tl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function nl(){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 rl(e){var t=nl();return function(){var n=Oe(e),u;if(t){var o=Oe(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return el(this,u)}}var ul=function(e){Yc(r,e);var t=rl(r);function r(n){return Zc(this,r),t.call(this,n)}return r}(Mn);function ol(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function il(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function De(e){return De=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},De(e)}function al(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Rt(e,t)}function sl(e,t){return t&&(cl(t)==="object"||typeof t=="function")?t:ol(e)}function Rt(e,t){return Rt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Rt(e,t)}var cl=function(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 fl(e){var t=ll();return function(){var n=De(e),u;if(t){var o=De(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return sl(this,u)}}var pl=function(e){al(r,e);var t=fl(r);function r(n){il(this,r);var u;return u=t.call(this,n),u.controlType="wrap",u.props=new ul(n==null?void 0:n.props),u}return r}(At);function Pt(e){return"children"in e&&ue(e.children)}function tr(e){return"headers"in e.props&&ue(e.props.headers)}function Re(e,t){Array.isArray(e)&&e.map(r=>{r.type===d.SUBTABLE?Re(r.props.headers,t):Pt(r)?Re(r==null?void 0:r.children,t):r instanceof le&&t(r)})}const nr=[d.AMOUNT,d.CALC,d.DATE_RANGE],rr={amount:{caption:"\u91D1\u989D",fieldType:A.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:A.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:A.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:A.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:A.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:A.TIMESTAMP}};function dl(e){let t=[];return Re(e,r=>{r instanceof le?t.push(r):(r.type,d.SUBTABLE)}),t}function hl(e,t=""){return!e||!Array.isArray(e)?[]:e.map(r=>{if(!r.dataBind||r.type===d.TITLE)return r;if(nr.includes(r.type)){const n=r.dataBind;Object.keys(n).forEach(u=>{const o=n[u],i=r.controlId+"_"+u;o.fieldCode=ur(i),o.dataCode=t})}else r.dataBind.fieldCode=ur(r.controlId),r.dataBind.dataCode=t;return r})}function ur(e){const t="field_";return e.startsWith(t)?e:t+e}function Pe(e){return Gi[e]}function yl(e){const t=new k,r=[];return e.forEach(n=>{if(!(n.parentId||!n.dataBind))if(nr.includes(n.type)){const u=n.dataBind,o=n.datasourceBind;Object.keys(u).forEach(i=>{const s=u[i],c=rr[i].fieldType,a=n.caption+"_"+rr[i].caption,f=Pe(c);if(!f)return;const p={caption:a,dataBind:s};i==="currency"&&(p.optionConfig="datasource",p.datasourceBind=o);const v=t.createControlInstance(f,{props:p});v&&r.push(v)})}else{const u=Pe(n.fieldType);if(!u)return;const o=t.createControlInstance(u,{props:{caption:n.caption,dataBind:n.dataBind,datasourceBind:n.datasourceBind}});o&&r.push(o)}}),r}function vl(e){const t=new k,n=(Array.isArray(e)?e:[e]).map(u=>{const o=Pe(u);return t.createControlInstance(o)});return Array.isArray(e)?n:n[0]}function $t(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function Tt(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Mt(e,t,r){return Qt(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(u=>u.validate(t,r)))).every(u=>u):yield e.validate(t,r)})}const gl=[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],ml=[d.CALC],El={check:{id:"listPageCheckBtnId",caption:"\u67E5\u770B"},edit:{id:"listPageEditBtnId",caption:"\u7F16\u8F91"},delete:{id:"listPageDeleteBtnId",caption:"\u5220\u9664"}};function pe(e,t){var n,u,o,i,s,c,a,f,p;const r=[];if(ue(e))r.push(...e.map(v=>pe(v,t)).flat());else{const v=e.type,{caption:b,content:B}=e.props;let h;if(gl.includes(v))v===d.OPERATION_COLUMN&&Object.entries(El).reduce((g,[l,{caption:y,id:w}])=>{var C;const _=e.props[l];return _&&_.isShow&&g.push({controlId:w,caption:y,type:e.type,controlType:e.controlType,parentId:(C=t==null?void 0:t.controlId)!=null?C:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),g},r);else if(h={controlId:e.id,caption:b||B||e.name,type:e.type,controlType:e.controlType,parentId:(n=t==null?void 0:t.controlId)!=null?n:null,canEdit:!ml.includes(v),canRead:!0,canHide:!0,group:"element"},t&&t.type===d.SUBTABLE&&(h.caption=t.caption+"_"+h.caption),v===d.VUE_FORM_ITEM&&(h.caption=e.props.controlExportName||e.name),(e instanceof le||e instanceof Jc)&&((o=(u=e.props)==null?void 0:u.dataBind)==null?void 0:o.fieldCode)!==void 0&&((s=(i=e.props)==null?void 0:i.dataBind)==null?void 0:s.fieldCode)!==""&&(h.group="field"),r.push(h),v===d.VUE_FORM_ITEM){let g="element";((a=(c=e.props)==null?void 0:c.dataBind)==null?void 0:a.fieldCode)!==void 0&&((p=(f=e.props)==null?void 0:f.dataBind)==null?void 0:p.fieldCode)!==""&&(g="field");const l=e.props.permissions;l==null||l.map(y=>{var w;h={controlId:y.key,caption:y.caption,type:e.type,controlType:e.controlType,parentId:(w=e.id)!=null?w:null,canEdit:!0,canRead:!0,canHide:!0,group:g},r.push(h)})}e.children&&r.push(...e.children.map(g=>pe(g,t)).flat()),e instanceof fe&&r.push(...e.props.headers.map(g=>pe(g,h)).flat())}return r}class k extends me{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new oe,this.fieldTypes=A,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:r,Setting:n}=t;this.controlSettingMap.set(r.controlType,n)})}registerControl(t){this.constructor.register(t);const{Designer:r,Setting:n}=t;this.register(r),this.registeredControlTypes.add(r.controlType),this.controlSettingMap.set(r.controlType,n)}getControlSetting(t){const r=this.controlSettingMap.get(t);return r||null}setInstance(t,r,n){try{if(!t)return;t.updateProps(r,n)}catch(u){throw u}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return Qt(this,null,function*(){return Mt(...t)})}getModelBindInfoList(...t){return Tt(...t)}getSchema(...t){return $t(...t)}listenControlHook(...t){return Sn.on(...t)}}k.EventLogic=oe;class _l{constructor(){this.designer=new k}ListPageBuilder(){const t=this.designer.createControlInstance(d.LIST_VIEW),r=this.designer.createControlInstance(d.SIMPLE_SEARCH),n=this.designer.createControlInstance(d.GRID_TABLE),u=this.designer.createControlInstance(d.CREATE_FORM_LIST_BUTTON),o=this.designer.createControlInstance(d.IMPORT_RECORD_LIST_BUTTON),i=this.designer.createControlInstance(d.EXPORT_LIST_BUTTON),s=this.designer.createControlInstance(d.EXPORT_RECORD_LIST_BUTTON);return n.children.push(u),n.children.push(o),n.children.push(i),n.children.push(s),t.children.push(r),t.children.push(n),t}ProListPageBuilder(){const t=this.designer.createControlInstance(d.LIST_VIEW);t.props.countType="async";const r=this.designer.createControlInstance(d.SIMPLE_SEARCH),n=this.designer.createControlInstance(d.GRID_TABLE),u=this.designer.createControlInstance(d.EXPORT_LIST_BUTTON),o=this.designer.createControlInstance(d.EXPORT_RECORD_LIST_BUTTON);return n.children.push(u),n.children.push(o),t.children.push(r),t.children.push(n),t}FormPageBuilder(){const t=this.designer.createControlInstance(d.DATA_VIEW),r=this.designer.createControlInstance(d.TITLE),n=this.designer.createControlInstance(d.GRID);return t.children.push(r),t.children.push(n),t}VuePageBuilder(){const t=this.designer.createControlInstance(d.GRID),r=this.designer.createControlInstance(d.VUE_FORM_ITEM);return r.props.isHideCaption=!0,r.props.controlExportName="VuePage",t.children.push(r),t}}function bl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function or(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Bl(e,t,r){return t&&or(e.prototype,t),r&&or(e,r),e}var N=function(){function e(t){bl(this,e);var r;this.visible=(r=t==null?void 0:t.visible)!==null&&r!==void 0?r:!0;var n;this.expression=(n=t==null?void 0:t.expression)!==null&&n!==void 0?n:!1}return Bl(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function Sl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Al=function(){function e(r){Sl(this,e),this.type=r.type,this.label=r.label,this.key=r.key,this.component=r.component;var n;this.effect=(n=r.effect)!==null&&n!==void 0?n:{};var u;this.scopeEffect=(u=r.scopeEffect)!==null&&u!==void 0?u:zi,this.defaultValue=r.defaultValue,this.validator=r.validator;var o;this.props=(o=r.props)!==null&&o!==void 0?o:new N,this.effectKeys=Object.keys(this.effect)}var t=e.prototype;return t.filterEffects=function(n){var u=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(o){var i=new RegExp("^".concat(o,"(\\.\\w+)*$"));return i.test(n)}).map(function(o){return u.effect[o]})},t.callEffectFn=function(n,u){try{var o=n.apply(null,u);Xe(o)&&Object.assign(this.props,o)}catch(i){re(`effect error
2
- `.concat(i))}},t.callEffect=function(n){for(var u=arguments.length,o=new Array(u>1?u-1:0),i=1;i<u;i++)o[i-1]=arguments[i];var s=this;this.filterEffects(n).forEach(function(c){return s.callEffectFn(c,o)})},t.callScopeEffect=function(){for(var n=arguments.length,u=new Array(n),o=0;o<n;o++)u[o]=arguments[o];this.callEffectFn(this.scopeEffect,u)},e}();function wl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var xt=function e(t){wl(this,e),this.type="group";var r;this.title=(r=t.title)!==null&&r!==void 0?r:"";var n;this.required=(n=t.required)!==null&&n!==void 0?n:!1,this.items=t.items,this.tips=t.tips};function Cl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Il(e){return"type"in e&&e.type==="tab"}var jt=function e(t){Cl(this,e),this.type="tab",this.title=t.title,this.items=t.items};function ir(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Fl(e){if(Array.isArray(e))return e}function Ol(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Dl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $e(e){return $e=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},$e(e)}function Rl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Lt(e,t)}function Pl(e,t){var r=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var n=[],u=!0,o=!1,i,s;try{for(r=r.call(e);!(u=(i=r.next()).done)&&(n.push(i.value),!(t&&n.length===t));u=!0);}catch(c){o=!0,s=c}finally{try{!u&&r.return!=null&&r.return()}finally{if(o)throw s}}return n}}function $l(){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 Tl(e,t){return t&&(xl(t)==="object"||typeof t=="function")?t:Ol(e)}function Lt(e,t){return Lt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Lt(e,t)}function Ml(e,t){return Fl(e)||Pl(e,t)||jl(e,t)||$l()}var xl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function jl(e,t){if(!!e){if(typeof e=="string")return ir(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return ir(e,t)}}function 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 Nl(e){var t=Ll();return function(){var n=$e(e),u;if(t){var o=$e(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Tl(this,u)}}var ql=function(e){Rl(r,e);var t=Nl(r);function r(n){Dl(this,r);var u;return u=t.call(this,n),Xe(n)&&Object.entries(n).forEach(function(o){var i=Ml(o,2),s=i[0],c=i[1];u[s]=c}),u}return r}(N);function Ul(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 Te(e){return Te=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Te(e)}function Hl(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&&(Wl(t)==="object"||typeof t=="function")?t:Ul(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Nt(e,t)}var Wl=function(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 Gl(e){var t=zl();return function(){var n=Te(e),u;if(t){var o=Te(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return kl(this,u)}}var Kl=function(e){Hl(r,e);var t=Gl(r);function r(n){Vl(this,r);var u;u=t.call(this,n);var o;u.maxLength=(o=n==null?void 0:n.maxLength)!==null&&o!==void 0?o:"";var i;u.minLength=(i=n==null?void 0:n.minLength)!==null&&i!==void 0?i:"";var s;u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"";var c;return u.i18n=(c=n==null?void 0:n.i18n)!==null&&c!==void 0?c:!1,u}return r}(N);function Xl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Jl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Me(e){return Me=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Me(e)}function Ql(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 Zl(e,t){return t&&(Yl(t)==="object"||typeof t=="function")?t:Xl(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},qt(e,t)}var Yl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};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 n=Me(e),u;if(t){var o=Me(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Zl(this,u)}}var nf=function(e){Ql(r,e);var t=tf(r);function r(n){Jl(this,r);var u;u=t.call(this,n);var o;u.max=(o=n==null?void 0:n.max)!==null&&o!==void 0?o:"";var i;u.min=(i=n==null?void 0:n.min)!==null&&i!==void 0?i:"";var s;return u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"",u}return r}(N);function rf(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 xe(e){return xe=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},xe(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&&Ut(e,t)}function af(e,t){return t&&(sf(t)==="object"||typeof t=="function")?t:rf(e)}function Ut(e,t){return Ut=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ut(e,t)}var sf=function(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 lf(e){var t=cf();return function(){var n=xe(e),u;if(t){var o=xe(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return af(this,u)}}var ff=function(e){of(r,e);var t=lf(r);function r(n){uf(this,r);var u;u=t.call(this,n);var o;u.showType=(o=n==null?void 0:n.showType)!==null&&o!==void 0?o:"switch";var i;u.tips=(i=n==null?void 0:n.tips)!==null&&i!==void 0?i:"";var s;return u.disabled=(s=n==null?void 0:n.disabled)!==null&&s!==void 0?s:!1,u}return r}(N);function pf(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(r){return r.__proto__||Object.getPrototypeOf(r)},je(e)}function hf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Vt(e,t)}function yf(e,t){return t&&(vf(t)==="object"||typeof t=="function")?t:pf(e)}function Vt(e,t){return Vt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Vt(e,t)}var vf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function gf(){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=gf();return function(){var n=je(e),u;if(t){var o=je(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return yf(this,u)}}var Ef=function(e){hf(r,e);var t=mf(r);function r(n){df(this,r);var u;u=t.call(this,n);var o;return u.options=(o=n==null?void 0:n.options)!==null&&o!==void 0?o:[],u}return r}(N);function _f(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 Le(e){return Le=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Le(e)}function Bf(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 Sf(e,t){return t&&(Af(t)==="object"||typeof t=="function")?t:_f(e)}function Ht(e,t){return Ht=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ht(e,t)}var Af=function(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 Cf(e){var t=wf();return function(){var n=Le(e),u;if(t){var o=Le(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Sf(this,u)}}var If=function(e){Bf(r,e);var t=Cf(r);function r(n){bf(this,r);var u;u=t.call(this,n);var o;u.placeholder=(o=n==null?void 0:n.placeholder)!==null&&o!==void 0?o:"";var i;return u.options=(i=n==null?void 0:n.options)!==null&&i!==void 0?i:[],u}return r}(N);function Ff(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Of(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ne(e){return Ne=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ne(e)}function Df(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&kt(e,t)}function Rf(e,t){return t&&(Pf(t)==="object"||typeof t=="function")?t:Ff(e)}function kt(e,t){return kt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},kt(e,t)}var Pf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function $f(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Tf(e){var t=$f();return function(){var n=Ne(e),u;if(t){var o=Ne(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Rf(this,u)}}var Mf=function(e){Df(r,e);var t=Tf(r);function r(n){Of(this,r);var u;u=t.call(this,n);var o;u.options=(o=n==null?void 0:n.options)!==null&&o!==void 0?o:[];var i;return u.showType=(i=n==null?void 0:n.showType)!==null&&i!==void 0?i:"outline",u}return r}(N);function xf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function jf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qe(e){return qe=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},qe(e)}function Lf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Wt(e,t)}function Nf(e,t){return t&&(qf(t)==="object"||typeof t=="function")?t:xf(e)}function Wt(e,t){return Wt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Wt(e,t)}var qf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Uf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Vf(e){var t=Uf();return function(){var n=qe(e),u;if(t){var o=qe(this).constructor;u=Reflect.construct(n,arguments,o)}else u=n.apply(this,arguments);return Nf(this,u)}}var Hf=function(e){Lf(r,e);var t=Vf(r);function r(n){jf(this,r);var u;u=t.call(this,n);var o;u.maxLength=(o=n==null?void 0:n.maxLength)!==null&&o!==void 0?o:"";var i;u.minLength=(i=n==null?void 0:n.minLength)!==null&&i!==void 0?i:"";var s;u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"";var c;u.maxRows=(c=n==null?void 0:n.maxRows)!==null&&c!==void 0?c:"";var a;u.minRows=(a=n==null?void 0:n.minRows)!==null&&a!==void 0?a:"";var f;return u.i18n=(f=n==null?void 0:n.i18n)!==null&&f!==void 0?f:!1,u}return r}(N);function kf(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function zt(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){kf(e,u,r[u])})}return e}function Wf(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),r.push.apply(r,n)}return r}function Gt(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Wf(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function zf(e,t){switch(e){case"input":return new Kl(t);case"textarea":return new Hf(t);case"input-number":return new nf(t);case"switch":return new ff(t);case"radio":return new Mf(t);case"checkbox":return new Ef(t);case"select":return new If(t);default:return new ql(t)}}function Gf(e){return function(t){var r=e.get(t);if(!!r)return new Al(Gt(zt({},r),{props:zf(r.component,"props"in r?r.props:void 0)}))}}function Kf(e){var t=function(o){return new xt(Gt(zt({},o),{items:o.items.map(Gf(n)).filter(Boolean)}))},r=function(o){return o.map(t)},n=e.fields.reduce(function(u,o){return u.set(o.key,o),u},new Map);return e.groups.map(function(u){return Il(u)?new jt(Gt(zt({},u),{items:r(u.items)})):t(u)})}class ar{constructor(t){var r;this.selected=null,this.selectedInstanceDataScopeParent=null,this.selectedDataScopeFlatInstances=[],this.selectedInstanceSetting=[],this.selectedInstanceSettingItems=[],this.selectedFieldItem=null,this.external={},this.movingInstance=null,this.movingInstanceOldParent=null,this.movingInstanceOldDataScopeParent=null,this.getParentBeforeInstanceMove=(r=t.getParentBeforeInstanceMove)!=null?r:n=>n.parent,this.instance=t.instance,this.getFlatInstances()}get selectedRules(){return this.selected?this.selected.rules:null}get selectedAntdRules(){const t=this.selectedRules;return t||null}setInstances(t){this.instance=t,this.getFlatInstances()}setSelectInstance(t){this.selected=t,this.selectedInstanceDataScopeParent=t?he(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?lr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(r=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(r))})}getSettingItems(t){return t instanceof xt?t.items:t.items.reduce((r,n)=>(r.push(...n.items),r),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=he(t)}updateDataFieldCodeMap(t){const r=he(t);if(!r)return;const n=this.dataFieldCodeMap.get(r.props.datasourceBind.dataCode);if(!!n){for(const[u,o]of n.entries())if(o.id===t.id){n.delete(u);break}cr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],r=new Map,n=new Map;de(this.instance,u=>{t.push(u),r.set(u.id,u),cr(u,n)}),this.flatInstances=t,this.instanceIdMap=r,this.dataFieldCodeMap=n}}function sr(e,t,r){const{dataCode:n,fieldCode:u}=t;n&&u&&(e.has(n)||e.set(n,new Map),e.get(n).set(u,r))}function cr(e,t){if(e instanceof le){const r=e.props.dataBind;r instanceof Ee?sr(t,r,e):Object.values(r).forEach(n=>{sr(t,n,e)})}}function de(e,t){(Array.isArray(e)?e:[e]).forEach(n=>{t(n),Pt(n)&&de(n.children,t),tr(n)&&de(n.props.headers,t)})}function Kt(e){return[d.SUBTABLE,d.DATA_VIEW,d.LIST_VIEW].includes(e.type)}function he(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!Kt(t);)t=t.parent;return t}function lr(e){const t=[e];return de(e,r=>{r!==e&&t.includes(r.parent)&&!Kt(r)&&t.push(r)}),t}let Xt="";class fr extends pn{constructor(t){super(),this.isMounted=!1,this.id=ke(8),this.__pluginsApplied=!1,this.getSchema=$t,this.getModelBindInfoList=Tt,this.generatePermissions=pe,this.$options=Object.freeze(t);const{autoMount:r=!1,Designer:n=k,schema:u,mode:o="form",store:i={}}=this.$options;this.eventLogic=new oe,this.designer=new n,this.store=new ar(Z({instance:this.designer.createControl(Array.isArray(u)?u:[u])},i)),this.mode=o,r&&this.mount()}mount(){const{plugins:t=[]}=this.$options;this.__plugins=t,this.applyPlugins(),this.isMounted=!0}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var r;try{Xt=(r=t.pluginName)!=null?r:t.constructor.name,t.apply(this),Xt=""}catch(n){re(`${Xt||t.constructor.name} Plugin apply Error
3
- ${n}`)}}),this.__pluginsApplied=!0)}emit(t,...r){return super.emit(t,r)}on(t,r){return super.on(t,r)}setInstances(t,r){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],r))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){const t=this.store.selected;if(!t)return;let r=this.getControlSetting(t.type);if(t.parent instanceof pl){const u=this.getControlSetting(t.parent.type);r=this.concatSetting(r,u,t.parent.id)}this.store.setSelectInstanceSettings(r),this.callSelectedEffect("");const n={from:null,current:this.store.selectedInstanceDataScopeParent,oldParent:null,newParent:t.parent};this.callSelectedScopeEffect(n)}concatSetting(t,r,n){var o,i,s,c;let u=t;if(((o=t[0])==null?void 0:o.type)==="tab"&&((i=r[0])==null?void 0:i.type)==="tab"){const a=t,f=r.slice(0);u=a.map((p,v)=>{const b=new jt(p),B=f.findIndex(g=>g.title===p.title);if(B===-1)return b;const h=f.splice(B,1)[0];return h&&(b.items=[...this.formatGroupSetting(h.items,n),...b.items]),b}),f.length&&(u=[...u,...f.map(p=>this.formatGroupSetting(p,n))])}else if(((s=t[0])==null?void 0:s.type)==="group"&&((c=r[0])==null?void 0:c.type)==="group"){const a=t,f=r;u=[...this.formatGroupSetting(f,n),...a]}return u}formatGroupSetting(t,r){if(ue(t))return t.map(n=>{const u=new xt(n);return u.fromId=r,u});{const n=new jt(t);return n.items=this.formatGroupSetting(n.items,r),n}}setControlConfig(...t){return this.designer.registerControlConfig(...t)}getControlConfig(t){return this.designer.getControlConfig(t)}getControlSetting(t){const r=this.designer.getControlSetting(t);return r?Kf(r):[]}selectInstance(t){this.beforeSelectInstance(),this.store.setSelectInstance(t),this.afterSelectInstance()}setSelectedFieldItem(t){this.store.setSelectedFieldItem(t),this.callSelectedEffect("dataBind",{fieldItem:t})}moveStart(t){const r=this.getInstance(t);r&&this.store.setMovingInstance(r)}moveEnd(t=this.store.movingInstance){var c;if(t===null)return;const r=this.getInstance(t);if(!r)return;const n=this.store.movingInstanceOldDataScopeParent,u=he(r),o=this.store.movingInstanceOldParent,i=r.parent;this.store.setMovingInstance(null),r.id!==((c=this.store.selected)==null?void 0:c.id)?this.selectInstance(r):this.store.setSelectInstance(r),this.store.getFlatInstances();const s={from:n,current:u,oldParent:o,newParent:i};this.callSelectedScopeEffect(s),o?this.emit("moved",Z({},s)):this.emit("joined",Z({},s))}createInstance(t,r){return this.designer.createControlInstance(t,r)}getInstance(t){return t instanceof R?t:this.store.instanceIdMap.get(t)}getInstances(){return this.store.flatInstances}getInstancesFromType(t){return this.getInstances().filter(r=>r.type===t)}getDataScopeInstances(){return this.store.selectedDataScopeFlatInstances}getDataScopeInstancesFromType(t){return this.getDataScopeInstances().filter(r=>r.type===t)}updateInstancePropValue(t,r,n,u){var i;!ln(t.props,r,n)||(r.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((i=this.store.selected)==null?void 0:i.id)&&this.callSelectedEffect(r,u),this.emit("updated",{instance:t,propName:r,value:n}))}updateInstanceProps(t,r,n,u=""){Object.entries(r).forEach(([o,i])=>{const s=`${u?u+".":""}${o}`;ya(i)?this.updateInstanceProps(t,i,n,s):this.updateInstancePropValue(t,s,i,n)})}setInstance(t,r,n,u){Je(r)?this.updateInstancePropValue(t,String(r),n,u):this.updateInstanceProps(t,r,n)}removeInstance(t){const r=t.parent;if(!r)return;const n=r instanceof fe&&r.props.headers.includes(t)?r.props.headers:r.children,u=n.findIndex(o=>o===t);u>-1&&n.splice(u,1),this.store.getFlatInstances(),this.emit("removed",{instance:t,index:u,parent:r})}replaceInstance(t,r){const n=t.parent;if(!n)return;const u=n instanceof fe&&n.props.headers.includes(t)?n.props.headers:n.children,o=u.findIndex(i=>i===t);o>-1&&u.splice(o,1,r),this.store.getFlatInstances()}updateInstanceType(t,r){const n=t.toSchema(),u=this.createInstance(r,{id:n.id,props:n.props});if(!u){ge(`can\u2018t update instance type to ${r}`);return}return u}validate(t,r){return Mt(this.store.instance,t,r)}getCustomControlsInUse(){return this.getInstances().filter(this.assertInstanceIsCustomControl).reduce((t,r)=>(t.includes(r.type)||t.push(r.type),t),[])}assertInstanceIsCustomControl(t){return!va(Je(t)?t:t.type)}static register(...t){return k.register(...t),this}static judgeControlIsRegistered(t){return k.staticRegisteredTypes.has(t.Designer.controlType)}judgeControlIsRegistered(t){return this.designer.registeredControlTypes.has(t.Designer.controlType)}register(...t){return this.designer.registerControl(...t),this}assertInstance(t,r){return Je(r)?t.type===r:r.includes(t.type)}getInstanceInListControl(t){let r=t;for(;r;){if(r instanceof fe)return!0;r=r.parent}return!1}getInstanceParentControl(t,r){if(!!t.parent)return this.assertInstance(t.parent,r)?t.parent:this.getInstanceParentControl(t.parent,r)}callSelectedEffect(t,r={}){this.store.selectedInstanceSettingItems.forEach(n=>{n.callEffect(t,this,Z({control:this.store.selected},r))})}callSelectedScopeEffect(t={}){this.store.selectedInstanceSettingItems.forEach(r=>{r.callScopeEffect(this,Z({control:this.store.selected},t))})}}fr.EventLogic=oe,E.Builder=_l,E.Designer=k,E.Driven=fr,E.Store=ar,E.checkSchema=Mt,E.fillModelBindInfoListFieldCode=hl,E.findInstanceDataScopeParent=he,E.generatePermissions=pe,E.getColumnTypeFromFiledType=Pe,E.getColumnsFromFiledType=vl,E.getColumnsFromModelBindInfoList=yl,E.getDataScopeFlatInstances=lr,E.getMasterFormControls=dl,E.getModelBindInfoList=Tt,E.hasChildrenControl=Pt,E.hasHeaderControl=tr,E.isDataScopeInstance=Kt,E.loop=de,E.loopFormControl=Re,E.toSchema=$t,Object.defineProperty(E,"__esModule",{value:!0})});
1
+ var ol=Object.defineProperty;var On=Object.getOwnPropertySymbols;var al=Object.prototype.hasOwnProperty,sl=Object.prototype.propertyIsEnumerable;var $n=(E,F,D)=>F in E?ol(E,F,{enumerable:!0,configurable:!0,writable:!0,value:D}):E[F]=D,z=(E,F)=>{for(var D in F||(F={}))al.call(F,D)&&$n(E,D,F[D]);if(On)for(var D of On(F))sl.call(F,D)&&$n(E,D,F[D]);return E};var Bt=(E,F,D)=>new Promise((Fe,le)=>{var De=j=>{try{K(D.next(j))}catch(X){le(X)}},Re=j=>{try{K(D.throw(j))}catch(X){le(X)}},K=j=>j.done?Fe(j.value):Promise.resolve(j.value).then(De,Re);K((D=D.apply(E,F)).next())});(function(E,F){typeof exports=="object"&&typeof module!="undefined"?F(exports):typeof define=="function"&&define.amd?define(["exports"],F):(E=typeof globalThis!="undefined"?globalThis:E||self,F(E.modelDrivenDriven={}))})(this,function(E){"use strict";var F="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",D="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Fe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",le="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",De="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Re="{caption}\u5FC5\u586B",K="\u8BF7\u8F93\u5165\u6807\u9898",j="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",X="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Pn="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Tn="\u8BF7\u7ED1\u5B9A\u8868\u5355",Mn="\u8BF7\u7ED1\u5B9A\u5217\u8868",Ln="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",xn="\u8BF7\u8F93\u5165\u663E\u793A\u503C",jn="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Nn="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Un="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Vn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",qn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Hn="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",kn="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Wn="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Gn="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",zn="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Kn="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Xn="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Jn="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Qn="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Zn="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Yn="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",er="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",tr="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",nr="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",rr="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ur="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",ir="\u8BF7\u7ED1\u5B9A\u670D\u52A1",or="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ar="\u8BF7\u9009\u62E9\u7701",sr="\u8BF7\u9009\u62E9\u5E02",cr="\u8BF7\u9009\u62E9\u533A",lr="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",fr="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",pr="\u8BF7\u8F93\u5165\u5217\u5BBD",dr="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",hr="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",yr="\u8BF7\u9009\u62E9\u63A7\u4EF6",vr="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",gr="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",mr="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Er="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",br="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",_r="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Ar="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Br="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Sr="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Cr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ir="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",wr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Fr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Dr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Rr="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Or="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",$r="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Pr="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Tr="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Mr="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Lr="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",xr={isNotNumber:F,isNotString:D,isNotObject:Fe,isNotArray:le,isNotBoolean:De,runtimeRequired:Re,pleaseEnterCaption:K,pleaseEnterCaptionTip:j,pleaseEnterPlaceholder:X,pleaseEnterFieldCode:Pn,pleaseEnterForm:Tn,pleaseEnterList:Mn,pleaseEnterProcess:Ln,pleaseEnterLabel:xn,pleaseEnterValue:jn,bizKeyNotBindFiled:Nn,pleaseSelectOneField:Un,pleaseEnterNumberRange:Vn,pleaseEnterAValueGreaterThanMin:qn,pleaseEnterAValueLessThanMax:Hn,numberRangeSetError:kn,stringRangeError:Wn,attachmentMaxSize:Gn,pleaseEnterTotalScoreSetting:zn,theTotalScoreMustNotBeLessThan1:Kn,scoreDefaultValueRange:Xn,attachmentLimitError:Jn,PleaseReselectTheOptionalQuantity:Qn,TheMaximumLengthIsGreaterThanTheMinimumLength:Zn,TheMinimumLengthIsGreaterThanTheMaximumLength:Yn,PleaseSelectTheCorrectOptionSettings:er,optionIdIsRepeat:tr,optionIsRequired:nr,pleaseEnterDataCode:rr,pleaseEnterValueFieldCode:ur,pleaseEnterSvcCode:ir,pleaseBindAtLeastOneDisplayValue:or,pleaseSelectProvince:ar,pleaseSelectCity:sr,pleaseSelectDistrict:cr,limitRowsCannotBeLessThan0:lr,TheNumberOfRowsCannotBeLessThanMinRows:fr,pleaseEnterColumnWidth:pr,pleaseSetTheLogicalRelationshipOfAllRuleConditions:dr,pleaseCompleteAllRulesAndConditions:hr,pleaseSelectControl:yr,pleaseSelectAtLeastOneColumn:vr,pleaseSelectFillBackMode:gr,pleaseSelectDashboard:mr,rootNodeIsRequired:Er,theViewNameCannotBeEmpty:br,pleaseSelectOcrType:_r,pleaseSelectAtLeastOneFieldToFillIn:Ar,pleaseChooseAtLeastOne:Br,pleaseEnterButtonContent:Sr,pleaseEnterDataCodeInDataSetting:Cr,pleaseEnterValueFieldCodeInDataSetting:Ir,pleaseEnterSvcCodeInDataSetting:wr,pleaseBindAtLeastOneDisplayValueInDataSetting:Fr,rootNodeIsRequiredInDataSetting:Dr,pleaseEnterMaxHeight:Rr,pleaseEnter:Or,pleaseEnterWatermark:$r,pleaseEnterFileName:Pr,pleaseUploadAtLeastOnePrintTemplate:Tr,pleaseAssignBusiness:Mr,pleaseAssignExternal:Lr},jr="Please enter a number",Nr="Please enter a string",Ur="Please enter an object",Vr="Please enter an array",qr="Please enter a boolean",Hr="{caption} Required",kr="Please enter the title",Wr="Please enter the bubble prompt",Gr="Please enter the prompt text",zr="Please bind data items",Kr="Please bind the form",Xr="Please bind the list",Jr="Please bind the process",Qr="Please enter the displayed value",Zr="Please enter the stored value",Yr="The document number is not bound to the data item",eu="Please select at least one display field",tu="Please enter a value greater than or equal to {min} and less than or equal to {max}",nu="Please enter a value greater than or equal to {min}",ru="Please enter a value less than or equal to {max}",uu="The value range is set incorrectly",iu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",ou="The attachment size must be between 0MB and 1000MB",au="Please fill in the total score setting",su="The total score cannot be less than 1",cu="The default value must be between {min} and {max}",lu="The number of attachments uploaded must be between {min} and {max}",fu="Please re-select the optional quantity",pu="The maximum length of the control must be greater than the minimum length",du="The minimum length of the control must be less than the maximum length",hu="Please select the correct option setting",yu="Option ID cannot be repeated",vu="Please enter at least one option",gu="Please bind the data source",mu="Please bind the stored value",Eu="Please bind the service",bu="At least one display value must be bound",_u="Please select a province",Au="Please select a city",Bu="Please select a district",Su="The minimum number of lines to fill in cannot be less than 0",Cu="The number of rows cannot be less than {min} rows",Iu="Please enter the column width",wu="Please set the logical relationship of all rule conditions",Fu="Please complete all rules and conditions",Du="please select control",Ru="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ou="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",$u="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Pu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Tu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Mu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Lu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",xu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ju="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Nu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Uu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Vu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",qu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Hu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ku="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Wu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Gu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",zu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ku={isNotNumber:jr,isNotString:Nr,isNotObject:Ur,isNotArray:Vr,isNotBoolean:qr,runtimeRequired:Hr,pleaseEnterCaption:kr,pleaseEnterCaptionTip:Wr,pleaseEnterPlaceholder:Gr,pleaseEnterFieldCode:zr,pleaseEnterForm:Kr,pleaseEnterList:Xr,pleaseEnterProcess:Jr,pleaseEnterLabel:Qr,pleaseEnterValue:Zr,bizKeyNotBindFiled:Yr,pleaseSelectOneField:eu,pleaseEnterNumberRange:tu,pleaseEnterAValueGreaterThanMin:nu,pleaseEnterAValueLessThanMax:ru,numberRangeSetError:uu,stringRangeError:iu,attachmentMaxSize:ou,pleaseEnterTotalScoreSetting:au,theTotalScoreMustNotBeLessThan1:su,scoreDefaultValueRange:cu,attachmentLimitError:lu,PleaseReselectTheOptionalQuantity:fu,TheMaximumLengthIsGreaterThanTheMinimumLength:pu,TheMinimumLengthIsGreaterThanTheMaximumLength:du,PleaseSelectTheCorrectOptionSettings:hu,optionIdIsRepeat:yu,optionIsRequired:vu,pleaseEnterDataCode:gu,pleaseEnterValueFieldCode:mu,pleaseEnterSvcCode:Eu,pleaseBindAtLeastOneDisplayValue:bu,pleaseSelectProvince:_u,pleaseSelectCity:Au,pleaseSelectDistrict:Bu,limitRowsCannotBeLessThan0:Su,TheNumberOfRowsCannotBeLessThanMinRows:Cu,pleaseEnterColumnWidth:Iu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:wu,pleaseCompleteAllRulesAndConditions:Fu,pleaseSelectControl:Du,pleaseSelectDashboard:Ru,theViewNameCannotBeEmpty:Ou,pleaseSelectOcrType:$u,pleaseSelectAtLeastOneFieldToFillIn:Pu,pleaseChooseAtLeastOne:Tu,pleaseEnterButtonContent:Mu,pleaseEnterDataCodeInDataSetting:Lu,pleaseEnterValueFieldCodeInDataSetting:xu,pleaseEnterSvcCodeInDataSetting:ju,pleaseBindAtLeastOneDisplayValueInDataSetting:Nu,rootNodeIsRequiredInDataSetting:Uu,pleaseEnterMaxHeight:Vu,pleaseEnter:qu,pleaseEnterWatermark:Hu,pleaseEnterFileName:ku,pleaseUploadAtLeastOnePrintTemplate:Wu,pleaseAssignBusiness:Gu,pleaseAssignExternal:zu},Xu="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ju="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Qu="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Zu="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Yu="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ei="{caption}\u5FC5\u9808",ti="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ni="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ri="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ui="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ii="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",oi="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ai="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",si="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ci="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",li="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",fi="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",pi="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",di="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",hi="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",yi="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",vi="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",gi="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",mi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ei="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",bi="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",_i="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Ai="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Bi="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Si="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ci="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ii="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",wi="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Fi="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Di="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ri="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Oi="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",$i="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Pi="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ti="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Mi="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Li="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",xi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ji="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ni="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ui="please select control",Vi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",qi="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Hi="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ki="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Wi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Gi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",zi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ki="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Xi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ji="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Qi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Zi="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Yi="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",eo="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",to="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",no="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ro="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",uo="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",io={isNotNumber:Xu,isNotString:Ju,isNotObject:Qu,isNotArray:Zu,isNotBoolean:Yu,runtimeRequired:ei,pleaseEnterCaption:ti,pleaseEnterCaptionTip:ni,pleaseEnterPlaceholder:ri,pleaseEnterFieldCode:ui,pleaseEnterForm:ii,pleaseEnterList:oi,pleaseEnterProcess:ai,pleaseEnterLabel:si,pleaseEnterValue:ci,bizKeyNotBindFiled:li,pleaseSelectOneField:fi,pleaseEnterNumberRange:pi,pleaseEnterAValueGreaterThanMin:di,pleaseEnterAValueLessThanMax:hi,numberRangeSetError:yi,stringRangeError:vi,attachmentMaxSize:gi,pleaseEnterTotalScoreSetting:mi,theTotalScoreMustNotBeLessThan1:Ei,scoreDefaultValueRange:bi,attachmentLimitError:_i,PleaseReselectTheOptionalQuantity:Ai,TheMaximumLengthIsGreaterThanTheMinimumLength:Bi,TheMinimumLengthIsGreaterThanTheMaximumLength:Si,PleaseSelectTheCorrectOptionSettings:Ci,optionIdIsRepeat:Ii,optionIsRequired:wi,pleaseEnterDataCode:Fi,pleaseEnterValueFieldCode:Di,pleaseEnterSvcCode:Ri,pleaseBindAtLeastOneDisplayValue:Oi,pleaseSelectProvince:$i,pleaseSelectCity:Pi,pleaseSelectDistrict:Ti,limitRowsCannotBeLessThan0:Mi,TheNumberOfRowsCannotBeLessThanMinRows:Li,pleaseEnterColumnWidth:xi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ji,pleaseCompleteAllRulesAndConditions:Ni,pleaseSelectControl:Ui,pleaseSelectDashboard:Vi,theViewNameCannotBeEmpty:qi,pleaseSelectOcrType:Hi,pleaseSelectAtLeastOneFieldToFillIn:ki,pleaseChooseAtLeastOne:Wi,pleaseEnterButtonContent:Gi,pleaseEnterDataCodeInDataSetting:zi,pleaseEnterValueFieldCodeInDataSetting:Ki,pleaseEnterSvcCodeInDataSetting:Xi,pleaseBindAtLeastOneDisplayValueInDataSetting:Ji,rootNodeIsRequiredInDataSetting:Qi,pleaseEnterMaxHeight:Zi,pleaseEnter:Yi,pleaseEnterWatermark:eo,pleaseEnterFileName:to,pleaseUploadAtLeastOnePrintTemplate:no,pleaseAssignBusiness:ro,pleaseAssignExternal:uo},oo={zhCN:xr,enUS:Ku,jaJP:io},St;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(St||(St={}));var Ct;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(Ct||(Ct={}));var ao="zh-CN",so=function(){};function $(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var R;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(R||(R={}));var p;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(p||(p={}));var S;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(S||(S={}));var O,co=(O={},$(O,S.ARRAY,p.ARRAY_COLUMN),$(O,S.AUTO_NUMBER,p.AUTO_NUMBER_COLUMN),$(O,S.DECIMAL,p.DECIMAL_COLUMN),$(O,S.DEPARTMENTS,p.DEPARTMENT_COLUMN),$(O,S.FILE,p.FILE_COLUMN),$(O,S.IMAGE,p.IMAGE_COLUMN),$(O,S.ADDRESS,p.LOCATION_COLUMN),$(O,S.EMPLOYEES,p.EMPLOYEE_COLUMN),$(O,S.TEXT,p.TEXT_COLUMN),$(O,S.TIMESCOPE,p.TIMESCOPE_COLUMN),$(O,S.TIMESTAMP,p.TIMESTAMP_COLUMN),$(O,S.VARCHAR,p.VARCHAR_COLUMN),$(O,S.RELATION,p.VARCHAR_COLUMN),O),It;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(It||(It={}));var wt="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",lo=wt+"0123456789";function Oe(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",r=0;r<e;r++){var n=r===0?wt:lo,u=Math.random()*n.length;t+=n[parseInt(String(u),10)]}return t}function $e(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function fo(e){if(Array.isArray(e))return $e(e)}function po(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ft(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ho(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function fe(e,t,r){return ho()?fe=Reflect.construct:fe=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),a=new c;return o&&Q(a,o.prototype),a},fe.apply(null,arguments)}function J(e){return J=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},J(e)}function Dt(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Q(e,t)}function yo(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function vo(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function go(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function mo(e,t){return t&&(Eo(t)==="object"||typeof t=="function")?t:po(e)}function Q(e,t){return Q=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Q(e,t)}function Rt(e){return fo(e)||vo(e)||bo(e)||go()}var Eo=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function bo(e,t){if(!!e){if(typeof e=="string")return $e(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return $e(e,t)}}function Pe(e){var t=typeof Map=="function"?new Map:void 0;return Pe=function(n){if(n===null||!yo(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return fe(n,arguments,J(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Q(u,n)},Pe(e)}function _o(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ot(e){var t=_o();return function(){var n=J(e),u;if(t){var i=J(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return mo(this,u)}}var Te=console;function pe(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n,u=t.slice(1);(n=Te).warn.apply(n,["\u{1F9D0} Driven Warning:"+t[0]].concat(Rt(u)))}function $t(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n,u=t.slice(1);(n=Te).log.apply(n,["\u{1F680} Driven Log:"+t[0]].concat(Rt(u)))}function Ao(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Me=function(e){Dt(r,e);var t=Ot(r);function r(n){Ft(this,r);var u;return u=t.call(this,n),u.name="\u{1F4A5} Driven Error",u.message=n?Ao(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return r}(Pe(Error)),Bo=function(e){Dt(r,e);var t=Ot(r);function r(n){Ft(this,r);var u;return u=t.call(this,n),u.name="\u{1F6A8} Driven Reference Error",u}return r}(Me);function Z(e){throw new Me(e)}function Pt(e){throw new Bo(e)}function So(e){Te.error(new Me(e))}var Co=Object.prototype.toString;function Tt(e,t){return Co.call(e)==="[object "+t+"]"}function Io(e){return Tt(e,"String")}function wo(e){return Tt(e,"Promise")}var Fo=function(){function e(t){var r,n;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((n=(r=t.messages)!==null&&r!==void 0?r:this.getPreImport(t.locale))!==null&&n!==void 0?n:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var r=this;this.locale=t,this._messageCache.clear();var n=this.getMessageData();wo(n)?n.then(function(u){r._messageCache.clear(),r.messages[r.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=n},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,r,n){var u=this.getMessage(t);return u?this.formatMessage(u,n):this.formatMessage(r,n)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var r=this.getPathArray(t),n=r.reduce(function(u,i,o,s){if(u!==void 0){var c=u[i];if(!(o===s.length-1&&!Io(c)))return c}},this.message);return this._messageCache.set(t,n),n},e.prototype.formatMessage=function(t,r){return r?t.replace(this.variableRegExp,function(n,u){var i=r[u];return i!==void 0?String(i):n}):t},e.prototype.getPreImport=function(t){var r;if(window.okI18nPreImport){var n=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(n)?window.okI18nPreImport:(r={},r[n]=window.okI18nPreImport,r)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function Do(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Mt=function(){function e(){Do(this,e)}return e.getMessage=function(r){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(r,"",n)},e.resetI18n=function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ao;return new Fo({locale:r,messages:oo})},e.setLocale=function(r){return this.$i18n.setLocale(r)},e}();Mt.$i18n=Mt.resetI18n();function Lt(e,t,r){var n=t.replace(/\[(\d)]/g,function(i,o){return"."+o}).split("."),u=!1;return n.reduce(function(i,o,s,c){var a=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,o)){pe("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),i,i);return}return s===c.length-1&&!Object.is(a[o],r)&&(a[o]=r,u=!0),a[o]}},e),u}var Ro=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Oo={exports:{}};(function(e){(function(t){var r=function(l,h,C){if(!a(h)||y(h)||g(h)||_(h)||c(h))return h;var b,I=0,L=0;if(f(h))for(b=[],L=h.length;I<L;I++)b.push(r(l,h[I],C));else{b={};for(var B in h)Object.prototype.hasOwnProperty.call(h,B)&&(b[l(B,C)]=r(l,h[B],C))}return b},n=function(l,h){h=h||{};var C=h.separator||"_",b=h.split||/(?=[A-Z])/;return l.split(b).join(C)},u=function(l){return A(l)?l:(l=l.replace(/[\-_\s]+(.)?/g,function(h,C){return C?C.toUpperCase():""}),l.substr(0,1).toLowerCase()+l.substr(1))},i=function(l){var h=u(l);return h.substr(0,1).toUpperCase()+h.substr(1)},o=function(l,h){return n(l,h).toLowerCase()},s=Object.prototype.toString,c=function(l){return typeof l=="function"},a=function(l){return l===Object(l)},f=function(l){return s.call(l)=="[object Array]"},y=function(l){return s.call(l)=="[object Date]"},g=function(l){return s.call(l)=="[object RegExp]"},_=function(l){return s.call(l)=="[object Boolean]"},A=function(l){return l=l-0,l===l},d=function(l,h){var C=h&&"process"in h?h.process:h;return typeof C!="function"?l:function(b,I){return C(b,l,I)}},v={camelize:u,decamelize:o,pascalize:i,depascalize:o,camelizeKeys:function(l,h){return r(d(u,h),l)},decamelizeKeys:function(l,h){return r(d(o,h),l,h)},pascalizeKeys:function(l,h){return r(d(i,h),l)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=v:t.humps=v})(Ro)})(Oo);var xt={};Object.defineProperty(xt,"__esModule",{value:!0});function Le(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:Le(t));{const t={};for(const r in e){const n=e[r];t[r]=typeof n!="object"||n===null?n:Le(n)}return t}}var $o=xt.default=Le;function Y(e){if(e!==void 0)return typeof e=="object"?$o(e):e}function xe(e){return Object.prototype.toString.call(e)==="[object Object]"}function Po(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function ee(e){return Array.isArray(e)}function je(e){return typeof e=="string"}function To(e){return Object.values(p).includes(e)}function Ne(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Mo(e){if(Array.isArray(e))return Ne(e)}function jt(e,t,r,n,u,i,o){try{var s=e[i](o),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function Lo(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var i=e.apply(t,r);function o(c){jt(i,n,u,o,s,"next",c)}function s(c){jt(i,n,u,o,s,"throw",c)}o(void 0)})}}function xo(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jo(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function No(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ue(e){return Mo(e)||jo(e)||Uo(e)||No()}function Uo(e,t){if(!!e){if(typeof e=="string")return Ne(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Ne(e,t)}}var Vo=function(e,t){var r,n,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;o;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},Nt=function(){function e(){xo(this,e),this._events=new Map,this.debug=!1}var t=e.prototype;return t.emit=function(n){for(var u=arguments.length,i=new Array(u>1?u-1:0),o=1;o<u;o++)i[o-1]=arguments[o];var s=this;return Lo(function(){var c,a,f,y,g,_,A,d,v,l,h,C;return Vo(this,function(b){switch(b.label){case 0:if(c=s._events.get(n),a=[],!c)return[3,10];f=c.slice(),y=!0,g=!1,_=void 0,b.label=1;case 1:b.trys.push([1,8,9,10]),A=f[Symbol.iterator](),b.label=2;case 2:if(y=(d=A.next()).done)return[3,7];if(v=d.value,!c.includes(v))return[3,6];b.label=3;case 3:return b.trys.push([3,5,,6]),s.debug&&$t.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(v.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+v.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"\u3002")].concat(Ue(i))),[4,v.apply(null,Ue(i))];case 4:return l=b.sent(),s.debug&&$t.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(v.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+v.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Ue(i),[l])),a.push(l),l===!1?[3,7]:[3,6];case 5:return h=b.sent(),So(String(h)),[3,6];case 6:return y=!0,[3,2];case 7:return[3,10];case 8:return C=b.sent(),g=!0,_=C,[3,10];case 9:try{!y&&A.return!=null&&A.return()}finally{if(g)throw _}return[7];case 10:return[2,a]}})})()},t.on=function(n,u){if(this._events.has(n)){var i;(i=this._events.get(n))===null||i===void 0||i.push(u)}else this._events.set(n,[u])},t.off=function(n,u){if(this._events.has(n)){var i=this._events.get(n),o=i==null?void 0:i.indexOf(u);i==null||i.splice(o,1)}},t.delete=function(n){this._events.has(n)&&this._events.delete(n)},t.clear=function(){this._events=new Map},e}();function qo(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ho=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"}],te=function(){function e(){qo(this,e)}var t=e.prototype;return t.getEventsFromKeys=function(n){var u=typeof n=="string"?[n]:n;return e.events.filter(function(i){return u.includes(i.key)})},e}();te.events=Ho;function ko(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ut=[],de=function(){function e(r){ko(this,e),this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=r,this._initControls(r)}var t=e.prototype;return t.registerControlConfig=function(n,u){return this.controlConfigMap.set(n,u),this},t.getControlConfig=function(n){return this.controlConfigMap.get(n)},t.getControls=function(){return this._controls},t.register=function(n){n.__is_control__||Z("".concat(n.name," is not a Control"));var u=this._controls.findIndex(function(i){return i.controlType===n.controlType});return u>-1&&(pe("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(u,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this},t.isLayoutControl=function(n){return n.controlType===R.LAYOUT},t.isFormControl=function(n){return n.controlType===R.FORM},t.isListControl=function(n){return n.controlType===R.LIST},t.isColumnControl=function(n){return n.controlType===R.COLUMN},t.createControl=function(n,u){var i=this;if(Array.isArray(n))return n.map(function(f){return i.createControl(f,u)});n.children&&(n.children=n.children.map(function(f){return i.createControl(f,u)})),this.isListControl(n)&&n.props.headers&&(n.props.headers=n.props.headers.map(function(f){return i.createControl(f,u)}));var o=this.getControlFormType(n.type);if(o){var s=n;if(typeof u=="function"){var c=u(s);c&&(s=c)}var a=new o(s);return a}else Z("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))},t.createControlInstance=function(n,u){var i=this.getControlFormType(n);if(i)return new i(u)},t.getControlFormType=function(n){return this._controls.find(function(u){return u.controlType===n})},t._initControls=function(n){var u=this;this.constructor.staticControls.forEach(function(i){u.register(i[n])})},e.register=function(n){var u=n.Designer,i=n.Runtime;(!u||!i||!u.__is_control__||!i.__is_control__)&&Z("".concat(n," is can't register as a Control"));var o=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return o>-1&&(pe("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(o,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),this},e}();de.staticControls=Ut,de.staticRegisteredTypes=new Set(Ut.map(function(e){return e.Designer.controlType})),de.staticRegisteredConfigs=new Map;function Vt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Wo=function e(t){Vt(this,e);var r;this.dataCode=(r=t==null?void 0:t.dataCode)!==null&&r!==void 0?r:"";var n;this.fieldCode=(n=t==null?void 0:t.fieldCode)!==null&&n!==void 0?n:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:""},qt;(function(e){e.CNY="CNY",e.USD="USD",e.JPY="JPY",e.EUR="EUR",e.INR="INR",e.IDR="IDR",e.BRL="BRL",e.AED="AED",e.AUD="AUD",e.CAD="CAD",e.EGP="EGP",e.GBP="GBP",e.ZAR="ZAR",e.KRW="KRW",e.MAD="MAD",e.MXN="MXN",e.MYR="MYR",e.PHP="PHP",e.PLN="PLN",e.RUB="RUB",e.SGD="SGD",e.THB="THB",e.TRY="TRY",e.TWD="TWD",e.VND="VND",e.HKD="HKD",e.IEP="IEP"})(qt||(qt={}));var Ht;(function(e){e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions"})(Ht||(Ht={}));var Ve;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(Ve||(Ve={}));var Go=function e(t){Vt(this,e);var r;this.width=(r=t==null?void 0:t.width)!==null&&r!==void 0?r:"";var n;this.height=(n=t==null?void 0:t.height)!==null&&n!==void 0?n:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var i;this.heightConfig=(i=t==null?void 0:t.heightConfig)!==null&&i!==void 0?i:"fill"};function zo(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function qe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ko(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function he(e,t,r){return Ko()?he=Reflect.construct:he=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),a=new c;return o&&re(a,o.prototype),a},he.apply(null,arguments)}function ne(e){return ne=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ne(e)}function Xo(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&re(e,t)}function Jo(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Qo(e,t){return t&&(Zo(t)==="object"||typeof t=="function")?t:zo(e)}function re(e,t){return re=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},re(e,t)}var Zo=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function He(e){var t=typeof Map=="function"?new Map:void 0;return He=function(n){if(n===null||!Jo(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return he(n,arguments,ne(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),re(u,n)},He(e)}function Yo(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function ea(e){var t=Yo();return function(){var n=ne(e),u;if(t){var i=ne(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Qo(this,u)}}var ta=function e(t){qe(this,e),this.isHide={type:"boolean"}},na=function(e){Xo(r,e);var t=ea(r);function r(n){return qe(this,r),t.call(this)}return r}(He(Array)),ue=function e(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";qe(this,e);var n;this.isHide=(n=t==null?void 0:t.isHide)!==null&&n!==void 0?n:!1,this.style=new Go(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:r};ue.Rules=ta,ue.RuntimeRules=na;function T(){return T=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},T.apply(this,arguments)}function ra(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function ke(e){return ke=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ke(e)}function ye(e,t){return ye=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ye(e,t)}function ua(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function ve(e,t,r){return ua()?ve=Reflect.construct:ve=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),a=new c;return o&&ye(a,o.prototype),a},ve.apply(null,arguments)}function ia(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function We(e){var t=typeof Map=="function"?new Map:void 0;return We=function(n){if(n===null||!ia(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(n))return t.get(n);t.set(n,u)}function u(){return ve(n,arguments,ke(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),ye(u,n)},We(e)}var oa=/%[sdj%]/g,kt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(kt=function(t,r){typeof console!="undefined"&&console.warn&&r.every(function(n){return typeof n=="string"})&&console.warn(t,r)});function Ge(e){if(!e||!e.length)return null;var t={};return e.forEach(function(r){var n=r.field;t[n]=t[n]||[],t[n].push(r)}),t}function P(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n=1,u=t[0],i=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var o=String(u).replace(oa,function(s){if(s==="%%")return"%";if(n>=i)return s;switch(s){case"%s":return String(t[n++]);case"%d":return Number(t[n++]);case"%j":try{return JSON.stringify(t[n++])}catch(c){return"[Circular]"}break;default:return s}});return o}return u}function aa(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function w(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||aa(t)&&typeof e=="string"&&!e)}function sa(e,t,r){var n=[],u=0,i=e.length;function o(s){n.push.apply(n,s),u++,u===i&&r(n)}e.forEach(function(s){t(s,o)})}function Wt(e,t,r){var n=0,u=e.length;function i(o){if(o&&o.length){r(o);return}var s=n;n=n+1,s<u?t(e[s],i):r([])}i([])}function ca(e){var t=[];return Object.keys(e).forEach(function(r){t.push.apply(t,e[r])}),t}var Gt=function(e){ra(t,e);function t(r,n){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=r,u.fields=n,u}return t}(We(Error));function la(e,t,r,n){if(t.first){var u=new Promise(function(y,g){var _=function(v){return n(v),v.length?g(new Gt(v,Ge(v))):y()},A=ca(e);Wt(A,r,_)});return u.catch(function(y){return y}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var o=Object.keys(e),s=o.length,c=0,a=[],f=new Promise(function(y,g){var _=function(d){if(a.push.apply(a,d),c++,c===s)return n(a),a.length?g(new Gt(a,Ge(a))):y()};o.length||(n(a),y()),o.forEach(function(A){var d=e[A];i.indexOf(A)!==-1?Wt(d,r,_):sa(d,r,_)})});return f.catch(function(y){return y}),f}function zt(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function Kt(e,t){if(t){for(var r in t)if(t.hasOwnProperty(r)){var n=t[r];typeof n=="object"&&typeof e[r]=="object"?e[r]=T(T({},e[r]),n):e[r]=n}}return e}function Xt(e,t,r,n,u,i){e.required&&(!r.hasOwnProperty(e.field)||w(t,i||e.type))&&n.push(P(u.messages.required,e.fullField))}function fa(e,t,r,n,u){(/^\s+$/.test(t)||t==="")&&n.push(P(u.messages.whitespace,e.fullField))}var ze={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},ie={integer:function(t){return ie.number(t)&&parseInt(t,10)===t},float:function(t){return ie.number(t)&&!ie.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(r){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!ie.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(ze.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(ze.url)},hex:function(t){return typeof t=="string"&&!!t.match(ze.hex)}};function pa(e,t,r,n,u){if(e.required&&t===void 0){Xt(e,t,r,n,u);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;i.indexOf(o)>-1?ie[o](t)||n.push(P(u.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&n.push(P(u.messages.types[o],e.fullField,e.type))}function da(e,t,r,n,u){var i=typeof e.len=="number",o=typeof e.min=="number",s=typeof e.max=="number",c=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,y=typeof t=="number",g=typeof t=="string",_=Array.isArray(t);if(y?f="number":g?f="string":_&&(f="array"),!f)return!1;_&&(a=t.length),g&&(a=t.replace(c,"_").length),i?a!==e.len&&n.push(P(u.messages[f].len,e.fullField,e.len)):o&&!s&&a<e.min?n.push(P(u.messages[f].min,e.fullField,e.min)):s&&!o&&a>e.max?n.push(P(u.messages[f].max,e.fullField,e.max)):o&&s&&(a<e.min||a>e.max)&&n.push(P(u.messages[f].range,e.fullField,e.min,e.max))}var H="enum";function ha(e,t,r,n,u){e[H]=Array.isArray(e[H])?e[H]:[],e[H].indexOf(t)===-1&&n.push(P(u.messages[H],e.fullField,e[H].join(", ")))}function ya(e,t,r,n,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||n.push(P(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var i=new RegExp(e.pattern);i.test(t)||n.push(P(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var m={required:Xt,whitespace:fa,type:pa,range:da,enum:ha,pattern:ya};function va(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t,"string")&&!e.required)return r();m.required(e,t,n,i,u,"string"),w(t,"string")||(m.type(e,t,n,i,u),m.range(e,t,n,i,u),m.pattern(e,t,n,i,u),e.whitespace===!0&&m.whitespace(e,t,n,i,u))}r(i)}function ga(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&m.type(e,t,n,i,u)}r(i)}function ma(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&(m.type(e,t,n,i,u),m.range(e,t,n,i,u))}r(i)}function Ea(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&m.type(e,t,n,i,u)}r(i)}function ba(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),w(t)||m.type(e,t,n,i,u)}r(i)}function _a(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&(m.type(e,t,n,i,u),m.range(e,t,n,i,u))}r(i)}function Aa(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&(m.type(e,t,n,i,u),m.range(e,t,n,i,u))}r(i)}function Ba(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return r();m.required(e,t,n,i,u,"array"),t!=null&&(m.type(e,t,n,i,u),m.range(e,t,n,i,u))}r(i)}function Sa(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&m.type(e,t,n,i,u)}r(i)}var Ca="enum";function Ia(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u),t!==void 0&&m[Ca](e,t,n,i,u)}r(i)}function wa(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t,"string")&&!e.required)return r();m.required(e,t,n,i,u),w(t,"string")||m.pattern(e,t,n,i,u)}r(i)}function Fa(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t,"date")&&!e.required)return r();if(m.required(e,t,n,i,u),!w(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),m.type(e,s,n,i,u),s&&m.range(e,s.getTime(),n,i,u)}}r(i)}function Da(e,t,r,n,u){var i=[],o=Array.isArray(t)?"array":typeof t;m.required(e,t,n,i,u,o),r(i)}function Ke(e,t,r,n,u){var i=e.type,o=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(w(t,i)&&!e.required)return r();m.required(e,t,n,o,u,i),w(t,i)||m.type(e,t,n,o,u)}r(o)}function Ra(e,t,r,n,u){var i=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(w(t)&&!e.required)return r();m.required(e,t,n,i,u)}r(i)}var oe={string:va,method:ga,number:ma,boolean:Ea,regexp:ba,integer:_a,float:Aa,array:Ba,object:Sa,enum:Ia,pattern:wa,date:Fa,url:Ke,hex:Ke,email:Ke,required:Da,any:Ra};function Xe(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var Je=Xe();function U(e){this.rules=null,this._messages=Je,this.define(e)}U.prototype={messages:function(t){return t&&(this._messages=Kt(Xe(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var r,n;for(r in t)t.hasOwnProperty(r)&&(n=t[r],this.rules[r]=Array.isArray(n)?n:[n])},validate:function(t,r,n){var u=this;r===void 0&&(r={}),n===void 0&&(n=function(){});var i=t,o=r,s=n;if(typeof o=="function"&&(s=o,o={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function c(d){var v,l=[],h={};function C(b){if(Array.isArray(b)){var I;l=(I=l).concat.apply(I,b)}else l.push(b)}for(v=0;v<d.length;v++)C(d[v]);l.length?h=Ge(l):(l=null,h=null),s(l,h)}if(o.messages){var a=this.messages();a===Je&&(a=Xe()),Kt(a,o.messages),o.messages=a}else o.messages=this.messages();var f,y,g={},_=o.keys||Object.keys(this.rules);_.forEach(function(d){f=u.rules[d],y=i[d],f.forEach(function(v){var l=v;typeof l.transform=="function"&&(i===t&&(i=T({},i)),y=i[d]=l.transform(y)),typeof l=="function"?l={validator:l}:l=T({},l),l.validator=u.getValidationMethod(l),l.field=d,l.fullField=l.fullField||d,l.type=u.getType(l),l.validator&&(g[d]=g[d]||[],g[d].push({rule:l,value:y,source:i,field:d}))})});var A={};return la(g,o,function(d,v){var l=d.rule,h=(l.type==="object"||l.type==="array")&&(typeof l.fields=="object"||typeof l.defaultField=="object");h=h&&(l.required||!l.required&&d.value),l.field=d.field;function C(L,B){return T(T({},B),{},{fullField:l.fullField+"."+L})}function b(L){L===void 0&&(L=[]);var B=L;if(Array.isArray(B)||(B=[B]),!o.suppressWarning&&B.length&&U.warning("async-validator:",B),B.length&&l.message!==void 0&&(B=[].concat(l.message)),B=B.map(zt(l)),o.first&&B.length)return A[l.field]=1,v(B);if(!h)v(B);else{if(l.required&&!d.value)return l.message!==void 0?B=[].concat(l.message).map(zt(l)):o.error&&(B=[o.error(l,P(o.messages.required,l.field))]),v(B);var x={};if(l.defaultField)for(var Dn in d.value)d.value.hasOwnProperty(Dn)&&(x[Dn]=l.defaultField);x=T(T({},x),d.rule.fields);for(var W in x)if(x.hasOwnProperty(W)){var il=Array.isArray(x[W])?x[W]:[x[W]];x[W]=il.map(C.bind(null,W))}var Rn=new U(x);Rn.messages(o.messages),d.rule.options&&(d.rule.options.messages=o.messages,d.rule.options.error=o.error),Rn.validate(d.value,d.rule.options||o,function(At){var G=[];B&&B.length&&G.push.apply(G,B),At&&At.length&&G.push.apply(G,At),v(G.length?G:null)})}}var I;l.asyncValidator?I=l.asyncValidator(l,d.value,b,d.source,o):l.validator&&(I=l.validator(l,d.value,b,d.source,o),I===!0?b():I===!1?b(l.message||l.field+" fails"):I instanceof Array?b(I):I instanceof Error&&b(I.message)),I&&I.then&&I.then(function(){return b()},function(L){return b(L)})},function(d){c(d)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!oe.hasOwnProperty(t.type))throw new Error(P("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var r=Object.keys(t),n=r.indexOf("message");return n!==-1&&r.splice(n,1),r.length===1&&r[0]==="required"?oe.required:oe[this.getType(t)]||!1}},U.register=function(t,r){if(typeof r!="function")throw new Error("Cannot register a validator by type, validator is not a function");oe[t]=r},U.warning=kt,U.messages=Je,U.validators=oe;var Oa={required:"%s \u5FC5\u586B",maxLength:"%s \u8D85\u51FA\u6700\u5927\u957F\u5EA6\u9650\u5236",minLength:"%s \u5C0F\u4E8E\u6700\u5C0F\u957F\u5EA6\u9650\u5236",string:{range:"%s \u4E0D\u5728\u6307\u5B9A\u957F\u5EA6\u5185"}};function $a(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=new U(e);return r.messages(Object.assign(Oa,t)),r}var Jt=new Nt;function Qe(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Pa(e){if(Array.isArray(e))return e}function Ta(e){if(Array.isArray(e))return Qe(e)}function Qt(e,t,r,n,u,i,o){try{var s=e[i](o),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function Zt(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var i=e.apply(t,r);function o(c){Qt(i,n,u,o,s,"next",c)}function s(c){Qt(i,n,u,o,s,"throw",c)}o(void 0)})}}function Ma(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Yt(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function La(e,t,r){return t&&Yt(e.prototype,t),r&&Yt(e,r),e}function xa(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function en(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function tn(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ja(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Na(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function nn(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){xa(e,u,r[u])})}return e}function Ua(e){return Pa(e)||tn(e)||rn(e)||ja()}function Ze(e){return Ta(e)||tn(e)||rn(e)||Na()}function rn(e,t){if(!!e){if(typeof e=="string")return Qe(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Qe(e,t)}}var un=function(e,t){var r,n,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;o;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},M=function(){function t(n){var u=this;Ma(this,t),this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=an,this.removeSetting=on,this._callControlHooks("preInstance",n);var i=en(this,t)?this.constructor:void 0,o=i.controlName,s=i.controlIcon,c=i.controlType,a=i.controlFieldType,f=i.controlEventKeys,y=i.controlCustomEvents,g=i.name,_=i.setting;o&&s&&c||Pt("The ".concat(g," controlName,controlIcon,controlType is not define"));var A;this.id=(A=n==null?void 0:n.id)!==null&&A!==void 0?A:Oe(10),this.name=o,this.icon=s;var d;this.type=(d=n==null?void 0:n.type)!==null&&d!==void 0?d:c,this.props=new ue(n==null?void 0:n.props,(en(this,t)?this.constructor:void 0).controlName);var v;this.controlType=(v=n==null?void 0:n.controlType)!==null&&v!==void 0?v:"base",this.setting=Y(_);var l;this.fieldType=(l=n==null?void 0:n.fieldType)!==null&&l!==void 0?l:a,this.eventKeys=Y(f),this.customEvents=Y(y),Promise.resolve().then(function(){u._callControlHooks("postInstance",n)})}var r=t.prototype;return r._callControlHooks=function(){for(var u=arguments.length,i=new Array(u),o=0;o<u;o++)i[o]=arguments[o];var s,c=Ua(i),a=c[0],f=c.slice(1);return(s=Jt).emit.apply(s,[a,this].concat(Ze(f)))},r.preUpdate=function(u,i){this._callControlHooks("preUpdateProps",u,i)},r.postUpdate=function(u,i){this._callControlHooks("postUpdateProps",u,i)},r.updateProps=function(u,i){this.preUpdate(u,i),Lt(this.props,u,i),this.postUpdate(u,i)},r.preValidate=function(){var u=this;return Zt(function(){var i,o,s;return un(this,function(c){switch(c.label){case 0:return i=nn({},u.rules),[4,u._callControlHooks("preValidate",i)];case 1:return o=c.sent(),s=o[o.length-1],[2,s===!1?void 0:s]}})})()},r.validate=function(u,i){var o=this;return Zt(function(){var s,c,a,f;return un(this,function(y){switch(y.label){case 0:return[4,o.preValidate()];case 1:s=y.sent(),c=s!==void 0?s:nn({},o.rules),Array.isArray(i)&&i.forEach(function(g){c.hasOwnProperty(g)&&delete c[g]}),a=$a(c,u),y.label=2;case 2:return y.trys.push([2,4,,5]),[4,a.validate(o.props)];case 3:return y.sent(),[2,!0];case 4:throw f=y.sent(),f.control||(f.control=o),f;case 5:return[2]}})})()},r.toDataBindModel=function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this.fieldType,o=this.id,s=this.type,c=this.props,a=c.dataBind,f=c.datasourceBind,y=c.optionConfig,g=c.caption,_=c.required,A=c.maxLength,d=c.options,v=c.encrypted,l=c.encryptedMode;if(!(!i&&!a&&!f)){var h={parentId:u,fieldType:i,controlId:o,caption:g,type:s,props:{}};switch(a&&(h.dataBind=a),y){case"datasource":case void 0:f&&(h.datasourceBind=f);break;case"custom":h.props.options=d;break}return _!==void 0&&(h.required=_),A!==void 0&&(h.maxLength=A),v!==void 0&&(h.encrypted=v),l!==void 0&&(h.encryptedMode=l),h}},r.preToSchema=function(){this._callControlHooks("preToSchema",this)},r.toSchema=function(){return this.preToSchema(),{id:this.id,type:this.type,props:Y(this.props),fieldType:this.fieldType,controlType:this.controlType}},t.updateBasicControl=function(u,i){if(u==="setting"){if(i.add){var o;(o=this.setting).push.apply(o,Ze(i.add))}i.remove&&this.removeSettingItem(i.remove),i.update}},La(t,[{key:"rules",get:function(){var u=this.props.constructor.Rules;return u?new u(this.props):{}}}]),t}();M.controlName="\u63A7\u4EF6",M.controlIcon="icon",M.controlType="control",M.controlEventKeys=[],M.controlCustomEvents=[],M.setting=[],M.__is_control__=!0,M.removeSettingItem=on,M.updateSettingItem=an;function on(e){var t=this,r=Array.isArray(e)?e:[e];r.forEach(function(n){var u=typeof n!="string",i=t.setting.findIndex(function(c){return c.key===(u?n.key:n)});if(i!==-1){var o,s;u?t.setting[i].showItems=(o=t.setting[i].showItems)===null||o===void 0?void 0:o.filter(function(c){return!n.hideItems.includes(c)}):t.setting.splice(i,1),u&&!(!((s=t.setting[i].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(i,1)}})}function an(e,t){var r=this,n=typeof e=="string"?[e]:e;n.forEach(function(u){var i=r.setting.find(function(a){return a.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if(typeof t=="object"){var o,s=(o=t.type)!==null&&o!==void 0?o:"replace";if(s==="replace")i.showItems=t.showItems;else{var c;(c=i.showItems).push.apply(c,Ze(t.showItems))}}}})}function Va(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function sn(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function qa(e,t,r){return t&&sn(e.prototype,t),r&&sn(e,r),e}function Ha(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var Ye=function(){function t(r){Va(this,t),this.customEvents=[],this.parent=null;var n=Ha(this,t)?this.constructor:void 0,u=n.controlType,i=n.controlFieldType,o=n.name,s=n.controlCustomEvents;u||Pt("The ".concat(o," controlType is not define"));var c;this.id=(c=r==null?void 0:r.id)!==null&&c!==void 0?c:Oe(10);var a;this.type=(a=r==null?void 0:r.type)!==null&&a!==void 0?a:u,this.props=new ue(r==null?void 0:r.props),this.customEvents=s;var f;this.controlType=(f=r==null?void 0:r.controlType)!==null&&f!==void 0?f:"base";var y;this.fieldType=(y=r==null?void 0:r.fieldType)!==null&&y!==void 0?y:i;var g;this.pageStatus=(g=r==null?void 0:r.pageStatus)!==null&&g!==void 0?g:Ve.UNKNOWN}return qa(t,[{key:"rules",get:function(){var n=this.props.constructor.RuntimeRules;if(n){var u=new n(this.props);return Array.from(u)}return[]}}]),t}();Ye.controlType="control",Ye.__is_control__=!0,Ye.controlCustomEvents=[];function ka(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Wa(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ge(e){return ge=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ge(e)}function Ga(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&et(e,t)}function za(e,t){return t&&(Ka(t)==="object"||typeof t=="function")?t:ka(e)}function et(e,t){return et=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},et(e,t)}var Ka=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Xa(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ja(e){var t=Xa();return function(){var n=ge(e),u;if(t){var i=ge(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return za(this,u)}}var Qa=function(e){Ga(r,e);var t=Ja(r);function r(n){return Wa(this,r),t.call(this,n)}return r}(ue);function tt(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Za(e){if(Array.isArray(e))return tt(e)}function Ya(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function es(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function cn(e){return Za(e)||Ya(e)||ts(e)||es()}function ts(e,t){if(!!e){if(typeof e=="string")return tt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return tt(e,t)}}function ns(e,t){var r;!((r=Object.getOwnPropertyDescriptors(e)[t])===null||r===void 0)&&r.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function ln(e,t){e.parent=t,ns(e,"parent")}function rs(e,t){e.forEach(function(r){ln(r,t)})}var fn=Symbol("targetKey");function pn(e){var t;return(t=e[fn])!==null&&t!==void 0?t:e}function dn(e,t){return rs(e,t),new Proxy(e,{get:function(n,u){for(var i=arguments.length,o=new Array(i>2?i-2:0),s=2;s<i;s++)o[s-2]=arguments[s];var c;return u===fn?n:(c=Reflect).get.apply(c,[n,u].concat(cn(o)))},set:function(n,u,i){for(var o=arguments.length,s=new Array(o>3?o-3:0),c=3;c<o;c++)s[c-3]=arguments[c];var a;if(ee(e)&&u==="length"&&i===e.length)return!0;var f=(a=Reflect).set.apply(a,[n,u,i].concat(cn(s)));return xe(i)&&ln(i,t),f}})}function us(e,t,r,n){var u=n!=null?n:e,i=dn(pn(r!=null?r:[]),u);Object.defineProperty(e,t,{get:function(){return i},set:function(s){i=dn(pn(s),u)},enumerable:!0})}function nt(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function is(e){if(Array.isArray(e))return nt(e)}function hn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function yn(e,t,r,n,u,i,o){try{var s=e[i](o),c=s.value}catch(a){r(a);return}s.done?t(c):Promise.resolve(c).then(n,u)}function os(e){return function(){var t=this,r=arguments;return new Promise(function(n,u){var i=e.apply(t,r);function o(c){yn(i,n,u,o,s,"next",c)}function s(c){yn(i,n,u,o,s,"throw",c)}o(void 0)})}}function as(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ss(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function k(e,t,r){return typeof Reflect!="undefined"&&Reflect.get?k=Reflect.get:k=function(u,i,o){var s=gs(u,i);if(!!s){var c=Object.getOwnPropertyDescriptor(s,i);return c.get?c.get.call(o):c.value}},k(e,t,r||e)}function V(e){return V=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},V(e)}function cs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&rt(e,t)}function ls(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function fs(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ps(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function ds(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){ss(e,u,r[u])})}return e}function hs(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),r.push.apply(r,n)}return r}function ys(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):hs(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function vs(e,t){return t&&(ms(t)==="object"||typeof t=="function")?t:hn(e)}function rt(e,t){return rt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},rt(e,t)}function gs(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=V(e),e!==null););return e}function vn(e){return is(e)||fs(e)||Es(e)||ps()}var ms=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Es(e,t){if(!!e){if(typeof e=="string")return nt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return nt(e,t)}}function bs(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function _s(e){var t=bs();return function(){var n=V(e),u;if(t){var i=V(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return vs(this,u)}}var As=function(e,t){var r,n,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return c([a,f])}}function c(a){if(r)throw new TypeError("Generator is already executing.");for(;o;)try{if(r=1,n&&(u=a[0]&2?n.return:a[0]?n.throw||((u=n.return)&&u.call(n),0):n.next)&&!(u=u.call(n,a[1])).done)return u;switch(n=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],n=0}finally{r=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}},Bs=1e4,gn=function(t){cs(n,t);var r=_s(n);function n(i){as(this,n);var o;o=r.call(this,i),o.controlType="layout";var s=ls(this,n)?this.constructor:void 0,c=s.excludes,a=s.childrenMaxLength;return o.props=new Qa(i==null?void 0:i.props),us(hn(o),"children",i==null?void 0:i.children),o.excludes=Y(c),o.childrenMaxLength=a,o}var u=n.prototype;return u.judgeExcludesChildren=function(o){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(o)},u.judgeJoinChildren=function(o){var s=this.judgeExcludesChildren(o);return s&&this.childrenMaxLength>this.children.length},u.validate=function(o,s){var c=this,a=this,f=function(){return k(V(n.prototype),"validate",c)};return os(function(){return As(this,function(y){switch(y.label){case 0:return[4,f().call(a,o,s)];case 1:return y.sent(),[4,Promise.all(a.children.map(function(g){return g.validate(o,s)}))];case 2:return y.sent(),[2,!0]}})})()},u.toDataBindModel=function(){var o=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,s=k(V(n.prototype),"toDataBindModel",this).call(this),c=s?[s]:[];return this.children.reduce(function(a,f){var y=f.toDataBindModel(o);if(Array.isArray(y)){var g=y.filter(function(_){return!!_});return vn(a).concat(vn(g))}return y&&a.push(y),a},c)},u.toSchema=function(){var o=k(V(n.prototype),"toSchema",this).call(this),s=this.children.map(function(c){var a=c.toSchema();return a});return ys(ds({},o),{children:s})},n}(M);gn.excludes=!1,gn.childrenMaxLength=Bs,S.LIST;function ut(e){return"children"in e&&ee(e.children)}function mn(e){return"headers"in e.props&&ee(e.props.headers)}function me(e,t){Array.isArray(e)&&e.map(r=>{r.type===p.SUBTABLE?me(r.props.headers,t):ut(r)?me(r==null?void 0:r.children,t):r.controlType===CONTROL_BASE_TYPE.FORM&&t(r)})}const En=[p.AMOUNT,p.CALC,p.DATE_RANGE],bn={amount:{caption:"\u91D1\u989D",fieldType:S.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:S.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:S.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:S.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:S.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:S.TIMESTAMP}};function Ss(e){let t=[];return me(e,r=>{r.controlType===R.FORM?t.push(r):(r.type,p.SUBTABLE)}),t}function Cs(e,t=""){return!e||!Array.isArray(e)?[]:e.map(r=>{if(!r.dataBind||r.type===p.TITLE)return r;if(En.includes(r.type)){const n=r.dataBind;Object.keys(n).forEach(u=>{const i=n[u],o=r.controlId+"_"+u;i.fieldCode=_n(o),i.dataCode=t})}else r.dataBind.fieldCode=_n(r.controlId),r.dataBind.dataCode=t;return r})}function _n(e){const t="field_";return e.startsWith(t)?e:t+e}function Ee(e){return co[e]}function Is(e){const t=new q,r=[];return e.forEach(n=>{if(!(n.parentId||!n.dataBind))if(En.includes(n.type)){const u=n.dataBind,i=n.datasourceBind;Object.keys(u).forEach(o=>{const s=u[o],c=bn[o].fieldType,a=n.caption+"_"+bn[o].caption,f=Ee(c);if(!f)return;const y={caption:a,dataBind:s};o==="currency"&&(y.optionConfig="datasource",y.datasourceBind=i);const g=t.createControlInstance(f,{props:y});g&&r.push(g)})}else{const u=Ee(n.fieldType);if(!u)return;const i=t.createControlInstance(u,{props:{caption:n.caption,dataBind:n.dataBind,datasourceBind:n.datasourceBind}});i&&r.push(i)}}),r}function ws(e){const t=new q,n=(Array.isArray(e)?e:[e]).map(u=>{const i=Ee(u);return t.createControlInstance(i)});return Array.isArray(e)?n:n[0]}function it(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function ot(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function at(e,t,r){return Bt(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(u=>u.validate(t,r)))).every(u=>u):yield e.validate(t,r)})}const Fs=[p.TITLE,p.GRID_TABLE_COLUMN,p.SUBTABLE_COLUMN,p.OPERATION_COLUMN,p.DATA_VIEW,p.LIST_VIEW,p.HEADER,p.FOOTER,p.SIMPLE_SEARCH,p.ROW,p.GRID_ROW,p.COL,p.GRID,p.DIVIDER,p.TAB_PANE,p.TAB,p.CARD_GROUP],Ds=[p.CALC],Rs={check:{id:"listPageCheckBtnId",caption:"\u67E5\u770B"},edit:{id:"listPageEditBtnId",caption:"\u7F16\u8F91"},delete:{id:"listPageDeleteBtnId",caption:"\u5220\u9664"}};function ae(e,t){var n,u,i,o,s,c,a,f,y;const r=[];if(ee(e))r.push(...e.map(g=>ae(g,t)).flat());else{const g=e.type,{caption:_,content:A}=e.props;let d;if(Fs.includes(g))g===p.OPERATION_COLUMN&&Object.entries(Rs).reduce((v,[l,{caption:h,id:C}])=>{var I;const b=e.props[l];return b&&b.isShow&&v.push({controlId:C,caption:h,type:e.type,controlType:e.controlType,parentId:(I=t==null?void 0:t.controlId)!=null?I:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),v},r);else if(d={controlId:e.id,caption:_||A||e.name,type:e.type,controlType:e.controlType,parentId:(n=t==null?void 0:t.controlId)!=null?n:null,canEdit:!Ds.includes(g),canRead:!0,canHide:!0,group:"element"},t&&t.type===p.SUBTABLE&&(d.caption=t.caption+"_"+d.caption),g===p.VUE_FORM_ITEM&&(d.caption=e.props.controlExportName||e.name),(e.controlType===R.FORM||e.controlType===R.COLUMN)&&((i=(u=e.props)==null?void 0:u.dataBind)==null?void 0:i.fieldCode)!==void 0&&((s=(o=e.props)==null?void 0:o.dataBind)==null?void 0:s.fieldCode)!==""&&(d.group="field"),r.push(d),g===p.VUE_FORM_ITEM){let v="element";((a=(c=e.props)==null?void 0:c.dataBind)==null?void 0:a.fieldCode)!==void 0&&((y=(f=e.props)==null?void 0:f.dataBind)==null?void 0:y.fieldCode)!==""&&(v="field");const l=e.props.permissions;l==null||l.map(h=>{var C;d={controlId:h.key,caption:h.caption,type:e.type,controlType:e.controlType,parentId:(C=e.id)!=null?C:null,canEdit:!0,canRead:!0,canHide:!0,group:v},r.push(d)})}e.children&&r.push(...e.children.map(v=>ae(v,t)).flat()),e.controlType===R.LIST&&r.push(...e.props.headers.map(v=>ae(v,d)).flat())}return r}class q extends de{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new te,this.fieldTypes=S,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:r,Setting:n}=t;this.controlSettingMap.set(r.controlType,n)})}registerControl(t){this.constructor.register(t);const{Designer:r,Setting:n}=t;this.register(r),this.registeredControlTypes.add(r.controlType),this.controlSettingMap.set(r.controlType,n)}getControlSetting(t){const r=this.controlSettingMap.get(t);return r||null}setInstance(t,r,n){try{if(!t)return;t.updateProps(r,n)}catch(u){throw u}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return Bt(this,null,function*(){return at(...t)})}getModelBindInfoList(...t){return ot(...t)}getSchema(...t){return it(...t)}listenControlHook(...t){return Jt.on(...t)}}q.EventLogic=te;class Os{constructor(){this.designer=new q}ListPageBuilder(){const t=this.designer.createControlInstance(p.LIST_VIEW),r=this.designer.createControlInstance(p.SIMPLE_SEARCH),n=this.designer.createControlInstance(p.GRID_TABLE),u=this.designer.createControlInstance(p.CREATE_FORM_LIST_BUTTON),i=this.designer.createControlInstance(p.IMPORT_RECORD_LIST_BUTTON),o=this.designer.createControlInstance(p.EXPORT_LIST_BUTTON),s=this.designer.createControlInstance(p.EXPORT_RECORD_LIST_BUTTON);return n.children.push(u),n.children.push(i),n.children.push(o),n.children.push(s),t.children.push(r),t.children.push(n),t}ProListPageBuilder(){const t=this.designer.createControlInstance(p.LIST_VIEW);t.props.countType="async";const r=this.designer.createControlInstance(p.SIMPLE_SEARCH),n=this.designer.createControlInstance(p.GRID_TABLE),u=this.designer.createControlInstance(p.EXPORT_LIST_BUTTON),i=this.designer.createControlInstance(p.EXPORT_RECORD_LIST_BUTTON);return n.children.push(u),n.children.push(i),t.children.push(r),t.children.push(n),t}FormPageBuilder(){const t=this.designer.createControlInstance(p.DATA_VIEW),r=this.designer.createControlInstance(p.TITLE),n=this.designer.createControlInstance(p.GRID);return t.children.push(r),t.children.push(n),t}VuePageBuilder(){const t=this.designer.createControlInstance(p.GRID),r=this.designer.createControlInstance(p.VUE_FORM_ITEM);return r.props.isHideCaption=!0,r.props.controlExportName="VuePage",t.children.push(r),t}}function $s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function An(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Ps(e,t,r){return t&&An(e.prototype,t),r&&An(e,r),e}var N=function(){function e(t){$s(this,e);var r;this.visible=(r=t==null?void 0:t.visible)!==null&&r!==void 0?r:!0;var n;this.expression=(n=t==null?void 0:t.expression)!==null&&n!==void 0?n:!1}return Ps(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function Ts(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Ms=function(){function e(r){Ts(this,e),this.type=r.type,this.label=r.label,this.key=r.key,this.component=r.component;var n;this.effect=(n=r.effect)!==null&&n!==void 0?n:{};var u;this.scopeEffect=(u=r.scopeEffect)!==null&&u!==void 0?u:so,this.defaultValue=r.defaultValue,this.validator=r.validator;var i;this.props=(i=r.props)!==null&&i!==void 0?i:new N,this.effectKeys=Object.keys(this.effect)}var t=e.prototype;return t.filterEffects=function(n){var u=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(i){var o=new RegExp("^".concat(i,"(\\.\\w+)*$"));return o.test(n)}).map(function(i){return u.effect[i]})},t.callEffectFn=function(n,u){try{var i=n.apply(null,u);xe(i)&&Object.assign(this.props,i)}catch(o){Z(`effect error
2
+ `.concat(o))}},t.callEffect=function(n){for(var u=arguments.length,i=new Array(u>1?u-1:0),o=1;o<u;o++)i[o-1]=arguments[o];var s=this;this.filterEffects(n).forEach(function(c){return s.callEffectFn(c,i)})},t.callScopeEffect=function(){for(var n=arguments.length,u=new Array(n),i=0;i<n;i++)u[i]=arguments[i];this.callEffectFn(this.scopeEffect,u)},e}();function Ls(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var st=function e(t){Ls(this,e),this.type="group";var r;this.title=(r=t.title)!==null&&r!==void 0?r:"";var n;this.required=(n=t.required)!==null&&n!==void 0?n:!1,this.items=t.items,this.tips=t.tips};function xs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function js(e){return"type"in e&&e.type==="tab"}var ct=function e(t){xs(this,e),this.type="tab",this.title=t.title,this.items=t.items};function Bn(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Ns(e){if(Array.isArray(e))return e}function Us(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Vs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function be(e){return be=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},be(e)}function qs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&lt(e,t)}function Hs(e,t){var r=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var n=[],u=!0,i=!1,o,s;try{for(r=r.call(e);!(u=(o=r.next()).done)&&(n.push(o.value),!(t&&n.length===t));u=!0);}catch(c){i=!0,s=c}finally{try{!u&&r.return!=null&&r.return()}finally{if(i)throw s}}return n}}function ks(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ws(e,t){return t&&(zs(t)==="object"||typeof t=="function")?t:Us(e)}function lt(e,t){return lt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},lt(e,t)}function Gs(e,t){return Ns(e)||Hs(e,t)||Ks(e,t)||ks()}var zs=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Ks(e,t){if(!!e){if(typeof e=="string")return Bn(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Bn(e,t)}}function Xs(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Js(e){var t=Xs();return function(){var n=be(e),u;if(t){var i=be(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Ws(this,u)}}var Qs=function(e){qs(r,e);var t=Js(r);function r(n){Vs(this,r);var u;return u=t.call(this,n),xe(n)&&Object.entries(n).forEach(function(i){var o=Gs(i,2),s=o[0],c=o[1];u[s]=c}),u}return r}(N);function Zs(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ys(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _e(e){return _e=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},_e(e)}function ec(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ft(e,t)}function tc(e,t){return t&&(nc(t)==="object"||typeof t=="function")?t:Zs(e)}function ft(e,t){return ft=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ft(e,t)}var nc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function rc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function uc(e){var t=rc();return function(){var n=_e(e),u;if(t){var i=_e(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return tc(this,u)}}var ic=function(e){ec(r,e);var t=uc(r);function r(n){Ys(this,r);var u;u=t.call(this,n);var i;u.maxLength=(i=n==null?void 0:n.maxLength)!==null&&i!==void 0?i:"";var o;u.minLength=(o=n==null?void 0:n.minLength)!==null&&o!==void 0?o:"";var s;u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"";var c;return u.i18n=(c=n==null?void 0:n.i18n)!==null&&c!==void 0?c:!1,u}return r}(N);function oc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ac(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ae(e){return Ae=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ae(e)}function sc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&pt(e,t)}function cc(e,t){return t&&(lc(t)==="object"||typeof t=="function")?t:oc(e)}function pt(e,t){return pt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},pt(e,t)}var lc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function fc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function pc(e){var t=fc();return function(){var n=Ae(e),u;if(t){var i=Ae(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return cc(this,u)}}var dc=function(e){sc(r,e);var t=pc(r);function r(n){ac(this,r);var u;u=t.call(this,n);var i;u.max=(i=n==null?void 0:n.max)!==null&&i!==void 0?i:"";var o;u.min=(o=n==null?void 0:n.min)!==null&&o!==void 0?o:"";var s;return u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"",u}return r}(N);function hc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function yc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Be(e){return Be=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Be(e)}function vc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&dt(e,t)}function gc(e,t){return t&&(mc(t)==="object"||typeof t=="function")?t:hc(e)}function dt(e,t){return dt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},dt(e,t)}var mc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Ec(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function bc(e){var t=Ec();return function(){var n=Be(e),u;if(t){var i=Be(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return gc(this,u)}}var _c=function(e){vc(r,e);var t=bc(r);function r(n){yc(this,r);var u;u=t.call(this,n);var i;u.showType=(i=n==null?void 0:n.showType)!==null&&i!==void 0?i:"switch";var o;u.tips=(o=n==null?void 0:n.tips)!==null&&o!==void 0?o:"";var s;return u.disabled=(s=n==null?void 0:n.disabled)!==null&&s!==void 0?s:!1,u}return r}(N);function Ac(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Bc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Se(e){return Se=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Se(e)}function Sc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ht(e,t)}function Cc(e,t){return t&&(Ic(t)==="object"||typeof t=="function")?t:Ac(e)}function ht(e,t){return ht=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ht(e,t)}var Ic=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function wc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Fc(e){var t=wc();return function(){var n=Se(e),u;if(t){var i=Se(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Cc(this,u)}}var Dc=function(e){Sc(r,e);var t=Fc(r);function r(n){Bc(this,r);var u;u=t.call(this,n);var i;return u.options=(i=n==null?void 0:n.options)!==null&&i!==void 0?i:[],u}return r}(N);function Rc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Oc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ce(e){return Ce=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ce(e)}function $c(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&yt(e,t)}function Pc(e,t){return t&&(Tc(t)==="object"||typeof t=="function")?t:Rc(e)}function yt(e,t){return yt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},yt(e,t)}var Tc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Mc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Lc(e){var t=Mc();return function(){var n=Ce(e),u;if(t){var i=Ce(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Pc(this,u)}}var xc=function(e){$c(r,e);var t=Lc(r);function r(n){Oc(this,r);var u;u=t.call(this,n);var i;u.placeholder=(i=n==null?void 0:n.placeholder)!==null&&i!==void 0?i:"";var o;return u.options=(o=n==null?void 0:n.options)!==null&&o!==void 0?o:[],u}return r}(N);function jc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Nc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ie(e){return Ie=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ie(e)}function Uc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&vt(e,t)}function Vc(e,t){return t&&(qc(t)==="object"||typeof t=="function")?t:jc(e)}function vt(e,t){return vt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},vt(e,t)}var qc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Hc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function kc(e){var t=Hc();return function(){var n=Ie(e),u;if(t){var i=Ie(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Vc(this,u)}}var Wc=function(e){Uc(r,e);var t=kc(r);function r(n){Nc(this,r);var u;u=t.call(this,n);var i;u.options=(i=n==null?void 0:n.options)!==null&&i!==void 0?i:[];var o;return u.showType=(o=n==null?void 0:n.showType)!==null&&o!==void 0?o:"outline",u}return r}(N);function Gc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function zc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function we(e){return we=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},we(e)}function Kc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&gt(e,t)}function Xc(e,t){return t&&(Jc(t)==="object"||typeof t=="function")?t:Gc(e)}function gt(e,t){return gt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},gt(e,t)}var Jc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Qc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Zc(e){var t=Qc();return function(){var n=we(e),u;if(t){var i=we(this).constructor;u=Reflect.construct(n,arguments,i)}else u=n.apply(this,arguments);return Xc(this,u)}}var Yc=function(e){Kc(r,e);var t=Zc(r);function r(n){zc(this,r);var u;u=t.call(this,n);var i;u.maxLength=(i=n==null?void 0:n.maxLength)!==null&&i!==void 0?i:"";var o;u.minLength=(o=n==null?void 0:n.minLength)!==null&&o!==void 0?o:"";var s;u.placeholder=(s=n==null?void 0:n.placeholder)!==null&&s!==void 0?s:"";var c;u.maxRows=(c=n==null?void 0:n.maxRows)!==null&&c!==void 0?c:"";var a;u.minRows=(a=n==null?void 0:n.minRows)!==null&&a!==void 0?a:"";var f;return u.i18n=(f=n==null?void 0:n.i18n)!==null&&f!==void 0?f:!1,u}return r}(N);function el(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function mt(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){el(e,u,r[u])})}return e}function tl(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),r.push.apply(r,n)}return r}function Et(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):tl(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}),e}function nl(e,t){switch(e){case"input":return new ic(t);case"textarea":return new Yc(t);case"input-number":return new dc(t);case"switch":return new _c(t);case"radio":return new Wc(t);case"checkbox":return new Dc(t);case"select":return new xc(t);default:return new Qs(t)}}function rl(e){return function(t){var r=e.get(t);if(!!r)return new Ms(Et(mt({},r),{props:nl(r.component,"props"in r?r.props:void 0)}))}}function ul(e){var t=function(i){return new st(Et(mt({},i),{items:i.items.map(rl(n)).filter(Boolean)}))},r=function(i){return i.map(t)},n=e.fields.reduce(function(u,i){return u.set(i.key,i),u},new Map);return e.groups.map(function(u){return js(u)?new ct(Et(mt({},u),{items:r(u.items)})):t(u)})}class Sn{constructor(t){var r;this.selected=null,this.selectedInstanceDataScopeParent=null,this.selectedDataScopeFlatInstances=[],this.selectedInstanceSetting=[],this.selectedInstanceSettingItems=[],this.selectedFieldItem=null,this.external={},this.movingInstance=null,this.movingInstanceOldParent=null,this.movingInstanceOldDataScopeParent=null,this.getParentBeforeInstanceMove=(r=t.getParentBeforeInstanceMove)!=null?r:n=>n.parent,this.instance=t.instance,this.getFlatInstances()}get selectedRules(){return this.selected?this.selected.rules:null}get selectedAntdRules(){const t=this.selectedRules;return t||null}setInstances(t){this.instance=t,this.getFlatInstances()}setSelectInstance(t){this.selected=t,this.selectedInstanceDataScopeParent=t?ce(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?wn(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(r=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(r))})}getSettingItems(t){return t instanceof st?t.items:t.items.reduce((r,n)=>(r.push(...n.items),r),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=ce(t)}updateDataFieldCodeMap(t){const r=ce(t);if(!r)return;const n=this.dataFieldCodeMap.get(r.props.datasourceBind.dataCode);if(!!n){for(const[u,i]of n.entries())if(i.id===t.id){n.delete(u);break}In(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],r=new Map,n=new Map;se(this.instance,u=>{t.push(u),r.set(u.id,u),In(u,n)}),this.flatInstances=t,this.instanceIdMap=r,this.dataFieldCodeMap=n}}function Cn(e,t,r){const{dataCode:n,fieldCode:u}=t;n&&u&&(e.has(n)||e.set(n,new Map),e.get(n).set(u,r))}function In(e,t){if(e.controlType===R.FORM){const r=e.props.dataBind;r instanceof Wo?Cn(t,r,e):Object.values(r).forEach(n=>{Cn(t,n,e)})}}function se(e,t){(Array.isArray(e)?e:[e]).forEach(n=>{t(n),ut(n)&&se(n.children,t),mn(n)&&se(n.props.headers,t)})}function bt(e){return[p.SUBTABLE,p.DATA_VIEW,p.LIST_VIEW].includes(e.type)}function ce(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!bt(t);)t=t.parent;return t}function wn(e){const t=[e];return se(e,r=>{r!==e&&t.includes(r.parent)&&!bt(r)&&t.push(r)}),t}let _t="";class Fn extends Nt{constructor(t){super(),this.isMounted=!1,this.id=Oe(8),this.__pluginsApplied=!1,this.getSchema=it,this.getModelBindInfoList=ot,this.generatePermissions=ae,this.$options=Object.freeze(t);const{autoMount:r=!1,Designer:n=q,schema:u,mode:i="form",store:o={}}=this.$options;this.eventLogic=new te,this.designer=new n,this.store=new Sn(z({instance:this.designer.createControl(Array.isArray(u)?u:[u])},o)),this.mode=i,r&&this.mount()}mount(){const{plugins:t=[]}=this.$options;this.__plugins=t,this.applyPlugins(),this.isMounted=!0}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var r;try{_t=(r=t.pluginName)!=null?r:t.constructor.name,t.apply(this),_t=""}catch(n){Z(`${_t||t.constructor.name} Plugin apply Error
3
+ ${n}`)}}),this.__pluginsApplied=!0)}emit(t,...r){return super.emit(t,r)}on(t,r){return super.on(t,r)}setInstances(t,r){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],r))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var u,i;const t=this.store.selected;if(!t)return;let r=this.getControlSetting(t.type);if(((u=t.parent)==null?void 0:u.controlType)===R.WRAP){const o=this.getControlSetting((i=t.parent)==null?void 0:i.type);r=this.concatSetting(r,o,t.parent.id)}this.store.setSelectInstanceSettings(r),this.callSelectedEffect("");const n={from:null,current:this.store.selectedInstanceDataScopeParent,oldParent:null,newParent:t.parent};this.callSelectedScopeEffect(n)}concatSetting(t,r,n){var i,o,s,c;let u=t;if(((i=t[0])==null?void 0:i.type)==="tab"&&((o=r[0])==null?void 0:o.type)==="tab"){const a=t,f=r.slice(0);u=a.map((y,g)=>{const _=new ct(y),A=f.findIndex(v=>v.title===y.title);if(A===-1)return _;const d=f.splice(A,1)[0];return d&&(_.items=[...this.formatGroupSetting(d.items,n),..._.items]),_}),f.length&&(u=[...u,...f.map(y=>this.formatGroupSetting(y,n))])}else if(((s=t[0])==null?void 0:s.type)==="group"&&((c=r[0])==null?void 0:c.type)==="group"){const a=t,f=r;u=[...this.formatGroupSetting(f,n),...a]}return u}formatGroupSetting(t,r){if(ee(t))return t.map(n=>{const u=new st(n);return u.fromId=r,u});{const n=new ct(t);return n.items=this.formatGroupSetting(n.items,r),n}}setControlConfig(...t){return this.designer.registerControlConfig(...t)}getControlConfig(t){return this.designer.getControlConfig(t)}getControlSetting(t){const r=this.designer.getControlSetting(t);return r?ul(r):[]}selectInstance(t){this.beforeSelectInstance(),this.store.setSelectInstance(t),this.afterSelectInstance()}setSelectedFieldItem(t){this.store.setSelectedFieldItem(t),this.callSelectedEffect("dataBind",{fieldItem:t})}moveStart(t){const r=this.getInstance(t);r&&this.store.setMovingInstance(r)}moveEnd(t=this.store.movingInstance){var c;if(t===null)return;const r=this.getInstance(t);if(!r)return;const n=this.store.movingInstanceOldDataScopeParent,u=ce(r),i=this.store.movingInstanceOldParent,o=r.parent;this.store.setMovingInstance(null),r.id!==((c=this.store.selected)==null?void 0:c.id)?this.selectInstance(r):this.store.setSelectInstance(r),this.store.getFlatInstances();const s={from:n,current:u,oldParent:i,newParent:o};this.callSelectedScopeEffect(s),i?this.emit("moved",z({},s)):this.emit("joined",z({},s))}createInstance(t,r){return this.designer.createControlInstance(t,r)}getInstance(t){return typeof t=="string"?this.store.instanceIdMap.get(t):t}getInstances(){return this.store.flatInstances}getInstancesFromType(t){return this.getInstances().filter(r=>r.type===t)}getDataScopeInstances(){return this.store.selectedDataScopeFlatInstances}getDataScopeInstancesFromType(t){return this.getDataScopeInstances().filter(r=>r.type===t)}updateInstancePropValue(t,r,n,u){var o;!Lt(t.props,r,n)||(r.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((o=this.store.selected)==null?void 0:o.id)&&this.callSelectedEffect(r,u),this.emit("updated",{instance:t,propName:r,value:n}))}updateInstanceProps(t,r,n,u=""){Object.entries(r).forEach(([i,o])=>{const s=`${u?u+".":""}${i}`;Po(o)?this.updateInstanceProps(t,o,n,s):this.updateInstancePropValue(t,s,o,n)})}setInstance(t,r,n,u){je(r)?this.updateInstancePropValue(t,String(r),n,u):this.updateInstanceProps(t,r,n)}removeInstance(t){const r=t.parent;if(!r)return;const n=r.controlType===R.LIST&&r.props.headers.includes(t)?r.props.headers:r.children,u=n.findIndex(i=>i===t);u>-1&&n.splice(u,1),this.store.getFlatInstances(),this.emit("removed",{instance:t,index:u,parent:r})}replaceInstance(t,r){const n=t.parent;if(!n)return;const u=n.controlType===R.LIST&&n.props.headers.includes(t)?n.props.headers:n.children,i=u.findIndex(o=>o===t);i>-1&&u.splice(i,1,r),this.store.getFlatInstances()}updateInstanceType(t,r){const n=t.toSchema(),u=this.createInstance(r,{id:n.id,props:n.props});if(!u){pe(`can\u2018t update instance type to ${r}`);return}return u}validate(t,r){return at(this.store.instance,t,r)}getCustomControlsInUse(){return this.getInstances().filter(this.assertInstanceIsCustomControl).reduce((t,r)=>(t.includes(r.type)||t.push(r.type),t),[])}assertInstanceIsCustomControl(t){return!To(je(t)?t:t.type)}static register(...t){return q.register(...t),this}static judgeControlIsRegistered(t){return q.staticRegisteredTypes.has(t.Designer.controlType)}judgeControlIsRegistered(t){return this.designer.registeredControlTypes.has(t.Designer.controlType)}register(...t){return this.designer.registerControl(...t),this}assertInstance(t,r){return je(r)?t.type===r:r.includes(t.type)}getInstanceInListControl(t){let r=t;for(;r;){if(r.controlType===R.LIST)return!0;r=r.parent}return!1}getInstanceParentControl(t,r){if(!!t.parent)return this.assertInstance(t.parent,r)?t.parent:this.getInstanceParentControl(t.parent,r)}callSelectedEffect(t,r={}){this.store.selectedInstanceSettingItems.forEach(n=>{n.callEffect(t,this,z({control:this.store.selected},r))})}callSelectedScopeEffect(t={}){this.store.selectedInstanceSettingItems.forEach(r=>{r.callScopeEffect(this,z({control:this.store.selected},t))})}}Fn.EventLogic=te,E.Builder=Os,E.Designer=q,E.Driven=Fn,E.Store=Sn,E.checkSchema=at,E.fillModelBindInfoListFieldCode=Cs,E.findInstanceDataScopeParent=ce,E.generatePermissions=ae,E.getColumnTypeFromFiledType=Ee,E.getColumnsFromFiledType=ws,E.getColumnsFromModelBindInfoList=Is,E.getDataScopeFlatInstances=wn,E.getMasterFormControls=Ss,E.getModelBindInfoList=ot,E.hasChildrenControl=ut,E.hasHeaderControl=mn,E.isDataScopeInstance=bt,E.loop=se,E.loopFormControl=me,E.toSchema=it,Object.defineProperty(E,"__esModule",{value:!0})});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-driven",
3
- "version": "2.2.0",
3
+ "version": "2.2.1-beta.2",
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.2.0",
30
- "@byteluck-fe/model-driven-core": "2.2.0",
31
- "@byteluck-fe/model-driven-settings": "2.2.0",
32
- "@byteluck-fe/model-driven-shared": "2.2.0"
29
+ "@byteluck-fe/model-driven-controls": "2.2.1-beta.2",
30
+ "@byteluck-fe/model-driven-core": "2.2.1-beta.2",
31
+ "@byteluck-fe/model-driven-settings": "2.2.1-beta.2",
32
+ "@byteluck-fe/model-driven-shared": "2.2.1-beta.2"
33
33
  },
34
- "gitHead": "b74d4bd8e7b49ee0781de63b9919196562290f86"
34
+ "gitHead": "15c27944eace9181ef21f69f8d0a0209507c04d5"
35
35
  }