@byteluck-fe/model-driven-driven 2.5.3 → 2.5.9-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,8 +30,8 @@ function _define_property(obj, key, value) {
30
30
  }
31
31
  return obj;
32
32
  }
33
- import Designer from "./Designer";
34
- import { CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
33
+ import Designer from './Designer';
34
+ import { CONTROL_TYPE } from '@byteluck-fe/model-driven-shared';
35
35
  export var Builder = /*#__PURE__*/ function() {
36
36
  "use strict";
37
37
  function Builder() {
@@ -79,7 +79,7 @@ export var Builder = /*#__PURE__*/ function() {
79
79
  // @ts-ignore
80
80
  var listview = this.designer.createControlInstance(// @ts-ignore
81
81
  CONTROL_TYPE.LIST_VIEW);
82
- listview.props.countType = "async";
82
+ listview.props.countType = 'async';
83
83
  var simpleSearch = this.designer.createControlInstance(// @ts-ignore
84
84
  CONTROL_TYPE.SIMPLE_SEARCH);
85
85
  var gridTable = this.designer.createControlInstance(// @ts-ignore
@@ -128,7 +128,7 @@ export var Builder = /*#__PURE__*/ function() {
128
128
  // @ts-ignore
129
129
  vueFormItem.props.isHideCaption = true;
130
130
  // @ts-ignore
131
- vueFormItem.props.controlExportName = "VuePage";
131
+ vueFormItem.props.controlExportName = 'VuePage';
132
132
  // @ts-ignore
133
133
  grid.children.push(vueFormItem);
134
134
  return grid;
@@ -252,10 +252,10 @@ function _ts_generator(thisArg, body) {
252
252
  };
253
253
  }
254
254
  }
255
- import { RegisterControls, controlHooksEmitter } from "@byteluck-fe/model-driven-core";
256
- import EventLogic from "./EventLogic";
257
- import { FieldTypes } from "@byteluck-fe/model-driven-shared";
258
- import { toSchema, getModelBindInfoList, checkSchema } from "./utils";
255
+ import { RegisterControls, controlHooksEmitter } from '@byteluck-fe/model-driven-core';
256
+ import EventLogic from './EventLogic';
257
+ import { FieldTypes } from '@byteluck-fe/model-driven-shared';
258
+ import { toSchema, getModelBindInfoList, checkSchema } from './utils';
259
259
  var Designer = /*#__PURE__*/ function _target(RegisterControls) {
260
260
  "use strict";
261
261
  _inherits(Designer, RegisterControls);
@@ -263,7 +263,7 @@ var Designer = /*#__PURE__*/ function _target(RegisterControls) {
263
263
  function Designer() {
264
264
  _class_call_check(this, Designer);
265
265
  var _this;
266
- _this = _super.call(this, "Designer");
266
+ _this = _super.call(this, 'Designer');
267
267
  _define_property(_assert_this_initialized(_this), "toolbox", []);
268
268
  _define_property(_assert_this_initialized(_this), "services", {});
269
269
  _define_property(_assert_this_initialized(_this), "eventLogic", new EventLogic());
@@ -322,7 +322,7 @@ var Designer = /*#__PURE__*/ function _target(RegisterControls) {
322
322
  function getInitControl() {
323
323
  // @ts-ignore
324
324
  return [
325
- this.createControlInstance("grid")
325
+ this.createControlInstance('grid')
326
326
  ];
327
327
  }
328
328
  },
@@ -192,14 +192,14 @@ function _create_super(Derived) {
192
192
  return _possible_constructor_return(this, result);
193
193
  };
194
194
  }
195
- import { CONTROL_BASE_TYPE, error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from "@byteluck-fe/model-driven-shared";
196
- import { findInstanceDataScopeParent, Store } from "./Store";
197
- import { Designer } from "./Designer";
198
- import EventLogic from "./EventLogic";
199
- import { checkSchema, generatePermissions, getModelBindInfoList, toSchema } from "./utils";
200
- import { Group, initSettings, Tab } from "@byteluck-fe/model-driven-settings";
195
+ import { CONTROL_BASE_TYPE, error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from '@byteluck-fe/model-driven-shared';
196
+ import { findInstanceDataScopeParent, Store } from './Store';
197
+ import { Designer } from './Designer';
198
+ import EventLogic from './EventLogic';
199
+ import { checkSchema, generatePermissions, getModelBindInfoList, toSchema } from './utils';
200
+ import { Group, initSettings, Tab } from '@byteluck-fe/model-driven-settings';
201
201
  // 当前正在注册的插件名称
202
- var applyingPluginName = "";
202
+ var applyingPluginName = '';
203
203
  /**
204
204
  * 设计器驱动
205
205
  * */ var Driven = /*#__PURE__*/ function(Watcher) {
@@ -237,7 +237,7 @@ var applyingPluginName = "";
237
237
  // TODO 拿到permission_controls
238
238
  _define_property(_assert_this_initialized(_this), "generatePermissions", generatePermissions);
239
239
  _this.$options = Object.freeze(options);
240
- var _this_$options = _this.$options, _this_$options_autoMount = _this_$options.autoMount, autoMount = _this_$options_autoMount === void 0 ? false : _this_$options_autoMount, tmp = _this_$options.Designer, DesignerClass = tmp === void 0 ? Designer : tmp, schema = _this_$options.schema, _this_$options_mode = _this_$options.mode, mode = _this_$options_mode === void 0 ? "form" : _this_$options_mode, tmp1 = _this_$options.store, storeOptions = tmp1 === void 0 ? {} : tmp1;
240
+ var _this_$options = _this.$options, _this_$options_autoMount = _this_$options.autoMount, autoMount = _this_$options_autoMount === void 0 ? false : _this_$options_autoMount, tmp = _this_$options.Designer, DesignerClass = tmp === void 0 ? Designer : tmp, schema = _this_$options.schema, _this_$options_mode = _this_$options.mode, mode = _this_$options_mode === void 0 ? 'form' : _this_$options_mode, tmp1 = _this_$options.store, storeOptions = tmp1 === void 0 ? {} : tmp1;
241
241
  _this.eventLogic = new EventLogic();
242
242
  _this.designer = new DesignerClass();
243
243
  _this.store = new Store(_object_spread({
@@ -279,7 +279,7 @@ var applyingPluginName = "";
279
279
  var _plugin_pluginName;
280
280
  applyingPluginName = (_plugin_pluginName = plugin.pluginName) !== null && _plugin_pluginName !== void 0 ? _plugin_pluginName : plugin.constructor.name;
281
281
  plugin.apply(_this);
282
- applyingPluginName = "";
282
+ applyingPluginName = '';
283
283
  } catch (e) {
284
284
  error("".concat(applyingPluginName || plugin.constructor.name, " Plugin apply Error \n ").concat(e));
285
285
  }
@@ -326,7 +326,7 @@ var applyingPluginName = "";
326
326
  return;
327
327
  }
328
328
  this.setSelectedInstanceSetting();
329
- this.emit("select", {
329
+ this.emit('select', {
330
330
  instance: instance
331
331
  });
332
332
  }
@@ -348,7 +348,7 @@ var applyingPluginName = "";
348
348
  setting = this.concatSetting(setting, wrapSetting, instance.parent.id);
349
349
  }
350
350
  this.store.setSelectInstanceSettings(setting);
351
- this.callSelectedEffect("");
351
+ this.callSelectedEffect('');
352
352
  // 选中触发scopeEffect
353
353
  var payload = {
354
354
  from: null,
@@ -366,7 +366,7 @@ var applyingPluginName = "";
366
366
  var _settings_, _otherSettings_, _settings_1, _otherSettings_1;
367
367
  var result = settings;
368
368
  // tab
369
- 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") {
369
+ 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') {
370
370
  var tabSettings = settings;
371
371
  var otherTabSettings = otherSettings.slice(0);
372
372
  result = tabSettings.map(function(tab, index) {
@@ -389,7 +389,7 @@ var applyingPluginName = "";
389
389
  })));
390
390
  }
391
391
  // group
392
- } else if (((_settings_1 = settings[0]) === null || _settings_1 === void 0 ? void 0 : _settings_1.type) === "group" && ((_otherSettings_1 = otherSettings[0]) === null || _otherSettings_1 === void 0 ? void 0 : _otherSettings_1.type) === "group") {
392
+ } else if (((_settings_1 = settings[0]) === null || _settings_1 === void 0 ? void 0 : _settings_1.type) === 'group' && ((_otherSettings_1 = otherSettings[0]) === null || _otherSettings_1 === void 0 ? void 0 : _otherSettings_1.type) === 'group') {
393
393
  var groupSettings = settings;
394
394
  var otherGroupSettings = otherSettings;
395
395
  result = _to_consumable_array(this.formatGroupSetting(otherGroupSettings, settingFromId)).concat(_to_consumable_array(groupSettings));
@@ -456,7 +456,7 @@ var applyingPluginName = "";
456
456
  key: "setSelectedFieldItem",
457
457
  value: function setSelectedFieldItem(fieldItem) {
458
458
  this.store.setSelectedFieldItem(fieldItem);
459
- this.callSelectedEffect("dataBind", {
459
+ this.callSelectedEffect('dataBind', {
460
460
  fieldItem: fieldItem
461
461
  });
462
462
  }
@@ -504,9 +504,9 @@ var applyingPluginName = "";
504
504
  };
505
505
  this.callSelectedScopeEffect(payload);
506
506
  if (oldParent) {
507
- this.emit("moved", _object_spread({}, payload));
507
+ this.emit('moved', _object_spread({}, payload));
508
508
  } else {
509
- this.emit("joined", _object_spread({}, payload));
509
+ this.emit('joined', _object_spread({}, payload));
510
510
  }
511
511
  }
512
512
  },
@@ -523,7 +523,7 @@ var applyingPluginName = "";
523
523
  // return instanceId
524
524
  // }
525
525
  // return this.store.instanceIdMap.get(instanceId)
526
- if (typeof instanceId === "string") {
526
+ if (typeof instanceId === 'string') {
527
527
  return this.store.instanceIdMap.get(instanceId);
528
528
  }
529
529
  return instanceId;
@@ -566,13 +566,13 @@ var applyingPluginName = "";
566
566
  return;
567
567
  }
568
568
  // 修改dataBind的时候要更新 fieldCodeMap
569
- if (propName.startsWith("dataBind")) {
569
+ if (propName.startsWith('dataBind')) {
570
570
  this.store.updateDataFieldCodeMap(instance);
571
571
  }
572
572
  if (instance.id === ((_this_store_selected = this.store.selected) === null || _this_store_selected === void 0 ? void 0 : _this_store_selected.id)) {
573
573
  this.callSelectedEffect(propName, payload);
574
574
  }
575
- this.emit("updated", {
575
+ this.emit('updated', {
576
576
  instance: instance,
577
577
  propName: propName,
578
578
  value: value
@@ -582,11 +582,11 @@ var applyingPluginName = "";
582
582
  {
583
583
  key: "updateInstanceProps",
584
584
  value: function updateInstanceProps(instance, props, payload) {
585
- var prevKey = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : "";
586
585
  var _this = this;
586
+ var prevKey = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : '';
587
587
  Object.entries(props).forEach(function(param) {
588
588
  var _param = _sliced_to_array(param, 2), key = _param[0], value = _param[1];
589
- var propName = "".concat(prevKey ? prevKey + "." : "").concat(key);
589
+ var propName = "".concat(prevKey ? prevKey + '.' : '').concat(key);
590
590
  if (isObject(value)) {
591
591
  _this.updateInstanceProps(instance, value, payload, propName);
592
592
  } else {
@@ -622,7 +622,7 @@ var applyingPluginName = "";
622
622
  });
623
623
  index > -1 && parentList.splice(index, 1);
624
624
  this.store.getFlatInstances();
625
- this.emit("removed", {
625
+ this.emit('removed', {
626
626
  instance: instance,
627
627
  index: index,
628
628
  parent: parent
@@ -744,8 +744,8 @@ var applyingPluginName = "";
744
744
  {
745
745
  key: "callSelectedEffect",
746
746
  value: function callSelectedEffect(effectKey) {
747
- var payload = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
748
747
  var _this = this;
748
+ var payload = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
749
749
  this.store.selectedInstanceSettingItems.forEach(function(setting) {
750
750
  setting.callEffect(effectKey, _this, _object_spread({
751
751
  control: _this.store.selected
@@ -756,8 +756,8 @@ var applyingPluginName = "";
756
756
  {
757
757
  key: "callSelectedScopeEffect",
758
758
  value: function callSelectedScopeEffect() {
759
- var payload = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
760
759
  var _this = this;
760
+ var payload = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
761
761
  this.store.selectedInstanceSettingItems.forEach(function(setting) {
762
762
  setting.callScopeEffect(_this, _object_spread({
763
763
  control: _this.store.selected
@@ -1,2 +1,2 @@
1
- import { EventLogic } from "@byteluck-fe/model-driven-shared";
1
+ import { EventLogic } from '@byteluck-fe/model-driven-shared';
2
2
  export default EventLogic;
package/dist/esm/Store.js CHANGED
@@ -95,10 +95,10 @@ function _unsupported_iterable_to_array(o, minLen) {
95
95
  if (n === "Map" || n === "Set") return Array.from(n);
96
96
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
97
97
  }
98
- import { DataBind } from "@byteluck-fe/model-driven-core";
99
- import { hasChildrenControl, hasHeaderControl } from "./designerUtils";
100
- import { Group } from "@byteluck-fe/model-driven-settings";
101
- import { CONTROL_BASE_TYPE, CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
98
+ import { DataBind } from '@byteluck-fe/model-driven-core';
99
+ import { hasChildrenControl, hasHeaderControl } from './designerUtils';
100
+ import { Group } from '@byteluck-fe/model-driven-settings';
101
+ import { CONTROL_BASE_TYPE, CONTROL_TYPE } from '@byteluck-fe/model-driven-shared';
102
102
  // 维护当前selected,。。 selectedControlSetting
103
103
  export var Store = /*#__PURE__*/ function() {
104
104
  "use strict";
@@ -1,4 +1,4 @@
1
- import { CONTROL_TYPE, FieldTypes } from "@byteluck-fe/model-driven-shared";
1
+ import { CONTROL_TYPE, FieldTypes } from '@byteluck-fe/model-driven-shared';
2
2
  // 使用ObjectDataBind 的控件
3
3
  export var objectDataBindControlTypes = [
4
4
  CONTROL_TYPE.AMOUNT,
@@ -7,27 +7,27 @@ export var objectDataBindControlTypes = [
7
7
  ];
8
8
  export var objectDataBindKeyToFieldType = {
9
9
  amount: {
10
- caption: "金额",
10
+ caption: '金额',
11
11
  fieldType: FieldTypes.DECIMAL
12
12
  },
13
13
  currency: {
14
- caption: "币种",
14
+ caption: '币种',
15
15
  fieldType: FieldTypes.VARCHAR
16
16
  },
17
17
  result: {
18
- caption: "结果",
18
+ caption: '结果',
19
19
  fieldType: FieldTypes.DECIMAL
20
20
  },
21
21
  unit: {
22
- caption: "单位",
22
+ caption: '单位',
23
23
  fieldType: FieldTypes.VARCHAR
24
24
  },
25
25
  min: {
26
- caption: "开始时间",
26
+ caption: '开始时间',
27
27
  fieldType: FieldTypes.TIMESTAMP
28
28
  },
29
29
  max: {
30
- caption: "结束时间",
30
+ caption: '结束时间',
31
31
  fieldType: FieldTypes.TIMESTAMP
32
32
  }
33
33
  };
@@ -1,9 +1,9 @@
1
- import { CONTROL_BASE_TYPE, CONTROL_TYPE, isArray } from "@byteluck-fe/model-driven-shared";
1
+ import { CONTROL_BASE_TYPE, CONTROL_TYPE, isArray } from '@byteluck-fe/model-driven-shared';
2
2
  export function hasChildrenControl(instance) {
3
- return "children" in instance && isArray(instance.children);
3
+ return 'children' in instance && isArray(instance.children);
4
4
  }
5
5
  export function hasHeaderControl(instance) {
6
- return "headers" in instance.props && isArray(instance.props.headers);
6
+ return 'headers' in instance.props && isArray(instance.props.headers);
7
7
  }
8
8
  export function loopFormControl(control, callback) {
9
9
  if (Array.isArray(control)) {
package/dist/esm/index.js CHANGED
@@ -1,7 +1,7 @@
1
- import Designer from "./Designer";
1
+ import Designer from './Designer';
2
2
  export { Designer };
3
- export * from "./utils";
4
- export * from "./Builder";
5
- export * from "./designerUtils";
6
- export * from "./Driven";
7
- export * from "./Store";
3
+ export * from './utils';
4
+ export * from './Builder';
5
+ export * from './designerUtils';
6
+ export * from './Driven';
7
+ export * from './Store';
package/dist/esm/utils.js CHANGED
@@ -180,10 +180,10 @@ function _ts_generator(thisArg, body) {
180
180
  };
181
181
  }
182
182
  }
183
- import { loopFormControl } from "./designerUtils";
184
- import { CONTROL_BASE_TYPE, CONTROL_TYPE, FieldTypeToColumnType, isArray } from "@byteluck-fe/model-driven-shared";
185
- import Designer from "./Designer";
186
- import { objectDataBindControlTypes, objectDataBindKeyToFieldType } from "./constants";
183
+ import { loopFormControl } from './designerUtils';
184
+ import { CONTROL_BASE_TYPE, CONTROL_TYPE, FieldTypeToColumnType, isArray } from '@byteluck-fe/model-driven-shared';
185
+ import Designer from './Designer';
186
+ import { objectDataBindControlTypes, objectDataBindKeyToFieldType } from './constants';
187
187
  export function getMasterFormControls(controls) {
188
188
  var formctls = [];
189
189
  // @ts-ignore
@@ -199,7 +199,7 @@ export function getMasterFormControls(controls) {
199
199
  * @description 给modelBindInfoList中填充fieldCode和dataCode
200
200
  * @description 我们生成fieldCode的规则是:DataBind的控件,取`field_${id}`,ObjectDataBind的控件,取`field_${id}_${key}`, key指的是ObjectDataBind.keys()
201
201
  * */ export function fillModelBindInfoListFieldCode(modelBindInfoList) {
202
- var dataCode = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "";
202
+ var dataCode = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : '';
203
203
  if (!modelBindInfoList || !Array.isArray(modelBindInfoList)) return [];
204
204
  return modelBindInfoList.map(function(item) {
205
205
  if (!item.dataBind) return item;
@@ -210,7 +210,7 @@ export function getMasterFormControls(controls) {
210
210
  Object.keys(objectDataBind).forEach(function(key) {
211
211
  var dataBind = objectDataBind[key];
212
212
  // 如果是ObjectDataBind的话,需要将id拼接当前的key作为元素的fieldCode
213
- var fieldCode = item.controlId + "_" + key;
213
+ var fieldCode = item.controlId + '_' + key;
214
214
  dataBind.fieldCode = fieldCodeBeforeAddPrefix(fieldCode);
215
215
  dataBind.dataCode = dataCode;
216
216
  });
@@ -222,7 +222,7 @@ export function getMasterFormControls(controls) {
222
222
  });
223
223
  }
224
224
  function fieldCodeBeforeAddPrefix(fieldCode) {
225
- var prefix = "field_";
225
+ var prefix = 'field_';
226
226
  if (fieldCode.startsWith(prefix)) {
227
227
  return fieldCode;
228
228
  }
@@ -252,7 +252,7 @@ function fieldCodeBeforeAddPrefix(fieldCode) {
252
252
  // 当前key对应的fieldType
253
253
  var fieldType = objectDataBindKeyToFieldType[key].fieldType;
254
254
  // 拼接当前列的caption
255
- var caption = item.caption + "_" + objectDataBindKeyToFieldType[key].caption;
255
+ var caption = item.caption + '_' + objectDataBindKeyToFieldType[key].caption;
256
256
  // 通过fieldType获取列类型
257
257
  var controlType = getColumnTypeFromFiledType(fieldType);
258
258
  if (!controlType) return;
@@ -260,8 +260,8 @@ function fieldCodeBeforeAddPrefix(fieldCode) {
260
260
  caption: caption,
261
261
  dataBind: dataBind
262
262
  };
263
- if (key === "currency") {
264
- props.optionConfig = "datasource";
263
+ if (key === 'currency') {
264
+ props.optionConfig = 'datasource';
265
265
  props.datasourceBind = datasourceBind;
266
266
  }
267
267
  // @ts-ignore
@@ -386,16 +386,16 @@ var cannotEditControlTypes = [
386
386
  // 列表操作列单独处理三个按钮的权限
387
387
  var LIST_OPERATION_BUTTON_PERMISSIONS_MAPS = {
388
388
  check: {
389
- id: "listPageCheckBtnId",
390
- caption: "查看"
389
+ id: 'listPageCheckBtnId',
390
+ caption: '查看'
391
391
  },
392
392
  edit: {
393
- id: "listPageEditBtnId",
394
- caption: "编辑"
393
+ id: 'listPageEditBtnId',
394
+ caption: '编辑'
395
395
  },
396
396
  delete: {
397
- id: "listPageDeleteBtnId",
398
- caption: "删除"
397
+ id: 'listPageDeleteBtnId',
398
+ caption: '删除'
399
399
  }
400
400
  };
401
401
  // 生成权限字段
@@ -421,11 +421,11 @@ function generatePermissions(controls, parent) {
421
421
  canEdit: !cannotEditControlTypes.includes(type),
422
422
  canRead: true,
423
423
  canHide: true,
424
- group: "element"
424
+ group: 'element'
425
425
  };
426
426
  if (parent && parent.type === CONTROL_TYPE.SUBTABLE) {
427
427
  // 如果有parent,则利用下划线拼接caption
428
- permissionItem.caption = parent.caption + "_" + permissionItem.caption;
428
+ permissionItem.caption = parent.caption + '_' + permissionItem.caption;
429
429
  }
430
430
  if (type === CONTROL_TYPE.VUE_FORM_ITEM) {
431
431
  permissionItem.caption = controls.props.controlExportName || controls.name;
@@ -438,19 +438,19 @@ function generatePermissions(controls, parent) {
438
438
  var //@ts-ignore
439
439
  _controls_props_dataBind, _controls_props1, //@ts-ignore
440
440
  _controls_props_dataBind1, _controls_props2;
441
- if (((_controls_props1 = controls.props) === null || _controls_props1 === void 0 ? void 0 : (_controls_props_dataBind = _controls_props1.dataBind) === null || _controls_props_dataBind === void 0 ? void 0 : _controls_props_dataBind.fieldCode) !== undefined && ((_controls_props2 = controls.props) === null || _controls_props2 === void 0 ? void 0 : (_controls_props_dataBind1 = _controls_props2.dataBind) === null || _controls_props_dataBind1 === void 0 ? void 0 : _controls_props_dataBind1.fieldCode) !== "") {
442
- permissionItem.group = "field";
441
+ if (((_controls_props1 = controls.props) === null || _controls_props1 === void 0 ? void 0 : (_controls_props_dataBind = _controls_props1.dataBind) === null || _controls_props_dataBind === void 0 ? void 0 : _controls_props_dataBind.fieldCode) !== undefined && ((_controls_props2 = controls.props) === null || _controls_props2 === void 0 ? void 0 : (_controls_props_dataBind1 = _controls_props2.dataBind) === null || _controls_props_dataBind1 === void 0 ? void 0 : _controls_props_dataBind1.fieldCode) !== '') {
442
+ permissionItem.group = 'field';
443
443
  }
444
444
  }
445
445
  result.push(permissionItem);
446
446
  //追加vue容器权限
447
447
  if (type === CONTROL_TYPE.VUE_FORM_ITEM) {
448
448
  var _controls_props_dataBind2, _controls_props3, _controls_props_dataBind3, _controls_props4;
449
- var vueFormItemGroup = "element";
450
- if (((_controls_props3 = controls.props) === null || _controls_props3 === void 0 ? void 0 : (_controls_props_dataBind2 = _controls_props3.dataBind) === null || _controls_props_dataBind2 === void 0 ? void 0 : _controls_props_dataBind2.fieldCode) !== undefined && ((_controls_props4 = controls.props) === null || _controls_props4 === void 0 ? void 0 : (_controls_props_dataBind3 = _controls_props4.dataBind) === null || _controls_props_dataBind3 === void 0 ? void 0 : _controls_props_dataBind3.fieldCode) !== "") {
451
- vueFormItemGroup = "field";
449
+ var vueFormItemGroup = 'element';
450
+ if (((_controls_props3 = controls.props) === null || _controls_props3 === void 0 ? void 0 : (_controls_props_dataBind2 = _controls_props3.dataBind) === null || _controls_props_dataBind2 === void 0 ? void 0 : _controls_props_dataBind2.fieldCode) !== undefined && ((_controls_props4 = controls.props) === null || _controls_props4 === void 0 ? void 0 : (_controls_props_dataBind3 = _controls_props4.dataBind) === null || _controls_props_dataBind3 === void 0 ? void 0 : _controls_props_dataBind3.fieldCode) !== '') {
451
+ vueFormItemGroup = 'field';
452
452
  }
453
- var permissions = controls.props["permissions"];
453
+ var permissions = controls.props['permissions'];
454
454
  permissions === null || permissions === void 0 ? void 0 : permissions.map(function(item) {
455
455
  var _controls_id;
456
456
  permissionItem = {
@@ -484,7 +484,7 @@ function generatePermissions(controls, parent) {
484
484
  canEdit: false,
485
485
  canRead: false,
486
486
  canHide: true,
487
- group: "element"
487
+ group: 'element'
488
488
  });
489
489
  }
490
490
  return result;
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,$,O)=>$ in m?op(m,$,{enumerable:!0,configurable:!0,writable:!0,value:O}):m[$]=O,de=(m,$)=>{for(var O in $||($={}))ap.call($,O)&&Kr(m,O,$[O]);if(Gr)for(var O of Gr($))sp.call($,O)&&Kr(m,O,$[O]);return m};var mn=(m,$,O)=>new Promise((ut,Ce)=>{var ot=G=>{try{he(O.next(G))}catch(ye){Ce(ye)}},at=G=>{try{he(O.throw(G))}catch(ye){Ce(ye)}},he=G=>G.done?ut(G.value):Promise.resolve(G.value).then(ot,at);he((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",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",Fi="\u8BF7\u9009\u62E9\u533A",Ii="\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",$i="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Oi="\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",xi="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Mi="\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",Vi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ui="\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:O,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:Fi,limitRowsCannotBeLessThan0:Ii,TheNumberOfRowsCannotBeLessThanMinRows:Di,pleaseEnterColumnWidth:Ci,pleaseSetTheLogicalRelationshipOfAllRuleConditions:$i,pleaseCompleteAllRulesAndConditions:Oi,pleaseSelectControl:Ri,pleaseSelectAtLeastOneColumn:Pi,pleaseSelectFillBackMode:xi,pleaseSelectDashboard:Mi,rootNodeIsRequired:Ti,theViewNameCannotBeEmpty:Li,pleaseSelectOcrType:ji,pleaseSelectAtLeastOneFieldToFillIn:qi,pleaseChooseAtLeastOne:Vi,pleaseEnterButtonContent:Ui,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",Fu="The total score cannot be less than 1",Iu="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",$u="The maximum length of the control must be greater than the minimum length",Ou="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",xu="Please enter at least one option",Mu="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",Vu="Please select a city",Uu="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:Fu,scoreDefaultValueRange:Iu,attachmentLimitError:Du,PleaseReselectTheOptionalQuantity:Cu,TheMaximumLengthIsGreaterThanTheMinimumLength:$u,TheMinimumLengthIsGreaterThanTheMaximumLength:Ou,PleaseSelectTheCorrectOptionSettings:Ru,optionIdIsRepeat:Pu,optionIsRequired:xu,pleaseEnterDataCode:Mu,pleaseEnterValueFieldCode:Tu,pleaseEnterSvcCode:Lu,pleaseBindAtLeastOneDisplayValue:ju,pleaseSelectProvince:qu,pleaseSelectCity:Vu,pleaseSelectDistrict:Uu,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",Fo="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Io="\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",$o="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Oo="\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",xo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Mo="\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",Vo="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Uo="\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:Fo,pleaseEnterProcess:Io,pleaseEnterLabel:Do,pleaseEnterValue:Co,bizKeyNotBindFiled:$o,pleaseSelectOneField:Oo,pleaseEnterNumberRange:Ro,pleaseEnterAValueGreaterThanMin:Po,pleaseEnterAValueLessThanMax:xo,numberRangeSetError:Mo,stringRangeError:To,attachmentMaxSize:Lo,pleaseEnterTotalScoreSetting:jo,theTotalScoreMustNotBeLessThan1:qo,scoreDefaultValueRange:Vo,attachmentLimitError:Uo,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},Fa={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 Ia="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 R;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(R||(R={}));var 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.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"})(h||(h={}));var U;(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"})(U||(U={}));var P,Ca=(P={},x(P,"array","array-column"),x(P,"auto_number","auto-number-column"),x(P,"decimal","decimal-column"),x(P,"department","department-column"),x(P,"file","file-column"),x(P,"image","image-column"),x(P,"location","location-column"),x(P,"people","employee-column"),x(P,"text","text-column"),x(P,"timescope","timescope-column"),x(P,"timestamp","timestamp-column"),x(P,"varchar","varchar-column"),x(P,"relation","varchar-column"),P),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",$a=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:$a,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 Oa(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 $e(e,t,n){return In()?$e=Reflect.construct:$e=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},$e.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 xa(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Ma(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function 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 Fn(e){return Oa(e)||xa(e)||ja(e)||Ma()}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 $e(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 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=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 Oe(){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(Fn(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(Fn(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)),Va=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 $n(e){throw new Va(e)}function Ua(e){ft.error(new pt(e))}var Na=Object.prototype.toString;function On(e,t){return Na.call(e)==="[object "+t+"]"}function ka(e){return On(e,"String")}function Ha(e){return On(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 q=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]:Ia;return new Wa({locale:n,messages:Fa})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();Ka(q,"$i18n",q.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)){Oe("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)||d(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]"},d=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 xn={};Object.defineProperty(xn,"__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=xn.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(h).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 Mn(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){Mn(u,r,i,o,s,"next",c)}function s(c){Mn(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,d,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,d=!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(),Ua(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(),d=!0,v=y,[3,10];case 9:try{!f&&E.return!=null&&E.return()}finally{if(d)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 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 ds(e,t,n){return t&&Vn(e.prototype,t),n&&Vn(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 Un=[],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&&(Oe("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===R.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===R.FORM}},{key:"isListControl",value:function(n){return n.controlType===R.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===R.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&&(Oe("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",Un),ne(Re,"staticRegisteredTypes",new Set(Un.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.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 xe(e,t,n){return Hn()?xe=Reflect.construct:xe=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},xe.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 xe(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 Me(e,t){return Me=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Me(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&&Me(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}}),Me(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 M(){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 Fs(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function D(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Fs(t)&&typeof e=="string"&&!e)}function Is(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(d,v){var E=function(_){return r(_),_.length?v(new Kn(_,St(_))):d()},w=Ds(e);Gn(w,n,E)});return i.catch(function(d){return d}),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(d,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))):d()};o.length||(r(a),d()),o.forEach(function(w){var p=e[w];u.indexOf(w)!==-1?Gn(p,n,E):Is(p,n,E)})});return f.catch(function(d){return d}),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)||D(t,u||e.type))&&r.push(M(i.messages.required,e.fullField))}function $s(e,t,n,r,i){(/^\s+$/.test(t)||t==="")&&r.push(M(i.messages.whitespace,e.fullField))}var Ft={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(Ft.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(Ft.url)},hex:function(t){return typeof t=="string"&&!!t.match(Ft.hex)}};function Os(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(M(i.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(M(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,d=typeof t=="number",v=typeof t=="string",E=Array.isArray(t);if(d?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(M(i.messages[f].len,e.fullField,e.len)):o&&!s&&a<e.min?r.push(M(i.messages[f].min,e.fullField,e.min)):s&&!o&&a>e.max?r.push(M(i.messages[f].max,e.fullField,e.max)):o&&s&&(a<e.min||a>e.max)&&r.push(M(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(M(i.messages[oe],e.fullField,e[oe].join(", ")))}function xs(e,t,n,r,i){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(M(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(M(i.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var g={required:Zn,whitespace:$s,type:Os,range:Rs,enum:Ps,pattern:xs};function Ms(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t,"string")&&!e.required)return n();g.required(e,t,r,u,i,"string"),D(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(D(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),D(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(D(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(D(t)&&!e.required)return n();g.required(e,t,r,u,i),D(t)||g.type(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(D(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 Us(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(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(D(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(D(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(D(t,"string")&&!e.required)return n();g.required(e,t,r,u,i),D(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(D(t,"date")&&!e.required)return n();if(g.required(e,t,r,u,i),!D(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 It(e,t,n,r,i){var u=e.type,o=[],s=e.required||!e.required&&r.hasOwnProperty(e.field);if(s){if(D(t,u)&&!e.required)return n();g.required(e,t,r,o,i,u),D(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(D(t)&&!e.required)return n();g.required(e,t,r,u,i)}n(u)}var Ae={string:Ms,method:Ts,number:Ls,boolean:js,regexp:qs,integer:Vs,float:Us,array:Ns,object:ks,enum:Ws,pattern:zs,date:Gs,url:It,hex:It,email:It,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,d,v={},E=o.keys||Object.keys(this.rules);E.forEach(function(p){f=i.rules[p],d=u[p],f.forEach(function(_){var l=_;typeof l.transform=="function"&&(u===t&&(u=k({},u)),d=u[p]=l.transform(d)),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:d,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,M(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(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"?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 $t(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 $t(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 Ot(e){return Ys(e)||rr(e)||ur(e)||rc()}function ur(e,t){if(!!e){if(typeof e=="string")return $t(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 $t(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 T=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,d=i.name,v=i.setting;u&&o&&s||$n("The ".concat(d," 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(Ot(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(d){s.hasOwnProperty(d)&&delete s[d]}),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,d=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:d,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,Ot(i.add))}i.remove&&this.removeSettingItem(i.remove),i.update}}}]),t}();A(T,"controlName","\u63A7\u4EF6"),A(T,"controlIcon","icon"),A(T,"controlType","control"),A(T,"controlFieldType",void 0),A(T,"controlEventKeys",[]),A(T,"controlCustomEvents",[]),A(T,"setting",[]),A(T,"__is_control__",!0),A(T,"removeSettingItem",ar),A(T,"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,Ot(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||$n("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 d;this.fieldType=(d=n==null?void 0:n.fieldType)!==null&&d!==void 0?d: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 C(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 I(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&&xt(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:C(e)}function xt(e,t){return xt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},xt(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 Mt(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=Mt(n);function n(r){Rt(this,n);var i;i=t.call(this,r),I(C(i),"dataBind",{}),I(C(i),"caption",{type:"string",required:!0,message:q.getMessage("pleaseEnterCaption")}),I(C(i),"isHideCaption",{type:"boolean"}),I(C(i),"labelPosition",{type:"enum",enum:["top","left"]}),I(C(i),"defaultState",{type:"enum",enum:["default","readonly"]}),I(C(i),"required",{type:"boolean"}),I(C(i),"captionTip",{type:"string",required:!1,message:q.getMessage("pleaseEnterCaptionTip")});var u={fieldCode:{type:"string",required:!0,message:q.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:q.getMessage("pleaseEnterFieldCode")}};if(sc(r.dataBind,Pe))i.dataBind={type:"object",required:!0,fields:te(u),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:te(u),message:q.getMessage("pleaseEnterFieldCode")}}),i.dataBind=o}return r.isShowCaptionTip&&(i.captionTip.required=!0),i}return n}(wt),dc=function(e){Pt(n,e);var t=Mt(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:q.getMessage("runtimeRequired",{caption:r.caption})}),i}return n}(Wn),Tt=function(e){Pt(n,e);var t=Mt(n);function n(r){Rt(this,n);var i;i=t.call(this,r),I(C(i),"caption",void 0),I(C(i),"isHideCaption",void 0),I(C(i),"isShowCaptionTip",void 0),I(C(i),"captionTip",void 0),I(C(i),"labelPosition",void 0),I(C(i),"dataBind",void 0),I(C(i),"defaultValue",void 0),I(C(i),"placeholder",void 0),I(C(i),"defaultState",void 0),I(C(i),"required",void 0),I(C(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 d;i.placeholder=(d=r==null?void 0:r.placeholder)!==null&&d!==void 0?d:"";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);I(Tt,"Rules",pc),I(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 Ve(e){return Ve=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ve(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=Ve(e),i;if(t){var u=Ve(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}(T);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 Ue(e){return Ue=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ue(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 Fc(e){var t=Sc();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 Bc(this,i)}}var Ic=function(e){wc(n,e);var t=Fc(n);function n(r){return bc(this,n),t.call(this,r)}return n}(X);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 Dc(e){if(Array.isArray(e))return Vt(e)}function Cc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function $c(){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)||Oc(e)||$c()}function Oc(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 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 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 xc(e){if(Array.isArray(e))return Ut(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 Mc(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 Vc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Uc(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function 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 xc(e)||Vc(e)||Kc(e)||Uc()}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 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 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 Ic(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 Mc(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(d){return d.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 d=f.filter(function(v){return!!v});return mr(c).concat(mr(d))}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}(T);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(d){return!!d});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}(T);He(wl,"controlFieldType",U.LIST);function L(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Fr(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 We(e){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},We(e)}function Ir(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:L(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 Fl=function(e){Ir(n,e);var t=Dr(n);function n(r){Fr(this,n);var i;return i=t.call(this,r),j(L(i),"caption",{type:"string",required:!0,message:q.getMessage("pleaseEnterCaption")}),j(L(i),"width",{type:"number",required:!1,message:q.getMessage("pleaseEnterColumnWidth")}),i.width.required=r.widthType==="px",i}return n}(wt),Il=function(e){Ir(n,e);var t=Dr(n);function n(r){Fr(this,n);var i;i=t.call(this,r),j(L(i),"widthType",void 0),j(L(i),"width",void 0),j(L(i),"caption",void 0),j(L(i),"dataBind",void 0),j(L(i),"autoWidth",void 0),j(L(i),"fixed",void 0),j(L(i),"sort",void 0),j(L(i),"align",void 0),j(L(i),"colSpan",void 0),j(L(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);j(Il,"Rules",Fl);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===h.SUBTABLE?ze(n.props.headers,t):Kt(n)?ze(n==null?void 0:n.children,t):n.controlType===R.FORM&&t(n)})}const $r=[h.AMOUNT,h.CALC,h.DATE_RANGE],Or={amount:{caption:"\u91D1\u989D",fieldType:U.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:U.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:U.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:U.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:U.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:U.TIMESTAMP}};function Dl(e){let t=[];return ze(e,n=>{n.controlType===R.FORM?t.push(n):(n.type,h.SUBTABLE)}),t}function Cl(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===h.TITLE)return n;if($r.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 $l(e){const t=new ee,n=[];return e.forEach(r=>{if(!(r.parentId||!r.dataBind))if($r.includes(r.type)){const i=r.dataBind,u=r.datasourceBind;Object.keys(i).forEach(o=>{const s=i[o],c=Or[o].fieldType,a=r.caption+"_"+Or[o].caption,f=Ge(c);if(!f)return;const d={caption:a,dataBind:s};o==="currency"&&(d.optionConfig="datasource",d.datasourceBind=u);const v=t.createControlInstance(f,{props:d});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 Ol(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=[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],Pl=[h.CALC],xl={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,d;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===h.OPERATION_COLUMN&&Object.entries(xl).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===h.SUBTABLE&&(p.caption=t.caption+"_"+p.caption),v===h.VUE_FORM_ITEM&&(p.caption=e.props.controlExportName||e.name),(e.controlType===R.FORM||e.controlType===R.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===h.VUE_FORM_ITEM){let _="element";((a=(c=e.props)==null?void 0:c.dataBind)==null?void 0:a.fieldCode)!==void 0&&((d=(f=e.props)==null?void 0:f.dataBind)==null?void 0:d.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===R.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=U,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 Ml{constructor(){this.designer=new ee}ListPageBuilder(){const t=this.designer.createControlInstance(h.LIST_VIEW),n=this.designer.createControlInstance(h.SIMPLE_SEARCH),r=this.designer.createControlInstance(h.GRID_TABLE),i=this.designer.createControlInstance(h.CREATE_FORM_LIST_BUTTON),u=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(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(h.LIST_VIEW);t.props.countType="async";const n=this.designer.createControlInstance(h.SIMPLE_SEARCH),r=this.designer.createControlInstance(h.GRID_TABLE),i=this.designer.createControlInstance(h.EXPORT_LIST_BUTTON),u=this.designer.createControlInstance(h.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(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}}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 xr(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),xr(this,"visible",void 0),xr(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 Mr(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&&Mr(e.prototype,t),n&&Mr(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 Vl=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 Ul(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){Ul(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 Fe(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:Fe(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(Fe(i),"maxLength",void 0),Xe(Fe(i),"minLength",void 0),Xe(Fe(i),"placeholder",void 0),Xe(Fe(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 Ff(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 If(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 $f(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Of(e){var t=$f();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){If(n,e);var t=Of(n);function n(r){Sf(this,n);var i;i=t.call(this,r),Ff(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 xf(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 Mf(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 Mf(this,i)}}var qf=function(e){xf(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 Vf(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 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&&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){Uf(n,e);var t=Wf(n);function n(r){Vf(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 Vl(yn(hn({},n),{props:np(n.component,"props"in n?n.props:void 0)}))}}function ip(e){var t=e.fields.reduce(function(i,u){return i.set(u.key,u),i},new Map);function n(i){return new Qt(yn(hn({},i),{items:i.items.map(rp(t)).filter(Boolean)}))}function r(i){return i.map(n)}return e.groups.map(function(i){return kl(i)?new en(yn(hn({},i),{items:r(i.items)})):n(i)})}class Vr{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;Ie(this.instance,i=>{t.push(i),n.set(i.id,i),Nr(i,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function Ur(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===R.FORM){const n=e.props.dataBind;n instanceof Pe?Ur(t,n,e):Object.values(n).forEach(r=>{Ur(t,r,e)})}}function Ie(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{t(r),Kt(r)&&Ie(r.children,t),Cr(r)&&Ie(r.props.headers,t)})}function vn(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&&!vn(t);)t=t.parent;return t}function kr(e){const t=[e];return Ie(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 Vr(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)===R.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((d,v)=>{const E=new en(d),w=f.findIndex(_=>_.title===d.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(d=>this.formatGroupSetting(d,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===R.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===R.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){Oe(`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===R.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=Ml,m.Designer=ee,m.Driven=Hr,m.Store=Vr,m.checkSchema=Zt,m.fillModelBindInfoListFieldCode=Cl,m.findInstanceDataScopeParent=De,m.generatePermissions=Se,m.getColumnTypeFromFiledType=Ge,m.getColumnsFromFiledType=Ol,m.getColumnsFromModelBindInfoList=$l,m.getDataScopeFlatInstances=kr,m.getMasterFormControls=Dl,m.getModelBindInfoList=Jt,m.hasChildrenControl=Kt,m.hasHeaderControl=Cr,m.isDataScopeInstance=vn,m.loop=Ie,m.loopFormControl=ze,m.toSchema=Xt,Object.defineProperty(m,"__esModule",{value:!0})});
1
+ var sp=Object.defineProperty;var Kr=Object.getOwnPropertySymbols;var cp=Object.prototype.hasOwnProperty,lp=Object.prototype.propertyIsEnumerable;var Xr=(m,C,O)=>C in m?sp(m,C,{enumerable:!0,configurable:!0,writable:!0,value:O}):m[C]=O,de=(m,C)=>{for(var O in C||(C={}))cp.call(C,O)&&Xr(m,O,C[O]);if(Kr)for(var O of Kr(C))lp.call(C,O)&&Xr(m,O,C[O]);return m};var mn=(m,C,O)=>new Promise((ut,De)=>{var ot=G=>{try{he(O.next(G))}catch(ye){De(ye)}},at=G=>{try{he(O.throw(G))}catch(ye){De(ye)}},he=G=>G.done?ut(G.value):Promise.resolve(G.value).then(ot,at);he((O=O.apply(m,C)).next())});(function(m,C){typeof exports=="object"&&typeof module!="undefined"?C(exports):typeof define=="function"&&define.amd?define(["exports"],C):(m=typeof globalThis!="undefined"?globalThis:m||self,C(m.modelDrivenDriven={}))})(this,function(m){"use strict";var C="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",ut="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",De="\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",Jr="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Zr="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Qr="\u8BF7\u7ED1\u5B9A\u8868\u5355",Yr="\u8BF7\u7ED1\u5B9A\u5217\u8868",ei="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",ti="\u8BF7\u8F93\u5165\u663E\u793A\u503C",ni="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ri="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ii="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",ui="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",oi="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",ai="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",si="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",ci="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",li="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",fi="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",pi="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",di="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",hi="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",yi="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",vi="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",_i="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",gi="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",mi="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Ei="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",bi="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",wi="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Bi="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Ai="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Si="\u8BF7\u9009\u62E9\u7701",Fi="\u8BF7\u9009\u62E9\u5E02",Ii="\u8BF7\u9009\u62E9\u533A",$i="\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",Ri="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Pi="\u8BF7\u9009\u62E9\u63A7\u4EF6",xi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Mi="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Ti="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Li="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",ji="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",qi="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Vi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ui="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ni="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ki="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Hi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Wi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",zi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Gi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ki="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Xi="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Ji="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Zi="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Qi="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Yi="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",eu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",tu={isNotNumber:C,isNotString:O,isNotObject:ut,isNotArray:De,isNotBoolean:ot,runtimeRequired:at,pleaseEnterCaption:he,pleaseEnterCaptionTip:G,pleaseEnterRowCaption:ye,pleaseEnterPlaceholder:Jr,pleaseEnterFieldCode:Zr,pleaseEnterForm:Qr,pleaseEnterList:Yr,pleaseEnterProcess:ei,pleaseEnterLabel:ti,pleaseEnterValue:ni,bizKeyNotBindFiled:ri,pleaseSelectOneField:ii,pleaseEnterNumberRange:ui,pleaseEnterAValueGreaterThanMin:oi,pleaseEnterAValueLessThanMax:ai,numberRangeSetError:si,stringRangeError:ci,attachmentMaxSize:li,pleaseEnterTotalScoreSetting:fi,theTotalScoreMustNotBeLessThan1:pi,scoreDefaultValueRange:di,attachmentLimitError:hi,PleaseReselectTheOptionalQuantity:yi,TheMaximumLengthIsGreaterThanTheMinimumLength:vi,TheMinimumLengthIsGreaterThanTheMaximumLength:_i,PleaseSelectTheCorrectOptionSettings:gi,optionIdIsRepeat:mi,optionIsRequired:Ei,pleaseEnterDataCode:bi,pleaseEnterValueFieldCode:wi,pleaseEnterSvcCode:Bi,pleaseBindAtLeastOneDisplayValue:Ai,pleaseSelectProvince:Si,pleaseSelectCity:Fi,pleaseSelectDistrict:Ii,limitRowsCannotBeLessThan0:$i,TheNumberOfRowsCannotBeLessThanMinRows:Di,pleaseEnterColumnWidth:Ci,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Oi,pleaseCompleteAllRulesAndConditions:Ri,pleaseSelectControl:Pi,pleaseSelectAtLeastOneColumn:xi,pleaseSelectFillBackMode:Mi,pleaseSelectDashboard:Ti,rootNodeIsRequired:Li,theViewNameCannotBeEmpty:ji,pleaseSelectOcrType:qi,pleaseSelectAtLeastOneFieldToFillIn:Vi,pleaseChooseAtLeastOne:Ui,pleaseEnterButtonContent:Ni,pleaseEnterDataCodeInDataSetting:ki,pleaseEnterValueFieldCodeInDataSetting:Hi,pleaseEnterSvcCodeInDataSetting:Wi,pleaseBindAtLeastOneDisplayValueInDataSetting:zi,rootNodeIsRequiredInDataSetting:Gi,pleaseEnterMaxHeight:Ki,pleaseEnter:Xi,pleaseEnterWatermark:Ji,pleaseEnterFileName:Zi,pleaseUploadAtLeastOnePrintTemplate:Qi,pleaseAssignBusiness:Yi,pleaseAssignExternal:eu},nu="Please enter a number",ru="Please enter a string",iu="Please enter an object",uu="Please enter an array",ou="Please enter a boolean",au="{caption} Required",su="Please enter the title",cu="Please enter the bubble prompt",lu="Please enter the row title",fu="Please enter the prompt text",pu="Please bind data items",du="Please bind the form",hu="Please bind the list",yu="Please bind the process",vu="Please enter the displayed value",_u="Please enter the stored value",gu="The document number is not bound to the data item",mu="Please select at least one display field",Eu="Please enter a value greater than or equal to {min} and less than or equal to {max}",bu="Please enter a value greater than or equal to {min}",wu="Please enter a value less than or equal to {max}",Bu="The value range is set incorrectly",Au="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Su="The attachment size must be between 0MB and 1000MB",Fu="Please fill in the total score setting",Iu="The total score cannot be less than 1",$u="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",Ru="The minimum length of the control must be less than the maximum length",Pu="Please select the correct option setting",xu="Option ID cannot be repeated",Mu="Please enter at least one option",Tu="Please bind the data source",Lu="Please bind the stored value",ju="Please bind the service",qu="At least one display value must be bound",Vu="Please select a province",Uu="Please select a city",Nu="Please select a district",ku="The minimum number of lines to fill in cannot be less than 0",Hu="The number of rows cannot be less than {min} rows",Wu="Please enter the column width",zu="Please set the logical relationship of all rule conditions",Gu="Please complete all rules and conditions",Ku="please select control",Xu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ju="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Zu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Qu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Yu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",eo="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",to="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",no="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ro="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",io="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",uo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",oo="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ao="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",so="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",co="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",lo="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",fo="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",po="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ho={isNotNumber:nu,isNotString:ru,isNotObject:iu,isNotArray:uu,isNotBoolean:ou,runtimeRequired:au,pleaseEnterCaption:su,pleaseEnterCaptionTip:cu,pleaseEnterRowCaption:lu,pleaseEnterPlaceholder:fu,pleaseEnterFieldCode:pu,pleaseEnterForm:du,pleaseEnterList:hu,pleaseEnterProcess:yu,pleaseEnterLabel:vu,pleaseEnterValue:_u,bizKeyNotBindFiled:gu,pleaseSelectOneField:mu,pleaseEnterNumberRange:Eu,pleaseEnterAValueGreaterThanMin:bu,pleaseEnterAValueLessThanMax:wu,numberRangeSetError:Bu,stringRangeError:Au,attachmentMaxSize:Su,pleaseEnterTotalScoreSetting:Fu,theTotalScoreMustNotBeLessThan1:Iu,scoreDefaultValueRange:$u,attachmentLimitError:Du,PleaseReselectTheOptionalQuantity:Cu,TheMaximumLengthIsGreaterThanTheMinimumLength:Ou,TheMinimumLengthIsGreaterThanTheMaximumLength:Ru,PleaseSelectTheCorrectOptionSettings:Pu,optionIdIsRepeat:xu,optionIsRequired:Mu,pleaseEnterDataCode:Tu,pleaseEnterValueFieldCode:Lu,pleaseEnterSvcCode:ju,pleaseBindAtLeastOneDisplayValue:qu,pleaseSelectProvince:Vu,pleaseSelectCity:Uu,pleaseSelectDistrict:Nu,limitRowsCannotBeLessThan0:ku,TheNumberOfRowsCannotBeLessThanMinRows:Hu,pleaseEnterColumnWidth:Wu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:zu,pleaseCompleteAllRulesAndConditions:Gu,pleaseSelectControl:Ku,pleaseSelectDashboard:Xu,theViewNameCannotBeEmpty:Ju,pleaseSelectOcrType:Zu,pleaseSelectAtLeastOneFieldToFillIn:Qu,pleaseChooseAtLeastOne:Yu,pleaseEnterButtonContent:eo,pleaseEnterDataCodeInDataSetting:to,pleaseEnterValueFieldCodeInDataSetting:no,pleaseEnterSvcCodeInDataSetting:ro,pleaseBindAtLeastOneDisplayValueInDataSetting:io,rootNodeIsRequiredInDataSetting:uo,pleaseEnterMaxHeight:oo,pleaseEnter:ao,pleaseEnterWatermark:so,pleaseEnterFileName:co,pleaseUploadAtLeastOnePrintTemplate:lo,pleaseAssignBusiness:fo,pleaseAssignExternal:po},yo="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vo="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_o="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",go="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",mo="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Eo="{caption}\u5FC5\u9808",bo="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wo="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Bo="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ao="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",So="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Fo="\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",$o="\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",Ro="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Po="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xo="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Mo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",To="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Lo="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",jo="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",qo="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Vo="\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",No="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ko="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ho="\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",Wo="\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",zo="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Go="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Ko="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Xo="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Jo="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Zo="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Qo="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Yo="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ea="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ta="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",na="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ra="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ia="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ua="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",oa="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",aa="please select control",sa="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ca="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",la="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",fa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",pa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",da="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ha="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ya="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",va="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",_a="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ga="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ma="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ea="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ba="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",wa="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ba="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Aa="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Sa="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Fa={isNotNumber:yo,isNotString:vo,isNotObject:_o,isNotArray:go,isNotBoolean:mo,runtimeRequired:Eo,pleaseEnterCaption:bo,pleaseEnterCaptionTip:wo,pleaseEnterRowCaption:Bo,pleaseEnterPlaceholder:Ao,pleaseEnterFieldCode:So,pleaseEnterForm:Fo,pleaseEnterList:Io,pleaseEnterProcess:$o,pleaseEnterLabel:Do,pleaseEnterValue:Co,bizKeyNotBindFiled:Oo,pleaseSelectOneField:Ro,pleaseEnterNumberRange:Po,pleaseEnterAValueGreaterThanMin:xo,pleaseEnterAValueLessThanMax:Mo,numberRangeSetError:To,stringRangeError:Lo,attachmentMaxSize:jo,pleaseEnterTotalScoreSetting:qo,theTotalScoreMustNotBeLessThan1:Vo,scoreDefaultValueRange:Uo,attachmentLimitError:No,PleaseReselectTheOptionalQuantity:ko,TheMaximumLengthIsGreaterThanTheMinimumLength:Ho,TheMinimumLengthIsGreaterThanTheMaximumLength:Wo,PleaseSelectTheCorrectOptionSettings:zo,optionIdIsRepeat:Go,optionIsRequired:Ko,pleaseEnterDataCode:Xo,pleaseEnterValueFieldCode:Jo,pleaseEnterSvcCode:Zo,pleaseBindAtLeastOneDisplayValue:Qo,pleaseSelectProvince:Yo,pleaseSelectCity:ea,pleaseSelectDistrict:ta,limitRowsCannotBeLessThan0:na,TheNumberOfRowsCannotBeLessThanMinRows:ra,pleaseEnterColumnWidth:ia,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ua,pleaseCompleteAllRulesAndConditions:oa,pleaseSelectControl:aa,pleaseSelectDashboard:sa,theViewNameCannotBeEmpty:ca,pleaseSelectOcrType:la,pleaseSelectAtLeastOneFieldToFillIn:fa,pleaseChooseAtLeastOne:pa,pleaseEnterButtonContent:da,pleaseEnterDataCodeInDataSetting:ha,pleaseEnterValueFieldCodeInDataSetting:ya,pleaseEnterSvcCodeInDataSetting:va,pleaseBindAtLeastOneDisplayValueInDataSetting:_a,rootNodeIsRequiredInDataSetting:ga,pleaseEnterMaxHeight:ma,pleaseEnter:Ea,pleaseEnterWatermark:ba,pleaseEnterFileName:wa,pleaseUploadAtLeastOnePrintTemplate:Ba,pleaseAssignBusiness:Aa,pleaseAssignExternal:Sa},Ia={zhCN:tu,enUS:ho,jaJP:Fa},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 $a="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 R;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(R||(R={}));var 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.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"})(h||(h={}));var U;(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"})(U||(U={}));var P,Ca=(P={},x(P,"array","array-column"),x(P,"auto_number","auto-number-column"),x(P,"decimal","decimal-column"),x(P,"department","department-column"),x(P,"file","file-column"),x(P,"image","image-column"),x(P,"location","location-column"),x(P,"people","employee-column"),x(P,"text","text-column"),x(P,"timescope","timescope-column"),x(P,"timestamp","timestamp-column"),x(P,"varchar","varchar-column"),x(P,"relation","varchar-column"),P),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 Ra(e){if(Array.isArray(e))return ct(e)}function Pa(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 Ce(e,t,n){return In()?Ce=Reflect.construct:Ce=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},Ce.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 xa(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 Ta(){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 La(e,t){return t&&(ja(t)==="object"||typeof t=="function")?t:Pa(e)}function _e(e,t){return _e=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},_e(e,t)}function Fn(e){return Ra(e)||Ma(e)||qa(e)||Ta()}function ja(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function qa(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||!xa(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 Ce(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 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 $n(e){var t=In();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 La(this,i)}}var ft=console;function Oe(){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(Fn(i)))}function Dn(){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(Fn(i)))}function Va(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var pt=function(e){Sn(n,e);var t=$n(n);function n(r){An(this,n);var i;return i=t.call(this,r),i.name="\u{1F4A5} Driven Error",i.message=r?Va(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=$n(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 Cn(e){throw new Ua(e)}function Na(e){ft.error(new pt(e))}var ka=Object.prototype.toString;function On(e,t){return ka.call(e)==="[object "+t+"]"}function Ha(e){return On(e,"String")}function Wa(e){return On(e,"Promise")}var za=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();Wa(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&&!Ha(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 Ga(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 Ka(e,t,n){return t&&Rn(e.prototype,t),n&&Rn(e,n),e}function Xa(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(){Ga(this,e)}return Ka(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]:$a;return new za({locale:n,messages:Ia})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();Xa(q,"$i18n",q.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)){Oe("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 Ja=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Za={exports:{}};(function(e){(function(t){var n=function(l,y,b){if(!a(y)||d(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]"},d=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=_})(Ja)})(Za);var xn={};Object.defineProperty(xn,"__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 Qa=xn.default=dt;function Mn(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function te(e){if(e!==void 0)return(typeof e=="undefined"?"undefined":Mn(e))==="object"?Qa(e):e}function ht(e){return Object.prototype.toString.call(e)==="[object Object]"}function Ya(e){return e!=null&&(typeof e=="undefined"?"undefined":Mn(e))==="object"&&Array.isArray(e)===!1}function me(e){return Array.isArray(e)}function yt(e){return typeof e=="string"}function es(e){return Object.values(h).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 ts(e){if(Array.isArray(e))return vt(e)}function Tn(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 ns(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){Tn(u,r,i,o,s,"next",c)}function s(c){Tn(u,r,i,o,s,"throw",c)}o(void 0)})}}function rs(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 is(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 us(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function os(){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 ts(e)||us(e)||as(e)||os()}function as(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 ss(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 qn=function(){function e(){rs(this,e),jn(this,"_events",new Map),jn(this,"debug",!1)}return is(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 ns(function(){var s,c,a,f,d,v,E,w,p,_,l,y;return ss(this,function(b){switch(b.label){case 0:if(s=o._events.get(n),c=[],!s)return[3,10];a=s.slice(),f=!0,d=!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&&Dn.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&&Dn.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(),Na(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(),d=!0,v=y,[3,10];case 9:try{!f&&E.return!=null&&E.return()}finally{if(d)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 cs(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 ls(e,t,n){return t&&Vn(e.prototype,t),n&&Vn(e,n),e}function fs(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"}],Ee=function(){function e(){cs(this,e)}return ls(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}();fs(Ee,"events",ps);function ds(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 hs(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 Nn=[],Re=function(){function e(t){ds(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 hs(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&&(Oe("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===R.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===R.FORM}},{key:"isListControl",value:function(n){return n.controlType===R.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===R.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&&(Oe("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",Nn),ne(Re,"staticRegisteredTypes",new Set(Nn.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:""},ys=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},kn;(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"})(kn||(kn={}));var Hn;(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"})(Hn||(Hn={}));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 vs=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 _s(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 xe(e,t,n){return Wn()?xe=Reflect.construct:xe=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},xe.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 gs(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 ms(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Es(e,t){return t&&(bs(t)==="object"||typeof t=="function")?t:_s(e)}function we(e,t){return we=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},we(e,t)}function bs(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||!ms(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 xe(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 Wn(){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 ws(e){var t=Wn();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 Es(this,i)}}var wt=function e(t){Et(this,e),re(this,"isHide",{type:"boolean"})},zn=function(e){gs(n,e);var t=ws(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 vs(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",zn);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 Bs(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 Me(e,t){return Me=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Me(e,t)}function As(){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 As()?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&&Me(a,o.prototype),a},Te.apply(null,arguments)}function Ss(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||!Ss(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}}),Me(i,r)},At(e)}var Fs=/%[sdj%]/g,Gn=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Gn=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 M(){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(Fs,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 $(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Is(t)&&typeof e=="string"&&!e)}function $s(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 Kn(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 Xn=function(e){Bs(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(d,v){var E=function(_){return r(_),_.length?v(new Xn(_,St(_))):d()},w=Ds(e);Kn(w,n,E)});return i.catch(function(d){return d}),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(d,v){var E=function(p){if(a.push.apply(a,p),c++,c===s)return r(a),a.length?v(new Xn(a,St(a))):d()};o.length||(r(a),d()),o.forEach(function(w){var p=e[w];u.indexOf(w)!==-1?Kn(p,n,E):$s(p,n,E)})});return f.catch(function(d){return d}),f}function Jn(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 Zn(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 Qn(e,t,n,r,i,u){e.required&&(!n.hasOwnProperty(e.field)||$(t,u||e.type))&&r.push(M(i.messages.required,e.fullField))}function Os(e,t,n,r,i){(/^\s+$/.test(t)||t==="")&&r.push(M(i.messages.whitespace,e.fullField))}var Ft={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(Ft.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(Ft.url)},hex:function(t){return typeof t=="string"&&!!t.match(Ft.hex)}};function Rs(e,t,n,r,i){if(e.required&&t===void 0){Qn(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(M(i.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(M(i.messages.types[o],e.fullField,e.type))}function Ps(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,d=typeof t=="number",v=typeof t=="string",E=Array.isArray(t);if(d?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(M(i.messages[f].len,e.fullField,e.len)):o&&!s&&a<e.min?r.push(M(i.messages[f].min,e.fullField,e.min)):s&&!o&&a>e.max?r.push(M(i.messages[f].max,e.fullField,e.max)):o&&s&&(a<e.min||a>e.max)&&r.push(M(i.messages[f].range,e.fullField,e.min,e.max))}var oe="enum";function xs(e,t,n,r,i){e[oe]=Array.isArray(e[oe])?e[oe]:[],e[oe].indexOf(t)===-1&&r.push(M(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(M(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(M(i.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var g={required:Qn,whitespace:Os,type:Rs,range:Ps,enum:xs,pattern:Ms};function Ts(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if($(t,"string")&&!e.required)return n();g.required(e,t,r,u,i,"string"),$(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 Ls(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if($(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 js(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),$(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 qs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if($(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 Vs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if($(t)&&!e.required)return n();g.required(e,t,r,u,i),$(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($(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)&&!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 ks(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 Hs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if($(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 Ws="enum";function zs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if($(t)&&!e.required)return n();g.required(e,t,r,u,i),t!==void 0&&g[Ws](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($(t,"string")&&!e.required)return n();g.required(e,t,r,u,i),$(t,"string")||g.pattern(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($(t,"date")&&!e.required)return n();if(g.required(e,t,r,u,i),!$(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 Xs(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 It(e,t,n,r,i){var u=e.type,o=[],s=e.required||!e.required&&r.hasOwnProperty(e.field);if(s){if($(t,u)&&!e.required)return n();g.required(e,t,r,o,i,u),$(t,u)||g.type(e,t,r,o,i)}n(o)}function Js(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if($(t)&&!e.required)return n();g.required(e,t,r,u,i)}n(u)}var Ae={string:Ts,method:Ls,number:js,boolean:qs,regexp:Vs,integer:Us,float:Ns,array:ks,object:Hs,enum:zs,pattern:Gs,date:Ks,url:It,hex:It,email:It,required:Xs,any:Js};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 Dt=$t();function J(e){this.rules=null,this._messages=Dt,this.define(e)}J.prototype={messages:function(t){return t&&(this._messages=Zn($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 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===Dt&&(a=$t()),Zn(a,o.messages),o.messages=a}else o.messages=this.messages();var f,d,v={},E=o.keys||Object.keys(this.rules);E.forEach(function(p){f=i.rules[p],d=u[p],f.forEach(function(_){var l=_;typeof l.transform=="function"&&(u===t&&(u=k({},u)),d=u[p]=l.transform(d)),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:d,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(Jn(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(Jn(l)):o.error&&(S=[o.error(l,M(o.messages.required,l.field))]),_(S);var z={};if(l.defaultField)for(var zr in p.value)p.value.hasOwnProperty(zr)&&(z[zr]=l.defaultField);z=k(k({},z),p.rule.fields);for(var fe in z)if(z.hasOwnProperty(fe)){var ap=Array.isArray(z[fe])?z[fe]:[z[fe]];z[fe]=ap.map(b.bind(null,fe))}var Gr=new J(z);Gr.messages(o.messages),p.rule.options&&(p.rule.options.messages=o.messages,p.rule.options.error=o.error),Gr.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(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"?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=Gn,J.messages=Dt,J.validators=Ae;var Zs={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 Qs(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new J(e);return n.messages(Object.assign(Zs,t)),n}var Yn=new qn;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 Ys(e){if(Array.isArray(e))return e}function ec(e){if(Array.isArray(e))return Ct(e)}function er(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 tr(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){er(u,r,i,o,s,"next",c)}function s(c){er(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 nr(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 nc(e,t,n){return t&&nr(e.prototype,t),n&&nr(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 rr(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 rc(){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 ic(){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 ur(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 uc(e){return Ys(e)||ir(e)||or(e)||rc()}function Ot(e){return ec(e)||ir(e)||or(e)||ic()}function oc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function or(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 ar(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 T=function(){function t(n){var r=this;tc(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",cr),A(this,"removeSetting",sr),this._callControlHooks("preInstance",n);var i=rr(this,t)?this.constructor:void 0,u=i.controlName,o=i.controlIcon,s=i.controlType,c=i.controlFieldType,a=i.controlEventKeys,f=i.controlCustomEvents,d=i.name,v=i.setting;u&&o&&s||Cn("The ".concat(d," 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,(rr(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 nc(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=uc(i),c=s[0],a=s.slice(1);return(o=Yn).emit.apply(o,[c,this].concat(Ot(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 tr(function(){var i,u,o;return ar(this,function(s){switch(s.label){case 0:return i=ur({},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 tr(function(){var o,s,c,a;return ar(this,function(f){switch(f.label){case 0:return[4,u.preValidate()];case 1:o=f.sent(),s=o!==void 0?o:ur({},u.rules),Array.isArray(i)&&i.forEach(function(d){s.hasOwnProperty(d)&&delete s[d]}),c=Qs(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,d=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:d,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,Ot(i.add))}i.remove&&this.removeSettingItem(i.remove),i.update}}}]),t}();A(T,"controlName","\u63A7\u4EF6"),A(T,"controlIcon","icon"),A(T,"controlType","control"),A(T,"controlFieldType",void 0),A(T,"controlEventKeys",[]),A(T,"controlCustomEvents",[]),A(T,"setting",[]),A(T,"__is_control__",!0),A(T,"removeSettingItem",sr),A(T,"updateSettingItem",cr);function sr(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 cr(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=="undefined"?"undefined":oc(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,Ot(t.showItems))}}}})}function ac(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function lr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function sc(e,t,n){return t&&lr(e.prototype,t),n&&lr(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 cc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var Le=function(){function t(n){ac(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=cc(this,t)?this.constructor:void 0,i=r.controlType,u=r.controlFieldType,o=r.name,s=r.controlCustomEvents;i||Cn("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 d;this.fieldType=(d=n==null?void 0:n.fieldType)!==null&&d!==void 0?d:u;var v;this.pageStatus=(v=n==null?void 0:n.pageStatus)!==null&&v!==void 0?v:mt.UNKNOWN}return sc(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 D(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 I(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&&xt(e,t)}function lc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function fc(e,t){return t&&(pc(t)==="object"||typeof t=="function")?t:D(e)}function xt(e,t){return xt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},xt(e,t)}function pc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function dc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Mt(e){var t=dc();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 fc(this,i)}}var hc=function(e){Pt(n,e);var t=Mt(n);function n(r){Rt(this,n);var i;i=t.call(this,r),I(D(i),"dataBind",{}),I(D(i),"caption",{type:"string",required:!0,message:q.getMessage("pleaseEnterCaption")}),I(D(i),"isHideCaption",{type:"boolean"}),I(D(i),"labelPosition",{type:"enum",enum:["top","left"]}),I(D(i),"defaultState",{type:"enum",enum:["default","readonly"]}),I(D(i),"required",{type:"boolean"}),I(D(i),"captionTip",{type:"string",required:!1,message:q.getMessage("pleaseEnterCaptionTip")});var u={fieldCode:{type:"string",required:!0,message:q.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:q.getMessage("pleaseEnterFieldCode")}};if(lc(r.dataBind,Pe))i.dataBind={type:"object",required:!0,fields:te(u),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:te(u),message:q.getMessage("pleaseEnterFieldCode")}}),i.dataBind=o}return r.isShowCaptionTip&&(i.captionTip.required=!0),i}return n}(wt),yc=function(e){Pt(n,e);var t=Mt(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:q.getMessage("runtimeRequired",{caption:r.caption})}),i}return n}(zn),Tt=function(e){Pt(n,e);var t=Mt(n);function n(r){Rt(this,n);var i;i=t.call(this,r),I(D(i),"caption",void 0),I(D(i),"isHideCaption",void 0),I(D(i),"isShowCaptionTip",void 0),I(D(i),"captionTip",void 0),I(D(i),"labelPosition",void 0),I(D(i),"dataBind",void 0),I(D(i),"defaultValue",void 0),I(D(i),"placeholder",void 0),I(D(i),"defaultState",void 0),I(D(i),"required",void 0),I(D(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 d;i.placeholder=(d=r==null?void 0:r.placeholder)!==null&&d!==void 0?d:"";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);I(Tt,"Rules",hc),I(Tt,"RuntimeRules",yc);function Lt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function vc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function 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 Ve(e){return Ve=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ve(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&&jt(e,t)}function gc(e,t){return t&&(mc(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 mc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ec(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function bc(e){var t=Ec();return function(){var r=Ve(e),i;if(t){var u=Ve(this).constructor;i=Reflect.construct(r,arguments,u)}else i=r.apply(this,arguments);return gc(this,i)}}var fr=function(e){_c(n,e);var t=bc(n);function n(r){vc(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}(T);qe(fr,"controlEventKeys",["on_change","on_focus","on_blur"]),qe(fr,"controlCustomAttributes",void 0);function wc(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 Ue(e){return Ue=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ue(e)}function Ac(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 Sc(e,t){return t&&(Fc(t)==="object"||typeof t=="function")?t:wc(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},qt(e,t)}function Fc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ic(){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 $c(e){var t=Ic();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 Sc(this,i)}}var Dc=function(e){Ac(n,e);var t=$c(n);function n(r){return Bc(this,n),t.call(this,r)}return n}(X);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 Cc(e){if(Array.isArray(e))return Vt(e)}function Oc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}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 pr(e){return Cc(e)||Oc(e)||Pc(e)||Rc()}function Pc(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(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function dr(e,t){e.parent=t,xc(e,"parent")}function Mc(e,t){e.forEach(function(n){dr(n,t)})}var hr=Symbol("targetKey");function yr(e){var t;return(t=e[hr])!==null&&t!==void 0?t:e}function vr(e,t){return Mc(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===hr?r:(c=Reflect).get.apply(c,[r,i].concat(pr(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(pr(s)));return ht(u)&&dr(u,t),f}})}function _r(e,t,n,r){var i=r!=null?r:e,u=vr(yr(n!=null?n:[]),i);Object.defineProperty(e,t,{get:function(){return u},set:function(s){u=vr(yr(s),i)},enumerable:!0})}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 Tc(e){if(Array.isArray(e))return Ut(e)}function ie(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function gr(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 Lc(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){gr(u,r,i,o,s,"next",c)}function s(c){gr(u,r,i,o,s,"throw",c)}o(void 0)})}}function jc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function mr(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 qc(e,t,n){return t&&mr(e.prototype,t),n&&mr(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=Kc(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 Vc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Nt(e,t)}function Uc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Nc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function kc(){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 Hc(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 Wc(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 zc(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Wc(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Gc(e,t){return t&&(Xc(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 Kc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Q(e),e!==null););return e}function Er(e){return Tc(e)||Nc(e)||Jc(e)||kc()}function Xc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Jc(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 Zc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Qc(e){var t=Zc();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 Gc(this,i)}}function Yc(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 el=1e4,br=function(t){Vc(r,t);var n=Qc(r);function r(i){jc(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=Uc(this,r)?this.constructor:void 0,s=o.excludes,c=o.childrenMaxLength;return u.props=new Dc(i==null?void 0:i.props),_r(ie(u),"children",i==null?void 0:i.children),u.excludes=te(s),u.childrenMaxLength=c,u}return qc(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 Lc(function(){return Yc(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(d){return d.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 d=f.filter(function(v){return!!v});return Er(c).concat(Er(d))}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 zc(Hc({},u),{children:o})}}]),r}(T);Z(br,"excludes",!1),Z(br,"childrenMaxLength",el);function kt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function tl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function nl(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 rl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ht(e,t)}function il(e,t){return t&&(ul(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 ul(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 al(e){var t=ol();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 il(this,i)}}var sl=function(e){rl(n,e);var t=al(n);function n(r,i){tl(this,n);var u;return u=t.call(this,i),nl(kt(u),"headers",void 0),_r(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 cl(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 wr(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 ll(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(c){wr(u,r,i,o,s,"next",c)}function s(c){wr(u,r,i,o,s,"throw",c)}o(void 0)})}}function fl(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 pl(e,t,n){return t&&Br(e.prototype,t),n&&Br(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=gl(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 dl(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 hl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function yl(){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(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){He(e,i,n[i])})}return e}function vl(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 Sr(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):vl(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function _l(e,t){return t&&(ml(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 gl(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Y(e),e!==null););return e}function Fr(e){return cl(e)||hl(e)||El(e)||yl()}function ml(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function El(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 bl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function wl(e){var t=bl();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 _l(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 Al=function(e){dl(n,e);var t=wl(n);function n(r){fl(this,n);var i;return i=t.call(this,r),He(ke(i),"controlType","list"),He(ke(i),"props",void 0),i.props=new sl(ke(i),r==null?void 0:r.props),i}return pl(n,[{key:"validate",value:function(i,u){var o=this,s=this,c=function(){return se(Y(n.prototype),"validate",o)};return ll(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(d){return!!d});return Fr(s).concat(Fr(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 Sr(Ar({},i),{props:Sr(Ar({},this.props),{headers:u})})}}]),n}(T);He(Al,"controlFieldType",U.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 We(e){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},We(e)}function $r(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Gt(e,t)}function Sl(e,t){return t&&(Fl(t)==="object"||typeof t=="function")?t:L(e)}function Gt(e,t){return Gt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Gt(e,t)}function Fl(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 Dr(e){var t=Il();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 Sl(this,i)}}var $l=function(e){$r(n,e);var t=Dr(n);function n(r){Ir(this,n);var i;return i=t.call(this,r),j(L(i),"caption",{type:"string",required:!0,message:q.getMessage("pleaseEnterCaption")}),j(L(i),"width",{type:"number",required:!1,message:q.getMessage("pleaseEnterColumnWidth")}),i.width.required=r.widthType==="px",i}return n}(wt),Dl=function(e){$r(n,e);var t=Dr(n);function n(r){Ir(this,n);var i;i=t.call(this,r),j(L(i),"widthType",void 0),j(L(i),"width",void 0),j(L(i),"caption",void 0),j(L(i),"dataBind",void 0),j(L(i),"autoWidth",void 0),j(L(i),"fixed",void 0),j(L(i),"sort",void 0),j(L(i),"align",void 0),j(L(i),"colSpan",void 0),j(L(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 ys(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);j(Dl,"Rules",$l);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===h.SUBTABLE?ze(n.props.headers,t):Kt(n)?ze(n==null?void 0:n.children,t):n.controlType===R.FORM&&t(n)})}const Or=[h.AMOUNT,h.CALC,h.DATE_RANGE],Rr={amount:{caption:"\u91D1\u989D",fieldType:U.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:U.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:U.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:U.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:U.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:U.TIMESTAMP}};function Cl(e){let t=[];return ze(e,n=>{n.controlType===R.FORM?t.push(n):(n.type,h.SUBTABLE)}),t}function Ol(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===h.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=Pr(o),u.dataCode=t})}else n.dataBind.fieldCode=Pr(n.controlId),n.dataBind.dataCode=t;return n})}function Pr(e){const t="field_";return e.startsWith(t)?e:t+e}function Ge(e){return Ca[e]}function Rl(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=Rr[o].fieldType,a=r.caption+"_"+Rr[o].caption,f=Ge(c);if(!f)return;const d={caption:a,dataBind:s};o==="currency"&&(d.optionConfig="datasource",d.datasourceBind=u);const v=t.createControlInstance(f,{props:d});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 Pl(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 xl=[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],Ml=[h.CALC],Tl={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,d;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(xl.includes(v))v===h.OPERATION_COLUMN&&Object.entries(Tl).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:!Ml.includes(v),canRead:!0,canHide:!0,group:"element"},t&&t.type===h.SUBTABLE&&(p.caption=t.caption+"_"+p.caption),v===h.VUE_FORM_ITEM&&(p.caption=e.props.controlExportName||e.name),(e.controlType===R.FORM||e.controlType===R.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===h.VUE_FORM_ITEM){let _="element";((a=(c=e.props)==null?void 0:c.dataBind)==null?void 0:a.fieldCode)!==void 0&&((d=(f=e.props)==null?void 0:f.dataBind)==null?void 0:d.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===R.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=U,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 Yn.on(...t)}}ee.EventLogic=Ee;class Ll{constructor(){this.designer=new ee}ListPageBuilder(){const t=this.designer.createControlInstance(h.LIST_VIEW),n=this.designer.createControlInstance(h.SIMPLE_SEARCH),r=this.designer.createControlInstance(h.GRID_TABLE),i=this.designer.createControlInstance(h.CREATE_FORM_LIST_BUTTON),u=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(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(h.LIST_VIEW);t.props.countType="async";const n=this.designer.createControlInstance(h.SIMPLE_SEARCH),r=this.designer.createControlInstance(h.GRID_TABLE),i=this.designer.createControlInstance(h.EXPORT_LIST_BUTTON),u=this.designer.createControlInstance(h.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(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}}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 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){jl(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 ql(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function Vl(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 Ul(e,t,n){return t&&Tr(e.prototype,t),n&&Tr(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 Nl=function(){function e(t){Vl(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 Ul(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=this,i=arguments.length,u=new Array(i>1?i-1:0),o=1;o<i;o++)u[o-1]=arguments[o];this.filterEffects(n).forEach(function(s){return r.callEffectFn(s,u)})}},{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 kl(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){kl(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 Hl(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 Wl(e){return"type"in e&&e.type==="tab"}var en=function e(t){Hl(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 Lr(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 zl(e){if(Array.isArray(e))return e}function Gl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Kl(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 Xl(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 Jl(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 Zl(){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 Ql(e,t){return t&&(ef(t)==="object"||typeof t=="function")?t:Gl(e)}function tn(e,t){return tn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},tn(e,t)}function Yl(e,t){return zl(e)||Jl(e,t)||tf(e,t)||Zl()}function ef(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function tf(e,t){if(!!e){if(typeof e=="string")return Lr(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 Lr(e,t)}}function nf(){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 rf(e){var t=nf();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 Ql(this,i)}}var uf=function(e){Xl(n,e);var t=rf(n);function n(r){Kl(this,n);var i;return i=t.call(this,r),ht(r)&&Object.entries(r).forEach(function(u){var o=Yl(u,2),s=o[0],c=o[1];i[s]=c}),i}return n}(K);function Fe(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function of(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function 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 af(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 sf(e,t){return t&&(cf(t)==="object"||typeof t=="function")?t:Fe(e)}function nn(e,t){return nn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},nn(e,t)}function cf(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 ff(e){var t=lf();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 sf(this,i)}}var pf=function(e){af(n,e);var t=ff(n);function n(r){of(this,n);var i;i=t.call(this,r),Xe(Fe(i),"maxLength",void 0),Xe(Fe(i),"minLength",void 0),Xe(Fe(i),"placeholder",void 0),Xe(Fe(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 df(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 hf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&un(e,t)}function yf(e,t){return t&&(vf(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 vf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function _f(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function gf(e){var t=_f();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 yf(this,i)}}var mf=function(e){hf(n,e);var t=gf(n);function n(r){df(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 Ef(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 bf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&an(e,t)}function wf(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 Af(){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 Sf(e){var t=Af();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 wf(this,i)}}var Ff=function(e){bf(n,e);var t=Sf(n);function n(r){Ef(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 jr(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function If(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $f(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 Df(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&sn(e,t)}function Cf(e,t){return t&&(Of(t)==="object"||typeof t=="function")?t:jr(e)}function sn(e,t){return sn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},sn(e,t)}function Of(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Rf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Pf(e){var t=Rf();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 Cf(this,i)}}var xf=function(e){Df(n,e);var t=Pf(n);function n(r){If(this,n);var i;i=t.call(this,r),$f(jr(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 Mf(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 nt(e){return nt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},nt(e)}function Tf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ln(e,t)}function Lf(e,t){return t&&(jf(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 jf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function qf(){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=qf();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 Lf(this,i)}}var Uf=function(e){Tf(n,e);var t=Vf(n);function n(r){Mf(this,n);var i;i=t.call(this,r),qr(cn(i),"placeholder",void 0),qr(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 Nf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Vr(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 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&&pn(e,t)}function Hf(e,t){return t&&(Wf(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 Wf(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 Gf(e){var t=zf();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 Hf(this,i)}}var Kf=function(e){kf(n,e);var t=Gf(n);function n(r){Nf(this,n);var i;i=t.call(this,r),Vr(fn(i),"options",void 0),Vr(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 Xf(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 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&&dn(e,t)}function Zf(e,t){return t&&(Qf(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 Qf(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 ep(e){var t=Yf();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 Zf(this,i)}}var tp=function(e){Jf(n,e);var t=ep(n);function n(r){Xf(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 np(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){np(e,i,n[i])})}return e}function rp(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)):rp(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function ip(e,t){switch(e){case"input":return new pf(t);case"textarea":return new tp(t);case"input-number":return new mf(t);case"switch":return new Ff(t);case"radio":return new Kf(t);case"checkbox":return new xf(t);case"select":return new Uf(t);default:return new uf(t)}}function up(e){return function(t){var n=e.get(t);if(!!n)return new Nl(yn(hn({},n),{props:ip(n.component,"props"in n?n.props:void 0)}))}}function op(e){var t=e.fields.reduce(function(i,u){return i.set(u.key,u),i},new Map);function n(i){return new Qt(yn(hn({},i),{items:i.items.map(up(t)).filter(Boolean)}))}function r(i){return i.map(n)}return e.groups.map(function(i){return Wl(i)?new en(yn(hn({},i),{items:r(i.items)})):n(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?$e(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?Hr(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=$e(t)}updateDataFieldCodeMap(t){const n=$e(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}kr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;Ie(this.instance,i=>{t.push(i),n.set(i.id,i),kr(i,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function Nr(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 kr(e,t){if(e.controlType===R.FORM){const n=e.props.dataBind;n instanceof Pe?Nr(t,n,e):Object.values(n).forEach(r=>{Nr(t,r,e)})}}function Ie(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{t(r),Kt(r)&&Ie(r.children,t),Cr(r)&&Ie(r.props.headers,t)})}function vn(e){return[h.SUBTABLE,h.DATA_VIEW,h.LIST_VIEW].includes(e.type)}function $e(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!vn(t);)t=t.parent;return t}function Hr(e){const t=[e];return Ie(e,n=>{n!==e&&t.includes(n.parent)&&!vn(n)&&t.push(n)}),t}let _n="";class Wr extends qn{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)===R.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((d,v)=>{const E=new en(d),w=f.findIndex(_=>_.title===d.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(d=>this.formatGroupSetting(d,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?op(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=$e(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}`;Ya(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===R.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===R.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){Oe(`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!es(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===R.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))})}}Wr.EventLogic=Ee,m.Builder=Ll,m.Designer=ee,m.Driven=Wr,m.Store=Ur,m.checkSchema=Zt,m.fillModelBindInfoListFieldCode=Ol,m.findInstanceDataScopeParent=$e,m.generatePermissions=Se,m.getColumnTypeFromFiledType=Ge,m.getColumnsFromFiledType=Pl,m.getColumnsFromModelBindInfoList=Rl,m.getDataScopeFlatInstances=Hr,m.getMasterFormControls=Cl,m.getModelBindInfoList=Jt,m.hasChildrenControl=Kt,m.hasHeaderControl=Cr,m.isDataScopeInstance=vn,m.loop=Ie,m.loopFormControl=ze,m.toSchema=Xt,Object.defineProperty(m,"__esModule",{value:!0})});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-driven",
3
- "version": "2.5.3",
3
+ "version": "2.5.9-beta.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.5.3",
29
+ "@byteluck-fe/model-driven-controls": "2.5.9-beta.1",
30
30
  "@byteluck-fe/model-driven-core": "2.5.3",
31
31
  "@byteluck-fe/model-driven-settings": "2.5.3",
32
32
  "@byteluck-fe/model-driven-shared": "2.5.3"
33
33
  },
34
- "gitHead": "9207c31501e84896728e6c5a9a7696b70a9a87ed"
34
+ "gitHead": "457d0888e67769a9afeb910f9509b1209dee6c14"
35
35
  }