@byteluck-fe/model-driven-driven 2.7.0-beta.4 → 2.8.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -342,6 +342,7 @@ var applyingPluginName = "";
342
342
  var setting = this.getControlSetting(instance.type);
343
343
  // console.log('iswrap:', instance.parent?.controlType, instance.parent)
344
344
  // if (instance.parent instanceof DesignerWrapControl) {
345
+ // 如果父控件为自定义控件wrapper
345
346
  if (((_instance_parent = instance.parent) === null || _instance_parent === void 0 ? void 0 : _instance_parent.controlType) === CONTROL_BASE_TYPE.WRAP) {
346
347
  var _instance_parent1;
347
348
  var wrapSetting = this.getControlSetting((_instance_parent1 = instance.parent) === null || _instance_parent1 === void 0 ? void 0 : _instance_parent1.type);
@@ -363,7 +364,7 @@ var applyingPluginName = "";
363
364
  key: "concatSetting",
364
365
  value: function concatSetting(settings, otherSettings, settingFromId) {
365
366
  var _this = this;
366
- var _settings_, _otherSettings_, _settings_1, _otherSettings_1;
367
+ var _settings_, _otherSettings_, _settings_1, _otherSettings_1, _settings_2, _otherSettings_2, _settings_3, _otherSettings_3;
367
368
  var result = settings;
368
369
  // tab
369
370
  if (((_settings_ = settings[0]) === null || _settings_ === void 0 ? void 0 : _settings_.type) === "tab" && ((_otherSettings_ = otherSettings[0]) === null || _otherSettings_ === void 0 ? void 0 : _otherSettings_.type) === "tab") {
@@ -393,8 +394,27 @@ var applyingPluginName = "";
393
394
  var groupSettings = settings;
394
395
  var otherGroupSettings = otherSettings;
395
396
  result = _to_consumable_array(this.formatGroupSetting(otherGroupSettings, settingFromId)).concat(_to_consumable_array(groupSettings));
396
- } else {
397
- // 一个是tab,一个是group,暂时不支持
397
+ // 当前控件setting是tab,合并控件setting是group
398
+ } else if (((_settings_2 = settings[0]) === null || _settings_2 === void 0 ? void 0 : _settings_2.type) === "tab" && ((_otherSettings_2 = otherSettings[0]) === null || _otherSettings_2 === void 0 ? void 0 : _otherSettings_2.type) === "group") {
399
+ var tabSettings1 = settings;
400
+ var otherGroupSettings1 = otherSettings;
401
+ result = tabSettings1.map(function(tab, index) {
402
+ var result = new Tab(tab);
403
+ if (index === 0) {
404
+ result.items = _to_consumable_array(_this.formatGroupSetting(otherGroupSettings1, settingFromId)).concat(_to_consumable_array(result.items));
405
+ }
406
+ return result;
407
+ });
408
+ } else if (((_settings_3 = settings[0]) === null || _settings_3 === void 0 ? void 0 : _settings_3.type) === "group" && ((_otherSettings_3 = otherSettings[0]) === null || _otherSettings_3 === void 0 ? void 0 : _otherSettings_3.type) === "tab") {
409
+ var groupSettings1 = settings;
410
+ var otherTabSettings1 = otherSettings;
411
+ result = otherTabSettings1.map(function(tab, index) {
412
+ var result = new Tab(tab);
413
+ if (index === 0) {
414
+ result.items = _to_consumable_array(result.items).concat(_to_consumable_array(_this.formatGroupSetting(groupSettings1, settingFromId)));
415
+ }
416
+ return result;
417
+ });
398
418
  }
399
419
  return result;
400
420
  }
package/dist/esm/Store.js CHANGED
@@ -41,13 +41,6 @@ function _define_property(obj, key, value) {
41
41
  }
42
42
  return obj;
43
43
  }
44
- function _instanceof(left, right) {
45
- if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
46
- return !!right[Symbol.hasInstance](left);
47
- } else {
48
- return left instanceof right;
49
- }
50
- }
51
44
  function _iterable_to_array(iter) {
52
45
  if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
53
46
  }
@@ -95,9 +88,8 @@ function _unsupported_iterable_to_array(o, minLen) {
95
88
  if (n === "Map" || n === "Set") return Array.from(n);
96
89
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
97
90
  }
98
- import { DataBind } from "@byteluck-fe/model-driven-core";
99
- import { hasChildrenControl, hasHeaderControl } from "./designerUtils";
100
- import { Group } from "@byteluck-fe/model-driven-settings";
91
+ import { isDataBind } from "@byteluck-fe/model-driven-core";
92
+ import { hasChildrenControl, hasFooterControl, hasHeaderControl } from "./designerUtils";
101
93
  import { CONTROL_BASE_TYPE, CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
102
94
  // 维护当前selected,。。 selectedControlSetting
103
95
  export var Store = /*#__PURE__*/ function() {
@@ -207,7 +199,8 @@ export var Store = /*#__PURE__*/ function() {
207
199
  {
208
200
  key: "getSettingItems",
209
201
  value: function getSettingItems(group) {
210
- return _instanceof(group, Group) ? group.items : group.items.reduce(function(result, curr) {
202
+ // return group instanceof Group
203
+ return group.type === "group" ? group.items : group.items.reduce(function(result, curr) {
211
204
  var _result;
212
205
  (_result = result).push.apply(_result, _to_consumable_array(curr.items));
213
206
  return result;
@@ -297,7 +290,8 @@ function setInstanceInDataFieldCodeMap(instance, dataFieldCodeMap) {
297
290
  // if (instance instanceof DesignerFormControl) {
298
291
  if (instance.controlType === CONTROL_BASE_TYPE.FORM) {
299
292
  var dataBind = instance.props.dataBind;
300
- if (_instanceof(dataBind, DataBind)) {
293
+ //if (dataBind instanceof DataBind) {
294
+ if (isDataBind(dataBind)) {
301
295
  setDataFieldCodeMap(dataFieldCodeMap, dataBind, instance);
302
296
  } else {
303
297
  Object.values(dataBind).forEach(function(subDataBind) {
@@ -318,6 +312,11 @@ export function loop(instances, callback) {
318
312
  if (hasHeaderControl(item)) {
319
313
  loop(item.props.headers, callback);
320
314
  }
315
+ if (hasFooterControl(item)) {
316
+ var _item_props;
317
+ var _item_props_footers;
318
+ loop((_item_props_footers = (_item_props = item.props) === null || _item_props === void 0 ? void 0 : _item_props.footers) !== null && _item_props_footers !== void 0 ? _item_props_footers : [], callback);
319
+ }
321
320
  });
322
321
  }
323
322
  export function isDataScopeInstance(instance) {
@@ -5,6 +5,9 @@ export function hasChildrenControl(instance) {
5
5
  export function hasHeaderControl(instance) {
6
6
  return "headers" in instance.props && isArray(instance.props.headers);
7
7
  }
8
+ export function hasFooterControl(instance) {
9
+ return "footers" in instance.props && isArray(instance.props.footers);
10
+ }
8
11
  export function loopFormControl(control, callback) {
9
12
  if (Array.isArray(control)) {
10
13
  control.map(function(item) {
package/dist/esm/utils.js CHANGED
@@ -377,7 +377,10 @@ var PermissionExcludeControlTypes = [
377
377
  // 暂时不能控制权限
378
378
  CONTROL_TYPE.TAB_PANE,
379
379
  CONTROL_TYPE.TAB,
380
- CONTROL_TYPE.CARD_GROUP
380
+ CONTROL_TYPE.CARD_GROUP,
381
+ CONTROL_TYPE.ACTION_BAR,
382
+ CONTROL_TYPE.GRID_LAYOUT_CONTAINER,
383
+ CONTROL_TYPE.GRID_LAYOUT_WRAP
381
384
  ];
382
385
  // 不可以编辑的控件
383
386
  var cannotEditControlTypes = [
package/dist/index.umd.js CHANGED
@@ -1,3 +1,3 @@
1
- var op=Object.defineProperty;var Gr=Object.getOwnPropertySymbols;var ap=Object.prototype.hasOwnProperty,sp=Object.prototype.propertyIsEnumerable;var Kr=(m,$,R)=>$ in m?op(m,$,{enumerable:!0,configurable:!0,writable:!0,value:R}):m[$]=R,de=(m,$)=>{for(var R in $||($={}))ap.call($,R)&&Kr(m,R,$[R]);if(Gr)for(var R of Gr($))sp.call($,R)&&Kr(m,R,$[R]);return m};var mn=(m,$,R)=>new Promise((ut,Ce)=>{var ot=G=>{try{he(R.next(G))}catch(ye){Ce(ye)}},at=G=>{try{he(R.throw(G))}catch(ye){Ce(ye)}},he=G=>G.done?ut(G.value):Promise.resolve(G.value).then(ot,at);he((R=R.apply(m,$)).next())});(function(m,$){typeof exports=="object"&&typeof module!="undefined"?$(exports):typeof define=="function"&&define.amd?define(["exports"],$):(m=typeof globalThis!="undefined"?globalThis:m||self,$(m.modelDrivenDriven={}))})(this,function(m){"use strict";var $="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",R="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",ut="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Ce="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",ot="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",at="{caption}\u5FC5\u586B",he="\u8BF7\u8F93\u5165\u6807\u9898",G="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ye="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Xr="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Jr="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Zr="\u8BF7\u7ED1\u5B9A\u8868\u5355",Qr="\u8BF7\u7ED1\u5B9A\u5217\u8868",Yr="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",ei="\u8BF7\u8F93\u5165\u663E\u793A\u503C",ti="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ni="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ri="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",ii="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ui="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",oi="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ai="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",si="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",ci="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",li="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",fi="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",pi="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",di="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",hi="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",yi="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",vi="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",_i="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",gi="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",mi="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Ei="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",bi="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",wi="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Bi="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ai="\u8BF7\u9009\u62E9\u7701",Si="\u8BF7\u9009\u62E9\u5E02",Ii="\u8BF7\u9009\u62E9\u533A",Fi="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Di="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Ci="\u8BF7\u8F93\u5165\u5217\u5BBD",Oi="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",$i="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Ri="\u8BF7\u9009\u62E9\u63A7\u4EF6",Pi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Mi="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",xi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ti="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Li="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ji="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",qi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ui="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Vi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Ni="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ki="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Hi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Wi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",zi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Gi="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ki="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Xi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Ji="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Zi="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Qi="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Yi="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",eu={isNotNumber:$,isNotString:R,isNotObject:ut,isNotArray:Ce,isNotBoolean:ot,runtimeRequired:at,pleaseEnterCaption:he,pleaseEnterCaptionTip:G,pleaseEnterRowCaption:ye,pleaseEnterPlaceholder:Xr,pleaseEnterFieldCode:Jr,pleaseEnterForm:Zr,pleaseEnterList:Qr,pleaseEnterProcess:Yr,pleaseEnterLabel:ei,pleaseEnterValue:ti,bizKeyNotBindFiled:ni,pleaseSelectOneField:ri,pleaseEnterNumberRange:ii,pleaseEnterAValueGreaterThanMin:ui,pleaseEnterAValueLessThanMax:oi,numberRangeSetError:ai,stringRangeError:si,attachmentMaxSize:ci,pleaseEnterTotalScoreSetting:li,theTotalScoreMustNotBeLessThan1:fi,scoreDefaultValueRange:pi,attachmentLimitError:di,PleaseReselectTheOptionalQuantity:hi,TheMaximumLengthIsGreaterThanTheMinimumLength:yi,TheMinimumLengthIsGreaterThanTheMaximumLength:vi,PleaseSelectTheCorrectOptionSettings:_i,optionIdIsRepeat:gi,optionIsRequired:mi,pleaseEnterDataCode:Ei,pleaseEnterValueFieldCode:bi,pleaseEnterSvcCode:wi,pleaseBindAtLeastOneDisplayValue:Bi,pleaseSelectProvince:Ai,pleaseSelectCity:Si,pleaseSelectDistrict:Ii,limitRowsCannotBeLessThan0:Fi,TheNumberOfRowsCannotBeLessThanMinRows:Di,pleaseEnterColumnWidth:Ci,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Oi,pleaseCompleteAllRulesAndConditions:$i,pleaseSelectControl:Ri,pleaseSelectAtLeastOneColumn:Pi,pleaseSelectFillBackMode:Mi,pleaseSelectDashboard:xi,rootNodeIsRequired:Ti,theViewNameCannotBeEmpty:Li,pleaseSelectOcrType:ji,pleaseSelectAtLeastOneFieldToFillIn:qi,pleaseChooseAtLeastOne:Ui,pleaseEnterButtonContent:Vi,pleaseEnterDataCodeInDataSetting:Ni,pleaseEnterValueFieldCodeInDataSetting:ki,pleaseEnterSvcCodeInDataSetting:Hi,pleaseBindAtLeastOneDisplayValueInDataSetting:Wi,rootNodeIsRequiredInDataSetting:zi,pleaseEnterMaxHeight:Gi,pleaseEnter:Ki,pleaseEnterWatermark:Xi,pleaseEnterFileName:Ji,pleaseUploadAtLeastOnePrintTemplate:Zi,pleaseAssignBusiness:Qi,pleaseAssignExternal:Yi},tu="Please enter a number",nu="Please enter a string",ru="Please enter an object",iu="Please enter an array",uu="Please enter a boolean",ou="{caption} Required",au="Please enter the title",su="Please enter the bubble prompt",cu="Please enter the row title",lu="Please enter the prompt text",fu="Please bind data items",pu="Please bind the form",du="Please bind the list",hu="Please bind the process",yu="Please enter the displayed value",vu="Please enter the stored value",_u="The document number is not bound to the data item",gu="Please select at least one display field",mu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Eu="Please enter a value greater than or equal to {min}",bu="Please enter a value less than or equal to {max}",wu="The value range is set incorrectly",Bu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Au="The attachment size must be between 0MB and 1000MB",Su="Please fill in the total score setting",Iu="The total score cannot be less than 1",Fu="The default value must be between {min} and {max}",Du="The number of attachments uploaded must be between {min} and {max}",Cu="Please re-select the optional quantity",Ou="The maximum length of the control must be greater than the minimum length",$u="The minimum length of the control must be less than the maximum length",Ru="Please select the correct option setting",Pu="Option ID cannot be repeated",Mu="Please enter at least one option",xu="Please bind the data source",Tu="Please bind the stored value",Lu="Please bind the service",ju="At least one display value must be bound",qu="Please select a province",Uu="Please select a city",Vu="Please select a district",Nu="The minimum number of lines to fill in cannot be less than 0",ku="The number of rows cannot be less than {min} rows",Hu="Please enter the column width",Wu="Please set the logical relationship of all rule conditions",zu="Please complete all rules and conditions",Gu="please select control",Ku="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Xu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ju="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Zu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Qu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Yu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",eo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",to="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",no="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ro="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",io="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",uo="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",oo="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ao="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",so="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",co="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",lo="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",fo="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",po={isNotNumber:tu,isNotString:nu,isNotObject:ru,isNotArray:iu,isNotBoolean:uu,runtimeRequired:ou,pleaseEnterCaption:au,pleaseEnterCaptionTip:su,pleaseEnterRowCaption:cu,pleaseEnterPlaceholder:lu,pleaseEnterFieldCode:fu,pleaseEnterForm:pu,pleaseEnterList:du,pleaseEnterProcess:hu,pleaseEnterLabel:yu,pleaseEnterValue:vu,bizKeyNotBindFiled:_u,pleaseSelectOneField:gu,pleaseEnterNumberRange:mu,pleaseEnterAValueGreaterThanMin:Eu,pleaseEnterAValueLessThanMax:bu,numberRangeSetError:wu,stringRangeError:Bu,attachmentMaxSize:Au,pleaseEnterTotalScoreSetting:Su,theTotalScoreMustNotBeLessThan1:Iu,scoreDefaultValueRange:Fu,attachmentLimitError:Du,PleaseReselectTheOptionalQuantity:Cu,TheMaximumLengthIsGreaterThanTheMinimumLength:Ou,TheMinimumLengthIsGreaterThanTheMaximumLength:$u,PleaseSelectTheCorrectOptionSettings:Ru,optionIdIsRepeat:Pu,optionIsRequired:Mu,pleaseEnterDataCode:xu,pleaseEnterValueFieldCode:Tu,pleaseEnterSvcCode:Lu,pleaseBindAtLeastOneDisplayValue:ju,pleaseSelectProvince:qu,pleaseSelectCity:Uu,pleaseSelectDistrict:Vu,limitRowsCannotBeLessThan0:Nu,TheNumberOfRowsCannotBeLessThanMinRows:ku,pleaseEnterColumnWidth:Hu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Wu,pleaseCompleteAllRulesAndConditions:zu,pleaseSelectControl:Gu,pleaseSelectDashboard:Ku,theViewNameCannotBeEmpty:Xu,pleaseSelectOcrType:Ju,pleaseSelectAtLeastOneFieldToFillIn:Zu,pleaseChooseAtLeastOne:Qu,pleaseEnterButtonContent:Yu,pleaseEnterDataCodeInDataSetting:eo,pleaseEnterValueFieldCodeInDataSetting:to,pleaseEnterSvcCodeInDataSetting:no,pleaseBindAtLeastOneDisplayValueInDataSetting:ro,rootNodeIsRequiredInDataSetting:io,pleaseEnterMaxHeight:uo,pleaseEnter:oo,pleaseEnterWatermark:ao,pleaseEnterFileName:so,pleaseUploadAtLeastOnePrintTemplate:co,pleaseAssignBusiness:lo,pleaseAssignExternal:fo},ho="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",yo="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vo="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_o="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",go="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",mo="{caption}\u5FC5\u9808",Eo="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bo="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wo="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Bo="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ao="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",So="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Io="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Fo="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Do="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Co="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oo="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",$o="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ro="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Po="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Mo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xo="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",To="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Lo="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",jo="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",qo="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Uo="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Vo="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",No="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ko="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ho="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Wo="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",zo="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Go="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Ko="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Xo="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Jo="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Zo="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Qo="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Yo="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ea="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ta="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",na="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ra="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ia="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ua="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",oa="please select control",aa="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",sa="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ca="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",la="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",fa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",pa="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",da="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ha="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ya="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",va="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",_a="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ga="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ma="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Ea="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ba="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",wa="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Ba="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Aa="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Sa={isNotNumber:ho,isNotString:yo,isNotObject:vo,isNotArray:_o,isNotBoolean:go,runtimeRequired:mo,pleaseEnterCaption:Eo,pleaseEnterCaptionTip:bo,pleaseEnterRowCaption:wo,pleaseEnterPlaceholder:Bo,pleaseEnterFieldCode:Ao,pleaseEnterForm:So,pleaseEnterList:Io,pleaseEnterProcess:Fo,pleaseEnterLabel:Do,pleaseEnterValue:Co,bizKeyNotBindFiled:Oo,pleaseSelectOneField:$o,pleaseEnterNumberRange:Ro,pleaseEnterAValueGreaterThanMin:Po,pleaseEnterAValueLessThanMax:Mo,numberRangeSetError:xo,stringRangeError:To,attachmentMaxSize:Lo,pleaseEnterTotalScoreSetting:jo,theTotalScoreMustNotBeLessThan1:qo,scoreDefaultValueRange:Uo,attachmentLimitError:Vo,PleaseReselectTheOptionalQuantity:No,TheMaximumLengthIsGreaterThanTheMinimumLength:ko,TheMinimumLengthIsGreaterThanTheMaximumLength:Ho,PleaseSelectTheCorrectOptionSettings:Wo,optionIdIsRepeat:zo,optionIsRequired:Go,pleaseEnterDataCode:Ko,pleaseEnterValueFieldCode:Xo,pleaseEnterSvcCode:Jo,pleaseBindAtLeastOneDisplayValue:Zo,pleaseSelectProvince:Qo,pleaseSelectCity:Yo,pleaseSelectDistrict:ea,limitRowsCannotBeLessThan0:ta,TheNumberOfRowsCannotBeLessThanMinRows:na,pleaseEnterColumnWidth:ra,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ia,pleaseCompleteAllRulesAndConditions:ua,pleaseSelectControl:oa,pleaseSelectDashboard:aa,theViewNameCannotBeEmpty:sa,pleaseSelectOcrType:ca,pleaseSelectAtLeastOneFieldToFillIn:la,pleaseChooseAtLeastOne:fa,pleaseEnterButtonContent:pa,pleaseEnterDataCodeInDataSetting:da,pleaseEnterValueFieldCodeInDataSetting:ha,pleaseEnterSvcCodeInDataSetting:ya,pleaseBindAtLeastOneDisplayValueInDataSetting:va,rootNodeIsRequiredInDataSetting:_a,pleaseEnterMaxHeight:ga,pleaseEnter:ma,pleaseEnterWatermark:Ea,pleaseEnterFileName:ba,pleaseUploadAtLeastOnePrintTemplate:wa,pleaseAssignBusiness:Ba,pleaseAssignExternal:Aa},Ia={zhCN:eu,enUS:po,jaJP:Sa},En;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(En||(En={}));var bn;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(bn||(bn={}));var Fa="zh-CN",Da=function(){};function x(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var P;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(P||(P={}));var d;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(d||(d={}));var I;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(I||(I={}));var M,Ca=(M={},x(M,I.ARRAY,d.ARRAY_COLUMN),x(M,I.AUTO_NUMBER,d.AUTO_NUMBER_COLUMN),x(M,I.DECIMAL,d.DECIMAL_COLUMN),x(M,I.DEPARTMENTS,d.DEPARTMENT_COLUMN),x(M,I.FILE,d.FILE_COLUMN),x(M,I.IMAGE,d.IMAGE_COLUMN),x(M,I.ADDRESS,d.LOCATION_COLUMN),x(M,I.EMPLOYEES,d.EMPLOYEE_COLUMN),x(M,I.TEXT,d.TEXT_COLUMN),x(M,I.TIMESCOPE,d.TIMESCOPE_COLUMN),x(M,I.TIMESTAMP,d.TIMESTAMP_COLUMN),x(M,I.VARCHAR,d.VARCHAR_COLUMN),x(M,I.RELATION,d.VARCHAR_COLUMN),M),wn;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(wn||(wn={}));var Bn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Oa=Bn+"0123456789";function st(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?Bn:Oa,i=Math.random()*r.length;t+=r[parseInt(String(i),10)]}return t}function ct(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function $a(e){if(Array.isArray(e))return ct(e)}function Ra(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function An(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Oe(e,t,n){return Fn()?Oe=Reflect.construct:Oe=function(i,u,o){var s=[null];s.push.apply(s,u);var c=Function.bind.apply(i,s),a=new c;return o&&_e(a,o.prototype),a},Oe.apply(null,arguments)}function ve(e){return ve=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ve(e)}function Sn(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&_e(e,t)}function Pa(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Ma(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function xa(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ta(e,t){return t&&(La(t)==="object"||typeof t=="function")?t:Ra(e)}function _e(e,t){return _e=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},_e(e,t)}function In(e){return $a(e)||Ma(e)||ja(e)||xa()}function La(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ja(e,t){if(!!e){if(typeof e=="string")return ct(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ct(e,t)}}function lt(e){var t=typeof Map=="function"?new Map:void 0;return lt=function(r){if(r===null||!Pa(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,i)}function i(){return Oe(r,arguments,ve(this).constructor)}return i.prototype=Object.create(r.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),_e(i,r)},lt(e)}function Fn(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Dn(e){var t=Fn();return function(){var r=ve(e),i;if(t){var u=ve(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Ta(this,i)}}var ft=console;function $e(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,i=t.slice(1);(r=ft).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(In(i)))}function Cn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,i=t.slice(1);(r=ft).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(In(i)))}function qa(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var pt=function(e){Sn(n,e);var t=Dn(n);function n(r){An(this,n);var i;return i=t.call(this,r),i.name="\u{1F4A5} Driven Error",i.message=r?qa(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",i}return n}(lt(Error)),Ua=function(e){Sn(n,e);var t=Dn(n);function n(r){An(this,n);var i;return i=t.call(this,r),i.name="\u{1F6A8} Driven Reference Error",i}return n}(pt);function ge(e){throw new pt(e)}function On(e){throw new Ua(e)}function Va(e){ft.error(new pt(e))}var Na=Object.prototype.toString;function $n(e,t){return Na.call(e)==="[object "+t+"]"}function ka(e){return $n(e,"String")}function Ha(e){return $n(e,"Promise")}var Wa=function(){function e(t){var n,r;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((r=(n=t.messages)!==null&&n!==void 0?n:this.getPreImport(t.locale))!==null&&r!==void 0?r:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var n=this;this.locale=t,this._messageCache.clear();var r=this.getMessageData();Ha(r)?r.then(function(i){n._messageCache.clear(),n.messages[n.localeInMessageKey]=i}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var i=this.getMessage(t);return i?this.formatMessage(i,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(i,u,o,s){if(i!==void 0){var c=i[u];if(!(o===s.length-1&&!ka(c)))return c}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,i){var u=n[i];return u!==void 0?String(u):r}):t},e.prototype.getPreImport=function(t){var n;if(window.okI18nPreImport){var r=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(r)?window.okI18nPreImport:(n={},n[r]=window.okI18nPreImport,n)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function za(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Rn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ga(e,t,n){return t&&Rn(e.prototype,t),n&&Rn(e,n),e}function Ka(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var U=function(){function e(){za(this,e)}return Ga(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Fa;return new Wa({locale:n,messages:Ia})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();Ka(U,"$i18n",U.resetI18n());function Pn(e,t,n){var r=t.replace(/\[(\d)]/g,function(u,o){return"."+o}).split("."),i=!1;return r.reduce(function(u,o,s,c){var a=u;if(!!u){if(!Object.prototype.hasOwnProperty.call(u,o)){$e("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),u,u);return}return s===c.length-1&&!Object.is(a[o],n)&&(a[o]=n,i=!0),a[o]}},e),i}var Xa=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Ja={exports:{}};(function(e){(function(t){var n=function(l,y,b){if(!a(y)||h(y)||v(y)||E(y)||c(y))return y;var B,F=0,W=0;if(f(y))for(B=[],W=y.length;F<W;F++)B.push(n(l,y[F],b));else{B={};for(var S in y)Object.prototype.hasOwnProperty.call(y,S)&&(B[l(S,b)]=n(l,y[S],b))}return B},r=function(l,y){y=y||{};var b=y.separator||"_",B=y.split||/(?=[A-Z])/;return l.split(B).join(b)},i=function(l){return w(l)?l:(l=l.replace(/[\-_\s]+(.)?/g,function(y,b){return b?b.toUpperCase():""}),l.substr(0,1).toLowerCase()+l.substr(1))},u=function(l){var y=i(l);return y.substr(0,1).toUpperCase()+y.substr(1)},o=function(l,y){return r(l,y).toLowerCase()},s=Object.prototype.toString,c=function(l){return typeof l=="function"},a=function(l){return l===Object(l)},f=function(l){return s.call(l)=="[object Array]"},h=function(l){return s.call(l)=="[object Date]"},v=function(l){return s.call(l)=="[object RegExp]"},E=function(l){return s.call(l)=="[object Boolean]"},w=function(l){return l=l-0,l===l},p=function(l,y){var b=y&&"process"in y?y.process:y;return typeof b!="function"?l:function(B,F){return b(B,l,F)}},_={camelize:i,decamelize:o,pascalize:u,depascalize:o,camelizeKeys:function(l,y){return n(p(i,y),l)},decamelizeKeys:function(l,y){return n(p(o,y),l,y)},pascalizeKeys:function(l,y){return n(p(u,y),l)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=_:t.humps=_})(Xa)})(Ja);var Mn={};Object.defineProperty(Mn,"__esModule",{value:!0});function dt(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:dt(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:dt(r)}return t}}var Za=Mn.default=dt;function te(e){if(e!==void 0)return typeof e=="object"?Za(e):e}function ht(e){return Object.prototype.toString.call(e)==="[object Object]"}function Qa(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function me(e){return Array.isArray(e)}function yt(e){return typeof e=="string"}function Ya(e){return Object.values(d).includes(e)}function vt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function es(e){if(Array.isArray(e))return vt(e)}function xn(e,t,n,r,i,u,o){try{var s=e[u](o),c=s.value}catch(a){n(a);return}s.done?t(c):Promise.resolve(c).then(r,i)}function ts(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){xn(u,r,i,o,s,"next",c)}function s(c){xn(u,r,i,o,s,"throw",c)}o(void 0)})}}function ns(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Tn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function rs(e,t,n){return t&&Tn(e.prototype,t),n&&Tn(e,n),e}function Ln(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function is(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function us(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _t(e){return es(e)||is(e)||os(e)||us()}function os(e,t){if(!!e){if(typeof e=="string")return vt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return vt(e,t)}}function as(e,t){var n,r,i,u,o={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]};return u={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(u[Symbol.iterator]=function(){return this}),u;function s(a){return function(f){return c([a,f])}}function c(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(i=o.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(a[0]===6&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var jn=function(){function e(){ns(this,e),Ln(this,"_events",new Map),Ln(this,"debug",!1)}return rs(e,[{key:"emit",value:function(n){for(var r=arguments.length,i=new Array(r>1?r-1:0),u=1;u<r;u++)i[u-1]=arguments[u];var o=this;return ts(function(){var s,c,a,f,h,v,E,w,p,_,l,y;return as(this,function(b){switch(b.label){case 0:if(s=o._events.get(n),c=[],!s)return[3,10];a=s.slice(),f=!0,h=!1,v=void 0,b.label=1;case 1:b.trys.push([1,8,9,10]),E=a[Symbol.iterator](),b.label=2;case 2:if(f=(w=E.next()).done)return[3,7];if(p=w.value,!s.includes(p))return[3,6];b.label=3;case 3:return b.trys.push([3,5,,6]),o.debug&&Cn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(p.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+p.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"\u3002")].concat(_t(i))),[4,p.apply(null,_t(i))];case 4:return _=b.sent(),o.debug&&Cn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(p.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+p.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(_t(i),[_])),c.push(_),_===!1?[3,7]:[3,6];case 5:return l=b.sent(),Va(String(l)+":"+String(l.stack)),[3,6];case 6:return f=!0,[3,2];case 7:return[3,10];case 8:return y=b.sent(),h=!0,v=y,[3,10];case 9:try{!f&&E.return!=null&&E.return()}finally{if(h)throw v}return[7];case 10:return[2,c]}})})()}},{key:"on",value:function(n,r){if(this._events.has(n)){var i;(i=this._events.get(n))===null||i===void 0||i.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var i=this._events.get(n),u=i==null?void 0:i.indexOf(r);i==null||i.splice(u,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function ss(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function cs(e,t,n){return t&&qn(e.prototype,t),n&&qn(e,n),e}function ls(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var fs=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],Ee=function(){function e(){ss(this,e)}return cs(e,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(i){return r.includes(i.key)})}}]),e}();ls(Ee,"events",fs);function ps(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Un(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ds(e,t,n){return t&&Un(e.prototype,t),n&&Un(e,n),e}function ne(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Vn=[],Re=function(){function e(t){ps(this,e),ne(this,"registeredControlTypes",new Set),ne(this,"controlConfigMap",new Map),ne(this,"_controls",[]),ne(this,"_type",void 0),this._type=t,this._initControls(t)}return ds(e,[{key:"registerControlConfig",value:function(n,r){return this.controlConfigMap.set(n,r),this}},{key:"getControlConfig",value:function(n){return this.controlConfigMap.get(n)}},{key:"getControls",value:function(){return this._controls}},{key:"register",value:function(n){n.__is_control__||ge("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(i){return i.controlType===n.controlType});return r>-1&&($e("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===P.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===P.FORM}},{key:"isListControl",value:function(n){return n.controlType===P.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===P.COLUMN}},{key:"createControl",value:function(n,r){var i=this;if(Array.isArray(n))return n.map(function(a){return i.createControl(a,r)});n.children&&(n.children=n.children.map(function(a){return i.createControl(a,r)})),this.isListControl(n)&&n.props.headers&&(n.props.headers=n.props.headers.map(function(a){return i.createControl(a,r)}));var u=this.getControlFormType(n.type);if(u){var o=n;if(typeof r=="function"){var s=r(o);s&&(o=s)}var c=new u(o);return c}else ge("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"createControlInstance",value:function(n,r){var i=this.getControlFormType(n);if(i)return new i(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(i){r.register(i[n])})}}],[{key:"register",value:function(n){var r=n.Designer,i=n.Runtime;(!r||!i||!r.__is_control__||!i.__is_control__)&&ge("".concat(n," is can't register as a Control"));var u=this.staticControls.findIndex(function(o){return o.Designer.controlType===r.controlType});return u>-1&&($e("The ".concat(r.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(u,1)),this.staticRegisteredTypes.add(r.controlType),this.staticControls.push(n),this}}]),e}();ne(Re,"staticControls",Vn),ne(Re,"staticRegisteredTypes",new Set(Vn.map(function(e){return e.Designer.controlType}))),ne(Re,"staticRegisteredConfigs",new Map);function gt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function N(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Pe=function e(t){gt(this,e),N(this,"dataCode",void 0),N(this,"fieldCode",void 0),N(this,"fieldType",void 0);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var i;this.fieldType=(i=t==null?void 0:t.fieldType)!==null&&i!==void 0?i:""},hs=function e(t){gt(this,e),N(this,"minWidth",void 0),N(this,"maxWidth",void 0),N(this,"flex",void 0);var n;this.minWidth=(n=t==null?void 0:t.minWidth)!==null&&n!==void 0?n:150,this.maxWidth=t==null?void 0:t.maxWidth;var r;this.flex=(r=t==null?void 0:t.flex)!==null&&r!==void 0?r:1},Nn;(function(e){e.CNY="CNY",e.USD="USD",e.JPY="JPY",e.EUR="EUR",e.INR="INR",e.IDR="IDR",e.BRL="BRL",e.AED="AED",e.AUD="AUD",e.CAD="CAD",e.EGP="EGP",e.GBP="GBP",e.ZAR="ZAR",e.KRW="KRW",e.MAD="MAD",e.MXN="MXN",e.MYR="MYR",e.PHP="PHP",e.PLN="PLN",e.RUB="RUB",e.SGD="SGD",e.THB="THB",e.TRY="TRY",e.TWD="TWD",e.VND="VND",e.HKD="HKD",e.IEP="IEP"})(Nn||(Nn={}));var kn;(function(e){e.DEFAULT_DISPLAY="defaultDisplay",e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.VIEW_FORM_MODEL_TYPE="viewFormModelType",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.IS_SHOW_WATERMARK="isShowWatermark",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions",e.IS_PASTE="isPaste"})(kn||(kn={}));var mt;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(mt||(mt={}));var ys=function e(t){gt(this,e),N(this,"width",void 0),N(this,"height",void 0),N(this,"widthConfig",void 0),N(this,"heightConfig",void 0);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var i;this.widthConfig=(i=t==null?void 0:t.widthConfig)!==null&&i!==void 0?i:"fill";var u;this.heightConfig=(u=t==null?void 0:t.heightConfig)!==null&&u!==void 0?u:"fill"};function vs(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Et(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Me(e,t,n){return Hn()?Me=Reflect.construct:Me=function(i,u,o){var s=[null];s.push.apply(s,u);var c=Function.bind.apply(i,s),a=new c;return o&&we(a,o.prototype),a},Me.apply(null,arguments)}function re(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function be(e){return be=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},be(e)}function _s(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&we(e,t)}function gs(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function ms(e,t){return t&&(Es(t)==="object"||typeof t=="function")?t:vs(e)}function we(e,t){return we=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},we(e,t)}function Es(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function bt(e){var t=typeof Map=="function"?new Map:void 0;return bt=function(r){if(r===null||!gs(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,i)}function i(){return Me(r,arguments,be(this).constructor)}return i.prototype=Object.create(r.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),we(i,r)},bt(e)}function Hn(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function bs(e){var t=Hn();return function(){var r=be(e),i;if(t){var u=be(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return ms(this,i)}}var wt=function e(t){Et(this,e),re(this,"isHide",{type:"boolean"})},Wn=function(e){_s(n,e);var t=bs(n);function n(r){return Et(this,n),t.call(this)}return n}(bt(Array)),X=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";Et(this,e),re(this,"isHide",void 0),re(this,"className",void 0),re(this,"style",void 0),re(this,"caption",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new ys(t==null?void 0:t.style);var i;this.caption=(i=t==null?void 0:t.caption)!==null&&i!==void 0?i:n};re(X,"Rules",wt),re(X,"RuntimeRules",Wn);function k(){return k=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},k.apply(this,arguments)}function ws(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function Bt(e){return Bt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Bt(e)}function xe(e,t){return xe=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},xe(e,t)}function Bs(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Te(e,t,n){return Bs()?Te=Reflect.construct:Te=function(i,u,o){var s=[null];s.push.apply(s,u);var c=Function.bind.apply(i,s),a=new c;return o&&xe(a,o.prototype),a},Te.apply(null,arguments)}function As(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function At(e){var t=typeof Map=="function"?new Map:void 0;return At=function(r){if(r===null||!As(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,i)}function i(){return Te(r,arguments,Bt(this).constructor)}return i.prototype=Object.create(r.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),xe(i,r)},At(e)}var Ss=/%[sdj%]/g,zn=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(zn=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function St(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function T(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,i=t[0],u=t.length;if(typeof i=="function")return i.apply(null,t.slice(1));if(typeof i=="string"){var o=String(i).replace(Ss,function(s){if(s==="%%")return"%";if(r>=u)return s;switch(s){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(c){return"[Circular]"}break;default:return s}});return o}return i}function Is(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function C(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Is(t)&&typeof e=="string"&&!e)}function Fs(e,t,n){var r=[],i=0,u=e.length;function o(s){r.push.apply(r,s),i++,i===u&&n(r)}e.forEach(function(s){t(s,o)})}function Gn(e,t,n){var r=0,i=e.length;function u(o){if(o&&o.length){n(o);return}var s=r;r=r+1,s<i?t(e[s],u):n([])}u([])}function Ds(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var Kn=function(e){ws(t,e);function t(n,r){var i;return i=e.call(this,"Async Validation Error")||this,i.errors=n,i.fields=r,i}return t}(At(Error));function Cs(e,t,n,r){if(t.first){var i=new Promise(function(h,v){var E=function(_){return r(_),_.length?v(new Kn(_,St(_))):h()},w=Ds(e);Gn(w,n,E)});return i.catch(function(h){return h}),i}var u=t.firstFields||[];u===!0&&(u=Object.keys(e));var o=Object.keys(e),s=o.length,c=0,a=[],f=new Promise(function(h,v){var E=function(p){if(a.push.apply(a,p),c++,c===s)return r(a),a.length?v(new Kn(a,St(a))):h()};o.length||(r(a),h()),o.forEach(function(w){var p=e[w];u.indexOf(w)!==-1?Gn(p,n,E):Fs(p,n,E)})});return f.catch(function(h){return h}),f}function Xn(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function Jn(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=k(k({},e[n]),r):e[n]=r}}return e}function Zn(e,t,n,r,i,u){e.required&&(!n.hasOwnProperty(e.field)||C(t,u||e.type))&&r.push(T(i.messages.required,e.fullField))}function Os(e,t,n,r,i){(/^\s+$/.test(t)||t==="")&&r.push(T(i.messages.whitespace,e.fullField))}var It={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},Be={integer:function(t){return Be.number(t)&&parseInt(t,10)===t},float:function(t){return Be.number(t)&&!Be.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(n){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!Be.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(It.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(It.url)},hex:function(t){return typeof t=="string"&&!!t.match(It.hex)}};function $s(e,t,n,r,i){if(e.required&&t===void 0){Zn(e,t,n,r,i);return}var u=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;u.indexOf(o)>-1?Be[o](t)||r.push(T(i.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(T(i.messages.types[o],e.fullField,e.type))}function Rs(e,t,n,r,i){var u=typeof e.len=="number",o=typeof e.min=="number",s=typeof e.max=="number",c=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,h=typeof t=="number",v=typeof t=="string",E=Array.isArray(t);if(h?f="number":v?f="string":E&&(f="array"),!f)return!1;E&&(a=t.length),v&&(a=t.replace(c,"_").length),u?a!==e.len&&r.push(T(i.messages[f].len,e.fullField,e.len)):o&&!s&&a<e.min?r.push(T(i.messages[f].min,e.fullField,e.min)):s&&!o&&a>e.max?r.push(T(i.messages[f].max,e.fullField,e.max)):o&&s&&(a<e.min||a>e.max)&&r.push(T(i.messages[f].range,e.fullField,e.min,e.max))}var oe="enum";function Ps(e,t,n,r,i){e[oe]=Array.isArray(e[oe])?e[oe]:[],e[oe].indexOf(t)===-1&&r.push(T(i.messages[oe],e.fullField,e[oe].join(", ")))}function Ms(e,t,n,r,i){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(T(i.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var u=new RegExp(e.pattern);u.test(t)||r.push(T(i.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var g={required:Zn,whitespace:Os,type:$s,range:Rs,enum:Ps,pattern:Ms};function xs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t,"string")&&!e.required)return n();g.required(e,t,r,u,i,"string"),C(t,"string")||(g.type(e,t,r,u,i),g.range(e,t,r,u,i),g.pattern(e,t,r,u,i),e.whitespace===!0&&g.whitespace(e,t,r,u,i))}n(u)}function Ts(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&g.type(e,t,r,u,i)}n(u)}function Ls(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&(g.type(e,t,r,u,i),g.range(e,t,r,u,i))}n(u)}function js(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&g.type(e,t,r,u,i)}n(u)}function qs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),C(t)||g.type(e,t,r,u,i)}n(u)}function Us(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&(g.type(e,t,r,u,i),g.range(e,t,r,u,i))}n(u)}function Vs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&(g.type(e,t,r,u,i),g.range(e,t,r,u,i))}n(u)}function Ns(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return n();g.required(e,t,r,u,i,"array"),t!=null&&(g.type(e,t,r,u,i),g.range(e,t,r,u,i))}n(u)}function ks(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&g.type(e,t,r,u,i)}n(u)}var Hs="enum";function Ws(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&g[Hs](e,t,r,u,i)}n(u)}function zs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t,"string")&&!e.required)return n();g.required(e,t,r,u,i),C(t,"string")||g.pattern(e,t,r,u,i)}n(u)}function Gs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t,"date")&&!e.required)return n();if(g.required(e,t,r,u,i),!C(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),g.type(e,s,r,u,i),s&&g.range(e,s.getTime(),r,u,i)}}n(u)}function Ks(e,t,n,r,i){var u=[],o=Array.isArray(t)?"array":typeof t;g.required(e,t,r,u,i,o),n(u)}function Ft(e,t,n,r,i){var u=e.type,o=[],s=e.required||!e.required&&r.hasOwnProperty(e.field);if(s){if(C(t,u)&&!e.required)return n();g.required(e,t,r,o,i,u),C(t,u)||g.type(e,t,r,o,i)}n(o)}function Xs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();g.required(e,t,r,u,i)}n(u)}var Ae={string:xs,method:Ts,number:Ls,boolean:js,regexp:qs,integer:Us,float:Vs,array:Ns,object:ks,enum:Ws,pattern:zs,date:Gs,url:Ft,hex:Ft,email:Ft,required:Ks,any:Xs};function Dt(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var Ct=Dt();function J(e){this.rules=null,this._messages=Ct,this.define(e)}J.prototype={messages:function(t){return t&&(this._messages=Jn(Dt(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var i=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var u=t,o=n,s=r;if(typeof o=="function"&&(s=o,o={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function c(p){var _,l=[],y={};function b(B){if(Array.isArray(B)){var F;l=(F=l).concat.apply(F,B)}else l.push(B)}for(_=0;_<p.length;_++)b(p[_]);l.length?y=St(l):(l=null,y=null),s(l,y)}if(o.messages){var a=this.messages();a===Ct&&(a=Dt()),Jn(a,o.messages),o.messages=a}else o.messages=this.messages();var f,h,v={},E=o.keys||Object.keys(this.rules);E.forEach(function(p){f=i.rules[p],h=u[p],f.forEach(function(_){var l=_;typeof l.transform=="function"&&(u===t&&(u=k({},u)),h=u[p]=l.transform(h)),typeof l=="function"?l={validator:l}:l=k({},l),l.validator=i.getValidationMethod(l),l.field=p,l.fullField=l.fullField||p,l.type=i.getType(l),l.validator&&(v[p]=v[p]||[],v[p].push({rule:l,value:h,source:u,field:p}))})});var w={};return Cs(v,o,function(p,_){var l=p.rule,y=(l.type==="object"||l.type==="array")&&(typeof l.fields=="object"||typeof l.defaultField=="object");y=y&&(l.required||!l.required&&p.value),l.field=p.field;function b(W,S){return k(k({},S),{},{fullField:l.fullField+"."+W})}function B(W){W===void 0&&(W=[]);var S=W;if(Array.isArray(S)||(S=[S]),!o.suppressWarning&&S.length&&J.warning("async-validator:",S),S.length&&l.message!==void 0&&(S=[].concat(l.message)),S=S.map(Xn(l)),o.first&&S.length)return w[l.field]=1,_(S);if(!y)_(S);else{if(l.required&&!p.value)return l.message!==void 0?S=[].concat(l.message).map(Xn(l)):o.error&&(S=[o.error(l,T(o.messages.required,l.field))]),_(S);var z={};if(l.defaultField)for(var Wr in p.value)p.value.hasOwnProperty(Wr)&&(z[Wr]=l.defaultField);z=k(k({},z),p.rule.fields);for(var fe in z)if(z.hasOwnProperty(fe)){var up=Array.isArray(z[fe])?z[fe]:[z[fe]];z[fe]=up.map(b.bind(null,fe))}var zr=new J(z);zr.messages(o.messages),p.rule.options&&(p.rule.options.messages=o.messages,p.rule.options.error=o.error),zr.validate(p.value,p.rule.options||o,function(gn){var pe=[];S&&S.length&&pe.push.apply(pe,S),gn&&gn.length&&pe.push.apply(pe,gn),_(pe.length?pe:null)})}}var F;l.asyncValidator?F=l.asyncValidator(l,p.value,B,p.source,o):l.validator&&(F=l.validator(l,p.value,B,p.source,o),F===!0?B():F===!1?B(l.message||l.field+" fails"):F instanceof Array?B(F):F instanceof Error&&B(F.message)),F&&F.then&&F.then(function(){return B()},function(W){return B(W)})},function(p){c(p)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Ae.hasOwnProperty(t.type))throw new Error(T("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var n=Object.keys(t),r=n.indexOf("message");return r!==-1&&n.splice(r,1),n.length===1&&n[0]==="required"?Ae.required:Ae[this.getType(t)]||!1}},J.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Ae[t]=n},J.warning=zn,J.messages=Ct,J.validators=Ae;var Js={required:"%s \u5FC5\u586B",maxLength:"%s \u8D85\u51FA\u6700\u5927\u957F\u5EA6\u9650\u5236",minLength:"%s \u5C0F\u4E8E\u6700\u5C0F\u957F\u5EA6\u9650\u5236",string:{range:"%s \u4E0D\u5728\u6307\u5B9A\u957F\u5EA6\u5185"}};function Zs(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new J(e);return n.messages(Object.assign(Js,t)),n}var Qn=new jn;function Ot(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Qs(e){if(Array.isArray(e))return e}function Ys(e){if(Array.isArray(e))return Ot(e)}function Yn(e,t,n,r,i,u,o){try{var s=e[u](o),c=s.value}catch(a){n(a);return}s.done?t(c):Promise.resolve(c).then(r,i)}function er(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){Yn(u,r,i,o,s,"next",c)}function s(c){Yn(u,r,i,o,s,"throw",c)}o(void 0)})}}function ec(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function tr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function tc(e,t,n){return t&&tr(e.prototype,t),n&&tr(e,n),e}function A(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function nr(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function rr(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function nc(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function rc(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function ir(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){A(e,i,n[i])})}return e}function ic(e){return Qs(e)||rr(e)||ur(e)||nc()}function $t(e){return Ys(e)||rr(e)||ur(e)||rc()}function ur(e,t){if(!!e){if(typeof e=="string")return Ot(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ot(e,t)}}function or(e,t){var n,r,i,u,o={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]};return u={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(u[Symbol.iterator]=function(){return this}),u;function s(a){return function(f){return c([a,f])}}function c(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(i=o.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(a[0]===6&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var L=function(){function t(n){var r=this;ec(this,t),A(this,"id",void 0),A(this,"name",void 0),A(this,"icon",void 0),A(this,"type",void 0),A(this,"controlType",void 0),A(this,"props",void 0),A(this,"setting",[]),A(this,"fieldType",void 0),A(this,"eventKeys",[]),A(this,"customEvents",[]),A(this,"parent",null),A(this,"updateSetting",sr),A(this,"removeSetting",ar),this._callControlHooks("preInstance",n);var i=nr(this,t)?this.constructor:void 0,u=i.controlName,o=i.controlIcon,s=i.controlType,c=i.controlFieldType,a=i.controlEventKeys,f=i.controlCustomEvents,h=i.name,v=i.setting;u&&o&&s||On("The ".concat(h," controlName,controlIcon,controlType is not define"));var E;this.id=(E=n==null?void 0:n.id)!==null&&E!==void 0?E:st(10),this.name=u,this.icon=o;var w;this.type=(w=n==null?void 0:n.type)!==null&&w!==void 0?w:s,this.props=new X(n==null?void 0:n.props,(nr(this,t)?this.constructor:void 0).controlName);var p;this.controlType=(p=n==null?void 0:n.controlType)!==null&&p!==void 0?p:"base",this.setting=te(v);var _;this.fieldType=(_=n==null?void 0:n.fieldType)!==null&&_!==void 0?_:c,this.eventKeys=te(a),this.customEvents=te(f),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return tc(t,[{key:"rules",get:function(){var r=this.props.constructor.Rules;return r?new r(this.props):{}}},{key:"_callControlHooks",value:function(){for(var r=arguments.length,i=new Array(r),u=0;u<r;u++)i[u]=arguments[u];var o,s=ic(i),c=s[0],a=s.slice(1);return(o=Qn).emit.apply(o,[c,this].concat($t(a)))}},{key:"preUpdate",value:function(r,i){this._callControlHooks("preUpdateProps",r,i)}},{key:"postUpdate",value:function(r,i){this._callControlHooks("postUpdateProps",r,i)}},{key:"updateProps",value:function(r,i){this.preUpdate(r,i),Pn(this.props,r,i),this.postUpdate(r,i)}},{key:"preValidate",value:function(){var r=this;return er(function(){var i,u,o;return or(this,function(s){switch(s.label){case 0:return i=ir({},r.rules),[4,r._callControlHooks("preValidate",i)];case 1:return u=s.sent(),o=u[u.length-1],[2,o===!1?void 0:o]}})})()}},{key:"validate",value:function(r,i){var u=this;return er(function(){var o,s,c,a;return or(this,function(f){switch(f.label){case 0:return[4,u.preValidate()];case 1:o=f.sent(),s=o!==void 0?o:ir({},u.rules),Array.isArray(i)&&i.forEach(function(h){s.hasOwnProperty(h)&&delete s[h]}),c=Zs(s,r),f.label=2;case 2:return f.trys.push([2,4,,5]),[4,c.validate(u.props)];case 3:return f.sent(),[2,!0];case 4:throw a=f.sent(),a.control||(a.control=u),a;case 5:return[2]}})})()}},{key:"toDataBindModel",value:function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this.fieldType,u=this.id,o=this.type,s=this.props,c=s.dataBind,a=s.datasourceBind,f=s.optionConfig,h=s.caption,v=s.required,E=s.maxLength,w=s.options,p=s.encrypted,_=s.encryptedMode;if(!(!i&&!c&&!a)){var l={parentId:r,fieldType:i,controlId:u,caption:h,type:o,props:{}};switch(c&&(l.dataBind=c),f){case"datasource":case void 0:a&&(l.datasourceBind=a);break;case"custom":l.props.options=w;break}return v!==void 0&&(l.required=v),E!==void 0&&(l.maxLength=E),p!==void 0&&(l.encrypted=p),_!==void 0&&(l.encryptedMode=_),l}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:te(this.props),fieldType:this.fieldType,controlType:this.controlType}}}],[{key:"updateBasicControl",value:function(r,i){if(r==="setting"){if(i.add){var u;(u=this.setting).push.apply(u,$t(i.add))}i.remove&&this.removeSettingItem(i.remove),i.update}}}]),t}();A(L,"controlName","\u63A7\u4EF6"),A(L,"controlIcon","icon"),A(L,"controlType","control"),A(L,"controlFieldType",void 0),A(L,"controlEventKeys",[]),A(L,"controlCustomEvents",[]),A(L,"setting",[]),A(L,"__is_control__",!0),A(L,"removeSettingItem",ar),A(L,"updateSettingItem",sr);function ar(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var i=typeof r!="string",u=t.setting.findIndex(function(c){return c.key===(i?r.key:r)});if(u!==-1){var o,s;i?t.setting[u].showItems=(o=t.setting[u].showItems)===null||o===void 0?void 0:o.filter(function(c){return!r.hideItems.includes(c)}):t.setting.splice(u,1),i&&!(!((s=t.setting[u].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(u,1)}})}function sr(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(i){var u=n.setting.find(function(a){return a.key===i});if(u){if(typeof t=="boolean")u.visible=t;else if(typeof t=="object"){var o,s=(o=t.type)!==null&&o!==void 0?o:"replace";if(s==="replace")u.showItems=t.showItems;else{var c;(c=u.showItems).push.apply(c,$t(t.showItems))}}}})}function uc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function cr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function oc(e,t,n){return t&&cr(e.prototype,t),n&&cr(e,n),e}function V(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ac(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var Le=function(){function t(n){uc(this,t),V(this,"id",void 0),V(this,"type",void 0),V(this,"controlType",void 0),V(this,"props",void 0),V(this,"fieldType",void 0),V(this,"customEvents",[]),V(this,"pageStatus",void 0),V(this,"parent",null);var r=ac(this,t)?this.constructor:void 0,i=r.controlType,u=r.controlFieldType,o=r.name,s=r.controlCustomEvents;i||On("The ".concat(o," controlType is not define"));var c;this.id=(c=n==null?void 0:n.id)!==null&&c!==void 0?c:st(10);var a;this.type=(a=n==null?void 0:n.type)!==null&&a!==void 0?a:i,this.props=new X(n==null?void 0:n.props),this.customEvents=s;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var h;this.fieldType=(h=n==null?void 0:n.fieldType)!==null&&h!==void 0?h:u;var v;this.pageStatus=(v=n==null?void 0:n.pageStatus)!==null&&v!==void 0?v:mt.UNKNOWN}return oc(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var i=new r(this.props);return Array.from(i)}return[]}}]),t}();V(Le,"controlType","control"),V(Le,"controlFieldType",void 0),V(Le,"__is_control__",!0),V(Le,"controlCustomEvents",[]);function O(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Rt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function D(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function je(e){return je=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},je(e)}function Pt(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Mt(e,t)}function sc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function cc(e,t){return t&&(lc(t)==="object"||typeof t=="function")?t:O(e)}function Mt(e,t){return Mt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Mt(e,t)}function lc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function fc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function xt(e){var t=fc();return function(){var r=je(e),i;if(t){var u=je(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return cc(this,i)}}var pc=function(e){Pt(n,e);var t=xt(n);function n(r){Rt(this,n);var i;i=t.call(this,r),D(O(i),"dataBind",{}),D(O(i),"caption",{type:"string",required:!0,message:U.getMessage("pleaseEnterCaption")}),D(O(i),"isHideCaption",{type:"boolean"}),D(O(i),"labelPosition",{type:"enum",enum:["top","left"]}),D(O(i),"defaultState",{type:"enum",enum:["default","readonly"]}),D(O(i),"required",{type:"boolean"}),D(O(i),"captionTip",{type:"string",required:!1,message:U.getMessage("pleaseEnterCaptionTip")});var u={fieldCode:{type:"string",required:!0,message:U.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:U.getMessage("pleaseEnterFieldCode")}};if(sc(r.dataBind,Pe))i.dataBind={type:"object",required:!0,fields:te(u),message:U.getMessage("pleaseEnterFieldCode")};else{var o={type:"object",required:!0,fields:{},message:U.getMessage("pleaseEnterFieldCode")};Object.keys(r.dataBind).forEach(function(s){o.fields[s]={type:"object",required:!0,fields:te(u),message:U.getMessage("pleaseEnterFieldCode")}}),i.dataBind=o}return r.isShowCaptionTip&&(i.captionTip.required=!0),i}return n}(wt),dc=function(e){Pt(n,e);var t=xt(n);function n(r){Rt(this,n);var i;return i=t.call(this,r),i.push({type:"string",required:r.isHide?!1:r.required,message:r.requiredMessage!==""?r.requiredMessage:U.getMessage("runtimeRequired",{caption:r.caption})}),i}return n}(Wn),Tt=function(e){Pt(n,e);var t=xt(n);function n(r){Rt(this,n);var i;i=t.call(this,r),D(O(i),"caption",void 0),D(O(i),"isHideCaption",void 0),D(O(i),"isShowCaptionTip",void 0),D(O(i),"captionTip",void 0),D(O(i),"labelPosition",void 0),D(O(i),"dataBind",void 0),D(O(i),"defaultValue",void 0),D(O(i),"placeholder",void 0),D(O(i),"defaultState",void 0),D(O(i),"required",void 0),D(O(i),"requiredMessage",void 0);var u;i.caption=(u=r==null?void 0:r.caption)!==null&&u!==void 0?u:"";var o;i.isHideCaption=(o=r==null?void 0:r.isHideCaption)!==null&&o!==void 0?o:!1;var s;i.isShowCaptionTip=(s=r==null?void 0:r.isShowCaptionTip)!==null&&s!==void 0?s:!1;var c;i.captionTip=(c=r==null?void 0:r.captionTip)!==null&&c!==void 0?c:"";var a;i.defaultState=(a=r==null?void 0:r.defaultState)!==null&&a!==void 0?a:"default";var f;i.labelPosition=(f=r==null?void 0:r.labelPosition)!==null&&f!==void 0?f:"top";var h;i.placeholder=(h=r==null?void 0:r.placeholder)!==null&&h!==void 0?h:"";var v;i.required=(v=r==null?void 0:r.required)!==null&&v!==void 0?v:!1;var E;i.requiredMessage=(E=r==null?void 0:r.requiredMessage)!==null&&E!==void 0?E:"",i.dataBind=new Pe(r==null?void 0:r.dataBind);var w;return i.defaultValue=(w=r==null?void 0:r.defaultValue)!==null&&w!==void 0?w:"",i}return n}(X);D(Tt,"Rules",pc),D(Tt,"RuntimeRules",dc);function Lt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function hc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ue(e){return Ue=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ue(e)}function yc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&jt(e,t)}function vc(e,t){return t&&(_c(t)==="object"||typeof t=="function")?t:Lt(e)}function jt(e,t){return jt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},jt(e,t)}function _c(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function gc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function mc(e){var t=gc();return function(){var r=Ue(e),i;if(t){var u=Ue(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return vc(this,i)}}var lr=function(e){yc(n,e);var t=mc(n);function n(r){hc(this,n);var i;return i=t.call(this,r),qe(Lt(i),"controlType","form"),qe(Lt(i),"props",void 0),i.props=new Tt(r==null?void 0:r.props),i}return n}(L);qe(lr,"controlEventKeys",["on_change","on_focus","on_blur"]),qe(lr,"controlCustomAttributes",void 0);function Ec(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function bc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ve(e){return Ve=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ve(e)}function wc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&qt(e,t)}function Bc(e,t){return t&&(Ac(t)==="object"||typeof t=="function")?t:Ec(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},qt(e,t)}function Ac(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Sc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ic(e){var t=Sc();return function(){var r=Ve(e),i;if(t){var u=Ve(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Bc(this,i)}}var Fc=function(e){wc(n,e);var t=Ic(n);function n(r){return bc(this,n),t.call(this,r)}return n}(X);function Ut(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Dc(e){if(Array.isArray(e))return Ut(e)}function Cc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Oc(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function fr(e){return Dc(e)||Cc(e)||$c(e)||Oc()}function $c(e,t){if(!!e){if(typeof e=="string")return Ut(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ut(e,t)}}function Rc(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function pr(e,t){e.parent=t,Rc(e,"parent")}function Pc(e,t){e.forEach(function(n){pr(n,t)})}var dr=Symbol("targetKey");function hr(e){var t;return(t=e[dr])!==null&&t!==void 0?t:e}function yr(e,t){return Pc(e,t),new Proxy(e,{get:function(r,i){for(var u=arguments.length,o=new Array(u>2?u-2:0),s=2;s<u;s++)o[s-2]=arguments[s];var c;return i===dr?r:(c=Reflect).get.apply(c,[r,i].concat(fr(o)))},set:function(r,i,u){for(var o=arguments.length,s=new Array(o>3?o-3:0),c=3;c<o;c++)s[c-3]=arguments[c];var a;if(me(e)&&i==="length"&&u===e.length)return!0;var f=(a=Reflect).set.apply(a,[r,i,u].concat(fr(s)));return ht(u)&&pr(u,t),f}})}function vr(e,t,n,r){var i=r!=null?r:e,u=yr(hr(n!=null?n:[]),i);Object.defineProperty(e,t,{get:function(){return u},set:function(s){u=yr(hr(s),i)},enumerable:!0})}function Vt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Mc(e){if(Array.isArray(e))return Vt(e)}function ie(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function _r(e,t,n,r,i,u,o){try{var s=e[u](o),c=s.value}catch(a){n(a);return}s.done?t(c):Promise.resolve(c).then(r,i)}function xc(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){_r(u,r,i,o,s,"next",c)}function s(c){_r(u,r,i,o,s,"throw",c)}o(void 0)})}}function Tc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function gr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Lc(e,t,n){return t&&gr(e.prototype,t),n&&gr(e,n),e}function Z(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ae(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?ae=Reflect.get:ae=function(i,u,o){var s=zc(i,u);if(!!s){var c=Object.getOwnPropertyDescriptor(s,u);return c.get?c.get.call(o||i):c.value}},ae(e,t,n||e)}function Q(e){return Q=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Q(e)}function jc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Nt(e,t)}function qc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Uc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Vc(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Nc(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){Z(e,i,n[i])})}return e}function kc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function Hc(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):kc(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Wc(e,t){return t&&(Gc(t)==="object"||typeof t=="function")?t:ie(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Nt(e,t)}function zc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Q(e),e!==null););return e}function mr(e){return Mc(e)||Uc(e)||Kc(e)||Vc()}function Gc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Kc(e,t){if(!!e){if(typeof e=="string")return Vt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Vt(e,t)}}function Xc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Jc(e){var t=Xc();return function(){var r=Q(e),i;if(t){var u=Q(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Wc(this,i)}}function Zc(e,t){var n,r,i,u,o={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]};return u={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(u[Symbol.iterator]=function(){return this}),u;function s(a){return function(f){return c([a,f])}}function c(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(i=o.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(a[0]===6&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var Qc=1e4,Er=function(t){jc(r,t);var n=Jc(r);function r(i){Tc(this,r);var u;u=n.call(this,i),Z(ie(u),"controlType","layout"),Z(ie(u),"children",void 0),Z(ie(u),"excludes",void 0),Z(ie(u),"childrenMaxLength",void 0),Z(ie(u),"props",void 0);var o=qc(this,r)?this.constructor:void 0,s=o.excludes,c=o.childrenMaxLength;return u.props=new Fc(i==null?void 0:i.props),vr(ie(u),"children",i==null?void 0:i.children),u.excludes=te(s),u.childrenMaxLength=c,u}return Lc(r,[{key:"judgeExcludesChildren",value:function(u){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(u)}},{key:"judgeJoinChildren",value:function(u){var o=this.judgeExcludesChildren(u);return o&&this.childrenMaxLength>this.children.length}},{key:"validate",value:function(u,o){var s=this,c=this,a=function(){return ae(Q(r.prototype),"validate",s)};return xc(function(){return Zc(this,function(f){switch(f.label){case 0:return[4,a().call(c,u,o)];case 1:return f.sent(),[4,Promise.all(c.children.map(function(h){return h.validate(u,o)}))];case 2:return f.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,o=ae(Q(r.prototype),"toDataBindModel",this).call(this),s=o?[o]:[];return this.children.reduce(function(c,a){var f=a.toDataBindModel(u);if(Array.isArray(f)){var h=f.filter(function(v){return!!v});return mr(c).concat(mr(h))}return f&&c.push(f),c},s)}},{key:"toSchema",value:function(){var u=ae(Q(r.prototype),"toSchema",this).call(this),o=this.children.map(function(s){var c=s.toSchema();return c});return Hc(Nc({},u),{children:o})}}]),r}(L);Z(Er,"excludes",!1),Z(Er,"childrenMaxLength",Qc);function kt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Yc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function el(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ne(e){return Ne=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ne(e)}function tl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ht(e,t)}function nl(e,t){return t&&(rl(t)==="object"||typeof t=="function")?t:kt(e)}function Ht(e,t){return Ht=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Ht(e,t)}function rl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function il(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function ul(e){var t=il();return function(){var r=Ne(e),i;if(t){var u=Ne(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return nl(this,i)}}var ol=function(e){tl(n,e);var t=ul(n);function n(r,i){Yc(this,n);var u;return u=t.call(this,i),el(kt(u),"headers",void 0),vr(kt(u),"headers",i==null?void 0:i.headers,r),u}return n}(X);function Wt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function al(e){if(Array.isArray(e))return Wt(e)}function ke(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function br(e,t,n,r,i,u,o){try{var s=e[u](o),c=s.value}catch(a){n(a);return}s.done?t(c):Promise.resolve(c).then(r,i)}function sl(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){br(u,r,i,o,s,"next",c)}function s(c){br(u,r,i,o,s,"throw",c)}o(void 0)})}}function cl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function wr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ll(e,t,n){return t&&wr(e.prototype,t),n&&wr(e,n),e}function He(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function se(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?se=Reflect.get:se=function(i,u,o){var s=vl(i,u);if(!!s){var c=Object.getOwnPropertyDescriptor(s,u);return c.get?c.get.call(o||i):c.value}},se(e,t,n||e)}function Y(e){return Y=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Y(e)}function fl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&zt(e,t)}function pl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function dl(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Br(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){He(e,i,n[i])})}return e}function hl(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function Ar(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):hl(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function yl(e,t){return t&&(_l(t)==="object"||typeof t=="function")?t:ke(e)}function zt(e,t){return zt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},zt(e,t)}function vl(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Y(e),e!==null););return e}function Sr(e){return al(e)||pl(e)||gl(e)||dl()}function _l(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function gl(e,t){if(!!e){if(typeof e=="string")return Wt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Wt(e,t)}}function ml(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function El(e){var t=ml();return function(){var r=Y(e),i;if(t){var u=Y(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return yl(this,i)}}function bl(e,t){var n,r,i,u,o={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]};return u={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(u[Symbol.iterator]=function(){return this}),u;function s(a){return function(f){return c([a,f])}}function c(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(i=o.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(a[0]===6&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var wl=function(e){fl(n,e);var t=El(n);function n(r){cl(this,n);var i;return i=t.call(this,r),He(ke(i),"controlType","list"),He(ke(i),"props",void 0),i.props=new ol(ke(i),r==null?void 0:r.props),i}return ll(n,[{key:"validate",value:function(i,u){var o=this,s=this,c=function(){return se(Y(n.prototype),"validate",o)};return sl(function(){return bl(this,function(a){switch(a.label){case 0:return[4,c().call(s,i)];case 1:return a.sent(),[4,Promise.all(s.props.headers.map(function(f){return f.validate(i,u)}))];case 2:return a.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var i=se(Y(n.prototype),"toDataBindModel",this).call(this),u=i?[i]:[],o=this.id;return this.props.headers.reduce(function(s,c){var a=c.toDataBindModel(o);if(Array.isArray(a)){var f=a.filter(function(h){return!!h});return Sr(s).concat(Sr(f))}return a&&s.push(a),s},u)}},{key:"toSchema",value:function(){var i=se(Y(n.prototype),"toSchema",this).call(this),u=this.props.headers.map(function(o){return o.toSchema()});return Ar(Br({},i),{props:Ar(Br({},this.props),{headers:u})})}}]),n}(L);He(wl,"controlFieldType",I.LIST);function j(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ir(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function q(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function We(e){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},We(e)}function Fr(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Gt(e,t)}function Bl(e,t){return t&&(Al(t)==="object"||typeof t=="function")?t:j(e)}function Gt(e,t){return Gt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Gt(e,t)}function Al(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Sl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Dr(e){var t=Sl();return function(){var r=We(e),i;if(t){var u=We(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Bl(this,i)}}var Il=function(e){Fr(n,e);var t=Dr(n);function n(r){Ir(this,n);var i;return i=t.call(this,r),q(j(i),"caption",{type:"string",required:!0,message:U.getMessage("pleaseEnterCaption")}),q(j(i),"width",{type:"number",required:!1,message:U.getMessage("pleaseEnterColumnWidth")}),i.width.required=r.widthType==="px",i}return n}(wt),Fl=function(e){Fr(n,e);var t=Dr(n);function n(r){Ir(this,n);var i;i=t.call(this,r),q(j(i),"widthType",void 0),q(j(i),"width",void 0),q(j(i),"caption",void 0),q(j(i),"dataBind",void 0),q(j(i),"autoWidth",void 0),q(j(i),"fixed",void 0),q(j(i),"sort",void 0),q(j(i),"align",void 0),q(j(i),"colSpan",void 0),q(j(i),"autoHeight",void 0);var u;i.width=(u=r==null?void 0:r.width)!==null&&u!==void 0?u:150,i.widthType=(r==null?void 0:r.widthType)||"auto";var o;i.caption=(o=r==null?void 0:r.caption)!==null&&o!==void 0?o:"";var s;i.fixed=(s=r==null?void 0:r.fixed)!==null&&s!==void 0?s:"none",i.autoWidth=new hs(r==null?void 0:r.autoWidth),i.dataBind=new Pe(r==null?void 0:r.dataBind);var c;i.sort=(c=r==null?void 0:r.sort)!==null&&c!==void 0?c:!0,i.align=r==null?void 0:r.align,i.colSpan=r==null?void 0:r.colSpan;var a;return i.autoHeight=(a=r==null?void 0:r.autoHeight)!==null&&a!==void 0?a:!1,i}return n}(X);q(Fl,"Rules",Il);function Kt(e){return"children"in e&&me(e.children)}function Cr(e){return"headers"in e.props&&me(e.props.headers)}function ze(e,t){Array.isArray(e)&&e.map(n=>{n.type===d.SUBTABLE?ze(n.props.headers,t):Kt(n)?ze(n==null?void 0:n.children,t):n.controlType===P.FORM&&t(n)})}const Or=[d.AMOUNT,d.CALC,d.DATE_RANGE],$r={amount:{caption:"\u91D1\u989D",fieldType:I.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:I.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:I.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:I.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:I.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:I.TIMESTAMP}};function Dl(e){let t=[];return ze(e,n=>{n.controlType===P.FORM?t.push(n):(n.type,d.SUBTABLE)}),t}function Cl(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===d.TITLE)return n;if(Or.includes(n.type)){const r=n.dataBind;Object.keys(r).forEach(i=>{const u=r[i],o=n.controlId+"_"+i;u.fieldCode=Rr(o),u.dataCode=t})}else n.dataBind.fieldCode=Rr(n.controlId),n.dataBind.dataCode=t;return n})}function Rr(e){const t="field_";return e.startsWith(t)?e:t+e}function Ge(e){return Ca[e]}function Ol(e){const t=new ee,n=[];return e.forEach(r=>{if(!(r.parentId||!r.dataBind))if(Or.includes(r.type)){const i=r.dataBind,u=r.datasourceBind;Object.keys(i).forEach(o=>{const s=i[o],c=$r[o].fieldType,a=r.caption+"_"+$r[o].caption,f=Ge(c);if(!f)return;const h={caption:a,dataBind:s};o==="currency"&&(h.optionConfig="datasource",h.datasourceBind=u);const v=t.createControlInstance(f,{props:h});v&&n.push(v)})}else{const i=Ge(r.fieldType);if(!i)return;const u=t.createControlInstance(i,{props:{caption:r.caption,dataBind:r.dataBind,datasourceBind:r.datasourceBind}});u&&n.push(u)}}),n}function $l(e){const t=new ee,r=(Array.isArray(e)?e:[e]).map(i=>{const u=Ge(i);return t.createControlInstance(u)});return Array.isArray(e)?r:r[0]}function Xt(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function Jt(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Zt(e,t,n){return mn(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(i=>i.validate(t,n)))).every(i=>i):yield e.validate(t,n)})}const Rl=[d.TITLE,d.GRID_TABLE_COLUMN,d.SUBTABLE_COLUMN,d.OPERATION_COLUMN,d.DATA_VIEW,d.LIST_VIEW,d.HEADER,d.FOOTER,d.SIMPLE_SEARCH,d.ROW,d.GRID_ROW,d.COL,d.GRID,d.DIVIDER,d.TAB_PANE,d.TAB,d.CARD_GROUP],Pl=[d.CALC],Ml={check:{id:"listPageCheckBtnId",caption:"\u67E5\u770B"},edit:{id:"listPageEditBtnId",caption:"\u7F16\u8F91"},delete:{id:"listPageDeleteBtnId",caption:"\u5220\u9664"}};function Se(e,t){var r,i,u,o,s,c,a,f,h;const n=[];if(me(e))n.push(...e.map(v=>Se(v,t)).flat());else{const v=e.type,{caption:E,content:w}=e.props;let p;if(Rl.includes(v))v===d.OPERATION_COLUMN&&Object.entries(Ml).reduce((_,[l,{caption:y,id:b}])=>{var F;const B=e.props[l];return B&&B.isShow&&_.push({controlId:b,caption:y,type:e.type,controlType:e.controlType,parentId:(F=t==null?void 0:t.controlId)!=null?F:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),_},n);else if(p={controlId:e.id,caption:E||w||e.name,type:e.type,controlType:e.controlType,parentId:(r=t==null?void 0:t.controlId)!=null?r:null,canEdit:!Pl.includes(v),canRead:!0,canHide:!0,group:"element"},t&&t.type===d.SUBTABLE&&(p.caption=t.caption+"_"+p.caption),v===d.VUE_FORM_ITEM&&(p.caption=e.props.controlExportName||e.name),(e.controlType===P.FORM||e.controlType===P.COLUMN)&&((u=(i=e.props)==null?void 0:i.dataBind)==null?void 0:u.fieldCode)!==void 0&&((s=(o=e.props)==null?void 0:o.dataBind)==null?void 0:s.fieldCode)!==""&&(p.group="field"),n.push(p),v===d.VUE_FORM_ITEM){let _="element";((a=(c=e.props)==null?void 0:c.dataBind)==null?void 0:a.fieldCode)!==void 0&&((h=(f=e.props)==null?void 0:f.dataBind)==null?void 0:h.fieldCode)!==""&&(_="field");const l=e.props.permissions;l==null||l.map(y=>{var b;p={controlId:y.key,caption:y.caption,type:e.type,controlType:e.controlType,parentId:(b=e.id)!=null?b:null,canEdit:!0,canRead:!0,canHide:!0,group:_},n.push(p)})}e.children&&n.push(...e.children.map(_=>Se(_,t)).flat()),e.controlType===P.LIST&&n.push(...e.props.headers.map(_=>Se(_,p)).flat())}return n}class ee extends Re{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new Ee,this.fieldTypes=I,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:n,Setting:r}=t;this.controlSettingMap.set(n.controlType,r)})}registerControl(t){this.constructor.register(t);const{Designer:n,Setting:r}=t;this.register(n),this.registeredControlTypes.add(n.controlType),this.controlSettingMap.set(n.controlType,r)}getControlSetting(t){const n=this.controlSettingMap.get(t);return n||null}setInstance(t,n,r){try{if(!t)return;t.updateProps(n,r)}catch(i){throw i}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return mn(this,null,function*(){return Zt(...t)})}getModelBindInfoList(...t){return Jt(...t)}getSchema(...t){return Xt(...t)}listenControlHook(...t){return Qn.on(...t)}}ee.EventLogic=Ee;class xl{constructor(){this.designer=new ee}ListPageBuilder(){const t=this.designer.createControlInstance(d.LIST_VIEW),n=this.designer.createControlInstance(d.SIMPLE_SEARCH),r=this.designer.createControlInstance(d.GRID_TABLE),i=this.designer.createControlInstance(d.CREATE_FORM_LIST_BUTTON),u=this.designer.createControlInstance(d.IMPORT_RECORD_LIST_BUTTON),o=this.designer.createControlInstance(d.EXPORT_LIST_BUTTON),s=this.designer.createControlInstance(d.EXPORT_RECORD_LIST_BUTTON);return r.children.push(i),r.children.push(u),r.children.push(o),r.children.push(s),t.children.push(n),t.children.push(r),t}ProListPageBuilder(){const t=this.designer.createControlInstance(d.LIST_VIEW);t.props.countType="async";const n=this.designer.createControlInstance(d.SIMPLE_SEARCH),r=this.designer.createControlInstance(d.GRID_TABLE),i=this.designer.createControlInstance(d.EXPORT_LIST_BUTTON),u=this.designer.createControlInstance(d.EXPORT_RECORD_LIST_BUTTON);return r.children.push(i),r.children.push(u),t.children.push(n),t.children.push(r),t}FormPageBuilder(){const t=this.designer.createControlInstance(d.DATA_VIEW),n=this.designer.createControlInstance(d.TITLE),r=this.designer.createControlInstance(d.GRID);return t.children.push(n),t.children.push(r),t}VuePageBuilder(){const t=this.designer.createControlInstance(d.GRID),n=this.designer.createControlInstance(d.VUE_FORM_ITEM);return n.props.isHideCaption=!0,n.props.controlExportName="VuePage",t.children.push(n),t}}function Tl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ll(e,t,n){return t&&Pr(e.prototype,t),n&&Pr(e,n),e}function Mr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var K=function(){function e(t){Tl(this,e),Mr(this,"visible",void 0),Mr(this,"expression",void 0);var n;this.visible=(n=t==null?void 0:t.visible)!==null&&n!==void 0?n:!0;var r;this.expression=(r=t==null?void 0:t.expression)!==null&&r!==void 0?r:!1}return Ll(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function jl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function xr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ql(e,t,n){return t&&xr(e.prototype,t),n&&xr(e,n),e}function H(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ul=function(){function e(t){jl(this,e),H(this,"type",void 0),H(this,"label",void 0),H(this,"key",void 0),H(this,"component",void 0),H(this,"effect",void 0),H(this,"scopeEffect",void 0),H(this,"defaultValue",void 0),H(this,"validator",void 0),H(this,"props",void 0),H(this,"effectKeys",void 0),this.type=t.type,this.label=t.label,this.key=t.key,this.component=t.component;var n;this.effect=(n=t.effect)!==null&&n!==void 0?n:{};var r;this.scopeEffect=(r=t.scopeEffect)!==null&&r!==void 0?r:Da,this.defaultValue=t.defaultValue,this.validator=t.validator;var i;this.props=(i=t.props)!==null&&i!==void 0?i:new K,this.effectKeys=Object.keys(this.effect)}return ql(e,[{key:"filterEffects",value:function(n){var r=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(i){var u=new RegExp("^".concat(i,"(\\.\\w+)*$"));return u.test(n)}).map(function(i){return r.effect[i]})}},{key:"callEffectFn",value:function(n,r){try{var i=n.apply(null,r);ht(i)&&Object.assign(this.props,i)}catch(u){ge(`effect error
2
- `.concat(u))}}},{key:"callEffect",value:function(n){for(var r=arguments.length,i=new Array(r>1?r-1:0),u=1;u<r;u++)i[u-1]=arguments[u];var o=this;this.filterEffects(n).forEach(function(s){return o.callEffectFn(s,i)})}},{key:"callScopeEffect",value:function(){for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];this.callEffectFn(this.scopeEffect,r)}}]),e}();function Vl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ce(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Qt=function e(t){Vl(this,e),ce(this,"type","group"),ce(this,"title",void 0),ce(this,"required",void 0),ce(this,"items",void 0),ce(this,"tips",void 0),ce(this,"fromId",void 0);var n;this.title=(n=t.title)!==null&&n!==void 0?n:"";var r;this.required=(r=t.required)!==null&&r!==void 0?r:!1,this.items=t.items,this.tips=t.tips};function Nl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Yt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function kl(e){return"type"in e&&e.type==="tab"}var en=function e(t){Nl(this,e),Yt(this,"type","tab"),Yt(this,"title",void 0),Yt(this,"items",void 0),this.title=t.title,this.items=t.items};function Tr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Hl(e){if(Array.isArray(e))return e}function Wl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function zl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ke(e){return Ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ke(e)}function Gl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&tn(e,t)}function Kl(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n!=null){var r=[],i=!0,u=!1,o,s;try{for(n=n.call(e);!(i=(o=n.next()).done)&&(r.push(o.value),!(t&&r.length===t));i=!0);}catch(c){u=!0,s=c}finally{try{!i&&n.return!=null&&n.return()}finally{if(u)throw s}}return r}}function Xl(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Jl(e,t){return t&&(Ql(t)==="object"||typeof t=="function")?t:Wl(e)}function tn(e,t){return tn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},tn(e,t)}function Zl(e,t){return Hl(e)||Kl(e,t)||Yl(e,t)||Xl()}function Ql(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Yl(e,t){if(!!e){if(typeof e=="string")return Tr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Tr(e,t)}}function ef(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function tf(e){var t=ef();return function(){var r=Ke(e),i;if(t){var u=Ke(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Jl(this,i)}}var nf=function(e){Gl(n,e);var t=tf(n);function n(r){zl(this,n);var i;return i=t.call(this,r),ht(r)&&Object.entries(r).forEach(function(u){var o=Zl(u,2),s=o[0],c=o[1];i[s]=c}),i}return n}(K);function Ie(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function rf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Xe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Je(e){return Je=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Je(e)}function uf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&nn(e,t)}function of(e,t){return t&&(af(t)==="object"||typeof t=="function")?t:Ie(e)}function nn(e,t){return nn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},nn(e,t)}function af(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function sf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function cf(e){var t=sf();return function(){var r=Je(e),i;if(t){var u=Je(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return of(this,i)}}var lf=function(e){uf(n,e);var t=cf(n);function n(r){rf(this,n);var i;i=t.call(this,r),Xe(Ie(i),"maxLength",void 0),Xe(Ie(i),"minLength",void 0),Xe(Ie(i),"placeholder",void 0),Xe(Ie(i),"i18n",void 0);var u;i.maxLength=(u=r==null?void 0:r.maxLength)!==null&&u!==void 0?u:"";var o;i.minLength=(o=r==null?void 0:r.minLength)!==null&&o!==void 0?o:"";var s;i.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var c;return i.i18n=(c=r==null?void 0:r.i18n)!==null&&c!==void 0?c:!1,i}return n}(K);function Ze(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ff(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function rn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Qe(e){return Qe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Qe(e)}function pf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&un(e,t)}function df(e,t){return t&&(hf(t)==="object"||typeof t=="function")?t:Ze(e)}function un(e,t){return un=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},un(e,t)}function hf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function yf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function vf(e){var t=yf();return function(){var r=Qe(e),i;if(t){var u=Qe(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return df(this,i)}}var _f=function(e){pf(n,e);var t=vf(n);function n(r){ff(this,n);var i;i=t.call(this,r),rn(Ze(i),"max",void 0),rn(Ze(i),"min",void 0),rn(Ze(i),"placeholder",void 0);var u;i.max=(u=r==null?void 0:r.max)!==null&&u!==void 0?u:"";var o;i.min=(o=r==null?void 0:r.min)!==null&&o!==void 0?o:"";var s;return i.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"",i}return n}(K);function Ye(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function gf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function on(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function et(e){return et=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},et(e)}function mf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&an(e,t)}function Ef(e,t){return t&&(bf(t)==="object"||typeof t=="function")?t:Ye(e)}function an(e,t){return an=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},an(e,t)}function bf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function wf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Bf(e){var t=wf();return function(){var r=et(e),i;if(t){var u=et(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Ef(this,i)}}var Af=function(e){mf(n,e);var t=Bf(n);function n(r){gf(this,n);var i;i=t.call(this,r),on(Ye(i),"showType",void 0),on(Ye(i),"tips",void 0),on(Ye(i),"disabled",void 0);var u;i.showType=(u=r==null?void 0:r.showType)!==null&&u!==void 0?u:"switch";var o;i.tips=(o=r==null?void 0:r.tips)!==null&&o!==void 0?o:"";var s;return i.disabled=(s=r==null?void 0:r.disabled)!==null&&s!==void 0?s:!1,i}return n}(K);function Lr(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Sf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function If(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function tt(e){return tt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},tt(e)}function Ff(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&sn(e,t)}function Df(e,t){return t&&(Cf(t)==="object"||typeof t=="function")?t:Lr(e)}function sn(e,t){return sn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},sn(e,t)}function Cf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Of(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function $f(e){var t=Of();return function(){var r=tt(e),i;if(t){var u=tt(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Df(this,i)}}var Rf=function(e){Ff(n,e);var t=$f(n);function n(r){Sf(this,n);var i;i=t.call(this,r),If(Lr(i),"options",void 0);var u;return i.options=(u=r==null?void 0:r.options)!==null&&u!==void 0?u:[],i}return n}(K);function cn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Pf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function nt(e){return nt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},nt(e)}function Mf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ln(e,t)}function xf(e,t){return t&&(Tf(t)==="object"||typeof t=="function")?t:cn(e)}function ln(e,t){return ln=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},ln(e,t)}function Tf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Lf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function jf(e){var t=Lf();return function(){var r=nt(e),i;if(t){var u=nt(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return xf(this,i)}}var qf=function(e){Mf(n,e);var t=jf(n);function n(r){Pf(this,n);var i;i=t.call(this,r),jr(cn(i),"placeholder",void 0),jr(cn(i),"options",void 0);var u;i.placeholder=(u=r==null?void 0:r.placeholder)!==null&&u!==void 0?u:"";var o;return i.options=(o=r==null?void 0:r.options)!==null&&o!==void 0?o:[],i}return n}(K);function fn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Uf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function rt(e){return rt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},rt(e)}function Vf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&pn(e,t)}function Nf(e,t){return t&&(kf(t)==="object"||typeof t=="function")?t:fn(e)}function pn(e,t){return pn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},pn(e,t)}function kf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Hf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Wf(e){var t=Hf();return function(){var r=rt(e),i;if(t){var u=rt(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Nf(this,i)}}var zf=function(e){Vf(n,e);var t=Wf(n);function n(r){Uf(this,n);var i;i=t.call(this,r),qr(fn(i),"options",void 0),qr(fn(i),"showType",void 0);var u;i.options=(u=r==null?void 0:r.options)!==null&&u!==void 0?u:[];var o;return i.showType=(o=r==null?void 0:r.showType)!==null&&o!==void 0?o:"outline",i}return n}(K);function ue(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Gf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function le(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function it(e){return it=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},it(e)}function Kf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&dn(e,t)}function Xf(e,t){return t&&(Jf(t)==="object"||typeof t=="function")?t:ue(e)}function dn(e,t){return dn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},dn(e,t)}function Jf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Zf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Qf(e){var t=Zf();return function(){var r=it(e),i;if(t){var u=it(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return Xf(this,i)}}var Yf=function(e){Kf(n,e);var t=Qf(n);function n(r){Gf(this,n);var i;i=t.call(this,r),le(ue(i),"maxLength",void 0),le(ue(i),"minLength",void 0),le(ue(i),"placeholder",void 0),le(ue(i),"i18n",void 0),le(ue(i),"maxRows",void 0),le(ue(i),"minRows",void 0);var u;i.maxLength=(u=r==null?void 0:r.maxLength)!==null&&u!==void 0?u:"";var o;i.minLength=(o=r==null?void 0:r.minLength)!==null&&o!==void 0?o:"";var s;i.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var c;i.maxRows=(c=r==null?void 0:r.maxRows)!==null&&c!==void 0?c:"";var a;i.minRows=(a=r==null?void 0:r.minRows)!==null&&a!==void 0?a:"";var f;return i.i18n=(f=r==null?void 0:r.i18n)!==null&&f!==void 0?f:!1,i}return n}(K);function ep(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function hn(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){ep(e,i,n[i])})}return e}function tp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function yn(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):tp(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function np(e,t){switch(e){case"input":return new lf(t);case"textarea":return new Yf(t);case"input-number":return new _f(t);case"switch":return new Af(t);case"radio":return new zf(t);case"checkbox":return new Rf(t);case"select":return new qf(t);default:return new nf(t)}}function rp(e){return function(t){var n=e.get(t);if(!!n)return new Ul(yn(hn({},n),{props:np(n.component,"props"in n?n.props:void 0)}))}}function ip(e){var t=function(u){return new Qt(yn(hn({},u),{items:u.items.map(rp(r)).filter(Boolean)}))},n=function(u){return u.map(t)},r=e.fields.reduce(function(i,u){return i.set(u.key,u),i},new Map);return e.groups.map(function(i){return kl(i)?new en(yn(hn({},i),{items:n(i.items)})):t(i)})}class Ur{constructor(t){var n;this.selected=null,this.selectedInstanceDataScopeParent=null,this.selectedDataScopeFlatInstances=[],this.selectedInstanceSetting=[],this.selectedInstanceSettingItems=[],this.selectedFieldItem=null,this.external={},this.movingInstance=null,this.movingInstanceOldParent=null,this.movingInstanceOldDataScopeParent=null,this.getParentBeforeInstanceMove=(n=t.getParentBeforeInstanceMove)!=null?n:r=>r.parent,this.instance=t.instance,this.getFlatInstances()}get selectedRules(){return this.selected?this.selected.rules:null}get selectedAntdRules(){const t=this.selectedRules;return t||null}setInstances(t){this.instance=t,this.getFlatInstances()}setSelectInstance(t){this.selected=t,this.selectedInstanceDataScopeParent=t?De(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?kr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(n=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(n))})}getSettingItems(t){return t instanceof Qt?t.items:t.items.reduce((n,r)=>(n.push(...r.items),n),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=De(t)}updateDataFieldCodeMap(t){const n=De(t);if(!n)return;const r=this.dataFieldCodeMap.get(n.props.datasourceBind.dataCode);if(!!r){for(const[i,u]of r.entries())if(u.id===t.id){r.delete(i);break}Nr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;Fe(this.instance,i=>{t.push(i),n.set(i.id,i),Nr(i,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function Vr(e,t,n){const{dataCode:r,fieldCode:i}=t;r&&i&&(e.has(r)||e.set(r,new Map),e.get(r).set(i,n))}function Nr(e,t){if(e.controlType===P.FORM){const n=e.props.dataBind;n instanceof Pe?Vr(t,n,e):Object.values(n).forEach(r=>{Vr(t,r,e)})}}function Fe(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{t(r),Kt(r)&&Fe(r.children,t),Cr(r)&&Fe(r.props.headers,t)})}function vn(e){return[d.SUBTABLE,d.DATA_VIEW,d.LIST_VIEW].includes(e.type)}function De(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!vn(t);)t=t.parent;return t}function kr(e){const t=[e];return Fe(e,n=>{n!==e&&t.includes(n.parent)&&!vn(n)&&t.push(n)}),t}let _n="";class Hr extends jn{constructor(t){super(),this.isMounted=!1,this.id=st(8),this.__pluginsApplied=!1,this.getSchema=Xt,this.getModelBindInfoList=Jt,this.generatePermissions=Se,this.$options=Object.freeze(t);const{autoMount:n=!1,Designer:r=ee,schema:i,mode:u="form",store:o={}}=this.$options;this.eventLogic=new Ee,this.designer=new r,this.store=new Ur(de({instance:this.designer.createControl(Array.isArray(i)?i:[i])},o)),this.mode=u,n&&this.mount()}mount(){const{plugins:t=[]}=this.$options;this.__plugins=t,this.applyPlugins(),this.isMounted=!0}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{_n=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this),_n=""}catch(r){ge(`${_n||t.constructor.name} Plugin apply Error
3
- ${r}`)}}),this.__pluginsApplied=!0)}emit(t,...n){return super.emit(t,n)}on(t,n){return super.on(t,n)}setInstances(t,n){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],n))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var i,u;const t=this.store.selected;if(!t)return;let n=this.getControlSetting(t.type);if(((i=t.parent)==null?void 0:i.controlType)===P.WRAP){const o=this.getControlSetting((u=t.parent)==null?void 0:u.type);n=this.concatSetting(n,o,t.parent.id)}this.store.setSelectInstanceSettings(n),this.callSelectedEffect("");const r={from:null,current:this.store.selectedInstanceDataScopeParent,oldParent:null,newParent:t.parent};this.callSelectedScopeEffect(r)}concatSetting(t,n,r){var u,o,s,c;let i=t;if(((u=t[0])==null?void 0:u.type)==="tab"&&((o=n[0])==null?void 0:o.type)==="tab"){const a=t,f=n.slice(0);i=a.map((h,v)=>{const E=new en(h),w=f.findIndex(_=>_.title===h.title);if(w===-1)return E;const p=f.splice(w,1)[0];return p&&(E.items=[...this.formatGroupSetting(p.items,r),...E.items]),E}),f.length&&(i=[...i,...f.map(h=>this.formatGroupSetting(h,r))])}else if(((s=t[0])==null?void 0:s.type)==="group"&&((c=n[0])==null?void 0:c.type)==="group"){const a=t,f=n;i=[...this.formatGroupSetting(f,r),...a]}return i}formatGroupSetting(t,n){if(me(t))return t.map(r=>{const i=new Qt(r);return i.fromId=n,i});{const r=new en(t);return r.items=this.formatGroupSetting(r.items,n),r}}setControlConfig(...t){return this.designer.registerControlConfig(...t)}getControlConfig(t){return this.designer.getControlConfig(t)}getControlSetting(t){const n=this.designer.getControlSetting(t);return n?ip(n):[]}selectInstance(t){this.beforeSelectInstance(),this.store.setSelectInstance(t),this.afterSelectInstance()}setSelectedFieldItem(t){this.store.setSelectedFieldItem(t),this.callSelectedEffect("dataBind",{fieldItem:t})}moveStart(t){const n=this.getInstance(t);n&&this.store.setMovingInstance(n)}moveEnd(t=this.store.movingInstance){var c;if(t===null)return;const n=this.getInstance(t);if(!n)return;const r=this.store.movingInstanceOldDataScopeParent,i=De(n),u=this.store.movingInstanceOldParent,o=n.parent;this.store.setMovingInstance(null),n.id!==((c=this.store.selected)==null?void 0:c.id)?this.selectInstance(n):this.store.setSelectInstance(n),this.store.getFlatInstances();const s={from:r,current:i,oldParent:u,newParent:o};this.callSelectedScopeEffect(s),u?this.emit("moved",de({},s)):this.emit("joined",de({},s))}createInstance(t,n){return this.designer.createControlInstance(t,n)}getInstance(t){return typeof t=="string"?this.store.instanceIdMap.get(t):t}getInstances(){return this.store.flatInstances}getInstancesFromType(t){return this.getInstances().filter(n=>n.type===t)}getDataScopeInstances(){return this.store.selectedDataScopeFlatInstances}getDataScopeInstancesFromType(t){return this.getDataScopeInstances().filter(n=>n.type===t)}updateInstancePropValue(t,n,r,i){var o;!Pn(t.props,n,r)||(n.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((o=this.store.selected)==null?void 0:o.id)&&this.callSelectedEffect(n,i),this.emit("updated",{instance:t,propName:n,value:r}))}updateInstanceProps(t,n,r,i=""){Object.entries(n).forEach(([u,o])=>{const s=`${i?i+".":""}${u}`;Qa(o)?this.updateInstanceProps(t,o,r,s):this.updateInstancePropValue(t,s,o,r)})}setInstance(t,n,r,i){yt(n)?this.updateInstancePropValue(t,String(n),r,i):this.updateInstanceProps(t,n,r)}removeInstance(t){const n=t.parent;if(!n)return;const r=n.controlType===P.LIST&&n.props.headers.includes(t)?n.props.headers:n.children,i=r.findIndex(u=>u===t);i>-1&&r.splice(i,1),this.store.getFlatInstances(),this.emit("removed",{instance:t,index:i,parent:n})}replaceInstance(t,n){const r=t.parent;if(!r)return;const i=r.controlType===P.LIST&&r.props.headers.includes(t)?r.props.headers:r.children,u=i.findIndex(o=>o===t);u>-1&&i.splice(u,1,n),this.store.getFlatInstances()}updateInstanceType(t,n){const r=t.toSchema(),i=this.createInstance(n,{id:r.id,props:r.props});if(!i){$e(`can\u2018t update instance type to ${n}`);return}return i}validate(t,n){return Zt(this.store.instance,t,n)}getCustomControlsInUse(){return this.getInstances().filter(this.assertInstanceIsCustomControl).reduce((t,n)=>(t.includes(n.type)||t.push(n.type),t),[])}assertInstanceIsCustomControl(t){return!Ya(yt(t)?t:t.type)}static register(...t){return ee.register(...t),this}static judgeControlIsRegistered(t){return ee.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,n){return yt(n)?t.type===n:n.includes(t.type)}getInstanceInListControl(t){let n=t;for(;n;){if(n.controlType===P.LIST)return!0;n=n.parent}return!1}getInstanceParentControl(t,n){if(!!t.parent)return this.assertInstance(t.parent,n)?t.parent:this.getInstanceParentControl(t.parent,n)}callSelectedEffect(t,n={}){this.store.selectedInstanceSettingItems.forEach(r=>{r.callEffect(t,this,de({control:this.store.selected},n))})}callSelectedScopeEffect(t={}){this.store.selectedInstanceSettingItems.forEach(n=>{n.callScopeEffect(this,de({control:this.store.selected},t))})}}Hr.EventLogic=Ee,m.Builder=xl,m.Designer=ee,m.Driven=Hr,m.Store=Ur,m.checkSchema=Zt,m.fillModelBindInfoListFieldCode=Cl,m.findInstanceDataScopeParent=De,m.generatePermissions=Se,m.getColumnTypeFromFiledType=Ge,m.getColumnsFromFiledType=$l,m.getColumnsFromModelBindInfoList=Ol,m.getDataScopeFlatInstances=kr,m.getMasterFormControls=Dl,m.getModelBindInfoList=Jt,m.hasChildrenControl=Kt,m.hasHeaderControl=Cr,m.isDataScopeInstance=vn,m.loop=Fe,m.loopFormControl=ze,m.toSchema=Xt,Object.defineProperty(m,"__esModule",{value:!0})});
1
+ var Ad=Object.defineProperty;var Jr=Object.getOwnPropertySymbols;var Fd=Object.prototype.hasOwnProperty,Cd=Object.prototype.propertyIsEnumerable;var Zr=(m,$,O)=>$ in m?Ad(m,$,{enumerable:!0,configurable:!0,writable:!0,value:O}):m[$]=O,ve=(m,$)=>{for(var O in $||($={}))Fd.call($,O)&&Zr(m,O,$[O]);if(Jr)for(var O of Jr($))Cd.call($,O)&&Zr(m,O,$[O]);return m};var bn=(m,$,O)=>new Promise((at,Pe)=>{var st=G=>{try{_e(O.next(G))}catch(ge){Pe(ge)}},lt=G=>{try{_e(O.throw(G))}catch(ge){Pe(ge)}},_e=G=>G.done?at(G.value):Promise.resolve(G.value).then(st,lt);_e((O=O.apply(m,$)).next())});(function(m,$){typeof exports=="object"&&typeof module!="undefined"?$(exports):typeof define=="function"&&define.amd?define(["exports"],$):(m=typeof globalThis!="undefined"?globalThis:m||self,$(m.modelDrivenDriven={}))})(this,function(m){"use strict";var $="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",at="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Pe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",st="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",lt="{caption}\u5FC5\u586B",_e="\u8BF7\u8F93\u5165\u6807\u9898",G="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ge="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Qr="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Yr="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",eu="\u8BF7\u7ED1\u5B9A\u8868\u5355",tu="\u8BF7\u7ED1\u5B9A\u5217\u8868",nu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",ru="\u8BF7\u8F93\u5165\u663E\u793A\u503C",uu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",iu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ou="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",au="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",su="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",lu="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",cu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",fu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",du="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",pu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",hu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",yu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",vu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",_u="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",gu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",mu="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",bu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Eu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",wu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Bu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Su="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Au="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Fu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Cu="\u8BF7\u9009\u62E9\u7701",Iu="\u8BF7\u9009\u62E9\u5E02",Du="\u8BF7\u9009\u62E9\u533A",$u="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Ou="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Pu="\u8BF7\u8F93\u5165\u5217\u5BBD",Ru="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",xu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Mu="\u8BF7\u9009\u62E9\u63A7\u4EF6",Tu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Lu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",ju="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",qu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Vu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Uu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Nu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ku="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Hu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Wu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",zu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Gu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ku="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Xu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ju="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Zu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Qu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Yu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ei="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ti="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ni="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ri="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",ui="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",ii="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",oi="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",ai="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",si="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",li={isNotNumber:$,isNotString:O,isNotObject:at,isNotArray:Pe,isNotBoolean:st,runtimeRequired:lt,pleaseEnterCaption:_e,pleaseEnterCaptionTip:G,pleaseEnterRowCaption:ge,pleaseEnterPlaceholder:Qr,pleaseEnterFieldCode:Yr,pleaseEnterForm:eu,pleaseEnterList:tu,pleaseEnterProcess:nu,pleaseEnterLabel:ru,pleaseEnterValue:uu,bizKeyNotBindFiled:iu,pleaseSelectOneField:ou,pleaseEnterNumberRange:au,pleaseEnterAValueGreaterThanMin:su,pleaseEnterAValueLessThanMax:lu,numberRangeSetError:cu,stringRangeError:fu,attachmentMaxSize:du,pleaseEnterTotalScoreSetting:pu,theTotalScoreMustNotBeLessThan1:hu,scoreDefaultValueRange:yu,attachmentLimitError:vu,PleaseReselectTheOptionalQuantity:_u,TheMaximumLengthIsGreaterThanTheMinimumLength:gu,TheMinimumLengthIsGreaterThanTheMaximumLength:mu,PleaseSelectTheCorrectOptionSettings:bu,optionIdIsRepeat:Eu,optionIsRequired:wu,pleaseEnterDataCode:Bu,pleaseEnterValueFieldCode:Su,pleaseEnterSvcCode:Au,pleaseBindAtLeastOneDisplayValue:Fu,pleaseSelectProvince:Cu,pleaseSelectCity:Iu,pleaseSelectDistrict:Du,limitRowsCannotBeLessThan0:$u,TheNumberOfRowsCannotBeLessThanMinRows:Ou,pleaseEnterColumnWidth:Pu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ru,pleaseCompleteAllRulesAndConditions:xu,pleaseSelectControl:Mu,pleaseSelectAtLeastOneColumn:Tu,pleaseSelectFillBackMode:Lu,pleaseSelectDashboard:ju,rootNodeIsRequired:qu,theViewNameCannotBeEmpty:Vu,pleaseSelectOcrType:Uu,pleaseSelectAtLeastOneFieldToFillIn:Nu,pleaseChooseAtLeastOne:ku,pleaseEnterButtonContent:Hu,pleaseEnterDataCodeInDataSetting:Wu,pleaseEnterValueFieldCodeInDataSetting:zu,pleaseEnterSvcCodeInDataSetting:Gu,pleaseBindAtLeastOneDisplayValueInDataSetting:Ku,rootNodeIsRequiredInDataSetting:Xu,pleaseEnterMaxHeight:Ju,pleaseEnter:Zu,pleaseEnterWatermark:Qu,pleaseEnterFileName:Yu,pleaseUploadAtLeastOnePrintTemplate:ei,pleaseAssignBusiness:ti,pleaseAssignExternal:ni,pleaseEnterAliasCode:ri,pleaseSelectDataCode:ui,pleaseSelectSvcCode:ii,pleaseSelectJoinFieldCode:oi,pleaseSelectMainFieldCode:ai,pleaseSelectSortFieldCode:si},ci="Please enter a number",fi="Please enter a string",di="Please enter an object",pi="Please enter an array",hi="Please enter a boolean",yi="{caption} Required",vi="Please enter the title",_i="Please enter the bubble prompt",gi="Please enter the row title",mi="Please enter the prompt text",bi="Please bind data items",Ei="Please bind the form",wi="Please bind the list",Bi="Please bind the process",Si="Please enter the displayed value",Ai="Please enter the stored value",Fi="The document number is not bound to the data item",Ci="Please select at least one display field",Ii="Please enter a value greater than or equal to {min} and less than or equal to {max}",Di="Please enter a value greater than or equal to {min}",$i="Please enter a value less than or equal to {max}",Oi="The value range is set incorrectly",Pi="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Ri="The attachment size must be between 0MB and 1000MB",xi="Please fill in the total score setting",Mi="The total score cannot be less than 1",Ti="The default value must be between {min} and {max}",Li="The number of attachments uploaded must be between {min} and {max}",ji="Please re-select the optional quantity",qi="The maximum length of the control must be greater than the minimum length",Vi="The minimum length of the control must be less than the maximum length",Ui="Please select the correct option setting",Ni="Option ID cannot be repeated",ki="Please enter at least one option",Hi="Please bind the data source",Wi="Please bind the stored value",zi="Please bind the service",Gi="At least one display value must be bound",Ki="Please select a province",Xi="Please select a city",Ji="Please select a district",Zi="The minimum number of lines to fill in cannot be less than 0",Qi="The number of rows cannot be less than {min} rows",Yi="Please enter the column width",eo="Please set the logical relationship of all rule conditions",to="Please complete all rules and conditions",no="please select control",ro="Please select the dashboard",uo="View name cannot be empty",io="Please select recognition type",oo="Please select at least one field to fill in",ao="Please select at least one",so="Please enter the button title",lo="Please bind the business model in the data settings",co="Please bind storage values in data settings",fo="Please bind the service in the data settings",po="Please bind at least one display value in the data settings",ho="Please select the root node in the data settings",yo="Please enter the maximum height",vo="The input content cannot be empty",_o="Watermark cannot be empty",go="File name cannot be empty",mo="Please upload at least one printing template!\uFF01",bo="Please select a specific business department",Eo="Please select a specified external organization",wo="Please enter a sub table alias",Bo="Please select the associated table to set the business model",So="Please select the association table to set the binding service",Ao="Select associated sub table fields",Fo="Please select the associated main table field",Co="Please select the sort field",Io={isNotNumber:ci,isNotString:fi,isNotObject:di,isNotArray:pi,isNotBoolean:hi,runtimeRequired:yi,pleaseEnterCaption:vi,pleaseEnterCaptionTip:_i,pleaseEnterRowCaption:gi,pleaseEnterPlaceholder:mi,pleaseEnterFieldCode:bi,pleaseEnterForm:Ei,pleaseEnterList:wi,pleaseEnterProcess:Bi,pleaseEnterLabel:Si,pleaseEnterValue:Ai,bizKeyNotBindFiled:Fi,pleaseSelectOneField:Ci,pleaseEnterNumberRange:Ii,pleaseEnterAValueGreaterThanMin:Di,pleaseEnterAValueLessThanMax:$i,numberRangeSetError:Oi,stringRangeError:Pi,attachmentMaxSize:Ri,pleaseEnterTotalScoreSetting:xi,theTotalScoreMustNotBeLessThan1:Mi,scoreDefaultValueRange:Ti,attachmentLimitError:Li,PleaseReselectTheOptionalQuantity:ji,TheMaximumLengthIsGreaterThanTheMinimumLength:qi,TheMinimumLengthIsGreaterThanTheMaximumLength:Vi,PleaseSelectTheCorrectOptionSettings:Ui,optionIdIsRepeat:Ni,optionIsRequired:ki,pleaseEnterDataCode:Hi,pleaseEnterValueFieldCode:Wi,pleaseEnterSvcCode:zi,pleaseBindAtLeastOneDisplayValue:Gi,pleaseSelectProvince:Ki,pleaseSelectCity:Xi,pleaseSelectDistrict:Ji,limitRowsCannotBeLessThan0:Zi,TheNumberOfRowsCannotBeLessThanMinRows:Qi,pleaseEnterColumnWidth:Yi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:eo,pleaseCompleteAllRulesAndConditions:to,pleaseSelectControl:no,pleaseSelectDashboard:ro,theViewNameCannotBeEmpty:uo,pleaseSelectOcrType:io,pleaseSelectAtLeastOneFieldToFillIn:oo,pleaseChooseAtLeastOne:ao,pleaseEnterButtonContent:so,pleaseEnterDataCodeInDataSetting:lo,pleaseEnterValueFieldCodeInDataSetting:co,pleaseEnterSvcCodeInDataSetting:fo,pleaseBindAtLeastOneDisplayValueInDataSetting:po,rootNodeIsRequiredInDataSetting:ho,pleaseEnterMaxHeight:yo,pleaseEnter:vo,pleaseEnterWatermark:_o,pleaseEnterFileName:go,pleaseUploadAtLeastOnePrintTemplate:mo,pleaseAssignBusiness:bo,pleaseAssignExternal:Eo,pleaseEnterAliasCode:wo,pleaseSelectDataCode:Bo,pleaseSelectSvcCode:So,pleaseSelectJoinFieldCode:Ao,pleaseSelectMainFieldCode:Fo,pleaseSelectSortFieldCode:Co},Do="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$o="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oo="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Po="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ro="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xo="{caption}\u5FC5\u9808",Mo="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",To="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Lo="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",jo="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",qo="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Vo="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Uo="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",No="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ko="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ho="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Wo="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",zo="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Go="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ko="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Xo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Jo="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Zo="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Qo="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Yo="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ea="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ta="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",na="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ra="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ua="\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",ia="\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",oa="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",aa="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",sa="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",la="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ca="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",fa="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",da="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",pa="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ha="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ya="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",va="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",_a="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ga="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ma="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ba="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ea="please select control",wa="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ba="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Sa="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Aa="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Fa="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ca="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ia="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Da="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",$a="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Oa="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Pa="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ra="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xa="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ma="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ta="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",La="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",ja="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",qa="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Va="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ua="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",Na="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ka="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",Ha="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Wa="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",za={isNotNumber:Do,isNotString:$o,isNotObject:Oo,isNotArray:Po,isNotBoolean:Ro,runtimeRequired:xo,pleaseEnterCaption:Mo,pleaseEnterCaptionTip:To,pleaseEnterRowCaption:Lo,pleaseEnterPlaceholder:jo,pleaseEnterFieldCode:qo,pleaseEnterForm:Vo,pleaseEnterList:Uo,pleaseEnterProcess:No,pleaseEnterLabel:ko,pleaseEnterValue:Ho,bizKeyNotBindFiled:Wo,pleaseSelectOneField:zo,pleaseEnterNumberRange:Go,pleaseEnterAValueGreaterThanMin:Ko,pleaseEnterAValueLessThanMax:Xo,numberRangeSetError:Jo,stringRangeError:Zo,attachmentMaxSize:Qo,pleaseEnterTotalScoreSetting:Yo,theTotalScoreMustNotBeLessThan1:ea,scoreDefaultValueRange:ta,attachmentLimitError:na,PleaseReselectTheOptionalQuantity:ra,TheMaximumLengthIsGreaterThanTheMinimumLength:ua,TheMinimumLengthIsGreaterThanTheMaximumLength:ia,PleaseSelectTheCorrectOptionSettings:oa,optionIdIsRepeat:aa,optionIsRequired:sa,pleaseEnterDataCode:la,pleaseEnterValueFieldCode:ca,pleaseEnterSvcCode:fa,pleaseBindAtLeastOneDisplayValue:da,pleaseSelectProvince:pa,pleaseSelectCity:ha,pleaseSelectDistrict:ya,limitRowsCannotBeLessThan0:va,TheNumberOfRowsCannotBeLessThanMinRows:_a,pleaseEnterColumnWidth:ga,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ma,pleaseCompleteAllRulesAndConditions:ba,pleaseSelectControl:Ea,pleaseSelectDashboard:wa,theViewNameCannotBeEmpty:Ba,pleaseSelectOcrType:Sa,pleaseSelectAtLeastOneFieldToFillIn:Aa,pleaseChooseAtLeastOne:Fa,pleaseEnterButtonContent:Ca,pleaseEnterDataCodeInDataSetting:Ia,pleaseEnterValueFieldCodeInDataSetting:Da,pleaseEnterSvcCodeInDataSetting:$a,pleaseBindAtLeastOneDisplayValueInDataSetting:Oa,rootNodeIsRequiredInDataSetting:Pa,pleaseEnterMaxHeight:Ra,pleaseEnter:xa,pleaseEnterWatermark:Ma,pleaseEnterFileName:Ta,pleaseUploadAtLeastOnePrintTemplate:La,pleaseAssignBusiness:ja,pleaseAssignExternal:qa,pleaseEnterAliasCode:Va,pleaseSelectDataCode:Ua,pleaseSelectSvcCode:Na,pleaseSelectJoinFieldCode:ka,pleaseSelectMainFieldCode:Ha,pleaseSelectSortFieldCode:Wa},Ga={zhCN:li,enUS:Io,jaJP:za},En;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(En||(En={}));var wn;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(wn||(wn={}));var Ka="zh-CN",Xa=function(){};function x(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var P;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(P||(P={}));var h;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.GRID_LAYOUT_CONTAINER="grid-layout-container",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e.GRID_LAYOUT_WRAP="grid-layout-wrap"})(h||(h={}));var N;(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"})(N||(N={}));var R,Ja=(R={},x(R,"array","array-column"),x(R,"auto_number","auto-number-column"),x(R,"decimal","decimal-column"),x(R,"department","department-column"),x(R,"file","file-column"),x(R,"image","image-column"),x(R,"location","location-column"),x(R,"people","employee-column"),x(R,"text","text-column"),x(R,"timescope","timescope-column"),x(R,"timestamp","timestamp-column"),x(R,"varchar","varchar-column"),x(R,"relation","varchar-column"),R),Bn;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(Bn||(Bn={}));var Sn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Za=Sn+"0123456789";function ct(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?Sn:Za,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function ft(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Qa(e){if(Array.isArray(e))return ft(e)}function Ya(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function An(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Re(e,t,n){return In()?Re=Reflect.construct:Re=function(u,i,o){var s=[null];s.push.apply(s,i);var l=Function.bind.apply(u,s),a=new l;return o&&be(a,o.prototype),a},Re.apply(null,arguments)}function me(e){return me=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},me(e)}function Fn(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&&be(e,t)}function es(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function ts(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ns(){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 rs(e,t){return t&&(us(t)==="object"||typeof t=="function")?t:Ya(e)}function be(e,t){return be=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},be(e,t)}function Cn(e){return Qa(e)||ts(e)||is(e)||ns()}function us(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function is(e,t){if(!!e){if(typeof e=="string")return ft(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ft(e,t)}}function dt(e){var t=typeof Map=="function"?new Map:void 0;return dt=function(r){if(r===null||!es(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Re(r,arguments,me(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),be(u,r)},dt(e)}function In(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Dn(e){var t=In();return function(){var r=me(e),u;if(t){var i=me(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return rs(this,u)}}var pt=console;function xe(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=pt).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(Cn(u)))}function $n(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=pt).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(Cn(u)))}function os(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var ht=function(e){Fn(n,e);var t=Dn(n);function n(r){An(this,n);var u;return u=t.call(this,r),u.name="\u{1F4A5} Driven Error",u.message=r?os(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return n}(dt(Error)),as=function(e){Fn(n,e);var t=Dn(n);function n(r){An(this,n);var u;return u=t.call(this,r),u.name="\u{1F6A8} Driven Reference Error",u}return n}(ht);function Ee(e){throw new ht(e)}function On(e){throw new as(e)}function ss(e){pt.error(new ht(e))}var ls=Object.prototype.toString;function Pn(e,t){return ls.call(e)==="[object "+t+"]"}function cs(e){return Pn(e,"String")}function fs(e){return Pn(e,"Promise")}var ds=function(){function e(t){var n,r;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((r=(n=t.messages)!==null&&n!==void 0?n:this.getPreImport(t.locale))!==null&&r!==void 0?r:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var n=this;this.locale=t,this._messageCache.clear();var r=this.getMessageData();fs(r)?r.then(function(u){n._messageCache.clear(),n.messages[n.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var u=this.getMessage(t);return u?this.formatMessage(u,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(u,i,o,s){if(u!==void 0){var l=u[i];if(!(o===s.length-1&&!cs(l)))return l}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,u){var i=n[u];return i!==void 0?String(i):r}):t},e.prototype.getPreImport=function(t){var n;if(window.okI18nPreImport){var r=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(r)?window.okI18nPreImport:(n={},n[r]=window.okI18nPreImport,n)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function ps(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Rn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function hs(e,t,n){return t&&Rn(e.prototype,t),n&&Rn(e,n),e}function ys(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var q=function(){function e(){ps(this,e)}return hs(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Ka;return new ds({locale:n,messages:Ga})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();ys(q,"$i18n",q.resetI18n());function xn(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,o){return"."+o}).split("."),u=!1;return r.reduce(function(i,o,s,l){var a=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,o)){xe("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),i,i);return}return s===l.length-1&&!Object.is(a[o],n)&&(a[o]=n,u=!0),a[o]}},e),u}var vs=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},_s={exports:{}};(function(e){(function(t){var n=function(c,y,w){if(!a(y)||p(y)||v(y)||g(y)||l(y))return y;var B,F=0,W=0;if(f(y))for(B=[],W=y.length;F<W;F++)B.push(n(c,y[F],w));else{B={};for(var A in y)Object.prototype.hasOwnProperty.call(y,A)&&(B[c(A,w)]=n(c,y[A],w))}return B},r=function(c,y){y=y||{};var w=y.separator||"_",B=y.split||/(?=[A-Z])/;return c.split(B).join(w)},u=function(c){return E(c)?c:(c=c.replace(/[\-_\s]+(.)?/g,function(y,w){return w?w.toUpperCase():""}),c.substr(0,1).toLowerCase()+c.substr(1))},i=function(c){var y=u(c);return y.substr(0,1).toUpperCase()+y.substr(1)},o=function(c,y){return r(c,y).toLowerCase()},s=Object.prototype.toString,l=function(c){return typeof c=="function"},a=function(c){return c===Object(c)},f=function(c){return s.call(c)=="[object Array]"},p=function(c){return s.call(c)=="[object Date]"},v=function(c){return s.call(c)=="[object RegExp]"},g=function(c){return s.call(c)=="[object Boolean]"},E=function(c){return c=c-0,c===c},d=function(c,y){var w=y&&"process"in y?y.process:y;return typeof w!="function"?c:function(B,F){return w(B,c,F)}},_={camelize:u,decamelize:o,pascalize:i,depascalize:o,camelizeKeys:function(c,y){return n(d(u,y),c)},decamelizeKeys:function(c,y){return n(d(o,y),c,y)},pascalizeKeys:function(c,y){return n(d(i,y),c)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=_:t.humps=_})(vs)})(_s);var Mn={};Object.defineProperty(Mn,"__esModule",{value:!0});function yt(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:yt(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:yt(r)}return t}}var gs=Mn.default=yt;function ne(e){if(e!==void 0)return typeof e=="object"?gs(e):e}function vt(e){return Object.prototype.toString.call(e)==="[object Object]"}function ms(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function se(e){return Array.isArray(e)}function _t(e){return typeof e=="string"}function bs(e){return Object.values(h).includes(e)}function gt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Es(e){if(Array.isArray(e))return gt(e)}function Tn(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function ws(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){Tn(i,r,u,o,s,"next",l)}function s(l){Tn(i,r,u,o,s,"throw",l)}o(void 0)})}}function Bs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ln(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ss(e,t,n){return t&&Ln(e.prototype,t),n&&Ln(e,n),e}function jn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function As(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Fs(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function mt(e){return Es(e)||As(e)||Cs(e)||Fs()}function Cs(e,t){if(!!e){if(typeof e=="string")return gt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return gt(e,t)}}function Is(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var qn=function(){function e(){Bs(this,e),jn(this,"_events",new Map),jn(this,"debug",!1)}return Ss(e,[{key:"emit",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),i=1;i<r;i++)u[i-1]=arguments[i];var o=this;return ws(function(){var s,l,a,f,p,v,g,E,d,_,c,y;return Is(this,function(w){switch(w.label){case 0:if(s=o._events.get(n),l=[],!s)return[3,10];a=s.slice(),f=!0,p=!1,v=void 0,w.label=1;case 1:w.trys.push([1,8,9,10]),g=a[Symbol.iterator](),w.label=2;case 2:if(f=(E=g.next()).done)return[3,7];if(d=E.value,!s.includes(d))return[3,6];w.label=3;case 3:return w.trys.push([3,5,,6]),o.debug&&$n.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(d.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+d.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"\u3002")].concat(mt(u))),[4,d.apply(null,mt(u))];case 4:return _=w.sent(),o.debug&&$n.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(d.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+d.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(mt(u),[_])),l.push(_),_===!1?[3,7]:[3,6];case 5:return c=w.sent(),ss(String(c)+":"+String(c.stack)),[3,6];case 6:return f=!0,[3,2];case 7:return[3,10];case 8:return y=w.sent(),p=!0,v=y,[3,10];case 9:try{!f&&g.return!=null&&g.return()}finally{if(p)throw v}return[7];case 10:return[2,l]}})})()}},{key:"on",value:function(n,r){if(this._events.has(n)){var u;(u=this._events.get(n))===null||u===void 0||u.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var u=this._events.get(n),i=u==null?void 0:u.indexOf(r);u==null||u.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function Ds(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Vn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function $s(e,t,n){return t&&Vn(e.prototype,t),n&&Vn(e,n),e}function Os(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ps=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],we=function(){function e(){Ds(this,e)}return $s(e,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(u){return r.includes(u.key)})}}]),e}();Os(we,"events",Ps);function Rs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Un(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function xs(e,t,n){return t&&Un(e.prototype,t),n&&Un(e,n),e}function re(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Nn=[],Me=function(){function e(t){Rs(this,e),re(this,"registeredControlTypes",new Set),re(this,"controlConfigMap",new Map),re(this,"_controls",[]),re(this,"_type",void 0),this._type=t,this._initControls(t)}return xs(e,[{key:"registerControlConfig",value:function(n,r){return this.controlConfigMap.set(n,r),this}},{key:"getControlConfig",value:function(n){return this.controlConfigMap.get(n)}},{key:"getControls",value:function(){return this._controls}},{key:"register",value:function(n){n.__is_control__||Ee("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(u){return u.controlType===n.controlType});return r>-1&&(xe("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===P.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===P.FORM}},{key:"isListControl",value:function(n){return n.controlType===P.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===P.COLUMN}},{key:"createControl",value:function(n,r){var u=this;if(Array.isArray(n))return n.map(function(f){return u.createControl(f,r)});if(n.children&&(n.children=n.children.map(function(f){return u.createControl(f,r)})),this.isListControl(n)){var i=n.props;i.headers&&(i.headers=i.headers.map(function(f){return u.createControl(f,r)})),i.footers&&(i.footers=i.footers.map(function(f){var p;return f&&(p=u.createControl(f,r)),p}))}var o=this.getControlFormType(n.type);if(o){var s=n;if(typeof r=="function"){var l=r(s);l&&(s=l)}var a=new o(s);return a}else Ee("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"createControlInstance",value:function(n,r){var u=this.getControlFormType(n);if(u)return new u(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(u){r.register(u[n])})}}],[{key:"register",value:function(n){var r=n.Designer,u=n.Runtime;(!r||!u||!r.__is_control__||!u.__is_control__)&&Ee("".concat(n," is can't register as a Control"));var i=this.staticControls.findIndex(function(o){return o.Designer.controlType===r.controlType});return i>-1&&(xe("The ".concat(r.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(i,1)),this.staticRegisteredTypes.add(r.controlType),this.staticControls.push(n),this}}]),e}();re(Me,"staticControls",Nn),re(Me,"staticRegisteredTypes",new Set(Nn.map(function(e){return e.Designer.controlType}))),re(Me,"staticRegisteredConfigs",new Map);function bt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function U(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var kn=function e(t){bt(this,e),U(this,"dataCode",void 0),U(this,"fieldCode",void 0),U(this,"fieldType",void 0),U(this,"aliasCode",void 0);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:"",this.aliasCode=t==null?void 0:t.aliasCode},Ms=function e(t){bt(this,e),U(this,"minWidth",void 0),U(this,"maxWidth",void 0),U(this,"flex",void 0);var n;this.minWidth=(n=t==null?void 0:t.minWidth)!==null&&n!==void 0?n:150,this.maxWidth=t==null?void 0:t.maxWidth;var r;this.flex=(r=t==null?void 0:t.flex)!==null&&r!==void 0?r:1},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 Wn;(function(e){e.DEFAULT_DISPLAY="defaultDisplay",e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.VIEW_FORM_MODEL_TYPE="viewFormModelType",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions",e.IS_PASTE="isPaste"})(Wn||(Wn={}));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 Ts=function e(t){bt(this,e),U(this,"width",void 0),U(this,"height",void 0),U(this,"widthConfig",void 0),U(this,"heightConfig",void 0);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var i;this.heightConfig=(i=t==null?void 0:t.heightConfig)!==null&&i!==void 0?i:"fill"};function Ls(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function wt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Te(e,t,n){return zn()?Te=Reflect.construct:Te=function(u,i,o){var s=[null];s.push.apply(s,i);var l=Function.bind.apply(u,s),a=new l;return o&&Se(a,o.prototype),a},Te.apply(null,arguments)}function ue(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Be(e){return Be=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Be(e)}function js(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&&Se(e,t)}function qs(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Vs(e,t){return t&&(Us(t)==="object"||typeof t=="function")?t:Ls(e)}function Se(e,t){return Se=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Se(e,t)}function Us(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Bt(e){var t=typeof Map=="function"?new Map:void 0;return Bt=function(r){if(r===null||!qs(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Te(r,arguments,Be(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Se(u,r)},Bt(e)}function zn(){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 Ns(e){var t=zn();return function(){var r=Be(e),u;if(t){var i=Be(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Vs(this,u)}}var St=function e(t){wt(this,e),ue(this,"isHide",{type:"boolean"})},Gn=function(e){js(n,e);var t=Ns(n);function n(r){return wt(this,n),t.call(this)}return n}(Bt(Array)),X=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";wt(this,e),ue(this,"isHide",void 0),ue(this,"className",void 0),ue(this,"style",void 0),ue(this,"caption",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new Ts(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};ue(X,"Rules",St),ue(X,"RuntimeRules",Gn);function k(){return k=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},k.apply(this,arguments)}function ks(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function At(e){return At=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},At(e)}function Le(e,t){return Le=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Le(e,t)}function Hs(){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 je(e,t,n){return Hs()?je=Reflect.construct:je=function(u,i,o){var s=[null];s.push.apply(s,i);var l=Function.bind.apply(u,s),a=new l;return o&&Le(a,o.prototype),a},je.apply(null,arguments)}function Ws(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Ft(e){var t=typeof Map=="function"?new Map:void 0;return Ft=function(r){if(r===null||!Ws(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return je(r,arguments,At(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Le(u,r)},Ft(e)}var zs=/%[sdj%]/g,Kn=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Kn=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function Ct(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function M(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,u=t[0],i=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var o=String(u).replace(zs,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(l){return"[Circular]"}break;default:return s}});return o}return u}function Gs(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||Gs(t)&&typeof e=="string"&&!e)}function Ks(e,t,n){var r=[],u=0,i=e.length;function o(s){r.push.apply(r,s),u++,u===i&&n(r)}e.forEach(function(s){t(s,o)})}function Xn(e,t,n){var r=0,u=e.length;function i(o){if(o&&o.length){n(o);return}var s=r;r=r+1,s<u?t(e[s],i):n([])}i([])}function Xs(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var Jn=function(e){ks(t,e);function t(n,r){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=n,u.fields=r,u}return t}(Ft(Error));function Js(e,t,n,r){if(t.first){var u=new Promise(function(p,v){var g=function(_){return r(_),_.length?v(new Jn(_,Ct(_))):p()},E=Xs(e);Xn(E,n,g)});return u.catch(function(p){return p}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var o=Object.keys(e),s=o.length,l=0,a=[],f=new Promise(function(p,v){var g=function(d){if(a.push.apply(a,d),l++,l===s)return r(a),a.length?v(new Jn(a,Ct(a))):p()};o.length||(r(a),p()),o.forEach(function(E){var d=e[E];i.indexOf(E)!==-1?Xn(d,n,g):Ks(d,n,g)})});return f.catch(function(p){return p}),f}function Zn(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 Qn(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=k(k({},e[n]),r):e[n]=r}}return e}function Yn(e,t,n,r,u,i){e.required&&(!n.hasOwnProperty(e.field)||I(t,i||e.type))&&r.push(M(u.messages.required,e.fullField))}function Zs(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(M(u.messages.whitespace,e.fullField))}var It={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},Ae={integer:function(t){return Ae.number(t)&&parseInt(t,10)===t},float:function(t){return Ae.number(t)&&!Ae.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(n){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!Ae.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(It.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(It.url)},hex:function(t){return typeof t=="string"&&!!t.match(It.hex)}};function Qs(e,t,n,r,u){if(e.required&&t===void 0){Yn(e,t,n,r,u);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;i.indexOf(o)>-1?Ae[o](t)||r.push(M(u.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(M(u.messages.types[o],e.fullField,e.type))}function Ys(e,t,n,r,u){var i=typeof e.len=="number",o=typeof e.min=="number",s=typeof e.max=="number",l=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,p=typeof t=="number",v=typeof t=="string",g=Array.isArray(t);if(p?f="number":v?f="string":g&&(f="array"),!f)return!1;g&&(a=t.length),v&&(a=t.replace(l,"_").length),i?a!==e.len&&r.push(M(u.messages[f].len,e.fullField,e.len)):o&&!s&&a<e.min?r.push(M(u.messages[f].min,e.fullField,e.min)):s&&!o&&a>e.max?r.push(M(u.messages[f].max,e.fullField,e.max)):o&&s&&(a<e.min||a>e.max)&&r.push(M(u.messages[f].range,e.fullField,e.min,e.max))}var le="enum";function el(e,t,n,r,u){e[le]=Array.isArray(e[le])?e[le]:[],e[le].indexOf(t)===-1&&r.push(M(u.messages[le],e.fullField,e[le].join(", ")))}function tl(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(M(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var i=new RegExp(e.pattern);i.test(t)||r.push(M(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var b={required:Yn,whitespace:Zs,type:Qs,range:Ys,enum:el,pattern:tl};function nl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t,"string")&&!e.required)return n();b.required(e,t,r,i,u,"string"),I(t,"string")||(b.type(e,t,r,i,u),b.range(e,t,r,i,u),b.pattern(e,t,r,i,u),e.whitespace===!0&&b.whitespace(e,t,r,i,u))}n(i)}function rl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&b.type(e,t,r,i,u)}n(i)}function ul(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&(b.type(e,t,r,i,u),b.range(e,t,r,i,u))}n(i)}function il(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&b.type(e,t,r,i,u)}n(i)}function ol(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),I(t)||b.type(e,t,r,i,u)}n(i)}function al(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&(b.type(e,t,r,i,u),b.range(e,t,r,i,u))}n(i)}function sl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&(b.type(e,t,r,i,u),b.range(e,t,r,i,u))}n(i)}function ll(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return n();b.required(e,t,r,i,u,"array"),t!=null&&(b.type(e,t,r,i,u),b.range(e,t,r,i,u))}n(i)}function cl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&b.type(e,t,r,i,u)}n(i)}var fl="enum";function dl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u),t!==void 0&&b[fl](e,t,r,i,u)}n(i)}function pl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t,"string")&&!e.required)return n();b.required(e,t,r,i,u),I(t,"string")||b.pattern(e,t,r,i,u)}n(i)}function hl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t,"date")&&!e.required)return n();if(b.required(e,t,r,i,u),!I(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),b.type(e,s,r,i,u),s&&b.range(e,s.getTime(),r,i,u)}}n(i)}function yl(e,t,n,r,u){var i=[],o=Array.isArray(t)?"array":typeof t;b.required(e,t,r,i,u,o),n(i)}function Dt(e,t,n,r,u){var i=e.type,o=[],s=e.required||!e.required&&r.hasOwnProperty(e.field);if(s){if(I(t,i)&&!e.required)return n();b.required(e,t,r,o,u,i),I(t,i)||b.type(e,t,r,o,u)}n(o)}function vl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();b.required(e,t,r,i,u)}n(i)}var Fe={string:nl,method:rl,number:ul,boolean:il,regexp:ol,integer:al,float:sl,array:ll,object:cl,enum:dl,pattern:pl,date:hl,url:Dt,hex:Dt,email:Dt,required:yl,any:vl};function $t(){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 Ot=$t();function J(e){this.rules=null,this._messages=Ot,this.define(e)}J.prototype={messages:function(t){return t&&(this._messages=Qn($t(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var u=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var i=t,o=n,s=r;if(typeof o=="function"&&(s=o,o={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function l(d){var _,c=[],y={};function w(B){if(Array.isArray(B)){var F;c=(F=c).concat.apply(F,B)}else c.push(B)}for(_=0;_<d.length;_++)w(d[_]);c.length?y=Ct(c):(c=null,y=null),s(c,y)}if(o.messages){var a=this.messages();a===Ot&&(a=$t()),Qn(a,o.messages),o.messages=a}else o.messages=this.messages();var f,p,v={},g=o.keys||Object.keys(this.rules);g.forEach(function(d){f=u.rules[d],p=i[d],f.forEach(function(_){var c=_;typeof c.transform=="function"&&(i===t&&(i=k({},i)),p=i[d]=c.transform(p)),typeof c=="function"?c={validator:c}:c=k({},c),c.validator=u.getValidationMethod(c),c.field=d,c.fullField=c.fullField||d,c.type=u.getType(c),c.validator&&(v[d]=v[d]||[],v[d].push({rule:c,value:p,source:i,field:d}))})});var E={};return Js(v,o,function(d,_){var c=d.rule,y=(c.type==="object"||c.type==="array")&&(typeof c.fields=="object"||typeof c.defaultField=="object");y=y&&(c.required||!c.required&&d.value),c.field=d.field;function w(W,A){return k(k({},A),{},{fullField:c.fullField+"."+W})}function B(W){W===void 0&&(W=[]);var A=W;if(Array.isArray(A)||(A=[A]),!o.suppressWarning&&A.length&&J.warning("async-validator:",A),A.length&&c.message!==void 0&&(A=[].concat(c.message)),A=A.map(Zn(c)),o.first&&A.length)return E[c.field]=1,_(A);if(!y)_(A);else{if(c.required&&!d.value)return c.message!==void 0?A=[].concat(c.message).map(Zn(c)):o.error&&(A=[o.error(c,M(o.messages.required,c.field))]),_(A);var z={};if(c.defaultField)for(var Kr in d.value)d.value.hasOwnProperty(Kr)&&(z[Kr]=c.defaultField);z=k(k({},z),d.rule.fields);for(var he in z)if(z.hasOwnProperty(he)){var Sd=Array.isArray(z[he])?z[he]:[z[he]];z[he]=Sd.map(w.bind(null,he))}var Xr=new J(z);Xr.messages(o.messages),d.rule.options&&(d.rule.options.messages=o.messages,d.rule.options.error=o.error),Xr.validate(d.value,d.rule.options||o,function(mn){var ye=[];A&&A.length&&ye.push.apply(ye,A),mn&&mn.length&&ye.push.apply(ye,mn),_(ye.length?ye:null)})}}var F;c.asyncValidator?F=c.asyncValidator(c,d.value,B,d.source,o):c.validator&&(F=c.validator(c,d.value,B,d.source,o),F===!0?B():F===!1?B(c.message||c.field+" fails"):F instanceof Array?B(F):F instanceof Error&&B(F.message)),F&&F.then&&F.then(function(){return B()},function(W){return B(W)})},function(d){l(d)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Fe.hasOwnProperty(t.type))throw new Error(M("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var n=Object.keys(t),r=n.indexOf("message");return r!==-1&&n.splice(r,1),n.length===1&&n[0]==="required"?Fe.required:Fe[this.getType(t)]||!1}},J.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Fe[t]=n},J.warning=Kn,J.messages=Ot,J.validators=Fe;var _l={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 gl(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new J(e);return n.messages(Object.assign(_l,t)),n}var er=new qn;function Pt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function ml(e){if(Array.isArray(e))return e}function bl(e){if(Array.isArray(e))return Pt(e)}function tr(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function nr(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){tr(i,r,u,o,s,"next",l)}function s(l){tr(i,r,u,o,s,"throw",l)}o(void 0)})}}function El(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function rr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function wl(e,t,n){return t&&rr(e.prototype,t),n&&rr(e,n),e}function S(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ur(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function ir(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Bl(){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 Sl(){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 or(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){S(e,u,n[u])})}return e}function Al(e){return ml(e)||ir(e)||ar(e)||Bl()}function Rt(e){return bl(e)||ir(e)||ar(e)||Sl()}function ar(e,t){if(!!e){if(typeof e=="string")return Pt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Pt(e,t)}}function sr(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var T=function(){function t(n){var r=this;El(this,t),S(this,"id",void 0),S(this,"name",void 0),S(this,"icon",void 0),S(this,"type",void 0),S(this,"controlType",void 0),S(this,"props",void 0),S(this,"setting",[]),S(this,"fieldType",void 0),S(this,"eventKeys",[]),S(this,"customEvents",[]),S(this,"parent",null),S(this,"updateSetting",cr),S(this,"removeSetting",lr),this._callControlHooks("preInstance",n);var u=ur(this,t)?this.constructor:void 0,i=u.controlName,o=u.controlIcon,s=u.controlType,l=u.controlFieldType,a=u.controlEventKeys,f=u.controlCustomEvents,p=u.name,v=u.setting;i&&o&&s||On("The ".concat(p," controlName,controlIcon,controlType is not define"));var g;this.id=(g=n==null?void 0:n.id)!==null&&g!==void 0?g:ct(10),this.name=i,this.icon=o;var E;this.type=(E=n==null?void 0:n.type)!==null&&E!==void 0?E:s,this.props=new X(n==null?void 0:n.props,(ur(this,t)?this.constructor:void 0).controlName);var d;this.controlType=(d=n==null?void 0:n.controlType)!==null&&d!==void 0?d:"base",this.setting=ne(v);var _;this.fieldType=(_=n==null?void 0:n.fieldType)!==null&&_!==void 0?_:l,this.eventKeys=ne(a),this.customEvents=ne(f),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return wl(t,[{key:"rules",get:function(){var r=this.props.constructor.Rules;return r?new r(this.props):{}}},{key:"_callControlHooks",value:function(){for(var r=arguments.length,u=new Array(r),i=0;i<r;i++)u[i]=arguments[i];var o,s=Al(u),l=s[0],a=s.slice(1);return(o=er).emit.apply(o,[l,this].concat(Rt(a)))}},{key:"preUpdate",value:function(r,u){this._callControlHooks("preUpdateProps",r,u)}},{key:"postUpdate",value:function(r,u){this._callControlHooks("postUpdateProps",r,u)}},{key:"updateProps",value:function(r,u){this.preUpdate(r,u),xn(this.props,r,u),this.postUpdate(r,u)}},{key:"preValidate",value:function(){var r=this;return nr(function(){var u,i,o;return sr(this,function(s){switch(s.label){case 0:return u=or({},r.rules),[4,r._callControlHooks("preValidate",u)];case 1:return i=s.sent(),o=i[i.length-1],[2,o===!1?void 0:o]}})})()}},{key:"validate",value:function(r,u){var i=this;return nr(function(){var o,s,l,a;return sr(this,function(f){switch(f.label){case 0:return[4,i.preValidate()];case 1:o=f.sent(),s=o!==void 0?o:or({},i.rules),Array.isArray(u)&&u.forEach(function(p){s.hasOwnProperty(p)&&delete s[p]}),l=gl(s,r),f.label=2;case 2:return f.trys.push([2,4,,5]),[4,l.validate(i.props)];case 3:return f.sent(),[2,!0];case 4:throw a=f.sent(),a.control||(a.control=i),a;case 5:return[2]}})})()}},{key:"toDataBindModel",value:function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,u=this.fieldType,i=this.id,o=this.type,s=this.props,l=s.dataBind,a=s.datasourceBind,f=s.optionConfig,p=s.caption,v=s.required,g=s.maxLength,E=s.options,d=s.encrypted,_=s.encryptedMode;if(!(!u&&!l&&!a)){var c={parentId:r,fieldType:u,controlId:i,caption:p,type:o,props:{}};switch(l&&(c.dataBind=l),f){case"datasource":case void 0:a&&(c.datasourceBind=a);break;case"custom":c.props.options=E;break}return v!==void 0&&(c.required=v),g!==void 0&&(c.maxLength=g),d!==void 0&&(c.encrypted=d),_!==void 0&&(c.encryptedMode=_),c}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:ne(this.props),fieldType:this.fieldType,controlType:this.controlType}}}],[{key:"updateBasicControl",value:function(r,u){if(r==="setting"){if(u.add){var i;(i=this.setting).push.apply(i,Rt(u.add))}u.remove&&this.removeSettingItem(u.remove),u.update}}}]),t}();S(T,"controlName","\u63A7\u4EF6"),S(T,"controlIcon","icon"),S(T,"controlType","control"),S(T,"controlFieldType",void 0),S(T,"controlEventKeys",[]),S(T,"controlCustomEvents",[]),S(T,"setting",[]),S(T,"__is_control__",!0),S(T,"removeSettingItem",lr),S(T,"updateSettingItem",cr);function lr(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u,i=typeof r!="string",o=(u=t.setting)===null||u===void 0?void 0:u.findIndex(function(a){return a.key===(i?r.key:r)});if(o!==-1){var s,l;i?t.setting[o].showItems=(s=t.setting[o].showItems)===null||s===void 0?void 0:s.filter(function(a){return!r.hideItems.includes(a)}):t.setting.splice(o,1),i&&!(!((l=t.setting[o].showItems)===null||l===void 0)&&l.length)&&t.setting.splice(o,1)}})}function cr(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var i=n.setting.find(function(a){return a.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if(typeof t=="object"){var o,s=(o=t.type)!==null&&o!==void 0?o:"replace";if(s==="replace")i.showItems=t.showItems;else{var l;(l=i.showItems).push.apply(l,Rt(t.showItems))}}}})}function Fl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function fr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Cl(e,t,n){return t&&fr(e.prototype,t),n&&fr(e,n),e}function V(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Il(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var qe=function(){function t(n){Fl(this,t),V(this,"id",void 0),V(this,"type",void 0),V(this,"controlType",void 0),V(this,"props",void 0),V(this,"fieldType",void 0),V(this,"customEvents",[]),V(this,"pageStatus",void 0),V(this,"parent",null);var r=Il(this,t)?this.constructor:void 0,u=r.controlType,i=r.controlFieldType,o=r.name,s=r.controlCustomEvents;u||On("The ".concat(o," controlType is not define"));var l;this.id=(l=n==null?void 0:n.id)!==null&&l!==void 0?l:ct(10);var a;this.type=(a=n==null?void 0:n.type)!==null&&a!==void 0?a:u,this.props=new X(n==null?void 0:n.props),this.customEvents=s;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var p;this.fieldType=(p=n==null?void 0:n.fieldType)!==null&&p!==void 0?p:i;var v;this.pageStatus=(v=n==null?void 0:n.pageStatus)!==null&&v!==void 0?v:Et.UNKNOWN}return Cl(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var u=new r(this.props);return Array.from(u)}return[]}}]),t}();V(qe,"controlType","control"),V(qe,"controlFieldType",void 0),V(qe,"__is_control__",!0),V(qe,"controlCustomEvents",[]);function dr(e){return(e==null?void 0:e.dataCode)!==void 0&&(e==null?void 0:e.fieldCode)!==void 0}function D(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function xt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function C(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ve(e){return Ve=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ve(e)}function Mt(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&&Tt(e,t)}function Dl(e,t){return t&&($l(t)==="object"||typeof t=="function")?t:D(e)}function Tt(e,t){return Tt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Tt(e,t)}function $l(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ol(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Lt(e){var t=Ol();return function(){var r=Ve(e),u;if(t){var i=Ve(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Dl(this,u)}}var Pl=function(e){Mt(n,e);var t=Lt(n);function n(r){xt(this,n);var u;u=t.call(this,r),C(D(u),"dataBind",{}),C(D(u),"caption",{type:"string",required:!0,message:q.getMessage("pleaseEnterCaption")}),C(D(u),"isHideCaption",{type:"boolean"}),C(D(u),"labelPosition",{type:"enum",enum:["top","left"]}),C(D(u),"defaultState",{type:"enum",enum:["default","readonly"]}),C(D(u),"required",{type:"boolean"}),C(D(u),"captionTip",{type:"string",required:!1,message:q.getMessage("pleaseEnterCaptionTip")});var i={fieldCode:{type:"string",required:!0,message:q.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:q.getMessage("pleaseEnterFieldCode")}};if(dr(r.dataBind))u.dataBind={type:"object",required:!0,fields:ne(i),message:q.getMessage("pleaseEnterFieldCode")};else{var o={type:"object",required:!0,fields:{},message:q.getMessage("pleaseEnterFieldCode")};Object.keys(r.dataBind).forEach(function(s){o.fields[s]={type:"object",required:!0,fields:ne(i),message:q.getMessage("pleaseEnterFieldCode")}}),u.dataBind=o}return r.isShowCaptionTip&&(u.captionTip.required=!0),u}return n}(St),Rl=function(e){Mt(n,e);var t=Lt(n);function n(r){xt(this,n);var u;return u=t.call(this,r),u.push({type:"string",required:r.isHide?!1:r.required,message:r.requiredMessage!==""?r.requiredMessage:q.getMessage("runtimeRequired",{caption:r.caption})}),u}return n}(Gn),jt=function(e){Mt(n,e);var t=Lt(n);function n(r){xt(this,n);var u;u=t.call(this,r),C(D(u),"caption",void 0),C(D(u),"isHideCaption",void 0),C(D(u),"isShowCaptionTip",void 0),C(D(u),"captionTip",void 0),C(D(u),"labelPosition",void 0),C(D(u),"dataBind",void 0),C(D(u),"defaultValue",void 0),C(D(u),"placeholder",void 0),C(D(u),"defaultState",void 0),C(D(u),"required",void 0),C(D(u),"requiredMessage",void 0);var i;u.caption=(i=r==null?void 0:r.caption)!==null&&i!==void 0?i:"";var o;u.isHideCaption=(o=r==null?void 0:r.isHideCaption)!==null&&o!==void 0?o:!1;var s;u.isShowCaptionTip=(s=r==null?void 0:r.isShowCaptionTip)!==null&&s!==void 0?s:!1;var l;u.captionTip=(l=r==null?void 0:r.captionTip)!==null&&l!==void 0?l:"";var a;u.defaultState=(a=r==null?void 0:r.defaultState)!==null&&a!==void 0?a:"default";var f;u.labelPosition=(f=r==null?void 0:r.labelPosition)!==null&&f!==void 0?f:"top";var p;u.placeholder=(p=r==null?void 0:r.placeholder)!==null&&p!==void 0?p:"";var v;u.required=(v=r==null?void 0:r.required)!==null&&v!==void 0?v:!1;var g;u.requiredMessage=(g=r==null?void 0:r.requiredMessage)!==null&&g!==void 0?g:"",u.dataBind=new kn(r==null?void 0:r.dataBind);var E;return u.defaultValue=(E=r==null?void 0:r.defaultValue)!==null&&E!==void 0?E:"",u}return n}(X);C(jt,"Rules",Pl),C(jt,"RuntimeRules",Rl);function qt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function xl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ue(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ne(e){return Ne=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ne(e)}function Ml(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 Tl(e,t){return t&&(Ll(t)==="object"||typeof t=="function")?t:qt(e)}function Vt(e,t){return Vt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Vt(e,t)}function Ll(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function jl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function ql(e){var t=jl();return function(){var r=Ne(e),u;if(t){var i=Ne(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Tl(this,u)}}var pr=function(e){Ml(n,e);var t=ql(n);function n(r){xl(this,n);var u;return u=t.call(this,r),Ue(qt(u),"controlType","form"),Ue(qt(u),"props",void 0),u.props=new jt(r==null?void 0:r.props),u}return n}(T);Ue(pr,"controlEventKeys",["on_change","on_focus","on_blur"]),Ue(pr,"controlCustomAttributes",void 0);function Vl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ul(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ke(e){return ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ke(e)}function Nl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ut(e,t)}function kl(e,t){return t&&(Hl(t)==="object"||typeof t=="function")?t:Vl(e)}function Ut(e,t){return Ut=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ut(e,t)}function Hl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Wl(){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 zl(e){var t=Wl();return function(){var r=ke(e),u;if(t){var i=ke(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return kl(this,u)}}var Gl=function(e){Nl(n,e);var t=zl(n);function n(r){return Ul(this,n),t.call(this,r)}return n}(X);function Nt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Kl(e){if(Array.isArray(e))return Nt(e)}function Xl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Jl(){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 hr(e){return Kl(e)||Xl(e)||Zl(e)||Jl()}function Zl(e,t){if(!!e){if(typeof e=="string")return Nt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Nt(e,t)}}function Ql(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function yr(e,t){e.parent=t,Ql(e,"parent")}function Yl(e,t){e.forEach(function(n){yr(n,t)})}var vr=Symbol("targetKey");function _r(e){var t;return(t=e[vr])!==null&&t!==void 0?t:e}function gr(e,t){return Yl(e,t),new Proxy(e,{get:function(r,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 l;return u===vr?r:(l=Reflect).get.apply(l,[r,u].concat(hr(o)))},set:function(r,u,i){for(var o=arguments.length,s=new Array(o>3?o-3:0),l=3;l<o;l++)s[l-3]=arguments[l];var a;if(se(e)&&u==="length"&&i===e.length)return!0;var f=(a=Reflect).set.apply(a,[r,u,i].concat(hr(s)));return vt(i)&&yr(i,t),f}})}function kt(e,t,n,r){var u=r!=null?r:e,i=gr(_r(n!=null?n:[]),u);Object.defineProperty(e,t,{get:function(){return i},set:function(s){i=gr(_r(s),u)},enumerable:!0})}function Ht(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function ec(e){if(Array.isArray(e))return Ht(e)}function ie(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function mr(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function tc(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){mr(i,r,u,o,s,"next",l)}function s(l){mr(i,r,u,o,s,"throw",l)}o(void 0)})}}function nc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function br(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function rc(e,t,n){return t&&br(e.prototype,t),n&&br(e,n),e}function Z(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ce(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?ce=Reflect.get:ce=function(u,i,o){var s=dc(u,i);if(!!s){var l=Object.getOwnPropertyDescriptor(s,i);return l.get?l.get.call(o||u):l.value}},ce(e,t,n||e)}function Q(e){return Q=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Q(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&&Wt(e,t)}function ic(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function oc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ac(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function sc(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){Z(e,u,n[u])})}return e}function lc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function cc(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):lc(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function fc(e,t){return t&&(pc(t)==="object"||typeof t=="function")?t:ie(e)}function Wt(e,t){return Wt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Wt(e,t)}function dc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Q(e),e!==null););return e}function Er(e){return ec(e)||oc(e)||hc(e)||ac()}function pc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function hc(e,t){if(!!e){if(typeof e=="string")return Ht(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ht(e,t)}}function yc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function vc(e){var t=yc();return function(){var r=Q(e),u;if(t){var i=Q(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return fc(this,u)}}function _c(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var gc=1e4,wr=function(t){uc(r,t);var n=vc(r);function r(u){nc(this,r);var i;i=n.call(this,u),Z(ie(i),"controlType","layout"),Z(ie(i),"children",void 0),Z(ie(i),"excludes",void 0),Z(ie(i),"childrenMaxLength",void 0),Z(ie(i),"props",void 0);var o=ic(this,r)?this.constructor:void 0,s=o.excludes,l=o.childrenMaxLength;return i.props=new Gl(u==null?void 0:u.props),kt(ie(i),"children",u==null?void 0:u.children),i.excludes=ne(s),i.childrenMaxLength=l,i}return rc(r,[{key:"judgeExcludesChildren",value:function(i){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(i)}},{key:"judgeJoinChildren",value:function(i){var o=this.judgeExcludesChildren(i);return o&&this.childrenMaxLength>this.children.length}},{key:"validate",value:function(i,o){var s=this,l=this,a=function(){return ce(Q(r.prototype),"validate",s)};return tc(function(){return _c(this,function(f){switch(f.label){case 0:return[4,a().call(l,i,o)];case 1:return f.sent(),[4,Promise.all(l.children.map(function(p){return p.validate(i,o)}))];case 2:return f.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var i=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,o=ce(Q(r.prototype),"toDataBindModel",this).call(this),s=o?[o]:[];return this.children.reduce(function(l,a){var f=a.toDataBindModel(i);if(Array.isArray(f)){var p=f.filter(function(v){return!!v});return Er(l).concat(Er(p))}return f&&l.push(f),l},s)}},{key:"toSchema",value:function(){var i=ce(Q(r.prototype),"toSchema",this).call(this),o=this.children.map(function(s){var l=s.toSchema();return l});return cc(sc({},i),{children:o})}}]),r}(T);Z(wr,"excludes",!1),Z(wr,"childrenMaxLength",gc);function Y(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function mc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ce(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function He(e){return He=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},He(e)}function bc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&zt(e,t)}function Ec(e,t){return t&&(wc(t)==="object"||typeof t=="function")?t:Y(e)}function zt(e,t){return zt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},zt(e,t)}function wc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Bc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Sc(e){var t=Bc();return function(){var r=He(e),u;if(t){var i=He(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Ec(this,u)}}var Ac=function(e){bc(n,e);var t=Sc(n);function n(r,u){mc(this,n);var i;i=t.call(this,u),Ce(Y(i),"headers",void 0),Ce(Y(i),"footers",void 0),Ce(Y(i),"pageIndex",void 0),Ce(Y(i),"pageSize",void 0),Ce(Y(i),"pageSizeOptions",void 0),kt(Y(i),"headers",u==null?void 0:u.headers,r),kt(Y(i),"footers",u==null?void 0:u.footers,r);var o;i.pageIndex=(o=u==null?void 0:u.pageIndex)!==null&&o!==void 0?o:1;var s;i.pageSize=(s=u==null?void 0:u.pageSize)!==null&&s!==void 0?s:20;var l;return i.pageSizeOptions=(l=u==null?void 0:u.pageSizeOptions)!==null&&l!==void 0?l:[20],i}return n}(X);function Gt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Fc(e){if(Array.isArray(e))return Gt(e)}function We(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Br(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function Cc(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){Br(i,r,u,o,s,"next",l)}function s(l){Br(i,r,u,o,s,"throw",l)}o(void 0)})}}function Ic(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Sr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Dc(e,t,n){return t&&Sr(e.prototype,t),n&&Sr(e,n),e}function ze(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function fe(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?fe=Reflect.get:fe=function(u,i,o){var s=Mc(u,i);if(!!s){var l=Object.getOwnPropertyDescriptor(s,i);return l.get?l.get.call(o||u):l.value}},fe(e,t,n||e)}function ee(e){return ee=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ee(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&&Kt(e,t)}function Oc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Pc(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ar(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){ze(e,u,n[u])})}return e}function Rc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function Fr(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Rc(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function xc(e,t){return t&&(Tc(t)==="object"||typeof t=="function")?t:We(e)}function Kt(e,t){return Kt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Kt(e,t)}function Mc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=ee(e),e!==null););return e}function Cr(e){return Fc(e)||Oc(e)||Lc(e)||Pc()}function Tc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Lc(e,t){if(!!e){if(typeof e=="string")return Gt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Gt(e,t)}}function jc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function qc(e){var t=jc();return function(){var r=ee(e),u;if(t){var i=ee(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return xc(this,u)}}function Vc(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var Uc=function(e){$c(n,e);var t=qc(n);function n(r){Ic(this,n);var u;return u=t.call(this,r),ze(We(u),"controlType","list"),ze(We(u),"props",void 0),u.props=new Ac(We(u),r==null?void 0:r.props),u}return Dc(n,[{key:"validate",value:function(u,i){var o=this,s=this,l=function(){return fe(ee(n.prototype),"validate",o)};return Cc(function(){return Vc(this,function(a){switch(a.label){case 0:return[4,l().call(s,u)];case 1:return a.sent(),[4,Promise.all(s.props.headers.map(function(f){return f.validate(u,i)}))];case 2:return a.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var u=fe(ee(n.prototype),"toDataBindModel",this).call(this),i=u?[u]:[],o=this.id;return this.props.headers.reduce(function(s,l){var a=l.toDataBindModel(o);if(Array.isArray(a)){var f=a.filter(function(p){return!!p});return Cr(s).concat(Cr(f))}return a&&s.push(a),s},i)}},{key:"toSchema",value:function(){var u,i,o=fe(ee(n.prototype),"toSchema",this).call(this),s=this.props.headers.map(function(a){return a.toSchema()}),l=(i=this.props)===null||i===void 0||(u=i.footers)===null||u===void 0?void 0:u.map(function(a){if(a)return a.toSchema()});return Fr(Ar({},o),{props:Fr(Ar({},this.props),{headers:s,footers:l})})}}]),n}(T);ze(Uc,"controlFieldType",N.LIST);function L(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ir(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function j(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ge(e){return Ge=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ge(e)}function Dr(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Xt(e,t)}function Nc(e,t){return t&&(kc(t)==="object"||typeof t=="function")?t:L(e)}function Xt(e,t){return Xt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Xt(e,t)}function kc(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 $r(e){var t=Hc();return function(){var r=Ge(e),u;if(t){var i=Ge(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Nc(this,u)}}var Wc=function(e){Dr(n,e);var t=$r(n);function n(r){Ir(this,n);var u;return u=t.call(this,r),j(L(u),"caption",{type:"string",required:!0,message:q.getMessage("pleaseEnterCaption")}),j(L(u),"width",{type:"number",required:!1,message:q.getMessage("pleaseEnterColumnWidth")}),u.width.required=r.widthType==="px",u}return n}(St),zc=function(e){Dr(n,e);var t=$r(n);function n(r){Ir(this,n);var u;u=t.call(this,r),j(L(u),"widthType",void 0),j(L(u),"width",void 0),j(L(u),"caption",void 0),j(L(u),"dataBind",void 0),j(L(u),"autoWidth",void 0),j(L(u),"fixed",void 0),j(L(u),"sort",void 0),j(L(u),"align",void 0),j(L(u),"colSpan",void 0),j(L(u),"autoHeight",void 0);var i;u.width=(i=r==null?void 0:r.width)!==null&&i!==void 0?i:150,u.widthType=(r==null?void 0:r.widthType)||"auto";var o;u.caption=(o=r==null?void 0:r.caption)!==null&&o!==void 0?o:"";var s;u.fixed=(s=r==null?void 0:r.fixed)!==null&&s!==void 0?s:"none",u.autoWidth=new Ms(r==null?void 0:r.autoWidth),u.dataBind=new kn(r==null?void 0:r.dataBind);var l;u.sort=(l=r==null?void 0:r.sort)!==null&&l!==void 0?l:!0,u.align=r==null?void 0:r.align,u.colSpan=r==null?void 0:r.colSpan;var a;return u.autoHeight=(a=r==null?void 0:r.autoHeight)!==null&&a!==void 0?a:!1,u}return n}(X);j(zc,"Rules",Wc);function Jt(e){return"children"in e&&se(e.children)}function Or(e){return"headers"in e.props&&se(e.props.headers)}function Pr(e){return"footers"in e.props&&se(e.props.footers)}function Ke(e,t){Array.isArray(e)&&e.map(n=>{n.type===h.SUBTABLE?Ke(n.props.headers,t):Jt(n)?Ke(n==null?void 0:n.children,t):n.controlType===P.FORM&&t(n)})}const Rr=[h.AMOUNT,h.CALC,h.DATE_RANGE],xr={amount:{caption:"\u91D1\u989D",fieldType:N.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:N.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:N.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:N.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:N.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:N.TIMESTAMP}};function Gc(e){let t=[];return Ke(e,n=>{n.controlType===P.FORM?t.push(n):(n.type,h.SUBTABLE)}),t}function Kc(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===h.TITLE)return n;if(Rr.includes(n.type)){const r=n.dataBind;Object.keys(r).forEach(u=>{const i=r[u],o=n.controlId+"_"+u;i.fieldCode=Mr(o),i.dataCode=t})}else n.dataBind.fieldCode=Mr(n.controlId),n.dataBind.dataCode=t;return n})}function Mr(e){const t="field_";return e.startsWith(t)?e:t+e}function Xe(e){return Ja[e]}function Xc(e){const t=new te,n=[];return e.forEach(r=>{if(!(r.parentId||!r.dataBind))if(Rr.includes(r.type)){const u=r.dataBind,i=r.datasourceBind;Object.keys(u).forEach(o=>{const s=u[o],l=xr[o].fieldType,a=r.caption+"_"+xr[o].caption,f=Xe(l);if(!f)return;const p={caption:a,dataBind:s};o==="currency"&&(p.optionConfig="datasource",p.datasourceBind=i);const v=t.createControlInstance(f,{props:p});v&&n.push(v)})}else{const u=Xe(r.fieldType);if(!u)return;const i=t.createControlInstance(u,{props:{caption:r.caption,dataBind:r.dataBind,datasourceBind:r.datasourceBind}});i&&n.push(i)}}),n}function Jc(e){const t=new te,r=(Array.isArray(e)?e:[e]).map(u=>{const i=Xe(u);return t.createControlInstance(i)});return Array.isArray(e)?r:r[0]}function Zt(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function Qt(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Yt(e,t,n){return bn(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(u=>u.validate(t,n)))).every(u=>u):yield e.validate(t,n)})}const Zc=[h.TITLE,h.GRID_TABLE_COLUMN,h.SUBTABLE_COLUMN,h.OPERATION_COLUMN,h.DATA_VIEW,h.LIST_VIEW,h.HEADER,h.FOOTER,h.SIMPLE_SEARCH,h.ROW,h.GRID_ROW,h.COL,h.GRID,h.DIVIDER,h.TAB_PANE,h.TAB,h.CARD_GROUP,h.ACTION_BAR,h.GRID_LAYOUT_CONTAINER,h.GRID_LAYOUT_WRAP],Qc=[h.CALC],Yc={check:{id:"listPageCheckBtnId",caption:"\u67E5\u770B"},edit:{id:"listPageEditBtnId",caption:"\u7F16\u8F91"},delete:{id:"listPageDeleteBtnId",caption:"\u5220\u9664"}};function Ie(e,t){var r,u,i,o,s,l,a,f,p;const n=[];if(se(e))n.push(...e.map(v=>Ie(v,t)).flat());else{const v=e.type,{caption:g,content:E}=e.props;let d;if(Zc.includes(v))v===h.OPERATION_COLUMN&&Object.entries(Yc).reduce((_,[c,{caption:y,id:w}])=>{var F;const B=e.props[c];return B&&B.isShow&&_.push({controlId:w,caption:y,type:e.type,controlType:e.controlType,parentId:(F=t==null?void 0:t.controlId)!=null?F:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),_},n);else if(d={controlId:e.id,caption:g||E||e.name,type:e.type,controlType:e.controlType,parentId:(r=t==null?void 0:t.controlId)!=null?r:null,canEdit:!Qc.includes(v),canRead:!0,canHide:!0,group:"element"},t&&t.type===h.SUBTABLE&&(d.caption=t.caption+"_"+d.caption),v===h.VUE_FORM_ITEM&&(d.caption=e.props.controlExportName||e.name),(e.controlType===P.FORM||e.controlType===P.COLUMN)&&((i=(u=e.props)==null?void 0:u.dataBind)==null?void 0:i.fieldCode)!==void 0&&((s=(o=e.props)==null?void 0:o.dataBind)==null?void 0:s.fieldCode)!==""&&(d.group="field"),n.push(d),v===h.VUE_FORM_ITEM){let _="element";((a=(l=e.props)==null?void 0:l.dataBind)==null?void 0:a.fieldCode)!==void 0&&((p=(f=e.props)==null?void 0:f.dataBind)==null?void 0:p.fieldCode)!==""&&(_="field");const c=e.props.permissions;c==null||c.map(y=>{var w;d={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:_},n.push(d)})}e.children&&n.push(...e.children.map(_=>Ie(_,t)).flat()),e.controlType===P.LIST&&n.push(...e.props.headers.map(_=>Ie(_,d)).flat())}return n}class te extends Me{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new we,this.fieldTypes=N,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:n,Setting:r}=t;this.controlSettingMap.set(n.controlType,r)})}registerControl(t){this.constructor.register(t);const{Designer:n,Setting:r}=t;this.register(n),this.registeredControlTypes.add(n.controlType),this.controlSettingMap.set(n.controlType,r)}getControlSetting(t){const n=this.controlSettingMap.get(t);return n||null}setInstance(t,n,r){try{if(!t)return;t.updateProps(n,r)}catch(u){throw u}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return bn(this,null,function*(){return Yt(...t)})}getModelBindInfoList(...t){return Qt(...t)}getSchema(...t){return Zt(...t)}listenControlHook(...t){return er.on(...t)}}te.EventLogic=we;class ef{constructor(){this.designer=new te}ListPageBuilder(){const t=this.designer.createControlInstance(h.LIST_VIEW),n=this.designer.createControlInstance(h.SIMPLE_SEARCH),r=this.designer.createControlInstance(h.GRID_TABLE),u=this.designer.createControlInstance(h.CREATE_FORM_LIST_BUTTON),i=this.designer.createControlInstance(h.IMPORT_RECORD_LIST_BUTTON),o=this.designer.createControlInstance(h.EXPORT_LIST_BUTTON),s=this.designer.createControlInstance(h.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(i),r.children.push(o),r.children.push(s),t.children.push(n),t.children.push(r),t}ProListPageBuilder(){const t=this.designer.createControlInstance(h.LIST_VIEW);t.props.countType="async";const n=this.designer.createControlInstance(h.SIMPLE_SEARCH),r=this.designer.createControlInstance(h.GRID_TABLE),u=this.designer.createControlInstance(h.EXPORT_LIST_BUTTON),i=this.designer.createControlInstance(h.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(i),t.children.push(n),t.children.push(r),t}FormPageBuilder(){const t=this.designer.createControlInstance(h.DATA_VIEW),n=this.designer.createControlInstance(h.TITLE),r=this.designer.createControlInstance(h.GRID);return t.children.push(n),t.children.push(r),t}VuePageBuilder(){const t=this.designer.createControlInstance(h.GRID),n=this.designer.createControlInstance(h.VUE_FORM_ITEM);return n.props.isHideCaption=!0,n.props.controlExportName="VuePage",t.children.push(n),t}}class Tr{constructor(t){var n;this.selected=null,this.selectedInstanceDataScopeParent=null,this.selectedDataScopeFlatInstances=[],this.selectedInstanceSetting=[],this.selectedInstanceSettingItems=[],this.selectedFieldItem=null,this.external={},this.movingInstance=null,this.movingInstanceOldParent=null,this.movingInstanceOldDataScopeParent=null,this.getParentBeforeInstanceMove=(n=t.getParentBeforeInstanceMove)!=null?n:r=>r.parent,this.instance=t.instance,this.getFlatInstances()}get selectedRules(){return this.selected?this.selected.rules:null}get selectedAntdRules(){const t=this.selectedRules;return t||null}setInstances(t){this.instance=t,this.getFlatInstances()}setSelectInstance(t){this.selected=t,this.selectedInstanceDataScopeParent=t?De(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?qr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(n=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(n))})}getSettingItems(t){return t.type==="group"?t.items:t.items.reduce((n,r)=>(n.push(...r.items),n),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=De(t)}updateDataFieldCodeMap(t){const n=De(t);if(!n)return;const r=this.dataFieldCodeMap.get(n.props.datasourceBind.dataCode);if(!!r){for(const[u,i]of r.entries())if(i.id===t.id){r.delete(u);break}jr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;de(this.instance,u=>{t.push(u),n.set(u.id,u),jr(u,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function Lr(e,t,n){const{dataCode:r,fieldCode:u}=t;r&&u&&(e.has(r)||e.set(r,new Map),e.get(r).set(u,n))}function jr(e,t){if(e.controlType===P.FORM){const n=e.props.dataBind;dr(n)?Lr(t,n,e):Object.values(n).forEach(r=>{Lr(t,r,e)})}}function de(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{var u,i;t(r),Jt(r)&&de(r.children,t),Or(r)&&de(r.props.headers,t),Pr(r)&&de((i=(u=r.props)==null?void 0:u.footers)!=null?i:[],t)})}function en(e){return[h.SUBTABLE,h.DATA_VIEW,h.LIST_VIEW].includes(e.type)}function De(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!en(t);)t=t.parent;return t}function qr(e){const t=[e];return de(e,n=>{n!==e&&t.includes(n.parent)&&!en(n)&&t.push(n)}),t}function tf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Vr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function nf(e,t,n){return t&&Vr(e.prototype,t),n&&Vr(e,n),e}function tn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var K=function(){function e(t){tf(this,e),tn(this,"visible",void 0),tn(this,"expression",void 0),tn(this,"updateParent",void 0);var n;this.visible=(n=t==null?void 0:t.visible)!==null&&n!==void 0?n:!0;var r;this.expression=(r=t==null?void 0:t.expression)!==null&&r!==void 0?r:!1;var u;this.updateParent=(u=t==null?void 0:t.updateParent)!==null&&u!==void 0?u:!1}return nf(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function rf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ur(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function uf(e,t,n){return t&&Ur(e.prototype,t),n&&Ur(e,n),e}function H(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var of=function(){function e(t){rf(this,e),H(this,"type",void 0),H(this,"label",void 0),H(this,"key",void 0),H(this,"component",void 0),H(this,"effect",void 0),H(this,"scopeEffect",void 0),H(this,"defaultValue",void 0),H(this,"validator",void 0),H(this,"props",void 0),H(this,"effectKeys",void 0),this.type=t.type,this.label=t.label,this.key=t.key,this.component=t.component;var n;this.effect=(n=t.effect)!==null&&n!==void 0?n:{};var r;this.scopeEffect=(r=t.scopeEffect)!==null&&r!==void 0?r:Xa,this.defaultValue=t.defaultValue,this.validator=t.validator;var u;this.props=(u=t.props)!==null&&u!==void 0?u:new K,this.effectKeys=Object.keys(this.effect)}return uf(e,[{key:"filterEffects",value:function(n){var r=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(u){var i=new RegExp("^".concat(u,"(\\.\\w+)*$"));return i.test(n)}).map(function(u){return r.effect[u]})}},{key:"callEffectFn",value:function(n,r){try{var u=n.apply(null,r);vt(u)&&Object.assign(this.props,u)}catch(i){Ee(`effect error
2
+ `.concat(i))}}},{key:"callEffect",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),i=1;i<r;i++)u[i-1]=arguments[i];var o=this;this.filterEffects(n).forEach(function(s){return o.callEffectFn(s,u)})}},{key:"callScopeEffect",value:function(){for(var n=arguments.length,r=new Array(n),u=0;u<n;u++)r[u]=arguments[u];this.callEffectFn(this.scopeEffect,r)}}]),e}();function af(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function oe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Nr=function e(t){af(this,e),oe(this,"type","group"),oe(this,"title",void 0),oe(this,"required",void 0),oe(this,"items",void 0),oe(this,"tips",void 0),oe(this,"fromId",void 0),oe(this,"visible",void 0);var n;this.title=(n=t.title)!==null&&n!==void 0?n:"";var r;this.required=(r=t.required)!==null&&r!==void 0?r:!1,this.items=t.items,this.tips=t.tips,this.visible=t.items.some(function(u){var i;return(i=u.props)===null||i===void 0?void 0:i.visible})};function sf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function nn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function lf(e){return"type"in e&&e.type==="tab"}var $e=function e(t){sf(this,e),nn(this,"type","tab"),nn(this,"title",void 0),nn(this,"items",void 0),this.title=t.title,this.items=t.items};function kr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function cf(e){if(Array.isArray(e))return e}function ff(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function df(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Je(e){return Je=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Je(e)}function pf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&rn(e,t)}function hf(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n!=null){var r=[],u=!0,i=!1,o,s;try{for(n=n.call(e);!(u=(o=n.next()).done)&&(r.push(o.value),!(t&&r.length===t));u=!0);}catch(l){i=!0,s=l}finally{try{!u&&n.return!=null&&n.return()}finally{if(i)throw s}}return r}}function yf(){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 vf(e,t){return t&&(gf(t)==="object"||typeof t=="function")?t:ff(e)}function rn(e,t){return rn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},rn(e,t)}function _f(e,t){return cf(e)||hf(e,t)||mf(e,t)||yf()}function gf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function mf(e,t){if(!!e){if(typeof e=="string")return kr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return kr(e,t)}}function bf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ef(e){var t=bf();return function(){var r=Je(e),u;if(t){var i=Je(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return vf(this,u)}}var wf=function(e){pf(n,e);var t=Ef(n);function n(r){df(this,n);var u;return u=t.call(this,r),vt(r)&&Object.entries(r).forEach(function(i){var o=_f(i,2),s=o[0],l=o[1];u[s]=l}),u}return n}(K);function Oe(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Bf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ze(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Qe(e){return Qe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Qe(e)}function Sf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&un(e,t)}function Af(e,t){return t&&(Ff(t)==="object"||typeof t=="function")?t:Oe(e)}function un(e,t){return un=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},un(e,t)}function Ff(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Cf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function If(e){var t=Cf();return function(){var r=Qe(e),u;if(t){var i=Qe(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Af(this,u)}}var Df=function(e){Sf(n,e);var t=If(n);function n(r){Bf(this,n);var u;u=t.call(this,r),Ze(Oe(u),"maxLength",void 0),Ze(Oe(u),"minLength",void 0),Ze(Oe(u),"placeholder",void 0),Ze(Oe(u),"i18n",void 0);var i;u.maxLength=(i=r==null?void 0:r.maxLength)!==null&&i!==void 0?i:"";var o;u.minLength=(o=r==null?void 0:r.minLength)!==null&&o!==void 0?o:"";var s;u.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var l;return u.i18n=(l=r==null?void 0:r.i18n)!==null&&l!==void 0?l:!1,u}return n}(K);function Ye(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function $f(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function on(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function et(e){return et=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},et(e)}function 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&&an(e,t)}function Pf(e,t){return t&&(Rf(t)==="object"||typeof t=="function")?t:Ye(e)}function an(e,t){return an=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},an(e,t)}function Rf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function xf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Mf(e){var t=xf();return function(){var r=et(e),u;if(t){var i=et(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Pf(this,u)}}var Tf=function(e){Of(n,e);var t=Mf(n);function n(r){$f(this,n);var u;u=t.call(this,r),on(Ye(u),"max",void 0),on(Ye(u),"min",void 0),on(Ye(u),"placeholder",void 0);var i;u.max=(i=r==null?void 0:r.max)!==null&&i!==void 0?i:"";var o;u.min=(o=r==null?void 0:r.min)!==null&&o!==void 0?o:"";var s;return u.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"",u}return n}(K);function tt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Lf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function sn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function nt(e){return nt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},nt(e)}function jf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ln(e,t)}function qf(e,t){return t&&(Vf(t)==="object"||typeof t=="function")?t:tt(e)}function ln(e,t){return ln=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},ln(e,t)}function Vf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Uf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Nf(e){var t=Uf();return function(){var r=nt(e),u;if(t){var i=nt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return qf(this,u)}}var kf=function(e){jf(n,e);var t=Nf(n);function n(r){Lf(this,n);var u;u=t.call(this,r),sn(tt(u),"showType",void 0),sn(tt(u),"tips",void 0),sn(tt(u),"disabled",void 0);var i;u.showType=(i=r==null?void 0:r.showType)!==null&&i!==void 0?i:"switch";var o;u.tips=(o=r==null?void 0:r.tips)!==null&&o!==void 0?o:"";var s;return u.disabled=(s=r==null?void 0:r.disabled)!==null&&s!==void 0?s:!1,u}return n}(K);function Hr(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Hf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Wf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function rt(e){return rt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},rt(e)}function zf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&cn(e,t)}function Gf(e,t){return t&&(Kf(t)==="object"||typeof t=="function")?t:Hr(e)}function cn(e,t){return cn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},cn(e,t)}function Kf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Xf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Jf(e){var t=Xf();return function(){var r=rt(e),u;if(t){var i=rt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Gf(this,u)}}var Zf=function(e){zf(n,e);var t=Jf(n);function n(r){Hf(this,n);var u;u=t.call(this,r),Wf(Hr(u),"options",void 0);var i;return u.options=(i=r==null?void 0:r.options)!==null&&i!==void 0?i:[],u}return n}(K);function fn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Qf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Wr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ut(e){return ut=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ut(e)}function Yf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&dn(e,t)}function ed(e,t){return t&&(td(t)==="object"||typeof t=="function")?t:fn(e)}function dn(e,t){return dn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},dn(e,t)}function td(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function nd(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function rd(e){var t=nd();return function(){var r=ut(e),u;if(t){var i=ut(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return ed(this,u)}}var ud=function(e){Yf(n,e);var t=rd(n);function n(r){Qf(this,n);var u;u=t.call(this,r),Wr(fn(u),"placeholder",void 0),Wr(fn(u),"options",void 0);var i;u.placeholder=(i=r==null?void 0:r.placeholder)!==null&&i!==void 0?i:"";var o;return u.options=(o=r==null?void 0:r.options)!==null&&o!==void 0?o:[],u}return n}(K);function pn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function id(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function zr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function it(e){return it=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},it(e)}function od(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&hn(e,t)}function ad(e,t){return t&&(sd(t)==="object"||typeof t=="function")?t:pn(e)}function hn(e,t){return hn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},hn(e,t)}function sd(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ld(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function cd(e){var t=ld();return function(){var r=it(e),u;if(t){var i=it(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return ad(this,u)}}var fd=function(e){od(n,e);var t=cd(n);function n(r){id(this,n);var u;u=t.call(this,r),zr(pn(u),"options",void 0),zr(pn(u),"showType",void 0);var i;u.options=(i=r==null?void 0:r.options)!==null&&i!==void 0?i:[];var o;return u.showType=(o=r==null?void 0:r.showType)!==null&&o!==void 0?o:"outline",u}return n}(K);function ae(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dd(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ot(e){return ot=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ot(e)}function pd(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&yn(e,t)}function hd(e,t){return t&&(yd(t)==="object"||typeof t=="function")?t:ae(e)}function yn(e,t){return yn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},yn(e,t)}function yd(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function vd(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function _d(e){var t=vd();return function(){var r=ot(e),u;if(t){var i=ot(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return hd(this,u)}}var gd=function(e){pd(n,e);var t=_d(n);function n(r){dd(this,n);var u;u=t.call(this,r),pe(ae(u),"maxLength",void 0),pe(ae(u),"minLength",void 0),pe(ae(u),"placeholder",void 0),pe(ae(u),"i18n",void 0),pe(ae(u),"maxRows",void 0),pe(ae(u),"minRows",void 0);var i;u.maxLength=(i=r==null?void 0:r.maxLength)!==null&&i!==void 0?i:"";var o;u.minLength=(o=r==null?void 0:r.minLength)!==null&&o!==void 0?o:"";var s;u.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var l;u.maxRows=(l=r==null?void 0:r.maxRows)!==null&&l!==void 0?l:"";var a;u.minRows=(a=r==null?void 0:r.minRows)!==null&&a!==void 0?a:"";var f;return u.i18n=(f=r==null?void 0:r.i18n)!==null&&f!==void 0?f:!1,u}return n}(K);function md(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function vn(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){md(e,u,n[u])})}return e}function bd(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function _n(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):bd(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Ed(e,t){switch(e){case"input":return new Df(t);case"textarea":return new gd(t);case"input-number":return new Tf(t);case"switch":return new kf(t);case"radio":return new fd(t);case"checkbox":return new Zf(t);case"select":return new ud(t);default:return new wf(t)}}function wd(e){return function(t){var n=e.get(t);if(!!n)return new of(_n(vn({},n),{props:Ed(n.component,"props"in n?n.props:void 0)}))}}function Bd(e){var t=e.fields.reduce(function(u,i){return u.set(i.key,i),u},new Map);function n(u){return new Nr(_n(vn({},u),{items:u.items.map(wd(t)).filter(Boolean)}))}function r(u){return u.map(n)}return e.groups.map(function(u){return lf(u)?new $e(_n(vn({},u),{items:r(u.items)})):n(u)})}let gn="";class Gr extends qn{constructor(t){super(),this.isMounted=!1,this.id=ct(8),this.__pluginsApplied=!1,this.getSchema=Zt,this.getModelBindInfoList=Qt,this.generatePermissions=Ie,this.$options=Object.freeze(t);const{autoMount:n=!1,Designer:r=te,schema:u,mode:i="form",store:o={}}=this.$options;this.eventLogic=new we,this.designer=new r,this.store=new Tr(ve({instance:this.designer.createControl(Array.isArray(u)?u:[u])},o)),this.mode=i,n&&this.mount()}mount(){const{plugins:t=[]}=this.$options;this.__plugins=t,this.applyPlugins(),this.isMounted=!0}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{gn=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this),gn=""}catch(r){Ee(`${gn||t.constructor.name} Plugin apply Error
3
+ ${r}`)}}),this.__pluginsApplied=!0)}emit(t,...n){return super.emit(t,n)}on(t,n){return super.on(t,n)}setInstances(t,n){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],n))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var u,i;const t=this.store.selected;if(!t)return;let n=this.getControlSetting(t.type);if(((u=t.parent)==null?void 0:u.controlType)===P.WRAP){const o=this.getControlSetting((i=t.parent)==null?void 0:i.type);n=this.concatSetting(n,o,t.parent.id)}this.store.setSelectInstanceSettings(n),this.callSelectedEffect("");const r={from:null,current:this.store.selectedInstanceDataScopeParent,oldParent:null,newParent:t.parent};this.callSelectedScopeEffect(r)}concatSetting(t,n,r){var i,o,s,l,a,f,p,v;let u=t;if(((i=t[0])==null?void 0:i.type)==="tab"&&((o=n[0])==null?void 0:o.type)==="tab"){const g=t,E=n.slice(0);u=g.map((d,_)=>{const c=new $e(d),y=E.findIndex(B=>B.title===d.title);if(y===-1)return c;const w=E.splice(y,1)[0];return w&&(c.items=[...this.formatGroupSetting(w.items,r),...c.items]),c}),E.length&&(u=[...u,...E.map(d=>this.formatGroupSetting(d,r))])}else if(((s=t[0])==null?void 0:s.type)==="group"&&((l=n[0])==null?void 0:l.type)==="group"){const g=t,E=n;u=[...this.formatGroupSetting(E,r),...g]}else if(((a=t[0])==null?void 0:a.type)==="tab"&&((f=n[0])==null?void 0:f.type)==="group"){const g=t,E=n;u=g.map((d,_)=>{const c=new $e(d);return _===0&&(c.items=[...this.formatGroupSetting(E,r),...c.items]),c})}else if(((p=t[0])==null?void 0:p.type)==="group"&&((v=n[0])==null?void 0:v.type)==="tab"){const g=t;u=n.map((d,_)=>{const c=new $e(d);return _===0&&(c.items=[...c.items,...this.formatGroupSetting(g,r)]),c})}return u}formatGroupSetting(t,n){if(se(t))return t.map(r=>{const u=new Nr(r);return u.fromId=n,u});{const r=new $e(t);return r.items=this.formatGroupSetting(r.items,n),r}}setControlConfig(...t){return this.designer.registerControlConfig(...t)}getControlConfig(t){return this.designer.getControlConfig(t)}getControlSetting(t){const n=this.designer.getControlSetting(t);return n?Bd(n):[]}selectInstance(t){this.beforeSelectInstance(),this.store.setSelectInstance(t),this.afterSelectInstance()}setSelectedFieldItem(t){this.store.setSelectedFieldItem(t),this.callSelectedEffect("dataBind",{fieldItem:t})}moveStart(t){const n=this.getInstance(t);n&&this.store.setMovingInstance(n)}moveEnd(t=this.store.movingInstance){var l;if(t===null)return;const n=this.getInstance(t);if(!n)return;const r=this.store.movingInstanceOldDataScopeParent,u=De(n),i=this.store.movingInstanceOldParent,o=n.parent;this.store.setMovingInstance(null),n.id!==((l=this.store.selected)==null?void 0:l.id)?this.selectInstance(n):this.store.setSelectInstance(n),this.store.getFlatInstances();const s={from:r,current:u,oldParent:i,newParent:o};this.callSelectedScopeEffect(s),i?this.emit("moved",ve({},s)):this.emit("joined",ve({},s))}createInstance(t,n){return this.designer.createControlInstance(t,n)}getInstance(t){return typeof t=="string"?this.store.instanceIdMap.get(t):t}getInstances(){return this.store.flatInstances}getInstancesFromType(t){return this.getInstances().filter(n=>n.type===t)}getDataScopeInstances(){return this.store.selectedDataScopeFlatInstances}getDataScopeInstancesFromType(t){return this.getDataScopeInstances().filter(n=>n.type===t)}updateInstancePropValue(t,n,r,u){var o;!xn(t.props,n,r)||(n.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((o=this.store.selected)==null?void 0:o.id)&&this.callSelectedEffect(n,u),this.emit("updated",{instance:t,propName:n,value:r}))}updateInstanceProps(t,n,r,u=""){Object.entries(n).forEach(([i,o])=>{const s=`${u?u+".":""}${i}`;ms(o)?this.updateInstanceProps(t,o,r,s):this.updateInstancePropValue(t,s,o,r)})}setInstance(t,n,r,u){_t(n)?this.updateInstancePropValue(t,String(n),r,u):this.updateInstanceProps(t,n,r)}removeInstance(t){const n=t.parent;if(!n)return;const r=n.controlType===P.LIST&&n.props.headers.includes(t)?n.props.headers:n.children,u=r.findIndex(i=>i===t);u>-1&&r.splice(u,1),this.store.getFlatInstances(),this.emit("removed",{instance:t,index:u,parent:n})}replaceInstance(t,n){const r=t.parent;if(!r)return;const u=r.controlType===P.LIST&&r.props.headers.includes(t)?r.props.headers:r.children,i=u.findIndex(o=>o===t);i>-1&&u.splice(i,1,n),this.store.getFlatInstances()}updateInstanceType(t,n){const r=t.toSchema(),u=this.createInstance(n,{id:r.id,props:r.props});if(!u){xe(`can\u2018t update instance type to ${n}`);return}return u}validate(t,n){return Yt(this.store.instance,t,n)}getCustomControlsInUse(){return this.getInstances().filter(this.assertInstanceIsCustomControl).reduce((t,n)=>(t.includes(n.type)||t.push(n.type),t),[])}assertInstanceIsCustomControl(t){return!bs(_t(t)?t:t.type)}static register(...t){return te.register(...t),this}static judgeControlIsRegistered(t){return te.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,n){return _t(n)?t.type===n:n.includes(t.type)}getInstanceInListControl(t){let n=t;for(;n;){if(n.controlType===P.LIST)return!0;n=n.parent}return!1}getInstanceParentControl(t,n){if(!!t.parent)return this.assertInstance(t.parent,n)?t.parent:this.getInstanceParentControl(t.parent,n)}callSelectedEffect(t,n={}){this.store.selectedInstanceSettingItems.forEach(r=>{r.callEffect(t,this,ve({control:this.store.selected},n))})}callSelectedScopeEffect(t={}){this.store.selectedInstanceSettingItems.forEach(n=>{n.callScopeEffect(this,ve({control:this.store.selected},t))})}}Gr.EventLogic=we,m.Builder=ef,m.Designer=te,m.Driven=Gr,m.Store=Tr,m.checkSchema=Yt,m.fillModelBindInfoListFieldCode=Kc,m.findInstanceDataScopeParent=De,m.generatePermissions=Ie,m.getColumnTypeFromFiledType=Xe,m.getColumnsFromFiledType=Jc,m.getColumnsFromModelBindInfoList=Xc,m.getDataScopeFlatInstances=qr,m.getMasterFormControls=Gc,m.getModelBindInfoList=Qt,m.hasChildrenControl=Jt,m.hasFooterControl=Pr,m.hasHeaderControl=Or,m.isDataScopeInstance=en,m.loop=de,m.loopFormControl=Ke,m.toSchema=Zt,Object.defineProperty(m,"__esModule",{value:!0})});
@@ -1,4 +1,5 @@
1
1
  import { ControlsKeys, ControlDesignerInstance, DesignerFormControl, DesignerLayoutControl, DesignerControl, DesignerListControl, DesignerSearchControl, DesignerWrapControl } from '@byteluck-fe/model-driven-core';
2
2
  export declare function hasChildrenControl(instance: DesignerControl): instance is DesignerLayoutControl | DesignerSearchControl | DesignerWrapControl;
3
3
  export declare function hasHeaderControl(instance: DesignerControl): instance is DesignerListControl;
4
+ export declare function hasFooterControl(instance: DesignerControl): instance is DesignerListControl;
4
5
  export declare function loopFormControl(control: ControlDesignerInstance<ControlsKeys>[], callback: (item: DesignerFormControl | ControlDesignerInstance<'subtable'>, children?: DesignerFormControl[]) => any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-driven",
3
- "version": "2.7.0-beta.4",
3
+ "version": "2.8.0-alpha.1",
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.7.0-beta.4",
30
- "@byteluck-fe/model-driven-core": "2.7.0-beta.4",
31
- "@byteluck-fe/model-driven-settings": "2.7.0-beta.4",
32
- "@byteluck-fe/model-driven-shared": "2.7.0-beta.4"
29
+ "@byteluck-fe/model-driven-controls": "2.8.0-alpha.1",
30
+ "@byteluck-fe/model-driven-core": "2.8.0-alpha.1",
31
+ "@byteluck-fe/model-driven-settings": "2.8.0-alpha.1",
32
+ "@byteluck-fe/model-driven-shared": "2.7.0-alpha.36"
33
33
  },
34
- "gitHead": "1bf9f693724f41f144a37e4f81f2c06dfe2069de"
34
+ "gitHead": "27f083b7b2759db550931017aec897e0740957dd"
35
35
  }