@byteluck-fe/model-driven-driven 2.23.0-beta.13 → 2.23.0-beta.14

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.
@@ -41,10 +41,6 @@ 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
- }
48
44
  function _class_call_check(instance, Constructor) {
49
45
  if (!(instance instanceof Constructor)) {
50
46
  throw new TypeError("Cannot call a class as a function");
@@ -138,12 +134,28 @@ function _unsupported_iterable_to_array(o, minLen) {
138
134
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
139
135
  }
140
136
  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;
141
140
  try {
142
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
143
- } catch (_) {}
144
- return (_is_native_reflect_construct = function() {
145
- return !!result;
146
- })();
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
+ };
147
159
  }
148
160
  function _ts_generator(thisArg, body) {
149
161
  var f, y, t, g, _ = {
@@ -247,12 +259,16 @@ import { toSchema, getModelBindInfoList, checkSchema } from './utils';
247
259
  var Designer = /*#__PURE__*/ function _target(RegisterControls) {
248
260
  "use strict";
249
261
  _inherits(Designer, RegisterControls);
262
+ var _super = _create_super(Designer);
250
263
  function Designer() {
251
264
  _class_call_check(this, Designer);
252
265
  var _this;
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());
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());
256
272
  (_instanceof(this, Designer) ? this.constructor : void 0).staticControls.forEach(function(control) {
257
273
  var _$Designer = control.Designer, Setting = control.Setting;
258
274
  _this.controlSettingMap.set(_$Designer.controlType, Setting);
@@ -263,7 +279,6 @@ var Designer = /*#__PURE__*/ function _target(RegisterControls) {
263
279
  {
264
280
  key: "registerControl",
265
281
  value: function registerControl(control) {
266
- ;
267
282
  this.constructor.register(control, 'Designer');
268
283
  var DesignerClass = control.Designer, Setting = control.Setting;
269
284
  this.register(DesignerClass);
@@ -15,10 +15,6 @@ 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
- }
22
18
  function _class_call_check(instance, Constructor) {
23
19
  if (!(instance instanceof Constructor)) {
24
20
  throw new TypeError("Cannot call a class as a function");
@@ -173,12 +169,28 @@ function _unsupported_iterable_to_array(o, minLen) {
173
169
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
174
170
  }
175
171
  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;
176
175
  try {
177
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
178
- } catch (_) {}
179
- return (_is_native_reflect_construct = function() {
180
- return !!result;
181
- })();
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
+ };
182
194
  }
183
195
  import { CONTROL_BASE_TYPE, error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from '@byteluck-fe/model-driven-shared';
184
196
  import { findInstanceDataScopeParent, Store } from './Store';
@@ -194,23 +206,37 @@ var applyingPluginName = '';
194
206
  * */ var Driven = /*#__PURE__*/ function(Watcher) {
195
207
  "use strict";
196
208
  _inherits(Driven, Watcher);
209
+ var _super = _create_super(Driven);
197
210
  function Driven(options) {
198
211
  _class_call_check(this, Driven);
199
212
  var _this;
200
- _this = _call_super(this, Driven), _define_property(_this, "mode", void 0), _define_property(_this, "isMounted", false), _define_property(_this, "id", genNonDuplicateId(8)), /**
213
+ _this = _super.call(this);
214
+ _define_property(_assert_this_initialized(_this), "mode", void 0);
215
+ _define_property(_assert_this_initialized(_this), "isMounted", false);
216
+ _define_property(_assert_this_initialized(_this), "id", genNonDuplicateId(8));
217
+ /**
201
218
  * 控件可选的事件
202
- * */ _define_property(_this, "eventLogic", void 0), /**
219
+ * */ _define_property(_assert_this_initialized(_this), "eventLogic", void 0);
220
+ /**
203
221
  * 处理数据存储,存放模型等
204
- * */ _define_property(_this, "store", void 0), /**
222
+ * */ _define_property(_assert_this_initialized(_this), "store", void 0);
223
+ /**
205
224
  * 额外参数存储
206
- */ _define_property(_this, "externalParams", void 0), /**
225
+ */ _define_property(_assert_this_initialized(_this), "externalParams", void 0);
226
+ /**
207
227
  * 处理instance,和schema存储
208
- * */ _define_property(_this, "designer", void 0), /**
228
+ * */ _define_property(_assert_this_initialized(_this), "designer", void 0);
229
+ /**
209
230
  * 插件数组
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);
231
+ * */ _define_property(_assert_this_initialized(_this), "__plugins", void 0);
232
+ _define_property(_assert_this_initialized(_this), "__pluginsApplied", false);
233
+ _define_property(_assert_this_initialized(_this), "$options", void 0);
234
+ // TODO 拿到schema
235
+ _define_property(_assert_this_initialized(_this), "getSchema", toSchema);
236
+ // TODO 拿到model_bind_info_list
237
+ _define_property(_assert_this_initialized(_this), "getModelBindInfoList", getModelBindInfoList);
238
+ // TODO 拿到permission_controls
239
+ _define_property(_assert_this_initialized(_this), "generatePermissions", generatePermissions);
214
240
  _this.$options = Object.freeze(options);
215
241
  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
242
  _this.eventLogic = new EventLogic();
package/dist/esm/utils.js CHANGED
@@ -217,7 +217,6 @@ export function getMasterFormControls(controls) {
217
217
  dataBind.dataCode = dataCode;
218
218
  });
219
219
  } else {
220
- ;
221
220
  item.dataBind.fieldCode = fieldCodeBeforeAddPrefix(item.controlId);
222
221
  item.dataBind.dataCode = dataCode;
223
222
  }
package/dist/index.umd.js CHANGED
@@ -1,3 +1,3 @@
1
- var _5=Object.defineProperty;var Yr=Object.getOwnPropertySymbols;var E5=Object.prototype.hasOwnProperty,b5=Object.prototype.propertyIsEnumerable;var eu=(B,I,O)=>I in B?_5(B,I,{enumerable:!0,configurable:!0,writable:!0,value:O}):B[I]=O,le=(B,I)=>{for(var O in I||(I={}))E5.call(I,O)&&eu(B,O,I[O]);if(Yr)for(var O of Yr(I))b5.call(I,O)&&eu(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",tu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",nu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",ru="\u8BF7\u7ED1\u5B9A\u8868\u5355",uu="\u8BF7\u7ED1\u5B9A\u5217\u8868",iu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",ou="\u8BF7\u8F93\u5165\u663E\u793A\u503C",au="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",lu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",su="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",cu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",fu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",du="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",pu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",vu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",hu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",yu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",mu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",gu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",_u="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",Eu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",bu="\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",Fu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Cu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Au="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",wu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Su="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Du="\u8BF7\u7ED1\u5B9A\u670D\u52A1",$u="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Iu="\u8BF7\u9009\u62E9\u7701",Ou="\u8BF7\u9009\u62E9\u5E02",Pu="\u8BF7\u9009\u62E9\u533A",Ru="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",xu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Lu="\u8BF7\u8F93\u5165\u5217\u5BBD",Mu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Tu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",ju="\u8BF7\u9009\u62E9\u63A7\u4EF6",Vu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",qu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",ku="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Uu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Hu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Wu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Nu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",zu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Gu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Ku="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Xu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ju="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Qu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Zu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Yu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ei="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ti="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ni="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ri="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ui="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ii="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",oi="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",ai="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",li="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",si="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",ci="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",fi="\u6279\u91CF\u5220\u9664",di="\u6279\u91CF\u6253\u5370",pi="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",vi="\u6309\u94AE",hi="\u521B\u5EFA\u5355\u636E",yi="\u4EEA\u8868\u76D8",mi="\u5206\u5272\u7EBF",gi="\u5BFC\u51FA",_i="\u8868\u5355\u64CD\u4F5C",Ei="\u5BFC\u5165",bi="\u53D1\u7968\u8BC6\u522B",Bi="\u94FE\u63A5",Fi="\u5217\u8868\u9009\u62E9",Ci="\u5217\u8868\u89C6\u56FE",Ai="\u64CD\u4F5C\u6309\u94AE",wi="\u5206\u9875",Si="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Di="\u8BF4\u660E\u6587\u5B57",$i="\u6587\u5B57\u8BC6\u522B",Ii="\u6807\u9898\u7EC4\u4EF6",Oi="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Pi="\u6570\u7EC4",Ri="\u81EA\u52A8\u7F16\u53F7",xi="\u81EA\u5B9A\u4E49",Li="\u6570\u503C",Mi="\u90E8\u95E8",Ti="\u4EBA\u5458",ji="\u9644\u4EF6",Vi="\u56FE\u7247",qi="\u5730\u5740",ki="\u64CD\u4F5C",Ui="\u5E8F\u53F7",Hi="\u4EBA\u5458",Wi="\u957F\u6587\u672C",Ni="\u65E5\u671F\u533A\u95F4",zi="\u65E5\u671F",Gi="\u77ED\u6587\u672C",Ki="\u6362\u884C\u5BB9\u5668Wrap",Xi="\u8868\u683C",Ji="\u660E\u7EC6\u5B50\u8868",Qi="\u5730\u5740",Zi="\u91D1\u989D",Yi="\u8BA1\u7B97\u516C\u5F0F",eo="\u591A\u9009",to="\u7535\u5B50\u7B7E\u7AE0",no="\u5355\u884C\u6587\u672C",ro="\u6570\u5B57",uo="\u4E1A\u52A1\u7EC4\u7EC7",io="\u5355\u9009",oo="\u5BCC\u6587\u672C",ao="\u8BC4\u5206",lo="\u6570\u5B57\u533A\u95F4",so="\u4E0B\u62C9\u5355\u9009",co="\u4E0B\u62C9\u591A\u9009",fo="\u5173\u8054\u5355\u9009",po="\u591A\u884C\u6587\u672C",vo="\u6811",ho="Vue\u5BB9\u5668",yo="Vue\u9875\u9762",mo="\u5728\u7EBF\u6587\u6863",go="\u6309\u94AE\u64CD\u4F5C\u680F",_o="\u9AD8\u7EA7\u5BB9\u5668",Eo="\u5206\u7EC4",bo="\u6805\u683C\u5217",Bo="\u6570\u636E\u5BB9\u5668",Fo="\u753B\u5E03",Co="\u6362\u884C\u5BB9\u5668",Ao="\u6805\u683C\u7B49\u5206\u884C",wo="\u5217\u8868\u5BB9\u5668",So="\u81EA\u7531\u9875\u9762",Do="\u5B9A\u4F4D\u5B50\u5BB9\u5668",$o="\u5B9A\u4F4D\u5BB9\u5668",Io="\u6805\u683C\u5E03\u5C40",Oo="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Po="\u660E\u7EC6\u5B50\u8868\u884C",Ro="\u6807\u7B7E\u9875",xo="\u6807\u7B7E\u5355\u5143",Lo="\u5DE5\u5177\u680F",Mo="\u6279\u91CF\u63D0\u4EA4",To="\u5BFC\u51FA\u8BB0\u5F55",jo="\u5217\u8868\u89C6\u56FE",Vo="\u7ED3\u675F\u65F6\u95F4",qo="\u5F00\u59CB\u65F6\u95F4",ko="\u5355\u4F4D",Uo="\u7ED3\u679C",Ho="\u5E01\u79CD",Wo="\u7ED3\u675F\u65E5\u671F",No="\u5F00\u59CB\u65E5\u671F",zo="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",Go="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",Ko="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",Xo="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",Jo="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",Qo="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",Zo="\u8BF7\u9009\u62E9",Yo="\u8BF7\u9009\u62E9\u7EC4\u7EC7",ea="\u8BF7\u9009\u62E9\u90E8\u95E8",ta="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",na="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",ra="\u8BF7\u9009\u62E9\u5730\u5740",ua="\u5F39\u7A97\u786E\u8BA4\u65F6",ia="\u6807\u7B7E\u9875\u5207\u6362\u65F6",oa="\u884C\u9009\u4E2D\u65F6",aa="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",la="\u884C\u5220\u9664\u524D",sa="\u884C\u70B9\u51FB\u65F6",ca="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",fa="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",da="\u91CD\u547D\u540D\u65F6",pa="\u4FDD\u5B58\u6587\u4EF6\u65F6",va="\u6253\u5F00\u6587\u4EF6\u65F6",ha="\u83B7\u53D6\u7126\u70B9\u65F6",ya="\u5931\u53BB\u7126\u70B9\u65F6",ma="\u7528\u6237\u8F93\u5165\u65F6",ga="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",_a="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",Ea="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",ba="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",Ba="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Fa="\u641C\u7D22\u65F6",Ca="\u503C\u53D1\u751F\u53D8\u5316\u65F6",Aa="\u6267\u884C\u5B8C\u6210\u65F6",wa="\u70B9\u51FB\u65F6",Sa="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",Da="\u8BF7\u8F93\u5165\u65E5\u671F",$a="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Ia="\u8BF7\u8F93\u5165",Oa="\u9ED8\u8BA4\u6A21\u7248",Pa="\u5DE6\u53F3\u5E03\u5C40",Ra="\u4E0A\u4E0B\u5E03\u5C40",xa="\u53EA\u8BFB",La="\u5FC5\u586B",Ma="\u63D0\u793A\u6587\u5B57",Ta="\u9690\u85CF\u6807\u9898",ja="\u6807\u9898\u5FC5\u586B",Va="\u7EC4\u7EC7\u5F62\u6001",qa="\u4E1A\u52A1\u7C7B\u578B",ka="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Ua="\u9690\u85CF",Ha="\u6D41\u7A0B\u72B6\u6001",Wa="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Na="\u5220\u9664",za="\u7F16\u8F91",Ga="\u67E5\u770B",Ka="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",Xa="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",Ja="\u5145\u6EE1\u6574\u884C",Qa="\u6700\u5C0F\u503C",Za="\u6700\u5927\u503C",Ya="\u65B0\u5EFA\u6587\u6863",el="\u91CD\u7F6E",tl="\u67E5\u8BE2",nl="\u660E\u7EC6",rl="\u6253\u5370",ul="\u4FDD\u5B58\u8349\u7A3F",il="\u4FDD\u5B58",ol="\u53D6\u6D88",al="\u4E0A\u4F20\u56FE\u7247",ll="\u53D1\u8D77\u7B7E\u7F72",sl="\u4E0A\u4F20\u9644\u4EF6",cl="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",fl="\u5F15\u7528\u5217\u8868",dl={isNotNumber:I,isNotString:O,isNotObject:Xe,isNotArray:we,isNotBoolean:Je,runtimeRequired:Qe,pleaseEnterCaption:se,pleaseEnterCaptionTip:H,pleaseEnterRowCaption:ce,pleaseEnterPlaceholder:tu,pleaseEnterFieldCode:nu,pleaseEnterForm:ru,pleaseEnterList:uu,pleaseEnterProcess:iu,pleaseEnterLabel:ou,pleaseEnterValue:au,bizKeyNotBindFiled:lu,pleaseSelectOneField:su,pleaseEnterNumberRange:cu,pleaseEnterAValueGreaterThanMin:fu,pleaseEnterAValueLessThanMax:du,numberRangeSetError:pu,stringRangeError:vu,attachmentMaxSize:hu,pleaseEnterTotalScoreSetting:yu,theTotalScoreMustNotBeLessThan1:mu,scoreDefaultValueRange:gu,attachmentLimitError:_u,PleaseReselectTheOptionalQuantity:Eu,TheMaximumLengthIsGreaterThanTheMinimumLength:bu,TheMinimumLengthIsGreaterThanTheMaximumLength:Bu,PleaseSelectTheCorrectOptionSettings:Fu,optionIdIsRepeat:Cu,optionIsRequired:Au,pleaseEnterDataCode:wu,pleaseEnterValueFieldCode:Su,pleaseEnterSvcCode:Du,pleaseBindAtLeastOneDisplayValue:$u,pleaseSelectProvince:Iu,pleaseSelectCity:Ou,pleaseSelectDistrict:Pu,limitRowsCannotBeLessThan0:Ru,TheNumberOfRowsCannotBeLessThanMinRows:xu,pleaseEnterColumnWidth:Lu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Mu,pleaseCompleteAllRulesAndConditions:Tu,pleaseSelectControl:ju,pleaseSelectAtLeastOneColumn:Vu,pleaseSelectFillBackMode:qu,pleaseSelectDashboard:ku,rootNodeIsRequired:Uu,theViewNameCannotBeEmpty:Hu,pleaseSelectOcrType:Wu,pleaseSelectAtLeastOneFieldToFillIn:Nu,pleaseChooseAtLeastOne:zu,pleaseEnterButtonContent:Gu,pleaseEnterDataCodeInDataSetting:Ku,pleaseEnterValueFieldCodeInDataSetting:Xu,pleaseEnterSvcCodeInDataSetting:Ju,pleaseBindAtLeastOneDisplayValueInDataSetting:Qu,rootNodeIsRequiredInDataSetting:Zu,pleaseEnterMaxHeight:Yu,pleaseEnterWatermark:ei,pleaseEnterFileName:ti,pleaseUploadAtLeastOnePrintTemplate:ni,pleaseAssignBusiness:ri,pleaseAssignExternal:ui,pleaseEnterAliasCode:ii,pleaseSelectDataCode:oi,pleaseSelectSvcCode:ai,pleaseSelectJoinFieldCode:li,pleaseSelectMainFieldCode:si,pleaseSelectSortFieldCode:ci,batchDeleteButton:fi,batchPrintListButton:di,batchPrintRecordList:pi,button:vi,createFormListButton:hi,dashboard:yi,divider:mi,exportListButton:gi,formSelectButton:_i,importRecordListButton:Ei,invoiceCheckButton:bi,link:Bi,listSelectButton:Fi,ListViewSelect:Ci,operationButton:Ai,pagination:wi,submissionRecordListButton:Si,text:Di,textOcrButton:$i,title:Ii,approvalStatusColumn:Oi,array:Pi,autoNumber:Ri,custom:xi,decimal:Li,department:Mi,employee:Ti,file:ji,image:Vi,location:qi,operation:ki,order:Ui,people:Hi,long:Wi,timescope:Ni,timestamp:zi,varchar:Gi,gridLayoutWrap:Ki,gridTable:Xi,subTable:Ji,address:Qi,amount:Zi,calc:Yi,checkBox:eo,electronicSignature:to,input:no,number:ro,organizationSelection:uo,radio:io,richText:oo,score:ao,searchNumberRange:lo,select:so,selectMultiple:co,selectRelation:fo,textarea:po,tree:vo,vueFormItem:ho,vuePage:yo,WPS:mo,actionBar:go,advancedContainer:_o,cardGroup:Eo,col:bo,dataView:Bo,grid:Fo,gridLayoutContainer:Co,gridRow:Ao,listView:wo,page:So,position:Do,positioningContainer:$o,row:Io,subtableColumn:Oo,subtableRow:Po,tab:Ro,tabPane:xo,toolbox:Lo,batchSubmissionListButton:Mo,exportRecordListButton:To,listViewSelect:jo,endTime:Vo,startTime:qo,unit:ko,result:Uo,currency:Ho,endDate:Wo,startDate:No,pleaseSelectCompanyName:zo,pleaseSelectPhoneOrEmail:Go,pleaseSelectSignType:Ko,pleaseSelectSigner:Xo,pleaseSelectOnlyOne:Jo,pleaseSelectSignFile:Qo,pleaseSelect:Zo,pleaseSelectOrg:Yo,pleaseSelectDept:ea,pleaseSelectEndDate:ta,pleaseSelectStartDate:na,pleaseChooseAddress:ra,modalConfirm:ua,tabChange:ia,rowSelected:oa,listDataImport:aa,rowDelete:la,rowClick:sa,cellRender:ca,onClickBtn:fa,rename:da,onSaveFile:pa,onOpenFile:va,onFocus:ha,onBlur:ya,onInput:ma,listDataAdd:ga,listDataDelete:_a,listDataBack:Ea,listDataCreate:ba,listDataChange:Ba,search:Fa,valueChange:Ca,finished:Aa,click:wa,pleaseEnterNameorEmail:Sa,pleaseEnterDate:Da,pleaseEnterAutonumber:$a,pleaseEnter:Ia,defaultTemplate:Oa,left:Pa,top:Ra,default:"\u666E\u901A",readonly:xa,required:La,textTip:Ma,hideCaption:Ta,titleRequired:ja,organizationalForm:Va,businessType:qa,deleteConfirm:ka,hide:Ua,processStatus:Ha,approvedDocuments:Wa,delete:Na,edit:za,view:Ga,loadCtrlErrorTip:Ka,loadCtrlError:Xa,fullLine:Ja,min:Qa,max:Za,createWPS:Ya,reset:el,query:tl,detailed:nl,print:rl,draft:ul,save:il,cancel:ol,uploadImg:al,signature:ll,uploadFile:sl,linkContent:cl,referenceList:fl},pl="Please enter a number",vl="Please enter a string",hl="Please enter an object",yl="Please enter an array",ml="Please enter a boolean",gl="{caption} Required",_l="Please enter the title",El="Please enter the bubble prompt",bl="Please enter the row title",Bl="Please enter the prompt text",Fl="Please bind data items",Cl="Please bind the form",Al="Please bind the list",wl="Please bind the process",Sl="Please enter the displayed value",Dl="Please enter the stored value",$l="The document number is not bound to the data item",Il="Please select at least one display field",Ol="Please enter a value greater than or equal to {min} and less than or equal to {max}",Pl="Please enter a value greater than or equal to {min}",Rl="Please enter a value less than or equal to {max}",xl="The value range is set incorrectly",Ll="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Ml="The attachment size must be between 0MB and 1000MB",Tl="Please fill in the total score setting",jl="The total score cannot be less than 1",Vl="The default value must be between {min} and {max}",ql="The number of attachment uploads exceeds the limit",kl="Please re-select the optional quantity",Ul="The maximum length of the control must be greater than the minimum length",Hl="The minimum length of the control must be less than the maximum length",Wl="Please select the correct option setting",Nl="Option ID cannot be repeated",zl="Please enter at least one option",Gl="Please bind the data source",Kl="Please bind the stored value",Xl="Please bind the service",Jl="At least one display value must be bound",Ql="Please select a province",Zl="Please select a city",Yl="Please select a district",es="The minimum number of lines to fill in cannot be less than 0",ts="The number of rows cannot be less than {min} rows",ns="Please enter the column width",rs="Please set the logical relationship of all rule conditions",us="Please complete all rules and conditions",is="please select control",os="Please select the dashboard",as="View name cannot be empty",ls="Please select recognition type",ss="Please select at least one field to fill in",cs="Please select at least one",fs="Please enter the button title",ds="Please bind the business model in the data settings",ps="Please bind storage values in data settings",vs="Please bind the service in the data settings",hs="Please bind at least one display value in the data settings",ys="Please select the root node in the data settings",ms="Please enter the maximum height",gs="The input content cannot be empty",_s="Watermark cannot be empty",Es="File name cannot be empty",bs="Please upload at least one printing template!\uFF01",Bs="Please select a specific business department",Fs="Please select a specified external organization",Cs="Please enter a sub table alias",As="Please select the associated table to set the business model",ws="Please select the association table to set the binding service",Ss="Select associated sub table fields",Ds="Please select the associated main table field",$s="Please select the sort field",Is="\u6279\u91CF\u5220\u9664",Os="\u6279\u91CF\u6253\u5370",Ps="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Rs="\u6309\u94AE",xs="\u521B\u5EFA\u5355\u636E",Ls="\u4EEA\u8868\u76D8",Ms="\u5206\u5272\u7EBF",Ts="\u5BFC\u51FA",js="\u8868\u5355\u64CD\u4F5C",Vs="\u5BFC\u5165",qs="\u53D1\u7968\u8BC6\u522B",ks="\u94FE\u63A5",Us="\u5217\u8868\u9009\u62E9",Hs="\u5217\u8868\u89C6\u56FE",Ws="\u64CD\u4F5C\u6309\u94AE",Ns="\u5206\u9875",zs="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Gs="\u8BF4\u660E\u6587\u5B57",Ks="\u6587\u5B57\u8BC6\u522B",Xs="\u6807\u9898\u7EC4\u4EF6",Js="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Qs="\u6570\u7EC4",Zs="\u81EA\u52A8\u7F16\u53F7",Ys="\u81EA\u5B9A\u4E49",ec="\u6570\u503C",tc="\u90E8\u95E8",nc="\u4EBA\u5458",rc="\u9644\u4EF6",uc="\u56FE\u7247",ic="\u5730\u5740",oc="\u64CD\u4F5C",ac="\u5E8F\u53F7",lc="\u4EBA\u5458",sc="\u957F\u6587\u672C",cc="\u65E5\u671F\u533A\u95F4",fc="\u65E5\u671F",dc="\u77ED\u6587\u672C",pc="\u6362\u884C\u5BB9\u5668Wrap",vc="\u8868\u683C",hc="\u660E\u7EC6\u5B50\u8868",yc="\u5730\u5740",mc="\u91D1\u989D",gc="\u8BA1\u7B97\u516C\u5F0F",_c="\u591A\u9009",Ec="\u7535\u5B50\u7B7E\u7AE0",bc="\u5355\u884C\u6587\u672C",Bc="\u6570\u5B57",Fc="\u4E1A\u52A1\u7EC4\u7EC7",Cc="\u5355\u9009",Ac="\u5BCC\u6587\u672C",wc="\u8BC4\u5206",Sc="\u6570\u5B57\u533A\u95F4",Dc="\u4E0B\u62C9\u5355\u9009",$c="\u4E0B\u62C9\u591A\u9009",Ic="\u5173\u8054\u5355\u9009",Oc="\u591A\u884C\u6587\u672C",Pc="\u6811",Rc="Vue\u5BB9\u5668",xc="Vue\u9875\u9762",Lc="\u5728\u7EBF\u6587\u6863",Mc="\u6309\u94AE\u64CD\u4F5C\u680F",Tc="\u9AD8\u7EA7\u5BB9\u5668",jc="\u5206\u7EC4",Vc="\u6805\u683C\u5217",qc="\u6570\u636E\u5BB9\u5668",kc="\u753B\u5E03",Uc="\u6362\u884C\u5BB9\u5668",Hc="\u6805\u683C\u7B49\u5206\u884C",Wc="\u5217\u8868\u5BB9\u5668",Nc="\u81EA\u7531\u9875\u9762",zc="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Gc="\u5B9A\u4F4D\u5BB9\u5668",Kc="\u6805\u683C\u5E03\u5C40",Xc="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Jc="\u660E\u7EC6\u5B50\u8868\u884C",Qc="\u6807\u7B7E\u9875",Zc="\u6807\u7B7E\u5355\u5143",Yc="\u5DE5\u5177\u680F",ef="\u6279\u91CF\u63D0\u4EA4",tf="\u5BFC\u51FA\u8BB0\u5F55",nf="\u5217\u8868\u89C6\u56FE",rf="\u5F15\u7528\u5217\u8868",uf={isNotNumber:pl,isNotString:vl,isNotObject:hl,isNotArray:yl,isNotBoolean:ml,runtimeRequired:gl,pleaseEnterCaption:_l,pleaseEnterCaptionTip:El,pleaseEnterRowCaption:bl,pleaseEnterPlaceholder:Bl,pleaseEnterFieldCode:Fl,pleaseEnterForm:Cl,pleaseEnterList:Al,pleaseEnterProcess:wl,pleaseEnterLabel:Sl,pleaseEnterValue:Dl,bizKeyNotBindFiled:$l,pleaseSelectOneField:Il,pleaseEnterNumberRange:Ol,pleaseEnterAValueGreaterThanMin:Pl,pleaseEnterAValueLessThanMax:Rl,numberRangeSetError:xl,stringRangeError:Ll,attachmentMaxSize:Ml,pleaseEnterTotalScoreSetting:Tl,theTotalScoreMustNotBeLessThan1:jl,scoreDefaultValueRange:Vl,attachmentLimitError:ql,PleaseReselectTheOptionalQuantity:kl,TheMaximumLengthIsGreaterThanTheMinimumLength:Ul,TheMinimumLengthIsGreaterThanTheMaximumLength:Hl,PleaseSelectTheCorrectOptionSettings:Wl,optionIdIsRepeat:Nl,optionIsRequired:zl,pleaseEnterDataCode:Gl,pleaseEnterValueFieldCode:Kl,pleaseEnterSvcCode:Xl,pleaseBindAtLeastOneDisplayValue:Jl,pleaseSelectProvince:Ql,pleaseSelectCity:Zl,pleaseSelectDistrict:Yl,limitRowsCannotBeLessThan0:es,TheNumberOfRowsCannotBeLessThanMinRows:ts,pleaseEnterColumnWidth:ns,pleaseSetTheLogicalRelationshipOfAllRuleConditions:rs,pleaseCompleteAllRulesAndConditions:us,pleaseSelectControl:is,pleaseSelectDashboard:os,theViewNameCannotBeEmpty:as,pleaseSelectOcrType:ls,pleaseSelectAtLeastOneFieldToFillIn:ss,pleaseChooseAtLeastOne:cs,pleaseEnterButtonContent:fs,pleaseEnterDataCodeInDataSetting:ds,pleaseEnterValueFieldCodeInDataSetting:ps,pleaseEnterSvcCodeInDataSetting:vs,pleaseBindAtLeastOneDisplayValueInDataSetting:hs,rootNodeIsRequiredInDataSetting:ys,pleaseEnterMaxHeight:ms,pleaseEnter:gs,pleaseEnterWatermark:_s,pleaseEnterFileName:Es,pleaseUploadAtLeastOnePrintTemplate:bs,pleaseAssignBusiness:Bs,pleaseAssignExternal:Fs,pleaseEnterAliasCode:Cs,pleaseSelectDataCode:As,pleaseSelectSvcCode:ws,pleaseSelectJoinFieldCode:Ss,pleaseSelectMainFieldCode:Ds,pleaseSelectSortFieldCode:$s,batchDeleteButton:Is,batchPrintListButton:Os,batchPrintRecordList:Ps,button:Rs,createFormListButton:xs,dashboard:Ls,divider:Ms,exportListButton:Ts,formSelectButton:js,importRecordListButton:Vs,invoiceCheckButton:qs,link:ks,listSelectButton:Us,ListViewSelect:Hs,operationButton:Ws,pagination:Ns,submissionRecordListButton:zs,text:Gs,textOcrButton:Ks,title:Xs,approvalStatusColumn:Js,array:Qs,autoNumber:Zs,custom:Ys,decimal:ec,department:tc,employee:nc,file:rc,image:uc,location:ic,operation:oc,order:ac,people:lc,long:sc,timescope:cc,timestamp:fc,varchar:dc,gridLayoutWrap:pc,gridTable:vc,subTable:hc,address:yc,amount:mc,calc:gc,checkBox:_c,electronicSignature:Ec,input:bc,number:Bc,organizationSelection:Fc,radio:Cc,richText:Ac,score:wc,searchNumberRange:Sc,select:Dc,selectMultiple:$c,selectRelation:Ic,textarea:Oc,tree:Pc,vueFormItem:Rc,vuePage:xc,WPS:Lc,actionBar:Mc,advancedContainer:Tc,cardGroup:jc,col:Vc,dataView:qc,grid:kc,gridLayoutContainer:Uc,gridRow:Hc,listView:Wc,page:Nc,position:zc,positioningContainer:Gc,row:Kc,subtableColumn:Xc,subtableRow:Jc,tab:Qc,tabPane:Zc,toolbox:Yc,batchSubmissionListButton:ef,exportRecordListButton:tf,listViewSelect:nf,referenceList:rf},of="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",af="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",lf="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",sf="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",cf="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ff="{caption}\u5FC5\u9808",df="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",pf="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",vf="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",hf="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",yf="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",mf="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",gf="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",_f="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ef="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bf="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Bf="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Ff="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Cf="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Af="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wf="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Sf="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Df="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",$f="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",If="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Of="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Pf="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Rf="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",xf="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Lf="\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",Mf="\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",Tf="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",jf="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Vf="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",qf="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",kf="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Uf="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Hf="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Wf="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Nf="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",zf="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Gf="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Kf="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Xf="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Jf="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Qf="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Zf="please select control",Yf="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ed="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",td="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",nd="\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",rd="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ud="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",id="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",od="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ad="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ld="\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",sd="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",cd="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",fd="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",dd="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",pd="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",vd="\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",hd="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",yd="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",md="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",gd="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",_d="\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",Ed="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",bd="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Bd="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fd="\u6279\u91CF\u5220\u9664",Cd="\u6279\u91CF\u6253\u5370",Ad="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",wd="\u6309\u94AE",Sd="\u521B\u5EFA\u5355\u636E",Dd="\u4EEA\u8868\u76D8",$d="\u5206\u5272\u7EBF",Id="\u5BFC\u51FA",Od="\u8868\u5355\u64CD\u4F5C",Pd="\u5BFC\u5165",Rd="\u53D1\u7968\u8BC6\u522B",xd="\u94FE\u63A5",Ld="\u5217\u8868\u9009\u62E9",Md="\u5217\u8868\u89C6\u56FE",Td="\u64CD\u4F5C\u6309\u94AE",jd="\u5206\u9875",Vd="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",qd="\u8BF4\u660E\u6587\u5B57",kd="\u6587\u5B57\u8BC6\u522B",Ud="\u6807\u9898\u7EC4\u4EF6",Hd="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Wd="\u6570\u7EC4",Nd="\u81EA\u52A8\u7F16\u53F7",zd="\u81EA\u5B9A\u4E49",Gd="\u6570\u503C",Kd="\u90E8\u95E8",Xd="\u4EBA\u5458",Jd="\u9644\u4EF6",Qd="\u56FE\u7247",Zd="\u5730\u5740",Yd="\u64CD\u4F5C",ep="\u5E8F\u53F7",tp="\u4EBA\u5458",np="\u957F\u6587\u672C",rp="\u65E5\u671F\u533A\u95F4",up="\u65E5\u671F",ip="\u77ED\u6587\u672C",op="\u6362\u884C\u5BB9\u5668Wrap",ap="\u8868\u683C",lp="\u660E\u7EC6\u5B50\u8868",sp="\u5730\u5740",cp="\u91D1\u989D",fp="\u8BA1\u7B97\u516C\u5F0F",dp="\u591A\u9009",pp="\u7535\u5B50\u7B7E\u7AE0",vp="\u5355\u884C\u6587\u672C",hp="\u6570\u5B57",yp="\u4E1A\u52A1\u7EC4\u7EC7",mp="\u5355\u9009",gp="\u5BCC\u6587\u672C",_p="\u8BC4\u5206",Ep="\u6570\u5B57\u533A\u95F4",bp="\u4E0B\u62C9\u5355\u9009",Bp="\u4E0B\u62C9\u591A\u9009",Fp="\u5173\u8054\u5355\u9009",Cp="\u591A\u884C\u6587\u672C",Ap="\u6811",wp="Vue\u5BB9\u5668",Sp="Vue\u9875\u9762",Dp="\u5728\u7EBF\u6587\u6863",$p="\u6309\u94AE\u64CD\u4F5C\u680F",Ip="\u9AD8\u7EA7\u5BB9\u5668",Op="\u5206\u7EC4",Pp="\u6805\u683C\u5217",Rp="\u6570\u636E\u5BB9\u5668",xp="\u753B\u5E03",Lp="\u6362\u884C\u5BB9\u5668",Mp="\u6805\u683C\u7B49\u5206\u884C",Tp="\u5217\u8868\u5BB9\u5668",jp="\u81EA\u7531\u9875\u9762",Vp="\u5B9A\u4F4D\u5B50\u5BB9\u5668",qp="\u5B9A\u4F4D\u5BB9\u5668",kp="\u6805\u683C\u5E03\u5C40",Up="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Hp="\u660E\u7EC6\u5B50\u8868\u884C",Wp="\u6807\u7B7E\u9875",Np="\u6807\u7B7E\u5355\u5143",zp="\u5DE5\u5177\u680F",Gp="\u6279\u91CF\u63D0\u4EA4",Kp="\u5BFC\u51FA\u8BB0\u5F55",Xp="\u5217\u8868\u89C6\u56FE",Jp="\u5F15\u7528\u5217\u8868",Qp={isNotNumber:of,isNotString:af,isNotObject:lf,isNotArray:sf,isNotBoolean:cf,runtimeRequired:ff,pleaseEnterCaption:df,pleaseEnterCaptionTip:pf,pleaseEnterRowCaption:vf,pleaseEnterPlaceholder:hf,pleaseEnterFieldCode:yf,pleaseEnterForm:mf,pleaseEnterList:gf,pleaseEnterProcess:_f,pleaseEnterLabel:Ef,pleaseEnterValue:bf,bizKeyNotBindFiled:Bf,pleaseSelectOneField:Ff,pleaseEnterNumberRange:Cf,pleaseEnterAValueGreaterThanMin:Af,pleaseEnterAValueLessThanMax:wf,numberRangeSetError:Sf,stringRangeError:Df,attachmentMaxSize:$f,pleaseEnterTotalScoreSetting:If,theTotalScoreMustNotBeLessThan1:Of,scoreDefaultValueRange:Pf,attachmentLimitError:Rf,PleaseReselectTheOptionalQuantity:xf,TheMaximumLengthIsGreaterThanTheMinimumLength:Lf,TheMinimumLengthIsGreaterThanTheMaximumLength:Mf,PleaseSelectTheCorrectOptionSettings:Tf,optionIdIsRepeat:jf,optionIsRequired:Vf,pleaseEnterDataCode:qf,pleaseEnterValueFieldCode:kf,pleaseEnterSvcCode:Uf,pleaseBindAtLeastOneDisplayValue:Hf,pleaseSelectProvince:Wf,pleaseSelectCity:Nf,pleaseSelectDistrict:zf,limitRowsCannotBeLessThan0:Gf,TheNumberOfRowsCannotBeLessThanMinRows:Kf,pleaseEnterColumnWidth:Xf,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Jf,pleaseCompleteAllRulesAndConditions:Qf,pleaseSelectControl:Zf,pleaseSelectDashboard:Yf,theViewNameCannotBeEmpty:ed,pleaseSelectOcrType:td,pleaseSelectAtLeastOneFieldToFillIn:nd,pleaseChooseAtLeastOne:rd,pleaseEnterButtonContent:ud,pleaseEnterDataCodeInDataSetting:id,pleaseEnterValueFieldCodeInDataSetting:od,pleaseEnterSvcCodeInDataSetting:ad,pleaseBindAtLeastOneDisplayValueInDataSetting:ld,rootNodeIsRequiredInDataSetting:sd,pleaseEnterMaxHeight:cd,pleaseEnter:fd,pleaseEnterWatermark:dd,pleaseEnterFileName:pd,pleaseUploadAtLeastOnePrintTemplate:vd,pleaseAssignBusiness:hd,pleaseAssignExternal:yd,pleaseEnterAliasCode:md,pleaseSelectDataCode:gd,pleaseSelectSvcCode:_d,pleaseSelectJoinFieldCode:Ed,pleaseSelectMainFieldCode:bd,pleaseSelectSortFieldCode:Bd,batchDeleteButton:Fd,batchPrintListButton:Cd,batchPrintRecordList:Ad,button:wd,createFormListButton:Sd,dashboard:Dd,divider:$d,exportListButton:Id,formSelectButton:Od,importRecordListButton:Pd,invoiceCheckButton:Rd,link:xd,listSelectButton:Ld,ListViewSelect:Md,operationButton:Td,pagination:jd,submissionRecordListButton:Vd,text:qd,textOcrButton:kd,title:Ud,approvalStatusColumn:Hd,array:Wd,autoNumber:Nd,custom:zd,decimal:Gd,department:Kd,employee:Xd,file:Jd,image:Qd,location:Zd,operation:Yd,order:ep,people:tp,long:np,timescope:rp,timestamp:up,varchar:ip,gridLayoutWrap:op,gridTable:ap,subTable:lp,address:sp,amount:cp,calc:fp,checkBox:dp,electronicSignature:pp,input:vp,number:hp,organizationSelection:yp,radio:mp,richText:gp,score:_p,searchNumberRange:Ep,select:bp,selectMultiple:Bp,selectRelation:Fp,textarea:Cp,tree:Ap,vueFormItem:wp,vuePage:Sp,WPS:Dp,actionBar:$p,advancedContainer:Ip,cardGroup:Op,col:Pp,dataView:Rp,grid:xp,gridLayoutContainer:Lp,gridRow:Mp,listView:Tp,page:jp,position:Vp,positioningContainer:qp,row:kp,subtableColumn:Up,subtableRow:Hp,tab:Wp,tabPane:Np,toolbox:zp,batchSubmissionListButton:Gp,exportRecordListButton:Kp,listViewSelect:Xp,referenceList:Jp},Ze={zhCN:dl,enUS:uf,jaJP:Qp},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",Zp=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",e.REFERENCE_LIST="reference-list"})(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 mn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Yp=mn+"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?mn:Yp,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 e0(e){if(Array.isArray(e))return tt(e)}function t0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function gn(e,t,n){return t=fe(t),i0(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 n0(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function r0(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function u0(){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 i0(e,t){return t&&(o0(t)==="object"||typeof t=="function")?t:t0(e)}function de(e,t){return de=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},de(e,t)}function bn(e){return e0(e)||r0(e)||a0(e)||u0()}function o0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function a0(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||!n0(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 De(){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 l0(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=gn(this,t,[n]),r.name="\u{1F4A5} Driven Error",r.message=n?l0(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)),s0=function(e){En(t,e);function t(n){_n(this,t);var r;return r=gn(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 s0(e)}function c0(e){ut.error(new it(e))}const m=(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 f0(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 d0(e,t,n){return t&&Cn(e.prototype,t),n&&Cn(e,n),e}function p0(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var An=function(){function e(){f0(this,e)}return d0(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},u;return m("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}();p0(An,"$i18n",An.resetI18n());function wn(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)){De("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 v0=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},h0={exports:{}};(function(e){(function(t){var n=function(c,p,b){if(!a(p)||h(p)||g(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]"},g=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)}},y={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=y:t.humps=y})(v0)})(h0);var Sn={};Object.defineProperty(Sn,"__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 y0=Sn.default=ot;function Dn(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function W(e){if(e!==void 0)return(typeof e=="undefined"?"undefined":Dn(e))==="object"?y0(e):e}function at(e){return Object.prototype.toString.call(e)==="[object Object]"}function m0(e){return e!=null&&(typeof e=="undefined"?"undefined":Dn(e))==="object"&&Array.isArray(e)===!1}function ve(e){return Array.isArray(e)}function lt(e){return typeof e=="string"}function g0(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 _0(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 E0(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 b0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function In(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 B0(e,t,n){return t&&In(e.prototype,t),n&&In(e,n),e}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 F0(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function C0(){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 _0(e)||F0(e)||A0(e)||C0()}function A0(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 w0(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 Pn=function(){function e(){b0(this,e),On(this,"_events",new Map),On(this,"debug",!1)}return B0(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 E0(function(){var l,s,a,f,h,g,_,C,d,y,c,p;return w0(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,g=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 y=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),[y])),s.push(y),y===!1?[3,7]:[3,6];case 5:return c=b.sent(),c0(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,g=p,[3,10];case 9:try{!f&&_.return!=null&&_.return()}finally{if(h)throw g}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 S0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Rn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function D0(e,t,n){return t&&Rn(e.prototype,t),n&&Rn(e,n),e}function $0(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var I0=[{key:"on_click",name:m("CMD.click",null,"\u70B9\u51FB\u65F6"),code:"click"},{key:"on_click_finish",name:m("CMD.finished",null,"\u6267\u884C\u5B8C\u6210\u65F6"),code:"click-finish"},{key:"on_change",name:m("CMD.valueChange",null,"\u503C\u53D1\u751F\u53D8\u5316\u65F6"),code:"change"},{key:"on_search",name:m("CMD.search",null,"\u641C\u7D22\u65F6"),code:"search"},{key:"on_list_change",name:m("CMD.listDataChange",null,"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6"),code:"list-change"},{key:"on_list_search",name:m("CMD.listDataCreate",null,"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6"),code:"list-search"},{key:"on_list_mounted",name:m("CMD.listDataBack",null,"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6"),code:"list-mounted"},{key:"on_list_delete",name:m("CMD.listDataDelete",null,"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6"),code:"list-delete"},{key:"on_list_before_insert",name:m("CMD.listDataAdd",null,"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D"),code:"list-before-insert"},{key:"on_input",name:m("CMD.onInput",null,"\u7528\u6237\u8F93\u5165\u65F6"),code:"input"},{key:"on_blur",name:m("CMD.onBlur",null,"\u5931\u53BB\u7126\u70B9\u65F6"),code:"blur"},{key:"on_focus",name:m("CMD.onFocus",null,"\u83B7\u53D6\u7126\u70B9\u65F6"),code:"focus"},{key:"on_wps_open",name:m("CMD.onOpenFile",null,"\u6253\u5F00\u6587\u4EF6\u65F6"),code:"wps-open"},{key:"on_wps_save",name:m("CMD.onSaveFile",null,"\u4FDD\u5B58\u6587\u4EF6\u65F6"),code:"wps-save"},{key:"on_wps_rename",name:m("CMD.rename",null,"\u91CD\u547D\u540D\u65F6"),code:"wps-rename"},{key:"on_list_actions",name:m("CMD.onClickBtn",null,"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6"),code:"list-actions"},{key:"on_list_render_operation",name:m("CMD.cellRender",null,"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6"),code:"list-render-operation"},{key:"on_list_rowclick",name:m("CMD.rowClick",null,"\u884C\u70B9\u51FB\u65F6"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:m("CMD.rowDelete",null,"\u884C\u5220\u9664\u524D"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:m("CMD.listDataImport",null,"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D"),code:"list-before-import"},{key:"on_list_rows_checked",name:m("CMD.rowSelected",null,"\u884C\u9009\u4E2D\u65F6"),code:"list-rows-checked"},{key:"on_change_tab",name:m("CMD.tabChange",null,"\u6807\u7B7E\u9875\u5207\u6362\u65F6"),code:"change-tab"},{key:"on_modal_ok",name:m("CMD.modalConfirm",null,"\u5F39\u7A97\u786E\u8BA4\u65F6"),code:"modal-ok"}],he=function(){function e(){S0(this,e)}return D0(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}();$0(he,"events",I0);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 O0(e){if(Array.isArray(e))return ft(e)}function P0(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function R0(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function xn(e){return O0(e)||P0(e)||x0(e)||R0()}function x0(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 Ln(e,t,n){n!=="Runtime"&&(e.parent=t,dt(e,"parent"))}function L0(e,t,n){e.forEach(function(r){Ln(r,t,n)})}var Mn=Symbol("targetKey");function Tn(e){var t;return(t=e[Mn])!==null&&t!==void 0?t:e}function jn(e,t,n){return L0(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(xn(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(xn(s)));return at(i)&&Ln(i,t,n),h}})}function pt(e,t,n,r,u){var o=r!=null?r:e,i=jn(Tn(n!=null?n:[]),o,u);Object.defineProperty(e,t,{get:function(){return i},set:function(s){i=jn(Tn(s),o,u)},enumerable:!0})}function M0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Vn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function T0(e,t,n){return t&&Vn(e.prototype,t),n&&Vn(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 qn=[],ye=function(){function e(t){M0(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 T0(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&&(De("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]||[],g;return h.length!==a.length?g=h[0]:g=h[f],g}}}}),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&&(De("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",qn),K(ye,"staticRegisteredTypes",new Set(qn.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 kn=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},j0=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},Un;(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"})(Un||(Un={}));var Hn;(function(e){e.DEFAULT_DISPLAY="defaultDisplay",e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.VIEW_FORM_MODEL_TYPE="viewFormModelType",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.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",e.IS_SHOW_SIMPLE_SEARCH="isShowSimpleSearch",e.IS_SHOW_TOOL_BAE="isShowToolbar"})(Hn||(Hn={}));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 V0=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 q0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function k0(e,t,n){return t=me(t),W0(e,gt()?Reflect.construct(t,n||[],me(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 $e(e,t,n){return gt()?$e=Reflect.construct:$e=function(u,o,i){var l=[null];l.push.apply(l,o);var s=Function.bind.apply(u,l),a=new s;return i&&ge(a,i.prototype),a},$e.apply(null,arguments)}function N(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function me(e){return me=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},me(e)}function U0(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&&ge(e,t)}function H0(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function W0(e,t){return t&&(N0(t)==="object"||typeof t=="function")?t:q0(e)}function ge(e,t){return ge=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},ge(e,t)}function N0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function mt(e){var t=typeof Map=="function"?new Map:void 0;return mt=function(r){if(r===null||!H0(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 $e(r,arguments,me(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),ge(u,r)},mt(e)}function gt(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(gt=function(){return!!e})()}var _t=function e(t){yt(this,e),N(this,"isHide",{type:"boolean"})},Wn=function(e){U0(t,e);function t(n){return yt(this,t),k0(this,t)}return t}(mt(Array)),z=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";yt(this,e),N(this,"isHide",void 0),N(this,"className",void 0),N(this,"style",void 0),N(this,"caption",void 0),N(this,"defaultState",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new V0(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};N(z,"mode",void 0),N(z,"Rules",_t),N(z,"RuntimeRules",Wn);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 z0(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 G0(){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 G0()?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 K0(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||!K0(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 X0=/%[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 L(){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(X0,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 J0(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function $(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||J0(t)&&typeof e=="string"&&!e)}function Q0(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 zn(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 Z0(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var Gn=function(e){z0(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 Y0(e,t,n,r){if(t.first){var u=new Promise(function(h,g){var _=function(y){return r(y),y.length?g(new Gn(y,Bt(y))):h()},C=Z0(e);zn(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,g){var _=function(d){if(a.push.apply(a,d),s++,s===l)return r(a),a.length?g(new Gn(a,Bt(a))):h()};i.length||(r(a),h()),i.forEach(function(C){var d=e[C];o.indexOf(C)!==-1?zn(d,n,_):Q0(d,n,_)})});return f.catch(function(h){return h}),f}function Kn(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 Xn(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 Jn(e,t,n,r,u,o){e.required&&(!n.hasOwnProperty(e.field)||$(t,o||e.type))&&r.push(L(u.messages.required,e.fullField))}function ev(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(L(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 tv(e,t,n,r,u){if(e.required&&t===void 0){Jn(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(L(u.messages.types[i],e.fullField,e.type)):i&&typeof t!==e.type&&r.push(L(u.messages.types[i],e.fullField,e.type))}function nv(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",g=typeof t=="string",_=Array.isArray(t);if(h?f="number":g?f="string":_&&(f="array"),!f)return!1;_&&(a=t.length),g&&(a=t.replace(s,"_").length),o?a!==e.len&&r.push(L(u.messages[f].len,e.fullField,e.len)):i&&!l&&a<e.min?r.push(L(u.messages[f].min,e.fullField,e.min)):l&&!i&&a>e.max?r.push(L(u.messages[f].max,e.fullField,e.max)):i&&l&&(a<e.min||a>e.max)&&r.push(L(u.messages[f].range,e.fullField,e.min,e.max))}var ee="enum";function rv(e,t,n,r,u){e[ee]=Array.isArray(e[ee])?e[ee]:[],e[ee].indexOf(t)===-1&&r.push(L(u.messages[ee],e.fullField,e[ee].join(", ")))}function uv(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(L(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(L(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var E={required:Jn,whitespace:ev,type:tv,range:nv,enum:rv,pattern:uv};function iv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if($(t,"string")&&!e.required)return n();E.required(e,t,r,o,u,"string"),$(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 ov(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if($(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 av(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if(t===""&&(t=void 0),$(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($(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 sv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if($(t)&&!e.required)return n();E.required(e,t,r,o,u),$(t)||E.type(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($(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 fv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if($(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 dv(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 pv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if($(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 vv="enum";function hv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if($(t)&&!e.required)return n();E.required(e,t,r,o,u),t!==void 0&&E[vv](e,t,r,o,u)}n(o)}function yv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if($(t,"string")&&!e.required)return n();E.required(e,t,r,o,u),$(t,"string")||E.pattern(e,t,r,o,u)}n(o)}function mv(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if($(t,"date")&&!e.required)return n();if(E.required(e,t,r,o,u),!$(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 gv(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($(t,o)&&!e.required)return n();E.required(e,t,r,i,u,o),$(t,o)||E.type(e,t,r,i,u)}n(i)}function _v(e,t,n,r,u){var o=[],i=e.required||!e.required&&r.hasOwnProperty(e.field);if(i){if($(t)&&!e.required)return n();E.required(e,t,r,o,u)}n(o)}var Ee={string:iv,method:ov,number:av,boolean:lv,regexp:sv,integer:cv,float:fv,array:dv,object:pv,enum:hv,pattern:yv,date:mv,url:Ct,hex:Ct,email:Ct,required:gv,any:_v};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=Xn(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 y,c=[],p={};function b(A){if(Array.isArray(A)){var S;c=(S=c).concat.apply(S,A)}else c.push(A)}for(y=0;y<d.length;y++)b(d[y]);c.length?p=Bt(c):(c=null,p=null),l(c,p)}if(i.messages){var a=this.messages();a===wt&&(a=At()),Xn(a,i.messages),i.messages=a}else i.messages=this.messages();var f,h,g={},_=i.keys||Object.keys(this.rules);_.forEach(function(d){f=u.rules[d],h=o[d],f.forEach(function(y){var c=y;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&&(g[d]=g[d]||[],g[d].push({rule:c,value:h,source:o,field:d}))})});var C={};return Y0(g,i,function(d,y){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(Kn(c)),i.first&&w.length)return C[c.field]=1,y(w);if(!p)y(w);else{if(c.required&&!d.value)return c.message!==void 0?w=[].concat(c.message).map(Kn(c)):i.error&&(w=[i.error(c,L(i.messages.required,c.field))]),y(w);var U={};if(c.defaultField)for(var Qr in d.value)d.value.hasOwnProperty(Qr)&&(U[Qr]=c.defaultField);U=V(V({},U),d.rule.fields);for(var oe in U)if(U.hasOwnProperty(oe)){var g5=Array.isArray(U[oe])?U[oe]:[U[oe]];U[oe]=g5.map(b.bind(null,oe))}var Zr=new X(U);Zr.messages(i.messages),d.rule.options&&(d.rule.options.messages=i.messages,d.rule.options.error=i.error),Zr.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),y(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(L("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 Ev={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 bv(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new X(e);return n.messages(Object.assign(Ev,t)),n}var Qn=new Pn;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 Bv(e){if(Array.isArray(e))return e}function Fv(e){if(Array.isArray(e))return St(e)}function Zn(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 Yn(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var o=e.apply(t,n);function i(s){Zn(o,r,u,i,l,"next",s)}function l(s){Zn(o,r,u,i,l,"throw",s)}i(void 0)})}}function Cv(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 Av(e,t,n){return t&&er(e.prototype,t),n&&er(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 tr(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function nr(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function wv(){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 Sv(){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 rr(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 Dv(e){return Bv(e)||nr(e)||ur(e)||wv()}function Dt(e){return Fv(e)||nr(e)||ur(e)||Sv()}function $v(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ur(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 ir(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;Cv(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",ar),F(this,"removeSetting",or),this._callControlHooks("preInstance",n);var u=tr(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,g=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 y;this.type=(y=n==null?void 0:n.type)!==null&&y!==void 0?y:l,this.props=new z(n==null?void 0:n.props,(tr(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=W(g);var p;this.fieldType=(p=n==null?void 0:n.fieldType)!==null&&p!==void 0?p:s,this.eventKeys=W(a),this.customEvents=W(f),this.slots=W(_),this.slotPosition=W(C),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return Av(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=Dv(u),s=l[0],a=l.slice(1);return(i=Qn).emit.apply(i,[s,this].concat(Dt(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),wn(this.props,r,u),this.postUpdate(r,u)}},{key:"preValidate",value:function(){var r=this;return Yn(function(){var u,o,i;return ir(this,function(l){switch(l.label){case 0:return u=rr({},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 Yn(function(){var i,l,s,a;return ir(this,function(f){switch(f.label){case 0:return[4,o.preValidate()];case 1:i=f.sent(),l=i!==void 0?i:rr({},o.rules),Array.isArray(u)&&u.forEach(function(h){l.hasOwnProperty(h)&&delete l[h]}),s=bv(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,g=l.required,_=l.maxLength,C=l.options,d=l.encrypted,y=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 g!==void 0&&(c.required=g),_!==void 0&&(c.maxLength=_),d!==void 0&&(c.encrypted=d),y!==void 0&&(c.encryptedMode=y),c}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:W(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,Dt(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",or),F(R,"updateSettingItem",ar);function or(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 ar(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":$v(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,Dt(t.showItems))}}}})}function Iv(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 Ov(e,t,n){return t&&lr(e.prototype,t),n&&lr(e,n),e}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 Pv(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var be=function(){function t(n){Iv(this,t),M(this,"id",void 0),M(this,"type",void 0),M(this,"controlType",void 0),M(this,"props",void 0),M(this,"fieldType",void 0),M(this,"customEvents",[]),M(this,"pageStatus",void 0),M(this,"parent",null);var r=Pv(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 g;this.pageStatus=(g=n==null?void 0:n.pageStatus)!==null&&g!==void 0?g:ht.UNKNOWN}return Ov(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}();M(be,"mode","Runtime"),M(be,"controlType","control"),M(be,"controlFieldType",void 0),M(be,"__is_control__",!0),M(be,"controlCustomEvents",[]);function sr(e){return(e==null?void 0:e.dataCode)!==void 0&&(e==null?void 0:e.fieldCode)!==void 0}function Rv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function $t(e,t,n){return t=Pe(t),xv(e,cr()?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 D(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function 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 xv(e,t){return t&&(Lv(t)==="object"||typeof t=="function")?t:Rv(e)}function Pt(e,t){return Pt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Pt(e,t)}function Lv(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 Mv=function(e){Ot(t,e);function t(n){It(this,t);var r;r=$t(this,t,[n]),D(r,"dataBind",{}),D(r,"caption",{type:"string",required:!0,message:m("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")}),D(r,"isHideCaption",{type:"boolean"}),D(r,"labelPosition",{type:"enum",enum:["top","left"]}),D(r,"defaultState",{type:"enum",enum:["default","readonly"]}),D(r,"required",{type:"boolean"}),D(r,"captionTip",{type:"string",required:!1,message:m("CMD.pleaseEnterCaptionTip",null,"\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED")});var u={fieldCode:{type:"string",required:!0,message:m("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},dataCode:{type:"string",required:!0,message:m("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}};if(sr(n.dataBind))r.dataBind={type:"object",required:!0,fields:W(u),message:m("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};else{var o={type:"object",required:!0,fields:{},message:m("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};Object.keys(n.dataBind).forEach(function(i){o.fields[i]={type:"object",required:!0,fields:W(u),message:m("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}}),r.dataBind=o}return n.isShowCaptionTip&&(r.captionTip.required=!0),r}return t}(_t),Tv=function(e){Ot(t,e);function t(n){It(this,t);var r;r=$t(this,t,[n]);var u=n.isHide?!1:n.required;return u&&r.push({type:"string",required:u,message:n.requiredMessage!==""?n.requiredMessage:m("CMD.runtimeRequired",{caption:n.caption},"{caption}\u5FC5\u586B")}),r}return t}(Wn),Rt=function(e){Ot(t,e);function t(n){It(this,t);var r;r=$t(this,t,[n]),D(r,"caption",void 0),D(r,"isHideCaption",void 0),D(r,"isShowCaptionTip",void 0),D(r,"captionTip",void 0),D(r,"labelPosition",void 0),D(r,"dataBind",void 0),D(r,"defaultValue",void 0),D(r,"placeholder",void 0),D(r,"defaultState",void 0),D(r,"required",void 0),D(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 g;r.requiredMessage=(g=n==null?void 0:n.requiredMessage)!==null&&g!==void 0?g:"",r.dataBind=new kn(n==null?void 0:n.dataBind);var _;return r.defaultValue=(_=n==null?void 0:n.defaultValue)!==null&&_!==void 0?_:"",r}return t}(z);D(Rt,"Rules",Mv),D(Rt,"RuntimeRules",Tv);function jv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Vv(e,t,n){return t=xe(t),Uv(e,fr()?Reflect.construct(t,n||[],xe(e).constructor):t.apply(e,n))}function qv(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 kv(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 Uv(e,t){return t&&(Hv(t)==="object"||typeof t=="function")?t:jv(e)}function xt(e,t){return xt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},xt(e,t)}function Hv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function fr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(fr=function(){return!!e})()}var dr=function(e){kv(t,e);function t(n){qv(this,t);var r;return r=Vv(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(dr,"controlEventKeys",["on_change","on_focus","on_blur"]),Re(dr,"controlCustomAttributes",void 0);function Wv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Nv(e,t,n){return t=Le(t),Kv(e,pr()?Reflect.construct(t,n||[],Le(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 Le(e){return Le=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Le(e)}function Gv(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Lt(e,t)}function Kv(e,t){return t&&(Xv(t)==="object"||typeof t=="function")?t:Wv(e)}function Lt(e,t){return Lt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Lt(e,t)}function Xv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function pr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(pr=function(){return!!e})()}var Jv=function(e){Gv(t,e);function t(n){return zv(this,t),Nv(this,t,[n])}return t}(z);function Mt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Qv(e){if(Array.isArray(e))return Mt(e)}function Zv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function vr(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 Yv(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var o=e.apply(t,n);function i(s){vr(o,r,u,i,l,"next",s)}function l(s){vr(o,r,u,i,l,"throw",s)}i(void 0)})}}function eh(e,t,n){return t=Q(t),ch(e,mr()?Reflect.construct(t,n||[],Q(e).constructor):t.apply(e,n))}function th(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function hr(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 nh(e,t,n){return t&&hr(e.prototype,t),n&&hr(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=fh(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 rh(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 uh(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function ih(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function oh(){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 ah(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 lh(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 sh(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):lh(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function ch(e,t){return t&&(dh(t)==="object"||typeof t=="function")?t:Zv(e)}function Tt(e,t){return Tt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Tt(e,t)}function fh(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Q(e),e!==null););return e}function yr(e){return Qv(e)||ih(e)||ph(e)||oh()}function dh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ph(e,t){if(!!e){if(typeof e=="string")return Mt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Mt(e,t)}}function mr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(mr=function(){return!!e})()}function vh(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 hh=1e4,gr=function(t){rh(n,t);function n(r){th(this,n);var u;u=eh(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=uh(this,n)?this.constructor:void 0,i=o.excludes,l=o.childrenMaxLength;return u.props=new Jv(r==null?void 0:r.props),pt(u,"children",r==null?void 0:r.children,void 0,"Designer"),u.excludes=W(i),u.childrenMaxLength=l,u}return nh(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 Yv(function(){return vh(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 yr(l).concat(yr(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 sh(ah({},u),{children:o})}}]),n}(R);J(gr,"excludes",!1),J(gr,"childrenMaxLength",hh);function yh(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function mh(e,t,n){return t=Me(t),Eh(e,_r()?Reflect.construct(t,n||[],Me(e).constructor):t.apply(e,n))}function gh(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 Me(e){return Me=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Me(e)}function _h(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 Eh(e,t){return t&&(bh(t)==="object"||typeof t=="function")?t:yh(e)}function jt(e,t){return jt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},jt(e,t)}function bh(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 Bh=function(e){_h(t,e);function t(n,r,u){gh(this,t);var o;o=mh(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 Fh(e){if(Array.isArray(e))return Vt(e)}function Ch(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Er(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 Ah(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var o=e.apply(t,n);function i(s){Er(o,r,u,i,l,"next",s)}function l(s){Er(o,r,u,i,l,"throw",s)}i(void 0)})}}function wh(e,t,n){return t=Z(t),Rh(e,Ar()?Reflect.construct(t,n||[],Z(e).constructor):t.apply(e,n))}function Sh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function br(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Dh(e,t,n){return t&&br(e.prototype,t),n&&br(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=xh(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 $h(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 Ih(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Oh(){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 Ph(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function Fr(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Ph(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Rh(e,t){return t&&(Lh(t)==="object"||typeof t=="function")?t:Ch(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},qt(e,t)}function xh(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Z(e),e!==null););return e}function Cr(e){return Fh(e)||Ih(e)||Mh(e)||Oh()}function Lh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Mh(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 Ar(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Ar=function(){return!!e})()}function Th(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 jh=function(e){$h(t,e);function t(n){Sh(this,t);var r;return r=wh(this,t,[n]),Te(r,"controlType","list"),Te(r,"props",void 0),r.props=new Bh(r,n==null?void 0:n.props,"Designer"),r}return Dh(t,[{key:"validate",value:function(r,u){var o=this,i=this,l=function(){return re(Z(t.prototype),"validate",o)};return Ah(function(){return Th(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 Cr(i).concat(Cr(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 Fr(Br({},r),{props:Fr(Br({},this.props),{headers:u})})}}]),t}(R);Te(jh,"controlFieldType",j.LIST);function Vh(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function wr(e,t,n){return t=je(t),qh(e,$r()?Reflect.construct(t,n||[],je(e).constructor):t.apply(e,n))}function Sr(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 Dr(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&kt(e,t)}function qh(e,t){return t&&(kh(t)==="object"||typeof t=="function")?t:Vh(e)}function kt(e,t){return kt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},kt(e,t)}function kh(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 Uh=function(e){Dr(t,e);function t(n){Sr(this,t);var r;return r=wr(this,t,[n]),x(r,"caption",{type:"string",required:!0,message:m("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")}),x(r,"width",{type:"number",required:!1,message:m("CMD.pleaseEnterColumnWidth",null,"\u8BF7\u8F93\u5165\u5217\u5BBD")}),r.width.required=n.widthType==="px",r}return t}(_t),Hh=function(e){Dr(t,e);function t(n){Sr(this,t);var r;r=wr(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 j0(n==null?void 0:n.autoWidth),r.dataBind=new kn(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(Hh,"Rules",Uh);function Ut(e){return"children"in e&&ve(e.children)}function Ir(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 Wh=[v.AMOUNT,v.CALC,v.DATE_RANGE];m("CMD.amount",null,"\u91D1\u989D"),j.DECIMAL,m("CMD.currency",null,"\u5E01\u79CD"),j.VARCHAR,m("CMD.result",null,"\u7ED3\u679C"),j.DECIMAL,m("CMD.unit",null,"\u5355\u4F4D"),j.VARCHAR,m("CMD.startTime",null,"\u5F00\u59CB\u65F6\u95F4"),j.TIMESTAMP,m("CMD.endTime",null,"\u7ED3\u675F\u65F6\u95F4"),j.TIMESTAMP;function Nh(e){let t=[];return Ve(e,n=>{n.controlType===P.FORM?t.push(n):(n.type,v.SUBTABLE)}),t}function zh(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===v.TITLE)return n;if(Wh.includes(n.type)){const r=n.dataBind;Object.keys(r).forEach(u=>{const o=r[u],i=n.controlId+"_"+u;o.fieldCode=Or(i),o.dataCode=t})}else n.dataBind.fieldCode=Or(n.controlId),n.dataBind.dataCode=t;return n})}function Or(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 Wt(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Nt(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 Gh=[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],Kh=[v.CALC],Xh={check:{id:"listPageCheckBtnId",caption:m("CMD.view",null,"\u67E5\u770B")},edit:{id:"listPageEditBtnId",caption:m("CMD.edit",null,"\u7F16\u8F91")},delete:{id:"listPageDeleteBtnId",caption:m("CMD.delete",null,"\u5220\u9664")}};function Be(e,t){var r,u,o,i,l,s,a,f,h;const n=[];if(ve(e))n.push(...e.map(g=>Be(g,t)).flat());else{const g=e.type,{caption:_,content:C}=e.props;let d;if(Gh.includes(g))g===v.OPERATION_COLUMN&&Object.entries(Xh).reduce((y,[c,{caption:p,id:b}])=>{var S;const A=e.props[c];return A&&A.isShow&&y.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"}),y},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:!Kh.includes(g),canRead:!0,canHide:!0,group:"element"},t&&t.type===v.SUBTABLE&&(d.caption=t.caption+"_"+d.caption),g===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),g===v.VUE_FORM_ITEM){let y="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)!==""&&(y="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:y},n.push(d)})}e.children&&n.push(...e.children.map(y=>Be(y,t)).flat()),e.controlType===P.LIST&&n.push(...e.props.headers.map(y=>Be(y,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 Nt(...t)})}getModelBindInfoList(...t){return Wt(...t)}getSchema(...t){return Ht(...t)}listenControlHook(...t){return Qn.on(...t)}}ue.EventLogic=he;class Jh{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:m("CMD.approvedDocuments",null,"\u5BA1\u6279\u901A\u8FC7\u5355\u636E"),color:"theme",filters:[{ruleId:1,symbol:"op_equal",leftVariableBo:{type:"varchar",value:"process_status",name:m("CMD.processStatus",null,"\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(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 Pr{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?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=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}xr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;Fe(this.instance,u=>{t.push(u),n.set(u.id,u),xr(u,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function Rr(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 xr(e,t){if(e.controlType===P.FORM){const n=e.props.dataBind;sr(n)?Rr(t,n,e):Object.values(n).forEach(r=>{Rr(t,r,e)})}}function Fe(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{t(r),Ut(r)&&Fe(r.children,t),Ir(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 Lr(e){const t=[e];return Fe(e,n=>{n!==e&&t.includes(n.parent)&&!zt(n)&&t.push(n)}),t}function Qh(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 Zh(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){Qh(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 Zh(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function Yh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Tr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ey(e,t,n){return t&&Tr(e.prototype,t),n&&Tr(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 ty=function(){function e(t){Yh(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:Zp,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 ey(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 ny(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 jr=function e(t){ny(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 ry(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 uy(e){return"type"in e&&e.type==="tab"}var Ae=function e(t){ry(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 Vr(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 iy(e){if(Array.isArray(e))return e}function oy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ay(e,t,n){return t=qe(t),dy(e,qr()?Reflect.construct(t,n||[],qe(e).constructor):t.apply(e,n))}function ly(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 sy(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 cy(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 fy(){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 dy(e,t){return t&&(vy(t)==="object"||typeof t=="function")?t:oy(e)}function Xt(e,t){return Xt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Xt(e,t)}function py(e,t){return iy(e)||cy(e,t)||hy(e,t)||fy()}function vy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function hy(e,t){if(!!e){if(typeof e=="string")return Vr(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 Vr(e,t)}}function qr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(qr=function(){return!!e})()}var yy=function(e){sy(t,e);function t(n){ly(this,t);var r;return r=ay(this,t,[n]),at(n)&&Object.entries(n).forEach(function(u){var o=py(u,2),i=o[0],l=o[1];r[i]=l}),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 gy(e,t,n){return t=Ue(t),by(e,kr()?Reflect.construct(t,n||[],Ue(e).constructor):t.apply(e,n))}function _y(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 Ey(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 by(e,t){return t&&(By(t)==="object"||typeof t=="function")?t:my(e)}function Jt(e,t){return Jt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Jt(e,t)}function By(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 Fy=function(e){Ey(t,e);function t(n){_y(this,t);var r;r=gy(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 Cy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ay(e,t,n){return t=He(t),Dy(e,Ur()?Reflect.construct(t,n||[],He(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 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 Sy(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 Dy(e,t){return t&&($y(t)==="object"||typeof t=="function")?t:Cy(e)}function Zt(e,t){return Zt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Zt(e,t)}function $y(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 Iy=function(e){Sy(t,e);function t(n){wy(this,t);var r;r=Ay(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 Oy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Py(e,t,n){return t=We(t),Ly(e,Hr()?Reflect.construct(t,n||[],We(e).constructor):t.apply(e,n))}function Ry(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 We(e){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},We(e)}function xy(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 Ly(e,t){return t&&(My(t)==="object"||typeof t=="function")?t:Oy(e)}function en(e,t){return en=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},en(e,t)}function My(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 Ty=function(e){xy(t,e);function t(n){Ry(this,t);var r;r=Py(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 jy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Vy(e,t,n){return t=Ne(t),Hy(e,Wr()?Reflect.construct(t,n||[],Ne(e).constructor):t.apply(e,n))}function qy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ky(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 Uy(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 Hy(e,t){return t&&(Wy(t)==="object"||typeof t=="function")?t:jy(e)}function tn(e,t){return tn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},tn(e,t)}function Wy(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 Ny=function(e){Uy(t,e);function t(n){qy(this,t);var r;r=Vy(this,t,[n]),ky(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 zy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Gy(e,t,n){return t=ze(t),Jy(e,zr()?Reflect.construct(t,n||[],ze(e).constructor):t.apply(e,n))}function Ky(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 Xy(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 Jy(e,t){return t&&(Qy(t)==="object"||typeof t=="function")?t:zy(e)}function nn(e,t){return nn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},nn(e,t)}function Qy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function zr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(zr=function(){return!!e})()}var Zy=function(e){Xy(t,e);function t(n){Ky(this,t);var r;r=Gy(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 Yy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function e5(e,t,n){return t=Ge(t),r5(e,Kr()?Reflect.construct(t,n||[],Ge(e).constructor):t.apply(e,n))}function t5(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Gr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ge(e){return Ge=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ge(e)}function n5(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 r5(e,t){return t&&(u5(t)==="object"||typeof t=="function")?t:Yy(e)}function rn(e,t){return rn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},rn(e,t)}function u5(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 i5=function(e){n5(t,e);function t(n){t5(this,t);var r;r=e5(this,t,[n]),Gr(r,"options",void 0),Gr(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 o5(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function a5(e,t,n){return t=Ke(t),c5(e,Xr()?Reflect.construct(t,n||[],Ke(e).constructor):t.apply(e,n))}function l5(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 s5(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 c5(e,t){return t&&(f5(t)==="object"||typeof t=="function")?t:o5(e)}function un(e,t){return un=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},un(e,t)}function f5(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Xr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Xr=function(){return!!e})()}var d5=function(e){s5(t,e);function t(n){l5(this,t);var r;r=a5(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 p5(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){p5(e,u,n[u])})}return e}function v5(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)):v5(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function h5(e,t){switch(e){case"input":return new Fy(t);case"textarea":return new d5(t);case"input-number":return new Iy(t);case"switch":return new Ty(t);case"radio":return new i5(t);case"checkbox":return new Ny(t);case"select":return new Zy(t);default:return new yy(t)}}function y5(e){return function(t){var n=e.get(t);if(!!n)return new ty(an(on({},n),{props:h5(n.component,"props"in n?n.props:void 0)}))}}function m5(e){var t=e.fields.reduce(function(u,o){return u.set(o.key,o),u},new Map);function n(u){return new jr(an(on({},u),{items:u.items.map(y5(t)).filter(Boolean)}))}function r(u){return u.map(n)}return e.groups.map(function(u){return uy(u)?new Ae(an(on({},u),{items:r(u.items)})):n(u)})}let ln="";class Jr extends Pn{constructor(t){super(),this.isMounted=!1,this.id=et(8),this.__pluginsApplied=!1,this.getSchema=Ht,this.getModelBindInfoList=Wt,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;this.eventLogic=new he,this.designer=new r,this.store=new Pr(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,g;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,y)=>{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,y)=>{const c=new Ae(d);return y===0&&(c.items=[...this.formatGroupSetting(C,r),...c.items]),c})}else if(((h=t[0])==null?void 0:h.type)==="group"&&((g=n[0])==null?void 0:g.type)==="tab"){const _=t;u=n.map((d,y)=>{const c=new Ae(d);return y===0&&(c.items=[...c.items,...this.formatGroupSetting(_,r)]),c})}return u}formatGroupSetting(t,n){if(ve(t))return t.map(r=>{const u=new jr(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?m5(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;!wn(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}`;m0(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){De(`can\u2018t update instance type to ${n}`);return}return u}validate(t,n){return Nt(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!g0(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))})}}Jr.EventLogic=he,B.Builder=Jh,B.Designer=ue,B.Driven=Jr,B.Store=Pr,B.checkSchema=Nt,B.fillModelBindInfoListFieldCode=zh,B.findInstanceDataScopeParent=Ce,B.generatePermissions=Be,B.getDataScopeFlatInstances=Lr,B.getMasterFormControls=Nh,B.getModelBindInfoList=Wt,B.hasChildrenControl=Ut,B.hasHeaderControl=Ir,B.isDataScopeInstance=zt,B.loop=Fe,B.loopFormControl=Ve,B.toSchema=Ht,Object.defineProperty(B,"__esModule",{value:!0})});
1
+ var _5=Object.defineProperty;var Qr=Object.getOwnPropertySymbols;var E5=Object.prototype.hasOwnProperty,b5=Object.prototype.propertyIsEnumerable;var Zr=(B,R,O)=>R in B?_5(B,R,{enumerable:!0,configurable:!0,writable:!0,value:O}):B[R]=O,pe=(B,R)=>{for(var O in R||(R={}))E5.call(R,O)&&Zr(B,O,R[O]);if(Qr)for(var O of Qr(R))b5.call(R,O)&&Zr(B,O,R[O]);return B};var En=(B,R,O)=>new Promise((ut,Oe)=>{var it=W=>{try{ve(O.next(W))}catch(he){Oe(he)}},at=W=>{try{ve(O.throw(W))}catch(he){Oe(he)}},ve=W=>W.done?ut(W.value):Promise.resolve(W.value).then(it,at);ve((O=O.apply(B,R)).next())});(function(B,R){typeof exports=="object"&&typeof module!="undefined"?R(exports):typeof define=="function"&&define.amd?define(["exports"],R):(B=typeof globalThis!="undefined"?globalThis:B||self,R(B.modelDrivenDriven={}))})(this,function(B){"use strict";var R="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",ut="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Oe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",it="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",at="{caption}\u5FC5\u586B",ve="\u8BF7\u8F93\u5165\u6807\u9898",W="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",he="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Yr="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",eu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",tu="\u8BF7\u7ED1\u5B9A\u8868\u5355",nu="\u8BF7\u7ED1\u5B9A\u5217\u8868",ru="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",uu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",iu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",au="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ou="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",lu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",su="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",cu="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",fu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",du="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",pu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",vu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",hu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",yu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",mu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",gu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",_u="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Eu="\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",Bu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Cu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Fu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Au="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Su="\u8BF7\u7ED1\u5B9A\u670D\u52A1",wu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Du="\u8BF7\u9009\u62E9\u7701",$u="\u8BF7\u9009\u62E9\u5E02",Iu="\u8BF7\u9009\u62E9\u533A",Ru="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Ou="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Pu="\u8BF7\u8F93\u5165\u5217\u5BBD",xu="\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",Mu="\u8BF7\u9009\u62E9\u63A7\u4EF6",Tu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",ju="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Vu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",qu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",ku="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Uu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Nu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Hu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Wu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",zu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Gu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ku="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Xu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ju="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Qu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Zu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Yu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ei="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ti="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ni="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ri="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",ui="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",ii="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",ai="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",oi="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",li="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",si="\u6279\u91CF\u5220\u9664",ci="\u6279\u91CF\u6253\u5370",fi="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",di="\u6309\u94AE",pi="\u521B\u5EFA\u5355\u636E",vi="\u4EEA\u8868\u76D8",hi="\u5206\u5272\u7EBF",yi="\u5BFC\u51FA",mi="\u8868\u5355\u64CD\u4F5C",gi="\u5BFC\u5165",_i="\u53D1\u7968\u8BC6\u522B",Ei="\u94FE\u63A5",bi="\u5217\u8868\u9009\u62E9",Bi="\u5217\u8868\u89C6\u56FE",Ci="\u64CD\u4F5C\u6309\u94AE",Fi="\u5206\u9875",Ai="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Si="\u8BF4\u660E\u6587\u5B57",wi="\u6587\u5B57\u8BC6\u522B",Di="\u6807\u9898\u7EC4\u4EF6",$i="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Ii="\u6570\u7EC4",Ri="\u81EA\u52A8\u7F16\u53F7",Oi="\u81EA\u5B9A\u4E49",Pi="\u6570\u503C",xi="\u90E8\u95E8",Li="\u4EBA\u5458",Mi="\u9644\u4EF6",Ti="\u56FE\u7247",ji="\u5730\u5740",Vi="\u64CD\u4F5C",qi="\u5E8F\u53F7",ki="\u4EBA\u5458",Ui="\u957F\u6587\u672C",Ni="\u65E5\u671F\u533A\u95F4",Hi="\u65E5\u671F",Wi="\u77ED\u6587\u672C",zi="\u6362\u884C\u5BB9\u5668Wrap",Gi="\u8868\u683C",Ki="\u660E\u7EC6\u5B50\u8868",Xi="\u5730\u5740",Ji="\u91D1\u989D",Qi="\u8BA1\u7B97\u516C\u5F0F",Zi="\u591A\u9009",Yi="\u7535\u5B50\u7B7E\u7AE0",ea="\u5355\u884C\u6587\u672C",ta="\u6570\u5B57",na="\u4E1A\u52A1\u7EC4\u7EC7",ra="\u5355\u9009",ua="\u5BCC\u6587\u672C",ia="\u8BC4\u5206",aa="\u6570\u5B57\u533A\u95F4",oa="\u4E0B\u62C9\u5355\u9009",la="\u4E0B\u62C9\u591A\u9009",sa="\u5173\u8054\u5355\u9009",ca="\u591A\u884C\u6587\u672C",fa="\u6811",da="Vue\u5BB9\u5668",pa="Vue\u9875\u9762",va="\u5728\u7EBF\u6587\u6863",ha="\u6309\u94AE\u64CD\u4F5C\u680F",ya="\u9AD8\u7EA7\u5BB9\u5668",ma="\u5206\u7EC4",ga="\u6805\u683C\u5217",_a="\u6570\u636E\u5BB9\u5668",Ea="\u753B\u5E03",ba="\u6362\u884C\u5BB9\u5668",Ba="\u6805\u683C\u7B49\u5206\u884C",Ca="\u5217\u8868\u5BB9\u5668",Fa="\u81EA\u7531\u9875\u9762",Aa="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Sa="\u5B9A\u4F4D\u5BB9\u5668",wa="\u6805\u683C\u5E03\u5C40",Da="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",$a="\u660E\u7EC6\u5B50\u8868\u884C",Ia="\u6807\u7B7E\u9875",Ra="\u6807\u7B7E\u5355\u5143",Oa="\u5DE5\u5177\u680F",Pa="\u6279\u91CF\u63D0\u4EA4",xa="\u5BFC\u51FA\u8BB0\u5F55",La="\u5217\u8868\u89C6\u56FE",Ma="\u7ED3\u675F\u65F6\u95F4",Ta="\u5F00\u59CB\u65F6\u95F4",ja="\u5355\u4F4D",Va="\u7ED3\u679C",qa="\u5E01\u79CD",ka="\u7ED3\u675F\u65E5\u671F",Ua="\u5F00\u59CB\u65E5\u671F",Na="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",Ha="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",Wa="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",za="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",Ga="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",Ka="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",Xa="\u8BF7\u9009\u62E9",Ja="\u8BF7\u9009\u62E9\u7EC4\u7EC7",Qa="\u8BF7\u9009\u62E9\u90E8\u95E8",Za="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",Ya="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",eo="\u8BF7\u9009\u62E9\u5730\u5740",to="\u5F39\u7A97\u786E\u8BA4\u65F6",no="\u6807\u7B7E\u9875\u5207\u6362\u65F6",ro="\u884C\u9009\u4E2D\u65F6",uo="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",io="\u884C\u5220\u9664\u524D",ao="\u884C\u70B9\u51FB\u65F6",oo="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",lo="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",so="\u91CD\u547D\u540D\u65F6",co="\u4FDD\u5B58\u6587\u4EF6\u65F6",fo="\u6253\u5F00\u6587\u4EF6\u65F6",po="\u83B7\u53D6\u7126\u70B9\u65F6",vo="\u5931\u53BB\u7126\u70B9\u65F6",ho="\u7528\u6237\u8F93\u5165\u65F6",yo="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",mo="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",go="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",_o="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",Eo="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",bo="\u641C\u7D22\u65F6",Bo="\u503C\u53D1\u751F\u53D8\u5316\u65F6",Co="\u6267\u884C\u5B8C\u6210\u65F6",Fo="\u70B9\u51FB\u65F6",Ao="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",So="\u8BF7\u8F93\u5165\u65E5\u671F",wo="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Do="\u8BF7\u8F93\u5165",$o="\u9ED8\u8BA4\u6A21\u7248",Io="\u5DE6\u53F3\u5E03\u5C40",Ro="\u4E0A\u4E0B\u5E03\u5C40",Oo="\u53EA\u8BFB",Po="\u5FC5\u586B",xo="\u63D0\u793A\u6587\u5B57",Lo="\u9690\u85CF\u6807\u9898",Mo="\u6807\u9898\u5FC5\u586B",To="\u7EC4\u7EC7\u5F62\u6001",jo="\u4E1A\u52A1\u7C7B\u578B",Vo="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",qo="\u9690\u85CF",ko="\u6D41\u7A0B\u72B6\u6001",Uo="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",No="\u5220\u9664",Ho="\u7F16\u8F91",Wo="\u67E5\u770B",zo="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",Go="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",Ko="\u5145\u6EE1\u6574\u884C",Xo="\u6700\u5C0F\u503C",Jo="\u6700\u5927\u503C",Qo="\u65B0\u5EFA\u6587\u6863",Zo="\u91CD\u7F6E",Yo="\u67E5\u8BE2",el="\u660E\u7EC6",tl="\u6253\u5370",nl="\u4FDD\u5B58\u8349\u7A3F",rl="\u4FDD\u5B58",ul="\u53D6\u6D88",il="\u4E0A\u4F20\u56FE\u7247",al="\u53D1\u8D77\u7B7E\u7F72",ol="\u4E0A\u4F20\u9644\u4EF6",ll="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",sl="\u5F15\u7528\u5217\u8868",cl={isNotNumber:R,isNotString:O,isNotObject:ut,isNotArray:Oe,isNotBoolean:it,runtimeRequired:at,pleaseEnterCaption:ve,pleaseEnterCaptionTip:W,pleaseEnterRowCaption:he,pleaseEnterPlaceholder:Yr,pleaseEnterFieldCode:eu,pleaseEnterForm:tu,pleaseEnterList:nu,pleaseEnterProcess:ru,pleaseEnterLabel:uu,pleaseEnterValue:iu,bizKeyNotBindFiled:au,pleaseSelectOneField:ou,pleaseEnterNumberRange:lu,pleaseEnterAValueGreaterThanMin:su,pleaseEnterAValueLessThanMax:cu,numberRangeSetError:fu,stringRangeError:du,attachmentMaxSize:pu,pleaseEnterTotalScoreSetting:vu,theTotalScoreMustNotBeLessThan1:hu,scoreDefaultValueRange:yu,attachmentLimitError:mu,PleaseReselectTheOptionalQuantity:gu,TheMaximumLengthIsGreaterThanTheMinimumLength:_u,TheMinimumLengthIsGreaterThanTheMaximumLength:Eu,PleaseSelectTheCorrectOptionSettings:bu,optionIdIsRepeat:Bu,optionIsRequired:Cu,pleaseEnterDataCode:Fu,pleaseEnterValueFieldCode:Au,pleaseEnterSvcCode:Su,pleaseBindAtLeastOneDisplayValue:wu,pleaseSelectProvince:Du,pleaseSelectCity:$u,pleaseSelectDistrict:Iu,limitRowsCannotBeLessThan0:Ru,TheNumberOfRowsCannotBeLessThanMinRows:Ou,pleaseEnterColumnWidth:Pu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:xu,pleaseCompleteAllRulesAndConditions:Lu,pleaseSelectControl:Mu,pleaseSelectAtLeastOneColumn:Tu,pleaseSelectFillBackMode:ju,pleaseSelectDashboard:Vu,rootNodeIsRequired:qu,theViewNameCannotBeEmpty:ku,pleaseSelectOcrType:Uu,pleaseSelectAtLeastOneFieldToFillIn:Nu,pleaseChooseAtLeastOne:Hu,pleaseEnterButtonContent:Wu,pleaseEnterDataCodeInDataSetting:zu,pleaseEnterValueFieldCodeInDataSetting:Gu,pleaseEnterSvcCodeInDataSetting:Ku,pleaseBindAtLeastOneDisplayValueInDataSetting:Xu,rootNodeIsRequiredInDataSetting:Ju,pleaseEnterMaxHeight:Qu,pleaseEnterWatermark:Zu,pleaseEnterFileName:Yu,pleaseUploadAtLeastOnePrintTemplate:ei,pleaseAssignBusiness:ti,pleaseAssignExternal:ni,pleaseEnterAliasCode:ri,pleaseSelectDataCode:ui,pleaseSelectSvcCode:ii,pleaseSelectJoinFieldCode:ai,pleaseSelectMainFieldCode:oi,pleaseSelectSortFieldCode:li,batchDeleteButton:si,batchPrintListButton:ci,batchPrintRecordList:fi,button:di,createFormListButton:pi,dashboard:vi,divider:hi,exportListButton:yi,formSelectButton:mi,importRecordListButton:gi,invoiceCheckButton:_i,link:Ei,listSelectButton:bi,ListViewSelect:Bi,operationButton:Ci,pagination:Fi,submissionRecordListButton:Ai,text:Si,textOcrButton:wi,title:Di,approvalStatusColumn:$i,array:Ii,autoNumber:Ri,custom:Oi,decimal:Pi,department:xi,employee:Li,file:Mi,image:Ti,location:ji,operation:Vi,order:qi,people:ki,long:Ui,timescope:Ni,timestamp:Hi,varchar:Wi,gridLayoutWrap:zi,gridTable:Gi,subTable:Ki,address:Xi,amount:Ji,calc:Qi,checkBox:Zi,electronicSignature:Yi,input:ea,number:ta,organizationSelection:na,radio:ra,richText:ua,score:ia,searchNumberRange:aa,select:oa,selectMultiple:la,selectRelation:sa,textarea:ca,tree:fa,vueFormItem:da,vuePage:pa,WPS:va,actionBar:ha,advancedContainer:ya,cardGroup:ma,col:ga,dataView:_a,grid:Ea,gridLayoutContainer:ba,gridRow:Ba,listView:Ca,page:Fa,position:Aa,positioningContainer:Sa,row:wa,subtableColumn:Da,subtableRow:$a,tab:Ia,tabPane:Ra,toolbox:Oa,batchSubmissionListButton:Pa,exportRecordListButton:xa,listViewSelect:La,endTime:Ma,startTime:Ta,unit:ja,result:Va,currency:qa,endDate:ka,startDate:Ua,pleaseSelectCompanyName:Na,pleaseSelectPhoneOrEmail:Ha,pleaseSelectSignType:Wa,pleaseSelectSigner:za,pleaseSelectOnlyOne:Ga,pleaseSelectSignFile:Ka,pleaseSelect:Xa,pleaseSelectOrg:Ja,pleaseSelectDept:Qa,pleaseSelectEndDate:Za,pleaseSelectStartDate:Ya,pleaseChooseAddress:eo,modalConfirm:to,tabChange:no,rowSelected:ro,listDataImport:uo,rowDelete:io,rowClick:ao,cellRender:oo,onClickBtn:lo,rename:so,onSaveFile:co,onOpenFile:fo,onFocus:po,onBlur:vo,onInput:ho,listDataAdd:yo,listDataDelete:mo,listDataBack:go,listDataCreate:_o,listDataChange:Eo,search:bo,valueChange:Bo,finished:Co,click:Fo,pleaseEnterNameorEmail:Ao,pleaseEnterDate:So,pleaseEnterAutonumber:wo,pleaseEnter:Do,defaultTemplate:$o,left:Io,top:Ro,default:"\u666E\u901A",readonly:Oo,required:Po,textTip:xo,hideCaption:Lo,titleRequired:Mo,organizationalForm:To,businessType:jo,deleteConfirm:Vo,hide:qo,processStatus:ko,approvedDocuments:Uo,delete:No,edit:Ho,view:Wo,loadCtrlErrorTip:zo,loadCtrlError:Go,fullLine:Ko,min:Xo,max:Jo,createWPS:Qo,reset:Zo,query:Yo,detailed:el,print:tl,draft:nl,save:rl,cancel:ul,uploadImg:il,signature:al,uploadFile:ol,linkContent:ll,referenceList: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",ml="Please enter the title",gl="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",Cl="Please bind the list",Fl="Please bind the process",Al="Please enter the displayed value",Sl="Please enter the stored value",wl="The document number is not bound to the data item",Dl="Please select at least one display field",$l="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}",Rl="Please enter a value less than or equal to {max}",Ol="The value range is set incorrectly",Pl="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",Ll="Please fill in the total score setting",Ml="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",Nl="Option ID cannot be repeated",Hl="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",as="Please select recognition type",os="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",ms="Watermark cannot be empty",gs="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",Cs="Please select the associated table to set the business model",Fs="Please select the association table to set the binding service",As="Select associated sub table fields",Ss="Please select the associated main table field",ws="Please select the sort field",Ds="\u6279\u91CF\u5220\u9664",$s="\u6279\u91CF\u6253\u5370",Is="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Rs="\u6309\u94AE",Os="\u521B\u5EFA\u5355\u636E",Ps="\u4EEA\u8868\u76D8",xs="\u5206\u5272\u7EBF",Ls="\u5BFC\u51FA",Ms="\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",Ns="\u5206\u9875",Hs="\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",ac="\u4EBA\u5458",oc="\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",mc="\u591A\u9009",gc="\u7535\u5B50\u7B7E\u7AE0",_c="\u5355\u884C\u6587\u672C",Ec="\u6570\u5B57",bc="\u4E1A\u52A1\u7EC4\u7EC7",Bc="\u5355\u9009",Cc="\u5BCC\u6587\u672C",Fc="\u8BC4\u5206",Ac="\u6570\u5B57\u533A\u95F4",Sc="\u4E0B\u62C9\u5355\u9009",wc="\u4E0B\u62C9\u591A\u9009",Dc="\u5173\u8054\u5355\u9009",$c="\u591A\u884C\u6587\u672C",Ic="\u6811",Rc="Vue\u5BB9\u5668",Oc="Vue\u9875\u9762",Pc="\u5728\u7EBF\u6587\u6863",xc="\u6309\u94AE\u64CD\u4F5C\u680F",Lc="\u9AD8\u7EA7\u5BB9\u5668",Mc="\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",Nc="\u81EA\u7531\u9875\u9762",Hc="\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="\u5F15\u7528\u5217\u8868",nf={isNotNumber:fl,isNotString:dl,isNotObject:pl,isNotArray:vl,isNotBoolean:hl,runtimeRequired:yl,pleaseEnterCaption:ml,pleaseEnterCaptionTip:gl,pleaseEnterRowCaption:_l,pleaseEnterPlaceholder:El,pleaseEnterFieldCode:bl,pleaseEnterForm:Bl,pleaseEnterList:Cl,pleaseEnterProcess:Fl,pleaseEnterLabel:Al,pleaseEnterValue:Sl,bizKeyNotBindFiled:wl,pleaseSelectOneField:Dl,pleaseEnterNumberRange:$l,pleaseEnterAValueGreaterThanMin:Il,pleaseEnterAValueLessThanMax:Rl,numberRangeSetError:Ol,stringRangeError:Pl,attachmentMaxSize:xl,pleaseEnterTotalScoreSetting:Ll,theTotalScoreMustNotBeLessThan1:Ml,scoreDefaultValueRange:Tl,attachmentLimitError:jl,PleaseReselectTheOptionalQuantity:Vl,TheMaximumLengthIsGreaterThanTheMinimumLength:ql,TheMinimumLengthIsGreaterThanTheMaximumLength:kl,PleaseSelectTheCorrectOptionSettings:Ul,optionIdIsRepeat:Nl,optionIsRequired:Hl,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:as,pleaseSelectAtLeastOneFieldToFillIn:os,pleaseChooseAtLeastOne:ls,pleaseEnterButtonContent:ss,pleaseEnterDataCodeInDataSetting:cs,pleaseEnterValueFieldCodeInDataSetting:fs,pleaseEnterSvcCodeInDataSetting:ds,pleaseBindAtLeastOneDisplayValueInDataSetting:ps,rootNodeIsRequiredInDataSetting:vs,pleaseEnterMaxHeight:hs,pleaseEnter:ys,pleaseEnterWatermark:ms,pleaseEnterFileName:gs,pleaseUploadAtLeastOnePrintTemplate:_s,pleaseAssignBusiness:Es,pleaseAssignExternal:bs,pleaseEnterAliasCode:Bs,pleaseSelectDataCode:Cs,pleaseSelectSvcCode:Fs,pleaseSelectJoinFieldCode:As,pleaseSelectMainFieldCode:Ss,pleaseSelectSortFieldCode:ws,batchDeleteButton:Ds,batchPrintListButton:$s,batchPrintRecordList:Is,button:Rs,createFormListButton:Os,dashboard:Ps,divider:xs,exportListButton:Ls,formSelectButton:Ms,importRecordListButton:Ts,invoiceCheckButton:js,link:Vs,listSelectButton:qs,ListViewSelect:ks,operationButton:Us,pagination:Ns,submissionRecordListButton:Hs,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:ac,long:oc,timescope:lc,timestamp:sc,varchar:cc,gridLayoutWrap:fc,gridTable:dc,subTable:pc,address:vc,amount:hc,calc:yc,checkBox:mc,electronicSignature:gc,input:_c,number:Ec,organizationSelection:bc,radio:Bc,richText:Cc,score:Fc,searchNumberRange:Ac,select:Sc,selectMultiple:wc,selectRelation:Dc,textarea:$c,tree:Ic,vueFormItem:Rc,vuePage:Oc,WPS:Pc,actionBar:xc,advancedContainer:Lc,cardGroup:Mc,col:Tc,dataView:jc,grid:Vc,gridLayoutContainer:qc,gridRow:kc,listView:Uc,page:Nc,position:Hc,positioningContainer:Wc,row:zc,subtableColumn:Gc,subtableRow:Kc,tab:Xc,tabPane:Jc,toolbox:Qc,batchSubmissionListButton:Zc,exportRecordListButton:Yc,listViewSelect:ef,referenceList:tf},rf="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",uf="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",af="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",of="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",lf="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",sf="{caption}\u5FC5\u9808",cf="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ff="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",df="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",pf="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vf="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",hf="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",yf="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",mf="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",gf="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_f="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ef="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",bf="\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",Cf="{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",Af="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Sf="\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",Df="\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",If="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Rf="\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",xf="\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",Lf="\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",Tf="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",jf="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Vf="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qf="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",kf="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Uf="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Nf="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Hf="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Wf="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",zf="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Gf="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Kf="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Xf="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Jf="please select control",Qf="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Zf="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Yf="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ed="\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",td="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",nd="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",rd="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ud="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",id="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ad="\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",ld="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",sd="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",cd="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",fd="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",dd="\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",pd="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",vd="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",hd="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",yd="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",md="\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",_d="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ed="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",bd="\u6279\u91CF\u5220\u9664",Bd="\u6279\u91CF\u6253\u5370",Cd="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Fd="\u6309\u94AE",Ad="\u521B\u5EFA\u5355\u636E",Sd="\u4EEA\u8868\u76D8",wd="\u5206\u5272\u7EBF",Dd="\u5BFC\u51FA",$d="\u8868\u5355\u64CD\u4F5C",Id="\u5BFC\u5165",Rd="\u53D1\u7968\u8BC6\u522B",Od="\u94FE\u63A5",Pd="\u5217\u8868\u9009\u62E9",xd="\u5217\u8868\u89C6\u56FE",Ld="\u64CD\u4F5C\u6309\u94AE",Md="\u5206\u9875",Td="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",jd="\u8BF4\u660E\u6587\u5B57",Vd="\u6587\u5B57\u8BC6\u522B",qd="\u6807\u9898\u7EC4\u4EF6",kd="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Ud="\u6570\u7EC4",Nd="\u81EA\u52A8\u7F16\u53F7",Hd="\u81EA\u5B9A\u4E49",Wd="\u6570\u503C",zd="\u90E8\u95E8",Gd="\u4EBA\u5458",Kd="\u9644\u4EF6",Xd="\u56FE\u7247",Jd="\u5730\u5740",Qd="\u64CD\u4F5C",Zd="\u5E8F\u53F7",Yd="\u4EBA\u5458",ep="\u957F\u6587\u672C",tp="\u65E5\u671F\u533A\u95F4",np="\u65E5\u671F",rp="\u77ED\u6587\u672C",up="\u6362\u884C\u5BB9\u5668Wrap",ip="\u8868\u683C",ap="\u660E\u7EC6\u5B50\u8868",op="\u5730\u5740",lp="\u91D1\u989D",sp="\u8BA1\u7B97\u516C\u5F0F",cp="\u591A\u9009",fp="\u7535\u5B50\u7B7E\u7AE0",dp="\u5355\u884C\u6587\u672C",pp="\u6570\u5B57",vp="\u4E1A\u52A1\u7EC4\u7EC7",hp="\u5355\u9009",yp="\u5BCC\u6587\u672C",mp="\u8BC4\u5206",gp="\u6570\u5B57\u533A\u95F4",_p="\u4E0B\u62C9\u5355\u9009",Ep="\u4E0B\u62C9\u591A\u9009",bp="\u5173\u8054\u5355\u9009",Bp="\u591A\u884C\u6587\u672C",Cp="\u6811",Fp="Vue\u5BB9\u5668",Ap="Vue\u9875\u9762",Sp="\u5728\u7EBF\u6587\u6863",wp="\u6309\u94AE\u64CD\u4F5C\u680F",Dp="\u9AD8\u7EA7\u5BB9\u5668",$p="\u5206\u7EC4",Ip="\u6805\u683C\u5217",Rp="\u6570\u636E\u5BB9\u5668",Op="\u753B\u5E03",Pp="\u6362\u884C\u5BB9\u5668",xp="\u6805\u683C\u7B49\u5206\u884C",Lp="\u5217\u8868\u5BB9\u5668",Mp="\u81EA\u7531\u9875\u9762",Tp="\u5B9A\u4F4D\u5B50\u5BB9\u5668",jp="\u5B9A\u4F4D\u5BB9\u5668",Vp="\u6805\u683C\u5E03\u5C40",qp="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",kp="\u660E\u7EC6\u5B50\u8868\u884C",Up="\u6807\u7B7E\u9875",Np="\u6807\u7B7E\u5355\u5143",Hp="\u5DE5\u5177\u680F",Wp="\u6279\u91CF\u63D0\u4EA4",zp="\u5BFC\u51FA\u8BB0\u5F55",Gp="\u5217\u8868\u89C6\u56FE",Kp="\u5F15\u7528\u5217\u8868",Xp={isNotNumber:rf,isNotString:uf,isNotObject:af,isNotArray:of,isNotBoolean:lf,runtimeRequired:sf,pleaseEnterCaption:cf,pleaseEnterCaptionTip:ff,pleaseEnterRowCaption:df,pleaseEnterPlaceholder:pf,pleaseEnterFieldCode:vf,pleaseEnterForm:hf,pleaseEnterList:yf,pleaseEnterProcess:mf,pleaseEnterLabel:gf,pleaseEnterValue:_f,bizKeyNotBindFiled:Ef,pleaseSelectOneField:bf,pleaseEnterNumberRange:Bf,pleaseEnterAValueGreaterThanMin:Cf,pleaseEnterAValueLessThanMax:Ff,numberRangeSetError:Af,stringRangeError:Sf,attachmentMaxSize:wf,pleaseEnterTotalScoreSetting:Df,theTotalScoreMustNotBeLessThan1:$f,scoreDefaultValueRange:If,attachmentLimitError:Rf,PleaseReselectTheOptionalQuantity:Of,TheMaximumLengthIsGreaterThanTheMinimumLength:Pf,TheMinimumLengthIsGreaterThanTheMaximumLength:xf,PleaseSelectTheCorrectOptionSettings:Lf,optionIdIsRepeat:Mf,optionIsRequired:Tf,pleaseEnterDataCode:jf,pleaseEnterValueFieldCode:Vf,pleaseEnterSvcCode:qf,pleaseBindAtLeastOneDisplayValue:kf,pleaseSelectProvince:Uf,pleaseSelectCity:Nf,pleaseSelectDistrict:Hf,limitRowsCannotBeLessThan0:Wf,TheNumberOfRowsCannotBeLessThanMinRows:zf,pleaseEnterColumnWidth:Gf,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Kf,pleaseCompleteAllRulesAndConditions:Xf,pleaseSelectControl:Jf,pleaseSelectDashboard:Qf,theViewNameCannotBeEmpty:Zf,pleaseSelectOcrType:Yf,pleaseSelectAtLeastOneFieldToFillIn:ed,pleaseChooseAtLeastOne:td,pleaseEnterButtonContent:nd,pleaseEnterDataCodeInDataSetting:rd,pleaseEnterValueFieldCodeInDataSetting:ud,pleaseEnterSvcCodeInDataSetting:id,pleaseBindAtLeastOneDisplayValueInDataSetting:ad,rootNodeIsRequiredInDataSetting:od,pleaseEnterMaxHeight:ld,pleaseEnter:sd,pleaseEnterWatermark:cd,pleaseEnterFileName:fd,pleaseUploadAtLeastOnePrintTemplate:dd,pleaseAssignBusiness:pd,pleaseAssignExternal:vd,pleaseEnterAliasCode:hd,pleaseSelectDataCode:yd,pleaseSelectSvcCode:md,pleaseSelectJoinFieldCode:gd,pleaseSelectMainFieldCode:_d,pleaseSelectSortFieldCode:Ed,batchDeleteButton:bd,batchPrintListButton:Bd,batchPrintRecordList:Cd,button:Fd,createFormListButton:Ad,dashboard:Sd,divider:wd,exportListButton:Dd,formSelectButton:$d,importRecordListButton:Id,invoiceCheckButton:Rd,link:Od,listSelectButton:Pd,ListViewSelect:xd,operationButton:Ld,pagination:Md,submissionRecordListButton:Td,text:jd,textOcrButton:Vd,title:qd,approvalStatusColumn:kd,array:Ud,autoNumber:Nd,custom:Hd,decimal:Wd,department:zd,employee:Gd,file:Kd,image:Xd,location:Jd,operation:Qd,order:Zd,people:Yd,long:ep,timescope:tp,timestamp:np,varchar:rp,gridLayoutWrap:up,gridTable:ip,subTable:ap,address:op,amount:lp,calc:sp,checkBox:cp,electronicSignature:fp,input:dp,number:pp,organizationSelection:vp,radio:hp,richText:yp,score:mp,searchNumberRange:gp,select:_p,selectMultiple:Ep,selectRelation:bp,textarea:Bp,tree:Cp,vueFormItem:Fp,vuePage:Ap,WPS:Sp,actionBar:wp,advancedContainer:Dp,cardGroup:$p,col:Ip,dataView:Rp,grid:Op,gridLayoutContainer:Pp,gridRow:xp,listView:Lp,page:Mp,position:Tp,positioningContainer:jp,row:Vp,subtableColumn:qp,subtableRow:kp,tab:Up,tabPane:Np,toolbox:Hp,batchSubmissionListButton:Wp,exportRecordListButton:zp,listViewSelect:Gp,referenceList:Kp},ot={zhCN:cl,enUS:nf,jaJP:Xp},bn;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(bn||(bn={}));var Bn;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(Bn||(Bn={}));var lt,Cn=(lt=window.localStorage.getItem("locale"))!==null&&lt!==void 0?lt:"zh-CN",Jp=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 Fn;(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"})(Fn||(Fn={}));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",e.REFERENCE_LIST="reference-list"})(v||(v={}));var An;(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"})(An||(An={}));var q;(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"})(q||(q={}));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 wn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Qp=wn+"0123456789";function st(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?wn:Qp,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function ct(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Zp(e){if(Array.isArray(e))return ct(e)}function Yp(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Dn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pe(e,t,n){return Rn()?Pe=Reflect.construct:Pe=function(u,i,a){var l=[null];l.push.apply(l,i);var s=Function.bind.apply(u,l),o=new s;return a&&me(o,a.prototype),o},Pe.apply(null,arguments)}function ye(e){return ye=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ye(e)}function $n(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 e0(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function t0(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function n0(){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 r0(e,t){return t&&(u0(t)==="object"||typeof t=="function")?t:Yp(e)}function me(e,t){return me=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},me(e,t)}function In(e){return Zp(e)||t0(e)||i0(e)||n0()}function u0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function i0(e,t){if(!!e){if(typeof e=="string")return ct(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ct(e,t)}}function ft(e){var t=typeof Map=="function"?new Map:void 0;return ft=function(r){if(r===null||!e0(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}}),me(u,r)},ft(e)}function Rn(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function On(e){var t=Rn();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 r0(this,u)}}var dt=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=dt).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(In(u)))}function Pn(){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=dt).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(In(u)))}function a0(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var pt=function(e){$n(n,e);var t=On(n);function n(r){Dn(this,n);var u;return u=t.call(this,r),u.name="\u{1F4A5} Driven Error",u.message=r?a0(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return n}(ft(Error)),o0=function(e){$n(n,e);var t=On(n);function n(r){Dn(this,n);var u;return u=t.call(this,r),u.name="\u{1F6A8} Driven Reference Error",u}return n}(pt);function ge(e){throw new pt(e)}function xn(e){throw new o0(e)}function l0(e){dt.error(new pt(e))}const g=(e,t,n)=>{if(!e)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const r=e.split(".");let u;const i=(window.baitedaWorkers||{}).languageMessages||{};r.forEach((l,s)=>{s===0?u=i[l]:u&&(u=u[l])});let a="";return u&&(a=u),t&&Object.keys(t).forEach(l=>{const s=t[l];a=a.replace(new RegExp(`\\{\\s*${l}\\s*\\}`,"g"),s)}),a||(n?a=n:a=e),a};function s0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ln(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function c0(e,t,n){return t&&Ln(e.prototype,t),n&&Ln(e,n),e}function f0(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Mn=function(){function e(){s0(this,e)}return c0(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},u;return g("CMD."+n,r,ot==null||(u=ot[Cn.split("-").join("")])===null||u===void 0?void 0:u[n])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(n,r){}}]),e}();f0(Mn,"$i18n",Mn.resetI18n());function Tn(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,a){return"."+a}).split("."),u=!1;return r.reduce(function(i,a,l,s){var o=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,a)){xe("Can not set ".concat(t,"'s ").concat(a," property in current %o, Because there is no ").concat(a," property on the %o"),i,i);return}return l===s.length-1&&!Object.is(o[a],n)&&(o[a]=n,u=!0),o[a]}},e),u}var d0=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},p0={exports:{}};(function(e){(function(t){var n=function(c,p,b){if(!o(p)||h(p)||y(p)||_(p)||s(p))return p;var A,w=0,N=0;if(f(p))for(A=[],N=p.length;w<N;w++)A.push(n(c,p[w],b));else{A={};for(var S in p)Object.prototype.hasOwnProperty.call(p,S)&&(A[c(S,b)]=n(c,p[S],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))},i=function(c){var p=u(c);return p.substr(0,1).toUpperCase()+p.substr(1)},a=function(c,p){return r(c,p).toLowerCase()},l=Object.prototype.toString,s=function(c){return typeof c=="function"},o=function(c){return c===Object(c)},f=function(c){return l.call(c)=="[object Array]"},h=function(c){return l.call(c)=="[object Date]"},y=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,w){return b(A,c,w)}},m={camelize:u,decamelize:a,pascalize:i,depascalize:a,camelizeKeys:function(c,p){return n(d(u,p),c)},decamelizeKeys:function(c,p){return n(d(a,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=m:t.humps=m})(d0)})(p0);var jn={};Object.defineProperty(jn,"__esModule",{value:!0});function vt(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:vt(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:vt(r)}return t}}var v0=jn.default=vt;function Vn(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function z(e){if(e!==void 0)return(typeof e=="undefined"?"undefined":Vn(e))==="object"?v0(e):e}function ht(e){return Object.prototype.toString.call(e)==="[object Object]"}function h0(e){return e!=null&&(typeof e=="undefined"?"undefined":Vn(e))==="object"&&Array.isArray(e)===!1}function _e(e){return Array.isArray(e)}function yt(e){return typeof e=="string"}function y0(e){return Object.values(v).includes(e)}function mt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function m0(e){if(Array.isArray(e))return mt(e)}function qn(e,t,n,r,u,i,a){try{var l=e[i](a),s=l.value}catch(o){n(o);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 i=e.apply(t,n);function a(s){qn(i,r,u,a,l,"next",s)}function l(s){qn(i,r,u,a,l,"throw",s)}a(void 0)})}}function _0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function kn(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 E0(e,t,n){return t&&kn(e.prototype,t),n&&kn(e,n),e}function Un(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function b0(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 gt(e){return m0(e)||b0(e)||C0(e)||B0()}function C0(e,t){if(!!e){if(typeof e=="string")return mt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return mt(e,t)}}function F0(e,t){var n,r,u,i,a={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:l(0),throw:l(1),return:l(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function l(o){return function(f){return s([o,f])}}function s(o){if(n)throw new TypeError("Generator is already executing.");for(;a;)try{if(n=1,r&&(u=o[0]&2?r.return:o[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,o[1])).done)return u;switch(r=0,u&&(o=[o[0]&2,u.value]),o[0]){case 0:case 1:u=o;break;case 4:return a.label++,{value:o[1],done:!1};case 5:a.label++,r=o[1],o=[0];continue;case 7:o=a.ops.pop(),a.trys.pop();continue;default:if(u=a.trys,!(u=u.length>0&&u[u.length-1])&&(o[0]===6||o[0]===2)){a=0;continue}if(o[0]===3&&(!u||o[1]>u[0]&&o[1]<u[3])){a.label=o[1];break}if(o[0]===6&&a.label<u[1]){a.label=u[1],u=o;break}if(u&&a.label<u[2]){a.label=u[2],a.ops.push(o);break}u[2]&&a.ops.pop(),a.trys.pop();continue}o=t.call(e,a)}catch(f){o=[6,f],r=0}finally{n=u=0}if(o[0]&5)throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}}var Nn=function(){function e(){_0(this,e),Un(this,"_events",new Map),Un(this,"debug",!1)}return E0(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 a=this;return g0(function(){var l,s,o,f,h,y,_,C,d,m,c,p;return F0(this,function(b){switch(b.label){case 0:if(l=a._events.get(n),s=[],!l)return[3,10];o=l.slice(),f=!0,h=!1,y=void 0,b.label=1;case 1:b.trys.push([1,8,9,10]),_=o[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]),a.debug&&Pn.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(gt(u))),[4,d.apply(null,gt(u))];case 4:return m=b.sent(),a.debug&&Pn.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(gt(u),[m])),s.push(m),m===!1?[3,7]:[3,6];case 5:return c=b.sent(),l0(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,y=p,[3,10];case 9:try{!f&&_.return!=null&&_.return()}finally{if(h)throw y}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),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 A0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Hn(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&&Hn(e.prototype,t),n&&Hn(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 D0=[{key:"on_click",name:g("CMD.click",null,"\u70B9\u51FB\u65F6"),code:"click"},{key:"on_click_finish",name:g("CMD.finished",null,"\u6267\u884C\u5B8C\u6210\u65F6"),code:"click-finish"},{key:"on_change",name:g("CMD.valueChange",null,"\u503C\u53D1\u751F\u53D8\u5316\u65F6"),code:"change"},{key:"on_search",name:g("CMD.search",null,"\u641C\u7D22\u65F6"),code:"search"},{key:"on_list_change",name:g("CMD.listDataChange",null,"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6"),code:"list-change"},{key:"on_list_search",name:g("CMD.listDataCreate",null,"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6"),code:"list-search"},{key:"on_list_mounted",name:g("CMD.listDataBack",null,"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6"),code:"list-mounted"},{key:"on_list_delete",name:g("CMD.listDataDelete",null,"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6"),code:"list-delete"},{key:"on_list_before_insert",name:g("CMD.listDataAdd",null,"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D"),code:"list-before-insert"},{key:"on_input",name:g("CMD.onInput",null,"\u7528\u6237\u8F93\u5165\u65F6"),code:"input"},{key:"on_blur",name:g("CMD.onBlur",null,"\u5931\u53BB\u7126\u70B9\u65F6"),code:"blur"},{key:"on_focus",name:g("CMD.onFocus",null,"\u83B7\u53D6\u7126\u70B9\u65F6"),code:"focus"},{key:"on_wps_open",name:g("CMD.onOpenFile",null,"\u6253\u5F00\u6587\u4EF6\u65F6"),code:"wps-open"},{key:"on_wps_save",name:g("CMD.onSaveFile",null,"\u4FDD\u5B58\u6587\u4EF6\u65F6"),code:"wps-save"},{key:"on_wps_rename",name:g("CMD.rename",null,"\u91CD\u547D\u540D\u65F6"),code:"wps-rename"},{key:"on_list_actions",name:g("CMD.onClickBtn",null,"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6"),code:"list-actions"},{key:"on_list_render_operation",name:g("CMD.cellRender",null,"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6"),code:"list-render-operation"},{key:"on_list_rowclick",name:g("CMD.rowClick",null,"\u884C\u70B9\u51FB\u65F6"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:g("CMD.rowDelete",null,"\u884C\u5220\u9664\u524D"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:g("CMD.listDataImport",null,"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D"),code:"list-before-import"},{key:"on_list_rows_checked",name:g("CMD.rowSelected",null,"\u884C\u9009\u4E2D\u65F6"),code:"list-rows-checked"},{key:"on_change_tab",name:g("CMD.tabChange",null,"\u6807\u7B7E\u9875\u5207\u6362\u65F6"),code:"change-tab"},{key:"on_modal_ok",name:g("CMD.modalConfirm",null,"\u5F39\u7A97\u786E\u8BA4\u65F6"),code:"modal-ok"}],Ee=function(){function e(){A0(this,e)}return S0(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(a){return u.includes(a.key)}));var i=n.customEvents.map(function(a){var l=a.key;return a.namespace!==void 0&&a.namespace!==null&&a.namespace!==""&&(l=a.namespace+":"+a.key),{key:l,code:a.key,name:a.name}});return r=r.concat(i),r}}]),e}();w0(Ee,"events",D0);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 $0(e){if(Array.isArray(e))return _t(e)}function I0(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function R0(){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 Wn(e){return $0(e)||I0(e)||O0(e)||R0()}function O0(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 Et(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function zn(e,t,n){n!=="Runtime"&&(e.parent=t,Et(e,"parent"))}function P0(e,t,n){e.forEach(function(r){zn(r,t,n)})}var Gn=Symbol("targetKey");function Kn(e){var t;return(t=e[Gn])!==null&&t!==void 0?t:e}function Xn(e,t,n){return P0(e,t,n),new Proxy(e,{get:function(u,i){for(var a=arguments.length,l=new Array(a>2?a-2:0),s=2;s<a;s++)l[s-2]=arguments[s];var o;return i===Gn?u:(o=Reflect).get.apply(o,[u,i].concat(Wn(l)))},set:function(u,i,a){for(var l=arguments.length,s=new Array(l>3?l-3:0),o=3;o<l;o++)s[o-3]=arguments[o];var f;if(_e(e)&&i==="length"&&a===e.length)return!0;var h=(f=Reflect).set.apply(f,[u,i,a].concat(Wn(s)));return ht(a)&&zn(a,t,n),h}})}function bt(e,t,n,r,u){var i=r!=null?r:e,a=Xn(Kn(n!=null?n:[]),i,u);Object.defineProperty(e,t,{get:function(){return a},set:function(s){a=Xn(Kn(s),i,u)},enumerable:!0})}function x0(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 L0(e,t,n){return t&&Jn(e.prototype,t),n&&Jn(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 Qn=[],be=function(){function e(t){x0(this,e),Q(this,"registeredControlTypes",new Set),Q(this,"controlConfigMap",new Map),Q(this,"_controls",[]),Q(this,"_type",void 0),this._type=t,this._initControls(t)}return L0(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===P.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===P.FORM}},{key:"isListControl",value:function(n){return n.controlType===P.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===P.COLUMN}},{key:"createControl",value:function(n,r){var u=this;if(Array.isArray(n))return n.map(function(f){return u.createControl(f,r)});if(n.children&&(n.children=n.children.map(function(f){return u.createControl(f,r)})),this.isListControl(n)){var i=n.props;i.headers&&(i.headers=i.headers.map(function(f){return u.createControl(f,r)}))}var a=this.getControlFormType(n.type);if(a){var l=n;if(typeof r=="function"){var s=r(l);s&&(l=s)}var o;return a.mode==="Runtime"?(o=l,o.fieldType=a.controlFieldType,this._setParentPrototypeToSchema(o,this)):o=new a(l),o}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}}),Et(n,"parent")}},{key:"_setParentPrototypeToSchema",value:function(n,r){r._type==="Runtime"&&(Object.defineProperty(n,"parent",{configurable:!0,get:function(){var i=n.id,a=r._controlParentIdMap,l=r.instanceMap;if(!(!a||!l)){var s=a[i],o=l[i];if(!(!s&&!o)){var f=o.findIndex(function(_){return _==n}),h=l[s]||[],y;return h.length!==o.length?y=h[0]:y=h[f],y}}}}),Et(n,"parent"))}},{key:"createControlInstance",value:function(n,r){var u=this.getControlFormType(n);if(u)return new u(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(u){r.register(u[n]),e.staticControlsRuntimeRules.set(u.Runtime.controlType,u.Property.RuntimeRules),u.Property.mode=n})}}],[{key:"staticGetRules",value:function(n,r){var u=e.staticControlsRuntimeRules.get(n),i=[];if(u){var a=new u(r);i=Array.from(a)}return i}},{key:"register",value:function(n,r){var u=n.Designer,i=n.Runtime,a=n.Property;(!u||!i||!u.__is_control__||!i.__is_control__)&&ge("".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&&(xe("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),a.mode=r,this}}]),e}();Q(be,"staticControlsRuntimeRules",new Map),Q(be,"staticControls",Qn),Q(be,"staticRegisteredTypes",new Set(Qn.map(function(e){return e.Designer.controlType}))),Q(be,"staticRegisteredConfigs",new Map);function Bt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function V(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Zn=function e(t){Bt(this,e),V(this,"dataCode",void 0),V(this,"fieldCode",void 0),V(this,"fieldType",void 0),V(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){Bt(this,e),V(this,"minWidth",void 0),V(this,"maxWidth",void 0),V(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},Yn;(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"})(Yn||(Yn={}));var er;(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",e.IS_SHOW_SIMPLE_SEARCH="isShowSimpleSearch",e.IS_SHOW_TOOL_BAE="isShowToolbar"})(er||(er={}));var Ct;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(Ct||(Ct={}));var T0=function e(t){Bt(this,e),V(this,"width",void 0),V(this,"height",void 0),V(this,"widthConfig",void 0),V(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 j0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ft(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Le(e,t,n){return tr()?Le=Reflect.construct:Le=function(u,i,a){var l=[null];l.push.apply(l,i);var s=Function.bind.apply(u,l),o=new s;return a&&Ce(o,a.prototype),o},Le.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 Be(e){return Be=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Be(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&&Ce(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:j0(e)}function Ce(e,t){return Ce=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ce(e,t)}function U0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function At(e){var t=typeof Map=="function"?new Map:void 0;return At=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 Le(r,arguments,Be(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Ce(u,r)},At(e)}function tr(){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 N0(e){var t=tr();return function(){var r=Be(e),u;if(t){var i=Be(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return k0(this,u)}}var St=function e(t){Ft(this,e),G(this,"isHide",{type:"boolean"})},nr=function(e){V0(n,e);var t=N0(n);function n(r){return Ft(this,n),t.call(this)}return n}(At(Array)),K=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";Ft(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 T0(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",St),G(K,"RuntimeRules",nr);function k(){return k=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},k.apply(this,arguments)}function H0(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function wt(e){return wt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},wt(e)}function Me(e,t){return Me=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Me(e,t)}function W0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Te(e,t,n){return W0()?Te=Reflect.construct:Te=function(u,i,a){var l=[null];l.push.apply(l,i);var s=Function.bind.apply(u,l),o=new s;return a&&Me(o,a.prototype),o},Te.apply(null,arguments)}function z0(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Dt(e){var t=typeof Map=="function"?new Map:void 0;return Dt=function(r){if(r===null||!z0(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Te(r,arguments,wt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Me(u,r)},Dt(e)}var G0=/%[sdj%]/g,rr=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(rr=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function $t(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function T(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,u=t[0],i=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var a=String(u).replace(G0,function(l){if(l==="%%")return"%";if(r>=i)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 a}return u}function K0(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function $(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||K0(t)&&typeof e=="string"&&!e)}function X0(e,t,n){var r=[],u=0,i=e.length;function a(l){r.push.apply(r,l),u++,u===i&&n(r)}e.forEach(function(l){t(l,a)})}function ur(e,t,n){var r=0,u=e.length;function i(a){if(a&&a.length){n(a);return}var l=r;r=r+1,l<u?t(e[l],i):n([])}i([])}function J0(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var ir=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}(Dt(Error));function Q0(e,t,n,r){if(t.first){var u=new Promise(function(h,y){var _=function(m){return r(m),m.length?y(new ir(m,$t(m))):h()},C=J0(e);ur(C,n,_)});return u.catch(function(h){return h}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var a=Object.keys(e),l=a.length,s=0,o=[],f=new Promise(function(h,y){var _=function(d){if(o.push.apply(o,d),s++,s===l)return r(o),o.length?y(new ir(o,$t(o))):h()};a.length||(r(o),h()),a.forEach(function(C){var d=e[C];i.indexOf(C)!==-1?ur(d,n,_):X0(d,n,_)})});return f.catch(function(h){return h}),f}function ar(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 or(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=k(k({},e[n]),r):e[n]=r}}return e}function lr(e,t,n,r,u,i){e.required&&(!n.hasOwnProperty(e.field)||$(t,i||e.type))&&r.push(T(u.messages.required,e.fullField))}function Z0(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(T(u.messages.whitespace,e.fullField))}var It={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},Fe={integer:function(t){return Fe.number(t)&&parseInt(t,10)===t},float:function(t){return Fe.number(t)&&!Fe.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"&&!Fe.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(It.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(It.url)},hex:function(t){return typeof t=="string"&&!!t.match(It.hex)}};function Y0(e,t,n,r,u){if(e.required&&t===void 0){lr(e,t,n,r,u);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],a=e.type;i.indexOf(a)>-1?Fe[a](t)||r.push(T(u.messages.types[a],e.fullField,e.type)):a&&typeof t!==e.type&&r.push(T(u.messages.types[a],e.fullField,e.type))}function ev(e,t,n,r,u){var i=typeof e.len=="number",a=typeof e.min=="number",l=typeof e.max=="number",s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,o=t,f=null,h=typeof t=="number",y=typeof t=="string",_=Array.isArray(t);if(h?f="number":y?f="string":_&&(f="array"),!f)return!1;_&&(o=t.length),y&&(o=t.replace(s,"_").length),i?o!==e.len&&r.push(T(u.messages[f].len,e.fullField,e.len)):a&&!l&&o<e.min?r.push(T(u.messages[f].min,e.fullField,e.min)):l&&!a&&o>e.max?r.push(T(u.messages[f].max,e.fullField,e.max)):a&&l&&(o<e.min||o>e.max)&&r.push(T(u.messages[f].range,e.fullField,e.min,e.max))}var ie="enum";function tv(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 nv(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 E={required:lr,whitespace:Z0,type:Y0,range:ev,enum:tv,pattern:nv};function rv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t,"string")&&!e.required)return n();E.required(e,t,r,i,u,"string"),$(t,"string")||(E.type(e,t,r,i,u),E.range(e,t,r,i,u),E.pattern(e,t,r,i,u),e.whitespace===!0&&E.whitespace(e,t,r,i,u))}n(i)}function uv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t)&&!e.required)return n();E.required(e,t,r,i,u),t!==void 0&&E.type(e,t,r,i,u)}n(i)}function iv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(t===""&&(t=void 0),$(t)&&!e.required)return n();E.required(e,t,r,i,u),t!==void 0&&(E.type(e,t,r,i,u),E.range(e,t,r,i,u))}n(i)}function av(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t)&&!e.required)return n();E.required(e,t,r,i,u),t!==void 0&&E.type(e,t,r,i,u)}n(i)}function ov(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t)&&!e.required)return n();E.required(e,t,r,i,u),$(t)||E.type(e,t,r,i,u)}n(i)}function lv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t)&&!e.required)return n();E.required(e,t,r,i,u),t!==void 0&&(E.type(e,t,r,i,u),E.range(e,t,r,i,u))}n(i)}function sv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t)&&!e.required)return n();E.required(e,t,r,i,u),t!==void 0&&(E.type(e,t,r,i,u),E.range(e,t,r,i,u))}n(i)}function cv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(t==null&&!e.required)return n();E.required(e,t,r,i,u,"array"),t!=null&&(E.type(e,t,r,i,u),E.range(e,t,r,i,u))}n(i)}function fv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t)&&!e.required)return n();E.required(e,t,r,i,u),t!==void 0&&E.type(e,t,r,i,u)}n(i)}var dv="enum";function pv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t)&&!e.required)return n();E.required(e,t,r,i,u),t!==void 0&&E[dv](e,t,r,i,u)}n(i)}function vv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t,"string")&&!e.required)return n();E.required(e,t,r,i,u),$(t,"string")||E.pattern(e,t,r,i,u)}n(i)}function hv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t,"date")&&!e.required)return n();if(E.required(e,t,r,i,u),!$(t,"date")){var l;t instanceof Date?l=t:l=new Date(t),E.type(e,l,r,i,u),l&&E.range(e,l.getTime(),r,i,u)}}n(i)}function yv(e,t,n,r,u){var i=[],a=Array.isArray(t)?"array":typeof t;E.required(e,t,r,i,u,a),n(i)}function Rt(e,t,n,r,u){var i=e.type,a=[],l=e.required||!e.required&&r.hasOwnProperty(e.field);if(l){if($(t,i)&&!e.required)return n();E.required(e,t,r,a,u,i),$(t,i)||E.type(e,t,r,a,u)}n(a)}function mv(e,t,n,r,u){var i=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if($(t)&&!e.required)return n();E.required(e,t,r,i,u)}n(i)}var Ae={string:rv,method:uv,number:iv,boolean:av,regexp:ov,integer:lv,float:sv,array:cv,object:fv,enum:pv,pattern:vv,date:hv,url:Rt,hex:Rt,email:Rt,required:yv,any:mv};function Ot(){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 Pt=Ot();function Z(e){this.rules=null,this._messages=Pt,this.define(e)}Z.prototype={messages:function(t){return t&&(this._messages=or(Ot(),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,a=n,l=r;if(typeof a=="function"&&(l=a,a={}),!this.rules||Object.keys(this.rules).length===0)return l&&l(),Promise.resolve();function s(d){var m,c=[],p={};function b(A){if(Array.isArray(A)){var w;c=(w=c).concat.apply(w,A)}else c.push(A)}for(m=0;m<d.length;m++)b(d[m]);c.length?p=$t(c):(c=null,p=null),l(c,p)}if(a.messages){var o=this.messages();o===Pt&&(o=Ot()),or(o,a.messages),a.messages=o}else a.messages=this.messages();var f,h,y={},_=a.keys||Object.keys(this.rules);_.forEach(function(d){f=u.rules[d],h=i[d],f.forEach(function(m){var c=m;typeof c.transform=="function"&&(i===t&&(i=k({},i)),h=i[d]=c.transform(h)),typeof c=="function"?c={validator:c}:c=k({},c),c.validator=u.getValidationMethod(c),c.field=d,c.fullField=c.fullField||d,c.type=u.getType(c),c.validator&&(y[d]=y[d]||[],y[d].push({rule:c,value:h,source:i,field:d}))})});var C={};return Q0(y,a,function(d,m){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,S){return k(k({},S),{},{fullField:c.fullField+"."+N})}function A(N){N===void 0&&(N=[]);var S=N;if(Array.isArray(S)||(S=[S]),!a.suppressWarning&&S.length&&Z.warning("async-validator:",S),S.length&&c.message!==void 0&&(S=[].concat(c.message)),S=S.map(ar(c)),a.first&&S.length)return C[c.field]=1,m(S);if(!p)m(S);else{if(c.required&&!d.value)return c.message!==void 0?S=[].concat(c.message).map(ar(c)):a.error&&(S=[a.error(c,T(a.messages.required,c.field))]),m(S);var H={};if(c.defaultField)for(var Xr in d.value)d.value.hasOwnProperty(Xr)&&(H[Xr]=c.defaultField);H=k(k({},H),d.rule.fields);for(var fe in H)if(H.hasOwnProperty(fe)){var g5=Array.isArray(H[fe])?H[fe]:[H[fe]];H[fe]=g5.map(b.bind(null,fe))}var Jr=new Z(H);Jr.messages(a.messages),d.rule.options&&(d.rule.options.messages=a.messages,d.rule.options.error=a.error),Jr.validate(d.value,d.rule.options||a,function(_n){var de=[];S&&S.length&&de.push.apply(de,S),_n&&_n.length&&de.push.apply(de,_n),m(de.length?de:null)})}}var w;c.asyncValidator?w=c.asyncValidator(c,d.value,A,d.source,a):c.validator&&(w=c.validator(c,d.value,A,d.source,a),w===!0?A():w===!1?A(c.message||c.field+" fails"):w instanceof Array?A(w):w instanceof Error&&A(w.message)),w&&w.then&&w.then(function(){return A()},function(N){return A(N)})},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&&!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}},Z.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},Z.warning=rr,Z.messages=Pt,Z.validators=Ae;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 _v(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new Z(e);return n.messages(Object.assign(gv,t)),n}var sr=new Nn;function xt(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 Ev(e){if(Array.isArray(e))return e}function bv(e){if(Array.isArray(e))return xt(e)}function cr(e,t,n,r,u,i,a){try{var l=e[i](a),s=l.value}catch(o){n(o);return}l.done?t(s):Promise.resolve(s).then(r,u)}function fr(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function a(s){cr(i,r,u,a,l,"next",s)}function l(s){cr(i,r,u,a,l,"throw",s)}a(void 0)})}}function Bv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function dr(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 Cv(e,t,n){return t&&dr(e.prototype,t),n&&dr(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 pr(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function vr(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 Av(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function hr(e){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 Sv(e){return Ev(e)||vr(e)||yr(e)||Fv()}function Lt(e){return bv(e)||vr(e)||yr(e)||Av()}function wv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function yr(e,t){if(!!e){if(typeof e=="string")return xt(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 xt(e,t)}}function mr(e,t){var n,r,u,i,a={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:l(0),throw:l(1),return:l(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function l(o){return function(f){return s([o,f])}}function s(o){if(n)throw new TypeError("Generator is already executing.");for(;a;)try{if(n=1,r&&(u=o[0]&2?r.return:o[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,o[1])).done)return u;switch(r=0,u&&(o=[o[0]&2,u.value]),o[0]){case 0:case 1:u=o;break;case 4:return a.label++,{value:o[1],done:!1};case 5:a.label++,r=o[1],o=[0];continue;case 7:o=a.ops.pop(),a.trys.pop();continue;default:if(u=a.trys,!(u=u.length>0&&u[u.length-1])&&(o[0]===6||o[0]===2)){a=0;continue}if(o[0]===3&&(!u||o[1]>u[0]&&o[1]<u[3])){a.label=o[1];break}if(o[0]===6&&a.label<u[1]){a.label=u[1],u=o;break}if(u&&a.label<u[2]){a.label=u[2],a.ops.push(o);break}u[2]&&a.ops.pop(),a.trys.pop();continue}o=t.call(e,a)}catch(f){o=[6,f],r=0}finally{n=u=0}if(o[0]&5)throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}}var x=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",_r),F(this,"removeSetting",gr),this._callControlHooks("preInstance",n);var u=pr(this,t)?this.constructor:void 0,i=u.controlName,a=u.controlIcon,l=u.controlType,s=u.controlFieldType,o=u.controlEventKeys,f=u.controlCustomEvents,h=u.name,y=u.setting,_=u.slots,C=u.slotPosition;i&&a&&l||xn("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:st(10),this.name=i,this.icon=a;var m;this.type=(m=n==null?void 0:n.type)!==null&&m!==void 0?m:l,this.props=new K(n==null?void 0:n.props,(pr(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:s,this.eventKeys=z(o),this.customEvents=z(f),this.slots=z(_),this.slotPosition=z(C),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return Cv(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 a,l=Sv(u),s=l[0],o=l.slice(1);return(a=sr).emit.apply(a,[s,this].concat(Lt(o)))}},{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),Tn(this.props,r,u),this.postUpdate(r,u)}},{key:"preValidate",value:function(){var r=this;return fr(function(){var u,i,a;return mr(this,function(l){switch(l.label){case 0:return u=hr({},r.rules),[4,r._callControlHooks("preValidate",u)];case 1:return i=l.sent(),a=i[i.length-1],[2,a===!1?void 0:a]}})})()}},{key:"validate",value:function(r,u){var i=this;return fr(function(){var a,l,s,o;return mr(this,function(f){switch(f.label){case 0:return[4,i.preValidate()];case 1:a=f.sent(),l=a!==void 0?a:hr({},i.rules),Array.isArray(u)&&u.forEach(function(h){l.hasOwnProperty(h)&&delete l[h]}),s=_v(l,r),f.label=2;case 2:return f.trys.push([2,4,,5]),[4,s.validate(i.props)];case 3:return f.sent(),[2,!0];case 4:throw o=f.sent(),o.control||(o.control=i),o;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,a=this.type,l=this.props,s=l.dataBind,o=l.datasourceBind,f=l.optionConfig,h=l.caption,y=l.required,_=l.maxLength,C=l.options,d=l.encrypted,m=l.encryptedMode;if(!(!u&&!s&&!o)){var c={parentId:r,fieldType:u,controlId:i,caption:h,type:a,props:{}};switch(s&&(c.dataBind=s),f){case"datasource":case void 0:o&&(c.datasourceBind=o);break;case"custom":c.props.options=C;break}return y!==void 0&&(c.required=y),_!==void 0&&(c.maxLength=_),d!==void 0&&(c.encrypted=d),m!==void 0&&(c.encryptedMode=m),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,Lt(u.add))}u.remove&&this.removeSettingItem(u.remove),u.update}}}]),t}();F(x,"mode","Designer"),F(x,"slots",void 0),F(x,"slotPosition",void 0),F(x,"controlName","\u63A7\u4EF6"),F(x,"controlIcon","icon"),F(x,"controlType","control"),F(x,"controlFieldType",void 0),F(x,"controlEventKeys",[]),F(x,"controlCustomEvents",[]),F(x,"setting",[]),F(x,"__is_control__",!0),F(x,"removeSettingItem",gr),F(x,"updateSettingItem",_r);function gr(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u,i=typeof r!="string",a=(u=t.setting)===null||u===void 0?void 0:u.findIndex(function(o){return o.key===(i?r.key:r)});if(a!==-1){var l,s;i?t.setting[a].showItems=(l=t.setting[a].showItems)===null||l===void 0?void 0:l.filter(function(o){return!r.hideItems.includes(o)}):t.setting.splice(a,1),i&&!(!((s=t.setting[a].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(a,1)}})}function _r(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var i=n.setting.find(function(o){return o.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if((typeof t=="undefined"?"undefined":wv(t))==="object"){var a,l=(a=t.type)!==null&&a!==void 0?a:"replace";if(l==="replace")i.showItems=t.showItems;else{var s;(s=i.showItems).push.apply(s,Lt(t.showItems))}}}})}function Dv(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 $v(e,t,n){return t&&Er(e.prototype,t),n&&Er(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 Iv(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var Se=function(){function t(n){Dv(this,t),j(this,"id",void 0),j(this,"type",void 0),j(this,"controlType",void 0),j(this,"props",void 0),j(this,"fieldType",void 0),j(this,"customEvents",[]),j(this,"pageStatus",void 0),j(this,"parent",null);var r=Iv(this,t)?this.constructor:void 0,u=r.controlType,i=r.controlFieldType,a=r.name,l=r.controlCustomEvents;u||xn("The ".concat(a," controlType is not define"));var s;this.id=(s=n==null?void 0:n.id)!==null&&s!==void 0?s:st(10);var o;this.type=(o=n==null?void 0:n.type)!==null&&o!==void 0?o:u,this.props=new K(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:i;var y;this.pageStatus=(y=n==null?void 0:n.pageStatus)!==null&&y!==void 0?y:Ct.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}();j(Se,"mode","Runtime"),j(Se,"controlType","control"),j(Se,"controlFieldType",void 0),j(Se,"__is_control__",!0),j(Se,"controlCustomEvents",[]);function br(e){return(e==null?void 0:e.dataCode)!==void 0&&(e==null?void 0:e.fieldCode)!==void 0}function I(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Mt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function D(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function je(e){return je=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},je(e)}function Tt(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 Rv(e,t){return t&&(Ov(t)==="object"||typeof t=="function")?t:I(e)}function jt(e,t){return jt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},jt(e,t)}function Ov(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Pv(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Vt(e){var t=Pv();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 Rv(this,u)}}var xv=function(e){Tt(n,e);var t=Vt(n);function n(r){Mt(this,n);var u;u=t.call(this,r),D(I(u),"dataBind",{}),D(I(u),"caption",{type:"string",required:!0,message:g("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")}),D(I(u),"isHideCaption",{type:"boolean"}),D(I(u),"labelPosition",{type:"enum",enum:["top","left"]}),D(I(u),"defaultState",{type:"enum",enum:["default","readonly"]}),D(I(u),"required",{type:"boolean"}),D(I(u),"captionTip",{type:"string",required:!1,message:g("CMD.pleaseEnterCaptionTip",null,"\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED")});var i={fieldCode:{type:"string",required:!0,message:g("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},dataCode:{type:"string",required:!0,message:g("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}};if(br(r.dataBind))u.dataBind={type:"object",required:!0,fields:z(i),message:g("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};else{var a={type:"object",required:!0,fields:{},message:g("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};Object.keys(r.dataBind).forEach(function(l){a.fields[l]={type:"object",required:!0,fields:z(i),message:g("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}}),u.dataBind=a}return r.isShowCaptionTip&&(u.captionTip.required=!0),u}return n}(St),Lv=function(e){Tt(n,e);var t=Vt(n);function n(r){Mt(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:g("CMD.runtimeRequired",{caption:r.caption},"{caption}\u5FC5\u586B")}),u}return n}(nr),qt=function(e){Tt(n,e);var t=Vt(n);function n(r){Mt(this,n);var u;u=t.call(this,r),D(I(u),"caption",void 0),D(I(u),"isHideCaption",void 0),D(I(u),"isShowCaptionTip",void 0),D(I(u),"captionTip",void 0),D(I(u),"labelPosition",void 0),D(I(u),"dataBind",void 0),D(I(u),"defaultValue",void 0),D(I(u),"placeholder",void 0),D(I(u),"defaultState",void 0),D(I(u),"required",void 0),D(I(u),"requiredMessage",void 0);var i;u.caption=(i=r==null?void 0:r.caption)!==null&&i!==void 0?i:"";var a;u.isHideCaption=(a=r==null?void 0:r.isHideCaption)!==null&&a!==void 0?a:!1;var l;u.isShowCaptionTip=(l=r==null?void 0:r.isShowCaptionTip)!==null&&l!==void 0?l:!1;var s;u.captionTip=(s=r==null?void 0:r.captionTip)!==null&&s!==void 0?s:"";var o;u.defaultState=(o=r==null?void 0:r.defaultState)!==null&&o!==void 0?o:"default";var f;u.labelPosition=(f=r==null?void 0:r.labelPosition)!==null&&f!==void 0?f:"top";var h;u.placeholder=(h=r==null?void 0:r.placeholder)!==null&&h!==void 0?h:"";var y;u.required=(y=r==null?void 0:r.required)!==null&&y!==void 0?y:!1;var _;u.requiredMessage=(_=r==null?void 0:r.requiredMessage)!==null&&_!==void 0?_:"",u.dataBind=new Zn(r==null?void 0:r.dataBind);var C;return u.defaultValue=(C=r==null?void 0:r.defaultValue)!==null&&C!==void 0?C:"",u}return n}(K);D(qt,"Rules",xv),D(qt,"RuntimeRules",Lv);function kt(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Mv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ve(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function qe(e){return qe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},qe(e)}function Tv(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 jv(e,t){return t&&(Vv(t)==="object"||typeof t=="function")?t:kt(e)}function Ut(e,t){return Ut=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ut(e,t)}function Vv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function qv(){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 kv(e){var t=qv();return function(){var r=qe(e),u;if(t){var i=qe(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return jv(this,u)}}var Br=function(e){Tv(n,e);var t=kv(n);function n(r){Mv(this,n);var u;return u=t.call(this,r),Ve(kt(u),"controlType","form"),Ve(kt(u),"props",void 0),u.props=new qt(r==null?void 0:r.props),u}return n}(x);Ve(Br,"controlEventKeys",["on_change","on_focus","on_blur"]),Ve(Br,"controlCustomAttributes",void 0);function Uv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Nv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ke(e){return ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ke(e)}function Hv(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 Wv(e,t){return t&&(zv(t)==="object"||typeof t=="function")?t:Uv(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Nt(e,t)}function zv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Gv(){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 Kv(e){var t=Gv();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 Wv(this,u)}}var Xv=function(e){Hv(n,e);var t=Kv(n);function n(r){return Nv(this,n),t.call(this,r)}return n}(K);function Ht(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Jv(e){if(Array.isArray(e))return Ht(e)}function ne(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Cr(e,t,n,r,u,i,a){try{var l=e[i](a),s=l.value}catch(o){n(o);return}l.done?t(s):Promise.resolve(s).then(r,u)}function Qv(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function a(s){Cr(i,r,u,a,l,"next",s)}function l(s){Cr(i,r,u,a,l,"throw",s)}a(void 0)})}}function Zv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Fr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Yv(e,t,n){return t&&Fr(e.prototype,t),n&&Fr(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 ae(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?ae=Reflect.get:ae=function(u,i,a){var l=lh(u,i);if(!!l){var s=Object.getOwnPropertyDescriptor(l,i);return s.get?s.get.call(a||u):s.value}},ae(e,t,n||e)}function ee(e){return ee=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ee(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&&Wt(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){Y(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 ah(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 oh(e,t){return t&&(sh(t)==="object"||typeof t=="function")?t:ne(e)}function Wt(e,t){return Wt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Wt(e,t)}function lh(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=ee(e),e!==null););return e}function Ar(e){return Jv(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 Ht(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ht(e,t)}}function fh(){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 dh(e){var t=fh();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 oh(this,u)}}function ph(e,t){var n,r,u,i,a={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:l(0),throw:l(1),return:l(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function l(o){return function(f){return s([o,f])}}function s(o){if(n)throw new TypeError("Generator is already executing.");for(;a;)try{if(n=1,r&&(u=o[0]&2?r.return:o[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,o[1])).done)return u;switch(r=0,u&&(o=[o[0]&2,u.value]),o[0]){case 0:case 1:u=o;break;case 4:return a.label++,{value:o[1],done:!1};case 5:a.label++,r=o[1],o=[0];continue;case 7:o=a.ops.pop(),a.trys.pop();continue;default:if(u=a.trys,!(u=u.length>0&&u[u.length-1])&&(o[0]===6||o[0]===2)){a=0;continue}if(o[0]===3&&(!u||o[1]>u[0]&&o[1]<u[3])){a.label=o[1];break}if(o[0]===6&&a.label<u[1]){a.label=u[1],u=o;break}if(u&&a.label<u[2]){a.label=u[2],a.ops.push(o);break}u[2]&&a.ops.pop(),a.trys.pop();continue}o=t.call(e,a)}catch(f){o=[6,f],r=0}finally{n=u=0}if(o[0]&5)throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}}var vh=1e4,Sr=function(t){eh(r,t);var n=dh(r);function r(u){Zv(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 a=th(this,r)?this.constructor:void 0,l=a.excludes,s=a.childrenMaxLength;return i.props=new Xv(u==null?void 0:u.props),bt(ne(i),"children",u==null?void 0:u.children,void 0,"Designer"),i.excludes=z(l),i.childrenMaxLength=s,i}return Yv(r,[{key:"judgeExcludesChildren",value:function(i){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(i)}},{key:"judgeJoinChildren",value:function(i){var a=this.judgeExcludesChildren(i);return a&&this.childrenMaxLength>this.children.length}},{key:"validate",value:function(i,a){var l=this,s=this,o=function(){return ae(ee(r.prototype),"validate",l)};return Qv(function(){return ph(this,function(f){switch(f.label){case 0:return[4,o().call(s,i,a)];case 1:return f.sent(),[4,Promise.all(s.children.map(function(h){return h.validate(i,a)}))];case 2:return f.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var i=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,a=ae(ee(r.prototype),"toDataBindModel",this).call(this),l=a?[a]:[];return this.children.reduce(function(s,o){var f=o.toDataBindModel(i);if(Array.isArray(f)){var h=f.filter(function(y){return!!y});return Ar(s).concat(Ar(h))}return f&&s.push(f),s},l)}},{key:"toSchema",value:function(){var i=ae(ee(r.prototype),"toSchema",this).call(this),a=this.children.map(function(l){var s=l.toSchema();return s});return ah(uh({},i),{children:a})}}]),r}(x);Y(Sr,"excludes",!1),Y(Sr,"childrenMaxLength",vh);function X(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function hh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function oe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ue(e){return Ue=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ue(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&&zt(e,t)}function mh(e,t){return t&&(gh(t)==="object"||typeof t=="function")?t:X(e)}function zt(e,t){return zt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},zt(e,t)}function gh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function _h(){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 Eh(e){var t=_h();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 mh(this,u)}}var bh=function(e){yh(n,e);var t=Eh(n);function n(r,u,i){hh(this,n);var a;a=t.call(this,u),oe(X(a),"headers",void 0),oe(X(a),"footers",void 0),oe(X(a),"pageIndex",void 0),oe(X(a),"pageSize",void 0),oe(X(a),"pageSizeOptions",void 0),oe(X(a),"totalCount",void 0),bt(X(a),"headers",u==null?void 0:u.headers,r,i),bt(X(a),"footers",u==null?void 0:u.footers,r);var l;a.pageIndex=(l=u==null?void 0:u.pageIndex)!==null&&l!==void 0?l:1;var s;a.pageSize=(s=u==null?void 0:u.pageSize)!==null&&s!==void 0?s:20;var o;a.pageSizeOptions=(o=u==null?void 0:u.pageSizeOptions)!==null&&o!==void 0?o:[20];var f;return a.totalCount=(f=u==null?void 0:u.totalCount)!==null&&f!==void 0?f:0,a}return n}(K);function Gt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Bh(e){if(Array.isArray(e))return Gt(e)}function Ne(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function wr(e,t,n,r,u,i,a){try{var l=e[i](a),s=l.value}catch(o){n(o);return}l.done?t(s):Promise.resolve(s).then(r,u)}function Ch(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function a(s){wr(i,r,u,a,l,"next",s)}function l(s){wr(i,r,u,a,l,"throw",s)}a(void 0)})}}function Fh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Dr(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&&Dr(e.prototype,t),n&&Dr(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 le(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?le=Reflect.get:le=function(u,i,a){var l=Rh(u,i);if(!!l){var s=Object.getOwnPropertyDescriptor(l,i);return s.get?s.get.call(a||u):s.value}},le(e,t,n||e)}function te(e){return te=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},te(e)}function Sh(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 wh(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Dh(){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 $r(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 $h(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)):$h(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Ih(e,t){return t&&(Oh(t)==="object"||typeof t=="function")?t:Ne(e)}function Kt(e,t){return Kt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Kt(e,t)}function Rh(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=te(e),e!==null););return e}function Rr(e){return Bh(e)||wh(e)||Ph(e)||Dh()}function Oh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ph(e,t){if(!!e){if(typeof e=="string")return Gt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Gt(e,t)}}function xh(){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 Lh(e){var t=xh();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 Ih(this,u)}}function Mh(e,t){var n,r,u,i,a={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:l(0),throw:l(1),return:l(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function l(o){return function(f){return s([o,f])}}function s(o){if(n)throw new TypeError("Generator is already executing.");for(;a;)try{if(n=1,r&&(u=o[0]&2?r.return:o[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,o[1])).done)return u;switch(r=0,u&&(o=[o[0]&2,u.value]),o[0]){case 0:case 1:u=o;break;case 4:return a.label++,{value:o[1],done:!1};case 5:a.label++,r=o[1],o=[0];continue;case 7:o=a.ops.pop(),a.trys.pop();continue;default:if(u=a.trys,!(u=u.length>0&&u[u.length-1])&&(o[0]===6||o[0]===2)){a=0;continue}if(o[0]===3&&(!u||o[1]>u[0]&&o[1]<u[3])){a.label=o[1];break}if(o[0]===6&&a.label<u[1]){a.label=u[1],u=o;break}if(u&&a.label<u[2]){a.label=u[2],a.ops.push(o);break}u[2]&&a.ops.pop(),a.trys.pop();continue}o=t.call(e,a)}catch(f){o=[6,f],r=0}finally{n=u=0}if(o[0]&5)throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}}var Th=function(e){Sh(n,e);var t=Lh(n);function n(r){Fh(this,n);var u;return u=t.call(this,r),He(Ne(u),"controlType","list"),He(Ne(u),"props",void 0),u.props=new bh(Ne(u),r==null?void 0:r.props,"Designer"),u}return Ah(n,[{key:"validate",value:function(u,i){var a=this,l=this,s=function(){return le(te(n.prototype),"validate",a)};return Ch(function(){return Mh(this,function(o){switch(o.label){case 0:return[4,s().call(l,u)];case 1:return o.sent(),[4,Promise.all(l.props.headers.map(function(f){return f.validate(u,i)}))];case 2:return o.sent(),[2,!0]}})})()}},{key:"toDataBindModel",value:function(){var u=le(te(n.prototype),"toDataBindModel",this).call(this),i=u?[u]:[],a=this.id;return this.props.headers.reduce(function(l,s){var o=s.toDataBindModel(a);if(Array.isArray(o)){var f=o.filter(function(h){return!!h});return Rr(l).concat(Rr(f))}return o&&l.push(o),l},i)}},{key:"toSchema",value:function(){var u=le(te(n.prototype),"toSchema",this).call(this),i=this.props.headers.map(function(a){return a.toSchema()});return Ir($r({},u),{props:Ir($r({},this.props),{headers:i})})}}]),n}(x);He(Th,"controlFieldType",q.LIST);function L(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Or(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 Pr(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 jh(e,t){return t&&(Vh(t)==="object"||typeof t=="function")?t:L(e)}function Xt(e,t){return Xt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Xt(e,t)}function Vh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function qh(){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 xr(e){var t=qh();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 jh(this,u)}}var kh=function(e){Pr(n,e);var t=xr(n);function n(r){Or(this,n);var u;return u=t.call(this,r),M(L(u),"caption",{type:"string",required:!0,message:g("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")}),M(L(u),"width",{type:"number",required:!1,message:g("CMD.pleaseEnterColumnWidth",null,"\u8BF7\u8F93\u5165\u5217\u5BBD")}),u.width.required=r.widthType==="px",u}return n}(St),Uh=function(e){Pr(n,e);var t=xr(n);function n(r){Or(this,n);var u;u=t.call(this,r),M(L(u),"widthType",void 0),M(L(u),"width",void 0),M(L(u),"caption",void 0),M(L(u),"dataBind",void 0),M(L(u),"autoWidth",void 0),M(L(u),"fixed",void 0),M(L(u),"sort",void 0),M(L(u),"align",void 0),M(L(u),"colSpan",void 0),M(L(u),"autoHeight",void 0),M(L(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 a;u.caption=(a=r==null?void 0:r.caption)!==null&&a!==void 0?a:"";var l;u.fixed=(l=r==null?void 0:r.fixed)!==null&&l!==void 0?l:"none",u.autoWidth=new M0(r==null?void 0:r.autoWidth),u.dataBind=new Zn(r==null?void 0:r.dataBind);var s;u.sort=(s=r==null?void 0:r.sort)!==null&&s!==void 0?s:!0,u.align=r==null?void 0:r.align,u.colSpan=r==null?void 0:r.colSpan;var o;return u.autoHeight=(o=r==null?void 0:r.autoHeight)!==null&&o!==void 0?o:!1,u}return n}(K);M(Uh,"Rules",kh);function Jt(e){return"children"in e&&_e(e.children)}function Lr(e){return"headers"in e.props&&_e(e.props.headers)}function ze(e,t){Array.isArray(e)&&e.map(n=>{n.type===v.SUBTABLE?ze(n.props.headers,t):Jt(n)?ze(n==null?void 0:n.children,t):n.controlType===P.FORM&&t(n)})}const Nh=[v.AMOUNT,v.CALC,v.DATE_RANGE];g("CMD.amount",null,"\u91D1\u989D"),q.DECIMAL,g("CMD.currency",null,"\u5E01\u79CD"),q.VARCHAR,g("CMD.result",null,"\u7ED3\u679C"),q.DECIMAL,g("CMD.unit",null,"\u5355\u4F4D"),q.VARCHAR,g("CMD.startTime",null,"\u5F00\u59CB\u65F6\u95F4"),q.TIMESTAMP,g("CMD.endTime",null,"\u7ED3\u675F\u65F6\u95F4"),q.TIMESTAMP;function Hh(e){let t=[];return ze(e,n=>{n.controlType===P.FORM?t.push(n):(n.type,v.SUBTABLE)}),t}function Wh(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===v.TITLE)return n;if(Nh.includes(n.type)){const r=n.dataBind;Object.keys(r).forEach(u=>{const i=r[u],a=n.controlId+"_"+u;i.fieldCode=Mr(a),i.dataCode=t})}else n.dataBind.fieldCode=Mr(n.controlId),n.dataBind.dataCode=t;return n})}function Mr(e){const t="field_";return e.startsWith(t)?e:t+e}function Qt(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function Zt(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Yt(e,t,n){return En(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(u=>u.validate(t,n)))).every(u=>u):yield e.validate(t,n)})}const zh=[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],Gh=[v.CALC],Kh={check:{id:"listPageCheckBtnId",caption:g("CMD.view",null,"\u67E5\u770B")},edit:{id:"listPageEditBtnId",caption:g("CMD.edit",null,"\u7F16\u8F91")},delete:{id:"listPageDeleteBtnId",caption:g("CMD.delete",null,"\u5220\u9664")}};function we(e,t){var r,u,i,a,l,s,o,f,h;const n=[];if(_e(e))n.push(...e.map(y=>we(y,t)).flat());else{const y=e.type,{caption:_,content:C}=e.props;let d;if(zh.includes(y))y===v.OPERATION_COLUMN&&Object.entries(Kh).reduce((m,[c,{caption:p,id:b}])=>{var w;const A=e.props[c];return A&&A.isShow&&m.push({controlId:b,caption:p,type:e.type,controlType:e.controlType,parentId:(w=t==null?void 0:t.controlId)!=null?w:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),m},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:!Gh.includes(y),canRead:!0,canHide:!0,group:"element"},t&&t.type===v.SUBTABLE&&(d.caption=t.caption+"_"+d.caption),y===v.VUE_FORM_ITEM&&(d.caption=e.props.controlExportName||e.name),(e.controlType===P.FORM||e.controlType===P.COLUMN)&&((i=(u=e.props)==null?void 0:u.dataBind)==null?void 0:i.fieldCode)!==void 0&&((l=(a=e.props)==null?void 0:a.dataBind)==null?void 0:l.fieldCode)!==""&&(d.group="field"),n.push(d),y===v.VUE_FORM_ITEM){let m="element";((o=(s=e.props)==null?void 0:s.dataBind)==null?void 0:o.fieldCode)!==void 0&&((h=(f=e.props)==null?void 0:f.dataBind)==null?void 0:h.fieldCode)!==""&&(m="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:m},n.push(d)})}e.children&&n.push(...e.children.map(m=>we(m,t)).flat()),e.controlType===P.LIST&&n.push(...e.props.headers.map(m=>we(m,d)).flat())}return n}class se extends be{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new Ee,this.fieldTypes=q,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:n,Setting:r}=t;this.controlSettingMap.set(n.controlType,r)})}registerControl(t){this.constructor.register(t,"Designer");const{Designer:n,Setting:r}=t;this.register(n),this.registeredControlTypes.add(n.controlType),this.controlSettingMap.set(n.controlType,r)}getControlSetting(t){const n=this.controlSettingMap.get(t);return n||null}setInstance(t,n,r){try{if(!t)return;t.updateProps(n,r)}catch(u){throw u}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return En(this,null,function*(){return Yt(...t)})}getModelBindInfoList(...t){return Zt(...t)}getSchema(...t){return Qt(...t)}listenControlHook(...t){return sr.on(...t)}}se.EventLogic=Ee;class Xh{constructor(){this.designer=new se}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),i=this.designer.createControlInstance(v.IMPORT_RECORD_LIST_BUTTON),a=this.designer.createControlInstance(v.EXPORT_LIST_BUTTON),l=this.designer.createControlInstance(v.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(i),r.children.push(a),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),i=this.designer.createControlInstance(v.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:g("CMD.approvedDocuments",null,"\u5BA1\u6279\u901A\u8FC7\u5355\u636E"),color:"theme",filters:[{ruleId:1,symbol:"op_equal",leftVariableBo:{type:"varchar",value:"process_status",name:g("CMD.processStatus",null,"\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(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 Tr{constructor(t){var n;this.selected=null,this.selectedInstanceDataScopeParent=null,this.selectedDataScopeFlatInstances=[],this.selectedInstanceSetting=[],this.selectedInstanceSettingItems=[],this.selectedFieldItem=null,this.external={},this.movingInstance=null,this.movingInstanceOldParent=null,this.movingInstanceOldDataScopeParent=null,this.getParentBeforeInstanceMove=(n=t.getParentBeforeInstanceMove)!=null?n:r=>r.parent,this.instance=t.instance,this.getFlatInstances()}get selectedRules(){return this.selected?this.selected.rules:null}get selectedAntdRules(){const t=this.selectedRules;return t||null}setInstances(t){this.instance=t,this.getFlatInstances()}setSelectInstance(t){this.selected=t,this.selectedInstanceDataScopeParent=t?$e(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?qr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(n=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(n))})}getSettingItems(t){return t.type==="group"?t.items:t.items.reduce((n,r)=>(n.push(...r.items),n),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=$e(t)}updateDataFieldCodeMap(t){const n=$e(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}Vr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;De(this.instance,u=>{t.push(u),n.set(u.id,u),Vr(u,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function jr(e,t,n){const{dataCode:r,fieldCode:u}=t;r&&u&&(e.has(r)||e.set(r,new Map),e.get(r).set(u,n))}function Vr(e,t){if(e.controlType===P.FORM){const n=e.props.dataBind;br(n)?jr(t,n,e):Object.values(n).forEach(r=>{jr(t,r,e)})}}function De(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{t(r),Jt(r)&&De(r.children,t),Lr(r)&&De(r.props.headers,t)})}function en(e){return[v.SUBTABLE,v.DATA_VIEW,v.LIST_VIEW].includes(e.type)}function $e(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!en(t);)t=t.parent;return t}function qr(e){const t=[e];return De(e,n=>{n!==e&&t.includes(n.parent)&&!en(n)&&t.push(n)}),t}function Jh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function kr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Qh(e,t,n){return t&&kr(e.prototype,t),n&&kr(e,n),e}function tn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var J=function(){function e(t){Jh(this,e),tn(this,"visible",void 0),tn(this,"expression",void 0),tn(this,"updateParent",void 0);var n;this.visible=(n=t==null?void 0:t.visible)!==null&&n!==void 0?n:!0;var r;this.expression=(r=t==null?void 0:t.expression)!==null&&r!==void 0?r:!1;var u;this.updateParent=(u=t==null?void 0:t.updateParent)!==null&&u!==void 0?u:!1}return Qh(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function Zh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ur(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Yh(e,t,n){return t&&Ur(e.prototype,t),n&&Ur(e,n),e}function U(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ey=function(){function e(t){Zh(this,e),U(this,"type",void 0),U(this,"label",void 0),U(this,"key",void 0),U(this,"component",void 0),U(this,"effect",void 0),U(this,"scopeEffect",void 0),U(this,"defaultValue",void 0),U(this,"validator",void 0),U(this,"props",void 0),U(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:Jp,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 Yh(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);ht(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),a=1;a<u;a++)i[a-1]=arguments[a];this.filterEffects(n).forEach(function(l){return r.callEffectFn(l,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 ty(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 Nr=function e(t){ty(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 ny(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function nn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ry(e){return"type"in e&&e.type==="tab"}var Ie=function e(t){ny(this,e),nn(this,"type","tab"),nn(this,"title",void 0),nn(this,"items",void 0),this.title=t.title,this.items=t.items};function Hr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function uy(e){if(Array.isArray(e))return e}function iy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ay(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 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&&rn(e,t)}function ly(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n!=null){var r=[],u=!0,i=!1,a,l;try{for(n=n.call(e);!(u=(a=n.next()).done)&&(r.push(a.value),!(t&&r.length===t));u=!0);}catch(s){i=!0,l=s}finally{try{!u&&n.return!=null&&n.return()}finally{if(i)throw l}}return r}}function sy(){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 cy(e,t){return t&&(dy(t)==="object"||typeof t=="function")?t:iy(e)}function rn(e,t){return rn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},rn(e,t)}function fy(e,t){return uy(e)||ly(e,t)||py(e,t)||sy()}function dy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function py(e,t){if(!!e){if(typeof e=="string")return Hr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Hr(e,t)}}function vy(){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 hy(e){var t=vy();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 cy(this,u)}}var yy=function(e){oy(n,e);var t=hy(n);function n(r){ay(this,n);var u;return u=t.call(this,r),ht(r)&&Object.entries(r).forEach(function(i){var a=fy(i,2),l=a[0],s=a[1];u[l]=s}),u}return n}(J);function Re(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function my(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 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&&un(e,t)}function _y(e,t){return t&&(Ey(t)==="object"||typeof t=="function")?t:Re(e)}function un(e,t){return un=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},un(e,t)}function Ey(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function by(){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 By(e){var t=by();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 _y(this,u)}}var Cy=function(e){gy(n,e);var t=By(n);function n(r){my(this,n);var u;u=t.call(this,r),Ke(Re(u),"maxLength",void 0),Ke(Re(u),"minLength",void 0),Ke(Re(u),"placeholder",void 0),Ke(Re(u),"i18n",void 0);var i;u.maxLength=(i=r==null?void 0:r.maxLength)!==null&&i!==void 0?i:"";var a;u.minLength=(a=r==null?void 0:r.minLength)!==null&&a!==void 0?a:"";var l;u.placeholder=(l=r==null?void 0:r.placeholder)!==null&&l!==void 0?l:"";var s;return u.i18n=(s=r==null?void 0:r.i18n)!==null&&s!==void 0?s:!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 Fy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function an(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Qe(e){return Qe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Qe(e)}function Ay(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&on(e,t)}function Sy(e,t){return t&&(wy(t)==="object"||typeof t=="function")?t:Je(e)}function on(e,t){return on=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},on(e,t)}function wy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Dy(){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 $y(e){var t=Dy();return function(){var r=Qe(e),u;if(t){var i=Qe(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Sy(this,u)}}var Iy=function(e){Ay(n,e);var t=$y(n);function n(r){Fy(this,n);var u;u=t.call(this,r),an(Je(u),"max",void 0),an(Je(u),"min",void 0),an(Je(u),"placeholder",void 0);var i;u.max=(i=r==null?void 0:r.max)!==null&&i!==void 0?i:"";var a;u.min=(a=r==null?void 0:r.min)!==null&&a!==void 0?a:"";var l;return u.placeholder=(l=r==null?void 0:r.placeholder)!==null&&l!==void 0?l:"",u}return n}(J);function Ze(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ry(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ln(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ye(e){return Ye=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ye(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&&sn(e,t)}function Py(e,t){return t&&(xy(t)==="object"||typeof t=="function")?t:Ze(e)}function sn(e,t){return sn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},sn(e,t)}function xy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ly(){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 My(e){var t=Ly();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 Py(this,u)}}var Ty=function(e){Oy(n,e);var t=My(n);function n(r){Ry(this,n);var u;u=t.call(this,r),ln(Ze(u),"showType",void 0),ln(Ze(u),"tips",void 0),ln(Ze(u),"disabled",void 0);var i;u.showType=(i=r==null?void 0:r.showType)!==null&&i!==void 0?i:"switch";var a;u.tips=(a=r==null?void 0:r.tips)!==null&&a!==void 0?a:"";var l;return u.disabled=(l=r==null?void 0:r.disabled)!==null&&l!==void 0?l:!1,u}return n}(J);function Wr(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function jy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Vy(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 qy(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 ky(e,t){return t&&(Uy(t)==="object"||typeof t=="function")?t:Wr(e)}function cn(e,t){return cn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},cn(e,t)}function Uy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ny(){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 Hy(e){var t=Ny();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 ky(this,u)}}var Wy=function(e){qy(n,e);var t=Hy(n);function n(r){jy(this,n);var u;u=t.call(this,r),Vy(Wr(u),"options",void 0);var i;return u.options=(i=r==null?void 0:r.options)!==null&&i!==void 0?i:[],u}return n}(J);function fn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}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 tt(e){return tt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},tt(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&&dn(e,t)}function Ky(e,t){return t&&(Xy(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 Xy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Jy(){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 Qy(e){var t=Jy();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 Ky(this,u)}}var Zy=function(e){Gy(n,e);var t=Qy(n);function n(r){zy(this,n);var u;u=t.call(this,r),zr(fn(u),"placeholder",void 0),zr(fn(u),"options",void 0);var i;u.placeholder=(i=r==null?void 0:r.placeholder)!==null&&i!==void 0?i:"";var a;return u.options=(a=r==null?void 0:r.options)!==null&&a!==void 0?a:[],u}return n}(J);function pn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Yy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Gr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function nt(e){return nt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},nt(e)}function e5(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&vn(e,t)}function t5(e,t){return t&&(n5(t)==="object"||typeof t=="function")?t:pn(e)}function vn(e,t){return vn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},vn(e,t)}function n5(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function r5(){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 u5(e){var t=r5();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 t5(this,u)}}var i5=function(e){e5(n,e);var t=u5(n);function n(r){Yy(this,n);var u;u=t.call(this,r),Gr(pn(u),"options",void 0),Gr(pn(u),"showType",void 0);var i;u.options=(i=r==null?void 0:r.options)!==null&&i!==void 0?i:[];var a;return u.showType=(a=r==null?void 0:r.showType)!==null&&a!==void 0?a:"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 a5(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 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&&hn(e,t)}function l5(e,t){return t&&(s5(t)==="object"||typeof t=="function")?t:ue(e)}function hn(e,t){return hn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},hn(e,t)}function s5(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function c5(){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 f5(e){var t=c5();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 l5(this,u)}}var d5=function(e){o5(n,e);var t=f5(n);function n(r){a5(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 a;u.minLength=(a=r==null?void 0:r.minLength)!==null&&a!==void 0?a:"";var l;u.placeholder=(l=r==null?void 0:r.placeholder)!==null&&l!==void 0?l:"";var s;u.maxRows=(s=r==null?void 0:r.maxRows)!==null&&s!==void 0?s:"";var o;u.minRows=(o=r==null?void 0:r.minRows)!==null&&o!==void 0?o:"";var f;return u.i18n=(f=r==null?void 0:r.i18n)!==null&&f!==void 0?f:!1,u}return n}(J);function p5(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function yn(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){p5(e,u,n[u])})}return e}function v5(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 mn(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):v5(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function h5(e,t){switch(e){case"input":return new Cy(t);case"textarea":return new d5(t);case"input-number":return new Iy(t);case"switch":return new Ty(t);case"radio":return new i5(t);case"checkbox":return new Wy(t);case"select":return new Zy(t);default:return new yy(t)}}function y5(e){return function(t){var n=e.get(t);if(!!n)return new ey(mn(yn({},n),{props:h5(n.component,"props"in n?n.props:void 0)}))}}function m5(e){var t=e.fields.reduce(function(u,i){return u.set(i.key,i),u},new Map);function n(u){return new Nr(mn(yn({},u),{items:u.items.map(y5(t)).filter(Boolean)}))}function r(u){return u.map(n)}return e.groups.map(function(u){return ry(u)?new Ie(mn(yn({},u),{items:r(u.items)})):n(u)})}let gn="";class Kr extends Nn{constructor(t){super(),this.isMounted=!1,this.id=st(8),this.__pluginsApplied=!1,this.getSchema=Qt,this.getModelBindInfoList=Zt,this.generatePermissions=we,this.$options=Object.freeze(t);const{autoMount:n=!1,Designer:r=se,schema:u,mode:i="form",store:a={},messagesI18n:l,language:s=Cn}=this.$options;this.eventLogic=new Ee,this.designer=new r,this.store=new Tr(pe({instance:this.designer.createControl(Array.isArray(u)?u:[u])},a)),this.mode=i,n&&this.mount()}mount(){const{plugins:t=[]}=this.$options;this.__plugins=t,this.applyPlugins(),this.isMounted=!0}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{gn=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this),gn=""}catch(r){ge(`${gn||t.constructor.name} Plugin apply Error
3
+ ${r}`)}}),this.__pluginsApplied=!0)}emit(t,...n){return super.emit(t,n)}on(t,n){return super.on(t,n)}setInstances(t,n){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],n))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var u,i;const t=this.store.selected;if(!t)return;let n=this.getControlSetting(t.type);if(((u=t.parent)==null?void 0:u.controlType)===P.WRAP){const a=this.getControlSetting((i=t.parent)==null?void 0:i.type);n=this.concatSetting(n,a,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,a,l,s,o,f,h,y;let u=t;if(((i=t[0])==null?void 0:i.type)==="tab"&&((a=n[0])==null?void 0:a.type)==="tab"){const _=t,C=n.slice(0);u=_.map((d,m)=>{const c=new Ie(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(((o=t[0])==null?void 0:o.type)==="tab"&&((f=n[0])==null?void 0:f.type)==="group"){const _=t,C=n;u=_.map((d,m)=>{const c=new Ie(d);return m===0&&(c.items=[...this.formatGroupSetting(C,r),...c.items]),c})}else if(((h=t[0])==null?void 0:h.type)==="group"&&((y=n[0])==null?void 0:y.type)==="tab"){const _=t;u=n.map((d,m)=>{const c=new Ie(d);return m===0&&(c.items=[...c.items,...this.formatGroupSetting(_,r)]),c})}return u}formatGroupSetting(t,n){if(_e(t))return t.map(r=>{const u=new Nr(r);return u.fromId=n,u});{const r=new Ie(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?m5(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=$e(n),i=this.store.movingInstanceOldParent,a=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:i,newParent:a};this.callSelectedScopeEffect(l),i?this.emit("moved",pe({},l)):this.emit("joined",pe({},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 a;!Tn(t.props,n,r)||(n.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((a=this.store.selected)==null?void 0:a.id)&&this.callSelectedEffect(n,u),this.emit("updated",{instance:t,propName:n,value:r}))}updateInstanceProps(t,n,r,u=""){Object.entries(n).forEach(([i,a])=>{const l=`${u?u+".":""}${i}`;h0(a)?this.updateInstanceProps(t,a,r,l):this.updateInstancePropValue(t,l,a,r)})}setInstance(t,n,r,u){yt(n)?this.updateInstancePropValue(t,String(n),r,u):this.updateInstanceProps(t,n,r)}removeInstance(t){const n=t.parent;if(!n)return;const r=n.controlType===P.LIST&&n.props.headers.includes(t)?n.props.headers:n.children,u=r.findIndex(i=>i===t);u>-1&&r.splice(u,1),this.store.getFlatInstances(),this.emit("removed",{instance:t,index:u,parent:n})}replaceInstance(t,n){const r=t.parent;if(!r)return;const u=r.controlType===P.LIST&&r.props.headers.includes(t)?r.props.headers:r.children,i=u.findIndex(a=>a===t);i>-1&&u.splice(i,1,n),this.store.getFlatInstances()}updateInstanceType(t,n){const r=t.toSchema(),u=this.createInstance(n,{id:r.id,props:r.props});if(!u){xe(`can\u2018t update instance type to ${n}`);return}return u}validate(t,n){return Yt(this.store.instance,t,n)}getCustomControlsInUse(){return this.getInstances().filter(this.assertInstanceIsCustomControl).reduce((t,n)=>(t.includes(n.type)||t.push(n.type),t),[])}assertInstanceIsCustomControl(t){return!y0(yt(t)?t:t.type)}static register(...t){return se.register(...t),this}static judgeControlIsRegistered(t){return se.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 yt(n)?t.type===n:n.includes(t.type)}getInstanceInListControl(t){let n=t;for(;n;){if(n.controlType===P.LIST)return!0;n=n.parent}return!1}getInstanceParentControl(t,n){if(!!t.parent)return this.assertInstance(t.parent,n)?t.parent:this.getInstanceParentControl(t.parent,n)}callSelectedEffect(t,n={}){this.store.selectedInstanceSettingItems.forEach(r=>{r.callEffect(t,this,pe({control:this.store.selected},n))})}callSelectedScopeEffect(t={}){this.store.selectedInstanceSettingItems.forEach(n=>{n.callScopeEffect(this,pe({control:this.store.selected},t))})}}Kr.EventLogic=Ee,B.Builder=Xh,B.Designer=se,B.Driven=Kr,B.Store=Tr,B.checkSchema=Yt,B.fillModelBindInfoListFieldCode=Wh,B.findInstanceDataScopeParent=$e,B.generatePermissions=we,B.getDataScopeFlatInstances=qr,B.getMasterFormControls=Hh,B.getModelBindInfoList=Zt,B.hasChildrenControl=Jt,B.hasHeaderControl=Lr,B.isDataScopeInstance=en,B.loop=De,B.loopFormControl=ze,B.toSchema=Qt,Object.defineProperty(B,"__esModule",{value:!0})});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-driven",
3
- "version": "2.23.0-beta.13",
3
+ "version": "2.23.0-beta.14",
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.13",
30
- "@byteluck-fe/model-driven-core": "2.23.0-beta.13",
31
- "@byteluck-fe/model-driven-settings": "2.23.0-beta.13",
32
- "@byteluck-fe/model-driven-shared": "2.23.0-beta.13"
29
+ "@byteluck-fe/model-driven-controls": "2.23.0-beta.14",
30
+ "@byteluck-fe/model-driven-core": "2.23.0-beta.14",
31
+ "@byteluck-fe/model-driven-settings": "2.23.0-beta.14",
32
+ "@byteluck-fe/model-driven-shared": "2.23.0-beta.14"
33
33
  },
34
- "gitHead": "f7da4df24ec1b0a82514ecd9718d0c608efb7c67"
34
+ "gitHead": "9c0e423e3f4776e27e93fd6e57f4e826b3052d21"
35
35
  }