@byteluck-fe/model-driven-driven 2.23.0-beta.1 → 2.23.0-beta.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,7 +31,7 @@ function _define_property(obj, key, value) {
31
31
  return obj;
32
32
  }
33
33
  import Designer from './Designer';
34
- import { CONTROL_TYPE } from '@byteluck-fe/model-driven-shared';
34
+ import { CONTROL_TYPE, RulesMessage } from '@byteluck-fe/model-driven-shared';
35
35
  export var Builder = /*#__PURE__*/ function() {
36
36
  "use strict";
37
37
  function Builder() {
@@ -105,7 +105,7 @@ export var Builder = /*#__PURE__*/ function() {
105
105
  rules: [
106
106
  {
107
107
  id: 'default',
108
- name: '审批通过单据',
108
+ name: RulesMessage.getMessage('approvedDocuments'),
109
109
  color: 'theme',
110
110
  filters: [
111
111
  {
@@ -114,7 +114,7 @@ export var Builder = /*#__PURE__*/ function() {
114
114
  leftVariableBo: {
115
115
  type: 'varchar',
116
116
  value: 'process_status',
117
- name: '流程状态'
117
+ name: RulesMessage.getMessage('processStatus')
118
118
  },
119
119
  checked: false,
120
120
  describe: 'ruleLine',
@@ -41,6 +41,10 @@ function _async_to_generator(fn) {
41
41
  });
42
42
  };
43
43
  }
44
+ function _call_super(_this, derived, args) {
45
+ derived = _get_prototype_of(derived);
46
+ return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
47
+ }
44
48
  function _class_call_check(instance, Constructor) {
45
49
  if (!(instance instanceof Constructor)) {
46
50
  throw new TypeError("Cannot call a class as a function");
@@ -134,28 +138,12 @@ function _unsupported_iterable_to_array(o, minLen) {
134
138
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
135
139
  }
136
140
  function _is_native_reflect_construct() {
137
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
138
- if (Reflect.construct.sham) return false;
139
- if (typeof Proxy === "function") return true;
140
141
  try {
141
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
142
- return true;
143
- } catch (e) {
144
- return false;
145
- }
146
- }
147
- function _create_super(Derived) {
148
- var hasNativeReflectConstruct = _is_native_reflect_construct();
149
- return function _createSuperInternal() {
150
- var Super = _get_prototype_of(Derived), result;
151
- if (hasNativeReflectConstruct) {
152
- var NewTarget = _get_prototype_of(this).constructor;
153
- result = Reflect.construct(Super, arguments, NewTarget);
154
- } else {
155
- result = Super.apply(this, arguments);
156
- }
157
- return _possible_constructor_return(this, result);
158
- };
142
+ var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
143
+ } catch (_) {}
144
+ return (_is_native_reflect_construct = function() {
145
+ return !!result;
146
+ })();
159
147
  }
160
148
  function _ts_generator(thisArg, body) {
161
149
  var f, y, t, g, _ = {
@@ -259,16 +247,12 @@ import { toSchema, getModelBindInfoList, checkSchema } from './utils';
259
247
  var Designer = /*#__PURE__*/ function _target(RegisterControls) {
260
248
  "use strict";
261
249
  _inherits(Designer, RegisterControls);
262
- var _super = _create_super(Designer);
263
250
  function Designer() {
264
251
  _class_call_check(this, Designer);
265
252
  var _this;
266
- _this = _super.call(this, 'Designer');
267
- _define_property(_assert_this_initialized(_this), "toolbox", []);
268
- _define_property(_assert_this_initialized(_this), "services", {});
269
- _define_property(_assert_this_initialized(_this), "eventLogic", new EventLogic());
270
- _define_property(_assert_this_initialized(_this), "fieldTypes", FieldTypes);
271
- _define_property(_assert_this_initialized(_this), "controlSettingMap", new Map());
253
+ _this = _call_super(this, Designer, [
254
+ 'Designer'
255
+ ]), _define_property(_this, "toolbox", []), _define_property(_this, "services", {}), _define_property(_this, "eventLogic", new EventLogic()), _define_property(_this, "fieldTypes", FieldTypes), _define_property(_this, "controlSettingMap", new Map());
272
256
  (_instanceof(this, Designer) ? this.constructor : void 0).staticControls.forEach(function(control) {
273
257
  var _$Designer = control.Designer, Setting = control.Setting;
274
258
  _this.controlSettingMap.set(_$Designer.controlType, Setting);
@@ -279,6 +263,7 @@ var Designer = /*#__PURE__*/ function _target(RegisterControls) {
279
263
  {
280
264
  key: "registerControl",
281
265
  value: function registerControl(control) {
266
+ ;
282
267
  this.constructor.register(control, 'Designer');
283
268
  var DesignerClass = control.Designer, Setting = control.Setting;
284
269
  this.register(DesignerClass);
@@ -15,6 +15,10 @@ function _assert_this_initialized(self) {
15
15
  }
16
16
  return self;
17
17
  }
18
+ function _call_super(_this, derived, args) {
19
+ derived = _get_prototype_of(derived);
20
+ return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
21
+ }
18
22
  function _class_call_check(instance, Constructor) {
19
23
  if (!(instance instanceof Constructor)) {
20
24
  throw new TypeError("Cannot call a class as a function");
@@ -169,28 +173,12 @@ function _unsupported_iterable_to_array(o, minLen) {
169
173
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
170
174
  }
171
175
  function _is_native_reflect_construct() {
172
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
173
- if (Reflect.construct.sham) return false;
174
- if (typeof Proxy === "function") return true;
175
176
  try {
176
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
177
- return true;
178
- } catch (e) {
179
- return false;
180
- }
181
- }
182
- function _create_super(Derived) {
183
- var hasNativeReflectConstruct = _is_native_reflect_construct();
184
- return function _createSuperInternal() {
185
- var Super = _get_prototype_of(Derived), result;
186
- if (hasNativeReflectConstruct) {
187
- var NewTarget = _get_prototype_of(this).constructor;
188
- result = Reflect.construct(Super, arguments, NewTarget);
189
- } else {
190
- result = Super.apply(this, arguments);
191
- }
192
- return _possible_constructor_return(this, result);
193
- };
177
+ var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
178
+ } catch (_) {}
179
+ return (_is_native_reflect_construct = function() {
180
+ return !!result;
181
+ })();
194
182
  }
195
183
  import { CONTROL_BASE_TYPE, error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from '@byteluck-fe/model-driven-shared';
196
184
  import { findInstanceDataScopeParent, Store } from './Store';
@@ -198,6 +186,7 @@ import { Designer } from './Designer';
198
186
  import EventLogic from './EventLogic';
199
187
  import { checkSchema, generatePermissions, getModelBindInfoList, toSchema } from './utils';
200
188
  import { Group, initSettings, Tab } from '@byteluck-fe/model-driven-settings';
189
+ import { RulesMessage, DEFAULT_LOCALE } from '@byteluck-fe/model-driven-shared';
201
190
  // 当前正在注册的插件名称
202
191
  var applyingPluginName = '';
203
192
  /**
@@ -205,39 +194,26 @@ var applyingPluginName = '';
205
194
  * */ var Driven = /*#__PURE__*/ function(Watcher) {
206
195
  "use strict";
207
196
  _inherits(Driven, Watcher);
208
- var _super = _create_super(Driven);
209
197
  function Driven(options) {
210
198
  _class_call_check(this, Driven);
211
199
  var _this;
212
- _this = _super.call(this);
213
- _define_property(_assert_this_initialized(_this), "mode", void 0);
214
- _define_property(_assert_this_initialized(_this), "isMounted", false);
215
- _define_property(_assert_this_initialized(_this), "id", genNonDuplicateId(8));
216
- /**
200
+ _this = _call_super(this, Driven), _define_property(_this, "mode", void 0), _define_property(_this, "isMounted", false), _define_property(_this, "id", genNonDuplicateId(8)), /**
217
201
  * 控件可选的事件
218
- * */ _define_property(_assert_this_initialized(_this), "eventLogic", void 0);
219
- /**
202
+ * */ _define_property(_this, "eventLogic", void 0), /**
220
203
  * 处理数据存储,存放模型等
221
- * */ _define_property(_assert_this_initialized(_this), "store", void 0);
222
- /**
204
+ * */ _define_property(_this, "store", void 0), /**
223
205
  * 额外参数存储
224
- */ _define_property(_assert_this_initialized(_this), "externalParams", void 0);
225
- /**
206
+ */ _define_property(_this, "externalParams", void 0), /**
226
207
  * 处理instance,和schema存储
227
- * */ _define_property(_assert_this_initialized(_this), "designer", void 0);
228
- /**
208
+ * */ _define_property(_this, "designer", void 0), /**
229
209
  * 插件数组
230
- * */ _define_property(_assert_this_initialized(_this), "__plugins", void 0);
231
- _define_property(_assert_this_initialized(_this), "__pluginsApplied", false);
232
- _define_property(_assert_this_initialized(_this), "$options", void 0);
233
- // TODO 拿到schema
234
- _define_property(_assert_this_initialized(_this), "getSchema", toSchema);
235
- // TODO 拿到model_bind_info_list
236
- _define_property(_assert_this_initialized(_this), "getModelBindInfoList", getModelBindInfoList);
237
- // TODO 拿到permission_controls
238
- _define_property(_assert_this_initialized(_this), "generatePermissions", generatePermissions);
210
+ * */ _define_property(_this, "__plugins", void 0), _define_property(_this, "__pluginsApplied", false), _define_property(_this, "$options", void 0), // TODO 拿到schema
211
+ _define_property(_this, "getSchema", toSchema), // TODO 拿到model_bind_info_list
212
+ _define_property(_this, "getModelBindInfoList", getModelBindInfoList), // TODO 拿到permission_controls
213
+ _define_property(_this, "generatePermissions", generatePermissions);
239
214
  _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;
215
+ 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, messagesI18n = _this_$options.messagesI18n, _this_$options_language = _this_$options.language, language = _this_$options_language === void 0 ? DEFAULT_LOCALE : _this_$options_language;
216
+ RulesMessage.setLocale(language, messagesI18n);
241
217
  _this.eventLogic = new EventLogic();
242
218
  _this.designer = new DesignerClass();
243
219
  _this.store = new Store(_object_spread({
@@ -1,4 +1,4 @@
1
- import { CONTROL_TYPE, FieldTypes } from '@byteluck-fe/model-driven-shared';
1
+ import { CONTROL_TYPE, FieldTypes, RulesMessage } 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: RulesMessage.getMessage('amount'),
11
11
  fieldType: FieldTypes.DECIMAL
12
12
  },
13
13
  currency: {
14
- caption: '币种',
14
+ caption: RulesMessage.getMessage('currency'),
15
15
  fieldType: FieldTypes.VARCHAR
16
16
  },
17
17
  result: {
18
- caption: '结果',
18
+ caption: RulesMessage.getMessage('result'),
19
19
  fieldType: FieldTypes.DECIMAL
20
20
  },
21
21
  unit: {
22
- caption: '单位',
22
+ caption: RulesMessage.getMessage('unit'),
23
23
  fieldType: FieldTypes.VARCHAR
24
24
  },
25
25
  min: {
26
- caption: '开始时间',
26
+ caption: RulesMessage.getMessage('startTime'),
27
27
  fieldType: FieldTypes.TIMESTAMP
28
28
  },
29
29
  max: {
30
- caption: '结束时间',
30
+ caption: RulesMessage.getMessage('endTime'),
31
31
  fieldType: FieldTypes.TIMESTAMP
32
32
  }
33
33
  };
package/dist/esm/utils.js CHANGED
@@ -183,7 +183,7 @@ function _ts_generator(thisArg, body) {
183
183
  import { loopFormControl } from './designerUtils';
184
184
  import { CONTROL_BASE_TYPE, CONTROL_TYPE, // FieldTypes,
185
185
  // FieldTypeToColumnType,
186
- isArray } from '@byteluck-fe/model-driven-shared';
186
+ isArray, RulesMessage } from '@byteluck-fe/model-driven-shared';
187
187
  import { objectDataBindControlTypes } from './constants';
188
188
  export function getMasterFormControls(controls) {
189
189
  var formctls = [];
@@ -216,6 +216,7 @@ export function getMasterFormControls(controls) {
216
216
  dataBind.dataCode = dataCode;
217
217
  });
218
218
  } else {
219
+ ;
219
220
  item.dataBind.fieldCode = fieldCodeBeforeAddPrefix(item.controlId);
220
221
  item.dataBind.dataCode = dataCode;
221
222
  }
@@ -322,15 +323,15 @@ var cannotEditControlTypes = [
322
323
  var LIST_OPERATION_BUTTON_PERMISSIONS_MAPS = {
323
324
  check: {
324
325
  id: 'listPageCheckBtnId',
325
- caption: '查看'
326
+ caption: RulesMessage.getMessage('view')
326
327
  },
327
328
  edit: {
328
329
  id: 'listPageEditBtnId',
329
- caption: '编辑'
330
+ caption: RulesMessage.getMessage('edit')
330
331
  },
331
332
  delete: {
332
333
  id: 'listPageDeleteBtnId',
333
- caption: '删除'
334
+ caption: RulesMessage.getMessage('delete')
334
335
  }
335
336
  };
336
337
  // 生成权限字段
package/dist/index.umd.js CHANGED
@@ -1,3 +1,3 @@
1
- var Ed=Object.defineProperty;var Kr=Object.getOwnPropertySymbols;var wd=Object.prototype.hasOwnProperty,Sd=Object.prototype.propertyIsEnumerable;var Xr=(E,$,O)=>$ in E?Ed(E,$,{enumerable:!0,configurable:!0,writable:!0,value:O}):E[$]=O,pe=(E,$)=>{for(var O in $||($={}))wd.call($,O)&&Xr(E,O,$[O]);if(Kr)for(var O of Kr($))Sd.call($,O)&&Xr(E,O,$[O]);return E};var gn=(E,$,O)=>new Promise((ut,Re)=>{var it=W=>{try{he(O.next(W))}catch(ve){Re(ve)}},ot=W=>{try{he(O.throw(W))}catch(ve){Re(ve)}},he=W=>W.done?ut(W.value):Promise.resolve(W.value).then(it,ot);he((O=O.apply(E,$)).next())});(function(E,$){typeof exports=="object"&&typeof module!="undefined"?$(exports):typeof define=="function"&&define.amd?define(["exports"],$):(E=typeof globalThis!="undefined"?globalThis:E||self,$(E.modelDrivenDriven={}))})(this,function(E){"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",Re="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",it="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",ot="{caption}\u5FC5\u586B",he="\u8BF7\u8F93\u5165\u6807\u9898",W="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ve="\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",eu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",tu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",nu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ru="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",uu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",iu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ou="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",au="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",su="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",lu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",cu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",fu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",du="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",pu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",hu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",vu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",yu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",_u="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",gu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",mu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",bu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Eu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",wu="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Su="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Bu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Au="\u8BF7\u9009\u62E9\u7701",Fu="\u8BF7\u9009\u62E9\u5E02",Iu="\u8BF7\u9009\u62E9\u533A",Cu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Du="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",$u="\u8BF7\u8F93\u5165\u5217\u5BBD",Ou="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Ru="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Pu="\u8BF7\u9009\u62E9\u63A7\u4EF6",xu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Mu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Tu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Lu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",ju="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",qu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Vu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Uu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ku="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Nu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Hu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Wu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",zu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Gu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ku="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Xu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Ju="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Zu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Qu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Yu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ei="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ti="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",ni="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",ri="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",ui="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",ii="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",oi="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",ai={isNotNumber:$,isNotString:O,isNotObject:ut,isNotArray:Re,isNotBoolean:it,runtimeRequired:ot,pleaseEnterCaption:he,pleaseEnterCaptionTip:W,pleaseEnterRowCaption:ve,pleaseEnterPlaceholder:Jr,pleaseEnterFieldCode:Zr,pleaseEnterForm:Qr,pleaseEnterList:Yr,pleaseEnterProcess:eu,pleaseEnterLabel:tu,pleaseEnterValue:nu,bizKeyNotBindFiled:ru,pleaseSelectOneField:uu,pleaseEnterNumberRange:iu,pleaseEnterAValueGreaterThanMin:ou,pleaseEnterAValueLessThanMax:au,numberRangeSetError:su,stringRangeError:lu,attachmentMaxSize:cu,pleaseEnterTotalScoreSetting:fu,theTotalScoreMustNotBeLessThan1:du,scoreDefaultValueRange:pu,attachmentLimitError:hu,PleaseReselectTheOptionalQuantity:vu,TheMaximumLengthIsGreaterThanTheMinimumLength:yu,TheMinimumLengthIsGreaterThanTheMaximumLength:_u,PleaseSelectTheCorrectOptionSettings:gu,optionIdIsRepeat:mu,optionIsRequired:bu,pleaseEnterDataCode:Eu,pleaseEnterValueFieldCode:wu,pleaseEnterSvcCode:Su,pleaseBindAtLeastOneDisplayValue:Bu,pleaseSelectProvince:Au,pleaseSelectCity:Fu,pleaseSelectDistrict:Iu,limitRowsCannotBeLessThan0:Cu,TheNumberOfRowsCannotBeLessThanMinRows:Du,pleaseEnterColumnWidth:$u,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ou,pleaseCompleteAllRulesAndConditions:Ru,pleaseSelectControl:Pu,pleaseSelectAtLeastOneColumn:xu,pleaseSelectFillBackMode:Mu,pleaseSelectDashboard:Tu,rootNodeIsRequired:Lu,theViewNameCannotBeEmpty:ju,pleaseSelectOcrType:qu,pleaseSelectAtLeastOneFieldToFillIn:Vu,pleaseChooseAtLeastOne:Uu,pleaseEnterButtonContent:ku,pleaseEnterDataCodeInDataSetting:Nu,pleaseEnterValueFieldCodeInDataSetting:Hu,pleaseEnterSvcCodeInDataSetting:Wu,pleaseBindAtLeastOneDisplayValueInDataSetting:zu,rootNodeIsRequiredInDataSetting:Gu,pleaseEnterMaxHeight:Ku,pleaseEnter:Xu,pleaseEnterWatermark:Ju,pleaseEnterFileName:Zu,pleaseUploadAtLeastOnePrintTemplate:Qu,pleaseAssignBusiness:Yu,pleaseAssignExternal:ei,pleaseEnterAliasCode:ti,pleaseSelectDataCode:ni,pleaseSelectSvcCode:ri,pleaseSelectJoinFieldCode:ui,pleaseSelectMainFieldCode:ii,pleaseSelectSortFieldCode:oi},si="Please enter a number",li="Please enter a string",ci="Please enter an object",fi="Please enter an array",di="Please enter a boolean",pi="{caption} Required",hi="Please enter the title",vi="Please enter the bubble prompt",yi="Please enter the row title",_i="Please enter the prompt text",gi="Please bind data items",mi="Please bind the form",bi="Please bind the list",Ei="Please bind the process",wi="Please enter the displayed value",Si="Please enter the stored value",Bi="The document number is not bound to the data item",Ai="Please select at least one display field",Fi="Please enter a value greater than or equal to {min} and less than or equal to {max}",Ii="Please enter a value greater than or equal to {min}",Ci="Please enter a value less than or equal to {max}",Di="The value range is set incorrectly",$i="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Oi="The attachment size must be between 0MB and 1000MB",Ri="Please fill in the total score setting",Pi="The total score cannot be less than 1",xi="The default value must be between {min} and {max}",Mi="The number of attachment uploads exceeds the limit",Ti="Please re-select the optional quantity",Li="The maximum length of the control must be greater than the minimum length",ji="The minimum length of the control must be less than the maximum length",qi="Please select the correct option setting",Vi="Option ID cannot be repeated",Ui="Please enter at least one option",ki="Please bind the data source",Ni="Please bind the stored value",Hi="Please bind the service",Wi="At least one display value must be bound",zi="Please select a province",Gi="Please select a city",Ki="Please select a district",Xi="The minimum number of lines to fill in cannot be less than 0",Ji="The number of rows cannot be less than {min} rows",Zi="Please enter the column width",Qi="Please set the logical relationship of all rule conditions",Yi="Please complete all rules and conditions",eo="please select control",to="Please select the dashboard",no="View name cannot be empty",ro="Please select recognition type",uo="Please select at least one field to fill in",io="Please select at least one",oo="Please enter the button title",ao="Please bind the business model in the data settings",so="Please bind storage values in data settings",lo="Please bind the service in the data settings",co="Please bind at least one display value in the data settings",fo="Please select the root node in the data settings",po="Please enter the maximum height",ho="The input content cannot be empty",vo="Watermark cannot be empty",yo="File name cannot be empty",_o="Please upload at least one printing template!\uFF01",go="Please select a specific business department",mo="Please select a specified external organization",bo="Please enter a sub table alias",Eo="Please select the associated table to set the business model",wo="Please select the association table to set the binding service",So="Select associated sub table fields",Bo="Please select the associated main table field",Ao="Please select the sort field",Fo={isNotNumber:si,isNotString:li,isNotObject:ci,isNotArray:fi,isNotBoolean:di,runtimeRequired:pi,pleaseEnterCaption:hi,pleaseEnterCaptionTip:vi,pleaseEnterRowCaption:yi,pleaseEnterPlaceholder:_i,pleaseEnterFieldCode:gi,pleaseEnterForm:mi,pleaseEnterList:bi,pleaseEnterProcess:Ei,pleaseEnterLabel:wi,pleaseEnterValue:Si,bizKeyNotBindFiled:Bi,pleaseSelectOneField:Ai,pleaseEnterNumberRange:Fi,pleaseEnterAValueGreaterThanMin:Ii,pleaseEnterAValueLessThanMax:Ci,numberRangeSetError:Di,stringRangeError:$i,attachmentMaxSize:Oi,pleaseEnterTotalScoreSetting:Ri,theTotalScoreMustNotBeLessThan1:Pi,scoreDefaultValueRange:xi,attachmentLimitError:Mi,PleaseReselectTheOptionalQuantity:Ti,TheMaximumLengthIsGreaterThanTheMinimumLength:Li,TheMinimumLengthIsGreaterThanTheMaximumLength:ji,PleaseSelectTheCorrectOptionSettings:qi,optionIdIsRepeat:Vi,optionIsRequired:Ui,pleaseEnterDataCode:ki,pleaseEnterValueFieldCode:Ni,pleaseEnterSvcCode:Hi,pleaseBindAtLeastOneDisplayValue:Wi,pleaseSelectProvince:zi,pleaseSelectCity:Gi,pleaseSelectDistrict:Ki,limitRowsCannotBeLessThan0:Xi,TheNumberOfRowsCannotBeLessThanMinRows:Ji,pleaseEnterColumnWidth:Zi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Qi,pleaseCompleteAllRulesAndConditions:Yi,pleaseSelectControl:eo,pleaseSelectDashboard:to,theViewNameCannotBeEmpty:no,pleaseSelectOcrType:ro,pleaseSelectAtLeastOneFieldToFillIn:uo,pleaseChooseAtLeastOne:io,pleaseEnterButtonContent:oo,pleaseEnterDataCodeInDataSetting:ao,pleaseEnterValueFieldCodeInDataSetting:so,pleaseEnterSvcCodeInDataSetting:lo,pleaseBindAtLeastOneDisplayValueInDataSetting:co,rootNodeIsRequiredInDataSetting:fo,pleaseEnterMaxHeight:po,pleaseEnter:ho,pleaseEnterWatermark:vo,pleaseEnterFileName:yo,pleaseUploadAtLeastOnePrintTemplate:_o,pleaseAssignBusiness:go,pleaseAssignExternal:mo,pleaseEnterAliasCode:bo,pleaseSelectDataCode:Eo,pleaseSelectSvcCode:wo,pleaseSelectJoinFieldCode:So,pleaseSelectMainFieldCode:Bo,pleaseSelectSortFieldCode:Ao},Io="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Co="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Do="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$o="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oo="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ro="{caption}\u5FC5\u9808",Po="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xo="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Mo="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",To="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Lo="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",jo="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qo="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Vo="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Uo="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ko="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",No="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Ho="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Wo="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",zo="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Go="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ko="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Xo="\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",Zo="\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",Yo="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ea="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",ta="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",na="\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",ra="\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",ua="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ia="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",oa="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",aa="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",sa="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",la="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ca="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",fa="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",da="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",pa="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ha="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",va="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ya="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_a="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ga="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",ma="please select control",ba="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ea="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",wa="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Sa="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ba="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Aa="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Fa="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Ia="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Ca="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Da="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",$a="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Oa="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ra="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Pa="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",xa="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ma="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",Ta="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",La="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ja="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",qa="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",Va="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ua="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",ka="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Na="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ha={isNotNumber:Io,isNotString:Co,isNotObject:Do,isNotArray:$o,isNotBoolean:Oo,runtimeRequired:Ro,pleaseEnterCaption:Po,pleaseEnterCaptionTip:xo,pleaseEnterRowCaption:Mo,pleaseEnterPlaceholder:To,pleaseEnterFieldCode:Lo,pleaseEnterForm:jo,pleaseEnterList:qo,pleaseEnterProcess:Vo,pleaseEnterLabel:Uo,pleaseEnterValue:ko,bizKeyNotBindFiled:No,pleaseSelectOneField:Ho,pleaseEnterNumberRange:Wo,pleaseEnterAValueGreaterThanMin:zo,pleaseEnterAValueLessThanMax:Go,numberRangeSetError:Ko,stringRangeError:Xo,attachmentMaxSize:Jo,pleaseEnterTotalScoreSetting:Zo,theTotalScoreMustNotBeLessThan1:Qo,scoreDefaultValueRange:Yo,attachmentLimitError:ea,PleaseReselectTheOptionalQuantity:ta,TheMaximumLengthIsGreaterThanTheMinimumLength:na,TheMinimumLengthIsGreaterThanTheMaximumLength:ra,PleaseSelectTheCorrectOptionSettings:ua,optionIdIsRepeat:ia,optionIsRequired:oa,pleaseEnterDataCode:aa,pleaseEnterValueFieldCode:sa,pleaseEnterSvcCode:la,pleaseBindAtLeastOneDisplayValue:ca,pleaseSelectProvince:fa,pleaseSelectCity:da,pleaseSelectDistrict:pa,limitRowsCannotBeLessThan0:ha,TheNumberOfRowsCannotBeLessThanMinRows:va,pleaseEnterColumnWidth:ya,pleaseSetTheLogicalRelationshipOfAllRuleConditions:_a,pleaseCompleteAllRulesAndConditions:ga,pleaseSelectControl:ma,pleaseSelectDashboard:ba,theViewNameCannotBeEmpty:Ea,pleaseSelectOcrType:wa,pleaseSelectAtLeastOneFieldToFillIn:Sa,pleaseChooseAtLeastOne:Ba,pleaseEnterButtonContent:Aa,pleaseEnterDataCodeInDataSetting:Fa,pleaseEnterValueFieldCodeInDataSetting:Ia,pleaseEnterSvcCodeInDataSetting:Ca,pleaseBindAtLeastOneDisplayValueInDataSetting:Da,rootNodeIsRequiredInDataSetting:$a,pleaseEnterMaxHeight:Oa,pleaseEnter:Ra,pleaseEnterWatermark:Pa,pleaseEnterFileName:xa,pleaseUploadAtLeastOnePrintTemplate:Ma,pleaseAssignBusiness:Ta,pleaseAssignExternal:La,pleaseEnterAliasCode:ja,pleaseSelectDataCode:qa,pleaseSelectSvcCode:Va,pleaseSelectJoinFieldCode:Ua,pleaseSelectMainFieldCode:ka,pleaseSelectSortFieldCode:Na},Wa={zhCN:ai,enUS:Fo,jaJP:Ha},mn;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(mn||(mn={}));var bn;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(bn||(bn={}));var za="zh-CN",Ga=function(){},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 En;(function(e){e[e.FORM=0]="FORM",e[e.LIST=1]="LIST",e[e.REPORT=2]="REPORT",e[e.DASHBOARD=3]="DASHBOARD",e[e.VUE=4]="VUE",e[e.FREE_PAGE=5]="FREE_PAGE"})(En||(En={}));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.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",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.OPERATION_BUTTON="operation-button",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.GRID_LAYOUT_CONTAINER="grid-layout-container",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e.GRID_LAYOUT_WRAP="grid-layout-wrap",e.VUE_PAGE="vue-page"})(h||(h={}));var wn;(function(e){e.SAVE="save",e.DRAFT="draft",e.UNSUBMIT="unsubmit",e.AUDIT="audit",e.UNAUDIT="unaudit",e.CANCEL="cancel",e.FORM_SUBMIT="form_submit"})(wn||(wn={}));var V;(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.LIST="list",e.JSON="json",e.ANY="ANY"})(V||(V={}));var Sn;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(Sn||(Sn={}));var Bn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Ka=Bn+"0123456789";function at(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?Bn:Ka,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function st(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 Xa(e){if(Array.isArray(e))return st(e)}function Ja(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 Pe(e,t,n){return Cn()?Pe=Reflect.construct:Pe=function(u,i,o){var s=[null];s.push.apply(s,i);var l=Function.bind.apply(u,s),a=new l;return o&&_e(a,o.prototype),a},Pe.apply(null,arguments)}function ye(e){return ye=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ye(e)}function Fn(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&_e(e,t)}function Za(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Qa(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Ya(){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 es(e,t){return t&&(ts(t)==="object"||typeof t=="function")?t:Ja(e)}function _e(e,t){return _e=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},_e(e,t)}function In(e){return Xa(e)||Qa(e)||ns(e)||Ya()}function ts(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ns(e,t){if(!!e){if(typeof e=="string")return st(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 st(e,t)}}function lt(e){var t=typeof Map=="function"?new Map:void 0;return lt=function(r){if(r===null||!Za(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Pe(r,arguments,ye(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),_e(u,r)},lt(e)}function Cn(){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=Cn();return function(){var r=ye(e),u;if(t){var i=ye(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return es(this,u)}}var ct=console;function xe(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=ct).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(In(u)))}function $n(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=ct).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(In(u)))}function rs(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var ft=function(e){Fn(n,e);var t=Dn(n);function n(r){An(this,n);var u;return u=t.call(this,r),u.name="\u{1F4A5} Driven Error",u.message=r?rs(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return n}(lt(Error)),us=function(e){Fn(n,e);var t=Dn(n);function n(r){An(this,n);var u;return u=t.call(this,r),u.name="\u{1F6A8} Driven Reference Error",u}return n}(ft);function ge(e){throw new ft(e)}function On(e){throw new us(e)}function is(e){ct.error(new ft(e))}var os=Object.prototype.toString;function Rn(e,t){return os.call(e)==="[object "+t+"]"}function as(e){return Rn(e,"String")}function ss(e){return Rn(e,"Promise")}var ls=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();ss(r)?r.then(function(u){n._messageCache.clear(),n.messages[n.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var u=this.getMessage(t);return u?this.formatMessage(u,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(u,i,o,s){if(u!==void 0){var l=u[i];if(!(o===s.length-1&&!as(l)))return l}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,u){var i=n[u];return i!==void 0?String(i):r}):t},e.prototype.getPreImport=function(t){var n;if(window.okI18nPreImport){var r=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(r)?window.okI18nPreImport:(n={},n[r]=window.okI18nPreImport,n)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function cs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pn(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 fs(e,t,n){return t&&Pn(e.prototype,t),n&&Pn(e,n),e}function ds(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var j=function(){function e(){cs(this,e)}return fs(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]:za;return new ls({locale:n,messages:Wa})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();ds(j,"$i18n",j.resetI18n());function xn(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,o){return"."+o}).split("."),u=!1;return r.reduce(function(i,o,s,l){var a=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,o)){xe("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),i,i);return}return s===l.length-1&&!Object.is(a[o],n)&&(a[o]=n,u=!0),a[o]}},e),u}var ps=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},hs={exports:{}};(function(e){(function(t){var n=function(c,p,b){if(!a(p)||v(p)||y(p)||g(p)||l(p))return p;var B,F=0,N=0;if(f(p))for(B=[],N=p.length;F<N;F++)B.push(n(c,p[F],b));else{B={};for(var A in p)Object.prototype.hasOwnProperty.call(p,A)&&(B[c(A,b)]=n(c,p[A],b))}return B},r=function(c,p){p=p||{};var b=p.separator||"_",B=p.split||/(?=[A-Z])/;return c.split(B).join(b)},u=function(c){return w(c)?c:(c=c.replace(/[\-_\s]+(.)?/g,function(p,b){return b?b.toUpperCase():""}),c.substr(0,1).toLowerCase()+c.substr(1))},i=function(c){var p=u(c);return p.substr(0,1).toUpperCase()+p.substr(1)},o=function(c,p){return r(c,p).toLowerCase()},s=Object.prototype.toString,l=function(c){return typeof c=="function"},a=function(c){return c===Object(c)},f=function(c){return s.call(c)=="[object Array]"},v=function(c){return s.call(c)=="[object Date]"},y=function(c){return s.call(c)=="[object RegExp]"},g=function(c){return s.call(c)=="[object Boolean]"},w=function(c){return c=c-0,c===c},d=function(c,p){var b=p&&"process"in p?p.process:p;return typeof b!="function"?c:function(B,F){return b(B,c,F)}},_={camelize:u,decamelize:o,pascalize:i,depascalize:o,camelizeKeys:function(c,p){return n(d(u,p),c)},decamelizeKeys:function(c,p){return n(d(o,p),c,p)},pascalizeKeys:function(c,p){return n(d(i,p),c)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=_:t.humps=_})(ps)})(hs);var Mn={};Object.defineProperty(Mn,"__esModule",{value:!0});function dt(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:dt(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:dt(r)}return t}}var vs=Mn.default=dt;function Tn(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function z(e){if(e!==void 0)return(typeof e=="undefined"?"undefined":Tn(e))==="object"?vs(e):e}function pt(e){return Object.prototype.toString.call(e)==="[object Object]"}function ys(e){return e!=null&&(typeof e=="undefined"?"undefined":Tn(e))==="object"&&Array.isArray(e)===!1}function me(e){return Array.isArray(e)}function ht(e){return typeof e=="string"}function _s(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 gs(e){if(Array.isArray(e))return vt(e)}function Ln(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function ms(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){Ln(i,r,u,o,s,"next",l)}function s(l){Ln(i,r,u,o,s,"throw",l)}o(void 0)})}}function bs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Es(e,t,n){return t&&jn(e.prototype,t),n&&jn(e,n),e}function qn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ws(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Ss(){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 yt(e){return gs(e)||ws(e)||Bs(e)||Ss()}function Bs(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,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var Vn=function(){function e(){bs(this,e),qn(this,"_events",new Map),qn(this,"debug",!1)}return Es(e,[{key:"emit",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),i=1;i<r;i++)u[i-1]=arguments[i];var o=this;return ms(function(){var s,l,a,f,v,y,g,w,d,_,c,p;return As(this,function(b){switch(b.label){case 0:if(s=o._events.get(n),l=[],!s)return[3,10];a=s.slice(),f=!0,v=!1,y=void 0,b.label=1;case 1:b.trys.push([1,8,9,10]),g=a[Symbol.iterator](),b.label=2;case 2:if(f=(w=g.next()).done)return[3,7];if(d=w.value,!s.includes(d))return[3,6];b.label=3;case 3:return b.trys.push([3,5,,6]),o.debug&&$n.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(d.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+d.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"\u3002")].concat(yt(u))),[4,d.apply(null,yt(u))];case 4:return _=b.sent(),o.debug&&$n.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(d.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+d.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(yt(u),[_])),l.push(_),_===!1?[3,7]:[3,6];case 5:return c=b.sent(),is(String(c)+":"+String(c.stack)),[3,6];case 6:return f=!0,[3,2];case 7:return[3,10];case 8:return p=b.sent(),v=!0,y=p,[3,10];case 9:try{!f&&g.return!=null&&g.return()}finally{if(v)throw y}return[7];case 10:return[2,l]}})})()}},{key:"on",value:function(n,r){if(this._events.has(n)){var u;(u=this._events.get(n))===null||u===void 0||u.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var u=this._events.get(n),i=u==null?void 0:u.indexOf(r);u==null||u.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function Fs(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 Is(e,t,n){return t&&Un(e.prototype,t),n&&Un(e,n),e}function Cs(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ds=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],be=function(){function e(){Fs(this,e)}return Is(e,null,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(u){return r.includes(u.key)})}},{key:"getEventsFromControl",value:function(n){var r=[],u=n.eventKeys;r=r.concat(e.events.filter(function(o){return u.includes(o.key)}));var i=n.customEvents.map(function(o){var s=o.key;return o.namespace!==void 0&&o.namespace!==null&&o.namespace!==""&&(s=o.namespace+":"+o.key),{key:s,code:o.key,name:o.name}});return r=r.concat(i),r}}]),e}();Cs(be,"events",Ds);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 $s(e){if(Array.isArray(e))return _t(e)}function Os(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Rs(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function kn(e){return $s(e)||Os(e)||Ps(e)||Rs()}function Ps(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 gt(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function Nn(e,t,n){n!=="Runtime"&&(e.parent=t,gt(e,"parent"))}function xs(e,t,n){e.forEach(function(r){Nn(r,t,n)})}var Hn=Symbol("targetKey");function Wn(e){var t;return(t=e[Hn])!==null&&t!==void 0?t:e}function zn(e,t,n){return xs(e,t,n),new Proxy(e,{get:function(u,i){for(var o=arguments.length,s=new Array(o>2?o-2:0),l=2;l<o;l++)s[l-2]=arguments[l];var a;return i===Hn?u:(a=Reflect).get.apply(a,[u,i].concat(kn(s)))},set:function(u,i,o){for(var s=arguments.length,l=new Array(s>3?s-3:0),a=3;a<s;a++)l[a-3]=arguments[a];var f;if(me(e)&&i==="length"&&o===e.length)return!0;var v=(f=Reflect).set.apply(f,[u,i,o].concat(kn(l)));return pt(o)&&Nn(o,t,n),v}})}function mt(e,t,n,r,u){var i=r!=null?r:e,o=zn(Wn(n!=null?n:[]),i,u);Object.defineProperty(e,t,{get:function(){return o},set:function(l){o=zn(Wn(l),i,u)},enumerable:!0})}function Ms(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Gn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ts(e,t,n){return t&&Gn(e.prototype,t),n&&Gn(e,n),e}function Z(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Kn=[],Ee=function(){function e(t){Ms(this,e),Z(this,"registeredControlTypes",new Set),Z(this,"controlConfigMap",new Map),Z(this,"_controls",[]),Z(this,"_type",void 0),this._type=t,this._initControls(t)}return Ts(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(u){return u.controlType===n.controlType});return r>-1&&(xe("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===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 u=this;if(Array.isArray(n))return n.map(function(f){return u.createControl(f,r)});if(n.children&&(n.children=n.children.map(function(f){return u.createControl(f,r)})),this.isListControl(n)){var i=n.props;i.headers&&(i.headers=i.headers.map(function(f){return u.createControl(f,r)}))}var o=this.getControlFormType(n.type);if(o){var s=n;if(typeof r=="function"){var l=r(s);l&&(s=l)}var a;return o.mode==="Runtime"?(a=s,a.fieldType=o.controlFieldType,this._setParentPrototypeToSchema(a,this)):a=new o(s),a}else ge("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"resetInstanceParent",value:function(n,r){delete n.parent,Object.defineProperty(n,"parent",{configurable:!0,get:function(){return r}}),gt(n,"parent")}},{key:"_setParentPrototypeToSchema",value:function(n,r){r._type==="Runtime"&&(Object.defineProperty(n,"parent",{configurable:!0,get:function(){var i=n.id,o=r._controlParentIdMap,s=r.instanceMap;if(!(!o||!s)){var l=o[i],a=s[i];if(!(!l&&!a)){var f=a.findIndex(function(g){return g==n}),v=s[l]||[],y;return v.length!==a.length?y=v[0]:y=v[f],y}}}}),gt(n,"parent"))}},{key:"createControlInstance",value:function(n,r){var u=this.getControlFormType(n);if(u)return new u(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(u){r.register(u[n]),e.staticControlsRuntimeRules.set(u.Runtime.controlType,u.Property.RuntimeRules),u.Property.mode=n})}}],[{key:"staticGetRules",value:function(n,r){var u=e.staticControlsRuntimeRules.get(n),i=[];if(u){var o=new u(r);i=Array.from(o)}return i}},{key:"register",value:function(n,r){var u=n.Designer,i=n.Runtime,o=n.Property;(!u||!i||!u.__is_control__||!i.__is_control__)&&ge("".concat(n," is can't register as a Control"));var s=this.staticControls.findIndex(function(l){return l.Designer.controlType===u.controlType});return s>-1&&(xe("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(s,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),o.mode=r,this}}]),e}();Z(Ee,"staticControlsRuntimeRules",new Map),Z(Ee,"staticControls",Kn),Z(Ee,"staticRegisteredTypes",new Set(Kn.map(function(e){return e.Designer.controlType}))),Z(Ee,"staticRegisteredConfigs",new Map);function bt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function q(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Xn=function e(t){bt(this,e),q(this,"dataCode",void 0),q(this,"fieldCode",void 0),q(this,"fieldType",void 0),q(this,"aliasCode",void 0);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:"",this.aliasCode=t==null?void 0:t.aliasCode},Ls=function e(t){bt(this,e),q(this,"minWidth",void 0),q(this,"maxWidth",void 0),q(this,"flex",void 0);var n;this.minWidth=(n=t==null?void 0:t.minWidth)!==null&&n!==void 0?n:150,this.maxWidth=t==null?void 0:t.maxWidth;var r;this.flex=(r=t==null?void 0:t.flex)!==null&&r!==void 0?r:1},Jn;(function(e){e.CNY="CNY",e.USD="USD",e.JPY="JPY",e.EUR="EUR",e.INR="INR",e.IDR="IDR",e.BRL="BRL",e.AED="AED",e.AUD="AUD",e.CAD="CAD",e.EGP="EGP",e.GBP="GBP",e.ZAR="ZAR",e.KRW="KRW",e.MAD="MAD",e.MXN="MXN",e.MYR="MYR",e.PHP="PHP",e.PLN="PLN",e.RUB="RUB",e.SGD="SGD",e.THB="THB",e.TRY="TRY",e.TWD="TWD",e.VND="VND",e.HKD="HKD",e.IEP="IEP"})(Jn||(Jn={}));var Zn;(function(e){e.DEFAULT_DISPLAY="defaultDisplay",e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.VIEW_FORM_MODEL_TYPE="viewFormModelType",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.IS_SHOW_WATERMARK="isShowWatermark",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions",e.IS_PASTE="isPaste",e.SORTABLE="sortable"})(Zn||(Zn={}));var Et;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(Et||(Et={}));var js=function e(t){bt(this,e),q(this,"width",void 0),q(this,"height",void 0),q(this,"widthConfig",void 0),q(this,"heightConfig",void 0);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var i;this.heightConfig=(i=t==null?void 0:t.heightConfig)!==null&&i!==void 0?i:"fill"};function qs(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function wt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Me(e,t,n){return Qn()?Me=Reflect.construct:Me=function(u,i,o){var s=[null];s.push.apply(s,i);var l=Function.bind.apply(u,s),a=new l;return o&&Se(a,o.prototype),a},Me.apply(null,arguments)}function G(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 Vs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Se(e,t)}function Us(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function ks(e,t){return t&&(Ns(t)==="object"||typeof t=="function")?t:qs(e)}function Se(e,t){return Se=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Se(e,t)}function Ns(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function St(e){var t=typeof Map=="function"?new Map:void 0;return St=function(r){if(r===null||!Us(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Me(r,arguments,we(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Se(u,r)},St(e)}function Qn(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Hs(e){var t=Qn();return function(){var r=we(e),u;if(t){var i=we(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return ks(this,u)}}var Bt=function e(t){wt(this,e),G(this,"isHide",{type:"boolean"})},Yn=function(e){Vs(n,e);var t=Hs(n);function n(r){return wt(this,n),t.call(this)}return n}(St(Array)),K=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";wt(this,e),G(this,"isHide",void 0),G(this,"className",void 0),G(this,"style",void 0),G(this,"caption",void 0),G(this,"defaultState",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new js(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};G(K,"mode",void 0),G(K,"Rules",Bt),G(K,"RuntimeRules",Yn);function U(){return U=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},U.apply(this,arguments)}function Ws(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function At(e){return At=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},At(e)}function Te(e,t){return Te=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Te(e,t)}function zs(){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 Le(e,t,n){return zs()?Le=Reflect.construct:Le=function(u,i,o){var s=[null];s.push.apply(s,i);var l=Function.bind.apply(u,s),a=new l;return o&&Te(a,o.prototype),a},Le.apply(null,arguments)}function Gs(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Ft(e){var t=typeof Map=="function"?new Map:void 0;return Ft=function(r){if(r===null||!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,u)}function u(){return Le(r,arguments,At(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Te(u,r)},Ft(e)}var Ks=/%[sdj%]/g,er=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(er=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function It(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function T(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,u=t[0],i=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var o=String(u).replace(Ks,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(l){return"[Circular]"}break;default:return s}});return o}return u}function Xs(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function C(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Xs(t)&&typeof e=="string"&&!e)}function Js(e,t,n){var r=[],u=0,i=e.length;function o(s){r.push.apply(r,s),u++,u===i&&n(r)}e.forEach(function(s){t(s,o)})}function tr(e,t,n){var r=0,u=e.length;function i(o){if(o&&o.length){n(o);return}var s=r;r=r+1,s<u?t(e[s],i):n([])}i([])}function Zs(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var nr=function(e){Ws(t,e);function t(n,r){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=n,u.fields=r,u}return t}(Ft(Error));function Qs(e,t,n,r){if(t.first){var u=new Promise(function(v,y){var g=function(_){return r(_),_.length?y(new nr(_,It(_))):v()},w=Zs(e);tr(w,n,g)});return u.catch(function(v){return v}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var o=Object.keys(e),s=o.length,l=0,a=[],f=new Promise(function(v,y){var g=function(d){if(a.push.apply(a,d),l++,l===s)return r(a),a.length?y(new nr(a,It(a))):v()};o.length||(r(a),v()),o.forEach(function(w){var d=e[w];i.indexOf(w)!==-1?tr(d,n,g):Js(d,n,g)})});return f.catch(function(v){return v}),f}function rr(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function ur(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=U(U({},e[n]),r):e[n]=r}}return e}function ir(e,t,n,r,u,i){e.required&&(!n.hasOwnProperty(e.field)||C(t,i||e.type))&&r.push(T(u.messages.required,e.fullField))}function Ys(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(T(u.messages.whitespace,e.fullField))}var Ct={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(Ct.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(Ct.url)},hex:function(t){return typeof t=="string"&&!!t.match(Ct.hex)}};function el(e,t,n,r,u){if(e.required&&t===void 0){ir(e,t,n,r,u);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;i.indexOf(o)>-1?Be[o](t)||r.push(T(u.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(T(u.messages.types[o],e.fullField,e.type))}function tl(e,t,n,r,u){var i=typeof e.len=="number",o=typeof e.min=="number",s=typeof e.max=="number",l=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,v=typeof t=="number",y=typeof t=="string",g=Array.isArray(t);if(v?f="number":y?f="string":g&&(f="array"),!f)return!1;g&&(a=t.length),y&&(a=t.replace(l,"_").length),i?a!==e.len&&r.push(T(u.messages[f].len,e.fullField,e.len)):o&&!s&&a<e.min?r.push(T(u.messages[f].min,e.fullField,e.min)):s&&!o&&a>e.max?r.push(T(u.messages[f].max,e.fullField,e.max)):o&&s&&(a<e.min||a>e.max)&&r.push(T(u.messages[f].range,e.fullField,e.min,e.max))}var ie="enum";function nl(e,t,n,r,u){e[ie]=Array.isArray(e[ie])?e[ie]:[],e[ie].indexOf(t)===-1&&r.push(T(u.messages[ie],e.fullField,e[ie].join(", ")))}function rl(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(T(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var i=new RegExp(e.pattern);i.test(t)||r.push(T(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var m={required:ir,whitespace:Ys,type:el,range:tl,enum:nl,pattern:rl};function ul(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t,"string")&&!e.required)return n();m.required(e,t,r,i,u,"string"),C(t,"string")||(m.type(e,t,r,i,u),m.range(e,t,r,i,u),m.pattern(e,t,r,i,u),e.whitespace===!0&&m.whitespace(e,t,r,i,u))}n(i)}function il(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();m.required(e,t,r,i,u),t!==void 0&&m.type(e,t,r,i,u)}n(i)}function ol(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),C(t)&&!e.required)return n();m.required(e,t,r,i,u),t!==void 0&&(m.type(e,t,r,i,u),m.range(e,t,r,i,u))}n(i)}function al(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();m.required(e,t,r,i,u),t!==void 0&&m.type(e,t,r,i,u)}n(i)}function sl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();m.required(e,t,r,i,u),C(t)||m.type(e,t,r,i,u)}n(i)}function ll(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();m.required(e,t,r,i,u),t!==void 0&&(m.type(e,t,r,i,u),m.range(e,t,r,i,u))}n(i)}function cl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();m.required(e,t,r,i,u),t!==void 0&&(m.type(e,t,r,i,u),m.range(e,t,r,i,u))}n(i)}function fl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return n();m.required(e,t,r,i,u,"array"),t!=null&&(m.type(e,t,r,i,u),m.range(e,t,r,i,u))}n(i)}function dl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();m.required(e,t,r,i,u),t!==void 0&&m.type(e,t,r,i,u)}n(i)}var pl="enum";function hl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();m.required(e,t,r,i,u),t!==void 0&&m[pl](e,t,r,i,u)}n(i)}function vl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t,"string")&&!e.required)return n();m.required(e,t,r,i,u),C(t,"string")||m.pattern(e,t,r,i,u)}n(i)}function yl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t,"date")&&!e.required)return n();if(m.required(e,t,r,i,u),!C(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),m.type(e,s,r,i,u),s&&m.range(e,s.getTime(),r,i,u)}}n(i)}function _l(e,t,n,r,u){var i=[],o=Array.isArray(t)?"array":typeof t;m.required(e,t,r,i,u,o),n(i)}function Dt(e,t,n,r,u){var i=e.type,o=[],s=e.required||!e.required&&r.hasOwnProperty(e.field);if(s){if(C(t,i)&&!e.required)return n();m.required(e,t,r,o,u,i),C(t,i)||m.type(e,t,r,o,u)}n(o)}function gl(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(C(t)&&!e.required)return n();m.required(e,t,r,i,u)}n(i)}var Ae={string:ul,method:il,number:ol,boolean:al,regexp:sl,integer:ll,float:cl,array:fl,object:dl,enum:hl,pattern:vl,date:yl,url:Dt,hex:Dt,email:Dt,required:_l,any:gl};function $t(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var Ot=$t();function Q(e){this.rules=null,this._messages=Ot,this.define(e)}Q.prototype={messages:function(t){return t&&(this._messages=ur($t(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var u=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var i=t,o=n,s=r;if(typeof o=="function"&&(s=o,o={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function l(d){var _,c=[],p={};function b(B){if(Array.isArray(B)){var F;c=(F=c).concat.apply(F,B)}else c.push(B)}for(_=0;_<d.length;_++)b(d[_]);c.length?p=It(c):(c=null,p=null),s(c,p)}if(o.messages){var a=this.messages();a===Ot&&(a=$t()),ur(a,o.messages),o.messages=a}else o.messages=this.messages();var f,v,y={},g=o.keys||Object.keys(this.rules);g.forEach(function(d){f=u.rules[d],v=i[d],f.forEach(function(_){var c=_;typeof c.transform=="function"&&(i===t&&(i=U({},i)),v=i[d]=c.transform(v)),typeof c=="function"?c={validator:c}:c=U({},c),c.validator=u.getValidationMethod(c),c.field=d,c.fullField=c.fullField||d,c.type=u.getType(c),c.validator&&(y[d]=y[d]||[],y[d].push({rule:c,value:v,source:i,field:d}))})});var w={};return Qs(y,o,function(d,_){var c=d.rule,p=(c.type==="object"||c.type==="array")&&(typeof c.fields=="object"||typeof c.defaultField=="object");p=p&&(c.required||!c.required&&d.value),c.field=d.field;function b(N,A){return U(U({},A),{},{fullField:c.fullField+"."+N})}function B(N){N===void 0&&(N=[]);var A=N;if(Array.isArray(A)||(A=[A]),!o.suppressWarning&&A.length&&Q.warning("async-validator:",A),A.length&&c.message!==void 0&&(A=[].concat(c.message)),A=A.map(rr(c)),o.first&&A.length)return w[c.field]=1,_(A);if(!p)_(A);else{if(c.required&&!d.value)return c.message!==void 0?A=[].concat(c.message).map(rr(c)):o.error&&(A=[o.error(c,T(o.messages.required,c.field))]),_(A);var H={};if(c.defaultField)for(var zr in d.value)d.value.hasOwnProperty(zr)&&(H[zr]=c.defaultField);H=U(U({},H),d.rule.fields);for(var fe in H)if(H.hasOwnProperty(fe)){var bd=Array.isArray(H[fe])?H[fe]:[H[fe]];H[fe]=bd.map(b.bind(null,fe))}var Gr=new Q(H);Gr.messages(o.messages),d.rule.options&&(d.rule.options.messages=o.messages,d.rule.options.error=o.error),Gr.validate(d.value,d.rule.options||o,function(_n){var de=[];A&&A.length&&de.push.apply(de,A),_n&&_n.length&&de.push.apply(de,_n),_(de.length?de:null)})}}var F;c.asyncValidator?F=c.asyncValidator(c,d.value,B,d.source,o):c.validator&&(F=c.validator(c,d.value,B,d.source,o),F===!0?B():F===!1?B(c.message||c.field+" fails"):F instanceof Array?B(F):F instanceof Error&&B(F.message)),F&&F.then&&F.then(function(){return B()},function(N){return B(N)})},function(d){l(d)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Ae.hasOwnProperty(t.type))throw new Error(T("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var n=Object.keys(t),r=n.indexOf("message");return r!==-1&&n.splice(r,1),n.length===1&&n[0]==="required"?Ae.required:Ae[this.getType(t)]||!1}},Q.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},Q.warning=er,Q.messages=Ot,Q.validators=Ae;var ml={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 bl(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new Q(e);return n.messages(Object.assign(ml,t)),n}var or=new Vn;function Rt(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 El(e){if(Array.isArray(e))return e}function wl(e){if(Array.isArray(e))return Rt(e)}function ar(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function sr(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){ar(i,r,u,o,s,"next",l)}function s(l){ar(i,r,u,o,s,"throw",l)}o(void 0)})}}function Sl(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 Bl(e,t,n){return t&&lr(e.prototype,t),n&&lr(e,n),e}function S(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function cr(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function fr(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Al(){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 Fl(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function dr(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){S(e,u,n[u])})}return e}function Il(e){return El(e)||fr(e)||pr(e)||Al()}function Pt(e){return wl(e)||fr(e)||pr(e)||Fl()}function Cl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function pr(e,t){if(!!e){if(typeof e=="string")return Rt(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 Rt(e,t)}}function hr(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var P=function(){function t(n){var r=this;Sl(this,t),S(this,"id",void 0),S(this,"name",void 0),S(this,"icon",void 0),S(this,"type",void 0),S(this,"controlType",void 0),S(this,"props",void 0),S(this,"setting",[]),S(this,"fieldType",void 0),S(this,"eventKeys",[]),S(this,"customEvents",[]),S(this,"parent",null),S(this,"slots",void 0),S(this,"slotPosition",void 0),S(this,"updateSetting",yr),S(this,"removeSetting",vr),this._callControlHooks("preInstance",n);var u=cr(this,t)?this.constructor:void 0,i=u.controlName,o=u.controlIcon,s=u.controlType,l=u.controlFieldType,a=u.controlEventKeys,f=u.controlCustomEvents,v=u.name,y=u.setting,g=u.slots,w=u.slotPosition;i&&o&&s||On("The ".concat(v," controlName,controlIcon,controlType is not define"));var d;this.id=(d=n==null?void 0:n.id)!==null&&d!==void 0?d:at(10),this.name=i,this.icon=o;var _;this.type=(_=n==null?void 0:n.type)!==null&&_!==void 0?_:s,this.props=new K(n==null?void 0:n.props,(cr(this,t)?this.constructor:void 0).controlName);var c;this.controlType=(c=n==null?void 0:n.controlType)!==null&&c!==void 0?c:"base",this.setting=z(y);var p;this.fieldType=(p=n==null?void 0:n.fieldType)!==null&&p!==void 0?p:l,this.eventKeys=z(a),this.customEvents=z(f),this.slots=z(g),this.slotPosition=z(w),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return Bl(t,[{key:"rules",get:function(){var r=this.props.constructor.Rules;return r?new r(this.props):{}}},{key:"_callControlHooks",value:function(){for(var r=arguments.length,u=new Array(r),i=0;i<r;i++)u[i]=arguments[i];var o,s=Il(u),l=s[0],a=s.slice(1);return(o=or).emit.apply(o,[l,this].concat(Pt(a)))}},{key:"preUpdate",value:function(r,u){this._callControlHooks("preUpdateProps",r,u)}},{key:"postUpdate",value:function(r,u){this._callControlHooks("postUpdateProps",r,u)}},{key:"updateProps",value:function(r,u){this.preUpdate(r,u),xn(this.props,r,u),this.postUpdate(r,u)}},{key:"preValidate",value:function(){var r=this;return sr(function(){var u,i,o;return hr(this,function(s){switch(s.label){case 0:return u=dr({},r.rules),[4,r._callControlHooks("preValidate",u)];case 1:return i=s.sent(),o=i[i.length-1],[2,o===!1?void 0:o]}})})()}},{key:"validate",value:function(r,u){var i=this;return sr(function(){var o,s,l,a;return hr(this,function(f){switch(f.label){case 0:return[4,i.preValidate()];case 1:o=f.sent(),s=o!==void 0?o:dr({},i.rules),Array.isArray(u)&&u.forEach(function(v){s.hasOwnProperty(v)&&delete s[v]}),l=bl(s,r),f.label=2;case 2:return f.trys.push([2,4,,5]),[4,l.validate(i.props)];case 3:return f.sent(),[2,!0];case 4:throw a=f.sent(),a.control||(a.control=i),a;case 5:return[2]}})})()}},{key:"toDataBindModel",value:function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,u=this.fieldType,i=this.id,o=this.type,s=this.props,l=s.dataBind,a=s.datasourceBind,f=s.optionConfig,v=s.caption,y=s.required,g=s.maxLength,w=s.options,d=s.encrypted,_=s.encryptedMode;if(!(!u&&!l&&!a)){var c={parentId:r,fieldType:u,controlId:i,caption:v,type:o,props:{}};switch(l&&(c.dataBind=l),f){case"datasource":case void 0:a&&(c.datasourceBind=a);break;case"custom":c.props.options=w;break}return y!==void 0&&(c.required=y),g!==void 0&&(c.maxLength=g),d!==void 0&&(c.encrypted=d),_!==void 0&&(c.encryptedMode=_),c}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:z(this.props),fieldType:this.fieldType,controlType:this.controlType}}}],[{key:"updateBasicControl",value:function(r,u){if(r==="setting"){if(u.add){var i;(i=this.setting).push.apply(i,Pt(u.add))}u.remove&&this.removeSettingItem(u.remove),u.update}}}]),t}();S(P,"mode","Designer"),S(P,"slots",void 0),S(P,"slotPosition",void 0),S(P,"controlName","\u63A7\u4EF6"),S(P,"controlIcon","icon"),S(P,"controlType","control"),S(P,"controlFieldType",void 0),S(P,"controlEventKeys",[]),S(P,"controlCustomEvents",[]),S(P,"setting",[]),S(P,"__is_control__",!0),S(P,"removeSettingItem",vr),S(P,"updateSettingItem",yr);function vr(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u,i=typeof r!="string",o=(u=t.setting)===null||u===void 0?void 0:u.findIndex(function(a){return a.key===(i?r.key:r)});if(o!==-1){var s,l;i?t.setting[o].showItems=(s=t.setting[o].showItems)===null||s===void 0?void 0:s.filter(function(a){return!r.hideItems.includes(a)}):t.setting.splice(o,1),i&&!(!((l=t.setting[o].showItems)===null||l===void 0)&&l.length)&&t.setting.splice(o,1)}})}function yr(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var i=n.setting.find(function(a){return a.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if((typeof t=="undefined"?"undefined":Cl(t))==="object"){var o,s=(o=t.type)!==null&&o!==void 0?o:"replace";if(s==="replace")i.showItems=t.showItems;else{var l;(l=i.showItems).push.apply(l,Pt(t.showItems))}}}})}function Dl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function $l(e,t,n){return t&&_r(e.prototype,t),n&&_r(e,n),e}function L(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ol(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var Fe=function(){function t(n){Dl(this,t),L(this,"id",void 0),L(this,"type",void 0),L(this,"controlType",void 0),L(this,"props",void 0),L(this,"fieldType",void 0),L(this,"customEvents",[]),L(this,"pageStatus",void 0),L(this,"parent",null);var r=Ol(this,t)?this.constructor:void 0,u=r.controlType,i=r.controlFieldType,o=r.name,s=r.controlCustomEvents;u||On("The ".concat(o," controlType is not define"));var l;this.id=(l=n==null?void 0:n.id)!==null&&l!==void 0?l:at(10);var a;this.type=(a=n==null?void 0:n.type)!==null&&a!==void 0?a:u,this.props=new K(n==null?void 0:n.props),this.customEvents=s;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var v;this.fieldType=(v=n==null?void 0:n.fieldType)!==null&&v!==void 0?v:i;var y;this.pageStatus=(y=n==null?void 0:n.pageStatus)!==null&&y!==void 0?y:Et.UNKNOWN}return $l(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var u=new r(this.props);return Array.from(u)}return[]}}]),t}();L(Fe,"mode","Runtime"),L(Fe,"controlType","control"),L(Fe,"controlFieldType",void 0),L(Fe,"__is_control__",!0),L(Fe,"controlCustomEvents",[]);function gr(e){return(e==null?void 0:e.dataCode)!==void 0&&(e==null?void 0:e.fieldCode)!==void 0}function D(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function xt(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 Mt(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Tt(e,t)}function Rl(e,t){return t&&(Pl(t)==="object"||typeof t=="function")?t:D(e)}function Tt(e,t){return Tt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Tt(e,t)}function Pl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function xl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Lt(e){var t=xl();return function(){var r=je(e),u;if(t){var i=je(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Rl(this,u)}}var Ml=function(e){Mt(n,e);var t=Lt(n);function n(r){xt(this,n);var u;u=t.call(this,r),I(D(u),"dataBind",{}),I(D(u),"caption",{type:"string",required:!0,message:j.getMessage("pleaseEnterCaption")}),I(D(u),"isHideCaption",{type:"boolean"}),I(D(u),"labelPosition",{type:"enum",enum:["top","left"]}),I(D(u),"defaultState",{type:"enum",enum:["default","readonly"]}),I(D(u),"required",{type:"boolean"}),I(D(u),"captionTip",{type:"string",required:!1,message:j.getMessage("pleaseEnterCaptionTip")});var i={fieldCode:{type:"string",required:!0,message:j.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:j.getMessage("pleaseEnterFieldCode")}};if(gr(r.dataBind))u.dataBind={type:"object",required:!0,fields:z(i),message:j.getMessage("pleaseEnterFieldCode")};else{var o={type:"object",required:!0,fields:{},message:j.getMessage("pleaseEnterFieldCode")};Object.keys(r.dataBind).forEach(function(s){o.fields[s]={type:"object",required:!0,fields:z(i),message:j.getMessage("pleaseEnterFieldCode")}}),u.dataBind=o}return r.isShowCaptionTip&&(u.captionTip.required=!0),u}return n}(Bt),Tl=function(e){Mt(n,e);var t=Lt(n);function n(r){xt(this,n);var u;u=t.call(this,r);var i=r.isHide?!1:r.required;return i&&u.push({type:"string",required:i,message:r.requiredMessage!==""?r.requiredMessage:j.getMessage("runtimeRequired",{caption:r.caption})}),u}return n}(Yn),jt=function(e){Mt(n,e);var t=Lt(n);function n(r){xt(this,n);var u;u=t.call(this,r),I(D(u),"caption",void 0),I(D(u),"isHideCaption",void 0),I(D(u),"isShowCaptionTip",void 0),I(D(u),"captionTip",void 0),I(D(u),"labelPosition",void 0),I(D(u),"dataBind",void 0),I(D(u),"defaultValue",void 0),I(D(u),"placeholder",void 0),I(D(u),"defaultState",void 0),I(D(u),"required",void 0),I(D(u),"requiredMessage",void 0);var i;u.caption=(i=r==null?void 0:r.caption)!==null&&i!==void 0?i:"";var o;u.isHideCaption=(o=r==null?void 0:r.isHideCaption)!==null&&o!==void 0?o:!1;var s;u.isShowCaptionTip=(s=r==null?void 0:r.isShowCaptionTip)!==null&&s!==void 0?s:!1;var l;u.captionTip=(l=r==null?void 0:r.captionTip)!==null&&l!==void 0?l:"";var a;u.defaultState=(a=r==null?void 0:r.defaultState)!==null&&a!==void 0?a:"default";var f;u.labelPosition=(f=r==null?void 0:r.labelPosition)!==null&&f!==void 0?f:"top";var v;u.placeholder=(v=r==null?void 0:r.placeholder)!==null&&v!==void 0?v:"";var y;u.required=(y=r==null?void 0:r.required)!==null&&y!==void 0?y:!1;var g;u.requiredMessage=(g=r==null?void 0:r.requiredMessage)!==null&&g!==void 0?g:"",u.dataBind=new Xn(r==null?void 0:r.dataBind);var w;return u.defaultValue=(w=r==null?void 0:r.defaultValue)!==null&&w!==void 0?w:"",u}return n}(K);I(jt,"Rules",Ml),I(jt,"RuntimeRules",Tl);function qt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ll(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function 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 jl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Vt(e,t)}function ql(e,t){return t&&(Vl(t)==="object"||typeof t=="function")?t:qt(e)}function Vt(e,t){return Vt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Vt(e,t)}function Vl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ul(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function kl(e){var t=Ul();return function(){var r=Ve(e),u;if(t){var i=Ve(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return ql(this,u)}}var mr=function(e){jl(n,e);var t=kl(n);function n(r){Ll(this,n);var u;return u=t.call(this,r),qe(qt(u),"controlType","form"),qe(qt(u),"props",void 0),u.props=new jt(r==null?void 0:r.props),u}return n}(P);qe(mr,"controlEventKeys",["on_change","on_focus","on_blur"]),qe(mr,"controlCustomAttributes",void 0);function Nl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Hl(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 Wl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ut(e,t)}function zl(e,t){return t&&(Gl(t)==="object"||typeof t=="function")?t:Nl(e)}function Ut(e,t){return Ut=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ut(e,t)}function Gl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Kl(){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 Xl(e){var t=Kl();return function(){var r=Ue(e),u;if(t){var i=Ue(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return zl(this,u)}}var Jl=function(e){Wl(n,e);var t=Xl(n);function n(r){return Hl(this,n),t.call(this,r)}return n}(K);function kt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Zl(e){if(Array.isArray(e))return kt(e)}function ne(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function br(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function Ql(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){br(i,r,u,o,s,"next",l)}function s(l){br(i,r,u,o,s,"throw",l)}o(void 0)})}}function Yl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Er(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ec(e,t,n){return t&&Er(e.prototype,t),n&&Er(e,n),e}function Y(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function oe(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?oe=Reflect.get:oe=function(u,i,o){var s=lc(u,i);if(!!s){var l=Object.getOwnPropertyDescriptor(s,i);return l.get?l.get.call(o||u):l.value}},oe(e,t,n||e)}function ee(e){return ee=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ee(e)}function tc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Nt(e,t)}function nc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function rc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function uc(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function ic(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){Y(e,u,n[u])})}return e}function oc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function ac(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):oc(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function sc(e,t){return t&&(cc(t)==="object"||typeof t=="function")?t:ne(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Nt(e,t)}function lc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=ee(e),e!==null););return e}function wr(e){return Zl(e)||rc(e)||fc(e)||uc()}function cc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function fc(e,t){if(!!e){if(typeof e=="string")return kt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return kt(e,t)}}function 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 pc(e){var t=dc();return function(){var r=ee(e),u;if(t){var i=ee(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return sc(this,u)}}function hc(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var vc=1e4,Sr=function(t){tc(r,t);var n=pc(r);function r(u){Yl(this,r);var i;i=n.call(this,u),Y(ne(i),"controlType","layout"),Y(ne(i),"children",void 0),Y(ne(i),"excludes",void 0),Y(ne(i),"childrenMaxLength",void 0),Y(ne(i),"props",void 0);var o=nc(this,r)?this.constructor:void 0,s=o.excludes,l=o.childrenMaxLength;return i.props=new Jl(u==null?void 0:u.props),mt(ne(i),"children",u==null?void 0:u.children,void 0,"Designer"),i.excludes=z(s),i.childrenMaxLength=l,i}return ec(r,[{key:"judgeExcludesChildren",value:function(i){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(i)}},{key:"judgeJoinChildren",value:function(i){var o=this.judgeExcludesChildren(i);return o&&this.childrenMaxLength>this.children.length}},{key:"validate",value:function(i,o){var s=this,l=this,a=function(){return oe(ee(r.prototype),"validate",s)};return Ql(function(){return hc(this,function(f){switch(f.label){case 0:return[4,a().call(l,i,o)];case 1:return f.sent(),[4,Promise.all(l.children.map(function(v){return v.validate(i,o)}))];case 2:return f.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var i=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,o=oe(ee(r.prototype),"toDataBindModel",this).call(this),s=o?[o]:[];return this.children.reduce(function(l,a){var f=a.toDataBindModel(i);if(Array.isArray(f)){var v=f.filter(function(y){return!!y});return wr(l).concat(wr(v))}return f&&l.push(f),l},s)}},{key:"toSchema",value:function(){var i=oe(ee(r.prototype),"toSchema",this).call(this),o=this.children.map(function(s){var l=s.toSchema();return l});return ac(ic({},i),{children:o})}}]),r}(P);Y(Sr,"excludes",!1),Y(Sr,"childrenMaxLength",vc);function X(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 ae(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ke(e){return ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ke(e)}function _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&&Ht(e,t)}function gc(e,t){return t&&(mc(t)==="object"||typeof t=="function")?t:X(e)}function Ht(e,t){return Ht=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ht(e,t)}function mc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function bc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ec(e){var t=bc();return function(){var r=ke(e),u;if(t){var i=ke(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return gc(this,u)}}var wc=function(e){_c(n,e);var t=Ec(n);function n(r,u,i){yc(this,n);var o;o=t.call(this,u),ae(X(o),"headers",void 0),ae(X(o),"footers",void 0),ae(X(o),"pageIndex",void 0),ae(X(o),"pageSize",void 0),ae(X(o),"pageSizeOptions",void 0),ae(X(o),"totalCount",void 0),mt(X(o),"headers",u==null?void 0:u.headers,r,i),mt(X(o),"footers",u==null?void 0:u.footers,r);var s;o.pageIndex=(s=u==null?void 0:u.pageIndex)!==null&&s!==void 0?s:1;var l;o.pageSize=(l=u==null?void 0:u.pageSize)!==null&&l!==void 0?l:20;var a;o.pageSizeOptions=(a=u==null?void 0:u.pageSizeOptions)!==null&&a!==void 0?a:[20];var f;return o.totalCount=(f=u==null?void 0:u.totalCount)!==null&&f!==void 0?f:0,o}return n}(K);function 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 Sc(e){if(Array.isArray(e))return Wt(e)}function Ne(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Br(e,t,n,r,u,i,o){try{var s=e[i](o),l=s.value}catch(a){n(a);return}s.done?t(l):Promise.resolve(l).then(r,u)}function Bc(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(l){Br(i,r,u,o,s,"next",l)}function s(l){Br(i,r,u,o,s,"throw",l)}o(void 0)})}}function Ac(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ar(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Fc(e,t,n){return t&&Ar(e.prototype,t),n&&Ar(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(u,i,o){var s=Rc(u,i);if(!!s){var l=Object.getOwnPropertyDescriptor(s,i);return l.get?l.get.call(o||u):l.value}},se(e,t,n||e)}function te(e){return te=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},te(e)}function Ic(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&zt(e,t)}function Cc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Dc(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Fr(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){He(e,u,n[u])})}return e}function $c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function Ir(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):$c(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Oc(e,t){return t&&(Pc(t)==="object"||typeof t=="function")?t:Ne(e)}function zt(e,t){return zt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},zt(e,t)}function Rc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=te(e),e!==null););return e}function Cr(e){return Sc(e)||Cc(e)||xc(e)||Dc()}function Pc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function xc(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 Mc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Tc(e){var t=Mc();return function(){var r=te(e),u;if(t){var i=te(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Oc(this,u)}}function Lc(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(a){return function(f){return l([a,f])}}function l(a){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){o=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){o.label=a[1];break}if(a[0]===6&&o.label<u[1]){o.label=u[1],u=a;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(a);break}u[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var jc=function(e){Ic(n,e);var t=Tc(n);function n(r){Ac(this,n);var u;return u=t.call(this,r),He(Ne(u),"controlType","list"),He(Ne(u),"props",void 0),u.props=new wc(Ne(u),r==null?void 0:r.props,"Designer"),u}return Fc(n,[{key:"validate",value:function(u,i){var o=this,s=this,l=function(){return se(te(n.prototype),"validate",o)};return Bc(function(){return Lc(this,function(a){switch(a.label){case 0:return[4,l().call(s,u)];case 1:return a.sent(),[4,Promise.all(s.props.headers.map(function(f){return f.validate(u,i)}))];case 2:return a.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var u=se(te(n.prototype),"toDataBindModel",this).call(this),i=u?[u]:[],o=this.id;return this.props.headers.reduce(function(s,l){var a=l.toDataBindModel(o);if(Array.isArray(a)){var f=a.filter(function(v){return!!v});return Cr(s).concat(Cr(f))}return a&&s.push(a),s},i)}},{key:"toSchema",value:function(){var u=se(te(n.prototype),"toSchema",this).call(this),i=this.props.headers.map(function(o){return o.toSchema()});return Ir(Fr({},u),{props:Ir(Fr({},this.props),{headers:i})})}}]),n}(P);He(jc,"controlFieldType",V.LIST);function x(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Dr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function M(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 qc(e,t){return t&&(Vc(t)==="object"||typeof t=="function")?t:x(e)}function Gt(e,t){return Gt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Gt(e,t)}function Vc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Uc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Or(e){var t=Uc();return function(){var r=We(e),u;if(t){var i=We(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return qc(this,u)}}var kc=function(e){$r(n,e);var t=Or(n);function n(r){Dr(this,n);var u;return u=t.call(this,r),M(x(u),"caption",{type:"string",required:!0,message:j.getMessage("pleaseEnterCaption")}),M(x(u),"width",{type:"number",required:!1,message:j.getMessage("pleaseEnterColumnWidth")}),u.width.required=r.widthType==="px",u}return n}(Bt),Nc=function(e){$r(n,e);var t=Or(n);function n(r){Dr(this,n);var u;u=t.call(this,r),M(x(u),"widthType",void 0),M(x(u),"width",void 0),M(x(u),"caption",void 0),M(x(u),"dataBind",void 0),M(x(u),"autoWidth",void 0),M(x(u),"fixed",void 0),M(x(u),"sort",void 0),M(x(u),"align",void 0),M(x(u),"colSpan",void 0),M(x(u),"autoHeight",void 0),M(x(u),"children",void 0);var i;u.width=(i=r==null?void 0:r.width)!==null&&i!==void 0?i:150,u.widthType=(r==null?void 0:r.widthType)||"auto";var o;u.caption=(o=r==null?void 0:r.caption)!==null&&o!==void 0?o:"";var s;u.fixed=(s=r==null?void 0:r.fixed)!==null&&s!==void 0?s:"none",u.autoWidth=new Ls(r==null?void 0:r.autoWidth),u.dataBind=new Xn(r==null?void 0:r.dataBind);var l;u.sort=(l=r==null?void 0:r.sort)!==null&&l!==void 0?l:!0,u.align=r==null?void 0:r.align,u.colSpan=r==null?void 0:r.colSpan;var a;return u.autoHeight=(a=r==null?void 0:r.autoHeight)!==null&&a!==void 0?a:!1,u}return n}(K);M(Nc,"Rules",kc);function Kt(e){return"children"in e&&me(e.children)}function Rr(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 Hc=[h.AMOUNT,h.CALC,h.DATE_RANGE];V.DECIMAL,V.VARCHAR,V.DECIMAL,V.VARCHAR,V.TIMESTAMP,V.TIMESTAMP;function Wc(e){let t=[];return ze(e,n=>{n.controlType===R.FORM?t.push(n):(n.type,h.SUBTABLE)}),t}function zc(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===h.TITLE)return n;if(Hc.includes(n.type)){const r=n.dataBind;Object.keys(r).forEach(u=>{const i=r[u],o=n.controlId+"_"+u;i.fieldCode=Pr(o),i.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 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 gn(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(u=>u.validate(t,n)))).every(u=>u):yield e.validate(t,n)})}const Gc=[h.TITLE,h.GRID_TABLE_COLUMN,h.SUBTABLE_COLUMN,h.OPERATION_COLUMN,h.DATA_VIEW,h.LIST_VIEW,h.HEADER,h.FOOTER,h.SIMPLE_SEARCH,h.ROW,h.GRID_ROW,h.COL,h.GRID,h.DIVIDER,h.TAB_PANE,h.TAB,h.CARD_GROUP,h.ACTION_BAR,h.GRID_LAYOUT_CONTAINER,h.GRID_LAYOUT_WRAP],Kc=[h.CALC],Xc={check:{id:"listPageCheckBtnId",caption:"\u67E5\u770B"},edit:{id:"listPageEditBtnId",caption:"\u7F16\u8F91"},delete:{id:"listPageDeleteBtnId",caption:"\u5220\u9664"}};function Ie(e,t){var r,u,i,o,s,l,a,f,v;const n=[];if(me(e))n.push(...e.map(y=>Ie(y,t)).flat());else{const y=e.type,{caption:g,content:w}=e.props;let d;if(Gc.includes(y))y===h.OPERATION_COLUMN&&Object.entries(Xc).reduce((_,[c,{caption:p,id:b}])=>{var F;const B=e.props[c];return B&&B.isShow&&_.push({controlId:b,caption:p,type:e.type,controlType:e.controlType,parentId:(F=t==null?void 0:t.controlId)!=null?F:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),_},n);else if(d={controlId:e.id,caption:g||w||e.name,type:e.type,controlType:e.controlType,parentId:(r=t==null?void 0:t.controlId)!=null?r:null,canEdit:!Kc.includes(y),canRead:!0,canHide:!0,group:"element"},t&&t.type===h.SUBTABLE&&(d.caption=t.caption+"_"+d.caption),y===h.VUE_FORM_ITEM&&(d.caption=e.props.controlExportName||e.name),(e.controlType===R.FORM||e.controlType===R.COLUMN)&&((i=(u=e.props)==null?void 0:u.dataBind)==null?void 0:i.fieldCode)!==void 0&&((s=(o=e.props)==null?void 0:o.dataBind)==null?void 0:s.fieldCode)!==""&&(d.group="field"),n.push(d),y===h.VUE_FORM_ITEM){let _="element";((a=(l=e.props)==null?void 0:l.dataBind)==null?void 0:a.fieldCode)!==void 0&&((v=(f=e.props)==null?void 0:f.dataBind)==null?void 0:v.fieldCode)!==""&&(_="field");const c=e.props.permissions;c==null||c.map(p=>{var b;d={controlId:p.key,caption:p.caption,type:e.type,controlType:e.controlType,parentId:(b=e.id)!=null?b:null,canEdit:!0,canRead:!0,canHide:!0,group:_},n.push(d)})}e.children&&n.push(...e.children.map(_=>Ie(_,t)).flat()),e.controlType===R.LIST&&n.push(...e.props.headers.map(_=>Ie(_,d)).flat())}return n}class le extends Ee{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new be,this.fieldTypes=V,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:n,Setting:r}=t;this.controlSettingMap.set(n.controlType,r)})}registerControl(t){this.constructor.register(t,"Designer");const{Designer:n,Setting:r}=t;this.register(n),this.registeredControlTypes.add(n.controlType),this.controlSettingMap.set(n.controlType,r)}getControlSetting(t){const n=this.controlSettingMap.get(t);return n||null}setInstance(t,n,r){try{if(!t)return;t.updateProps(n,r)}catch(u){throw u}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return gn(this,null,function*(){return Zt(...t)})}getModelBindInfoList(...t){return Jt(...t)}getSchema(...t){return Xt(...t)}listenControlHook(...t){return or.on(...t)}}le.EventLogic=be;class Jc{constructor(){this.designer=new le}ListPageBuilder(){const t=this.designer.createControlInstance(h.LIST_VIEW),n=this.designer.createControlInstance(h.SIMPLE_SEARCH),r=this.designer.createControlInstance(h.GRID_TABLE),u=this.designer.createControlInstance(h.CREATE_FORM_LIST_BUTTON),i=this.designer.createControlInstance(h.IMPORT_RECORD_LIST_BUTTON),o=this.designer.createControlInstance(h.EXPORT_LIST_BUTTON),s=this.designer.createControlInstance(h.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(i),r.children.push(o),r.children.push(s),t.children.push(n),t.children.push(r),t}ProListPageBuilder(){const t=this.designer.createControlInstance(h.LIST_VIEW);t.props.countType="async";const n=this.designer.createControlInstance(h.SIMPLE_SEARCH),r=this.designer.createControlInstance(h.GRID_TABLE),u=this.designer.createControlInstance(h.EXPORT_LIST_BUTTON),i=this.designer.createControlInstance(h.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(i),t.children.push(n),t.children.push(r),t.props.rowStyle={type:"rules",interval:{color:""},rules:[{id:"default",name:"\u5BA1\u6279\u901A\u8FC7\u5355\u636E",color:"theme",filters:[{ruleId:1,symbol:"op_equal",leftVariableBo:{type:"varchar",value:"process_status",name:"\u6D41\u7A0B\u72B6\u6001"},checked:!1,describe:"ruleLine",type:"condition",rightVariableBo:{type:"custom",value:["COMPLETE"],displayBos:[]},isLowPerformance:!1,isMoreRelation:!1}],settings:[{color:"theme",field_codes:["process_status"],type:"fontColor",scope:"col"}],script:"(SpecialMatch(data,sys,'process_status','varchar','op_equal','COMPLETE'))"}]},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_PAGE);return n.props.isHideCaption=!0,n.props.controlExportName="VuePage",t.children.push(n),t}}class xr{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?Lr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(n=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(n))})}getSettingItems(t){return t.type==="group"?t.items:t.items.reduce((n,r)=>(n.push(...r.items),n),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=De(t)}updateDataFieldCodeMap(t){const n=De(t);if(!n)return;const r=this.dataFieldCodeMap.get(n.props.datasourceBind.dataCode);if(!!r){for(const[u,i]of r.entries())if(i.id===t.id){r.delete(u);break}Tr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;Ce(this.instance,u=>{t.push(u),n.set(u.id,u),Tr(u,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function Mr(e,t,n){const{dataCode:r,fieldCode:u}=t;r&&u&&(e.has(r)||e.set(r,new Map),e.get(r).set(u,n))}function Tr(e,t){if(e.controlType===R.FORM){const n=e.props.dataBind;gr(n)?Mr(t,n,e):Object.values(n).forEach(r=>{Mr(t,r,e)})}}function Ce(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{t(r),Kt(r)&&Ce(r.children,t),Rr(r)&&Ce(r.props.headers,t)})}function Qt(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&&!Qt(t);)t=t.parent;return t}function Lr(e){const t=[e];return Ce(e,n=>{n!==e&&t.includes(n.parent)&&!Qt(n)&&t.push(n)}),t}function Zc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jr(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&&jr(e.prototype,t),n&&jr(e,n),e}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}var J=function(){function e(t){Zc(this,e),Yt(this,"visible",void 0),Yt(this,"expression",void 0),Yt(this,"updateParent",void 0);var n;this.visible=(n=t==null?void 0:t.visible)!==null&&n!==void 0?n:!0;var r;this.expression=(r=t==null?void 0:t.expression)!==null&&r!==void 0?r:!1;var u;this.updateParent=(u=t==null?void 0:t.updateParent)!==null&&u!==void 0?u:!1}return Qc(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function Yc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qr(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 ef(e,t,n){return t&&qr(e.prototype,t),n&&qr(e,n),e}function k(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var tf=function(){function e(t){Yc(this,e),k(this,"type",void 0),k(this,"label",void 0),k(this,"key",void 0),k(this,"component",void 0),k(this,"effect",void 0),k(this,"scopeEffect",void 0),k(this,"defaultValue",void 0),k(this,"validator",void 0),k(this,"props",void 0),k(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:Ga,this.defaultValue=t.defaultValue,this.validator=t.validator;var u;this.props=(u=t.props)!==null&&u!==void 0?u:new J,this.effectKeys=Object.keys(this.effect)}return ef(e,[{key:"filterEffects",value:function(n){var r=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(u){var i=new RegExp("^".concat(u,"(\\.\\w+)*$"));return i.test(n)}).map(function(u){return r.effect[u]})}},{key:"callEffectFn",value:function(n,r){try{var u=n.apply(null,r);pt(u)&&Object.assign(this.props,u)}catch(i){ge(`effect error
2
- `.concat(i))}}},{key:"callEffect",value:function(n){for(var r=this,u=arguments.length,i=new Array(u>1?u-1:0),o=1;o<u;o++)i[o-1]=arguments[o];this.filterEffects(n).forEach(function(s){return r.callEffectFn(s,i)})}},{key:"callScopeEffect",value:function(){for(var n=arguments.length,r=new Array(n),u=0;u<n;u++)r[u]=arguments[u];this.callEffectFn(this.scopeEffect,r)}}]),e}();function nf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function re(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Vr=function e(t){nf(this,e),re(this,"type","group"),re(this,"title",void 0),re(this,"required",void 0),re(this,"items",void 0),re(this,"tips",void 0),re(this,"fromId",void 0),re(this,"visible",void 0);var n;this.title=(n=t.title)!==null&&n!==void 0?n:"";var r;this.required=(r=t.required)!==null&&r!==void 0?r:!1,this.items=t.items,this.tips=t.tips,this.visible=t.items.some(function(u){var i;return(i=u.props)===null||i===void 0?void 0:i.visible})};function rf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function en(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function uf(e){return"type"in e&&e.type==="tab"}var $e=function e(t){rf(this,e),en(this,"type","tab"),en(this,"title",void 0),en(this,"items",void 0),this.title=t.title,this.items=t.items};function Ur(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 of(e){if(Array.isArray(e))return e}function af(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 Ge(e){return Ge=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ge(e)}function lf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&tn(e,t)}function cf(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n!=null){var r=[],u=!0,i=!1,o,s;try{for(n=n.call(e);!(u=(o=n.next()).done)&&(r.push(o.value),!(t&&r.length===t));u=!0);}catch(l){i=!0,s=l}finally{try{!u&&n.return!=null&&n.return()}finally{if(i)throw s}}return r}}function ff(){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 df(e,t){return t&&(hf(t)==="object"||typeof t=="function")?t:af(e)}function tn(e,t){return tn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},tn(e,t)}function pf(e,t){return of(e)||cf(e,t)||vf(e,t)||ff()}function hf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function vf(e,t){if(!!e){if(typeof e=="string")return Ur(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 Ur(e,t)}}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 _f(e){var t=yf();return function(){var r=Ge(e),u;if(t){var i=Ge(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return df(this,u)}}var gf=function(e){lf(n,e);var t=_f(n);function n(r){sf(this,n);var u;return u=t.call(this,r),pt(r)&&Object.entries(r).forEach(function(i){var o=pf(i,2),s=o[0],l=o[1];u[s]=l}),u}return n}(J);function Oe(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 Ke(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Xe(e){return Xe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Xe(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&&nn(e,t)}function Ef(e,t){return t&&(wf(t)==="object"||typeof t=="function")?t:Oe(e)}function nn(e,t){return nn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},nn(e,t)}function wf(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 Bf(e){var t=Sf();return function(){var r=Xe(e),u;if(t){var i=Xe(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Ef(this,u)}}var Af=function(e){bf(n,e);var t=Bf(n);function n(r){mf(this,n);var u;u=t.call(this,r),Ke(Oe(u),"maxLength",void 0),Ke(Oe(u),"minLength",void 0),Ke(Oe(u),"placeholder",void 0),Ke(Oe(u),"i18n",void 0);var i;u.maxLength=(i=r==null?void 0:r.maxLength)!==null&&i!==void 0?i:"";var o;u.minLength=(o=r==null?void 0:r.minLength)!==null&&o!==void 0?o:"";var s;u.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var l;return u.i18n=(l=r==null?void 0:r.i18n)!==null&&l!==void 0?l:!1,u}return n}(J);function Je(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 Ze(e){return Ze=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ze(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&&un(e,t)}function Cf(e,t){return t&&(Df(t)==="object"||typeof t=="function")?t:Je(e)}function un(e,t){return un=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},un(e,t)}function Df(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=Ze(e),u;if(t){var i=Ze(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Cf(this,u)}}var Rf=function(e){If(n,e);var t=Of(n);function n(r){Ff(this,n);var u;u=t.call(this,r),rn(Je(u),"max",void 0),rn(Je(u),"min",void 0),rn(Je(u),"placeholder",void 0);var i;u.max=(i=r==null?void 0:r.max)!==null&&i!==void 0?i:"";var o;u.min=(o=r==null?void 0:r.min)!==null&&o!==void 0?o:"";var s;return u.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"",u}return n}(J);function Qe(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 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 Ye(e){return Ye=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ye(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&&an(e,t)}function Mf(e,t){return t&&(Tf(t)==="object"||typeof t=="function")?t:Qe(e)}function an(e,t){return an=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},an(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=Ye(e),u;if(t){var i=Ye(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Mf(this,u)}}var qf=function(e){xf(n,e);var t=jf(n);function n(r){Pf(this,n);var u;u=t.call(this,r),on(Qe(u),"showType",void 0),on(Qe(u),"tips",void 0),on(Qe(u),"disabled",void 0);var i;u.showType=(i=r==null?void 0:r.showType)!==null&&i!==void 0?i:"switch";var o;u.tips=(o=r==null?void 0:r.tips)!==null&&o!==void 0?o:"";var s;return u.disabled=(s=r==null?void 0:r.disabled)!==null&&s!==void 0?s:!1,u}return n}(J);function kr(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 Uf(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 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&&sn(e,t)}function Nf(e,t){return t&&(Hf(t)==="object"||typeof t=="function")?t:kr(e)}function sn(e,t){return sn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},sn(e,t)}function Hf(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 zf(e){var t=Wf();return function(){var r=et(e),u;if(t){var i=et(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Nf(this,u)}}var Gf=function(e){kf(n,e);var t=zf(n);function n(r){Vf(this,n);var u;u=t.call(this,r),Uf(kr(u),"options",void 0);var i;return u.options=(i=r==null?void 0:r.options)!==null&&i!==void 0?i:[],u}return n}(J);function ln(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Kf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Nr(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 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&&cn(e,t)}function Jf(e,t){return t&&(Zf(t)==="object"||typeof t=="function")?t:ln(e)}function cn(e,t){return cn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},cn(e,t)}function Zf(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 Yf(e){var t=Qf();return function(){var r=tt(e),u;if(t){var i=tt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Jf(this,u)}}var ed=function(e){Xf(n,e);var t=Yf(n);function n(r){Kf(this,n);var u;u=t.call(this,r),Nr(ln(u),"placeholder",void 0),Nr(ln(u),"options",void 0);var i;u.placeholder=(i=r==null?void 0:r.placeholder)!==null&&i!==void 0?i:"";var o;return u.options=(o=r==null?void 0:r.options)!==null&&o!==void 0?o:[],u}return n}(J);function fn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function td(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Hr(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 nd(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 rd(e,t){return t&&(ud(t)==="object"||typeof t=="function")?t:fn(e)}function dn(e,t){return dn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},dn(e,t)}function ud(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function id(){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 od(e){var t=id();return function(){var r=nt(e),u;if(t){var i=nt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return rd(this,u)}}var ad=function(e){nd(n,e);var t=od(n);function n(r){td(this,n);var u;u=t.call(this,r),Hr(fn(u),"options",void 0),Hr(fn(u),"showType",void 0);var i;u.options=(i=r==null?void 0:r.options)!==null&&i!==void 0?i:[];var o;return u.showType=(o=r==null?void 0:r.showType)!==null&&o!==void 0?o:"outline",u}return n}(J);function ue(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function sd(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ce(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function rt(e){return rt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},rt(e)}function ld(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 cd(e,t){return t&&(fd(t)==="object"||typeof t=="function")?t:ue(e)}function pn(e,t){return pn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},pn(e,t)}function fd(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function dd(){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 pd(e){var t=dd();return function(){var r=rt(e),u;if(t){var i=rt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return cd(this,u)}}var hd=function(e){ld(n,e);var t=pd(n);function n(r){sd(this,n);var u;u=t.call(this,r),ce(ue(u),"maxLength",void 0),ce(ue(u),"minLength",void 0),ce(ue(u),"placeholder",void 0),ce(ue(u),"i18n",void 0),ce(ue(u),"maxRows",void 0),ce(ue(u),"minRows",void 0);var i;u.maxLength=(i=r==null?void 0:r.maxLength)!==null&&i!==void 0?i:"";var o;u.minLength=(o=r==null?void 0:r.minLength)!==null&&o!==void 0?o:"";var s;u.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var l;u.maxRows=(l=r==null?void 0:r.maxRows)!==null&&l!==void 0?l:"";var a;u.minRows=(a=r==null?void 0:r.minRows)!==null&&a!==void 0?a:"";var f;return u.i18n=(f=r==null?void 0:r.i18n)!==null&&f!==void 0?f:!1,u}return n}(J);function vd(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(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){vd(e,u,n[u])})}return e}function yd(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function vn(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):yd(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function _d(e,t){switch(e){case"input":return new Af(t);case"textarea":return new hd(t);case"input-number":return new Rf(t);case"switch":return new qf(t);case"radio":return new ad(t);case"checkbox":return new Gf(t);case"select":return new ed(t);default:return new gf(t)}}function gd(e){return function(t){var n=e.get(t);if(!!n)return new tf(vn(hn({},n),{props:_d(n.component,"props"in n?n.props:void 0)}))}}function md(e){var t=e.fields.reduce(function(u,i){return u.set(i.key,i),u},new Map);function n(u){return new Vr(vn(hn({},u),{items:u.items.map(gd(t)).filter(Boolean)}))}function r(u){return u.map(n)}return e.groups.map(function(u){return uf(u)?new $e(vn(hn({},u),{items:r(u.items)})):n(u)})}let yn="";class Wr extends Vn{constructor(t){super(),this.isMounted=!1,this.id=at(8),this.__pluginsApplied=!1,this.getSchema=Xt,this.getModelBindInfoList=Jt,this.generatePermissions=Ie,this.$options=Object.freeze(t);const{autoMount:n=!1,Designer:r=le,schema:u,mode:i="form",store:o={}}=this.$options;this.eventLogic=new be,this.designer=new r,this.store=new xr(pe({instance:this.designer.createControl(Array.isArray(u)?u:[u])},o)),this.mode=i,n&&this.mount()}mount(){const{plugins:t=[]}=this.$options;this.__plugins=t,this.applyPlugins(),this.isMounted=!0}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{yn=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this),yn=""}catch(r){ge(`${yn||t.constructor.name} Plugin apply Error
3
- ${r}`)}}),this.__pluginsApplied=!0)}emit(t,...n){return super.emit(t,n)}on(t,n){return super.on(t,n)}setInstances(t,n){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],n))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var u,i;const t=this.store.selected;if(!t)return;let n=this.getControlSetting(t.type);if(((u=t.parent)==null?void 0:u.controlType)===R.WRAP){const o=this.getControlSetting((i=t.parent)==null?void 0:i.type);n=this.concatSetting(n,o,t.parent.id)}this.store.setSelectInstanceSettings(n),this.callSelectedEffect("");const r={from:null,current:this.store.selectedInstanceDataScopeParent,oldParent:null,newParent:t.parent};this.callSelectedScopeEffect(r)}concatSetting(t,n,r){var i,o,s,l,a,f,v,y;let u=t;if(((i=t[0])==null?void 0:i.type)==="tab"&&((o=n[0])==null?void 0:o.type)==="tab"){const g=t,w=n.slice(0);u=g.map((d,_)=>{const c=new $e(d),p=w.findIndex(B=>B.title===d.title);if(p===-1)return c;const b=w.splice(p,1)[0];return b&&(c.items=[...this.formatGroupSetting(b.items,r),...c.items]),c}),w.length&&(u=[...u,...w.map(d=>this.formatGroupSetting(d,r))])}else if(((s=t[0])==null?void 0:s.type)==="group"&&((l=n[0])==null?void 0:l.type)==="group"){const g=t,w=n;u=[...this.formatGroupSetting(w,r),...g]}else if(((a=t[0])==null?void 0:a.type)==="tab"&&((f=n[0])==null?void 0:f.type)==="group"){const g=t,w=n;u=g.map((d,_)=>{const c=new $e(d);return _===0&&(c.items=[...this.formatGroupSetting(w,r),...c.items]),c})}else if(((v=t[0])==null?void 0:v.type)==="group"&&((y=n[0])==null?void 0:y.type)==="tab"){const g=t;u=n.map((d,_)=>{const c=new $e(d);return _===0&&(c.items=[...c.items,...this.formatGroupSetting(g,r)]),c})}return u}formatGroupSetting(t,n){if(me(t))return t.map(r=>{const u=new Vr(r);return u.fromId=n,u});{const r=new $e(t);return r.items=this.formatGroupSetting(r.items,n),r}}setControlConfig(...t){return this.designer.registerControlConfig(...t)}getControlConfig(t){return this.designer.getControlConfig(t)}getControlSetting(t){const n=this.designer.getControlSetting(t);return n?md(n):[]}selectInstance(t){this.beforeSelectInstance(),this.store.setSelectInstance(t),this.afterSelectInstance()}setSelectedFieldItem(t){this.store.setSelectedFieldItem(t),this.callSelectedEffect("dataBind",{fieldItem:t})}moveStart(t){const n=this.getInstance(t);n&&this.store.setMovingInstance(n)}moveEnd(t=this.store.movingInstance){var l;if(t===null)return;const n=this.getInstance(t);if(!n)return;const r=this.store.movingInstanceOldDataScopeParent,u=De(n),i=this.store.movingInstanceOldParent,o=n.parent;this.store.setMovingInstance(null),n.id!==((l=this.store.selected)==null?void 0:l.id)?this.selectInstance(n):this.store.setSelectInstance(n),this.store.getFlatInstances();const s={from:r,current:u,oldParent:i,newParent:o};this.callSelectedScopeEffect(s),i?this.emit("moved",pe({},s)):this.emit("joined",pe({},s))}createInstance(t,n){return this.designer.createControlInstance(t,n)}getInstance(t){return typeof t=="string"?this.store.instanceIdMap.get(t):t}getInstances(){return this.store.flatInstances}getInstancesFromType(t){return this.getInstances().filter(n=>n.type===t)}getDataScopeInstances(){return this.store.selectedDataScopeFlatInstances}getDataScopeInstancesFromType(t){return this.getDataScopeInstances().filter(n=>n.type===t)}updateInstancePropValue(t,n,r,u){var o;!xn(t.props,n,r)||(n.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((o=this.store.selected)==null?void 0:o.id)&&this.callSelectedEffect(n,u),this.emit("updated",{instance:t,propName:n,value:r}))}updateInstanceProps(t,n,r,u=""){Object.entries(n).forEach(([i,o])=>{const s=`${u?u+".":""}${i}`;ys(o)?this.updateInstanceProps(t,o,r,s):this.updateInstancePropValue(t,s,o,r)})}setInstance(t,n,r,u){ht(n)?this.updateInstancePropValue(t,String(n),r,u):this.updateInstanceProps(t,n,r)}removeInstance(t){const n=t.parent;if(!n)return;const r=n.controlType===R.LIST&&n.props.headers.includes(t)?n.props.headers:n.children,u=r.findIndex(i=>i===t);u>-1&&r.splice(u,1),this.store.getFlatInstances(),this.emit("removed",{instance:t,index:u,parent:n})}replaceInstance(t,n){const r=t.parent;if(!r)return;const u=r.controlType===R.LIST&&r.props.headers.includes(t)?r.props.headers:r.children,i=u.findIndex(o=>o===t);i>-1&&u.splice(i,1,n),this.store.getFlatInstances()}updateInstanceType(t,n){const r=t.toSchema(),u=this.createInstance(n,{id:r.id,props:r.props});if(!u){xe(`can\u2018t update instance type to ${n}`);return}return u}validate(t,n){return 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!_s(ht(t)?t:t.type)}static register(...t){return le.register(...t),this}static judgeControlIsRegistered(t){return le.staticRegisteredTypes.has(t.Designer.controlType)}judgeControlIsRegistered(t){return this.designer.registeredControlTypes.has(t.Designer.controlType)}register(...t){return this.designer.registerControl(t[0]),this}assertInstance(t,n){return ht(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,pe({control:this.store.selected},n))})}callSelectedScopeEffect(t={}){this.store.selectedInstanceSettingItems.forEach(n=>{n.callScopeEffect(this,pe({control:this.store.selected},t))})}}Wr.EventLogic=be,E.Builder=Jc,E.Designer=le,E.Driven=Wr,E.Store=xr,E.checkSchema=Zt,E.fillModelBindInfoListFieldCode=zc,E.findInstanceDataScopeParent=De,E.generatePermissions=Ie,E.getDataScopeFlatInstances=Lr,E.getMasterFormControls=Wc,E.getModelBindInfoList=Jt,E.hasChildrenControl=Kt,E.hasHeaderControl=Rr,E.isDataScopeInstance=Qt,E.loop=Ce,E.loopFormControl=ze,E.toSchema=Xt,Object.defineProperty(E,"__esModule",{value:!0})});
1
+ var y5=Object.defineProperty;var Zr=Object.getOwnPropertySymbols;var g5=Object.prototype.hasOwnProperty,m5=Object.prototype.propertyIsEnumerable;var Yr=(B,I,O)=>I in B?y5(B,I,{enumerable:!0,configurable:!0,writable:!0,value:O}):B[I]=O,le=(B,I)=>{for(var O in I||(I={}))g5.call(I,O)&&Yr(B,O,I[O]);if(Zr)for(var O of Zr(I))m5.call(I,O)&&Yr(B,O,I[O]);return B};var cn=(B,I,O)=>new Promise((Xe,we)=>{var Je=H=>{try{se(O.next(H))}catch(ce){we(ce)}},Qe=H=>{try{se(O.throw(H))}catch(ce){we(ce)}},se=H=>H.done?Xe(H.value):Promise.resolve(H.value).then(Je,Qe);se((O=O.apply(B,I)).next())});(function(B,I){typeof exports=="object"&&typeof module!="undefined"?I(exports):typeof define=="function"&&define.amd?define(["exports"],I):(B=typeof globalThis!="undefined"?globalThis:B||self,I(B.modelDrivenDriven={}))})(this,function(B){"use strict";var I="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Xe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",we="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Je="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Qe="{caption}\u5FC5\u586B",se="\u8BF7\u8F93\u5165\u6807\u9898",H="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ce="\u8BF7\u8F93\u5165\u884C\u6807\u9898",eu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",tu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",nu="\u8BF7\u7ED1\u5B9A\u8868\u5355",ru="\u8BF7\u7ED1\u5B9A\u5217\u8868",uu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",iu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",ou="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",au="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",lu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",su="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",cu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",fu="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",du="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",pu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",vu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",hu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",yu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",gu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",mu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",_u="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Eu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",bu="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Bu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Fu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Cu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Au="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",wu="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Su="\u8BF7\u7ED1\u5B9A\u670D\u52A1",$u="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Du="\u8BF7\u9009\u62E9\u7701",Iu="\u8BF7\u9009\u62E9\u5E02",Ou="\u8BF7\u9009\u62E9\u533A",Pu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Ru="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",xu="\u8BF7\u8F93\u5165\u5217\u5BBD",Mu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Lu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Tu="\u8BF7\u9009\u62E9\u63A7\u4EF6",ju="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Vu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",qu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ku="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Uu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Hu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Nu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Wu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",zu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Gu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ku="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Xu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ju="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Qu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Zu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Yu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ei="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ti="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ni="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ri="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ui="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",ii="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",oi="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",ai="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",li="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",si="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",ci="\u6279\u91CF\u5220\u9664",fi="\u6279\u91CF\u6253\u5370",di="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",pi="\u6309\u94AE",vi="\u521B\u5EFA\u5355\u636E",hi="\u4EEA\u8868\u76D8",yi="\u5206\u5272\u7EBF",gi="\u5BFC\u51FA",mi="\u8868\u5355\u64CD\u4F5C",_i="\u5BFC\u5165",Ei="\u53D1\u7968\u8BC6\u522B",bi="\u94FE\u63A5",Bi="\u5217\u8868\u9009\u62E9",Fi="\u5217\u8868\u89C6\u56FE",Ci="\u64CD\u4F5C\u6309\u94AE",Ai="\u5206\u9875",wi="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Si="\u8BF4\u660E\u6587\u5B57",$i="\u6587\u5B57\u8BC6\u522B",Di="\u6807\u9898\u7EC4\u4EF6",Ii="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Oi="\u6570\u7EC4",Pi="\u81EA\u52A8\u7F16\u53F7",Ri="\u81EA\u5B9A\u4E49",xi="\u6570\u503C",Mi="\u90E8\u95E8",Li="\u4EBA\u5458",Ti="\u9644\u4EF6",ji="\u56FE\u7247",Vi="\u5730\u5740",qi="\u64CD\u4F5C",ki="\u5E8F\u53F7",Ui="\u4EBA\u5458",Hi="\u957F\u6587\u672C",Ni="\u65E5\u671F\u533A\u95F4",Wi="\u65E5\u671F",zi="\u77ED\u6587\u672C",Gi="\u6362\u884C\u5BB9\u5668Wrap",Ki="\u8868\u683C",Xi="\u660E\u7EC6\u5B50\u8868",Ji="\u5730\u5740",Qi="\u91D1\u989D",Zi="\u8BA1\u7B97\u516C\u5F0F",Yi="\u591A\u9009",eo="\u7535\u5B50\u7B7E\u7AE0",to="\u5355\u884C\u6587\u672C",no="\u6570\u5B57",ro="\u4E1A\u52A1\u7EC4\u7EC7",uo="\u5355\u9009",io="\u5BCC\u6587\u672C",oo="\u8BC4\u5206",ao="\u6570\u5B57\u533A\u95F4",lo="\u4E0B\u62C9\u5355\u9009",so="\u4E0B\u62C9\u591A\u9009",co="\u5173\u8054\u5355\u9009",fo="\u591A\u884C\u6587\u672C",po="\u6811",vo="Vue\u5BB9\u5668",ho="Vue\u9875\u9762",yo="\u5728\u7EBF\u6587\u6863",go="\u6309\u94AE\u64CD\u4F5C\u680F",mo="\u9AD8\u7EA7\u5BB9\u5668",_o="\u5206\u7EC4",Eo="\u6805\u683C\u5217",bo="\u6570\u636E\u5BB9\u5668",Bo="\u753B\u5E03",Fo="\u6362\u884C\u5BB9\u5668",Co="\u6805\u683C\u7B49\u5206\u884C",Ao="\u5217\u8868\u5BB9\u5668",wo="\u81EA\u7531\u9875\u9762",So="\u5B9A\u4F4D\u5B50\u5BB9\u5668",$o="\u5B9A\u4F4D\u5BB9\u5668",Do="\u6805\u683C\u5E03\u5C40",Io="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Oo="\u660E\u7EC6\u5B50\u8868\u884C",Po="\u6807\u7B7E\u9875",Ro="\u6807\u7B7E\u5355\u5143",xo="\u5DE5\u5177\u680F",Mo="\u6279\u91CF\u63D0\u4EA4",Lo="\u5BFC\u51FA\u8BB0\u5F55",To="\u5217\u8868\u89C6\u56FE",jo="\u7ED3\u675F\u65F6\u95F4",Vo="\u5F00\u59CB\u65F6\u95F4",qo="\u5355\u4F4D",ko="\u7ED3\u679C",Uo="\u5E01\u79CD",Ho="\u7ED3\u675F\u65E5\u671F",No="\u5F00\u59CB\u65E5\u671F",Wo="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",zo="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",Go="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",Ko="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",Xo="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",Jo="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",Qo="\u8BF7\u9009\u62E9",Zo="\u8BF7\u9009\u62E9\u7EC4\u7EC7",Yo="\u8BF7\u9009\u62E9\u90E8\u95E8",ea="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",ta="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",na="\u8BF7\u9009\u62E9\u5730\u5740",ra="\u5F39\u7A97\u786E\u8BA4\u65F6",ua="\u6807\u7B7E\u9875\u5207\u6362\u65F6",ia="\u884C\u9009\u4E2D\u65F6",oa="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",aa="\u884C\u5220\u9664\u524D",la="\u884C\u70B9\u51FB\u65F6",sa="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",ca="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",fa="\u91CD\u547D\u540D\u65F6",da="\u4FDD\u5B58\u6587\u4EF6\u65F6",pa="\u6253\u5F00\u6587\u4EF6\u65F6",va="\u83B7\u53D6\u7126\u70B9\u65F6",ha="\u5931\u53BB\u7126\u70B9\u65F6",ya="\u7528\u6237\u8F93\u5165\u65F6",ga="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",ma="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",_a="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",Ea="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",ba="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Ba="\u641C\u7D22\u65F6",Fa="\u503C\u53D1\u751F\u53D8\u5316\u65F6",Ca="\u6267\u884C\u5B8C\u6210\u65F6",Aa="\u70B9\u51FB\u65F6",wa="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",Sa="\u8BF7\u8F93\u5165\u65E5\u671F",$a="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Da="\u8BF7\u8F93\u5165",Ia="\u9ED8\u8BA4\u6A21\u7248",Oa="\u5DE6\u53F3\u5E03\u5C40",Pa="\u4E0A\u4E0B\u5E03\u5C40",Ra="\u53EA\u8BFB",xa="\u5FC5\u586B",Ma="\u63D0\u793A\u6587\u5B57",La="\u9690\u85CF\u6807\u9898",Ta="\u6807\u9898\u5FC5\u586B",ja="\u7EC4\u7EC7\u5F62\u6001",Va="\u4E1A\u52A1\u7C7B\u578B",qa="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",ka="\u9690\u85CF",Ua="\u6D41\u7A0B\u72B6\u6001",Ha="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Na="\u5220\u9664",Wa="\u7F16\u8F91",za="\u67E5\u770B",Ga="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",Ka="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",Xa="\u5145\u6EE1\u6574\u884C",Ja="\u6700\u5C0F\u503C",Qa="\u6700\u5927\u503C",Za="\u65B0\u5EFA\u6587\u6863",Ya="\u91CD\u7F6E",el="\u67E5\u8BE2",tl="\u660E\u7EC6",nl="\u6253\u5370",rl="\u4FDD\u5B58\u8349\u7A3F",ul="\u4FDD\u5B58",il="\u53D6\u6D88",ol="\u4E0A\u4F20\u56FE\u7247",al="\u53D1\u8D77\u7B7E\u7F72",ll="\u4E0A\u4F20\u9644\u4EF6",sl="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",cl={isNotNumber:I,isNotString:O,isNotObject:Xe,isNotArray:we,isNotBoolean:Je,runtimeRequired:Qe,pleaseEnterCaption:se,pleaseEnterCaptionTip:H,pleaseEnterRowCaption:ce,pleaseEnterPlaceholder:eu,pleaseEnterFieldCode:tu,pleaseEnterForm:nu,pleaseEnterList:ru,pleaseEnterProcess:uu,pleaseEnterLabel:iu,pleaseEnterValue:ou,bizKeyNotBindFiled:au,pleaseSelectOneField:lu,pleaseEnterNumberRange:su,pleaseEnterAValueGreaterThanMin:cu,pleaseEnterAValueLessThanMax:fu,numberRangeSetError:du,stringRangeError:pu,attachmentMaxSize:vu,pleaseEnterTotalScoreSetting:hu,theTotalScoreMustNotBeLessThan1:yu,scoreDefaultValueRange:gu,attachmentLimitError:mu,PleaseReselectTheOptionalQuantity:_u,TheMaximumLengthIsGreaterThanTheMinimumLength:Eu,TheMinimumLengthIsGreaterThanTheMaximumLength:bu,PleaseSelectTheCorrectOptionSettings:Bu,optionIdIsRepeat:Fu,optionIsRequired:Cu,pleaseEnterDataCode:Au,pleaseEnterValueFieldCode:wu,pleaseEnterSvcCode:Su,pleaseBindAtLeastOneDisplayValue:$u,pleaseSelectProvince:Du,pleaseSelectCity:Iu,pleaseSelectDistrict:Ou,limitRowsCannotBeLessThan0:Pu,TheNumberOfRowsCannotBeLessThanMinRows:Ru,pleaseEnterColumnWidth:xu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Mu,pleaseCompleteAllRulesAndConditions:Lu,pleaseSelectControl:Tu,pleaseSelectAtLeastOneColumn:ju,pleaseSelectFillBackMode:Vu,pleaseSelectDashboard:qu,rootNodeIsRequired:ku,theViewNameCannotBeEmpty:Uu,pleaseSelectOcrType:Hu,pleaseSelectAtLeastOneFieldToFillIn:Nu,pleaseChooseAtLeastOne:Wu,pleaseEnterButtonContent:zu,pleaseEnterDataCodeInDataSetting:Gu,pleaseEnterValueFieldCodeInDataSetting:Ku,pleaseEnterSvcCodeInDataSetting:Xu,pleaseBindAtLeastOneDisplayValueInDataSetting:Ju,rootNodeIsRequiredInDataSetting:Qu,pleaseEnterMaxHeight:Zu,pleaseEnterWatermark:Yu,pleaseEnterFileName:ei,pleaseUploadAtLeastOnePrintTemplate:ti,pleaseAssignBusiness:ni,pleaseAssignExternal:ri,pleaseEnterAliasCode:ui,pleaseSelectDataCode:ii,pleaseSelectSvcCode:oi,pleaseSelectJoinFieldCode:ai,pleaseSelectMainFieldCode:li,pleaseSelectSortFieldCode:si,batchDeleteButton:ci,batchPrintListButton:fi,batchPrintRecordList:di,button:pi,createFormListButton:vi,dashboard:hi,divider:yi,exportListButton:gi,formSelectButton:mi,importRecordListButton:_i,invoiceCheckButton:Ei,link:bi,listSelectButton:Bi,ListViewSelect:Fi,operationButton:Ci,pagination:Ai,submissionRecordListButton:wi,text:Si,textOcrButton:$i,title:Di,approvalStatusColumn:Ii,array:Oi,autoNumber:Pi,custom:Ri,decimal:xi,department:Mi,employee:Li,file:Ti,image:ji,location:Vi,operation:qi,order:ki,people:Ui,long:Hi,timescope:Ni,timestamp:Wi,varchar:zi,gridLayoutWrap:Gi,gridTable:Ki,subTable:Xi,address:Ji,amount:Qi,calc:Zi,checkBox:Yi,electronicSignature:eo,input:to,number:no,organizationSelection:ro,radio:uo,richText:io,score:oo,searchNumberRange:ao,select:lo,selectMultiple:so,selectRelation:co,textarea:fo,tree:po,vueFormItem:vo,vuePage:ho,WPS:yo,actionBar:go,advancedContainer:mo,cardGroup:_o,col:Eo,dataView:bo,grid:Bo,gridLayoutContainer:Fo,gridRow:Co,listView:Ao,page:wo,position:So,positioningContainer:$o,row:Do,subtableColumn:Io,subtableRow:Oo,tab:Po,tabPane:Ro,toolbox:xo,batchSubmissionListButton:Mo,exportRecordListButton:Lo,listViewSelect:To,endTime:jo,startTime:Vo,unit:qo,result:ko,currency:Uo,endDate:Ho,startDate:No,pleaseSelectCompanyName:Wo,pleaseSelectPhoneOrEmail:zo,pleaseSelectSignType:Go,pleaseSelectSigner:Ko,pleaseSelectOnlyOne:Xo,pleaseSelectSignFile:Jo,pleaseSelect:Qo,pleaseSelectOrg:Zo,pleaseSelectDept:Yo,pleaseSelectEndDate:ea,pleaseSelectStartDate:ta,pleaseChooseAddress:na,modalConfirm:ra,tabChange:ua,rowSelected:ia,listDataImport:oa,rowDelete:aa,rowClick:la,cellRender:sa,onClickBtn:ca,rename:fa,onSaveFile:da,onOpenFile:pa,onFocus:va,onBlur:ha,onInput:ya,listDataAdd:ga,listDataDelete:ma,listDataBack:_a,listDataCreate:Ea,listDataChange:ba,search:Ba,valueChange:Fa,finished:Ca,click:Aa,pleaseEnterNameorEmail:wa,pleaseEnterDate:Sa,pleaseEnterAutonumber:$a,pleaseEnter:Da,defaultTemplate:Ia,left:Oa,top:Pa,default:"\u666E\u901A",readonly:Ra,required:xa,textTip:Ma,hideCaption:La,titleRequired:Ta,organizationalForm:ja,businessType:Va,deleteConfirm:qa,hide:ka,processStatus:Ua,approvedDocuments:Ha,delete:Na,edit:Wa,view:za,loadCtrlErrorTip:Ga,loadCtrlError:Ka,fullLine:Xa,min:Ja,max:Qa,createWPS:Za,reset:Ya,query:el,detailed:tl,print:nl,draft:rl,save:ul,cancel:il,uploadImg:ol,signature:al,uploadFile:ll,linkContent:sl},fl="Please enter a number",dl="Please enter a string",pl="Please enter an object",vl="Please enter an array",hl="Please enter a boolean",yl="{caption} Required",gl="Please enter the title",ml="Please enter the bubble prompt",_l="Please enter the row title",El="Please enter the prompt text",bl="Please bind data items",Bl="Please bind the form",Fl="Please bind the list",Cl="Please bind the process",Al="Please enter the displayed value",wl="Please enter the stored value",Sl="The document number is not bound to the data item",$l="Please select at least one display field",Dl="Please enter a value greater than or equal to {min} and less than or equal to {max}",Il="Please enter a value greater than or equal to {min}",Ol="Please enter a value less than or equal to {max}",Pl="The value range is set incorrectly",Rl="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",xl="The attachment size must be between 0MB and 1000MB",Ml="Please fill in the total score setting",Ll="The total score cannot be less than 1",Tl="The default value must be between {min} and {max}",jl="The number of attachment uploads exceeds the limit",Vl="Please re-select the optional quantity",ql="The maximum length of the control must be greater than the minimum length",kl="The minimum length of the control must be less than the maximum length",Ul="Please select the correct option setting",Hl="Option ID cannot be repeated",Nl="Please enter at least one option",Wl="Please bind the data source",zl="Please bind the stored value",Gl="Please bind the service",Kl="At least one display value must be bound",Xl="Please select a province",Jl="Please select a city",Ql="Please select a district",Zl="The minimum number of lines to fill in cannot be less than 0",Yl="The number of rows cannot be less than {min} rows",es="Please enter the column width",ts="Please set the logical relationship of all rule conditions",ns="Please complete all rules and conditions",rs="please select control",us="Please select the dashboard",is="View name cannot be empty",os="Please select recognition type",as="Please select at least one field to fill in",ls="Please select at least one",ss="Please enter the button title",cs="Please bind the business model in the data settings",fs="Please bind storage values in data settings",ds="Please bind the service in the data settings",ps="Please bind at least one display value in the data settings",vs="Please select the root node in the data settings",hs="Please enter the maximum height",ys="The input content cannot be empty",gs="Watermark cannot be empty",ms="File name cannot be empty",_s="Please upload at least one printing template!\uFF01",Es="Please select a specific business department",bs="Please select a specified external organization",Bs="Please enter a sub table alias",Fs="Please select the associated table to set the business model",Cs="Please select the association table to set the binding service",As="Select associated sub table fields",ws="Please select the associated main table field",Ss="Please select the sort field",$s="\u6279\u91CF\u5220\u9664",Ds="\u6279\u91CF\u6253\u5370",Is="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Os="\u6309\u94AE",Ps="\u521B\u5EFA\u5355\u636E",Rs="\u4EEA\u8868\u76D8",xs="\u5206\u5272\u7EBF",Ms="\u5BFC\u51FA",Ls="\u8868\u5355\u64CD\u4F5C",Ts="\u5BFC\u5165",js="\u53D1\u7968\u8BC6\u522B",Vs="\u94FE\u63A5",qs="\u5217\u8868\u9009\u62E9",ks="\u5217\u8868\u89C6\u56FE",Us="\u64CD\u4F5C\u6309\u94AE",Hs="\u5206\u9875",Ns="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Ws="\u8BF4\u660E\u6587\u5B57",zs="\u6587\u5B57\u8BC6\u522B",Gs="\u6807\u9898\u7EC4\u4EF6",Ks="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Xs="\u6570\u7EC4",Js="\u81EA\u52A8\u7F16\u53F7",Qs="\u81EA\u5B9A\u4E49",Zs="\u6570\u503C",Ys="\u90E8\u95E8",ec="\u4EBA\u5458",tc="\u9644\u4EF6",nc="\u56FE\u7247",rc="\u5730\u5740",uc="\u64CD\u4F5C",ic="\u5E8F\u53F7",oc="\u4EBA\u5458",ac="\u957F\u6587\u672C",lc="\u65E5\u671F\u533A\u95F4",sc="\u65E5\u671F",cc="\u77ED\u6587\u672C",fc="\u6362\u884C\u5BB9\u5668Wrap",dc="\u8868\u683C",pc="\u660E\u7EC6\u5B50\u8868",vc="\u5730\u5740",hc="\u91D1\u989D",yc="\u8BA1\u7B97\u516C\u5F0F",gc="\u591A\u9009",mc="\u7535\u5B50\u7B7E\u7AE0",_c="\u5355\u884C\u6587\u672C",Ec="\u6570\u5B57",bc="\u4E1A\u52A1\u7EC4\u7EC7",Bc="\u5355\u9009",Fc="\u5BCC\u6587\u672C",Cc="\u8BC4\u5206",Ac="\u6570\u5B57\u533A\u95F4",wc="\u4E0B\u62C9\u5355\u9009",Sc="\u4E0B\u62C9\u591A\u9009",$c="\u5173\u8054\u5355\u9009",Dc="\u591A\u884C\u6587\u672C",Ic="\u6811",Oc="Vue\u5BB9\u5668",Pc="Vue\u9875\u9762",Rc="\u5728\u7EBF\u6587\u6863",xc="\u6309\u94AE\u64CD\u4F5C\u680F",Mc="\u9AD8\u7EA7\u5BB9\u5668",Lc="\u5206\u7EC4",Tc="\u6805\u683C\u5217",jc="\u6570\u636E\u5BB9\u5668",Vc="\u753B\u5E03",qc="\u6362\u884C\u5BB9\u5668",kc="\u6805\u683C\u7B49\u5206\u884C",Uc="\u5217\u8868\u5BB9\u5668",Hc="\u81EA\u7531\u9875\u9762",Nc="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Wc="\u5B9A\u4F4D\u5BB9\u5668",zc="\u6805\u683C\u5E03\u5C40",Gc="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Kc="\u660E\u7EC6\u5B50\u8868\u884C",Xc="\u6807\u7B7E\u9875",Jc="\u6807\u7B7E\u5355\u5143",Qc="\u5DE5\u5177\u680F",Zc="\u6279\u91CF\u63D0\u4EA4",Yc="\u5BFC\u51FA\u8BB0\u5F55",ef="\u5217\u8868\u89C6\u56FE",tf={isNotNumber:fl,isNotString:dl,isNotObject:pl,isNotArray:vl,isNotBoolean:hl,runtimeRequired:yl,pleaseEnterCaption:gl,pleaseEnterCaptionTip:ml,pleaseEnterRowCaption:_l,pleaseEnterPlaceholder:El,pleaseEnterFieldCode:bl,pleaseEnterForm:Bl,pleaseEnterList:Fl,pleaseEnterProcess:Cl,pleaseEnterLabel:Al,pleaseEnterValue:wl,bizKeyNotBindFiled:Sl,pleaseSelectOneField:$l,pleaseEnterNumberRange:Dl,pleaseEnterAValueGreaterThanMin:Il,pleaseEnterAValueLessThanMax:Ol,numberRangeSetError:Pl,stringRangeError:Rl,attachmentMaxSize:xl,pleaseEnterTotalScoreSetting:Ml,theTotalScoreMustNotBeLessThan1:Ll,scoreDefaultValueRange:Tl,attachmentLimitError:jl,PleaseReselectTheOptionalQuantity:Vl,TheMaximumLengthIsGreaterThanTheMinimumLength:ql,TheMinimumLengthIsGreaterThanTheMaximumLength:kl,PleaseSelectTheCorrectOptionSettings:Ul,optionIdIsRepeat:Hl,optionIsRequired:Nl,pleaseEnterDataCode:Wl,pleaseEnterValueFieldCode:zl,pleaseEnterSvcCode:Gl,pleaseBindAtLeastOneDisplayValue:Kl,pleaseSelectProvince:Xl,pleaseSelectCity:Jl,pleaseSelectDistrict:Ql,limitRowsCannotBeLessThan0:Zl,TheNumberOfRowsCannotBeLessThanMinRows:Yl,pleaseEnterColumnWidth:es,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ts,pleaseCompleteAllRulesAndConditions:ns,pleaseSelectControl:rs,pleaseSelectDashboard:us,theViewNameCannotBeEmpty:is,pleaseSelectOcrType:os,pleaseSelectAtLeastOneFieldToFillIn:as,pleaseChooseAtLeastOne:ls,pleaseEnterButtonContent:ss,pleaseEnterDataCodeInDataSetting:cs,pleaseEnterValueFieldCodeInDataSetting:fs,pleaseEnterSvcCodeInDataSetting:ds,pleaseBindAtLeastOneDisplayValueInDataSetting:ps,rootNodeIsRequiredInDataSetting:vs,pleaseEnterMaxHeight:hs,pleaseEnter:ys,pleaseEnterWatermark:gs,pleaseEnterFileName:ms,pleaseUploadAtLeastOnePrintTemplate:_s,pleaseAssignBusiness:Es,pleaseAssignExternal:bs,pleaseEnterAliasCode:Bs,pleaseSelectDataCode:Fs,pleaseSelectSvcCode:Cs,pleaseSelectJoinFieldCode:As,pleaseSelectMainFieldCode:ws,pleaseSelectSortFieldCode:Ss,batchDeleteButton:$s,batchPrintListButton:Ds,batchPrintRecordList:Is,button:Os,createFormListButton:Ps,dashboard:Rs,divider:xs,exportListButton:Ms,formSelectButton:Ls,importRecordListButton:Ts,invoiceCheckButton:js,link:Vs,listSelectButton:qs,ListViewSelect:ks,operationButton:Us,pagination:Hs,submissionRecordListButton:Ns,text:Ws,textOcrButton:zs,title:Gs,approvalStatusColumn:Ks,array:Xs,autoNumber:Js,custom:Qs,decimal:Zs,department:Ys,employee:ec,file:tc,image:nc,location:rc,operation:uc,order:ic,people:oc,long:ac,timescope:lc,timestamp:sc,varchar:cc,gridLayoutWrap:fc,gridTable:dc,subTable:pc,address:vc,amount:hc,calc:yc,checkBox:gc,electronicSignature:mc,input:_c,number:Ec,organizationSelection:bc,radio:Bc,richText:Fc,score:Cc,searchNumberRange:Ac,select:wc,selectMultiple:Sc,selectRelation:$c,textarea:Dc,tree:Ic,vueFormItem:Oc,vuePage:Pc,WPS:Rc,actionBar:xc,advancedContainer:Mc,cardGroup:Lc,col:Tc,dataView:jc,grid:Vc,gridLayoutContainer:qc,gridRow:kc,listView:Uc,page:Hc,position:Nc,positioningContainer:Wc,row:zc,subtableColumn:Gc,subtableRow:Kc,tab:Xc,tabPane:Jc,toolbox:Qc,batchSubmissionListButton:Zc,exportRecordListButton:Yc,listViewSelect:ef},nf="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",rf="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",uf="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",of="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",af="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",lf="{caption}\u5FC5\u9808",sf="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",cf="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ff="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",df="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",pf="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",vf="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",hf="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",yf="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",gf="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",mf="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_f="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Ef="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",bf="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Bf="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ff="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Cf="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Af="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wf="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Sf="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",$f="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Df="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",If="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",Of="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Pf="\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",Rf="\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",xf="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Mf="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Lf="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Tf="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",jf="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Vf="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qf="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",kf="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Uf="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Hf="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Nf="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Wf="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",zf="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Gf="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Kf="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Xf="please select control",Jf="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Qf="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Zf="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Yf="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ed="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",td="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",nd="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",rd="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ud="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",id="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",od="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ad="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ld="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",sd="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",cd="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",fd="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",dd="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",pd="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",vd="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",hd="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",yd="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",gd="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",md="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",_d="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ed="\u6279\u91CF\u5220\u9664",bd="\u6279\u91CF\u6253\u5370",Bd="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Fd="\u6309\u94AE",Cd="\u521B\u5EFA\u5355\u636E",Ad="\u4EEA\u8868\u76D8",wd="\u5206\u5272\u7EBF",Sd="\u5BFC\u51FA",$d="\u8868\u5355\u64CD\u4F5C",Dd="\u5BFC\u5165",Id="\u53D1\u7968\u8BC6\u522B",Od="\u94FE\u63A5",Pd="\u5217\u8868\u9009\u62E9",Rd="\u5217\u8868\u89C6\u56FE",xd="\u64CD\u4F5C\u6309\u94AE",Md="\u5206\u9875",Ld="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Td="\u8BF4\u660E\u6587\u5B57",jd="\u6587\u5B57\u8BC6\u522B",Vd="\u6807\u9898\u7EC4\u4EF6",qd="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",kd="\u6570\u7EC4",Ud="\u81EA\u52A8\u7F16\u53F7",Hd="\u81EA\u5B9A\u4E49",Nd="\u6570\u503C",Wd="\u90E8\u95E8",zd="\u4EBA\u5458",Gd="\u9644\u4EF6",Kd="\u56FE\u7247",Xd="\u5730\u5740",Jd="\u64CD\u4F5C",Qd="\u5E8F\u53F7",Zd="\u4EBA\u5458",Yd="\u957F\u6587\u672C",ep="\u65E5\u671F\u533A\u95F4",tp="\u65E5\u671F",np="\u77ED\u6587\u672C",rp="\u6362\u884C\u5BB9\u5668Wrap",up="\u8868\u683C",ip="\u660E\u7EC6\u5B50\u8868",op="\u5730\u5740",ap="\u91D1\u989D",lp="\u8BA1\u7B97\u516C\u5F0F",sp="\u591A\u9009",cp="\u7535\u5B50\u7B7E\u7AE0",fp="\u5355\u884C\u6587\u672C",dp="\u6570\u5B57",pp="\u4E1A\u52A1\u7EC4\u7EC7",vp="\u5355\u9009",hp="\u5BCC\u6587\u672C",yp="\u8BC4\u5206",gp="\u6570\u5B57\u533A\u95F4",mp="\u4E0B\u62C9\u5355\u9009",_p="\u4E0B\u62C9\u591A\u9009",Ep="\u5173\u8054\u5355\u9009",bp="\u591A\u884C\u6587\u672C",Bp="\u6811",Fp="Vue\u5BB9\u5668",Cp="Vue\u9875\u9762",Ap="\u5728\u7EBF\u6587\u6863",wp="\u6309\u94AE\u64CD\u4F5C\u680F",Sp="\u9AD8\u7EA7\u5BB9\u5668",$p="\u5206\u7EC4",Dp="\u6805\u683C\u5217",Ip="\u6570\u636E\u5BB9\u5668",Op="\u753B\u5E03",Pp="\u6362\u884C\u5BB9\u5668",Rp="\u6805\u683C\u7B49\u5206\u884C",xp="\u5217\u8868\u5BB9\u5668",Mp="\u81EA\u7531\u9875\u9762",Lp="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Tp="\u5B9A\u4F4D\u5BB9\u5668",jp="\u6805\u683C\u5E03\u5C40",Vp="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",qp="\u660E\u7EC6\u5B50\u8868\u884C",kp="\u6807\u7B7E\u9875",Up="\u6807\u7B7E\u5355\u5143",Hp="\u5DE5\u5177\u680F",Np="\u6279\u91CF\u63D0\u4EA4",Wp="\u5BFC\u51FA\u8BB0\u5F55",zp="\u5217\u8868\u89C6\u56FE",Gp={isNotNumber:nf,isNotString:rf,isNotObject:uf,isNotArray:of,isNotBoolean:af,runtimeRequired:lf,pleaseEnterCaption:sf,pleaseEnterCaptionTip:cf,pleaseEnterRowCaption:ff,pleaseEnterPlaceholder:df,pleaseEnterFieldCode:pf,pleaseEnterForm:vf,pleaseEnterList:hf,pleaseEnterProcess:yf,pleaseEnterLabel:gf,pleaseEnterValue:mf,bizKeyNotBindFiled:_f,pleaseSelectOneField:Ef,pleaseEnterNumberRange:bf,pleaseEnterAValueGreaterThanMin:Bf,pleaseEnterAValueLessThanMax:Ff,numberRangeSetError:Cf,stringRangeError:Af,attachmentMaxSize:wf,pleaseEnterTotalScoreSetting:Sf,theTotalScoreMustNotBeLessThan1:$f,scoreDefaultValueRange:Df,attachmentLimitError:If,PleaseReselectTheOptionalQuantity:Of,TheMaximumLengthIsGreaterThanTheMinimumLength:Pf,TheMinimumLengthIsGreaterThanTheMaximumLength:Rf,PleaseSelectTheCorrectOptionSettings:xf,optionIdIsRepeat:Mf,optionIsRequired:Lf,pleaseEnterDataCode:Tf,pleaseEnterValueFieldCode:jf,pleaseEnterSvcCode:Vf,pleaseBindAtLeastOneDisplayValue:qf,pleaseSelectProvince:kf,pleaseSelectCity:Uf,pleaseSelectDistrict:Hf,limitRowsCannotBeLessThan0:Nf,TheNumberOfRowsCannotBeLessThanMinRows:Wf,pleaseEnterColumnWidth:zf,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Gf,pleaseCompleteAllRulesAndConditions:Kf,pleaseSelectControl:Xf,pleaseSelectDashboard:Jf,theViewNameCannotBeEmpty:Qf,pleaseSelectOcrType:Zf,pleaseSelectAtLeastOneFieldToFillIn:Yf,pleaseChooseAtLeastOne:ed,pleaseEnterButtonContent:td,pleaseEnterDataCodeInDataSetting:nd,pleaseEnterValueFieldCodeInDataSetting:rd,pleaseEnterSvcCodeInDataSetting:ud,pleaseBindAtLeastOneDisplayValueInDataSetting:id,rootNodeIsRequiredInDataSetting:od,pleaseEnterMaxHeight:ad,pleaseEnter:ld,pleaseEnterWatermark:sd,pleaseEnterFileName:cd,pleaseUploadAtLeastOnePrintTemplate:fd,pleaseAssignBusiness:dd,pleaseAssignExternal:pd,pleaseEnterAliasCode:vd,pleaseSelectDataCode:hd,pleaseSelectSvcCode:yd,pleaseSelectJoinFieldCode:gd,pleaseSelectMainFieldCode:md,pleaseSelectSortFieldCode:_d,batchDeleteButton:Ed,batchPrintListButton:bd,batchPrintRecordList:Bd,button:Fd,createFormListButton:Cd,dashboard:Ad,divider:wd,exportListButton:Sd,formSelectButton:$d,importRecordListButton:Dd,invoiceCheckButton:Id,link:Od,listSelectButton:Pd,ListViewSelect:Rd,operationButton:xd,pagination:Md,submissionRecordListButton:Ld,text:Td,textOcrButton:jd,title:Vd,approvalStatusColumn:qd,array:kd,autoNumber:Ud,custom:Hd,decimal:Nd,department:Wd,employee:zd,file:Gd,image:Kd,location:Xd,operation:Jd,order:Qd,people:Zd,long:Yd,timescope:ep,timestamp:tp,varchar:np,gridLayoutWrap:rp,gridTable:up,subTable:ip,address:op,amount:ap,calc:lp,checkBox:sp,electronicSignature:cp,input:fp,number:dp,organizationSelection:pp,radio:vp,richText:hp,score:yp,searchNumberRange:gp,select:mp,selectMultiple:_p,selectRelation:Ep,textarea:bp,tree:Bp,vueFormItem:Fp,vuePage:Cp,WPS:Ap,actionBar:wp,advancedContainer:Sp,cardGroup:$p,col:Dp,dataView:Ip,grid:Op,gridLayoutContainer:Pp,gridRow:Rp,listView:xp,page:Mp,position:Lp,positioningContainer:Tp,row:jp,subtableColumn:Vp,subtableRow:qp,tab:kp,tabPane:Up,toolbox:Hp,batchSubmissionListButton:Np,exportRecordListButton:Wp,listViewSelect:zp},Ze={zhCN:cl,enUS:tf,jaJP:Gp},fn;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(fn||(fn={}));var dn;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(dn||(dn={}));var Ye,pn=(Ye=window.localStorage.getItem("locale"))!==null&&Ye!==void 0?Ye:"zh-CN",Kp=function(){},P;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(P||(P={}));var vn;(function(e){e[e.FORM=0]="FORM",e[e.LIST=1]="LIST",e[e.REPORT=2]="REPORT",e[e.DASHBOARD=3]="DASHBOARD",e[e.VUE=4]="VUE",e[e.FREE_PAGE=5]="FREE_PAGE"})(vn||(vn={}));var v;(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.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",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.OPERATION_BUTTON="operation-button",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.GRID_LAYOUT_CONTAINER="grid-layout-container",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e.GRID_LAYOUT_WRAP="grid-layout-wrap",e.VUE_PAGE="vue-page"})(v||(v={}));var hn;(function(e){e.SAVE="save",e.DRAFT="draft",e.UNSUBMIT="unsubmit",e.AUDIT="audit",e.UNAUDIT="unaudit",e.CANCEL="cancel",e.FORM_SUBMIT="form_submit"})(hn||(hn={}));var j;(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.LIST="list",e.JSON="json",e.ANY="ANY"})(j||(j={}));var yn;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(yn||(yn={}));var gn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Xp=gn+"0123456789";function et(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?gn:Xp,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function tt(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 Jp(e){if(Array.isArray(e))return tt(e)}function Qp(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function mn(e,t,n){return t=fe(t),t0(e,rt()?Reflect.construct(t,n||[],fe(e).constructor):t.apply(e,n))}function _n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Se(e,t,n){return rt()?Se=Reflect.construct:Se=function(u,o,i){var l=[null];l.push.apply(l,o);var s=Function.bind.apply(u,l),a=new s;return i&&de(a,i.prototype),a},Se.apply(null,arguments)}function fe(e){return fe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},fe(e)}function En(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&&de(e,t)}function Zp(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Yp(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function e0(){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 t0(e,t){return t&&(n0(t)==="object"||typeof t=="function")?t:Qp(e)}function de(e,t){return de=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},de(e,t)}function bn(e){return Jp(e)||Yp(e)||r0(e)||e0()}function n0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function r0(e,t){if(!!e){if(typeof e=="string")return tt(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 tt(e,t)}}function nt(e){var t=typeof Map=="function"?new Map:void 0;return nt=function(r){if(r===null||!Zp(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Se(r,arguments,fe(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),de(u,r)},nt(e)}function rt(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(rt=function(){return!!e})()}var ut=console;function $e(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=ut).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(bn(u)))}function Bn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=ut).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(bn(u)))}function u0(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var it=function(e){En(t,e);function t(n){_n(this,t);var r;return r=mn(this,t,[n]),r.name="\u{1F4A5} Driven Error",r.message=n?u0(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",r}return t}(nt(Error)),i0=function(e){En(t,e);function t(n){_n(this,t);var r;return r=mn(this,t,[n]),r.name="\u{1F6A8} Driven Reference Error",r}return t}(it);function pe(e){throw new it(e)}function Fn(e){throw new i0(e)}function o0(e){ut.error(new it(e))}const a0=(e,t,n)=>{if(!e)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const r=e.split(".");let u;const o=(window.baitedaWorkers||{}).languageMessages||{};r.forEach((l,s)=>{s===0?u=o[l]:u&&(u=u[l])});let i="";return u&&(i=u),t&&Object.keys(t).forEach(l=>{const s=t[l];i=i.replace(new RegExp(`\\{\\s*${l}\\s*\\}`,"g"),s)}),i||(n?i=n:i=e),i};function l0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Cn(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 s0(e,t,n){return t&&Cn(e.prototype,t),n&&Cn(e,n),e}function c0(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var y=function(){function e(){l0(this,e)}return s0(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},u;return a0("CMD."+n,r,Ze==null||(u=Ze[pn.split("-").join("")])===null||u===void 0?void 0:u[n])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(n,r){}}]),e}();c0(y,"$i18n",y.resetI18n());function An(e,t,n){var r=t.replace(/\[(\d)]/g,function(o,i){return"."+i}).split("."),u=!1;return r.reduce(function(o,i,l,s){var a=o;if(!!o){if(!Object.prototype.hasOwnProperty.call(o,i)){$e("Can not set ".concat(t,"'s ").concat(i," property in current %o, Because there is no ").concat(i," property on the %o"),o,o);return}return l===s.length-1&&!Object.is(a[i],n)&&(a[i]=n,u=!0),a[i]}},e),u}var f0=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},d0={exports:{}};(function(e){(function(t){var n=function(c,p,b){if(!a(p)||h(p)||m(p)||_(p)||s(p))return p;var A,S=0,k=0;if(f(p))for(A=[],k=p.length;S<k;S++)A.push(n(c,p[S],b));else{A={};for(var w in p)Object.prototype.hasOwnProperty.call(p,w)&&(A[c(w,b)]=n(c,p[w],b))}return A},r=function(c,p){p=p||{};var b=p.separator||"_",A=p.split||/(?=[A-Z])/;return c.split(A).join(b)},u=function(c){return C(c)?c:(c=c.replace(/[\-_\s]+(.)?/g,function(p,b){return b?b.toUpperCase():""}),c.substr(0,1).toLowerCase()+c.substr(1))},o=function(c){var p=u(c);return p.substr(0,1).toUpperCase()+p.substr(1)},i=function(c,p){return r(c,p).toLowerCase()},l=Object.prototype.toString,s=function(c){return typeof c=="function"},a=function(c){return c===Object(c)},f=function(c){return l.call(c)=="[object Array]"},h=function(c){return l.call(c)=="[object Date]"},m=function(c){return l.call(c)=="[object RegExp]"},_=function(c){return l.call(c)=="[object Boolean]"},C=function(c){return c=c-0,c===c},d=function(c,p){var b=p&&"process"in p?p.process:p;return typeof b!="function"?c:function(A,S){return b(A,c,S)}},g={camelize:u,decamelize:i,pascalize:o,depascalize:i,camelizeKeys:function(c,p){return n(d(u,p),c)},decamelizeKeys:function(c,p){return n(d(i,p),c,p)},pascalizeKeys:function(c,p){return n(d(o,p),c)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=g:t.humps=g})(f0)})(d0);var wn={};Object.defineProperty(wn,"__esModule",{value:!0});function ot(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:ot(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:ot(r)}return t}}var p0=wn.default=ot;function Sn(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function N(e){if(e!==void 0)return(typeof e=="undefined"?"undefined":Sn(e))==="object"?p0(e):e}function at(e){return Object.prototype.toString.call(e)==="[object Object]"}function v0(e){return e!=null&&(typeof e=="undefined"?"undefined":Sn(e))==="object"&&Array.isArray(e)===!1}function ve(e){return Array.isArray(e)}function lt(e){return typeof e=="string"}function h0(e){return Object.values(v).includes(e)}function st(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 y0(e){if(Array.isArray(e))return st(e)}function $n(e,t,n,r,u,o,i){try{var l=e[o](i),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,u)}function g0(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var o=e.apply(t,n);function i(s){$n(o,r,u,i,l,"next",s)}function l(s){$n(o,r,u,i,l,"throw",s)}i(void 0)})}}function m0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Dn(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 _0(e,t,n){return t&&Dn(e.prototype,t),n&&Dn(e,n),e}function In(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function E0(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function b0(){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 ct(e){return y0(e)||E0(e)||B0(e)||b0()}function B0(e,t){if(!!e){if(typeof e=="string")return st(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 st(e,t)}}function F0(e,t){var n,r,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:l(0),throw:l(1),return:l(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;i;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var On=function(){function e(){m0(this,e),In(this,"_events",new Map),In(this,"debug",!1)}return _0(e,[{key:"emit",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),o=1;o<r;o++)u[o-1]=arguments[o];var i=this;return g0(function(){var l,s,a,f,h,m,_,C,d,g,c,p;return F0(this,function(b){switch(b.label){case 0:if(l=i._events.get(n),s=[],!l)return[3,10];a=l.slice(),f=!0,h=!1,m=void 0,b.label=1;case 1:b.trys.push([1,8,9,10]),_=a[Symbol.iterator](),b.label=2;case 2:if(f=(C=_.next()).done)return[3,7];if(d=C.value,!l.includes(d))return[3,6];b.label=3;case 3:return b.trys.push([3,5,,6]),i.debug&&Bn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(d.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+d.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"\u3002")].concat(ct(u))),[4,d.apply(null,ct(u))];case 4:return g=b.sent(),i.debug&&Bn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(d.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+d.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(ct(u),[g])),s.push(g),g===!1?[3,7]:[3,6];case 5:return c=b.sent(),o0(String(c)+":"+String(c.stack)),[3,6];case 6:return f=!0,[3,2];case 7:return[3,10];case 8:return p=b.sent(),h=!0,m=p,[3,10];case 9:try{!f&&_.return!=null&&_.return()}finally{if(h)throw m}return[7];case 10:return[2,s]}})})()}},{key:"on",value:function(n,r){if(this._events.has(n)){var u;(u=this._events.get(n))===null||u===void 0||u.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var u=this._events.get(n),o=u==null?void 0:u.indexOf(r);u==null||u.splice(o,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function C0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pn(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 A0(e,t,n){return t&&Pn(e.prototype,t),n&&Pn(e,n),e}function w0(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var S0=[{key:"on_click",name:y.getMessage("click"),code:"click"},{key:"on_click_finish",name:y.getMessage("finished"),code:"click-finish"},{key:"on_change",name:y.getMessage("valueChange"),code:"change"},{key:"on_search",name:y.getMessage("search"),code:"search"},{key:"on_list_change",name:y.getMessage("listDataChange"),code:"list-change"},{key:"on_list_search",name:y.getMessage("listDataCreate"),code:"list-search"},{key:"on_list_mounted",name:y.getMessage("listDataBack"),code:"list-mounted"},{key:"on_list_delete",name:y.getMessage("listDataDelete"),code:"list-delete"},{key:"on_list_before_insert",name:y.getMessage("listDataAdd"),code:"list-before-insert"},{key:"on_input",name:y.getMessage("onInput"),code:"input"},{key:"on_blur",name:y.getMessage("onBlur"),code:"blur"},{key:"on_focus",name:y.getMessage("onFocus"),code:"focus"},{key:"on_wps_open",name:y.getMessage("onOpenFile"),code:"wps-open"},{key:"on_wps_save",name:y.getMessage("onSaveFile"),code:"wps-save"},{key:"on_wps_rename",name:y.getMessage("rename"),code:"wps-rename"},{key:"on_list_actions",name:y.getMessage("onClickBtn"),code:"list-actions"},{key:"on_list_render_operation",name:y.getMessage("cellRender"),code:"list-render-operation"},{key:"on_list_rowclick",name:y.getMessage("rowClick"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:y.getMessage("rowDelete"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:y.getMessage("listDataImport"),code:"list-before-import"},{key:"on_list_rows_checked",name:y.getMessage("rowSelected"),code:"list-rows-checked"},{key:"on_change_tab",name:y.getMessage("tabChange"),code:"change-tab"},{key:"on_modal_ok",name:y.getMessage("modalConfirm"),code:"modal-ok"}],he=function(){function e(){C0(this,e)}return A0(e,null,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(u){return r.includes(u.key)})}},{key:"getEventsFromControl",value:function(n){var r=[],u=n.eventKeys;r=r.concat(e.events.filter(function(i){return u.includes(i.key)}));var o=n.customEvents.map(function(i){var l=i.key;return i.namespace!==void 0&&i.namespace!==null&&i.namespace!==""&&(l=i.namespace+":"+i.key),{key:l,code:i.key,name:i.name}});return r=r.concat(o),r}}]),e}();w0(he,"events",S0);function ft(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function $0(e){if(Array.isArray(e))return ft(e)}function D0(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function I0(){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 Rn(e){return $0(e)||D0(e)||O0(e)||I0()}function O0(e,t){if(!!e){if(typeof e=="string")return ft(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ft(e,t)}}function dt(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function xn(e,t,n){n!=="Runtime"&&(e.parent=t,dt(e,"parent"))}function P0(e,t,n){e.forEach(function(r){xn(r,t,n)})}var Mn=Symbol("targetKey");function Ln(e){var t;return(t=e[Mn])!==null&&t!==void 0?t:e}function Tn(e,t,n){return P0(e,t,n),new Proxy(e,{get:function(u,o){for(var i=arguments.length,l=new Array(i>2?i-2:0),s=2;s<i;s++)l[s-2]=arguments[s];var a;return o===Mn?u:(a=Reflect).get.apply(a,[u,o].concat(Rn(l)))},set:function(u,o,i){for(var l=arguments.length,s=new Array(l>3?l-3:0),a=3;a<l;a++)s[a-3]=arguments[a];var f;if(ve(e)&&o==="length"&&i===e.length)return!0;var h=(f=Reflect).set.apply(f,[u,o,i].concat(Rn(s)));return at(i)&&xn(i,t,n),h}})}function pt(e,t,n,r,u){var o=r!=null?r:e,i=Tn(Ln(n!=null?n:[]),o,u);Object.defineProperty(e,t,{get:function(){return i},set:function(s){i=Tn(Ln(s),o,u)},enumerable:!0})}function R0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function x0(e,t,n){return t&&jn(e.prototype,t),n&&jn(e,n),e}function K(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Vn=[],ye=function(){function e(t){R0(this,e),K(this,"registeredControlTypes",new Set),K(this,"controlConfigMap",new Map),K(this,"_controls",[]),K(this,"_type",void 0),this._type=t,this._initControls(t)}return x0(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__||pe("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(u){return u.controlType===n.controlType});return r>-1&&($e("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===P.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===P.FORM}},{key:"isListControl",value:function(n){return n.controlType===P.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===P.COLUMN}},{key:"createControl",value:function(n,r){var u=this;if(Array.isArray(n))return n.map(function(f){return u.createControl(f,r)});if(n.children&&(n.children=n.children.map(function(f){return u.createControl(f,r)})),this.isListControl(n)){var o=n.props;o.headers&&(o.headers=o.headers.map(function(f){return u.createControl(f,r)}))}var i=this.getControlFormType(n.type);if(i){var l=n;if(typeof r=="function"){var s=r(l);s&&(l=s)}var a;return i.mode==="Runtime"?(a=l,a.fieldType=i.controlFieldType,this._setParentPrototypeToSchema(a,this)):a=new i(l),a}else pe("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"resetInstanceParent",value:function(n,r){delete n.parent,Object.defineProperty(n,"parent",{configurable:!0,get:function(){return r}}),dt(n,"parent")}},{key:"_setParentPrototypeToSchema",value:function(n,r){r._type==="Runtime"&&(Object.defineProperty(n,"parent",{configurable:!0,get:function(){var o=n.id,i=r._controlParentIdMap,l=r.instanceMap;if(!(!i||!l)){var s=i[o],a=l[o];if(!(!s&&!a)){var f=a.findIndex(function(_){return _==n}),h=l[s]||[],m;return h.length!==a.length?m=h[0]:m=h[f],m}}}}),dt(n,"parent"))}},{key:"createControlInstance",value:function(n,r){var u=this.getControlFormType(n);if(u)return new u(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(u){r.register(u[n]),e.staticControlsRuntimeRules.set(u.Runtime.controlType,u.Property.RuntimeRules),u.Property.mode=n})}}],[{key:"staticGetRules",value:function(n,r){var u=e.staticControlsRuntimeRules.get(n),o=[];if(u){var i=new u(r);o=Array.from(i)}return o}},{key:"register",value:function(n,r){var u=n.Designer,o=n.Runtime,i=n.Property;(!u||!o||!u.__is_control__||!o.__is_control__)&&pe("".concat(n," is can't register as a Control"));var l=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return l>-1&&($e("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(l,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),i.mode=r,this}}]),e}();K(ye,"staticControlsRuntimeRules",new Map),K(ye,"staticControls",Vn),K(ye,"staticRegisteredTypes",new Set(Vn.map(function(e){return e.Designer.controlType}))),K(ye,"staticRegisteredConfigs",new Map);function vt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function T(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var qn=function e(t){vt(this,e),T(this,"dataCode",void 0),T(this,"fieldCode",void 0),T(this,"fieldType",void 0),T(this,"aliasCode",void 0);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:"",this.aliasCode=t==null?void 0:t.aliasCode},M0=function e(t){vt(this,e),T(this,"minWidth",void 0),T(this,"maxWidth",void 0),T(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 Un;(function(e){e.DEFAULT_DISPLAY="defaultDisplay",e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.VIEW_FORM_MODEL_TYPE="viewFormModelType",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.IS_SHOW_WATERMARK="isShowWatermark",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions",e.IS_PASTE="isPaste",e.SORTABLE="sortable"})(Un||(Un={}));var ht;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(ht||(ht={}));var L0=function e(t){vt(this,e),T(this,"width",void 0),T(this,"height",void 0),T(this,"widthConfig",void 0),T(this,"heightConfig",void 0);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var o;this.heightConfig=(o=t==null?void 0:t.heightConfig)!==null&&o!==void 0?o:"fill"};function T0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function j0(e,t,n){return t=ge(t),k0(e,mt()?Reflect.construct(t,n||[],ge(e).constructor):t.apply(e,n))}function yt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function De(e,t,n){return mt()?De=Reflect.construct:De=function(u,o,i){var l=[null];l.push.apply(l,o);var s=Function.bind.apply(u,l),a=new s;return i&&me(a,i.prototype),a},De.apply(null,arguments)}function W(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ge(e){return ge=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ge(e)}function V0(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&&me(e,t)}function q0(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function k0(e,t){return t&&(U0(t)==="object"||typeof t=="function")?t:T0(e)}function me(e,t){return me=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},me(e,t)}function U0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function gt(e){var t=typeof Map=="function"?new Map:void 0;return gt=function(r){if(r===null||!q0(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return De(r,arguments,ge(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),me(u,r)},gt(e)}function mt(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(mt=function(){return!!e})()}var _t=function e(t){yt(this,e),W(this,"isHide",{type:"boolean"})},Hn=function(e){V0(t,e);function t(n){return yt(this,t),j0(this,t)}return t}(gt(Array)),z=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";yt(this,e),W(this,"isHide",void 0),W(this,"className",void 0),W(this,"style",void 0),W(this,"caption",void 0),W(this,"defaultState",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new L0(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};W(z,"mode",void 0),W(z,"Rules",_t),W(z,"RuntimeRules",Hn);function V(){return V=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},V.apply(this,arguments)}function H0(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function Et(e){return Et=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Et(e)}function Ie(e,t){return Ie=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ie(e,t)}function N0(){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 Oe(e,t,n){return N0()?Oe=Reflect.construct:Oe=function(u,o,i){var l=[null];l.push.apply(l,o);var s=Function.bind.apply(u,l),a=new s;return i&&Ie(a,i.prototype),a},Oe.apply(null,arguments)}function W0(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function bt(e){var t=typeof Map=="function"?new Map:void 0;return bt=function(r){if(r===null||!W0(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Oe(r,arguments,Et(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Ie(u,r)},bt(e)}var z0=/%[sdj%]/g,Nn=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Nn=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function Bt(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function M(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,u=t[0],o=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var i=String(u).replace(z0,function(l){if(l==="%%")return"%";if(r>=o)return l;switch(l){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(s){return"[Circular]"}break;default:return l}});return i}return u}function G0(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||G0(t)&&typeof e=="string"&&!e)}function K0(e,t,n){var r=[],u=0,o=e.length;function i(l){r.push.apply(r,l),u++,u===o&&n(r)}e.forEach(function(l){t(l,i)})}function Wn(e,t,n){var r=0,u=e.length;function o(i){if(i&&i.length){n(i);return}var l=r;r=r+1,l<u?t(e[l],o):n([])}o([])}function X0(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var zn=function(e){H0(t,e);function t(n,r){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=n,u.fields=r,u}return t}(bt(Error));function J0(e,t,n,r){if(t.first){var u=new Promise(function(h,m){var _=function(g){return r(g),g.length?m(new zn(g,Bt(g))):h()},C=X0(e);Wn(C,n,_)});return u.catch(function(h){return h}),u}var o=t.firstFields||[];o===!0&&(o=Object.keys(e));var i=Object.keys(e),l=i.length,s=0,a=[],f=new Promise(function(h,m){var _=function(d){if(a.push.apply(a,d),s++,s===l)return r(a),a.length?m(new zn(a,Bt(a))):h()};i.length||(r(a),h()),i.forEach(function(C){var d=e[C];o.indexOf(C)!==-1?Wn(d,n,_):K0(d,n,_)})});return f.catch(function(h){return h}),f}function Gn(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 Kn(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]=V(V({},e[n]),r):e[n]=r}}return e}function Xn(e,t,n,r,u,o){e.required&&(!n.hasOwnProperty(e.field)||D(t,o||e.type))&&r.push(M(u.messages.required,e.fullField))}function Q0(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(M(u.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},_e={integer:function(t){return _e.number(t)&&parseInt(t,10)===t},float:function(t){return _e.number(t)&&!_e.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"&&!_e.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 Z0(e,t,n,r,u){if(e.required&&t===void 0){Xn(e,t,n,r,u);return}var o=["integer","float","array","regexp","object","method","email","number","date","url","hex"],i=e.type;o.indexOf(i)>-1?_e[i](t)||r.push(M(u.messages.types[i],e.fullField,e.type)):i&&typeof t!==e.type&&r.push(M(u.messages.types[i],e.fullField,e.type))}function Y0(e,t,n,r,u){var o=typeof e.len=="number",i=typeof e.min=="number",l=typeof e.max=="number",s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,h=typeof t=="number",m=typeof t=="string",_=Array.isArray(t);if(h?f="number":m?f="string":_&&(f="array"),!f)return!1;_&&(a=t.length),m&&(a=t.replace(s,"_").length),o?a!==e.len&&r.push(M(u.messages[f].len,e.fullField,e.len)):i&&!l&&a<e.min?r.push(M(u.messages[f].min,e.fullField,e.min)):l&&!i&&a>e.max?r.push(M(u.messages[f].max,e.fullField,e.max)):i&&l&&(a<e.min||a>e.max)&&r.push(M(u.messages[f].range,e.fullField,e.min,e.max))}var ee="enum";function ev(e,t,n,r,u){e[ee]=Array.isArray(e[ee])?e[ee]:[],e[ee].indexOf(t)===-1&&r.push(M(u.messages[ee],e.fullField,e[ee].join(", ")))}function tv(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(M(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var o=new RegExp(e.pattern);o.test(t)||r.push(M(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var E={required:Xn,whitespace:Q0,type:Z0,range:Y0,enum:ev,pattern:tv};function nv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t,"string")&&!e.required)return n();E.required(e,t,r,o,u,"string"),D(t,"string")||(E.type(e,t,r,o,u),E.range(e,t,r,o,u),E.pattern(e,t,r,o,u),e.whitespace===!0&&E.whitespace(e,t,r,o,u))}n(o)}function rv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t)&&!e.required)return n();E.required(e,t,r,o,u),t!==void 0&&E.type(e,t,r,o,u)}n(o)}function uv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(t===""&&(t=void 0),D(t)&&!e.required)return n();E.required(e,t,r,o,u),t!==void 0&&(E.type(e,t,r,o,u),E.range(e,t,r,o,u))}n(o)}function iv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t)&&!e.required)return n();E.required(e,t,r,o,u),t!==void 0&&E.type(e,t,r,o,u)}n(o)}function ov(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t)&&!e.required)return n();E.required(e,t,r,o,u),D(t)||E.type(e,t,r,o,u)}n(o)}function av(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t)&&!e.required)return n();E.required(e,t,r,o,u),t!==void 0&&(E.type(e,t,r,o,u),E.range(e,t,r,o,u))}n(o)}function lv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t)&&!e.required)return n();E.required(e,t,r,o,u),t!==void 0&&(E.type(e,t,r,o,u),E.range(e,t,r,o,u))}n(o)}function sv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(t==null&&!e.required)return n();E.required(e,t,r,o,u,"array"),t!=null&&(E.type(e,t,r,o,u),E.range(e,t,r,o,u))}n(o)}function cv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t)&&!e.required)return n();E.required(e,t,r,o,u),t!==void 0&&E.type(e,t,r,o,u)}n(o)}var fv="enum";function dv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t)&&!e.required)return n();E.required(e,t,r,o,u),t!==void 0&&E[fv](e,t,r,o,u)}n(o)}function pv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t,"string")&&!e.required)return n();E.required(e,t,r,o,u),D(t,"string")||E.pattern(e,t,r,o,u)}n(o)}function vv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t,"date")&&!e.required)return n();if(E.required(e,t,r,o,u),!D(t,"date")){var l;t instanceof Date?l=t:l=new Date(t),E.type(e,l,r,o,u),l&&E.range(e,l.getTime(),r,o,u)}}n(o)}function hv(e,t,n,r,u){var o=[],i=Array.isArray(t)?"array":typeof t;E.required(e,t,r,o,u,i),n(o)}function Ct(e,t,n,r,u){var o=e.type,i=[],l=e.required||!e.required&&r.hasOwnProperty(e.field);if(l){if(D(t,o)&&!e.required)return n();E.required(e,t,r,i,u,o),D(t,o)||E.type(e,t,r,i,u)}n(i)}function yv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(D(t)&&!e.required)return n();E.required(e,t,r,o,u)}n(o)}var Ee={string:nv,method:rv,number:uv,boolean:iv,regexp:ov,integer:av,float:lv,array:sv,object:cv,enum:dv,pattern:pv,date:vv,url:Ct,hex:Ct,email:Ct,required:hv,any:yv};function At(){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 wt=At();function X(e){this.rules=null,this._messages=wt,this.define(e)}X.prototype={messages:function(t){return t&&(this._messages=Kn(At(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var u=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var o=t,i=n,l=r;if(typeof i=="function"&&(l=i,i={}),!this.rules||Object.keys(this.rules).length===0)return l&&l(),Promise.resolve();function s(d){var g,c=[],p={};function b(A){if(Array.isArray(A)){var S;c=(S=c).concat.apply(S,A)}else c.push(A)}for(g=0;g<d.length;g++)b(d[g]);c.length?p=Bt(c):(c=null,p=null),l(c,p)}if(i.messages){var a=this.messages();a===wt&&(a=At()),Kn(a,i.messages),i.messages=a}else i.messages=this.messages();var f,h,m={},_=i.keys||Object.keys(this.rules);_.forEach(function(d){f=u.rules[d],h=o[d],f.forEach(function(g){var c=g;typeof c.transform=="function"&&(o===t&&(o=V({},o)),h=o[d]=c.transform(h)),typeof c=="function"?c={validator:c}:c=V({},c),c.validator=u.getValidationMethod(c),c.field=d,c.fullField=c.fullField||d,c.type=u.getType(c),c.validator&&(m[d]=m[d]||[],m[d].push({rule:c,value:h,source:o,field:d}))})});var C={};return J0(m,i,function(d,g){var c=d.rule,p=(c.type==="object"||c.type==="array")&&(typeof c.fields=="object"||typeof c.defaultField=="object");p=p&&(c.required||!c.required&&d.value),c.field=d.field;function b(k,w){return V(V({},w),{},{fullField:c.fullField+"."+k})}function A(k){k===void 0&&(k=[]);var w=k;if(Array.isArray(w)||(w=[w]),!i.suppressWarning&&w.length&&X.warning("async-validator:",w),w.length&&c.message!==void 0&&(w=[].concat(c.message)),w=w.map(Gn(c)),i.first&&w.length)return C[c.field]=1,g(w);if(!p)g(w);else{if(c.required&&!d.value)return c.message!==void 0?w=[].concat(c.message).map(Gn(c)):i.error&&(w=[i.error(c,M(i.messages.required,c.field))]),g(w);var U={};if(c.defaultField)for(var Jr in d.value)d.value.hasOwnProperty(Jr)&&(U[Jr]=c.defaultField);U=V(V({},U),d.rule.fields);for(var oe in U)if(U.hasOwnProperty(oe)){var h5=Array.isArray(U[oe])?U[oe]:[U[oe]];U[oe]=h5.map(b.bind(null,oe))}var Qr=new X(U);Qr.messages(i.messages),d.rule.options&&(d.rule.options.messages=i.messages,d.rule.options.error=i.error),Qr.validate(d.value,d.rule.options||i,function(sn){var ae=[];w&&w.length&&ae.push.apply(ae,w),sn&&sn.length&&ae.push.apply(ae,sn),g(ae.length?ae:null)})}}var S;c.asyncValidator?S=c.asyncValidator(c,d.value,A,d.source,i):c.validator&&(S=c.validator(c,d.value,A,d.source,i),S===!0?A():S===!1?A(c.message||c.field+" fails"):S instanceof Array?A(S):S instanceof Error&&A(S.message)),S&&S.then&&S.then(function(){return A()},function(k){return A(k)})},function(d){s(d)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Ee.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"?Ee.required:Ee[this.getType(t)]||!1}},X.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Ee[t]=n},X.warning=Nn,X.messages=wt,X.validators=Ee;var gv={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 mv(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new X(e);return n.messages(Object.assign(gv,t)),n}var Jn=new On;function St(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 _v(e){if(Array.isArray(e))return e}function Ev(e){if(Array.isArray(e))return St(e)}function Qn(e,t,n,r,u,o,i){try{var l=e[o](i),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,u)}function Zn(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var o=e.apply(t,n);function i(s){Qn(o,r,u,i,l,"next",s)}function l(s){Qn(o,r,u,i,l,"throw",s)}i(void 0)})}}function bv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Yn(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 Bv(e,t,n){return t&&Yn(e.prototype,t),n&&Yn(e,n),e}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 er(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function tr(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Fv(){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 Cv(){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 nr(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){F(e,u,n[u])})}return e}function Av(e){return _v(e)||tr(e)||rr(e)||Fv()}function $t(e){return Ev(e)||tr(e)||rr(e)||Cv()}function wv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function rr(e,t){if(!!e){if(typeof e=="string")return St(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 St(e,t)}}function ur(e,t){var n,r,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:l(0),throw:l(1),return:l(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;i;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var R=function(){function t(n){var r=this;bv(this,t),F(this,"id",void 0),F(this,"name",void 0),F(this,"icon",void 0),F(this,"type",void 0),F(this,"controlType",void 0),F(this,"props",void 0),F(this,"setting",[]),F(this,"fieldType",void 0),F(this,"eventKeys",[]),F(this,"customEvents",[]),F(this,"parent",null),F(this,"slots",void 0),F(this,"slotPosition",void 0),F(this,"updateSetting",or),F(this,"removeSetting",ir),this._callControlHooks("preInstance",n);var u=er(this,t)?this.constructor:void 0,o=u.controlName,i=u.controlIcon,l=u.controlType,s=u.controlFieldType,a=u.controlEventKeys,f=u.controlCustomEvents,h=u.name,m=u.setting,_=u.slots,C=u.slotPosition;o&&i&&l||Fn("The ".concat(h," controlName,controlIcon,controlType is not define"));var d;this.id=(d=n==null?void 0:n.id)!==null&&d!==void 0?d:et(10),this.name=o,this.icon=i;var g;this.type=(g=n==null?void 0:n.type)!==null&&g!==void 0?g:l,this.props=new z(n==null?void 0:n.props,(er(this,t)?this.constructor:void 0).controlName);var c;this.controlType=(c=n==null?void 0:n.controlType)!==null&&c!==void 0?c:"base",this.setting=N(m);var p;this.fieldType=(p=n==null?void 0:n.fieldType)!==null&&p!==void 0?p:s,this.eventKeys=N(a),this.customEvents=N(f),this.slots=N(_),this.slotPosition=N(C),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return Bv(t,[{key:"rules",get:function(){var r=this.props.constructor.Rules;return r?new r(this.props):{}}},{key:"_callControlHooks",value:function(){for(var r=arguments.length,u=new Array(r),o=0;o<r;o++)u[o]=arguments[o];var i,l=Av(u),s=l[0],a=l.slice(1);return(i=Jn).emit.apply(i,[s,this].concat($t(a)))}},{key:"preUpdate",value:function(r,u){this._callControlHooks("preUpdateProps",r,u)}},{key:"postUpdate",value:function(r,u){this._callControlHooks("postUpdateProps",r,u)}},{key:"updateProps",value:function(r,u){this.preUpdate(r,u),An(this.props,r,u),this.postUpdate(r,u)}},{key:"preValidate",value:function(){var r=this;return Zn(function(){var u,o,i;return ur(this,function(l){switch(l.label){case 0:return u=nr({},r.rules),[4,r._callControlHooks("preValidate",u)];case 1:return o=l.sent(),i=o[o.length-1],[2,i===!1?void 0:i]}})})()}},{key:"validate",value:function(r,u){var o=this;return Zn(function(){var i,l,s,a;return ur(this,function(f){switch(f.label){case 0:return[4,o.preValidate()];case 1:i=f.sent(),l=i!==void 0?i:nr({},o.rules),Array.isArray(u)&&u.forEach(function(h){l.hasOwnProperty(h)&&delete l[h]}),s=mv(l,r),f.label=2;case 2:return f.trys.push([2,4,,5]),[4,s.validate(o.props)];case 3:return f.sent(),[2,!0];case 4:throw a=f.sent(),a.control||(a.control=o),a;case 5:return[2]}})})()}},{key:"toDataBindModel",value:function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,u=this.fieldType,o=this.id,i=this.type,l=this.props,s=l.dataBind,a=l.datasourceBind,f=l.optionConfig,h=l.caption,m=l.required,_=l.maxLength,C=l.options,d=l.encrypted,g=l.encryptedMode;if(!(!u&&!s&&!a)){var c={parentId:r,fieldType:u,controlId:o,caption:h,type:i,props:{}};switch(s&&(c.dataBind=s),f){case"datasource":case void 0:a&&(c.datasourceBind=a);break;case"custom":c.props.options=C;break}return m!==void 0&&(c.required=m),_!==void 0&&(c.maxLength=_),d!==void 0&&(c.encrypted=d),g!==void 0&&(c.encryptedMode=g),c}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:N(this.props),fieldType:this.fieldType,controlType:this.controlType}}}],[{key:"updateBasicControl",value:function(r,u){if(r==="setting"){if(u.add){var o;(o=this.setting).push.apply(o,$t(u.add))}u.remove&&this.removeSettingItem(u.remove),u.update}}}]),t}();F(R,"mode","Designer"),F(R,"slots",void 0),F(R,"slotPosition",void 0),F(R,"controlName","\u63A7\u4EF6"),F(R,"controlIcon","icon"),F(R,"controlType","control"),F(R,"controlFieldType",void 0),F(R,"controlEventKeys",[]),F(R,"controlCustomEvents",[]),F(R,"setting",[]),F(R,"__is_control__",!0),F(R,"removeSettingItem",ir),F(R,"updateSettingItem",or);function ir(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u,o=typeof r!="string",i=(u=t.setting)===null||u===void 0?void 0:u.findIndex(function(a){return a.key===(o?r.key:r)});if(i!==-1){var l,s;o?t.setting[i].showItems=(l=t.setting[i].showItems)===null||l===void 0?void 0:l.filter(function(a){return!r.hideItems.includes(a)}):t.setting.splice(i,1),o&&!(!((s=t.setting[i].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(i,1)}})}function or(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var o=n.setting.find(function(a){return a.key===u});if(o){if(typeof t=="boolean")o.visible=t;else if((typeof t=="undefined"?"undefined":wv(t))==="object"){var i,l=(i=t.type)!==null&&i!==void 0?i:"replace";if(l==="replace")o.showItems=t.showItems;else{var s;(s=o.showItems).push.apply(s,$t(t.showItems))}}}})}function Sv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ar(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function $v(e,t,n){return t&&ar(e.prototype,t),n&&ar(e,n),e}function L(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Dv(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var be=function(){function t(n){Sv(this,t),L(this,"id",void 0),L(this,"type",void 0),L(this,"controlType",void 0),L(this,"props",void 0),L(this,"fieldType",void 0),L(this,"customEvents",[]),L(this,"pageStatus",void 0),L(this,"parent",null);var r=Dv(this,t)?this.constructor:void 0,u=r.controlType,o=r.controlFieldType,i=r.name,l=r.controlCustomEvents;u||Fn("The ".concat(i," controlType is not define"));var s;this.id=(s=n==null?void 0:n.id)!==null&&s!==void 0?s:et(10);var a;this.type=(a=n==null?void 0:n.type)!==null&&a!==void 0?a:u,this.props=new z(n==null?void 0:n.props),this.customEvents=l;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var h;this.fieldType=(h=n==null?void 0:n.fieldType)!==null&&h!==void 0?h:o;var m;this.pageStatus=(m=n==null?void 0:n.pageStatus)!==null&&m!==void 0?m:ht.UNKNOWN}return $v(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var u=new r(this.props);return Array.from(u)}return[]}}]),t}();L(be,"mode","Runtime"),L(be,"controlType","control"),L(be,"controlFieldType",void 0),L(be,"__is_control__",!0),L(be,"controlCustomEvents",[]);function lr(e){return(e==null?void 0:e.dataCode)!==void 0&&(e==null?void 0:e.fieldCode)!==void 0}function Iv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Dt(e,t,n){return t=Pe(t),Ov(e,sr()?Reflect.construct(t,n||[],Pe(e).constructor):t.apply(e,n))}function It(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Pe(e){return Pe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Pe(e)}function Ot(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Pt(e,t)}function Ov(e,t){return t&&(Pv(t)==="object"||typeof t=="function")?t:Iv(e)}function Pt(e,t){return Pt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Pt(e,t)}function Pv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function sr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(sr=function(){return!!e})()}var Rv=function(e){Ot(t,e);function t(n){It(this,t);var r;r=Dt(this,t,[n]),$(r,"dataBind",{}),$(r,"caption",{type:"string",required:!0,message:y.getMessage("pleaseEnterCaption")}),$(r,"isHideCaption",{type:"boolean"}),$(r,"labelPosition",{type:"enum",enum:["top","left"]}),$(r,"defaultState",{type:"enum",enum:["default","readonly"]}),$(r,"required",{type:"boolean"}),$(r,"captionTip",{type:"string",required:!1,message:y.getMessage("pleaseEnterCaptionTip")});var u={fieldCode:{type:"string",required:!0,message:y.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:y.getMessage("pleaseEnterFieldCode")}};if(lr(n.dataBind))r.dataBind={type:"object",required:!0,fields:N(u),message:y.getMessage("pleaseEnterFieldCode")};else{var o={type:"object",required:!0,fields:{},message:y.getMessage("pleaseEnterFieldCode")};Object.keys(n.dataBind).forEach(function(i){o.fields[i]={type:"object",required:!0,fields:N(u),message:y.getMessage("pleaseEnterFieldCode")}}),r.dataBind=o}return n.isShowCaptionTip&&(r.captionTip.required=!0),r}return t}(_t),xv=function(e){Ot(t,e);function t(n){It(this,t);var r;r=Dt(this,t,[n]);var u=n.isHide?!1:n.required;return u&&r.push({type:"string",required:u,message:n.requiredMessage!==""?n.requiredMessage:y.getMessage("runtimeRequired",{caption:n.caption})}),r}return t}(Hn),Rt=function(e){Ot(t,e);function t(n){It(this,t);var r;r=Dt(this,t,[n]),$(r,"caption",void 0),$(r,"isHideCaption",void 0),$(r,"isShowCaptionTip",void 0),$(r,"captionTip",void 0),$(r,"labelPosition",void 0),$(r,"dataBind",void 0),$(r,"defaultValue",void 0),$(r,"placeholder",void 0),$(r,"defaultState",void 0),$(r,"required",void 0),$(r,"requiredMessage",void 0);var u;r.caption=(u=n==null?void 0:n.caption)!==null&&u!==void 0?u:"";var o;r.isHideCaption=(o=n==null?void 0:n.isHideCaption)!==null&&o!==void 0?o:!1;var i;r.isShowCaptionTip=(i=n==null?void 0:n.isShowCaptionTip)!==null&&i!==void 0?i:!1;var l;r.captionTip=(l=n==null?void 0:n.captionTip)!==null&&l!==void 0?l:"";var s;r.defaultState=(s=n==null?void 0:n.defaultState)!==null&&s!==void 0?s:"default";var a;r.labelPosition=(a=n==null?void 0:n.labelPosition)!==null&&a!==void 0?a:"top";var f;r.placeholder=(f=n==null?void 0:n.placeholder)!==null&&f!==void 0?f:"";var h;r.required=(h=n==null?void 0:n.required)!==null&&h!==void 0?h:!1;var m;r.requiredMessage=(m=n==null?void 0:n.requiredMessage)!==null&&m!==void 0?m:"",r.dataBind=new qn(n==null?void 0:n.dataBind);var _;return r.defaultValue=(_=n==null?void 0:n.defaultValue)!==null&&_!==void 0?_:"",r}return t}(z);$(Rt,"Rules",Rv),$(Rt,"RuntimeRules",xv);function Mv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Lv(e,t,n){return t=xe(t),Vv(e,cr()?Reflect.construct(t,n||[],xe(e).constructor):t.apply(e,n))}function Tv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}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 xe(e){return xe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},xe(e)}function jv(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 Vv(e,t){return t&&(qv(t)==="object"||typeof t=="function")?t:Mv(e)}function xt(e,t){return xt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},xt(e,t)}function qv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function cr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(cr=function(){return!!e})()}var fr=function(e){jv(t,e);function t(n){Tv(this,t);var r;return r=Lv(this,t,[n]),Re(r,"controlType","form"),Re(r,"props",void 0),r.props=new Rt(n==null?void 0:n.props),r}return t}(R);Re(fr,"controlEventKeys",["on_change","on_focus","on_blur"]),Re(fr,"controlCustomAttributes",void 0);function kv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Uv(e,t,n){return t=Me(t),Wv(e,dr()?Reflect.construct(t,n||[],Me(e).constructor):t.apply(e,n))}function Hv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Me(e){return Me=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Me(e)}function Nv(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Mt(e,t)}function Wv(e,t){return t&&(zv(t)==="object"||typeof t=="function")?t:kv(e)}function Mt(e,t){return Mt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Mt(e,t)}function zv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function dr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(dr=function(){return!!e})()}var Gv=function(e){Nv(t,e);function t(n){return Hv(this,t),Uv(this,t,[n])}return t}(z);function Lt(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 Kv(e){if(Array.isArray(e))return Lt(e)}function Xv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function pr(e,t,n,r,u,o,i){try{var l=e[o](i),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,u)}function Jv(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var o=e.apply(t,n);function i(s){pr(o,r,u,i,l,"next",s)}function l(s){pr(o,r,u,i,l,"throw",s)}i(void 0)})}}function Qv(e,t,n){return t=Q(t),ah(e,yr()?Reflect.construct(t,n||[],Q(e).constructor):t.apply(e,n))}function Zv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function vr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Yv(e,t,n){return t&&vr(e.prototype,t),n&&vr(e,n),e}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 te(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?te=Reflect.get:te=function(u,o,i){var l=lh(u,o);if(!!l){var s=Object.getOwnPropertyDescriptor(l,o);return s.get?s.get.call(i||u):s.value}},te(e,t,n||e)}function Q(e){return Q=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Q(e)}function eh(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Tt(e,t)}function th(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function nh(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function rh(){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 uh(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){J(e,u,n[u])})}return e}function ih(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function oh(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ih(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function ah(e,t){return t&&(sh(t)==="object"||typeof t=="function")?t:Xv(e)}function Tt(e,t){return Tt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Tt(e,t)}function lh(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Q(e),e!==null););return e}function hr(e){return Kv(e)||nh(e)||ch(e)||rh()}function sh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ch(e,t){if(!!e){if(typeof e=="string")return Lt(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 Lt(e,t)}}function yr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(yr=function(){return!!e})()}function fh(e,t){var n,r,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:l(0),throw:l(1),return:l(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;i;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var dh=1e4,gr=function(t){eh(n,t);function n(r){Zv(this,n);var u;u=Qv(this,n,[r]),J(u,"controlType","layout"),J(u,"children",void 0),J(u,"excludes",void 0),J(u,"childrenMaxLength",void 0),J(u,"props",void 0);var o=th(this,n)?this.constructor:void 0,i=o.excludes,l=o.childrenMaxLength;return u.props=new Gv(r==null?void 0:r.props),pt(u,"children",r==null?void 0:r.children,void 0,"Designer"),u.excludes=N(i),u.childrenMaxLength=l,u}return Yv(n,[{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 i=this,l=this,s=function(){return te(Q(n.prototype),"validate",i)};return Jv(function(){return fh(this,function(a){switch(a.label){case 0:return[4,s().call(l,u,o)];case 1:return a.sent(),[4,Promise.all(l.children.map(function(f){return f.validate(u,o)}))];case 2:return a.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,o=te(Q(n.prototype),"toDataBindModel",this).call(this),i=o?[o]:[];return this.children.reduce(function(l,s){var a=s.toDataBindModel(u);if(Array.isArray(a)){var f=a.filter(function(h){return!!h});return hr(l).concat(hr(f))}return a&&l.push(a),l},i)}},{key:"toSchema",value:function(){var u=te(Q(n.prototype),"toSchema",this).call(this),o=this.children.map(function(i){var l=i.toSchema();return l});return oh(uh({},u),{children:o})}}]),n}(R);J(gr,"excludes",!1),J(gr,"childrenMaxLength",dh);function ph(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function vh(e,t,n){return t=Le(t),gh(e,mr()?Reflect.construct(t,n||[],Le(e).constructor):t.apply(e,n))}function hh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}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}function Le(e){return Le=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Le(e)}function yh(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 gh(e,t){return t&&(mh(t)==="object"||typeof t=="function")?t:ph(e)}function jt(e,t){return jt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},jt(e,t)}function mh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function mr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(mr=function(){return!!e})()}var _h=function(e){yh(t,e);function t(n,r,u){hh(this,t);var o;o=vh(this,t,[r]),ne(o,"headers",void 0),ne(o,"footers",void 0),ne(o,"pageIndex",void 0),ne(o,"pageSize",void 0),ne(o,"pageSizeOptions",void 0),ne(o,"totalCount",void 0),pt(o,"headers",r==null?void 0:r.headers,n,u),pt(o,"footers",r==null?void 0:r.footers,n);var i;o.pageIndex=(i=r==null?void 0:r.pageIndex)!==null&&i!==void 0?i:1;var l;o.pageSize=(l=r==null?void 0:r.pageSize)!==null&&l!==void 0?l:20;var s;o.pageSizeOptions=(s=r==null?void 0:r.pageSizeOptions)!==null&&s!==void 0?s:[20];var a;return o.totalCount=(a=r==null?void 0:r.totalCount)!==null&&a!==void 0?a:0,o}return t}(z);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 Eh(e){if(Array.isArray(e))return Vt(e)}function bh(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,u,o,i){try{var l=e[o](i),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,u)}function Bh(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var o=e.apply(t,n);function i(s){_r(o,r,u,i,l,"next",s)}function l(s){_r(o,r,u,i,l,"throw",s)}i(void 0)})}}function Fh(e,t,n){return t=Z(t),Ih(e,Cr()?Reflect.construct(t,n||[],Z(e).constructor):t.apply(e,n))}function Ch(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Er(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ah(e,t,n){return t&&Er(e.prototype,t),n&&Er(e,n),e}function Te(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function re(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?re=Reflect.get:re=function(u,o,i){var l=Oh(u,o);if(!!l){var s=Object.getOwnPropertyDescriptor(l,o);return s.get?s.get.call(i||u):s.value}},re(e,t,n||e)}function Z(e){return Z=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Z(e)}function wh(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 Sh(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function $h(){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(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){Te(e,u,n[u])})}return e}function Dh(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function Br(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Dh(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Ih(e,t){return t&&(Ph(t)==="object"||typeof t=="function")?t:bh(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},qt(e,t)}function Oh(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Z(e),e!==null););return e}function Fr(e){return Eh(e)||Sh(e)||Rh(e)||$h()}function Ph(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Rh(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 Cr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Cr=function(){return!!e})()}function xh(e,t){var n,r,u,o,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return o={next:l(0),throw:l(1),return:l(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;i;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var Mh=function(e){wh(t,e);function t(n){Ch(this,t);var r;return r=Fh(this,t,[n]),Te(r,"controlType","list"),Te(r,"props",void 0),r.props=new _h(r,n==null?void 0:n.props,"Designer"),r}return Ah(t,[{key:"validate",value:function(r,u){var o=this,i=this,l=function(){return re(Z(t.prototype),"validate",o)};return Bh(function(){return xh(this,function(s){switch(s.label){case 0:return[4,l().call(i,r)];case 1:return s.sent(),[4,Promise.all(i.props.headers.map(function(a){return a.validate(r,u)}))];case 2:return s.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var r=re(Z(t.prototype),"toDataBindModel",this).call(this),u=r?[r]:[],o=this.id;return this.props.headers.reduce(function(i,l){var s=l.toDataBindModel(o);if(Array.isArray(s)){var a=s.filter(function(f){return!!f});return Fr(i).concat(Fr(a))}return s&&i.push(s),i},u)}},{key:"toSchema",value:function(){var r=re(Z(t.prototype),"toSchema",this).call(this),u=this.props.headers.map(function(o){return o.toSchema()});return Br(br({},r),{props:Br(br({},this.props),{headers:u})})}}]),t}(R);Te(Mh,"controlFieldType",j.LIST);function Lh(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ar(e,t,n){return t=je(t),Th(e,$r()?Reflect.construct(t,n||[],je(e).constructor):t.apply(e,n))}function wr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a 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}function je(e){return je=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},je(e)}function Sr(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&kt(e,t)}function Th(e,t){return t&&(jh(t)==="object"||typeof t=="function")?t:Lh(e)}function kt(e,t){return kt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},kt(e,t)}function jh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function $r(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return($r=function(){return!!e})()}var Vh=function(e){Sr(t,e);function t(n){wr(this,t);var r;return r=Ar(this,t,[n]),x(r,"caption",{type:"string",required:!0,message:y.getMessage("pleaseEnterCaption")}),x(r,"width",{type:"number",required:!1,message:y.getMessage("pleaseEnterColumnWidth")}),r.width.required=n.widthType==="px",r}return t}(_t),qh=function(e){Sr(t,e);function t(n){wr(this,t);var r;r=Ar(this,t,[n]),x(r,"widthType",void 0),x(r,"width",void 0),x(r,"caption",void 0),x(r,"dataBind",void 0),x(r,"autoWidth",void 0),x(r,"fixed",void 0),x(r,"sort",void 0),x(r,"align",void 0),x(r,"colSpan",void 0),x(r,"autoHeight",void 0),x(r,"children",void 0);var u;r.width=(u=n==null?void 0:n.width)!==null&&u!==void 0?u:150,r.widthType=(n==null?void 0:n.widthType)||"auto";var o;r.caption=(o=n==null?void 0:n.caption)!==null&&o!==void 0?o:"";var i;r.fixed=(i=n==null?void 0:n.fixed)!==null&&i!==void 0?i:"none",r.autoWidth=new M0(n==null?void 0:n.autoWidth),r.dataBind=new qn(n==null?void 0:n.dataBind);var l;r.sort=(l=n==null?void 0:n.sort)!==null&&l!==void 0?l:!0,r.align=n==null?void 0:n.align,r.colSpan=n==null?void 0:n.colSpan;var s;return r.autoHeight=(s=n==null?void 0:n.autoHeight)!==null&&s!==void 0?s:!1,r}return t}(z);x(qh,"Rules",Vh);function Ut(e){return"children"in e&&ve(e.children)}function Dr(e){return"headers"in e.props&&ve(e.props.headers)}function Ve(e,t){Array.isArray(e)&&e.map(n=>{n.type===v.SUBTABLE?Ve(n.props.headers,t):Ut(n)?Ve(n==null?void 0:n.children,t):n.controlType===P.FORM&&t(n)})}const kh=[v.AMOUNT,v.CALC,v.DATE_RANGE];y.getMessage("amount"),j.DECIMAL,y.getMessage("currency"),j.VARCHAR,y.getMessage("result"),j.DECIMAL,y.getMessage("unit"),j.VARCHAR,y.getMessage("startTime"),j.TIMESTAMP,y.getMessage("endTime"),j.TIMESTAMP;function Uh(e){let t=[];return Ve(e,n=>{n.controlType===P.FORM?t.push(n):(n.type,v.SUBTABLE)}),t}function Hh(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===v.TITLE)return n;if(kh.includes(n.type)){const r=n.dataBind;Object.keys(r).forEach(u=>{const o=r[u],i=n.controlId+"_"+u;o.fieldCode=Ir(i),o.dataCode=t})}else n.dataBind.fieldCode=Ir(n.controlId),n.dataBind.dataCode=t;return n})}function Ir(e){const t="field_";return e.startsWith(t)?e:t+e}function Ht(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function Nt(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Wt(e,t,n){return cn(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(u=>u.validate(t,n)))).every(u=>u):yield e.validate(t,n)})}const Nh=[v.TITLE,v.GRID_TABLE_COLUMN,v.SUBTABLE_COLUMN,v.OPERATION_COLUMN,v.DATA_VIEW,v.LIST_VIEW,v.HEADER,v.FOOTER,v.SIMPLE_SEARCH,v.ROW,v.GRID_ROW,v.COL,v.GRID,v.DIVIDER,v.TAB_PANE,v.TAB,v.CARD_GROUP,v.ACTION_BAR,v.GRID_LAYOUT_CONTAINER,v.GRID_LAYOUT_WRAP],Wh=[v.CALC],zh={check:{id:"listPageCheckBtnId",caption:y.getMessage("view")},edit:{id:"listPageEditBtnId",caption:y.getMessage("edit")},delete:{id:"listPageDeleteBtnId",caption:y.getMessage("delete")}};function Be(e,t){var r,u,o,i,l,s,a,f,h;const n=[];if(ve(e))n.push(...e.map(m=>Be(m,t)).flat());else{const m=e.type,{caption:_,content:C}=e.props;let d;if(Nh.includes(m))m===v.OPERATION_COLUMN&&Object.entries(zh).reduce((g,[c,{caption:p,id:b}])=>{var S;const A=e.props[c];return A&&A.isShow&&g.push({controlId:b,caption:p,type:e.type,controlType:e.controlType,parentId:(S=t==null?void 0:t.controlId)!=null?S:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),g},n);else if(d={controlId:e.id,caption:_||C||e.name,type:e.type,controlType:e.controlType,parentId:(r=t==null?void 0:t.controlId)!=null?r:null,canEdit:!Wh.includes(m),canRead:!0,canHide:!0,group:"element"},t&&t.type===v.SUBTABLE&&(d.caption=t.caption+"_"+d.caption),m===v.VUE_FORM_ITEM&&(d.caption=e.props.controlExportName||e.name),(e.controlType===P.FORM||e.controlType===P.COLUMN)&&((o=(u=e.props)==null?void 0:u.dataBind)==null?void 0:o.fieldCode)!==void 0&&((l=(i=e.props)==null?void 0:i.dataBind)==null?void 0:l.fieldCode)!==""&&(d.group="field"),n.push(d),m===v.VUE_FORM_ITEM){let g="element";((a=(s=e.props)==null?void 0:s.dataBind)==null?void 0:a.fieldCode)!==void 0&&((h=(f=e.props)==null?void 0:f.dataBind)==null?void 0:h.fieldCode)!==""&&(g="field");const c=e.props.permissions;c==null||c.map(p=>{var b;d={controlId:p.key,caption:p.caption,type:e.type,controlType:e.controlType,parentId:(b=e.id)!=null?b:null,canEdit:!0,canRead:!0,canHide:!0,group:g},n.push(d)})}e.children&&n.push(...e.children.map(g=>Be(g,t)).flat()),e.controlType===P.LIST&&n.push(...e.props.headers.map(g=>Be(g,d)).flat())}return n}class ue extends ye{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new he,this.fieldTypes=j,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:n,Setting:r}=t;this.controlSettingMap.set(n.controlType,r)})}registerControl(t){this.constructor.register(t,"Designer");const{Designer:n,Setting:r}=t;this.register(n),this.registeredControlTypes.add(n.controlType),this.controlSettingMap.set(n.controlType,r)}getControlSetting(t){const n=this.controlSettingMap.get(t);return n||null}setInstance(t,n,r){try{if(!t)return;t.updateProps(n,r)}catch(u){throw u}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return cn(this,null,function*(){return Wt(...t)})}getModelBindInfoList(...t){return Nt(...t)}getSchema(...t){return Ht(...t)}listenControlHook(...t){return Jn.on(...t)}}ue.EventLogic=he;class Gh{constructor(){this.designer=new ue}ListPageBuilder(){const t=this.designer.createControlInstance(v.LIST_VIEW),n=this.designer.createControlInstance(v.SIMPLE_SEARCH),r=this.designer.createControlInstance(v.GRID_TABLE),u=this.designer.createControlInstance(v.CREATE_FORM_LIST_BUTTON),o=this.designer.createControlInstance(v.IMPORT_RECORD_LIST_BUTTON),i=this.designer.createControlInstance(v.EXPORT_LIST_BUTTON),l=this.designer.createControlInstance(v.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(o),r.children.push(i),r.children.push(l),t.children.push(n),t.children.push(r),t}ProListPageBuilder(){const t=this.designer.createControlInstance(v.LIST_VIEW);t.props.countType="async";const n=this.designer.createControlInstance(v.SIMPLE_SEARCH),r=this.designer.createControlInstance(v.GRID_TABLE),u=this.designer.createControlInstance(v.EXPORT_LIST_BUTTON),o=this.designer.createControlInstance(v.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(o),t.children.push(n),t.children.push(r),t.props.rowStyle={type:"rules",interval:{color:""},rules:[{id:"default",name:y.getMessage("approvedDocuments"),color:"theme",filters:[{ruleId:1,symbol:"op_equal",leftVariableBo:{type:"varchar",value:"process_status",name:y.getMessage("processStatus")},checked:!1,describe:"ruleLine",type:"condition",rightVariableBo:{type:"custom",value:["COMPLETE"],displayBos:[]},isLowPerformance:!1,isMoreRelation:!1}],settings:[{color:"theme",field_codes:["process_status"],type:"fontColor",scope:"col"}],script:"(SpecialMatch(data,sys,'process_status','varchar','op_equal','COMPLETE'))"}]},t}FormPageBuilder(){const t=this.designer.createControlInstance(v.DATA_VIEW),n=this.designer.createControlInstance(v.TITLE),r=this.designer.createControlInstance(v.GRID);return t.children.push(n),t.children.push(r),t}VuePageBuilder(){const t=this.designer.createControlInstance(v.GRID),n=this.designer.createControlInstance(v.VUE_PAGE);return n.props.isHideCaption=!0,n.props.controlExportName="VuePage",t.children.push(n),t}}class Or{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?Ce(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?xr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(n=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(n))})}getSettingItems(t){return t.type==="group"?t.items:t.items.reduce((n,r)=>(n.push(...r.items),n),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=Ce(t)}updateDataFieldCodeMap(t){const n=Ce(t);if(!n)return;const r=this.dataFieldCodeMap.get(n.props.datasourceBind.dataCode);if(!!r){for(const[u,o]of r.entries())if(o.id===t.id){r.delete(u);break}Rr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;Fe(this.instance,u=>{t.push(u),n.set(u.id,u),Rr(u,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function Pr(e,t,n){const{dataCode:r,fieldCode:u}=t;r&&u&&(e.has(r)||e.set(r,new Map),e.get(r).set(u,n))}function Rr(e,t){if(e.controlType===P.FORM){const n=e.props.dataBind;lr(n)?Pr(t,n,e):Object.values(n).forEach(r=>{Pr(t,r,e)})}}function Fe(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{t(r),Ut(r)&&Fe(r.children,t),Dr(r)&&Fe(r.props.headers,t)})}function zt(e){return[v.SUBTABLE,v.DATA_VIEW,v.LIST_VIEW].includes(e.type)}function Ce(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!zt(t);)t=t.parent;return t}function xr(e){const t=[e];return Fe(e,n=>{n!==e&&t.includes(n.parent)&&!zt(n)&&t.push(n)}),t}function Kh(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 Xh(e,t,n){return t&&Mr(e.prototype,t),n&&Mr(e,n),e}function Gt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var G=function(){function e(t){Kh(this,e),Gt(this,"visible",void 0),Gt(this,"expression",void 0),Gt(this,"updateParent",void 0);var n;this.visible=(n=t==null?void 0:t.visible)!==null&&n!==void 0?n:!0;var r;this.expression=(r=t==null?void 0:t.expression)!==null&&r!==void 0?r:!1;var u;this.updateParent=(u=t==null?void 0:t.updateParent)!==null&&u!==void 0?u:!1}return Xh(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function Jh(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 Qh(e,t,n){return t&&Lr(e.prototype,t),n&&Lr(e,n),e}function q(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Zh=function(){function e(t){Jh(this,e),q(this,"type",void 0),q(this,"label",void 0),q(this,"key",void 0),q(this,"component",void 0),q(this,"effect",void 0),q(this,"scopeEffect",void 0),q(this,"defaultValue",void 0),q(this,"validator",void 0),q(this,"props",void 0),q(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:Kp,this.defaultValue=t.defaultValue,this.validator=t.validator;var u;this.props=(u=t.props)!==null&&u!==void 0?u:new G,this.effectKeys=Object.keys(this.effect)}return Qh(e,[{key:"filterEffects",value:function(n){var r=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(u){var o=new RegExp("^".concat(u,"(\\.\\w+)*$"));return o.test(n)}).map(function(u){return r.effect[u]})}},{key:"callEffectFn",value:function(n,r){try{var u=n.apply(null,r);at(u)&&Object.assign(this.props,u)}catch(o){pe(`effect error
2
+ `.concat(o))}}},{key:"callEffect",value:function(n){for(var r=this,u=arguments.length,o=new Array(u>1?u-1:0),i=1;i<u;i++)o[i-1]=arguments[i];this.filterEffects(n).forEach(function(l){return r.callEffectFn(l,o)})}},{key:"callScopeEffect",value:function(){for(var n=arguments.length,r=new Array(n),u=0;u<n;u++)r[u]=arguments[u];this.callEffectFn(this.scopeEffect,r)}}]),e}();function Yh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Y(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Tr=function e(t){Yh(this,e),Y(this,"type","group"),Y(this,"title",void 0),Y(this,"required",void 0),Y(this,"items",void 0),Y(this,"tips",void 0),Y(this,"fromId",void 0),Y(this,"visible",void 0);var n;this.title=(n=t.title)!==null&&n!==void 0?n:"";var r;this.required=(r=t.required)!==null&&r!==void 0?r:!1,this.items=t.items,this.tips=t.tips,this.visible=t.items.some(function(u){var o;return(o=u.props)===null||o===void 0?void 0:o.visible})};function ey(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Kt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ty(e){return"type"in e&&e.type==="tab"}var Ae=function e(t){ey(this,e),Kt(this,"type","tab"),Kt(this,"title",void 0),Kt(this,"items",void 0),this.title=t.title,this.items=t.items};function jr(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 ny(e){if(Array.isArray(e))return e}function ry(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function uy(e,t,n){return t=qe(t),sy(e,Vr()?Reflect.construct(t,n||[],qe(e).constructor):t.apply(e,n))}function iy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qe(e){return qe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},qe(e)}function oy(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 ay(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n!=null){var r=[],u=!0,o=!1,i,l;try{for(n=n.call(e);!(u=(i=n.next()).done)&&(r.push(i.value),!(t&&r.length===t));u=!0);}catch(s){o=!0,l=s}finally{try{!u&&n.return!=null&&n.return()}finally{if(o)throw l}}return r}}function ly(){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 sy(e,t){return t&&(fy(t)==="object"||typeof t=="function")?t:ry(e)}function Xt(e,t){return Xt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Xt(e,t)}function cy(e,t){return ny(e)||ay(e,t)||dy(e,t)||ly()}function fy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function dy(e,t){if(!!e){if(typeof e=="string")return jr(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 jr(e,t)}}function Vr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Vr=function(){return!!e})()}var py=function(e){oy(t,e);function t(n){iy(this,t);var r;return r=uy(this,t,[n]),at(n)&&Object.entries(n).forEach(function(u){var o=cy(u,2),i=o[0],l=o[1];r[i]=l}),r}return t}(G);function vy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function hy(e,t,n){return t=Ue(t),my(e,qr()?Reflect.construct(t,n||[],Ue(e).constructor):t.apply(e,n))}function yy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ke(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ue(e){return Ue=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ue(e)}function gy(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 my(e,t){return t&&(_y(t)==="object"||typeof t=="function")?t:vy(e)}function Jt(e,t){return Jt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Jt(e,t)}function _y(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function qr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(qr=function(){return!!e})()}var Ey=function(e){gy(t,e);function t(n){yy(this,t);var r;r=hy(this,t,[n]),ke(r,"maxLength",void 0),ke(r,"minLength",void 0),ke(r,"placeholder",void 0),ke(r,"i18n",void 0);var u;r.maxLength=(u=n==null?void 0:n.maxLength)!==null&&u!==void 0?u:"";var o;r.minLength=(o=n==null?void 0:n.minLength)!==null&&o!==void 0?o:"";var i;r.placeholder=(i=n==null?void 0:n.placeholder)!==null&&i!==void 0?i:"";var l;return r.i18n=(l=n==null?void 0:n.i18n)!==null&&l!==void 0?l:!1,r}return t}(G);function by(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function By(e,t,n){return t=He(t),Ay(e,kr()?Reflect.construct(t,n||[],He(e).constructor):t.apply(e,n))}function Fy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Qt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function He(e){return He=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},He(e)}function Cy(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 Ay(e,t){return t&&(wy(t)==="object"||typeof t=="function")?t:by(e)}function Zt(e,t){return Zt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Zt(e,t)}function wy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function kr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(kr=function(){return!!e})()}var Sy=function(e){Cy(t,e);function t(n){Fy(this,t);var r;r=By(this,t,[n]),Qt(r,"max",void 0),Qt(r,"min",void 0),Qt(r,"placeholder",void 0);var u;r.max=(u=n==null?void 0:n.max)!==null&&u!==void 0?u:"";var o;r.min=(o=n==null?void 0:n.min)!==null&&o!==void 0?o:"";var i;return r.placeholder=(i=n==null?void 0:n.placeholder)!==null&&i!==void 0?i:"",r}return t}(G);function $y(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Dy(e,t,n){return t=Ne(t),Py(e,Ur()?Reflect.construct(t,n||[],Ne(e).constructor):t.apply(e,n))}function Iy(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 Ne(e){return Ne=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ne(e)}function Oy(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&&en(e,t)}function Py(e,t){return t&&(Ry(t)==="object"||typeof t=="function")?t:$y(e)}function en(e,t){return en=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},en(e,t)}function Ry(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ur(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Ur=function(){return!!e})()}var xy=function(e){Oy(t,e);function t(n){Iy(this,t);var r;r=Dy(this,t,[n]),Yt(r,"showType",void 0),Yt(r,"tips",void 0),Yt(r,"disabled",void 0);var u;r.showType=(u=n==null?void 0:n.showType)!==null&&u!==void 0?u:"switch";var o;r.tips=(o=n==null?void 0:n.tips)!==null&&o!==void 0?o:"";var i;return r.disabled=(i=n==null?void 0:n.disabled)!==null&&i!==void 0?i:!1,r}return t}(G);function My(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ly(e,t,n){return t=We(t),qy(e,Hr()?Reflect.construct(t,n||[],We(e).constructor):t.apply(e,n))}function Ty(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jy(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 Vy(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 qy(e,t){return t&&(ky(t)==="object"||typeof t=="function")?t:My(e)}function tn(e,t){return tn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},tn(e,t)}function ky(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Hr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Hr=function(){return!!e})()}var Uy=function(e){Vy(t,e);function t(n){Ty(this,t);var r;r=Ly(this,t,[n]),jy(r,"options",void 0);var u;return r.options=(u=n==null?void 0:n.options)!==null&&u!==void 0?u:[],r}return t}(G);function Hy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ny(e,t,n){return t=ze(t),Gy(e,Wr()?Reflect.construct(t,n||[],ze(e).constructor):t.apply(e,n))}function Wy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Nr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ze(e){return ze=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ze(e)}function zy(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 Gy(e,t){return t&&(Ky(t)==="object"||typeof t=="function")?t:Hy(e)}function nn(e,t){return nn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},nn(e,t)}function Ky(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Wr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Wr=function(){return!!e})()}var Xy=function(e){zy(t,e);function t(n){Wy(this,t);var r;r=Ny(this,t,[n]),Nr(r,"placeholder",void 0),Nr(r,"options",void 0);var u;r.placeholder=(u=n==null?void 0:n.placeholder)!==null&&u!==void 0?u:"";var o;return r.options=(o=n==null?void 0:n.options)!==null&&o!==void 0?o:[],r}return t}(G);function Jy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Qy(e,t,n){return t=Ge(t),e5(e,Gr()?Reflect.construct(t,n||[],Ge(e).constructor):t.apply(e,n))}function Zy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function zr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ge(e){return Ge=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ge(e)}function Yy(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&rn(e,t)}function e5(e,t){return t&&(t5(t)==="object"||typeof t=="function")?t:Jy(e)}function rn(e,t){return rn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},rn(e,t)}function t5(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Gr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Gr=function(){return!!e})()}var n5=function(e){Yy(t,e);function t(n){Zy(this,t);var r;r=Qy(this,t,[n]),zr(r,"options",void 0),zr(r,"showType",void 0);var u;r.options=(u=n==null?void 0:n.options)!==null&&u!==void 0?u:[];var o;return r.showType=(o=n==null?void 0:n.showType)!==null&&o!==void 0?o:"outline",r}return t}(G);function r5(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function u5(e,t,n){return t=Ke(t),a5(e,Kr()?Reflect.construct(t,n||[],Ke(e).constructor):t.apply(e,n))}function i5(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ie(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ke(e){return Ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ke(e)}function o5(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 a5(e,t){return t&&(l5(t)==="object"||typeof t=="function")?t:r5(e)}function un(e,t){return un=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},un(e,t)}function l5(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Kr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Kr=function(){return!!e})()}var s5=function(e){o5(t,e);function t(n){i5(this,t);var r;r=u5(this,t,[n]),ie(r,"maxLength",void 0),ie(r,"minLength",void 0),ie(r,"placeholder",void 0),ie(r,"i18n",void 0),ie(r,"maxRows",void 0),ie(r,"minRows",void 0);var u;r.maxLength=(u=n==null?void 0:n.maxLength)!==null&&u!==void 0?u:"";var o;r.minLength=(o=n==null?void 0:n.minLength)!==null&&o!==void 0?o:"";var i;r.placeholder=(i=n==null?void 0:n.placeholder)!==null&&i!==void 0?i:"";var l;r.maxRows=(l=n==null?void 0:n.maxRows)!==null&&l!==void 0?l:"";var s;r.minRows=(s=n==null?void 0:n.minRows)!==null&&s!==void 0?s:"";var a;return r.i18n=(a=n==null?void 0:n.i18n)!==null&&a!==void 0?a:!1,r}return t}(G);function c5(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function on(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){c5(e,u,n[u])})}return e}function f5(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function an(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):f5(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function d5(e,t){switch(e){case"input":return new Ey(t);case"textarea":return new s5(t);case"input-number":return new Sy(t);case"switch":return new xy(t);case"radio":return new n5(t);case"checkbox":return new Uy(t);case"select":return new Xy(t);default:return new py(t)}}function p5(e){return function(t){var n=e.get(t);if(!!n)return new Zh(an(on({},n),{props:d5(n.component,"props"in n?n.props:void 0)}))}}function v5(e){var t=e.fields.reduce(function(u,o){return u.set(o.key,o),u},new Map);function n(u){return new Tr(an(on({},u),{items:u.items.map(p5(t)).filter(Boolean)}))}function r(u){return u.map(n)}return e.groups.map(function(u){return ty(u)?new Ae(an(on({},u),{items:r(u.items)})):n(u)})}let ln="";class Xr extends On{constructor(t){super(),this.isMounted=!1,this.id=et(8),this.__pluginsApplied=!1,this.getSchema=Ht,this.getModelBindInfoList=Nt,this.generatePermissions=Be,this.$options=Object.freeze(t);const{autoMount:n=!1,Designer:r=ue,schema:u,mode:o="form",store:i={},messagesI18n:l,language:s=pn}=this.$options;y.setLocale(s,l),this.eventLogic=new he,this.designer=new r,this.store=new Or(le({instance:this.designer.createControl(Array.isArray(u)?u:[u])},i)),this.mode=o,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{ln=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this),ln=""}catch(r){pe(`${ln||t.constructor.name} Plugin apply Error
3
+ ${r}`)}}),this.__pluginsApplied=!0)}emit(t,...n){return super.emit(t,n)}on(t,n){return super.on(t,n)}setInstances(t,n){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],n))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var u,o;const t=this.store.selected;if(!t)return;let n=this.getControlSetting(t.type);if(((u=t.parent)==null?void 0:u.controlType)===P.WRAP){const i=this.getControlSetting((o=t.parent)==null?void 0:o.type);n=this.concatSetting(n,i,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 o,i,l,s,a,f,h,m;let u=t;if(((o=t[0])==null?void 0:o.type)==="tab"&&((i=n[0])==null?void 0:i.type)==="tab"){const _=t,C=n.slice(0);u=_.map((d,g)=>{const c=new Ae(d),p=C.findIndex(A=>A.title===d.title);if(p===-1)return c;const b=C.splice(p,1)[0];return b&&(c.items=[...this.formatGroupSetting(b.items,r),...c.items]),c}),C.length&&(u=[...u,...C.map(d=>this.formatGroupSetting(d,r))])}else if(((l=t[0])==null?void 0:l.type)==="group"&&((s=n[0])==null?void 0:s.type)==="group"){const _=t,C=n;u=[...this.formatGroupSetting(C,r),..._]}else if(((a=t[0])==null?void 0:a.type)==="tab"&&((f=n[0])==null?void 0:f.type)==="group"){const _=t,C=n;u=_.map((d,g)=>{const c=new Ae(d);return g===0&&(c.items=[...this.formatGroupSetting(C,r),...c.items]),c})}else if(((h=t[0])==null?void 0:h.type)==="group"&&((m=n[0])==null?void 0:m.type)==="tab"){const _=t;u=n.map((d,g)=>{const c=new Ae(d);return g===0&&(c.items=[...c.items,...this.formatGroupSetting(_,r)]),c})}return u}formatGroupSetting(t,n){if(ve(t))return t.map(r=>{const u=new Tr(r);return u.fromId=n,u});{const r=new Ae(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?v5(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 s;if(t===null)return;const n=this.getInstance(t);if(!n)return;const r=this.store.movingInstanceOldDataScopeParent,u=Ce(n),o=this.store.movingInstanceOldParent,i=n.parent;this.store.setMovingInstance(null),n.id!==((s=this.store.selected)==null?void 0:s.id)?this.selectInstance(n):this.store.setSelectInstance(n),this.store.getFlatInstances();const l={from:r,current:u,oldParent:o,newParent:i};this.callSelectedScopeEffect(l),o?this.emit("moved",le({},l)):this.emit("joined",le({},l))}createInstance(t,n){return this.designer.createControlInstance(t,n)}getInstance(t){return typeof t=="string"?this.store.instanceIdMap.get(t):t}getInstances(){return this.store.flatInstances}getInstancesFromType(t){return this.getInstances().filter(n=>n.type===t)}getDataScopeInstances(){return this.store.selectedDataScopeFlatInstances}getDataScopeInstancesFromType(t){return this.getDataScopeInstances().filter(n=>n.type===t)}updateInstancePropValue(t,n,r,u){var i;!An(t.props,n,r)||(n.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((i=this.store.selected)==null?void 0:i.id)&&this.callSelectedEffect(n,u),this.emit("updated",{instance:t,propName:n,value:r}))}updateInstanceProps(t,n,r,u=""){Object.entries(n).forEach(([o,i])=>{const l=`${u?u+".":""}${o}`;v0(i)?this.updateInstanceProps(t,i,r,l):this.updateInstancePropValue(t,l,i,r)})}setInstance(t,n,r,u){lt(n)?this.updateInstancePropValue(t,String(n),r,u):this.updateInstanceProps(t,n,r)}removeInstance(t){const n=t.parent;if(!n)return;const r=n.controlType===P.LIST&&n.props.headers.includes(t)?n.props.headers:n.children,u=r.findIndex(o=>o===t);u>-1&&r.splice(u,1),this.store.getFlatInstances(),this.emit("removed",{instance:t,index:u,parent:n})}replaceInstance(t,n){const r=t.parent;if(!r)return;const u=r.controlType===P.LIST&&r.props.headers.includes(t)?r.props.headers:r.children,o=u.findIndex(i=>i===t);o>-1&&u.splice(o,1,n),this.store.getFlatInstances()}updateInstanceType(t,n){const r=t.toSchema(),u=this.createInstance(n,{id:r.id,props:r.props});if(!u){$e(`can\u2018t update instance type to ${n}`);return}return u}validate(t,n){return Wt(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!h0(lt(t)?t:t.type)}static register(...t){return ue.register(...t),this}static judgeControlIsRegistered(t){return ue.staticRegisteredTypes.has(t.Designer.controlType)}judgeControlIsRegistered(t){return this.designer.registeredControlTypes.has(t.Designer.controlType)}register(...t){return this.designer.registerControl(t[0]),this}assertInstance(t,n){return lt(n)?t.type===n:n.includes(t.type)}getInstanceInListControl(t){let n=t;for(;n;){if(n.controlType===P.LIST)return!0;n=n.parent}return!1}getInstanceParentControl(t,n){if(!!t.parent)return this.assertInstance(t.parent,n)?t.parent:this.getInstanceParentControl(t.parent,n)}callSelectedEffect(t,n={}){this.store.selectedInstanceSettingItems.forEach(r=>{r.callEffect(t,this,le({control:this.store.selected},n))})}callSelectedScopeEffect(t={}){this.store.selectedInstanceSettingItems.forEach(n=>{n.callScopeEffect(this,le({control:this.store.selected},t))})}}Xr.EventLogic=he,B.Builder=Gh,B.Designer=ue,B.Driven=Xr,B.Store=Or,B.checkSchema=Wt,B.fillModelBindInfoListFieldCode=Hh,B.findInstanceDataScopeParent=Ce,B.generatePermissions=Be,B.getDataScopeFlatInstances=xr,B.getMasterFormControls=Uh,B.getModelBindInfoList=Nt,B.hasChildrenControl=Ut,B.hasHeaderControl=Dr,B.isDataScopeInstance=zt,B.loop=Fe,B.loopFormControl=Ve,B.toSchema=Ht,Object.defineProperty(B,"__esModule",{value:!0})});
@@ -15,6 +15,8 @@ interface DrivenOptions {
15
15
  mode?: string;
16
16
  schema: SchemaBaseType | SchemaBaseType[];
17
17
  store?: Omit<StoreOptions, 'instance'>;
18
+ messagesI18n?: Object;
19
+ language?: string;
18
20
  }
19
21
  /**
20
22
  * 设计器驱动
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-driven",
3
- "version": "2.23.0-beta.1",
3
+ "version": "2.23.0-beta.11",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -26,10 +26,10 @@
26
26
  "postpublish": "node ../../scripts/postpublish.js"
27
27
  },
28
28
  "dependencies": {
29
- "@byteluck-fe/model-driven-controls": "2.23.0-beta.1",
30
- "@byteluck-fe/model-driven-core": "2.22.1-beta.2",
31
- "@byteluck-fe/model-driven-settings": "2.22.1-beta.2",
32
- "@byteluck-fe/model-driven-shared": "2.22.1-beta.2"
29
+ "@byteluck-fe/model-driven-controls": "2.23.0-beta.11",
30
+ "@byteluck-fe/model-driven-core": "2.23.0-beta.10",
31
+ "@byteluck-fe/model-driven-settings": "2.23.0-beta.11",
32
+ "@byteluck-fe/model-driven-shared": "2.23.0-beta.10"
33
33
  },
34
- "gitHead": "73168cf7a11e0aa2b6b060545ff23e194a041fe1"
34
+ "gitHead": "83d70862c8742ec460426b553dfce35bfc1be34d"
35
35
  }