@byteluck-fe/model-driven-core 2.5.0-beta.1 → 2.6.0-alpha.4
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.
- package/dist/esm/common/BaseControl/property.js +1 -4
- package/dist/esm/common/FormControl/property.js +2 -4
- package/dist/esm/framework/index.js +24 -66
- package/dist/index.umd.js +1 -1
- package/dist/types/common/BaseControl/property.d.ts +0 -14
- package/dist/types/common/FormControl/property.d.ts +0 -4
- package/dist/types/framework/index.d.ts +16 -212
- package/package.json +3 -3
|
@@ -144,10 +144,7 @@ var PropertyRuntimeRules = /*#__PURE__*/ function(Array1) {
|
|
|
144
144
|
}
|
|
145
145
|
return PropertyRuntimeRules;
|
|
146
146
|
}(_wrapNativeSuper(Array));
|
|
147
|
-
|
|
148
|
-
* 全局属性
|
|
149
|
-
* @public
|
|
150
|
-
*/ var Property = function Property(props) {
|
|
147
|
+
var Property = function Property(props) {
|
|
151
148
|
"use strict";
|
|
152
149
|
var caption = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "";
|
|
153
150
|
_classCallCheck(this, Property);
|
|
@@ -188,10 +188,8 @@ var BaseControlPropertyRuntimeRules = /*#__PURE__*/ function(PropertyRuntimeRule
|
|
|
188
188
|
}
|
|
189
189
|
return BaseControlPropertyRuntimeRules;
|
|
190
190
|
}(PropertyRuntimeRules);
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
* @public
|
|
194
|
-
*/ var BaseControlProperty = /*#__PURE__*/ function(Property) {
|
|
191
|
+
// 基础控件共用的属性
|
|
192
|
+
var BaseControlProperty = /*#__PURE__*/ function(Property) {
|
|
195
193
|
"use strict";
|
|
196
194
|
_inherits(BaseControlProperty, Property);
|
|
197
195
|
var _super = _createSuper(BaseControlProperty);
|
|
@@ -157,10 +157,7 @@ export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
|
|
|
157
157
|
}
|
|
158
158
|
return FormSelectBind;
|
|
159
159
|
}(FormBind);
|
|
160
|
-
|
|
161
|
-
* 列表绑定字段项
|
|
162
|
-
* @public
|
|
163
|
-
*/ var ListBindHeaderItem = function ListBindHeaderItem(props) {
|
|
160
|
+
var ListBindHeaderItem = function ListBindHeaderItem(props) {
|
|
164
161
|
"use strict";
|
|
165
162
|
_classCallCheck(this, ListBindHeaderItem);
|
|
166
163
|
var _props_fieldCode;
|
|
@@ -242,17 +239,11 @@ export var RightVariable = function RightVariable(props) {
|
|
|
242
239
|
var _props_displayBos;
|
|
243
240
|
this.displayBos = (_props_displayBos = props === null || props === void 0 ? void 0 : props.displayBos) !== null && _props_displayBos !== void 0 ? _props_displayBos : [];
|
|
244
241
|
};
|
|
245
|
-
|
|
246
|
-
* 连接符条件
|
|
247
|
-
* @public
|
|
248
|
-
*/ export var FieldFilterConditions = function FieldFilterConditions(props) {
|
|
242
|
+
export var FieldFilterConditions = function FieldFilterConditions(props) {
|
|
249
243
|
"use strict";
|
|
250
244
|
var _this = this;
|
|
251
245
|
_classCallCheck(this, FieldFilterConditions);
|
|
252
|
-
|
|
253
|
-
* 类型:连接符条件
|
|
254
|
-
* @defaultValue 'conditions'
|
|
255
|
-
*/ this.type = "conditions";
|
|
246
|
+
this.type = "conditions";
|
|
256
247
|
var _props_id;
|
|
257
248
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|
|
258
249
|
var _props_ruleId;
|
|
@@ -276,16 +267,10 @@ export var RightVariable = function RightVariable(props) {
|
|
|
276
267
|
});
|
|
277
268
|
}
|
|
278
269
|
};
|
|
279
|
-
|
|
280
|
-
* 字段过滤条件
|
|
281
|
-
* @public
|
|
282
|
-
*/ export var FieldFilterCondition = function FieldFilterCondition(props) {
|
|
270
|
+
export var FieldFilterCondition = function FieldFilterCondition(props) {
|
|
283
271
|
"use strict";
|
|
284
272
|
_classCallCheck(this, FieldFilterCondition);
|
|
285
|
-
|
|
286
|
-
* 类型
|
|
287
|
-
* @defaultValue 'condition'
|
|
288
|
-
*/ this.type = "condition";
|
|
273
|
+
this.type = "condition";
|
|
289
274
|
var _props_id;
|
|
290
275
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|
|
291
276
|
var _props_ruleId;
|
|
@@ -314,10 +299,7 @@ export var RightVariable = function RightVariable(props) {
|
|
|
314
299
|
var _props_propName;
|
|
315
300
|
this.propName = (_props_propName = props === null || props === void 0 ? void 0 : props.propName) !== null && _props_propName !== void 0 ? _props_propName : "";
|
|
316
301
|
};
|
|
317
|
-
|
|
318
|
-
* 显示项
|
|
319
|
-
* @public
|
|
320
|
-
*/ export var DisplayBoListItem = function DisplayBoListItem(props) {
|
|
302
|
+
export var DisplayBoListItem = function DisplayBoListItem(props) {
|
|
321
303
|
"use strict";
|
|
322
304
|
_classCallCheck(this, DisplayBoListItem);
|
|
323
305
|
var _props_type;
|
|
@@ -326,10 +308,7 @@ export var RightVariable = function RightVariable(props) {
|
|
|
326
308
|
this.value = (_props_value = props === null || props === void 0 ? void 0 : props.value) !== null && _props_value !== void 0 ? _props_value : "";
|
|
327
309
|
this.fieldType = props === null || props === void 0 ? void 0 : props.fieldType;
|
|
328
310
|
};
|
|
329
|
-
|
|
330
|
-
* 数据源排序项
|
|
331
|
-
* @public
|
|
332
|
-
*/ export var DataSourceOrderItem = function DataSourceOrderItem(props) {
|
|
311
|
+
export var DataSourceOrderItem = function DataSourceOrderItem(props) {
|
|
333
312
|
"use strict";
|
|
334
313
|
_classCallCheck(this, DataSourceOrderItem);
|
|
335
314
|
var _props_columnName;
|
|
@@ -415,8 +394,6 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
415
394
|
(_this_displayBoList = _this.displayBoList) === null || _this_displayBoList === void 0 ? void 0 : _this_displayBoList.push(new DisplayBoListItem(item));
|
|
416
395
|
});
|
|
417
396
|
}
|
|
418
|
-
var _props_keywordMapping;
|
|
419
|
-
this.keywordMapping = (_props_keywordMapping = props === null || props === void 0 ? void 0 : props.keywordMapping) !== null && _props_keywordMapping !== void 0 ? _props_keywordMapping : "";
|
|
420
397
|
var _props_showOrder;
|
|
421
398
|
this.showOrder = (_props_showOrder = props === null || props === void 0 ? void 0 : props.showOrder) !== null && _props_showOrder !== void 0 ? _props_showOrder : true;
|
|
422
399
|
var _props_svcCode;
|
|
@@ -578,10 +555,7 @@ export var Language = function Language(props) {
|
|
|
578
555
|
var _props_ja;
|
|
579
556
|
this.ja = (_props_ja = props === null || props === void 0 ? void 0 : props.ja) !== null && _props_ja !== void 0 ? _props_ja : "";
|
|
580
557
|
};
|
|
581
|
-
|
|
582
|
-
* 正则校验
|
|
583
|
-
* @public
|
|
584
|
-
*/ export var RegularRules = function RegularRules(props) {
|
|
558
|
+
export var RegularRules = function RegularRules(props) {
|
|
585
559
|
"use strict";
|
|
586
560
|
_classCallCheck(this, RegularRules);
|
|
587
561
|
var _props_stencilName;
|
|
@@ -632,17 +606,11 @@ export function initImageOptions(options) {
|
|
|
632
606
|
return new ImageOptionSetting(item);
|
|
633
607
|
})) !== null && _options_map !== void 0 ? _options_map : [];
|
|
634
608
|
}
|
|
635
|
-
|
|
636
|
-
* 对象类型数据绑定配置
|
|
637
|
-
* @public
|
|
638
|
-
*/ export var ObjectDataBind = function ObjectDataBind() {
|
|
609
|
+
export var ObjectDataBind = function ObjectDataBind() {
|
|
639
610
|
"use strict";
|
|
640
611
|
_classCallCheck(this, ObjectDataBind);
|
|
641
612
|
};
|
|
642
|
-
|
|
643
|
-
* 金额控件数据绑定配置
|
|
644
|
-
* @public
|
|
645
|
-
*/ export var AmountDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
613
|
+
export var AmountDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
646
614
|
"use strict";
|
|
647
615
|
_inherits(AmountDataBind, ObjectDataBind);
|
|
648
616
|
var _super = _createSuper(AmountDataBind);
|
|
@@ -656,10 +624,7 @@ export function initImageOptions(options) {
|
|
|
656
624
|
}
|
|
657
625
|
return AmountDataBind;
|
|
658
626
|
}(ObjectDataBind);
|
|
659
|
-
|
|
660
|
-
* 金额控件值
|
|
661
|
-
* @public
|
|
662
|
-
*/ export var AmountValue = function AmountValue(props) {
|
|
627
|
+
export var AmountValue = function AmountValue(props) {
|
|
663
628
|
"use strict";
|
|
664
629
|
_classCallCheck(this, AmountValue);
|
|
665
630
|
var _props_amount;
|
|
@@ -667,10 +632,7 @@ export function initImageOptions(options) {
|
|
|
667
632
|
var _props_currency;
|
|
668
633
|
this.currency = (_props_currency = props === null || props === void 0 ? void 0 : props.currency) !== null && _props_currency !== void 0 ? _props_currency : AMOUNT_TYPE.CNY;
|
|
669
634
|
};
|
|
670
|
-
|
|
671
|
-
* 日期区间数据绑定项
|
|
672
|
-
* @public
|
|
673
|
-
*/ export var RangeDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
635
|
+
export var RangeDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
674
636
|
"use strict";
|
|
675
637
|
_inherits(RangeDataBind, ObjectDataBind);
|
|
676
638
|
var _super = _createSuper(RangeDataBind);
|
|
@@ -684,10 +646,7 @@ export function initImageOptions(options) {
|
|
|
684
646
|
}
|
|
685
647
|
return RangeDataBind;
|
|
686
648
|
}(ObjectDataBind);
|
|
687
|
-
|
|
688
|
-
* 日期区间值
|
|
689
|
-
* @public
|
|
690
|
-
*/ export var RangeDateValue = function RangeDateValue(props) {
|
|
649
|
+
export var RangeDateValue = function RangeDateValue(props) {
|
|
691
650
|
"use strict";
|
|
692
651
|
_classCallCheck(this, RangeDateValue);
|
|
693
652
|
var _props_min;
|
|
@@ -695,10 +654,7 @@ export function initImageOptions(options) {
|
|
|
695
654
|
var _props_max;
|
|
696
655
|
this.max = (_props_max = props === null || props === void 0 ? void 0 : props.max) !== null && _props_max !== void 0 ? _props_max : "";
|
|
697
656
|
};
|
|
698
|
-
|
|
699
|
-
* 地址值
|
|
700
|
-
* @public
|
|
701
|
-
*/ export var AddressValue = function AddressValue(props) {
|
|
657
|
+
export var AddressValue = function AddressValue(props) {
|
|
702
658
|
"use strict";
|
|
703
659
|
_classCallCheck(this, AddressValue);
|
|
704
660
|
var _props_city;
|
|
@@ -714,10 +670,7 @@ export function initImageOptions(options) {
|
|
|
714
670
|
var _props_provinceDisplay;
|
|
715
671
|
this.provinceDisplay = (_props_provinceDisplay = props === null || props === void 0 ? void 0 : props.provinceDisplay) !== null && _props_provinceDisplay !== void 0 ? _props_provinceDisplay : "";
|
|
716
672
|
};
|
|
717
|
-
|
|
718
|
-
* 计算公式数据绑定项
|
|
719
|
-
* @public
|
|
720
|
-
*/ export var CalcDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
673
|
+
export var CalcDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
721
674
|
"use strict";
|
|
722
675
|
_inherits(CalcDataBind, ObjectDataBind);
|
|
723
676
|
var _super = _createSuper(CalcDataBind);
|
|
@@ -731,10 +684,7 @@ export function initImageOptions(options) {
|
|
|
731
684
|
}
|
|
732
685
|
return CalcDataBind;
|
|
733
686
|
}(ObjectDataBind);
|
|
734
|
-
|
|
735
|
-
* 计算公式值
|
|
736
|
-
* @public
|
|
737
|
-
*/ export var CalcValue = function CalcValue(props) {
|
|
687
|
+
export var CalcValue = function CalcValue(props) {
|
|
738
688
|
"use strict";
|
|
739
689
|
_classCallCheck(this, CalcValue);
|
|
740
690
|
var _props_result;
|
|
@@ -866,3 +816,11 @@ export var BaseStyle = function BaseStyle(props) {
|
|
|
866
816
|
var _props_heightConfig;
|
|
867
817
|
this.heightConfig = (_props_heightConfig = props === null || props === void 0 ? void 0 : props.heightConfig) !== null && _props_heightConfig !== void 0 ? _props_heightConfig : "fill";
|
|
868
818
|
};
|
|
819
|
+
export var OptObject = function OptObject(props) {
|
|
820
|
+
"use strict";
|
|
821
|
+
_classCallCheck(this, OptObject);
|
|
822
|
+
var _props_optCode;
|
|
823
|
+
this.optCode = (_props_optCode = props === null || props === void 0 ? void 0 : props.optCode) !== null && _props_optCode !== void 0 ? _props_optCode : "";
|
|
824
|
+
var _props_optType;
|
|
825
|
+
this.optType = (_props_optType = props === null || props === void 0 ? void 0 : props.optType) !== null && _props_optType !== void 0 ? _props_optType : "";
|
|
826
|
+
};
|
package/dist/index.umd.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var bs=Object.defineProperty,Ss=Object.defineProperties;var ws=Object.getOwnPropertyDescriptors;var Yt=Object.getOwnPropertySymbols,Is=Object.getPrototypeOf,Rs=Object.prototype.hasOwnProperty,Ms=Object.prototype.propertyIsEnumerable,Ls=Reflect.get;var pt=(s,D,w)=>D in s?bs(s,D,{enumerable:!0,configurable:!0,writable:!0,value:w}):s[D]=w,Z=(s,D)=>{for(var w in D||(D={}))Rs.call(D,w)&&pt(s,w,D[w]);if(Yt)for(var w of Yt(D))Ms.call(D,w)&&pt(s,w,D[w]);return s},Ce=(s,D)=>Ss(s,ws(D));var rt=(s,D,w)=>Ls(Is(s),w,D);var se=(s,D,w)=>new Promise((Fe,le)=>{var De=j=>{try{Q(w.next(j))}catch(Y){le(Y)}},be=j=>{try{Q(w.throw(j))}catch(Y){le(Y)}},Q=j=>j.done?Fe(j.value):Promise.resolve(j.value).then(De,be);Q((w=w.apply(s,D)).next())});(function(s,D){typeof exports=="object"&&typeof module!="undefined"?D(exports):typeof define=="function"&&define.amd?define(["exports"],D):(s=typeof globalThis!="undefined"?globalThis:s||self,D(s.modelDrivenCore={}))})(this,function(s){"use strict";var D="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",w="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Fe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",le="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",De="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",be="{caption}\u5FC5\u586B",Q="\u8BF7\u8F93\u5165\u6807\u9898",j="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",Y="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",en="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",tn="\u8BF7\u7ED1\u5B9A\u8868\u5355",nn="\u8BF7\u7ED1\u5B9A\u5217\u8868",un="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",an="\u8BF7\u8F93\u5165\u663E\u793A\u503C",rn="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",sn="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ln="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",on="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",cn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",dn="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",fn="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",hn="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",mn="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",gn="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",yn="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",En="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",vn="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Bn="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",An="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Cn="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Fn="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Dn="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",bn="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Sn="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",wn="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",In="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Rn="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Mn="\u8BF7\u9009\u62E9\u7701",Ln="\u8BF7\u9009\u62E9\u5E02",$n="\u8BF7\u9009\u62E9\u533A",qn="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Pn="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Vn="\u8BF7\u8F93\u5165\u5217\u5BBD",On="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Nn="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",xn="\u8BF7\u9009\u62E9\u63A7\u4EF6",_n="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",jn="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Un="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Hn="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Tn="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Wn="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Kn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",zn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",kn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Xn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Gn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Jn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Zn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Qn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Yn="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",pn="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",eu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",tu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",nu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",uu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",au="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",iu={isNotNumber:D,isNotString:w,isNotObject:Fe,isNotArray:le,isNotBoolean:De,runtimeRequired:be,pleaseEnterCaption:Q,pleaseEnterCaptionTip:j,pleaseEnterPlaceholder:Y,pleaseEnterFieldCode:en,pleaseEnterForm:tn,pleaseEnterList:nn,pleaseEnterProcess:un,pleaseEnterLabel:an,pleaseEnterValue:rn,bizKeyNotBindFiled:sn,pleaseSelectOneField:ln,pleaseEnterNumberRange:on,pleaseEnterAValueGreaterThanMin:cn,pleaseEnterAValueLessThanMax:dn,numberRangeSetError:fn,stringRangeError:hn,attachmentMaxSize:mn,pleaseEnterTotalScoreSetting:gn,theTotalScoreMustNotBeLessThan1:yn,scoreDefaultValueRange:En,attachmentLimitError:vn,PleaseReselectTheOptionalQuantity:Bn,TheMaximumLengthIsGreaterThanTheMinimumLength:An,TheMinimumLengthIsGreaterThanTheMaximumLength:Cn,PleaseSelectTheCorrectOptionSettings:Fn,optionIdIsRepeat:Dn,optionIsRequired:bn,pleaseEnterDataCode:Sn,pleaseEnterValueFieldCode:wn,pleaseEnterSvcCode:In,pleaseBindAtLeastOneDisplayValue:Rn,pleaseSelectProvince:Mn,pleaseSelectCity:Ln,pleaseSelectDistrict:$n,limitRowsCannotBeLessThan0:qn,TheNumberOfRowsCannotBeLessThanMinRows:Pn,pleaseEnterColumnWidth:Vn,pleaseSetTheLogicalRelationshipOfAllRuleConditions:On,pleaseCompleteAllRulesAndConditions:Nn,pleaseSelectControl:xn,pleaseSelectAtLeastOneColumn:_n,pleaseSelectFillBackMode:jn,pleaseSelectDashboard:Un,rootNodeIsRequired:Hn,theViewNameCannotBeEmpty:Tn,pleaseSelectOcrType:Wn,pleaseSelectAtLeastOneFieldToFillIn:Kn,pleaseChooseAtLeastOne:zn,pleaseEnterButtonContent:kn,pleaseEnterDataCodeInDataSetting:Xn,pleaseEnterValueFieldCodeInDataSetting:Gn,pleaseEnterSvcCodeInDataSetting:Jn,pleaseBindAtLeastOneDisplayValueInDataSetting:Zn,rootNodeIsRequiredInDataSetting:Qn,pleaseEnterMaxHeight:Yn,pleaseEnter:pn,pleaseEnterWatermark:eu,pleaseEnterFileName:tu,pleaseUploadAtLeastOnePrintTemplate:nu,pleaseAssignBusiness:uu,pleaseAssignExternal:au},ru="Please enter a number",su="Please enter a string",lu="Please enter an object",ou="Please enter an array",cu="Please enter a boolean",du="{caption} Required",fu="Please enter the title",hu="Please enter the bubble prompt",mu="Please enter the prompt text",gu="Please bind data items",yu="Please bind the form",Eu="Please bind the list",vu="Please bind the process",Bu="Please enter the displayed value",Au="Please enter the stored value",Cu="The document number is not bound to the data item",Fu="Please select at least one display field",Du="Please enter a value greater than or equal to {min} and less than or equal to {max}",bu="Please enter a value greater than or equal to {min}",Su="Please enter a value less than or equal to {max}",wu="The value range is set incorrectly",Iu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Ru="The attachment size must be between 0MB and 1000MB",Mu="Please fill in the total score setting",Lu="The total score cannot be less than 1",$u="The default value must be between {min} and {max}",qu="The number of attachments uploaded must be between {min} and {max}",Pu="Please re-select the optional quantity",Vu="The maximum length of the control must be greater than the minimum length",Ou="The minimum length of the control must be less than the maximum length",Nu="Please select the correct option setting",xu="Option ID cannot be repeated",_u="Please enter at least one option",ju="Please bind the data source",Uu="Please bind the stored value",Hu="Please bind the service",Tu="At least one display value must be bound",Wu="Please select a province",Ku="Please select a city",zu="Please select a district",ku="The minimum number of lines to fill in cannot be less than 0",Xu="The number of rows cannot be less than {min} rows",Gu="Please enter the column width",Ju="Please set the logical relationship of all rule conditions",Zu="Please complete all rules and conditions",Qu="please select control",Yu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",pu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ea="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ta="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",na="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ua="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",aa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ia="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ra="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",sa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",la="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",oa="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ca="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",da="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",fa="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ha="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ma="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ga="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ya={isNotNumber:ru,isNotString:su,isNotObject:lu,isNotArray:ou,isNotBoolean:cu,runtimeRequired:du,pleaseEnterCaption:fu,pleaseEnterCaptionTip:hu,pleaseEnterPlaceholder:mu,pleaseEnterFieldCode:gu,pleaseEnterForm:yu,pleaseEnterList:Eu,pleaseEnterProcess:vu,pleaseEnterLabel:Bu,pleaseEnterValue:Au,bizKeyNotBindFiled:Cu,pleaseSelectOneField:Fu,pleaseEnterNumberRange:Du,pleaseEnterAValueGreaterThanMin:bu,pleaseEnterAValueLessThanMax:Su,numberRangeSetError:wu,stringRangeError:Iu,attachmentMaxSize:Ru,pleaseEnterTotalScoreSetting:Mu,theTotalScoreMustNotBeLessThan1:Lu,scoreDefaultValueRange:$u,attachmentLimitError:qu,PleaseReselectTheOptionalQuantity:Pu,TheMaximumLengthIsGreaterThanTheMinimumLength:Vu,TheMinimumLengthIsGreaterThanTheMaximumLength:Ou,PleaseSelectTheCorrectOptionSettings:Nu,optionIdIsRepeat:xu,optionIsRequired:_u,pleaseEnterDataCode:ju,pleaseEnterValueFieldCode:Uu,pleaseEnterSvcCode:Hu,pleaseBindAtLeastOneDisplayValue:Tu,pleaseSelectProvince:Wu,pleaseSelectCity:Ku,pleaseSelectDistrict:zu,limitRowsCannotBeLessThan0:ku,TheNumberOfRowsCannotBeLessThanMinRows:Xu,pleaseEnterColumnWidth:Gu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ju,pleaseCompleteAllRulesAndConditions:Zu,pleaseSelectControl:Qu,pleaseSelectDashboard:Yu,theViewNameCannotBeEmpty:pu,pleaseSelectOcrType:ea,pleaseSelectAtLeastOneFieldToFillIn:ta,pleaseChooseAtLeastOne:na,pleaseEnterButtonContent:ua,pleaseEnterDataCodeInDataSetting:aa,pleaseEnterValueFieldCodeInDataSetting:ia,pleaseEnterSvcCodeInDataSetting:ra,pleaseBindAtLeastOneDisplayValueInDataSetting:sa,rootNodeIsRequiredInDataSetting:la,pleaseEnterMaxHeight:oa,pleaseEnter:ca,pleaseEnterWatermark:da,pleaseEnterFileName:fa,pleaseUploadAtLeastOnePrintTemplate:ha,pleaseAssignBusiness:ma,pleaseAssignExternal:ga},Ea="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",va="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ba="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Aa="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ca="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fa="{caption}\u5FC5\u9808",Da="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ba="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Sa="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wa="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ia="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ra="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ma="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",La="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$a="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",qa="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Pa="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Va="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Oa="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Na="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xa="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",_a="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ja="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ua="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ha="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ta="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Wa="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Ka="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",za="\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",ka="\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",Xa="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ga="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Ja="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Za="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Qa="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ya="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",pa="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ei="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ti="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ni="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ui="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ai="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ii="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ri="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",si="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",li="please select control",oi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ci="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",di="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",fi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",hi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",mi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",gi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",yi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ei="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",vi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Bi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ai="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ci="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Fi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Di="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",bi="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Si="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",wi="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ii={isNotNumber:Ea,isNotString:va,isNotObject:Ba,isNotArray:Aa,isNotBoolean:Ca,runtimeRequired:Fa,pleaseEnterCaption:Da,pleaseEnterCaptionTip:ba,pleaseEnterPlaceholder:Sa,pleaseEnterFieldCode:wa,pleaseEnterForm:Ia,pleaseEnterList:Ra,pleaseEnterProcess:Ma,pleaseEnterLabel:La,pleaseEnterValue:$a,bizKeyNotBindFiled:qa,pleaseSelectOneField:Pa,pleaseEnterNumberRange:Va,pleaseEnterAValueGreaterThanMin:Oa,pleaseEnterAValueLessThanMax:Na,numberRangeSetError:xa,stringRangeError:_a,attachmentMaxSize:ja,pleaseEnterTotalScoreSetting:Ua,theTotalScoreMustNotBeLessThan1:Ha,scoreDefaultValueRange:Ta,attachmentLimitError:Wa,PleaseReselectTheOptionalQuantity:Ka,TheMaximumLengthIsGreaterThanTheMinimumLength:za,TheMinimumLengthIsGreaterThanTheMaximumLength:ka,PleaseSelectTheCorrectOptionSettings:Xa,optionIdIsRepeat:Ga,optionIsRequired:Ja,pleaseEnterDataCode:Za,pleaseEnterValueFieldCode:Qa,pleaseEnterSvcCode:Ya,pleaseBindAtLeastOneDisplayValue:pa,pleaseSelectProvince:ei,pleaseSelectCity:ti,pleaseSelectDistrict:ni,limitRowsCannotBeLessThan0:ui,TheNumberOfRowsCannotBeLessThanMinRows:ai,pleaseEnterColumnWidth:ii,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ri,pleaseCompleteAllRulesAndConditions:si,pleaseSelectControl:li,pleaseSelectDashboard:oi,theViewNameCannotBeEmpty:ci,pleaseSelectOcrType:di,pleaseSelectAtLeastOneFieldToFillIn:fi,pleaseChooseAtLeastOne:hi,pleaseEnterButtonContent:mi,pleaseEnterDataCodeInDataSetting:gi,pleaseEnterValueFieldCodeInDataSetting:yi,pleaseEnterSvcCodeInDataSetting:Ei,pleaseBindAtLeastOneDisplayValueInDataSetting:vi,rootNodeIsRequiredInDataSetting:Bi,pleaseEnterMaxHeight:Ai,pleaseEnter:Ci,pleaseEnterWatermark:Fi,pleaseEnterFileName:Di,pleaseUploadAtLeastOnePrintTemplate:bi,pleaseAssignBusiness:Si,pleaseAssignExternal:wi},Ri={zhCN:iu,enUS:ya,jaJP:Ii},st;(function(t){t.Number="Number",t.Operator="Operator",t.VariableInMainTable="VariableInMainTable",t.VariableInCurrentSubTable="VariableInCurrentSubTable",t.VariableInOtherSubTable="VariableInOtherSubTable",t.UndefinedVariable="UndefinedVariable"})(st||(st={}));var lt;(function(t){t.SUM="SUM",t.AVG="AVG",t.MAX="MAX",t.MIN="MIN"})(lt||(lt={}));var Mi="zh-CN";function P(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var k;(function(t){t.BASE="base",t.FORM="form",t.LAYOUT="layout",t.WRAP="wrap",t.COLUMN="column",t.LIST="list",t.SEARCH="search"})(k||(k={}));var L;(function(t){t.TITLE="title",t.LINK="link",t.BUTTON="button",t.DIVIDER="divider",t.TEXT="text",t.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",t.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",t.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",t.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",t.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",t.EXPORT_LIST_BUTTON="list-page-btn-export-list",t.LIST_SELECT_BUTTON="list-select-button",t.ORGANIZATION_SELECTION="organization-selection",t.FORM_SELECT_BUTTON="form-select-button",t.LIST_VIEW_SELECT="list-view-select",t.TEXT_OCR_BUTTON="text-ocr-button",t.INVOICE_CHECK_BUTTON="invoice-check-button",t.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",t.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",t.VARCHAR_COLUMN="varchar-column",t.TEXT_COLUMN="text-column",t.DECIMAL_COLUMN="decimal-column",t.TIMESCOPE_COLUMN="timescope-column",t.TIMESTAMP_COLUMN="timestamp-column",t.ARRAY_COLUMN="array-column",t.DEPARTMENT_COLUMN="department-column",t.AUTO_NUMBER_COLUMN="auto-number-column",t.FILE_COLUMN="file-column",t.IMAGE_COLUMN="image-column",t.PEOPLE_COLUMN="people-column",t.LOCATION_COLUMN="location-column",t.CUSTOM_COLUMN="custom-column",t.ORDER_COLUMN="order-column",t.OPERATION_COLUMN="operation-column",t.EMPLOYEE_COLUMN="employee-column",t.ADDRESS="address",t.AMOUNT="amount",t.ATTACHMENT="attachment",t.AUTO_NUMBER="auto-number",t.CALC="calc",t.CHECKBOX="checkbox",t.DATE_PICKER="date-picker",t.DATE_RANGE="date-range",t.DEPARTMENT="department",t.EMPLOYEE="employee",t.IMAGE="image",t.INPUT="input",t.NUMBER="number",t.RADIO="radio",t.RICH_TEXT="rich-text",t.SCORE="score",t.SEARCH_DATE_RANGE="search-date-range",t.SEARCH_NUMBER_RANGE="search-number-range",t.SEARCH_INPUT="search-input",t.SELECT="select",t.SELECT_MULTIPLE="select-multiple",t.SELECT_RELATION="select-relation",t.VUE_FORM_ITEM="vue-form-item",t.TEXTAREA="textarea",t.EMAIL="email",t.FOOTER="footer",t.HEADER="header",t.ID_CARD="id-card",t.MOBILE="mobile",t.PHONE="phone",t.RADIO_IMAGE="radio-image",t.ELECTRONIC_SIGNATURE="electronic-signature",t.WPS="wps",t.CARD_GROUP="card-group",t.COL="col",t.GRID="grid",t.GRID_ROW="grid-row",t.GRID_TABLE_COLUMN="grid-table-column",t.ROW="row",t.TWO_COLUMNS="two-columns",t.SUBTABLE_COLUMN="subtable-column",t.SUBTABLE_ROW="subtable-row",t.TAB="tab",t.TAB_PANE="tab-pane",t.TOOLBOX="toolbox",t.DATA_VIEW="data-view",t.LIST_VIEW="list-view",t.ACTION_BAR="action-bar",t.SUBTABLE="subtable",t.GRID_TABLE="grid-table",t.SIMPLE_SEARCH="simple-search",t.PAGINATION="pagination",t.CHECKBOX_IMAGE="checkbox-image",t.DASHBOARD="dashboard",t.TREE="tree",t.EMPLOYEE2="employee2",t.DEPARTMENT2="department2"})(L||(L={}));var R;(function(t){t.VARCHAR="varchar",t.TEXT="text",t.ARRAY="array",t.ADDRESS="location",t.DECIMAL="decimal",t.DECIMAL_RANGE="decimal_range",t.TIMESTAMP="timestamp",t.EMPLOYEES="people",t.DEPARTMENTS="department",t.MONEY="money",t.TIMESCOPE="timescope",t.FILE="file",t.IMAGE="image",t.AUTO_NUMBER="auto_number",t.CALC="calc",t.RELATION="relation",t.LIST="list",t.RELATION_FIELD="relation-field",t.REFERENCE_FIELD="reference-field",t.CALC_FIELD="calc",t.JSON="json",t.BIGINT="bigint",t.ANY="ANY",t.ENCRYPTED_FIELD="encrypted_field"})(R||(R={}));var $;$={},P($,R.ARRAY,L.ARRAY_COLUMN),P($,R.AUTO_NUMBER,L.AUTO_NUMBER_COLUMN),P($,R.DECIMAL,L.DECIMAL_COLUMN),P($,R.DEPARTMENTS,L.DEPARTMENT_COLUMN),P($,R.FILE,L.FILE_COLUMN),P($,R.IMAGE,L.IMAGE_COLUMN),P($,R.ADDRESS,L.LOCATION_COLUMN),P($,R.EMPLOYEES,L.EMPLOYEE_COLUMN),P($,R.TEXT,L.TEXT_COLUMN),P($,R.TIMESCOPE,L.TIMESCOPE_COLUMN),P($,R.TIMESTAMP,L.TIMESTAMP_COLUMN),P($,R.VARCHAR,L.VARCHAR_COLUMN),P($,R.RELATION,L.VARCHAR_COLUMN);var ot;(function(t){t.YEAR="year",t.MONTH="month",t.DATE="date",t.DATETIME="datetime"})(ot||(ot={}));var ct="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Li=ct+"0123456789";function W(){for(var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,e="",n=0;n<t;n++){var u=n===0?ct:Li,a=Math.random()*u.length;e+=u[parseInt(String(a),10)]}return e}function Se(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function $i(t){if(Array.isArray(t))return Se(t)}function qi(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function dt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Pi(){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(t){return!1}}function oe(t,e,n){return Pi()?oe=Reflect.construct:oe=function(a,i,r){var l=[null];l.push.apply(l,i);var d=Function.bind.apply(a,l),c=new d;return r&&ee(c,r.prototype),c},oe.apply(null,arguments)}function p(t){return p=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},p(t)}function ft(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&ee(t,e)}function Vi(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Oi(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Ni(){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 xi(t,e){return e&&(_i(e)==="object"||typeof e=="function")?e:qi(t)}function ee(t,e){return ee=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},ee(t,e)}function ht(t){return $i(t)||Oi(t)||ji(t)||Ni()}var _i=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function ji(t,e){if(!!t){if(typeof t=="string")return Se(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Se(t,e)}}function we(t){var e=typeof Map=="function"?new Map:void 0;return we=function(u){if(u===null||!Vi(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return oe(u,arguments,p(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),ee(a,u)},we(t)}function Ui(){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(t){return!1}}function mt(t){var e=Ui();return function(){var u=p(t),a;if(e){var i=p(this).constructor;a=Reflect.construct(u,arguments,i)}else a=u.apply(this,arguments);return xi(this,a)}}var Ie=console;function Re(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=Ie).warn.apply(u,["\u{1F9D0} Driven Warning:"+e[0]].concat(ht(a)))}function gt(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=Ie).log.apply(u,["\u{1F680} Driven Log:"+e[0]].concat(ht(a)))}function Hi(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Me=function(t){ft(n,t);var e=mt(n);function n(u){dt(this,n);var a;return a=e.call(this,u),a.name="\u{1F4A5} Driven Error",a.message=u?Hi(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return n}(we(Error)),Ti=function(t){ft(n,t);var e=mt(n);function n(u){dt(this,n);var a;return a=e.call(this,u),a.name="\u{1F6A8} Driven Reference Error",a}return n}(Me);function Le(t){throw new Me(t)}function yt(t){throw new Ti(t)}function Wi(t){Ie.error(new Me(t))}var Ki=Object.prototype.toString;function Et(t,e){return Ki.call(t)==="[object "+e+"]"}function zi(t){return Et(t,"String")}function ki(t){return Et(t,"Promise")}var Xi=function(){function t(e){var n,u;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((u=(n=e.messages)!==null&&n!==void 0?n:this.getPreImport(e.locale))!==null&&u!==void 0?u:{}),e.variableRegExp&&(this.variableRegExp=e.variableRegExp),this.setLocale(e.locale)}return t.prototype.setLocale=function(e){var n=this;this.locale=e,this._messageCache.clear();var u=this.getMessageData();ki(u)?u.then(function(a){n._messageCache.clear(),n.messages[n.localeInMessageKey]=a}):this.messages[this.localeInMessageKey]=u},t.prototype.getMessageData=function(){var e=this._messages[this.localeInMessageKey];return typeof e=="function"?e():e},t.prototype.translate=function(e,n,u){var a=this.getMessage(e);return a?this.formatMessage(a,u):this.formatMessage(n,u)},t.prototype.getMessage=function(e){if(this._messageCache.has(e))return this._messageCache.get(e);var n=this.getPathArray(e),u=n.reduce(function(a,i,r,l){if(a!==void 0){var d=a[i];if(!(r===l.length-1&&!zi(d)))return d}},this.message);return this._messageCache.set(e,u),u},t.prototype.formatMessage=function(e,n){return n?e.replace(this.variableRegExp,function(u,a){var i=n[a];return i!==void 0?String(i):u}):e},t.prototype.getPreImport=function(e){var n;if(window.okI18nPreImport){var u=this.getLocaleInMessageKey(e);return window.okI18nPreImport.hasOwnProperty(u)?window.okI18nPreImport:(n={},n[u]=window.okI18nPreImport,n)}},t.prototype.getPathArray=function(e){return e.split(".")},t.prototype.getLocaleInMessageKey=function(e){return e.replace(/-/g,"")},Object.defineProperty(t.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"message",{get:function(){var e;return(e=this.messages[this.localeInMessageKey])!==null&&e!==void 0?e:{}},enumerable:!1,configurable:!0}),t}();function Gi(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var f=function(){function t(){Gi(this,t)}return t.getMessage=function(n){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",u)},t.resetI18n=function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Mi;return new Xi({locale:n,messages:Ri})},t.setLocale=function(n){return this.$i18n.setLocale(n)},t}();f.$i18n=f.resetI18n();function Ji(t,e,n){var u=e.replace(/\[(\d)]/g,function(i,r){return"."+r}).split("."),a=!1;return u.reduce(function(i,r,l,d){var c=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,r)){Re("Can not set ".concat(e,"'s ").concat(r," property in current %o, Because there is no ").concat(r," property on the %o"),i,i);return}return l===d.length-1&&!Object.is(c[r],n)&&(c[r]=n,a=!0),c[r]}},t),a}var Zi=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Qi={exports:{}};(function(t){(function(e){var n=function(o,h,M){if(!c(h)||E(h)||C(h)||b(h)||d(h))return h;var v,S=0,x=0;if(g(h))for(v=[],x=h.length;S<x;S++)v.push(n(o,h[S],M));else{v={};for(var A in h)Object.prototype.hasOwnProperty.call(h,A)&&(v[o(A,M)]=n(o,h[A],M))}return v},u=function(o,h){h=h||{};var M=h.separator||"_",v=h.split||/(?=[A-Z])/;return o.split(v).join(M)},a=function(o){return F(o)?o:(o=o.replace(/[\-_\s]+(.)?/g,function(h,M){return M?M.toUpperCase():""}),o.substr(0,1).toLowerCase()+o.substr(1))},i=function(o){var h=a(o);return h.substr(0,1).toUpperCase()+h.substr(1)},r=function(o,h){return u(o,h).toLowerCase()},l=Object.prototype.toString,d=function(o){return typeof o=="function"},c=function(o){return o===Object(o)},g=function(o){return l.call(o)=="[object Array]"},E=function(o){return l.call(o)=="[object Date]"},C=function(o){return l.call(o)=="[object RegExp]"},b=function(o){return l.call(o)=="[object Boolean]"},F=function(o){return o=o-0,o===o},m=function(o,h){var M=h&&"process"in h?h.process:h;return typeof M!="function"?o:function(v,S){return M(v,o,S)}},B={camelize:a,decamelize:r,pascalize:i,depascalize:r,camelizeKeys:function(o,h){return n(m(a,h),o)},decamelizeKeys:function(o,h){return n(m(r,h),o,h)},pascalizeKeys:function(o,h){return n(m(i,h),o)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};t.exports?t.exports=B:e.humps=B})(Zi)})(Qi);var vt={};Object.defineProperty(vt,"__esModule",{value:!0});function $e(t){if(typeof t!="object"||t===null)return t;if(Array.isArray(t))return t.map(e=>typeof e!="object"||e===null?e:$e(e));{const e={};for(const n in t){const u=t[n];e[n]=typeof u!="object"||u===null?u:$e(u)}return e}}var Yi=vt.default=$e;function K(t){if(t!==void 0)return typeof t=="object"?Yi(t):t}function pi(t){return Object.prototype.toString.call(t)==="[object Object]"}function er(t){return Array.isArray(t)}function tr(t){return t.reduce(function(e,n){return e.includes(n)||e.push(n),e},[])}function qe(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function nr(t){if(Array.isArray(t))return qe(t)}function Bt(t,e,n,u,a,i,r){try{var l=t[i](r),d=l.value}catch(c){n(c);return}l.done?e(d):Promise.resolve(d).then(u,a)}function ur(t){return function(){var e=this,n=arguments;return new Promise(function(u,a){var i=t.apply(e,n);function r(d){Bt(i,u,a,r,l,"next",d)}function l(d){Bt(i,u,a,r,l,"throw",d)}r(void 0)})}}function ar(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ir(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function rr(){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 Pe(t){return nr(t)||ir(t)||sr(t)||rr()}function sr(t,e){if(!!t){if(typeof t=="string")return qe(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return qe(t,e)}}var lr=function(t,e){var n,u,a,i,r={label:0,sent:function(){if(a[0]&1)throw a[1];return a[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(c){return function(g){return d([c,g])}}function d(c){if(n)throw new TypeError("Generator is already executing.");for(;r;)try{if(n=1,u&&(a=c[0]&2?u.return:c[0]?u.throw||((a=u.return)&&a.call(u),0):u.next)&&!(a=a.call(u,c[1])).done)return a;switch(u=0,a&&(c=[c[0]&2,a.value]),c[0]){case 0:case 1:a=c;break;case 4:return r.label++,{value:c[1],done:!1};case 5:r.label++,u=c[1],c=[0];continue;case 7:c=r.ops.pop(),r.trys.pop();continue;default:if(a=r.trys,!(a=a.length>0&&a[a.length-1])&&(c[0]===6||c[0]===2)){r=0;continue}if(c[0]===3&&(!a||c[1]>a[0]&&c[1]<a[3])){r.label=c[1];break}if(c[0]===6&&r.label<a[1]){r.label=a[1],a=c;break}if(a&&r.label<a[2]){r.label=a[2],r.ops.push(c);break}a[2]&&r.ops.pop(),r.trys.pop();continue}c=e.call(t,r)}catch(g){c=[6,g],u=0}finally{n=a=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},or=function(){function t(){ar(this,t),this._events=new Map,this.debug=!1}var e=t.prototype;return e.emit=function(u){for(var a=arguments.length,i=new Array(a>1?a-1:0),r=1;r<a;r++)i[r-1]=arguments[r];var l=this;return ur(function(){var d,c,g,E,C,b,F,m,B,o,h,M;return lr(this,function(v){switch(v.label){case 0:if(d=l._events.get(u),c=[],!d)return[3,10];g=d.slice(),E=!0,C=!1,b=void 0,v.label=1;case 1:v.trys.push([1,8,9,10]),F=g[Symbol.iterator](),v.label=2;case 2:if(E=(m=F.next()).done)return[3,7];if(B=m.value,!d.includes(B))return[3,6];v.label=3;case 3:return v.trys.push([3,5,,6]),l.debug&>.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(u," \u4E8B\u4EF6: ").concat(B.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+B.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"\u3002")].concat(Pe(i))),[4,B.apply(null,Pe(i))];case 4:return o=v.sent(),l.debug&>.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(u," \u4E8B\u4EF6: ").concat(B.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+B.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Pe(i),[o])),c.push(o),o===!1?[3,7]:[3,6];case 5:return h=v.sent(),Wi(String(h)+":"+String(h.stack)),[3,6];case 6:return E=!0,[3,2];case 7:return[3,10];case 8:return M=v.sent(),C=!0,b=M,[3,10];case 9:try{!E&&F.return!=null&&F.return()}finally{if(C)throw b}return[7];case 10:return[2,c]}})})()},e.on=function(u,a){if(this._events.has(u)){var i;(i=this._events.get(u))===null||i===void 0||i.push(a)}else this._events.set(u,[a])},e.off=function(u,a){if(this._events.has(u)){var i=this._events.get(u),r=i==null?void 0:i.indexOf(a);i==null||i.splice(r,1)}},e.delete=function(u){this._events.has(u)&&this._events.delete(u)},e.clear=function(){this._events=new Map},t}();const At=[];class ce{constructor(e){this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=e,this._initControls(e)}registerControlConfig(e,n){return this.controlConfigMap.set(e,n),this}getControlConfig(e){return this.controlConfigMap.get(e)}static register(e){const{Designer:n,Runtime:u}=e;(!n||!u||!n.__is_control__||!u.__is_control__)&&Le(`${e} is can't register as a Control`);const a=this.staticControls.findIndex(i=>i.Designer.controlType===n.controlType);return a>-1&&(Re(`The ${n.controlType} is repeat register, So it overwrites the one that was registered before.`),this.staticControls.splice(a,1)),this.staticRegisteredTypes.add(n.controlType),this.staticControls.push(e),this}getControls(){return this._controls}register(e){e.__is_control__||Le(`${e.name} is not a Control`);const n=this._controls.findIndex(u=>u.controlType===e.controlType);return n>-1&&(Re(`The ${e.controlType} is repeat register, So it overwrites the one that was registered before.`),this._controls.splice(n,1)),this.registeredControlTypes.add(e.controlType),this._controls.push(e),this}isLayoutControl(e){return e.controlType===k.LAYOUT}isFormControl(e){return e.controlType===k.FORM}isListControl(e){return e.controlType===k.LIST}isColumnControl(e){return e.controlType===k.COLUMN}createControl(e,n){if(Array.isArray(e))return e.map(a=>this.createControl(a,n));e.children&&(e.children=e.children.map(a=>this.createControl(a,n))),this.isListControl(e)&&e.props.headers&&(e.props.headers=e.props.headers.map(a=>this.createControl(a,n)));const u=this.getControlFormType(e.type);if(u){let a=e;if(typeof n=="function"){const r=n(a);r&&(a=r)}return new u(a)}else Le(`The constructor of ${e.type} could not be found, please confirm that the constructor has been registered`)}createControlInstance(e,n){const u=this.getControlFormType(e);if(u)return new u(n)}getControlFormType(e){return this._controls.find(n=>n.controlType===e)}_initControls(e){this.constructor.staticControls.forEach(n=>{this.register(n[e])})}}ce.staticControls=At,ce.staticRegisteredTypes=new Set(At.map(t=>t.Designer.controlType)),ce.staticRegisteredConfigs=new Map;class O{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:""}}class Ve{constructor(e){var n,u;this.minWidth=(n=e==null?void 0:e.minWidth)!=null?n:150,this.maxWidth=e==null?void 0:e.maxWidth,this.flex=(u=e==null?void 0:e.flex)!=null?u:1}}class de extends Ve{constructor(e){var n,u;super(e),this.width=(n=e==null?void 0:e.width)!=null?n:240,this.widthType=(u=e==null?void 0:e.widthType)!=null?u:"auto"}}class cr{constructor(e){this.pc=new de(e==null?void 0:e.pc),this.mobile=e!=null&&e.mobile?new de(e==null?void 0:e.mobile):new de({width:130,minWidth:180})}}class dr{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"firstThree",this.customOptions=(u=e==null?void 0:e.customOptions)!=null?u:[]}}class fe{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.appId=(a=e==null?void 0:e.appId)!=null?a:""}}class fr extends fe{constructor(e){var n;super(e),this.primaryControlId=(n=e==null?void 0:e.primaryControlId)!=null?n:""}}class Ct{constructor(e){var n;this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:""}}class hr{constructor(e){var n,u,a,i;this.appId=(n=e==null?void 0:e.appId)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Ct(r)))!=null?i:[]}}class Ft{constructor(e){var n,u,a;this.fieldName=(n=e==null?void 0:e.fieldName)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:R.VARCHAR}}class Dt extends fe{constructor(e){var n,u,a,i;super(e),this.title=(n=e==null?void 0:e.title)!=null?n:"",this.svcCode=(u=e==null?void 0:e.svcCode)!=null?u:"",this.isOpenFilter=(a=e==null?void 0:e.isOpenFilter)!=null?a:!1,this.filters=(i=e==null?void 0:e.filters)!=null?i:[]}}class mr{constructor(e){var n,u,a,i;this.type="sublist-page",this.formBind=new fe(e==null?void 0:e.formBind),this.displayFields=(u=(n=e==null?void 0:e.displayFields)==null?void 0:n.map(r=>new Ft(r)))!=null?u:[],this.sublists=(i=(a=e==null?void 0:e.sublists)==null?void 0:a.map(r=>new Dt(r)))!=null?i:[]}}class bt{constructor(e){this.type=e==null?void 0:e.type,this.value=e==null?void 0:e.value}}class Oe{constructor(e){var n,u,a;this.type=(n=e==null?void 0:e.type)!=null?n:"custom",this.value=(u=e==null?void 0:e.value)!=null?u:[],this.displayBos=(a=e==null?void 0:e.displayBos)!=null?a:[]}}class te{constructor(e){var n,u,a,i;this.type="conditions",this.id=(n=e==null?void 0:e.id)!=null?n:W(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.level=(a=e==null?void 0:e.level)!=null?a:0,this.value=(i=e==null?void 0:e.value)!=null?i:"and",this.children=[],Array.isArray(e==null?void 0:e.children)&&(e==null||e.children.map(r=>{var l,d;if(r.children!==void 0){const c=new te(r);(l=this.children)==null||l.push(c)}else{const c=new he(r);(d=this.children)==null||d.push(c)}}))}}class he{constructor(e){var n,u,a,i,r;this.type="condition",this.id=(n=e==null?void 0:e.id)!=null?n:W(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.symbol=(a=e==null?void 0:e.symbol)!=null?a:"",this.checked=(i=e==null?void 0:e.checked)!=null?i:!1,this.describe=(r=e==null?void 0:e.describe)!=null?r:"",this.leftVariableBo=new bt(e==null?void 0:e.leftVariableBo),this.rightVariableBo=new Oe(e==null?void 0:e.rightVariableBo)}}class St{constructor(e){var n,u,a,i;this.controlId=(n=e==null?void 0:e.controlId)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.propName=(i=e==null?void 0:e.propName)!=null?i:""}}class Ne{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"FIELD",this.value=(u=e==null?void 0:e.value)!=null?u:"",this.fieldType=e==null?void 0:e.fieldType}}class xe{constructor(e){var n,u;this.columnName=(n=e.columnName)!=null?n:"",this.desc=(u=e.desc)!=null?u:!1}}class wt{constructor(e){var n,u,a;this.code=(n=e.code)!=null?n:"",this.value=(u=e.value)!=null?u:"",this.field_type=(a=e.field_type)!=null?a:R.ANY}}class gr{constructor(e){var n,u,a,i,r,l,d;this.id=(n=e.id)!=null?n:"",this.limit=(u=e.limit)!=null?u:20,this.formKey=(a=e.formKey)!=null?a:"",this.orders=(r=(i=e.orders)==null?void 0:i.map(c=>new xe(c)))!=null?r:[],this.dataSet=(d=(l=e.dataSet)==null?void 0:l.map(c=>new wt(c)))!=null?d:[]}}function _e(t){var e,n,u,a,i,r;this.filters=(n=(e=t==null?void 0:t.filters)==null?void 0:e.map(l=>l.children!==void 0?new te(l):new he(l)))!=null?n:[],this.viewFilters=(a=(u=t==null?void 0:t.viewFilters)==null?void 0:u.map(l=>l.children!==void 0?new te(l):new he(l)))!=null?a:[],(this instanceof me||this instanceof Mt)&&(this.orders=(r=(i=t==null?void 0:t.orders)==null?void 0:i.map(l=>new xe(l)))!=null?r:[])}class me{constructor(e){var n,u,a,i,r,l,d;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.valueFieldCode=(a=e==null?void 0:e.valueFieldCode)!=null?a:"",this.displayBoList=[],this.isOpenViewFilters=(i=e==null?void 0:e.isOpenViewFilters)!=null?i:0,Array.isArray(e==null?void 0:e.displayBoList)&&(e==null||e.displayBoList.map(c=>{var g;(g=this.displayBoList)==null||g.push(new Ne(c))})),this.keywordMapping=(r=e==null?void 0:e.keywordMapping)!=null?r:"",this.showOrder=(l=e==null?void 0:e.showOrder)!=null?l:!0,this.svcCode=(d=e==null?void 0:e.svcCode)!=null?d:"",_e.call(this,e)}}class yr{constructor(e){var n,u;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.displayBoList=(u=e==null?void 0:e.displayBoList)!=null?u:[]}}class Er{constructor(e){var n,u,a,i,r,l,d,c,g,E;this.code=(n=e==null?void 0:e.code)!=null?n:"view",this.color=(u=e==null?void 0:e.color)!=null?u:"primary",this.command=(a=e==null?void 0:e.command)!=null?a:"view",this.confirmMessage=(i=e==null?void 0:e.confirmMessage)!=null?i:void 0,this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.formKey=(l=e==null?void 0:e.formKey)!=null?l:void 0,this.icon=(d=e==null?void 0:e.icon)!=null?d:"iconliulan1",this.needConfirm=(c=e==null?void 0:e.needConfirm)!=null?c:!1,this.openType=(g=e==null?void 0:e.openType)!=null?g:"modal",this.priorityProcess=(E=e==null?void 0:e.priorityProcess)!=null?E:!0}}class je{constructor(e){var n,u,a,i;this.name=(n=e==null?void 0:e.name)!=null?n:"",this.key=(u=e==null?void 0:e.key)!=null?u:"",this.value=(i=(a=e==null?void 0:e.value)==null?void 0:a.map(r=>new Ne(r)))!=null?i:[]}}class It extends me{constructor(e){var n,u;super(e),this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(a=>new je(a)))!=null?u:[]}}class vr extends me{constructor(e){var n,u,a;super(e),this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(i=>new je(i)))!=null?u:[],this.formCode=(a=e==null?void 0:e.formCode)!=null?a:""}}class Br extends It{constructor(e){var n;super(e),this.rootNode=new Oe(e==null?void 0:e.rootNode),this.filterCode=(n=e==null?void 0:e.filterCode)!=null?n:""}}class Rt{constructor(e){var n,u,a,i;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.fillList=(i=(a=e==null?void 0:e.fillList)==null?void 0:a.map(r=>new St(r)))!=null?i:[]}}class Mt extends Rt{constructor(e){super(e),_e.call(this,e)}}class Ar extends Rt{constructor(e){var n,u;super(e),this.mode=(n=e==null?void 0:e.mode)!=null?n:"current",this.multiple=(u=e==null?void 0:e.multiple)!=null?u:!1}}class Cr{constructor(e){var n,u,a;this.zh=(n=e==null?void 0:e.zh)!=null?n:"",this.en=(u=e==null?void 0:e.en)!=null?u:"",this.ja=(a=e==null?void 0:e.ja)!=null?a:""}}class Fr{constructor(e){var n,u,a;this.stencilName=(n=e==null?void 0:e.stencilName)!=null?n:"",this.expression=(u=e==null?void 0:e.expression)!=null?u:"",this.errMessage=(a=e==null?void 0:e.errMessage)!=null?a:""}}class Ue{constructor(e){var n,u,a;this.id=(n=e==null?void 0:e.id)!=null?n:W(8),this.label=(u=e==null?void 0:e.label)!=null?u:"",this.value=(a=e==null?void 0:e.value)!=null?a:this.label}}class Lt extends Ue{constructor(e){var n,u;super(e),this.image=(n=e==null?void 0:e.image)!=null?n:"",this.type=(u=e==null?void 0:e.type)!=null?u:"src"}}function Dr(t){var e;return(e=t==null?void 0:t.map(n=>new Ue(n)))!=null?e:[]}function br(t){var e;return(e=t==null?void 0:t.map(n=>new Lt(n)))!=null?e:[]}class ge{}class Sr extends ge{constructor(e){super(),this.amount=new O(e==null?void 0:e.amount),this.currency=new O(e==null?void 0:e.currency)}}class wr{constructor(e){var n,u;this.amount=(n=e==null?void 0:e.amount)!=null?n:"",this.currency=(u=e==null?void 0:e.currency)!=null?u:He.CNY}}class Ir extends ge{constructor(e){super(),this.min=new O(e==null?void 0:e.min),this.max=new O(e==null?void 0:e.max)}}class Rr{constructor(e){var n,u;this.min=(n=e==null?void 0:e.min)!=null?n:"",this.max=(u=e==null?void 0:e.max)!=null?u:""}}class Mr{constructor(e){var n,u,a,i,r,l;this.city=(n=e==null?void 0:e.city)!=null?n:"",this.cityDisplay=(u=e==null?void 0:e.cityDisplay)!=null?u:"",this.district=(a=e==null?void 0:e.district)!=null?a:"",this.districtDisplay=(i=e==null?void 0:e.districtDisplay)!=null?i:"",this.province=(r=e==null?void 0:e.province)!=null?r:"",this.provinceDisplay=(l=e==null?void 0:e.provinceDisplay)!=null?l:""}}class Lr extends ge{constructor(e){super(),this.result=new O(e==null?void 0:e.result),this.unit=new O(e==null?void 0:e.unit)}}class $r{constructor(e){var n,u;this.result=(n=e==null?void 0:e.result)!=null?n:0,this.unit=(u=e==null?void 0:e.unit)!=null?u:""}}var He=(t=>(t.CNY="CNY",t.USD="USD",t.JPY="JPY",t.EUR="EUR",t.INR="INR",t.IDR="IDR",t.BRL="BRL",t.AED="AED",t.AUD="AUD",t.CAD="CAD",t.EGP="EGP",t.GBP="GBP",t.ZAR="ZAR",t.KRW="KRW",t.MAD="MAD",t.MXN="MXN",t.MYR="MYR",t.PHP="PHP",t.PLN="PLN",t.RUB="RUB",t.SGD="SGD",t.THB="THB",t.TRY="TRY",t.TWD="TWD",t.VND="VND",t.HKD="HKD",t.IEP="IEP",t))(He||{}),$t=(t=>(t.DEFAULT_DISPLAY="defaultDisplay",t.REQUIRED="required",t.IS_HIDE="isHide",t.IS_SHOW_UNIT="isShowUnit",t.IMD_SEARCH="immediatelySearch",t.MULTIPLE="multiple",t.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",t.CAPTION="caption",t.IS_HIDE_CAPTION="isHideCaption",t.DEFAULT_SHOW_OPTIONS="defaultShowOptions",t.CAN_SEARCH="canSearch",t.CAN_CHECK="canCheck",t.CAN_EDIT="canEdit",t.CAN_DELETE="canDelete",t.SHOW_UPPER_CASE="showUpperCase",t.MICROMETER="micrometer",t.PRECISION="precision",t.PERCENTAGE="percentage",t.OPTIONAL_LEVEL="optionalLevel",t.CONTAINS_SUB_NODE="containsSubNode",t.DEFAULT_COLLAPSE="defaultCollapse",t.CAN_VIEW_FORM="canViewForm",t.VIEW_FORM_MODEL_TYPE="viewFormModelType",t.SERVER_PAGINATION="serverPagination",t.IS_SHOW_CAPTION_TIP="isShowCaptionTip",t.ENCRYPTED="encrypted",t.IS_INLINE_EDIT="isInlineEdit",t.REVISIONS_MODE="revisionsMode",t.ALLOW_COPY_OPTIONS="allowCopyOptions",t))($t||{}),Te=(t=>(t[t.UNKNOWN=0]="UNKNOWN",t[t.READONLY=1]="READONLY",t[t.EDITABLE=2]="EDITABLE",t[t.PRINT=5]="PRINT",t))(Te||{});class qr{constructor(e){var n,u,a,i,r,l;this.isShow=(n=e==null?void 0:e.isShow)!=null?n:!0,this.content=(u=e==null?void 0:e.content)!=null?u:"",this.formKey=(a=e==null?void 0:e.formKey)!=null?a:"",this.openType=(i=e==null?void 0:e.openType)!=null?i:"modal",this.type=(r=e==null?void 0:e.type)!=null?r:"",this.priorityProcess=(l=e==null?void 0:e.priorityProcess)!=null?l:!1}}class Pr{constructor(e){var n,u,a,i;this.id=(n=e==null?void 0:e.id)!=null?n:W(8),this.title=(u=e==null?void 0:e.title)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Ct(r)))!=null?i:[],_e.call(this,e)}}class Vr{constructor(e){var n,u;this.key=(n=e.key)!=null?n:W(8),this.caption=(u=e.caption)!=null?u:""}}class qt{constructor(e){var n,u,a,i;this.width=(n=e==null?void 0:e.width)!=null?n:"",this.height=(u=e==null?void 0:e.height)!=null?u:"",this.widthConfig=(a=e==null?void 0:e.widthConfig)!=null?a:"fill",this.heightConfig=(i=e==null?void 0:e.heightConfig)!=null?i:"fill"}}class ye{constructor(e){this.isHide={type:"boolean"}}}class We extends Array{constructor(e){super()}}class U{constructor(e,n=""){var u,a;this.isHide=(u=e==null?void 0:e.isHide)!=null?u:!1,this.style=new qt(e==null?void 0:e.style),this.caption=(a=e==null?void 0:e.caption)!=null?a:n}}U.Rules=ye,U.RuntimeRules=We;function N(){return N=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var u in n)Object.prototype.hasOwnProperty.call(n,u)&&(t[u]=n[u])}return t},N.apply(this,arguments)}function Or(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function Ke(t){return Ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ke(t)}function Ee(t,e){return Ee=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},Ee(t,e)}function Nr(){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(t){return!1}}function ve(t,e,n){return Nr()?ve=Reflect.construct:ve=function(a,i,r){var l=[null];l.push.apply(l,i);var d=Function.bind.apply(a,l),c=new d;return r&&Ee(c,r.prototype),c},ve.apply(null,arguments)}function xr(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function ze(t){var e=typeof Map=="function"?new Map:void 0;return ze=function(u){if(u===null||!xr(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return ve(u,arguments,Ke(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Ee(a,u)},ze(t)}var _r=/%[sdj%]/g,Pt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Pt=function(e,n){typeof console!="undefined"&&console.warn&&n.every(function(u){return typeof u=="string"})&&console.warn(e,n)});function ke(t){if(!t||!t.length)return null;var e={};return t.forEach(function(n){var u=n.field;e[u]=e[u]||[],e[u].push(n)}),e}function V(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u=1,a=e[0],i=e.length;if(typeof a=="function")return a.apply(null,e.slice(1));if(typeof a=="string"){var r=String(a).replace(_r,function(l){if(l==="%%")return"%";if(u>=i)return l;switch(l){case"%s":return String(e[u++]);case"%d":return Number(e[u++]);case"%j":try{return JSON.stringify(e[u++])}catch(d){return"[Circular]"}break;default:return l}});return r}return a}function jr(t){return t==="string"||t==="url"||t==="hex"||t==="email"||t==="date"||t==="pattern"}function I(t,e){return!!(t==null||e==="array"&&Array.isArray(t)&&!t.length||jr(e)&&typeof t=="string"&&!t)}function Ur(t,e,n){var u=[],a=0,i=t.length;function r(l){u.push.apply(u,l),a++,a===i&&n(u)}t.forEach(function(l){e(l,r)})}function Vt(t,e,n){var u=0,a=t.length;function i(r){if(r&&r.length){n(r);return}var l=u;u=u+1,l<a?e(t[l],i):n([])}i([])}function Hr(t){var e=[];return Object.keys(t).forEach(function(n){e.push.apply(e,t[n])}),e}var Ot=function(t){Or(e,t);function e(n,u){var a;return a=t.call(this,"Async Validation Error")||this,a.errors=n,a.fields=u,a}return e}(ze(Error));function Tr(t,e,n,u){if(e.first){var a=new Promise(function(E,C){var b=function(B){return u(B),B.length?C(new Ot(B,ke(B))):E()},F=Hr(t);Vt(F,n,b)});return a.catch(function(E){return E}),a}var i=e.firstFields||[];i===!0&&(i=Object.keys(t));var r=Object.keys(t),l=r.length,d=0,c=[],g=new Promise(function(E,C){var b=function(m){if(c.push.apply(c,m),d++,d===l)return u(c),c.length?C(new Ot(c,ke(c))):E()};r.length||(u(c),E()),r.forEach(function(F){var m=t[F];i.indexOf(F)!==-1?Vt(m,n,b):Ur(m,n,b)})});return g.catch(function(E){return E}),g}function Nt(t){return function(e){return e&&e.message?(e.field=e.field||t.fullField,e):{message:typeof e=="function"?e():e,field:e.field||t.fullField}}}function xt(t,e){if(e){for(var n in e)if(e.hasOwnProperty(n)){var u=e[n];typeof u=="object"&&typeof t[n]=="object"?t[n]=N(N({},t[n]),u):t[n]=u}}return t}function _t(t,e,n,u,a,i){t.required&&(!n.hasOwnProperty(t.field)||I(e,i||t.type))&&u.push(V(a.messages.required,t.fullField))}function Wr(t,e,n,u,a){(/^\s+$/.test(e)||e==="")&&u.push(V(a.messages.whitespace,t.fullField))}var Xe={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},ne={integer:function(e){return ne.number(e)&&parseInt(e,10)===e},float:function(e){return ne.number(e)&&!ne.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(n){return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!ne.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&!!e.match(Xe.email)&&e.length<255},url:function(e){return typeof e=="string"&&!!e.match(Xe.url)},hex:function(e){return typeof e=="string"&&!!e.match(Xe.hex)}};function Kr(t,e,n,u,a){if(t.required&&e===void 0){_t(t,e,n,u,a);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],r=t.type;i.indexOf(r)>-1?ne[r](e)||u.push(V(a.messages.types[r],t.fullField,t.type)):r&&typeof e!==t.type&&u.push(V(a.messages.types[r],t.fullField,t.type))}function zr(t,e,n,u,a){var i=typeof t.len=="number",r=typeof t.min=="number",l=typeof t.max=="number",d=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=e,g=null,E=typeof e=="number",C=typeof e=="string",b=Array.isArray(e);if(E?g="number":C?g="string":b&&(g="array"),!g)return!1;b&&(c=e.length),C&&(c=e.replace(d,"_").length),i?c!==t.len&&u.push(V(a.messages[g].len,t.fullField,t.len)):r&&!l&&c<t.min?u.push(V(a.messages[g].min,t.fullField,t.min)):l&&!r&&c>t.max?u.push(V(a.messages[g].max,t.fullField,t.max)):r&&l&&(c<t.min||c>t.max)&&u.push(V(a.messages[g].range,t.fullField,t.min,t.max))}var X="enum";function kr(t,e,n,u,a){t[X]=Array.isArray(t[X])?t[X]:[],t[X].indexOf(e)===-1&&u.push(V(a.messages[X],t.fullField,t[X].join(", ")))}function Xr(t,e,n,u,a){if(t.pattern){if(t.pattern instanceof RegExp)t.pattern.lastIndex=0,t.pattern.test(e)||u.push(V(a.messages.pattern.mismatch,t.fullField,e,t.pattern));else if(typeof t.pattern=="string"){var i=new RegExp(t.pattern);i.test(e)||u.push(V(a.messages.pattern.mismatch,t.fullField,e,t.pattern))}}}var y={required:_t,whitespace:Wr,type:Kr,range:zr,enum:kr,pattern:Xr};function Gr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"string")&&!t.required)return n();y.required(t,e,u,i,a,"string"),I(e,"string")||(y.type(t,e,u,i,a),y.range(t,e,u,i,a),y.pattern(t,e,u,i,a),t.whitespace===!0&&y.whitespace(t,e,u,i,a))}n(i)}function Jr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}function Zr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e===""&&(e=void 0),I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function Qr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}function Yr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),I(e)||y.type(t,e,u,i,a)}n(i)}function pr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function es(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function ts(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e==null&&!t.required)return n();y.required(t,e,u,i,a,"array"),e!=null&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function ns(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}var us="enum";function as(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y[us](t,e,u,i,a)}n(i)}function is(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"string")&&!t.required)return n();y.required(t,e,u,i,a),I(e,"string")||y.pattern(t,e,u,i,a)}n(i)}function rs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"date")&&!t.required)return n();if(y.required(t,e,u,i,a),!I(e,"date")){var l;e instanceof Date?l=e:l=new Date(e),y.type(t,l,u,i,a),l&&y.range(t,l.getTime(),u,i,a)}}n(i)}function ss(t,e,n,u,a){var i=[],r=Array.isArray(e)?"array":typeof e;y.required(t,e,u,i,a,r),n(i)}function Ge(t,e,n,u,a){var i=t.type,r=[],l=t.required||!t.required&&u.hasOwnProperty(t.field);if(l){if(I(e,i)&&!t.required)return n();y.required(t,e,u,r,a,i),I(e,i)||y.type(t,e,u,r,a)}n(r)}function ls(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a)}n(i)}var ue={string:Gr,method:Jr,number:Zr,boolean:Qr,regexp:Yr,integer:pr,float:es,array:ts,object:ns,enum:as,pattern:is,date:rs,url:Ge,hex:Ge,email:Ge,required:ss,any:ls};function Je(){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 e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var Ze=Je();function H(t){this.rules=null,this._messages=Ze,this.define(t)}H.prototype={messages:function(e){return e&&(this._messages=xt(Je(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if(typeof e!="object"||Array.isArray(e))throw new Error("Rules must be an object");this.rules={};var n,u;for(n in e)e.hasOwnProperty(n)&&(u=e[n],this.rules[n]=Array.isArray(u)?u:[u])},validate:function(e,n,u){var a=this;n===void 0&&(n={}),u===void 0&&(u=function(){});var i=e,r=n,l=u;if(typeof r=="function"&&(l=r,r={}),!this.rules||Object.keys(this.rules).length===0)return l&&l(),Promise.resolve();function d(m){var B,o=[],h={};function M(v){if(Array.isArray(v)){var S;o=(S=o).concat.apply(S,v)}else o.push(v)}for(B=0;B<m.length;B++)M(m[B]);o.length?h=ke(o):(o=null,h=null),l(o,h)}if(r.messages){var c=this.messages();c===Ze&&(c=Je()),xt(c,r.messages),r.messages=c}else r.messages=this.messages();var g,E,C={},b=r.keys||Object.keys(this.rules);b.forEach(function(m){g=a.rules[m],E=i[m],g.forEach(function(B){var o=B;typeof o.transform=="function"&&(i===e&&(i=N({},i)),E=i[m]=o.transform(E)),typeof o=="function"?o={validator:o}:o=N({},o),o.validator=a.getValidationMethod(o),o.field=m,o.fullField=o.fullField||m,o.type=a.getType(o),o.validator&&(C[m]=C[m]||[],C[m].push({rule:o,value:E,source:i,field:m}))})});var F={};return Tr(C,r,function(m,B){var o=m.rule,h=(o.type==="object"||o.type==="array")&&(typeof o.fields=="object"||typeof o.defaultField=="object");h=h&&(o.required||!o.required&&m.value),o.field=m.field;function M(x,A){return N(N({},A),{},{fullField:o.fullField+"."+x})}function v(x){x===void 0&&(x=[]);var A=x;if(Array.isArray(A)||(A=[A]),!r.suppressWarning&&A.length&&H.warning("async-validator:",A),A.length&&o.message!==void 0&&(A=[].concat(o.message)),A=A.map(Nt(o)),r.first&&A.length)return F[o.field]=1,B(A);if(!h)B(A);else{if(o.required&&!m.value)return o.message!==void 0?A=[].concat(o.message).map(Nt(o)):r.error&&(A=[r.error(o,V(r.messages.required,o.field))]),B(A);var _={};if(o.defaultField)for(var Zt in m.value)m.value.hasOwnProperty(Zt)&&(_[Zt]=o.defaultField);_=N(N({},_),m.rule.fields);for(var G in _)if(_.hasOwnProperty(G)){var Ds=Array.isArray(_[G])?_[G]:[_[G]];_[G]=Ds.map(M.bind(null,G))}var Qt=new H(_);Qt.messages(r.messages),m.rule.options&&(m.rule.options.messages=r.messages,m.rule.options.error=r.error),Qt.validate(m.value,m.rule.options||r,function(it){var J=[];A&&A.length&&J.push.apply(J,A),it&&it.length&&J.push.apply(J,it),B(J.length?J:null)})}}var S;o.asyncValidator?S=o.asyncValidator(o,m.value,v,m.source,r):o.validator&&(S=o.validator(o,m.value,v,m.source,r),S===!0?v():S===!1?v(o.message||o.field+" fails"):S instanceof Array?v(S):S instanceof Error&&v(S.message)),S&&S.then&&S.then(function(){return v()},function(x){return v(x)})},function(m){d(m)})},getType:function(e){if(e.type===void 0&&e.pattern instanceof RegExp&&(e.type="pattern"),typeof e.validator!="function"&&e.type&&!ue.hasOwnProperty(e.type))throw new Error(V("Unknown rule type %s",e.type));return e.type||"string"},getValidationMethod:function(e){if(typeof e.validator=="function")return e.validator;var n=Object.keys(e),u=n.indexOf("message");return u!==-1&&n.splice(u,1),n.length===1&&n[0]==="required"?ue.required:ue[this.getType(e)]||!1}},H.register=function(e,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");ue[e]=n},H.warning=Pt,H.messages=Ze,H.validators=ue;const os={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 jt(t,e={}){const n=new H(t);return n.messages(Object.assign(os,e)),n}const Ut=new or;class q{constructor(e){var g,E,C,b;this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=Tt,this.removeSetting=Ht,this._callControlHooks("preInstance",e);const{controlName:n,controlIcon:u,controlType:a,controlFieldType:i,controlEventKeys:r,controlCustomEvents:l,name:d,setting:c}=new.target;n&&u&&a||yt(`The ${d} controlName,controlIcon,controlType is not define`),this.id=(g=e==null?void 0:e.id)!=null?g:W(10),this.name=n,this.icon=u,this.type=(E=e==null?void 0:e.type)!=null?E:a,this.props=new U(e==null?void 0:e.props,new.target.controlName),this.controlType=(C=e==null?void 0:e.controlType)!=null?C:"base",this.setting=K(c),this.fieldType=(b=e==null?void 0:e.fieldType)!=null?b:i,this.eventKeys=K(r),this.customEvents=K(l),Promise.resolve().then(()=>{this._callControlHooks("postInstance",e)})}get rules(){const e=this.props.constructor.Rules;return e?new e(this.props):{}}_callControlHooks(...e){const[n,...u]=e;return Ut.emit(n,this,...u)}preUpdate(e,n){this._callControlHooks("preUpdateProps",e,n)}postUpdate(e,n){this._callControlHooks("postUpdateProps",e,n)}updateProps(e,n){this.preUpdate(e,n),Ji(this.props,e,n),this.postUpdate(e,n)}preValidate(){return se(this,null,function*(){const e=Z({},this.rules),n=yield this._callControlHooks("preValidate",e),u=n[n.length-1];return u===!1?void 0:u})}validate(e,n){return se(this,null,function*(){const u=yield this.preValidate(),a=u!==void 0?u:Z({},this.rules);Array.isArray(n)&&n.forEach(r=>{a.hasOwnProperty(r)&&delete a[r]});const i=jt(a,e);try{return yield i.validate(this.props),!0}catch(r){throw r.control||(r.control=this),r}})}toDataBindModel(e=null){const n=this.fieldType,u=this.id,a=this.type,{dataBind:i,datasourceBind:r,optionConfig:l,caption:d,required:c,maxLength:g,options:E,encrypted:C,encryptedMode:b}=this.props;if(!n&&!i&&!r)return;const F={parentId:e,fieldType:n,controlId:u,caption:d,type:a,props:{}};switch(i&&(F.dataBind=i),l){case"datasource":case void 0:r&&(F.datasourceBind=r);break;case"custom":F.props.options=E;break}return c!==void 0&&(F.required=c),g!==void 0&&(F.maxLength=g),C!==void 0&&(F.encrypted=C),b!==void 0&&(F.encryptedMode=b),F}preToSchema(){this._callControlHooks("preToSchema",this)}toSchema(){return this.preToSchema(),{id:this.id,type:this.type,props:K(this.props),fieldType:this.fieldType,controlType:this.controlType}}static updateBasicControl(e,n){e==="setting"&&(n.add&&this.setting.push(...n.add),n.remove&&this.removeSettingItem(n.remove),n.update)}}q.controlName="\u63A7\u4EF6",q.controlIcon="icon",q.controlType="control",q.controlEventKeys=[],q.controlCustomEvents=[],q.setting=[],q.__is_control__=!0,q.removeSettingItem=Ht,q.updateSettingItem=Tt;function Ht(t){(Array.isArray(t)?t:[t]).forEach(n=>{var i,r;const u=typeof n!="string",a=this.setting.findIndex(l=>l.key===(u?n.key:n));a!==-1&&(u?this.setting[a].showItems=(i=this.setting[a].showItems)==null?void 0:i.filter(l=>!n.hideItems.includes(l)):this.setting.splice(a,1),u&&!((r=this.setting[a].showItems)!=null&&r.length)&&this.setting.splice(a,1))})}function Tt(t,e){(typeof t=="string"?[t]:t).forEach(u=>{var i;const a=this.setting.find(r=>r.key===u);a&&(typeof e=="boolean"?a.visible=e:typeof e=="object"&&(((i=e.type)!=null?i:"replace")==="replace"?a.showItems=e.showItems:a.showItems.push(...e.showItems)))})}class T{constructor(e){var r,l,d,c,g;this.customEvents=[],this.parent=null;const{controlType:n,controlFieldType:u,name:a,controlCustomEvents:i}=new.target;n||yt(`The ${a} controlType is not define`),this.id=(r=e==null?void 0:e.id)!=null?r:W(10),this.type=(l=e==null?void 0:e.type)!=null?l:n,this.props=new U(e==null?void 0:e.props),this.customEvents=i,this.controlType=(d=e==null?void 0:e.controlType)!=null?d:"base",this.fieldType=(c=e==null?void 0:e.fieldType)!=null?c:u,this.pageStatus=(g=e==null?void 0:e.pageStatus)!=null?g:Te.UNKNOWN}get rules(){const e=this.props.constructor.RuntimeRules;if(e){const n=new e(this.props);return Array.from(n)}return[]}}T.controlType="control",T.__is_control__=!0,T.controlCustomEvents=[];function Qe(t){t.hasOwnProperty("optionConfig")||(this.optionConfig={type:"any"}),t.hasOwnProperty("options")||(this.options={type:"any"}),t.hasOwnProperty("datasourceBind")||(this.datasourceBind={type:"any"}),t.hasOwnProperty("options")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="custom")?this.options=[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{label:{type:"string",required:!0,message:f.getMessage("pleaseEnterLabel")},value:{type:"string",required:!0,message:f.getMessage("pleaseEnterValue")}}}},{type:"array",validator(e,n,u){n.length===0&&u(f.getMessage("optionIsRequired")),u()}},{type:"array",validator(e,n,u){const a=n.map(r=>r.value),i=tr(a);a.length!==i.length?u(f.getMessage("optionIdIsRepeat")):u()},message:f.getMessage("optionIdIsRepeat")}]:t.hasOwnProperty("datasourceBind")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="datasource")&&(this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterSvcCode")},displayBoList:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",validator(e,n,u){n.length===0&&u(f.getMessage("pleaseBindAtLeastOneDisplayValue")),u()},message:f.getMessage("pleaseBindAtLeastOneDisplayValue")}],orders:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:f.getMessage("isNotBoolean")}}}}]}}])}function cs(t,e,n=!1){this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterDataCodeInDataSetting":"pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterValueFieldCodeInDataSetting":"pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterSvcCodeInDataSetting":"pleaseEnterSvcCode")},attributes:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{name:{type:"string",required:!0,message:f.getMessage("isNotString")},key:{type:"string",required:!0,message:f.getMessage("isNotString")},value:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",validator(u,a,i){a.length===0&&i(f.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")),i()},message:f.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")}]}}}],orders:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:f.getMessage("isNotBoolean")}}}}]}}]}class Ye extends ye{constructor(e){super(e),this.dataBind={},this.caption={type:"string",required:!0,message:f.getMessage("pleaseEnterCaption")},this.isHideCaption={type:"boolean"},this.labelPosition={type:"enum",enum:["top","left"]},this.defaultState={type:"enum",enum:["default","readonly"]},this.required={type:"boolean"},this.captionTip={type:"string",required:!1,message:f.getMessage("pleaseEnterCaptionTip")};const n={fieldCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")}};if(e.dataBind instanceof O)this.dataBind={type:"object",required:!0,fields:K(n),message:f.getMessage("pleaseEnterFieldCode")};else{let u={type:"object",required:!0,fields:{},message:f.getMessage("pleaseEnterFieldCode")};Object.keys(e.dataBind).forEach(a=>{u.fields[a]={type:"object",required:!0,fields:K(n),message:f.getMessage("pleaseEnterFieldCode")}}),this.dataBind=u}e.isShowCaptionTip&&(this.captionTip.required=!0)}}class Wt extends We{constructor(e){super(e),this.push({type:"string",required:e.isHide?!1:e.required,message:e.requiredMessage!==""?e.requiredMessage:f.getMessage("runtimeRequired",{caption:e.caption})})}}class ae extends U{constructor(e){var n,u,a,i,r,l,d,c,g,E;super(e),this.caption=(n=e==null?void 0:e.caption)!=null?n:"",this.isHideCaption=(u=e==null?void 0:e.isHideCaption)!=null?u:!1,this.isShowCaptionTip=(a=e==null?void 0:e.isShowCaptionTip)!=null?a:!1,this.captionTip=(i=e==null?void 0:e.captionTip)!=null?i:"",this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.labelPosition=(l=e==null?void 0:e.labelPosition)!=null?l:"top",this.placeholder=(d=e==null?void 0:e.placeholder)!=null?d:"",this.required=(c=e==null?void 0:e.required)!=null?c:!1,this.requiredMessage=(g=e==null?void 0:e.requiredMessage)!=null?g:"",this.dataBind=new O(e==null?void 0:e.dataBind),this.defaultValue=(E=e==null?void 0:e.defaultValue)!=null?E:""}}ae.Rules=Ye,ae.RuntimeRules=Wt;class ds extends Ye{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource"],message:f.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:f.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")}],Qe.call(this,e)}}class Kt extends q{constructor(e){super(e),this.controlType="form",this.props=new ae(e==null?void 0:e.props)}}Kt.controlEventKeys=["on_change","on_focus","on_blur"];class fs extends T{constructor(e){super(e),this.controlType="form",this.props=new ae(e==null?void 0:e.props)}}class ie extends U{constructor(e){super(e)}}function zt(t,e){var n;(n=Object.getOwnPropertyDescriptors(t)[e])!=null&&n.enumerable&&Object.defineProperty(t,e,{enumerable:!1})}function pe(t,e){t.parent=e,zt(t,"parent")}function kt(t,e){t.forEach(n=>{pe(n,e)})}const Xt=Symbol("targetKey");function Gt(t){var e;return(e=t[Xt])!=null?e:t}function Jt(t,e){return kt(t,e),new Proxy(t,{get(n,u,...a){return u===Xt?n:Reflect.get(n,u,...a)},set(n,u,a,...i){if(er(t)&&u==="length"&&a===t.length)return!0;const r=Reflect.set(n,u,a,...i);return pi(a)&&pe(a,e),r}})}function re(t,e,n,u){const a=u!=null?u:t;let i=Jt(Gt(n!=null?n:[]),a);Object.defineProperty(t,e,{get(){return i},set(r){i=Jt(Gt(r),a)},enumerable:!0})}const hs=1e4;class z extends q{constructor(e){super(e),this.controlType="layout";const{excludes:n,childrenMaxLength:u}=new.target;this.props=new ie(e==null?void 0:e.props),re(this,"children",e==null?void 0:e.children),this.excludes=K(n),this.childrenMaxLength=u}judgeExcludesChildren(e){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(e)}judgeJoinChildren(e){const n=this.judgeExcludesChildren(e);return n&&this.childrenMaxLength>this.children.length}validate(e,n){return se(this,null,function*(){return yield rt(z.prototype,this,"validate").call(this,e,n),yield Promise.all(this.children.map(u=>u.validate(e,n))),!0})}toDataBindModel(e=null){const n=super.toDataBindModel(),u=n?[n]:[];return this.children.reduce((a,i)=>{const r=i.toDataBindModel(e);if(Array.isArray(r)){const l=r.filter(d=>!!d);return[...a,...l]}return r&&a.push(r),a},u)}toSchema(){const e=super.toSchema(),n=this.children.map(u=>u.toSchema());return Ce(Z({},e),{children:n})}}z.excludes=!1,z.childrenMaxLength=hs;class et extends T{constructor(e){super(e),this.controlType="layout",this.props=new ie(e==null?void 0:e.props),re(this,"children",e==null?void 0:e.children)}}class tt extends U{constructor(e,n){super(n),re(this,"headers",n==null?void 0:n.headers,e)}}class Be extends q{constructor(e){super(e),this.controlType="list",this.props=new tt(this,e==null?void 0:e.props)}validate(e,n){return se(this,null,function*(){return yield rt(Be.prototype,this,"validate").call(this,e),yield Promise.all(this.props.headers.map(u=>u.validate(e,n))),!0})}toDataBindModel(){const e=super.toDataBindModel(),n=e?[e]:[],u=this.id;return this.props.headers.reduce((a,i)=>{const r=i.toDataBindModel(u);if(Array.isArray(r)){const l=r.filter(d=>!!d);return[...a,...l]}return r&&a.push(r),a},n)}toSchema(){const e=super.toSchema(),n=this.props.headers.map(u=>u.toSchema());return Ce(Z({},e),{props:Ce(Z({},this.props),{headers:n})})}}Be.controlFieldType=R.LIST;class ms extends T{constructor(e){super(e),this.controlType="list",this.props=new tt(this,e==null?void 0:e.props),re(this,"children",e==null?void 0:e.children)}get length(){return this.children.length}}class nt extends ye{constructor(e){super(e),this.caption={type:"string",required:!0,message:f.getMessage("pleaseEnterCaption")},this.width={type:"number",required:!1,message:f.getMessage("pleaseEnterColumnWidth")},this.width.required=e.widthType==="px"}}class Ae extends U{constructor(e){var n,u,a,i,r;super(e),this.width=(n=e==null?void 0:e.width)!=null?n:150,this.widthType=(e==null?void 0:e.widthType)||"auto",this.caption=(u=e==null?void 0:e.caption)!=null?u:"",this.fixed=(a=e==null?void 0:e.fixed)!=null?a:"none",this.autoWidth=new Ve(e==null?void 0:e.autoWidth),this.dataBind=new O(e==null?void 0:e.dataBind),this.sort=(i=e==null?void 0:e.sort)!=null?i:!0,this.align=e==null?void 0:e.align,this.colSpan=e==null?void 0:e.colSpan,this.autoHeight=(r=e==null?void 0:e.autoHeight)!=null?r:!1}}Ae.Rules=nt;class gs extends nt{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource","none"],message:f.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:f.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")}],Qe.call(this,e)}}class ys extends q{constructor(e){super(e),this.controlType="column",this.props=new Ae(e==null?void 0:e.props)}}class Es extends T{constructor(e){super(e),this.controlType="column",this.props=new Ae(e==null?void 0:e.props)}}class ut extends ie{constructor(e){super(e),this.dataBind=new O(e==null?void 0:e.dataBind)}}class vs extends z{constructor(e){super(e),this.controlType="search",this.props=new ut(e==null?void 0:e.props)}}class Bs extends et{constructor(e){super(e),this.controlType="search",this.props=new ut(e==null?void 0:e.props)}}class at extends ie{constructor(e){super(e)}}class As extends z{constructor(e){super(e),this.controlType="wrap",this.props=new at(e==null?void 0:e.props)}}class Cs extends et{constructor(e){super(e),this.controlType="wrap",this.props=new at(e==null?void 0:e.props)}}function Fs(t){t.hasOwnProperty("linkOperationOption")&&t.hasOwnProperty("showLinkOperation")&&t.showLinkOperation&&(this.linkOperationOption=[{type:"object",fields:{formKey:{type:"string",required:!0,message:f.getMessage("pleaseEnterForm")}}}])}s.AMOUNT_TYPE=He,s.AddressValue=Mr,s.AmountDataBind=Sr,s.AmountValue=wr,s.AutoWidth=Ve,s.BaseControlProperty=ae,s.BaseControlPropertyRules=Ye,s.BaseControlPropertyRuntimeRules=Wt,s.BaseStyle=qt,s.COMMON_SETTING_TYPE=$t,s.CalcDataBind=Lr,s.CalcValue=$r,s.ColumnControlProperty=Ae,s.ColumnControlPropertyRules=nt,s.ColumnOptionAndDataSourcePropertyRules=gs,s.CustomAttributeItem=je,s.CustomPermissionItem=Vr,s.DataBind=O,s.DataSourceBind=me,s.DataSourceDataSetValue=wt,s.DataSourceOrderItem=xe,s.DataSourceParamItem=gr,s.DataStorageDoc=dr,s.DesignerColumnControl=ys,s.DesignerControl=q,s.DesignerFormControl=Kt,s.DesignerLayoutControl=z,s.DesignerListControl=Be,s.DesignerSearchControl=vs,s.DesignerWrapControl=As,s.DisplayBoListItem=Ne,s.FieldBindItem=Ft,s.FieldFilterCondition=he,s.FieldFilterConditions=te,s.FillBackBind=Ar,s.FillPayloadBind=Mt,s.FormBind=fe,s.FormSelectBind=fr,s.ImageOptionSetting=Lt,s.Language=Cr,s.LayoutControlProperty=ie,s.LeftVariable=bt,s.LinkOperationOption=Er,s.ListBind=hr,s.ListControlProperty=tt,s.MetaAutoWidth=cr,s.MetaWidth=de,s.MultistageFillingItem=St,s.ObjectDataBind=ge,s.OperationItem=qr,s.OptionAndDataSourcePropertyRules=ds,s.OptionSetting=Ue,s.OrganizationDataSourceBind=vr,s.PAGE_STATUS=Te,s.Property=U,s.PropertyRules=ye,s.PropertyRuntimeRules=We,s.RangeDataBind=Ir,s.RangeDateValue=Rr,s.RegisterControls=ce,s.RegularRules=Fr,s.RightVariable=Oe,s.RuntimeColumnControl=Es,s.RuntimeControl=T,s.RuntimeFormControl=fs,s.RuntimeLayoutControl=et,s.RuntimeListControl=ms,s.RuntimeSearchControl=Bs,s.RuntimeWrapControl=Cs,s.SearchControlProperty=ut,s.SelectedContentConfig=yr,s.SubListItem=Dt,s.SubListPageConfig=mr,s.SuperDataSourceBind=It,s.TreeDataSourceBind=Br,s.ViewOperationItem=Pr,s.WrapControlProperty=at,s.controlHooksEmitter=Ut,s.createValidator=jt,s.defineArrayParent=kt,s.defineControlArrayToProperty=re,s.defineParent=pe,s.initImageOptions=br,s.initLinkOperationRules=Fs,s.initOptionAndDataSourceRules=Qe,s.initOptions=Dr,s.initSuperDataSourceRules=cs,s.setPropertyDontEnum=zt,Object.defineProperty(s,"__esModule",{value:!0})});
|
|
1
|
+
var Ss=Object.defineProperty,ws=Object.defineProperties;var Is=Object.getOwnPropertyDescriptors;var Yt=Object.getOwnPropertySymbols,Rs=Object.getPrototypeOf,Ms=Object.prototype.hasOwnProperty,Ls=Object.prototype.propertyIsEnumerable,$s=Reflect.get;var pt=(s,D,w)=>D in s?Ss(s,D,{enumerable:!0,configurable:!0,writable:!0,value:w}):s[D]=w,Z=(s,D)=>{for(var w in D||(D={}))Ms.call(D,w)&&pt(s,w,D[w]);if(Yt)for(var w of Yt(D))Ls.call(D,w)&&pt(s,w,D[w]);return s},Ce=(s,D)=>ws(s,Is(D));var rt=(s,D,w)=>$s(Rs(s),w,D);var se=(s,D,w)=>new Promise((Fe,le)=>{var De=j=>{try{Q(w.next(j))}catch(Y){le(Y)}},be=j=>{try{Q(w.throw(j))}catch(Y){le(Y)}},Q=j=>j.done?Fe(j.value):Promise.resolve(j.value).then(De,be);Q((w=w.apply(s,D)).next())});(function(s,D){typeof exports=="object"&&typeof module!="undefined"?D(exports):typeof define=="function"&&define.amd?define(["exports"],D):(s=typeof globalThis!="undefined"?globalThis:s||self,D(s.modelDrivenCore={}))})(this,function(s){"use strict";var D="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",w="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Fe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",le="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",De="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",be="{caption}\u5FC5\u586B",Q="\u8BF7\u8F93\u5165\u6807\u9898",j="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",Y="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",en="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",tn="\u8BF7\u7ED1\u5B9A\u8868\u5355",nn="\u8BF7\u7ED1\u5B9A\u5217\u8868",un="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",an="\u8BF7\u8F93\u5165\u663E\u793A\u503C",rn="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",sn="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ln="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",on="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",cn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",dn="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",fn="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",hn="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",mn="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",gn="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",yn="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",En="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",vn="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Bn="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",An="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Cn="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Fn="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Dn="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",bn="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Sn="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",wn="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",In="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Rn="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Mn="\u8BF7\u9009\u62E9\u7701",Ln="\u8BF7\u9009\u62E9\u5E02",$n="\u8BF7\u9009\u62E9\u533A",qn="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Pn="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Vn="\u8BF7\u8F93\u5165\u5217\u5BBD",On="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Nn="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",xn="\u8BF7\u9009\u62E9\u63A7\u4EF6",_n="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",jn="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Un="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Hn="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Tn="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Wn="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Kn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",zn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",kn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Xn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Gn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Jn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Zn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Qn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Yn="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",pn="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",eu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",tu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",nu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",uu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",au="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",iu={isNotNumber:D,isNotString:w,isNotObject:Fe,isNotArray:le,isNotBoolean:De,runtimeRequired:be,pleaseEnterCaption:Q,pleaseEnterCaptionTip:j,pleaseEnterPlaceholder:Y,pleaseEnterFieldCode:en,pleaseEnterForm:tn,pleaseEnterList:nn,pleaseEnterProcess:un,pleaseEnterLabel:an,pleaseEnterValue:rn,bizKeyNotBindFiled:sn,pleaseSelectOneField:ln,pleaseEnterNumberRange:on,pleaseEnterAValueGreaterThanMin:cn,pleaseEnterAValueLessThanMax:dn,numberRangeSetError:fn,stringRangeError:hn,attachmentMaxSize:mn,pleaseEnterTotalScoreSetting:gn,theTotalScoreMustNotBeLessThan1:yn,scoreDefaultValueRange:En,attachmentLimitError:vn,PleaseReselectTheOptionalQuantity:Bn,TheMaximumLengthIsGreaterThanTheMinimumLength:An,TheMinimumLengthIsGreaterThanTheMaximumLength:Cn,PleaseSelectTheCorrectOptionSettings:Fn,optionIdIsRepeat:Dn,optionIsRequired:bn,pleaseEnterDataCode:Sn,pleaseEnterValueFieldCode:wn,pleaseEnterSvcCode:In,pleaseBindAtLeastOneDisplayValue:Rn,pleaseSelectProvince:Mn,pleaseSelectCity:Ln,pleaseSelectDistrict:$n,limitRowsCannotBeLessThan0:qn,TheNumberOfRowsCannotBeLessThanMinRows:Pn,pleaseEnterColumnWidth:Vn,pleaseSetTheLogicalRelationshipOfAllRuleConditions:On,pleaseCompleteAllRulesAndConditions:Nn,pleaseSelectControl:xn,pleaseSelectAtLeastOneColumn:_n,pleaseSelectFillBackMode:jn,pleaseSelectDashboard:Un,rootNodeIsRequired:Hn,theViewNameCannotBeEmpty:Tn,pleaseSelectOcrType:Wn,pleaseSelectAtLeastOneFieldToFillIn:Kn,pleaseChooseAtLeastOne:zn,pleaseEnterButtonContent:kn,pleaseEnterDataCodeInDataSetting:Xn,pleaseEnterValueFieldCodeInDataSetting:Gn,pleaseEnterSvcCodeInDataSetting:Jn,pleaseBindAtLeastOneDisplayValueInDataSetting:Zn,rootNodeIsRequiredInDataSetting:Qn,pleaseEnterMaxHeight:Yn,pleaseEnter:pn,pleaseEnterWatermark:eu,pleaseEnterFileName:tu,pleaseUploadAtLeastOnePrintTemplate:nu,pleaseAssignBusiness:uu,pleaseAssignExternal:au},ru="Please enter a number",su="Please enter a string",lu="Please enter an object",ou="Please enter an array",cu="Please enter a boolean",du="{caption} Required",fu="Please enter the title",hu="Please enter the bubble prompt",mu="Please enter the prompt text",gu="Please bind data items",yu="Please bind the form",Eu="Please bind the list",vu="Please bind the process",Bu="Please enter the displayed value",Au="Please enter the stored value",Cu="The document number is not bound to the data item",Fu="Please select at least one display field",Du="Please enter a value greater than or equal to {min} and less than or equal to {max}",bu="Please enter a value greater than or equal to {min}",Su="Please enter a value less than or equal to {max}",wu="The value range is set incorrectly",Iu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Ru="The attachment size must be between 0MB and 1000MB",Mu="Please fill in the total score setting",Lu="The total score cannot be less than 1",$u="The default value must be between {min} and {max}",qu="The number of attachments uploaded must be between {min} and {max}",Pu="Please re-select the optional quantity",Vu="The maximum length of the control must be greater than the minimum length",Ou="The minimum length of the control must be less than the maximum length",Nu="Please select the correct option setting",xu="Option ID cannot be repeated",_u="Please enter at least one option",ju="Please bind the data source",Uu="Please bind the stored value",Hu="Please bind the service",Tu="At least one display value must be bound",Wu="Please select a province",Ku="Please select a city",zu="Please select a district",ku="The minimum number of lines to fill in cannot be less than 0",Xu="The number of rows cannot be less than {min} rows",Gu="Please enter the column width",Ju="Please set the logical relationship of all rule conditions",Zu="Please complete all rules and conditions",Qu="please select control",Yu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",pu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ea="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ta="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",na="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ua="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",aa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ia="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ra="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",sa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",la="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",oa="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ca="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",da="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",fa="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ha="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ma="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ga="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ya={isNotNumber:ru,isNotString:su,isNotObject:lu,isNotArray:ou,isNotBoolean:cu,runtimeRequired:du,pleaseEnterCaption:fu,pleaseEnterCaptionTip:hu,pleaseEnterPlaceholder:mu,pleaseEnterFieldCode:gu,pleaseEnterForm:yu,pleaseEnterList:Eu,pleaseEnterProcess:vu,pleaseEnterLabel:Bu,pleaseEnterValue:Au,bizKeyNotBindFiled:Cu,pleaseSelectOneField:Fu,pleaseEnterNumberRange:Du,pleaseEnterAValueGreaterThanMin:bu,pleaseEnterAValueLessThanMax:Su,numberRangeSetError:wu,stringRangeError:Iu,attachmentMaxSize:Ru,pleaseEnterTotalScoreSetting:Mu,theTotalScoreMustNotBeLessThan1:Lu,scoreDefaultValueRange:$u,attachmentLimitError:qu,PleaseReselectTheOptionalQuantity:Pu,TheMaximumLengthIsGreaterThanTheMinimumLength:Vu,TheMinimumLengthIsGreaterThanTheMaximumLength:Ou,PleaseSelectTheCorrectOptionSettings:Nu,optionIdIsRepeat:xu,optionIsRequired:_u,pleaseEnterDataCode:ju,pleaseEnterValueFieldCode:Uu,pleaseEnterSvcCode:Hu,pleaseBindAtLeastOneDisplayValue:Tu,pleaseSelectProvince:Wu,pleaseSelectCity:Ku,pleaseSelectDistrict:zu,limitRowsCannotBeLessThan0:ku,TheNumberOfRowsCannotBeLessThanMinRows:Xu,pleaseEnterColumnWidth:Gu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ju,pleaseCompleteAllRulesAndConditions:Zu,pleaseSelectControl:Qu,pleaseSelectDashboard:Yu,theViewNameCannotBeEmpty:pu,pleaseSelectOcrType:ea,pleaseSelectAtLeastOneFieldToFillIn:ta,pleaseChooseAtLeastOne:na,pleaseEnterButtonContent:ua,pleaseEnterDataCodeInDataSetting:aa,pleaseEnterValueFieldCodeInDataSetting:ia,pleaseEnterSvcCodeInDataSetting:ra,pleaseBindAtLeastOneDisplayValueInDataSetting:sa,rootNodeIsRequiredInDataSetting:la,pleaseEnterMaxHeight:oa,pleaseEnter:ca,pleaseEnterWatermark:da,pleaseEnterFileName:fa,pleaseUploadAtLeastOnePrintTemplate:ha,pleaseAssignBusiness:ma,pleaseAssignExternal:ga},Ea="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",va="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ba="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Aa="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ca="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fa="{caption}\u5FC5\u9808",Da="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ba="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Sa="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wa="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ia="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ra="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ma="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",La="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$a="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",qa="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Pa="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Va="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Oa="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Na="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xa="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",_a="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ja="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ua="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ha="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ta="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Wa="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Ka="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",za="\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",ka="\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",Xa="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ga="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Ja="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Za="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Qa="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ya="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",pa="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ei="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ti="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ni="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ui="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ai="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ii="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ri="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",si="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",li="please select control",oi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ci="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",di="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",fi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",hi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",mi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",gi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",yi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ei="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",vi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Bi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ai="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ci="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Fi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Di="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",bi="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Si="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",wi="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ii={isNotNumber:Ea,isNotString:va,isNotObject:Ba,isNotArray:Aa,isNotBoolean:Ca,runtimeRequired:Fa,pleaseEnterCaption:Da,pleaseEnterCaptionTip:ba,pleaseEnterPlaceholder:Sa,pleaseEnterFieldCode:wa,pleaseEnterForm:Ia,pleaseEnterList:Ra,pleaseEnterProcess:Ma,pleaseEnterLabel:La,pleaseEnterValue:$a,bizKeyNotBindFiled:qa,pleaseSelectOneField:Pa,pleaseEnterNumberRange:Va,pleaseEnterAValueGreaterThanMin:Oa,pleaseEnterAValueLessThanMax:Na,numberRangeSetError:xa,stringRangeError:_a,attachmentMaxSize:ja,pleaseEnterTotalScoreSetting:Ua,theTotalScoreMustNotBeLessThan1:Ha,scoreDefaultValueRange:Ta,attachmentLimitError:Wa,PleaseReselectTheOptionalQuantity:Ka,TheMaximumLengthIsGreaterThanTheMinimumLength:za,TheMinimumLengthIsGreaterThanTheMaximumLength:ka,PleaseSelectTheCorrectOptionSettings:Xa,optionIdIsRepeat:Ga,optionIsRequired:Ja,pleaseEnterDataCode:Za,pleaseEnterValueFieldCode:Qa,pleaseEnterSvcCode:Ya,pleaseBindAtLeastOneDisplayValue:pa,pleaseSelectProvince:ei,pleaseSelectCity:ti,pleaseSelectDistrict:ni,limitRowsCannotBeLessThan0:ui,TheNumberOfRowsCannotBeLessThanMinRows:ai,pleaseEnterColumnWidth:ii,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ri,pleaseCompleteAllRulesAndConditions:si,pleaseSelectControl:li,pleaseSelectDashboard:oi,theViewNameCannotBeEmpty:ci,pleaseSelectOcrType:di,pleaseSelectAtLeastOneFieldToFillIn:fi,pleaseChooseAtLeastOne:hi,pleaseEnterButtonContent:mi,pleaseEnterDataCodeInDataSetting:gi,pleaseEnterValueFieldCodeInDataSetting:yi,pleaseEnterSvcCodeInDataSetting:Ei,pleaseBindAtLeastOneDisplayValueInDataSetting:vi,rootNodeIsRequiredInDataSetting:Bi,pleaseEnterMaxHeight:Ai,pleaseEnter:Ci,pleaseEnterWatermark:Fi,pleaseEnterFileName:Di,pleaseUploadAtLeastOnePrintTemplate:bi,pleaseAssignBusiness:Si,pleaseAssignExternal:wi},Ri={zhCN:iu,enUS:ya,jaJP:Ii},st;(function(t){t.Number="Number",t.Operator="Operator",t.VariableInMainTable="VariableInMainTable",t.VariableInCurrentSubTable="VariableInCurrentSubTable",t.VariableInOtherSubTable="VariableInOtherSubTable",t.UndefinedVariable="UndefinedVariable"})(st||(st={}));var lt;(function(t){t.SUM="SUM",t.AVG="AVG",t.MAX="MAX",t.MIN="MIN"})(lt||(lt={}));var Mi="zh-CN";function P(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var k;(function(t){t.BASE="base",t.FORM="form",t.LAYOUT="layout",t.WRAP="wrap",t.COLUMN="column",t.LIST="list",t.SEARCH="search"})(k||(k={}));var L;(function(t){t.TITLE="title",t.LINK="link",t.BUTTON="button",t.DIVIDER="divider",t.TEXT="text",t.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",t.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",t.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",t.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",t.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",t.EXPORT_LIST_BUTTON="list-page-btn-export-list",t.LIST_SELECT_BUTTON="list-select-button",t.ORGANIZATION_SELECTION="organization-selection",t.FORM_SELECT_BUTTON="form-select-button",t.LIST_VIEW_SELECT="list-view-select",t.TEXT_OCR_BUTTON="text-ocr-button",t.INVOICE_CHECK_BUTTON="invoice-check-button",t.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",t.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",t.VARCHAR_COLUMN="varchar-column",t.TEXT_COLUMN="text-column",t.DECIMAL_COLUMN="decimal-column",t.TIMESCOPE_COLUMN="timescope-column",t.TIMESTAMP_COLUMN="timestamp-column",t.ARRAY_COLUMN="array-column",t.DEPARTMENT_COLUMN="department-column",t.AUTO_NUMBER_COLUMN="auto-number-column",t.FILE_COLUMN="file-column",t.IMAGE_COLUMN="image-column",t.PEOPLE_COLUMN="people-column",t.LOCATION_COLUMN="location-column",t.CUSTOM_COLUMN="custom-column",t.ORDER_COLUMN="order-column",t.OPERATION_COLUMN="operation-column",t.EMPLOYEE_COLUMN="employee-column",t.Approval_Status_Column="approval-status-column",t.ADDRESS="address",t.AMOUNT="amount",t.ATTACHMENT="attachment",t.AUTO_NUMBER="auto-number",t.CALC="calc",t.CHECKBOX="checkbox",t.DATE_PICKER="date-picker",t.DATE_RANGE="date-range",t.DEPARTMENT="department",t.EMPLOYEE="employee",t.IMAGE="image",t.INPUT="input",t.NUMBER="number",t.RADIO="radio",t.RICH_TEXT="rich-text",t.SCORE="score",t.SEARCH_DATE_RANGE="search-date-range",t.SEARCH_NUMBER_RANGE="search-number-range",t.SEARCH_INPUT="search-input",t.SELECT="select",t.SELECT_MULTIPLE="select-multiple",t.SELECT_RELATION="select-relation",t.VUE_FORM_ITEM="vue-form-item",t.TEXTAREA="textarea",t.EMAIL="email",t.FOOTER="footer",t.HEADER="header",t.ID_CARD="id-card",t.MOBILE="mobile",t.PHONE="phone",t.RADIO_IMAGE="radio-image",t.ELECTRONIC_SIGNATURE="electronic-signature",t.WPS="wps",t.CARD_GROUP="card-group",t.COL="col",t.GRID="grid",t.GRID_ROW="grid-row",t.GRID_TABLE_COLUMN="grid-table-column",t.ROW="row",t.TWO_COLUMNS="two-columns",t.SUBTABLE_COLUMN="subtable-column",t.SUBTABLE_ROW="subtable-row",t.TAB="tab",t.TAB_PANE="tab-pane",t.TOOLBOX="toolbox",t.DATA_VIEW="data-view",t.LIST_VIEW="list-view",t.ACTION_BAR="action-bar",t.SUBTABLE="subtable",t.GRID_TABLE="grid-table",t.SIMPLE_SEARCH="simple-search",t.PAGINATION="pagination",t.CHECKBOX_IMAGE="checkbox-image",t.DASHBOARD="dashboard",t.TREE="tree",t.EMPLOYEE2="employee2",t.DEPARTMENT2="department2"})(L||(L={}));var R;(function(t){t.VARCHAR="varchar",t.TEXT="text",t.ARRAY="array",t.ADDRESS="location",t.DECIMAL="decimal",t.DECIMAL_RANGE="decimal_range",t.TIMESTAMP="timestamp",t.EMPLOYEES="people",t.DEPARTMENTS="department",t.MONEY="money",t.TIMESCOPE="timescope",t.FILE="file",t.IMAGE="image",t.AUTO_NUMBER="auto_number",t.CALC="calc",t.RELATION="relation",t.LIST="list",t.RELATION_FIELD="relation-field",t.REFERENCE_FIELD="reference-field",t.CALC_FIELD="calc",t.JSON="json",t.BIGINT="bigint",t.ANY="ANY",t.ENCRYPTED_FIELD="encrypted_field"})(R||(R={}));var $;$={},P($,R.ARRAY,L.ARRAY_COLUMN),P($,R.AUTO_NUMBER,L.AUTO_NUMBER_COLUMN),P($,R.DECIMAL,L.DECIMAL_COLUMN),P($,R.DEPARTMENTS,L.DEPARTMENT_COLUMN),P($,R.FILE,L.FILE_COLUMN),P($,R.IMAGE,L.IMAGE_COLUMN),P($,R.ADDRESS,L.LOCATION_COLUMN),P($,R.EMPLOYEES,L.EMPLOYEE_COLUMN),P($,R.TEXT,L.TEXT_COLUMN),P($,R.TIMESCOPE,L.TIMESCOPE_COLUMN),P($,R.TIMESTAMP,L.TIMESTAMP_COLUMN),P($,R.VARCHAR,L.VARCHAR_COLUMN),P($,R.RELATION,L.VARCHAR_COLUMN);var ot;(function(t){t.YEAR="year",t.MONTH="month",t.DATE="date",t.DATETIME="datetime"})(ot||(ot={}));var ct="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Li=ct+"0123456789";function W(){for(var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,e="",n=0;n<t;n++){var u=n===0?ct:Li,a=Math.random()*u.length;e+=u[parseInt(String(a),10)]}return e}function Se(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function $i(t){if(Array.isArray(t))return Se(t)}function qi(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function dt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Pi(){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(t){return!1}}function oe(t,e,n){return Pi()?oe=Reflect.construct:oe=function(a,i,r){var l=[null];l.push.apply(l,i);var d=Function.bind.apply(a,l),c=new d;return r&&ee(c,r.prototype),c},oe.apply(null,arguments)}function p(t){return p=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},p(t)}function ft(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&ee(t,e)}function Vi(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Oi(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Ni(){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 xi(t,e){return e&&(_i(e)==="object"||typeof e=="function")?e:qi(t)}function ee(t,e){return ee=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},ee(t,e)}function ht(t){return $i(t)||Oi(t)||ji(t)||Ni()}var _i=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function ji(t,e){if(!!t){if(typeof t=="string")return Se(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Se(t,e)}}function we(t){var e=typeof Map=="function"?new Map:void 0;return we=function(u){if(u===null||!Vi(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return oe(u,arguments,p(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),ee(a,u)},we(t)}function Ui(){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(t){return!1}}function mt(t){var e=Ui();return function(){var u=p(t),a;if(e){var i=p(this).constructor;a=Reflect.construct(u,arguments,i)}else a=u.apply(this,arguments);return xi(this,a)}}var Ie=console;function Re(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=Ie).warn.apply(u,["\u{1F9D0} Driven Warning:"+e[0]].concat(ht(a)))}function gt(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=Ie).log.apply(u,["\u{1F680} Driven Log:"+e[0]].concat(ht(a)))}function Hi(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Me=function(t){ft(n,t);var e=mt(n);function n(u){dt(this,n);var a;return a=e.call(this,u),a.name="\u{1F4A5} Driven Error",a.message=u?Hi(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return n}(we(Error)),Ti=function(t){ft(n,t);var e=mt(n);function n(u){dt(this,n);var a;return a=e.call(this,u),a.name="\u{1F6A8} Driven Reference Error",a}return n}(Me);function Le(t){throw new Me(t)}function yt(t){throw new Ti(t)}function Wi(t){Ie.error(new Me(t))}var Ki=Object.prototype.toString;function Et(t,e){return Ki.call(t)==="[object "+e+"]"}function zi(t){return Et(t,"String")}function ki(t){return Et(t,"Promise")}var Xi=function(){function t(e){var n,u;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((u=(n=e.messages)!==null&&n!==void 0?n:this.getPreImport(e.locale))!==null&&u!==void 0?u:{}),e.variableRegExp&&(this.variableRegExp=e.variableRegExp),this.setLocale(e.locale)}return t.prototype.setLocale=function(e){var n=this;this.locale=e,this._messageCache.clear();var u=this.getMessageData();ki(u)?u.then(function(a){n._messageCache.clear(),n.messages[n.localeInMessageKey]=a}):this.messages[this.localeInMessageKey]=u},t.prototype.getMessageData=function(){var e=this._messages[this.localeInMessageKey];return typeof e=="function"?e():e},t.prototype.translate=function(e,n,u){var a=this.getMessage(e);return a?this.formatMessage(a,u):this.formatMessage(n,u)},t.prototype.getMessage=function(e){if(this._messageCache.has(e))return this._messageCache.get(e);var n=this.getPathArray(e),u=n.reduce(function(a,i,r,l){if(a!==void 0){var d=a[i];if(!(r===l.length-1&&!zi(d)))return d}},this.message);return this._messageCache.set(e,u),u},t.prototype.formatMessage=function(e,n){return n?e.replace(this.variableRegExp,function(u,a){var i=n[a];return i!==void 0?String(i):u}):e},t.prototype.getPreImport=function(e){var n;if(window.okI18nPreImport){var u=this.getLocaleInMessageKey(e);return window.okI18nPreImport.hasOwnProperty(u)?window.okI18nPreImport:(n={},n[u]=window.okI18nPreImport,n)}},t.prototype.getPathArray=function(e){return e.split(".")},t.prototype.getLocaleInMessageKey=function(e){return e.replace(/-/g,"")},Object.defineProperty(t.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"message",{get:function(){var e;return(e=this.messages[this.localeInMessageKey])!==null&&e!==void 0?e:{}},enumerable:!1,configurable:!0}),t}();function Gi(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var f=function(){function t(){Gi(this,t)}return t.getMessage=function(n){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",u)},t.resetI18n=function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Mi;return new Xi({locale:n,messages:Ri})},t.setLocale=function(n){return this.$i18n.setLocale(n)},t}();f.$i18n=f.resetI18n();function Ji(t,e,n){var u=e.replace(/\[(\d)]/g,function(i,r){return"."+r}).split("."),a=!1;return u.reduce(function(i,r,l,d){var c=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,r)){Re("Can not set ".concat(e,"'s ").concat(r," property in current %o, Because there is no ").concat(r," property on the %o"),i,i);return}return l===d.length-1&&!Object.is(c[r],n)&&(c[r]=n,a=!0),c[r]}},t),a}var Zi=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Qi={exports:{}};(function(t){(function(e){var n=function(o,h,M){if(!c(h)||E(h)||C(h)||b(h)||d(h))return h;var v,S=0,x=0;if(g(h))for(v=[],x=h.length;S<x;S++)v.push(n(o,h[S],M));else{v={};for(var A in h)Object.prototype.hasOwnProperty.call(h,A)&&(v[o(A,M)]=n(o,h[A],M))}return v},u=function(o,h){h=h||{};var M=h.separator||"_",v=h.split||/(?=[A-Z])/;return o.split(v).join(M)},a=function(o){return F(o)?o:(o=o.replace(/[\-_\s]+(.)?/g,function(h,M){return M?M.toUpperCase():""}),o.substr(0,1).toLowerCase()+o.substr(1))},i=function(o){var h=a(o);return h.substr(0,1).toUpperCase()+h.substr(1)},r=function(o,h){return u(o,h).toLowerCase()},l=Object.prototype.toString,d=function(o){return typeof o=="function"},c=function(o){return o===Object(o)},g=function(o){return l.call(o)=="[object Array]"},E=function(o){return l.call(o)=="[object Date]"},C=function(o){return l.call(o)=="[object RegExp]"},b=function(o){return l.call(o)=="[object Boolean]"},F=function(o){return o=o-0,o===o},m=function(o,h){var M=h&&"process"in h?h.process:h;return typeof M!="function"?o:function(v,S){return M(v,o,S)}},B={camelize:a,decamelize:r,pascalize:i,depascalize:r,camelizeKeys:function(o,h){return n(m(a,h),o)},decamelizeKeys:function(o,h){return n(m(r,h),o,h)},pascalizeKeys:function(o,h){return n(m(i,h),o)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};t.exports?t.exports=B:e.humps=B})(Zi)})(Qi);var vt={};Object.defineProperty(vt,"__esModule",{value:!0});function $e(t){if(typeof t!="object"||t===null)return t;if(Array.isArray(t))return t.map(e=>typeof e!="object"||e===null?e:$e(e));{const e={};for(const n in t){const u=t[n];e[n]=typeof u!="object"||u===null?u:$e(u)}return e}}var Yi=vt.default=$e;function K(t){if(t!==void 0)return typeof t=="object"?Yi(t):t}function pi(t){return Object.prototype.toString.call(t)==="[object Object]"}function er(t){return Array.isArray(t)}function tr(t){return t.reduce(function(e,n){return e.includes(n)||e.push(n),e},[])}function qe(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function nr(t){if(Array.isArray(t))return qe(t)}function Bt(t,e,n,u,a,i,r){try{var l=t[i](r),d=l.value}catch(c){n(c);return}l.done?e(d):Promise.resolve(d).then(u,a)}function ur(t){return function(){var e=this,n=arguments;return new Promise(function(u,a){var i=t.apply(e,n);function r(d){Bt(i,u,a,r,l,"next",d)}function l(d){Bt(i,u,a,r,l,"throw",d)}r(void 0)})}}function ar(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ir(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function rr(){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 Pe(t){return nr(t)||ir(t)||sr(t)||rr()}function sr(t,e){if(!!t){if(typeof t=="string")return qe(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return qe(t,e)}}var lr=function(t,e){var n,u,a,i,r={label:0,sent:function(){if(a[0]&1)throw a[1];return a[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(c){return function(g){return d([c,g])}}function d(c){if(n)throw new TypeError("Generator is already executing.");for(;r;)try{if(n=1,u&&(a=c[0]&2?u.return:c[0]?u.throw||((a=u.return)&&a.call(u),0):u.next)&&!(a=a.call(u,c[1])).done)return a;switch(u=0,a&&(c=[c[0]&2,a.value]),c[0]){case 0:case 1:a=c;break;case 4:return r.label++,{value:c[1],done:!1};case 5:r.label++,u=c[1],c=[0];continue;case 7:c=r.ops.pop(),r.trys.pop();continue;default:if(a=r.trys,!(a=a.length>0&&a[a.length-1])&&(c[0]===6||c[0]===2)){r=0;continue}if(c[0]===3&&(!a||c[1]>a[0]&&c[1]<a[3])){r.label=c[1];break}if(c[0]===6&&r.label<a[1]){r.label=a[1],a=c;break}if(a&&r.label<a[2]){r.label=a[2],r.ops.push(c);break}a[2]&&r.ops.pop(),r.trys.pop();continue}c=e.call(t,r)}catch(g){c=[6,g],u=0}finally{n=a=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},or=function(){function t(){ar(this,t),this._events=new Map,this.debug=!1}var e=t.prototype;return e.emit=function(u){for(var a=arguments.length,i=new Array(a>1?a-1:0),r=1;r<a;r++)i[r-1]=arguments[r];var l=this;return ur(function(){var d,c,g,E,C,b,F,m,B,o,h,M;return lr(this,function(v){switch(v.label){case 0:if(d=l._events.get(u),c=[],!d)return[3,10];g=d.slice(),E=!0,C=!1,b=void 0,v.label=1;case 1:v.trys.push([1,8,9,10]),F=g[Symbol.iterator](),v.label=2;case 2:if(E=(m=F.next()).done)return[3,7];if(B=m.value,!d.includes(B))return[3,6];v.label=3;case 3:return v.trys.push([3,5,,6]),l.debug&>.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(u," \u4E8B\u4EF6: ").concat(B.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+B.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"\u3002")].concat(Pe(i))),[4,B.apply(null,Pe(i))];case 4:return o=v.sent(),l.debug&>.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(u," \u4E8B\u4EF6: ").concat(B.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+B.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Pe(i),[o])),c.push(o),o===!1?[3,7]:[3,6];case 5:return h=v.sent(),Wi(String(h)+":"+String(h.stack)),[3,6];case 6:return E=!0,[3,2];case 7:return[3,10];case 8:return M=v.sent(),C=!0,b=M,[3,10];case 9:try{!E&&F.return!=null&&F.return()}finally{if(C)throw b}return[7];case 10:return[2,c]}})})()},e.on=function(u,a){if(this._events.has(u)){var i;(i=this._events.get(u))===null||i===void 0||i.push(a)}else this._events.set(u,[a])},e.off=function(u,a){if(this._events.has(u)){var i=this._events.get(u),r=i==null?void 0:i.indexOf(a);i==null||i.splice(r,1)}},e.delete=function(u){this._events.has(u)&&this._events.delete(u)},e.clear=function(){this._events=new Map},t}();const At=[];class ce{constructor(e){this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=e,this._initControls(e)}registerControlConfig(e,n){return this.controlConfigMap.set(e,n),this}getControlConfig(e){return this.controlConfigMap.get(e)}static register(e){const{Designer:n,Runtime:u}=e;(!n||!u||!n.__is_control__||!u.__is_control__)&&Le(`${e} is can't register as a Control`);const a=this.staticControls.findIndex(i=>i.Designer.controlType===n.controlType);return a>-1&&(Re(`The ${n.controlType} is repeat register, So it overwrites the one that was registered before.`),this.staticControls.splice(a,1)),this.staticRegisteredTypes.add(n.controlType),this.staticControls.push(e),this}getControls(){return this._controls}register(e){e.__is_control__||Le(`${e.name} is not a Control`);const n=this._controls.findIndex(u=>u.controlType===e.controlType);return n>-1&&(Re(`The ${e.controlType} is repeat register, So it overwrites the one that was registered before.`),this._controls.splice(n,1)),this.registeredControlTypes.add(e.controlType),this._controls.push(e),this}isLayoutControl(e){return e.controlType===k.LAYOUT}isFormControl(e){return e.controlType===k.FORM}isListControl(e){return e.controlType===k.LIST}isColumnControl(e){return e.controlType===k.COLUMN}createControl(e,n){if(Array.isArray(e))return e.map(a=>this.createControl(a,n));e.children&&(e.children=e.children.map(a=>this.createControl(a,n))),this.isListControl(e)&&e.props.headers&&(e.props.headers=e.props.headers.map(a=>this.createControl(a,n)));const u=this.getControlFormType(e.type);if(u){let a=e;if(typeof n=="function"){const r=n(a);r&&(a=r)}return new u(a)}else Le(`The constructor of ${e.type} could not be found, please confirm that the constructor has been registered`)}createControlInstance(e,n){const u=this.getControlFormType(e);if(u)return new u(n)}getControlFormType(e){return this._controls.find(n=>n.controlType===e)}_initControls(e){this.constructor.staticControls.forEach(n=>{this.register(n[e])})}}ce.staticControls=At,ce.staticRegisteredTypes=new Set(At.map(t=>t.Designer.controlType)),ce.staticRegisteredConfigs=new Map;class O{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:""}}class Ve{constructor(e){var n,u;this.minWidth=(n=e==null?void 0:e.minWidth)!=null?n:150,this.maxWidth=e==null?void 0:e.maxWidth,this.flex=(u=e==null?void 0:e.flex)!=null?u:1}}class de extends Ve{constructor(e){var n,u;super(e),this.width=(n=e==null?void 0:e.width)!=null?n:240,this.widthType=(u=e==null?void 0:e.widthType)!=null?u:"auto"}}class cr{constructor(e){this.pc=new de(e==null?void 0:e.pc),this.mobile=e!=null&&e.mobile?new de(e==null?void 0:e.mobile):new de({width:130,minWidth:180})}}class dr{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"firstThree",this.customOptions=(u=e==null?void 0:e.customOptions)!=null?u:[]}}class fe{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.appId=(a=e==null?void 0:e.appId)!=null?a:""}}class fr extends fe{constructor(e){var n;super(e),this.primaryControlId=(n=e==null?void 0:e.primaryControlId)!=null?n:""}}class Ct{constructor(e){var n;this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:""}}class hr{constructor(e){var n,u,a,i;this.appId=(n=e==null?void 0:e.appId)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Ct(r)))!=null?i:[]}}class Ft{constructor(e){var n,u,a;this.fieldName=(n=e==null?void 0:e.fieldName)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:R.VARCHAR}}class Dt extends fe{constructor(e){var n,u,a,i;super(e),this.title=(n=e==null?void 0:e.title)!=null?n:"",this.svcCode=(u=e==null?void 0:e.svcCode)!=null?u:"",this.isOpenFilter=(a=e==null?void 0:e.isOpenFilter)!=null?a:!1,this.filters=(i=e==null?void 0:e.filters)!=null?i:[]}}class mr{constructor(e){var n,u,a,i;this.type="sublist-page",this.formBind=new fe(e==null?void 0:e.formBind),this.displayFields=(u=(n=e==null?void 0:e.displayFields)==null?void 0:n.map(r=>new Ft(r)))!=null?u:[],this.sublists=(i=(a=e==null?void 0:e.sublists)==null?void 0:a.map(r=>new Dt(r)))!=null?i:[]}}class bt{constructor(e){this.type=e==null?void 0:e.type,this.value=e==null?void 0:e.value}}class Oe{constructor(e){var n,u,a;this.type=(n=e==null?void 0:e.type)!=null?n:"custom",this.value=(u=e==null?void 0:e.value)!=null?u:[],this.displayBos=(a=e==null?void 0:e.displayBos)!=null?a:[]}}class te{constructor(e){var n,u,a,i;this.type="conditions",this.id=(n=e==null?void 0:e.id)!=null?n:W(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.level=(a=e==null?void 0:e.level)!=null?a:0,this.value=(i=e==null?void 0:e.value)!=null?i:"and",this.children=[],Array.isArray(e==null?void 0:e.children)&&(e==null||e.children.map(r=>{var l,d;if(r.children!==void 0){const c=new te(r);(l=this.children)==null||l.push(c)}else{const c=new he(r);(d=this.children)==null||d.push(c)}}))}}class he{constructor(e){var n,u,a,i,r;this.type="condition",this.id=(n=e==null?void 0:e.id)!=null?n:W(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.symbol=(a=e==null?void 0:e.symbol)!=null?a:"",this.checked=(i=e==null?void 0:e.checked)!=null?i:!1,this.describe=(r=e==null?void 0:e.describe)!=null?r:"",this.leftVariableBo=new bt(e==null?void 0:e.leftVariableBo),this.rightVariableBo=new Oe(e==null?void 0:e.rightVariableBo)}}class St{constructor(e){var n,u,a,i;this.controlId=(n=e==null?void 0:e.controlId)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.propName=(i=e==null?void 0:e.propName)!=null?i:""}}class Ne{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"FIELD",this.value=(u=e==null?void 0:e.value)!=null?u:"",this.fieldType=e==null?void 0:e.fieldType}}class xe{constructor(e){var n,u;this.columnName=(n=e.columnName)!=null?n:"",this.desc=(u=e.desc)!=null?u:!1}}class wt{constructor(e){var n,u,a;this.code=(n=e.code)!=null?n:"",this.value=(u=e.value)!=null?u:"",this.field_type=(a=e.field_type)!=null?a:R.ANY}}class gr{constructor(e){var n,u,a,i,r,l,d;this.id=(n=e.id)!=null?n:"",this.limit=(u=e.limit)!=null?u:20,this.formKey=(a=e.formKey)!=null?a:"",this.orders=(r=(i=e.orders)==null?void 0:i.map(c=>new xe(c)))!=null?r:[],this.dataSet=(d=(l=e.dataSet)==null?void 0:l.map(c=>new wt(c)))!=null?d:[]}}function _e(t){var e,n,u,a,i,r;this.filters=(n=(e=t==null?void 0:t.filters)==null?void 0:e.map(l=>l.children!==void 0?new te(l):new he(l)))!=null?n:[],this.viewFilters=(a=(u=t==null?void 0:t.viewFilters)==null?void 0:u.map(l=>l.children!==void 0?new te(l):new he(l)))!=null?a:[],(this instanceof me||this instanceof Mt)&&(this.orders=(r=(i=t==null?void 0:t.orders)==null?void 0:i.map(l=>new xe(l)))!=null?r:[])}class me{constructor(e){var n,u,a,i,r,l;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.valueFieldCode=(a=e==null?void 0:e.valueFieldCode)!=null?a:"",this.displayBoList=[],this.isOpenViewFilters=(i=e==null?void 0:e.isOpenViewFilters)!=null?i:0,Array.isArray(e==null?void 0:e.displayBoList)&&(e==null||e.displayBoList.map(d=>{var c;(c=this.displayBoList)==null||c.push(new Ne(d))})),this.showOrder=(r=e==null?void 0:e.showOrder)!=null?r:!0,this.svcCode=(l=e==null?void 0:e.svcCode)!=null?l:"",_e.call(this,e)}}class yr{constructor(e){var n,u;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.displayBoList=(u=e==null?void 0:e.displayBoList)!=null?u:[]}}class Er{constructor(e){var n,u,a,i,r,l,d,c,g,E;this.code=(n=e==null?void 0:e.code)!=null?n:"view",this.color=(u=e==null?void 0:e.color)!=null?u:"primary",this.command=(a=e==null?void 0:e.command)!=null?a:"view",this.confirmMessage=(i=e==null?void 0:e.confirmMessage)!=null?i:void 0,this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.formKey=(l=e==null?void 0:e.formKey)!=null?l:void 0,this.icon=(d=e==null?void 0:e.icon)!=null?d:"iconliulan1",this.needConfirm=(c=e==null?void 0:e.needConfirm)!=null?c:!1,this.openType=(g=e==null?void 0:e.openType)!=null?g:"modal",this.priorityProcess=(E=e==null?void 0:e.priorityProcess)!=null?E:!0}}class je{constructor(e){var n,u,a,i;this.name=(n=e==null?void 0:e.name)!=null?n:"",this.key=(u=e==null?void 0:e.key)!=null?u:"",this.value=(i=(a=e==null?void 0:e.value)==null?void 0:a.map(r=>new Ne(r)))!=null?i:[]}}class It extends me{constructor(e){var n,u;super(e),this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(a=>new je(a)))!=null?u:[]}}class vr extends me{constructor(e){var n,u,a;super(e),this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(i=>new je(i)))!=null?u:[],this.formCode=(a=e==null?void 0:e.formCode)!=null?a:""}}class Br extends It{constructor(e){var n;super(e),this.rootNode=new Oe(e==null?void 0:e.rootNode),this.filterCode=(n=e==null?void 0:e.filterCode)!=null?n:""}}class Rt{constructor(e){var n,u,a,i;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.fillList=(i=(a=e==null?void 0:e.fillList)==null?void 0:a.map(r=>new St(r)))!=null?i:[]}}class Mt extends Rt{constructor(e){super(e),_e.call(this,e)}}class Ar extends Rt{constructor(e){var n,u;super(e),this.mode=(n=e==null?void 0:e.mode)!=null?n:"current",this.multiple=(u=e==null?void 0:e.multiple)!=null?u:!1}}class Cr{constructor(e){var n,u,a;this.zh=(n=e==null?void 0:e.zh)!=null?n:"",this.en=(u=e==null?void 0:e.en)!=null?u:"",this.ja=(a=e==null?void 0:e.ja)!=null?a:""}}class Fr{constructor(e){var n,u,a;this.stencilName=(n=e==null?void 0:e.stencilName)!=null?n:"",this.expression=(u=e==null?void 0:e.expression)!=null?u:"",this.errMessage=(a=e==null?void 0:e.errMessage)!=null?a:""}}class Ue{constructor(e){var n,u,a;this.id=(n=e==null?void 0:e.id)!=null?n:W(8),this.label=(u=e==null?void 0:e.label)!=null?u:"",this.value=(a=e==null?void 0:e.value)!=null?a:this.label}}class Lt extends Ue{constructor(e){var n,u;super(e),this.image=(n=e==null?void 0:e.image)!=null?n:"",this.type=(u=e==null?void 0:e.type)!=null?u:"src"}}function Dr(t){var e;return(e=t==null?void 0:t.map(n=>new Ue(n)))!=null?e:[]}function br(t){var e;return(e=t==null?void 0:t.map(n=>new Lt(n)))!=null?e:[]}class ge{}class Sr extends ge{constructor(e){super(),this.amount=new O(e==null?void 0:e.amount),this.currency=new O(e==null?void 0:e.currency)}}class wr{constructor(e){var n,u;this.amount=(n=e==null?void 0:e.amount)!=null?n:"",this.currency=(u=e==null?void 0:e.currency)!=null?u:He.CNY}}class Ir extends ge{constructor(e){super(),this.min=new O(e==null?void 0:e.min),this.max=new O(e==null?void 0:e.max)}}class Rr{constructor(e){var n,u;this.min=(n=e==null?void 0:e.min)!=null?n:"",this.max=(u=e==null?void 0:e.max)!=null?u:""}}class Mr{constructor(e){var n,u,a,i,r,l;this.city=(n=e==null?void 0:e.city)!=null?n:"",this.cityDisplay=(u=e==null?void 0:e.cityDisplay)!=null?u:"",this.district=(a=e==null?void 0:e.district)!=null?a:"",this.districtDisplay=(i=e==null?void 0:e.districtDisplay)!=null?i:"",this.province=(r=e==null?void 0:e.province)!=null?r:"",this.provinceDisplay=(l=e==null?void 0:e.provinceDisplay)!=null?l:""}}class Lr extends ge{constructor(e){super(),this.result=new O(e==null?void 0:e.result),this.unit=new O(e==null?void 0:e.unit)}}class $r{constructor(e){var n,u;this.result=(n=e==null?void 0:e.result)!=null?n:0,this.unit=(u=e==null?void 0:e.unit)!=null?u:""}}var He=(t=>(t.CNY="CNY",t.USD="USD",t.JPY="JPY",t.EUR="EUR",t.INR="INR",t.IDR="IDR",t.BRL="BRL",t.AED="AED",t.AUD="AUD",t.CAD="CAD",t.EGP="EGP",t.GBP="GBP",t.ZAR="ZAR",t.KRW="KRW",t.MAD="MAD",t.MXN="MXN",t.MYR="MYR",t.PHP="PHP",t.PLN="PLN",t.RUB="RUB",t.SGD="SGD",t.THB="THB",t.TRY="TRY",t.TWD="TWD",t.VND="VND",t.HKD="HKD",t.IEP="IEP",t))(He||{}),$t=(t=>(t.DEFAULT_DISPLAY="defaultDisplay",t.REQUIRED="required",t.IS_HIDE="isHide",t.IS_SHOW_UNIT="isShowUnit",t.IMD_SEARCH="immediatelySearch",t.MULTIPLE="multiple",t.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",t.CAPTION="caption",t.IS_HIDE_CAPTION="isHideCaption",t.DEFAULT_SHOW_OPTIONS="defaultShowOptions",t.CAN_SEARCH="canSearch",t.CAN_CHECK="canCheck",t.CAN_EDIT="canEdit",t.CAN_DELETE="canDelete",t.SHOW_UPPER_CASE="showUpperCase",t.MICROMETER="micrometer",t.PRECISION="precision",t.PERCENTAGE="percentage",t.OPTIONAL_LEVEL="optionalLevel",t.CONTAINS_SUB_NODE="containsSubNode",t.DEFAULT_COLLAPSE="defaultCollapse",t.CAN_VIEW_FORM="canViewForm",t.VIEW_FORM_MODEL_TYPE="viewFormModelType",t.SERVER_PAGINATION="serverPagination",t.IS_SHOW_CAPTION_TIP="isShowCaptionTip",t.ENCRYPTED="encrypted",t.IS_INLINE_EDIT="isInlineEdit",t.REVISIONS_MODE="revisionsMode",t.ALLOW_COPY_OPTIONS="allowCopyOptions",t))($t||{}),Te=(t=>(t[t.UNKNOWN=0]="UNKNOWN",t[t.READONLY=1]="READONLY",t[t.EDITABLE=2]="EDITABLE",t[t.PRINT=5]="PRINT",t))(Te||{});class qr{constructor(e){var n,u,a,i,r,l;this.isShow=(n=e==null?void 0:e.isShow)!=null?n:!0,this.content=(u=e==null?void 0:e.content)!=null?u:"",this.formKey=(a=e==null?void 0:e.formKey)!=null?a:"",this.openType=(i=e==null?void 0:e.openType)!=null?i:"modal",this.type=(r=e==null?void 0:e.type)!=null?r:"",this.priorityProcess=(l=e==null?void 0:e.priorityProcess)!=null?l:!1}}class Pr{constructor(e){var n,u,a,i;this.id=(n=e==null?void 0:e.id)!=null?n:W(8),this.title=(u=e==null?void 0:e.title)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Ct(r)))!=null?i:[],_e.call(this,e)}}class Vr{constructor(e){var n,u;this.key=(n=e.key)!=null?n:W(8),this.caption=(u=e.caption)!=null?u:""}}class qt{constructor(e){var n,u,a,i;this.width=(n=e==null?void 0:e.width)!=null?n:"",this.height=(u=e==null?void 0:e.height)!=null?u:"",this.widthConfig=(a=e==null?void 0:e.widthConfig)!=null?a:"fill",this.heightConfig=(i=e==null?void 0:e.heightConfig)!=null?i:"fill"}}class Or{constructor(e){var n,u;this.optCode=(n=e==null?void 0:e.optCode)!=null?n:"",this.optType=(u=e==null?void 0:e.optType)!=null?u:""}}class ye{constructor(e){this.isHide={type:"boolean"}}}class We extends Array{constructor(e){super()}}class U{constructor(e,n=""){var u,a;this.isHide=(u=e==null?void 0:e.isHide)!=null?u:!1,this.style=new qt(e==null?void 0:e.style),this.caption=(a=e==null?void 0:e.caption)!=null?a:n}}U.Rules=ye,U.RuntimeRules=We;function N(){return N=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var u in n)Object.prototype.hasOwnProperty.call(n,u)&&(t[u]=n[u])}return t},N.apply(this,arguments)}function Nr(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function Ke(t){return Ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ke(t)}function Ee(t,e){return Ee=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},Ee(t,e)}function xr(){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(t){return!1}}function ve(t,e,n){return xr()?ve=Reflect.construct:ve=function(a,i,r){var l=[null];l.push.apply(l,i);var d=Function.bind.apply(a,l),c=new d;return r&&Ee(c,r.prototype),c},ve.apply(null,arguments)}function _r(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function ze(t){var e=typeof Map=="function"?new Map:void 0;return ze=function(u){if(u===null||!_r(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return ve(u,arguments,Ke(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Ee(a,u)},ze(t)}var jr=/%[sdj%]/g,Pt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Pt=function(e,n){typeof console!="undefined"&&console.warn&&n.every(function(u){return typeof u=="string"})&&console.warn(e,n)});function ke(t){if(!t||!t.length)return null;var e={};return t.forEach(function(n){var u=n.field;e[u]=e[u]||[],e[u].push(n)}),e}function V(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u=1,a=e[0],i=e.length;if(typeof a=="function")return a.apply(null,e.slice(1));if(typeof a=="string"){var r=String(a).replace(jr,function(l){if(l==="%%")return"%";if(u>=i)return l;switch(l){case"%s":return String(e[u++]);case"%d":return Number(e[u++]);case"%j":try{return JSON.stringify(e[u++])}catch(d){return"[Circular]"}break;default:return l}});return r}return a}function Ur(t){return t==="string"||t==="url"||t==="hex"||t==="email"||t==="date"||t==="pattern"}function I(t,e){return!!(t==null||e==="array"&&Array.isArray(t)&&!t.length||Ur(e)&&typeof t=="string"&&!t)}function Hr(t,e,n){var u=[],a=0,i=t.length;function r(l){u.push.apply(u,l),a++,a===i&&n(u)}t.forEach(function(l){e(l,r)})}function Vt(t,e,n){var u=0,a=t.length;function i(r){if(r&&r.length){n(r);return}var l=u;u=u+1,l<a?e(t[l],i):n([])}i([])}function Tr(t){var e=[];return Object.keys(t).forEach(function(n){e.push.apply(e,t[n])}),e}var Ot=function(t){Nr(e,t);function e(n,u){var a;return a=t.call(this,"Async Validation Error")||this,a.errors=n,a.fields=u,a}return e}(ze(Error));function Wr(t,e,n,u){if(e.first){var a=new Promise(function(E,C){var b=function(B){return u(B),B.length?C(new Ot(B,ke(B))):E()},F=Tr(t);Vt(F,n,b)});return a.catch(function(E){return E}),a}var i=e.firstFields||[];i===!0&&(i=Object.keys(t));var r=Object.keys(t),l=r.length,d=0,c=[],g=new Promise(function(E,C){var b=function(m){if(c.push.apply(c,m),d++,d===l)return u(c),c.length?C(new Ot(c,ke(c))):E()};r.length||(u(c),E()),r.forEach(function(F){var m=t[F];i.indexOf(F)!==-1?Vt(m,n,b):Hr(m,n,b)})});return g.catch(function(E){return E}),g}function Nt(t){return function(e){return e&&e.message?(e.field=e.field||t.fullField,e):{message:typeof e=="function"?e():e,field:e.field||t.fullField}}}function xt(t,e){if(e){for(var n in e)if(e.hasOwnProperty(n)){var u=e[n];typeof u=="object"&&typeof t[n]=="object"?t[n]=N(N({},t[n]),u):t[n]=u}}return t}function _t(t,e,n,u,a,i){t.required&&(!n.hasOwnProperty(t.field)||I(e,i||t.type))&&u.push(V(a.messages.required,t.fullField))}function Kr(t,e,n,u,a){(/^\s+$/.test(e)||e==="")&&u.push(V(a.messages.whitespace,t.fullField))}var Xe={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},ne={integer:function(e){return ne.number(e)&&parseInt(e,10)===e},float:function(e){return ne.number(e)&&!ne.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(n){return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!ne.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&!!e.match(Xe.email)&&e.length<255},url:function(e){return typeof e=="string"&&!!e.match(Xe.url)},hex:function(e){return typeof e=="string"&&!!e.match(Xe.hex)}};function zr(t,e,n,u,a){if(t.required&&e===void 0){_t(t,e,n,u,a);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],r=t.type;i.indexOf(r)>-1?ne[r](e)||u.push(V(a.messages.types[r],t.fullField,t.type)):r&&typeof e!==t.type&&u.push(V(a.messages.types[r],t.fullField,t.type))}function kr(t,e,n,u,a){var i=typeof t.len=="number",r=typeof t.min=="number",l=typeof t.max=="number",d=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=e,g=null,E=typeof e=="number",C=typeof e=="string",b=Array.isArray(e);if(E?g="number":C?g="string":b&&(g="array"),!g)return!1;b&&(c=e.length),C&&(c=e.replace(d,"_").length),i?c!==t.len&&u.push(V(a.messages[g].len,t.fullField,t.len)):r&&!l&&c<t.min?u.push(V(a.messages[g].min,t.fullField,t.min)):l&&!r&&c>t.max?u.push(V(a.messages[g].max,t.fullField,t.max)):r&&l&&(c<t.min||c>t.max)&&u.push(V(a.messages[g].range,t.fullField,t.min,t.max))}var X="enum";function Xr(t,e,n,u,a){t[X]=Array.isArray(t[X])?t[X]:[],t[X].indexOf(e)===-1&&u.push(V(a.messages[X],t.fullField,t[X].join(", ")))}function Gr(t,e,n,u,a){if(t.pattern){if(t.pattern instanceof RegExp)t.pattern.lastIndex=0,t.pattern.test(e)||u.push(V(a.messages.pattern.mismatch,t.fullField,e,t.pattern));else if(typeof t.pattern=="string"){var i=new RegExp(t.pattern);i.test(e)||u.push(V(a.messages.pattern.mismatch,t.fullField,e,t.pattern))}}}var y={required:_t,whitespace:Kr,type:zr,range:kr,enum:Xr,pattern:Gr};function Jr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"string")&&!t.required)return n();y.required(t,e,u,i,a,"string"),I(e,"string")||(y.type(t,e,u,i,a),y.range(t,e,u,i,a),y.pattern(t,e,u,i,a),t.whitespace===!0&&y.whitespace(t,e,u,i,a))}n(i)}function Zr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}function Qr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e===""&&(e=void 0),I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function Yr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}function pr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),I(e)||y.type(t,e,u,i,a)}n(i)}function es(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function ts(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function ns(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e==null&&!t.required)return n();y.required(t,e,u,i,a,"array"),e!=null&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function us(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}var as="enum";function is(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y[as](t,e,u,i,a)}n(i)}function rs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"string")&&!t.required)return n();y.required(t,e,u,i,a),I(e,"string")||y.pattern(t,e,u,i,a)}n(i)}function ss(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"date")&&!t.required)return n();if(y.required(t,e,u,i,a),!I(e,"date")){var l;e instanceof Date?l=e:l=new Date(e),y.type(t,l,u,i,a),l&&y.range(t,l.getTime(),u,i,a)}}n(i)}function ls(t,e,n,u,a){var i=[],r=Array.isArray(e)?"array":typeof e;y.required(t,e,u,i,a,r),n(i)}function Ge(t,e,n,u,a){var i=t.type,r=[],l=t.required||!t.required&&u.hasOwnProperty(t.field);if(l){if(I(e,i)&&!t.required)return n();y.required(t,e,u,r,a,i),I(e,i)||y.type(t,e,u,r,a)}n(r)}function os(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a)}n(i)}var ue={string:Jr,method:Zr,number:Qr,boolean:Yr,regexp:pr,integer:es,float:ts,array:ns,object:us,enum:is,pattern:rs,date:ss,url:Ge,hex:Ge,email:Ge,required:ls,any:os};function Je(){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 e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var Ze=Je();function H(t){this.rules=null,this._messages=Ze,this.define(t)}H.prototype={messages:function(e){return e&&(this._messages=xt(Je(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if(typeof e!="object"||Array.isArray(e))throw new Error("Rules must be an object");this.rules={};var n,u;for(n in e)e.hasOwnProperty(n)&&(u=e[n],this.rules[n]=Array.isArray(u)?u:[u])},validate:function(e,n,u){var a=this;n===void 0&&(n={}),u===void 0&&(u=function(){});var i=e,r=n,l=u;if(typeof r=="function"&&(l=r,r={}),!this.rules||Object.keys(this.rules).length===0)return l&&l(),Promise.resolve();function d(m){var B,o=[],h={};function M(v){if(Array.isArray(v)){var S;o=(S=o).concat.apply(S,v)}else o.push(v)}for(B=0;B<m.length;B++)M(m[B]);o.length?h=ke(o):(o=null,h=null),l(o,h)}if(r.messages){var c=this.messages();c===Ze&&(c=Je()),xt(c,r.messages),r.messages=c}else r.messages=this.messages();var g,E,C={},b=r.keys||Object.keys(this.rules);b.forEach(function(m){g=a.rules[m],E=i[m],g.forEach(function(B){var o=B;typeof o.transform=="function"&&(i===e&&(i=N({},i)),E=i[m]=o.transform(E)),typeof o=="function"?o={validator:o}:o=N({},o),o.validator=a.getValidationMethod(o),o.field=m,o.fullField=o.fullField||m,o.type=a.getType(o),o.validator&&(C[m]=C[m]||[],C[m].push({rule:o,value:E,source:i,field:m}))})});var F={};return Wr(C,r,function(m,B){var o=m.rule,h=(o.type==="object"||o.type==="array")&&(typeof o.fields=="object"||typeof o.defaultField=="object");h=h&&(o.required||!o.required&&m.value),o.field=m.field;function M(x,A){return N(N({},A),{},{fullField:o.fullField+"."+x})}function v(x){x===void 0&&(x=[]);var A=x;if(Array.isArray(A)||(A=[A]),!r.suppressWarning&&A.length&&H.warning("async-validator:",A),A.length&&o.message!==void 0&&(A=[].concat(o.message)),A=A.map(Nt(o)),r.first&&A.length)return F[o.field]=1,B(A);if(!h)B(A);else{if(o.required&&!m.value)return o.message!==void 0?A=[].concat(o.message).map(Nt(o)):r.error&&(A=[r.error(o,V(r.messages.required,o.field))]),B(A);var _={};if(o.defaultField)for(var Zt in m.value)m.value.hasOwnProperty(Zt)&&(_[Zt]=o.defaultField);_=N(N({},_),m.rule.fields);for(var G in _)if(_.hasOwnProperty(G)){var bs=Array.isArray(_[G])?_[G]:[_[G]];_[G]=bs.map(M.bind(null,G))}var Qt=new H(_);Qt.messages(r.messages),m.rule.options&&(m.rule.options.messages=r.messages,m.rule.options.error=r.error),Qt.validate(m.value,m.rule.options||r,function(it){var J=[];A&&A.length&&J.push.apply(J,A),it&&it.length&&J.push.apply(J,it),B(J.length?J:null)})}}var S;o.asyncValidator?S=o.asyncValidator(o,m.value,v,m.source,r):o.validator&&(S=o.validator(o,m.value,v,m.source,r),S===!0?v():S===!1?v(o.message||o.field+" fails"):S instanceof Array?v(S):S instanceof Error&&v(S.message)),S&&S.then&&S.then(function(){return v()},function(x){return v(x)})},function(m){d(m)})},getType:function(e){if(e.type===void 0&&e.pattern instanceof RegExp&&(e.type="pattern"),typeof e.validator!="function"&&e.type&&!ue.hasOwnProperty(e.type))throw new Error(V("Unknown rule type %s",e.type));return e.type||"string"},getValidationMethod:function(e){if(typeof e.validator=="function")return e.validator;var n=Object.keys(e),u=n.indexOf("message");return u!==-1&&n.splice(u,1),n.length===1&&n[0]==="required"?ue.required:ue[this.getType(e)]||!1}},H.register=function(e,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");ue[e]=n},H.warning=Pt,H.messages=Ze,H.validators=ue;const cs={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 jt(t,e={}){const n=new H(t);return n.messages(Object.assign(cs,e)),n}const Ut=new or;class q{constructor(e){var g,E,C,b;this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=Tt,this.removeSetting=Ht,this._callControlHooks("preInstance",e);const{controlName:n,controlIcon:u,controlType:a,controlFieldType:i,controlEventKeys:r,controlCustomEvents:l,name:d,setting:c}=new.target;n&&u&&a||yt(`The ${d} controlName,controlIcon,controlType is not define`),this.id=(g=e==null?void 0:e.id)!=null?g:W(10),this.name=n,this.icon=u,this.type=(E=e==null?void 0:e.type)!=null?E:a,this.props=new U(e==null?void 0:e.props,new.target.controlName),this.controlType=(C=e==null?void 0:e.controlType)!=null?C:"base",this.setting=K(c),this.fieldType=(b=e==null?void 0:e.fieldType)!=null?b:i,this.eventKeys=K(r),this.customEvents=K(l),Promise.resolve().then(()=>{this._callControlHooks("postInstance",e)})}get rules(){const e=this.props.constructor.Rules;return e?new e(this.props):{}}_callControlHooks(...e){const[n,...u]=e;return Ut.emit(n,this,...u)}preUpdate(e,n){this._callControlHooks("preUpdateProps",e,n)}postUpdate(e,n){this._callControlHooks("postUpdateProps",e,n)}updateProps(e,n){this.preUpdate(e,n),Ji(this.props,e,n),this.postUpdate(e,n)}preValidate(){return se(this,null,function*(){const e=Z({},this.rules),n=yield this._callControlHooks("preValidate",e),u=n[n.length-1];return u===!1?void 0:u})}validate(e,n){return se(this,null,function*(){const u=yield this.preValidate(),a=u!==void 0?u:Z({},this.rules);Array.isArray(n)&&n.forEach(r=>{a.hasOwnProperty(r)&&delete a[r]});const i=jt(a,e);try{return yield i.validate(this.props),!0}catch(r){throw r.control||(r.control=this),r}})}toDataBindModel(e=null){const n=this.fieldType,u=this.id,a=this.type,{dataBind:i,datasourceBind:r,optionConfig:l,caption:d,required:c,maxLength:g,options:E,encrypted:C,encryptedMode:b}=this.props;if(!n&&!i&&!r)return;const F={parentId:e,fieldType:n,controlId:u,caption:d,type:a,props:{}};switch(i&&(F.dataBind=i),l){case"datasource":case void 0:r&&(F.datasourceBind=r);break;case"custom":F.props.options=E;break}return c!==void 0&&(F.required=c),g!==void 0&&(F.maxLength=g),C!==void 0&&(F.encrypted=C),b!==void 0&&(F.encryptedMode=b),F}preToSchema(){this._callControlHooks("preToSchema",this)}toSchema(){return this.preToSchema(),{id:this.id,type:this.type,props:K(this.props),fieldType:this.fieldType,controlType:this.controlType}}static updateBasicControl(e,n){e==="setting"&&(n.add&&this.setting.push(...n.add),n.remove&&this.removeSettingItem(n.remove),n.update)}}q.controlName="\u63A7\u4EF6",q.controlIcon="icon",q.controlType="control",q.controlEventKeys=[],q.controlCustomEvents=[],q.setting=[],q.__is_control__=!0,q.removeSettingItem=Ht,q.updateSettingItem=Tt;function Ht(t){(Array.isArray(t)?t:[t]).forEach(n=>{var i,r;const u=typeof n!="string",a=this.setting.findIndex(l=>l.key===(u?n.key:n));a!==-1&&(u?this.setting[a].showItems=(i=this.setting[a].showItems)==null?void 0:i.filter(l=>!n.hideItems.includes(l)):this.setting.splice(a,1),u&&!((r=this.setting[a].showItems)!=null&&r.length)&&this.setting.splice(a,1))})}function Tt(t,e){(typeof t=="string"?[t]:t).forEach(u=>{var i;const a=this.setting.find(r=>r.key===u);a&&(typeof e=="boolean"?a.visible=e:typeof e=="object"&&(((i=e.type)!=null?i:"replace")==="replace"?a.showItems=e.showItems:a.showItems.push(...e.showItems)))})}class T{constructor(e){var r,l,d,c,g;this.customEvents=[],this.parent=null;const{controlType:n,controlFieldType:u,name:a,controlCustomEvents:i}=new.target;n||yt(`The ${a} controlType is not define`),this.id=(r=e==null?void 0:e.id)!=null?r:W(10),this.type=(l=e==null?void 0:e.type)!=null?l:n,this.props=new U(e==null?void 0:e.props),this.customEvents=i,this.controlType=(d=e==null?void 0:e.controlType)!=null?d:"base",this.fieldType=(c=e==null?void 0:e.fieldType)!=null?c:u,this.pageStatus=(g=e==null?void 0:e.pageStatus)!=null?g:Te.UNKNOWN}get rules(){const e=this.props.constructor.RuntimeRules;if(e){const n=new e(this.props);return Array.from(n)}return[]}}T.controlType="control",T.__is_control__=!0,T.controlCustomEvents=[];function Qe(t){t.hasOwnProperty("optionConfig")||(this.optionConfig={type:"any"}),t.hasOwnProperty("options")||(this.options={type:"any"}),t.hasOwnProperty("datasourceBind")||(this.datasourceBind={type:"any"}),t.hasOwnProperty("options")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="custom")?this.options=[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{label:{type:"string",required:!0,message:f.getMessage("pleaseEnterLabel")},value:{type:"string",required:!0,message:f.getMessage("pleaseEnterValue")}}}},{type:"array",validator(e,n,u){n.length===0&&u(f.getMessage("optionIsRequired")),u()}},{type:"array",validator(e,n,u){const a=n.map(r=>r.value),i=tr(a);a.length!==i.length?u(f.getMessage("optionIdIsRepeat")):u()},message:f.getMessage("optionIdIsRepeat")}]:t.hasOwnProperty("datasourceBind")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="datasource")&&(this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterSvcCode")},displayBoList:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",validator(e,n,u){n.length===0&&u(f.getMessage("pleaseBindAtLeastOneDisplayValue")),u()},message:f.getMessage("pleaseBindAtLeastOneDisplayValue")}],orders:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:f.getMessage("isNotBoolean")}}}}]}}])}function ds(t,e,n=!1){this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterDataCodeInDataSetting":"pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterValueFieldCodeInDataSetting":"pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterSvcCodeInDataSetting":"pleaseEnterSvcCode")},attributes:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{name:{type:"string",required:!0,message:f.getMessage("isNotString")},key:{type:"string",required:!0,message:f.getMessage("isNotString")},value:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",validator(u,a,i){a.length===0&&i(f.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")),i()},message:f.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")}]}}}],orders:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:f.getMessage("isNotBoolean")}}}}]}}]}class Ye extends ye{constructor(e){super(e),this.dataBind={},this.caption={type:"string",required:!0,message:f.getMessage("pleaseEnterCaption")},this.isHideCaption={type:"boolean"},this.labelPosition={type:"enum",enum:["top","left"]},this.defaultState={type:"enum",enum:["default","readonly"]},this.required={type:"boolean"},this.captionTip={type:"string",required:!1,message:f.getMessage("pleaseEnterCaptionTip")};const n={fieldCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")}};if(e.dataBind instanceof O)this.dataBind={type:"object",required:!0,fields:K(n),message:f.getMessage("pleaseEnterFieldCode")};else{let u={type:"object",required:!0,fields:{},message:f.getMessage("pleaseEnterFieldCode")};Object.keys(e.dataBind).forEach(a=>{u.fields[a]={type:"object",required:!0,fields:K(n),message:f.getMessage("pleaseEnterFieldCode")}}),this.dataBind=u}e.isShowCaptionTip&&(this.captionTip.required=!0)}}class Wt extends We{constructor(e){super(e),this.push({type:"string",required:e.isHide?!1:e.required,message:e.requiredMessage!==""?e.requiredMessage:f.getMessage("runtimeRequired",{caption:e.caption})})}}class ae extends U{constructor(e){var n,u,a,i,r,l,d,c,g,E;super(e),this.caption=(n=e==null?void 0:e.caption)!=null?n:"",this.isHideCaption=(u=e==null?void 0:e.isHideCaption)!=null?u:!1,this.isShowCaptionTip=(a=e==null?void 0:e.isShowCaptionTip)!=null?a:!1,this.captionTip=(i=e==null?void 0:e.captionTip)!=null?i:"",this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.labelPosition=(l=e==null?void 0:e.labelPosition)!=null?l:"top",this.placeholder=(d=e==null?void 0:e.placeholder)!=null?d:"",this.required=(c=e==null?void 0:e.required)!=null?c:!1,this.requiredMessage=(g=e==null?void 0:e.requiredMessage)!=null?g:"",this.dataBind=new O(e==null?void 0:e.dataBind),this.defaultValue=(E=e==null?void 0:e.defaultValue)!=null?E:""}}ae.Rules=Ye,ae.RuntimeRules=Wt;class fs extends Ye{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource"],message:f.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:f.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")}],Qe.call(this,e)}}class Kt extends q{constructor(e){super(e),this.controlType="form",this.props=new ae(e==null?void 0:e.props)}}Kt.controlEventKeys=["on_change","on_focus","on_blur"];class hs extends T{constructor(e){super(e),this.controlType="form",this.props=new ae(e==null?void 0:e.props)}}class ie extends U{constructor(e){super(e)}}function zt(t,e){var n;(n=Object.getOwnPropertyDescriptors(t)[e])!=null&&n.enumerable&&Object.defineProperty(t,e,{enumerable:!1})}function pe(t,e){t.parent=e,zt(t,"parent")}function kt(t,e){t.forEach(n=>{pe(n,e)})}const Xt=Symbol("targetKey");function Gt(t){var e;return(e=t[Xt])!=null?e:t}function Jt(t,e){return kt(t,e),new Proxy(t,{get(n,u,...a){return u===Xt?n:Reflect.get(n,u,...a)},set(n,u,a,...i){if(er(t)&&u==="length"&&a===t.length)return!0;const r=Reflect.set(n,u,a,...i);return pi(a)&&pe(a,e),r}})}function re(t,e,n,u){const a=u!=null?u:t;let i=Jt(Gt(n!=null?n:[]),a);Object.defineProperty(t,e,{get(){return i},set(r){i=Jt(Gt(r),a)},enumerable:!0})}const ms=1e4;class z extends q{constructor(e){super(e),this.controlType="layout";const{excludes:n,childrenMaxLength:u}=new.target;this.props=new ie(e==null?void 0:e.props),re(this,"children",e==null?void 0:e.children),this.excludes=K(n),this.childrenMaxLength=u}judgeExcludesChildren(e){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(e)}judgeJoinChildren(e){const n=this.judgeExcludesChildren(e);return n&&this.childrenMaxLength>this.children.length}validate(e,n){return se(this,null,function*(){return yield rt(z.prototype,this,"validate").call(this,e,n),yield Promise.all(this.children.map(u=>u.validate(e,n))),!0})}toDataBindModel(e=null){const n=super.toDataBindModel(),u=n?[n]:[];return this.children.reduce((a,i)=>{const r=i.toDataBindModel(e);if(Array.isArray(r)){const l=r.filter(d=>!!d);return[...a,...l]}return r&&a.push(r),a},u)}toSchema(){const e=super.toSchema(),n=this.children.map(u=>u.toSchema());return Ce(Z({},e),{children:n})}}z.excludes=!1,z.childrenMaxLength=ms;class et extends T{constructor(e){super(e),this.controlType="layout",this.props=new ie(e==null?void 0:e.props),re(this,"children",e==null?void 0:e.children)}}class tt extends U{constructor(e,n){super(n),re(this,"headers",n==null?void 0:n.headers,e)}}class Be extends q{constructor(e){super(e),this.controlType="list",this.props=new tt(this,e==null?void 0:e.props)}validate(e,n){return se(this,null,function*(){return yield rt(Be.prototype,this,"validate").call(this,e),yield Promise.all(this.props.headers.map(u=>u.validate(e,n))),!0})}toDataBindModel(){const e=super.toDataBindModel(),n=e?[e]:[],u=this.id;return this.props.headers.reduce((a,i)=>{const r=i.toDataBindModel(u);if(Array.isArray(r)){const l=r.filter(d=>!!d);return[...a,...l]}return r&&a.push(r),a},n)}toSchema(){const e=super.toSchema(),n=this.props.headers.map(u=>u.toSchema());return Ce(Z({},e),{props:Ce(Z({},this.props),{headers:n})})}}Be.controlFieldType=R.LIST;class gs extends T{constructor(e){super(e),this.controlType="list",this.props=new tt(this,e==null?void 0:e.props),re(this,"children",e==null?void 0:e.children)}get length(){return this.children.length}}class nt extends ye{constructor(e){super(e),this.caption={type:"string",required:!0,message:f.getMessage("pleaseEnterCaption")},this.width={type:"number",required:!1,message:f.getMessage("pleaseEnterColumnWidth")},this.width.required=e.widthType==="px"}}class Ae extends U{constructor(e){var n,u,a,i,r;super(e),this.width=(n=e==null?void 0:e.width)!=null?n:150,this.widthType=(e==null?void 0:e.widthType)||"auto",this.caption=(u=e==null?void 0:e.caption)!=null?u:"",this.fixed=(a=e==null?void 0:e.fixed)!=null?a:"none",this.autoWidth=new Ve(e==null?void 0:e.autoWidth),this.dataBind=new O(e==null?void 0:e.dataBind),this.sort=(i=e==null?void 0:e.sort)!=null?i:!0,this.align=e==null?void 0:e.align,this.colSpan=e==null?void 0:e.colSpan,this.autoHeight=(r=e==null?void 0:e.autoHeight)!=null?r:!1}}Ae.Rules=nt;class ys extends nt{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource","none"],message:f.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:f.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")}],Qe.call(this,e)}}class Es extends q{constructor(e){super(e),this.controlType="column",this.props=new Ae(e==null?void 0:e.props)}}class vs extends T{constructor(e){super(e),this.controlType="column",this.props=new Ae(e==null?void 0:e.props)}}class ut extends ie{constructor(e){super(e),this.dataBind=new O(e==null?void 0:e.dataBind)}}class Bs extends z{constructor(e){super(e),this.controlType="search",this.props=new ut(e==null?void 0:e.props)}}class As extends et{constructor(e){super(e),this.controlType="search",this.props=new ut(e==null?void 0:e.props)}}class at extends ie{constructor(e){super(e)}}class Cs extends z{constructor(e){super(e),this.controlType="wrap",this.props=new at(e==null?void 0:e.props)}}class Fs extends et{constructor(e){super(e),this.controlType="wrap",this.props=new at(e==null?void 0:e.props)}}function Ds(t){t.hasOwnProperty("linkOperationOption")&&t.hasOwnProperty("showLinkOperation")&&t.showLinkOperation&&(this.linkOperationOption=[{type:"object",fields:{formKey:{type:"string",required:!0,message:f.getMessage("pleaseEnterForm")}}}])}s.AMOUNT_TYPE=He,s.AddressValue=Mr,s.AmountDataBind=Sr,s.AmountValue=wr,s.AutoWidth=Ve,s.BaseControlProperty=ae,s.BaseControlPropertyRules=Ye,s.BaseControlPropertyRuntimeRules=Wt,s.BaseStyle=qt,s.COMMON_SETTING_TYPE=$t,s.CalcDataBind=Lr,s.CalcValue=$r,s.ColumnControlProperty=Ae,s.ColumnControlPropertyRules=nt,s.ColumnOptionAndDataSourcePropertyRules=ys,s.CustomAttributeItem=je,s.CustomPermissionItem=Vr,s.DataBind=O,s.DataSourceBind=me,s.DataSourceDataSetValue=wt,s.DataSourceOrderItem=xe,s.DataSourceParamItem=gr,s.DataStorageDoc=dr,s.DesignerColumnControl=Es,s.DesignerControl=q,s.DesignerFormControl=Kt,s.DesignerLayoutControl=z,s.DesignerListControl=Be,s.DesignerSearchControl=Bs,s.DesignerWrapControl=Cs,s.DisplayBoListItem=Ne,s.FieldBindItem=Ft,s.FieldFilterCondition=he,s.FieldFilterConditions=te,s.FillBackBind=Ar,s.FillPayloadBind=Mt,s.FormBind=fe,s.FormSelectBind=fr,s.ImageOptionSetting=Lt,s.Language=Cr,s.LayoutControlProperty=ie,s.LeftVariable=bt,s.LinkOperationOption=Er,s.ListBind=hr,s.ListControlProperty=tt,s.MetaAutoWidth=cr,s.MetaWidth=de,s.MultistageFillingItem=St,s.ObjectDataBind=ge,s.OperationItem=qr,s.OptObject=Or,s.OptionAndDataSourcePropertyRules=fs,s.OptionSetting=Ue,s.OrganizationDataSourceBind=vr,s.PAGE_STATUS=Te,s.Property=U,s.PropertyRules=ye,s.PropertyRuntimeRules=We,s.RangeDataBind=Ir,s.RangeDateValue=Rr,s.RegisterControls=ce,s.RegularRules=Fr,s.RightVariable=Oe,s.RuntimeColumnControl=vs,s.RuntimeControl=T,s.RuntimeFormControl=hs,s.RuntimeLayoutControl=et,s.RuntimeListControl=gs,s.RuntimeSearchControl=As,s.RuntimeWrapControl=Fs,s.SearchControlProperty=ut,s.SelectedContentConfig=yr,s.SubListItem=Dt,s.SubListPageConfig=mr,s.SuperDataSourceBind=It,s.TreeDataSourceBind=Br,s.ViewOperationItem=Pr,s.WrapControlProperty=at,s.controlHooksEmitter=Ut,s.createValidator=jt,s.defineArrayParent=kt,s.defineControlArrayToProperty=re,s.defineParent=pe,s.initImageOptions=br,s.initLinkOperationRules=Ds,s.initOptionAndDataSourceRules=Qe,s.initOptions=Dr,s.initSuperDataSourceRules=ds,s.setPropertyDontEnum=zt,Object.defineProperty(s,"__esModule",{value:!0})});
|
|
@@ -9,26 +9,12 @@ declare class PropertyRuntimeRules extends Array<RuleItem> {
|
|
|
9
9
|
readonly [index: number]: RuleItem;
|
|
10
10
|
constructor(props: Property);
|
|
11
11
|
}
|
|
12
|
-
/**
|
|
13
|
-
* 全局属性
|
|
14
|
-
* @public
|
|
15
|
-
*/
|
|
16
12
|
declare class Property {
|
|
17
13
|
static readonly Rules: typeof PropertyRules;
|
|
18
14
|
static readonly RuntimeRules: typeof PropertyRuntimeRules;
|
|
19
|
-
/**
|
|
20
|
-
* 是否隐藏
|
|
21
|
-
* @public
|
|
22
|
-
* @defaultValue false
|
|
23
|
-
*/
|
|
24
15
|
isHide: boolean;
|
|
25
16
|
className?: string[];
|
|
26
17
|
style: BaseStyle;
|
|
27
|
-
/**
|
|
28
|
-
* 标题
|
|
29
|
-
* @public
|
|
30
|
-
* @defaultValue ''
|
|
31
|
-
*/
|
|
32
18
|
caption: string;
|
|
33
19
|
constructor(props?: Partial<Property>, caption?: string);
|
|
34
20
|
}
|
|
@@ -14,10 +14,6 @@ declare class BaseControlPropertyRules extends PropertyRules {
|
|
|
14
14
|
declare class BaseControlPropertyRuntimeRules extends PropertyRuntimeRules {
|
|
15
15
|
constructor(props: BaseControlProperty);
|
|
16
16
|
}
|
|
17
|
-
/**
|
|
18
|
-
* 表单控件公共属性
|
|
19
|
-
* @public
|
|
20
|
-
*/
|
|
21
17
|
declare class BaseControlProperty extends Property {
|
|
22
18
|
static readonly Rules: typeof BaseControlPropertyRules;
|
|
23
19
|
static readonly RuntimeRules: typeof BaseControlPropertyRuntimeRules;
|
|
@@ -56,15 +56,7 @@ export declare class FormSelectBind extends FormBind {
|
|
|
56
56
|
primaryControlId: string;
|
|
57
57
|
constructor(props?: Partial<FormSelectBind>);
|
|
58
58
|
}
|
|
59
|
-
/**
|
|
60
|
-
* 列表绑定字段项
|
|
61
|
-
* @public
|
|
62
|
-
*/
|
|
63
59
|
declare class ListBindHeaderItem {
|
|
64
|
-
/**
|
|
65
|
-
* 字段
|
|
66
|
-
* @defaultValue ''
|
|
67
|
-
*/
|
|
68
60
|
fieldCode: string;
|
|
69
61
|
constructor(props?: Partial<ListBindHeaderItem>);
|
|
70
62
|
}
|
|
@@ -115,81 +107,28 @@ export declare class LeftVariable {
|
|
|
115
107
|
constructor(props?: Partial<LeftVariable>);
|
|
116
108
|
}
|
|
117
109
|
export declare class RightVariable {
|
|
118
|
-
type: 'form' | 'system' | 'custom'
|
|
110
|
+
type: 'form' | 'system' | 'custom';
|
|
119
111
|
value: string[];
|
|
120
112
|
displayBos: Record<string, unknown>[];
|
|
121
113
|
constructor(props?: Partial<RightVariable>);
|
|
122
114
|
}
|
|
123
|
-
/**
|
|
124
|
-
* 连接符条件
|
|
125
|
-
* @public
|
|
126
|
-
*/
|
|
127
115
|
export declare class FieldFilterConditions {
|
|
128
|
-
/**
|
|
129
|
-
* 编号
|
|
130
|
-
* @defaultValue ''
|
|
131
|
-
*/
|
|
132
116
|
id: string;
|
|
133
|
-
/**
|
|
134
|
-
* 规则编号
|
|
135
|
-
* @defaultValue Timestamp
|
|
136
|
-
*/
|
|
137
117
|
ruleId: number;
|
|
138
|
-
/**
|
|
139
|
-
* 类型:连接符条件
|
|
140
|
-
* @defaultValue 'conditions'
|
|
141
|
-
*/
|
|
142
118
|
type: string;
|
|
143
|
-
/**
|
|
144
|
-
* 深度
|
|
145
|
-
* @defaultValue 0
|
|
146
|
-
*/
|
|
147
119
|
level: number;
|
|
148
|
-
/**
|
|
149
|
-
* 连接符值
|
|
150
|
-
* @defaultValue 'and'
|
|
151
|
-
*/
|
|
152
120
|
value: 'and' | 'or';
|
|
153
|
-
/**
|
|
154
|
-
* 包含子项
|
|
155
|
-
* @defaultValue []
|
|
156
|
-
*/
|
|
157
121
|
children: Array<FieldFilterCondition | FieldFilterConditions>;
|
|
158
122
|
constructor(props?: Partial<FieldFilterConditions>);
|
|
159
123
|
}
|
|
160
|
-
/**
|
|
161
|
-
* 字段过滤条件
|
|
162
|
-
* @public
|
|
163
|
-
*/
|
|
164
124
|
export declare class FieldFilterCondition {
|
|
165
|
-
/**
|
|
166
|
-
* 唯一编号
|
|
167
|
-
* @defaultValue ''
|
|
168
|
-
*/
|
|
169
125
|
id: string;
|
|
170
|
-
/**
|
|
171
|
-
* 规则编号
|
|
172
|
-
* @defaultValue Timestamp
|
|
173
|
-
*/
|
|
174
126
|
ruleId: number;
|
|
175
|
-
/**
|
|
176
|
-
* 类型
|
|
177
|
-
* @defaultValue 'condition'
|
|
178
|
-
*/
|
|
179
127
|
type: string;
|
|
180
|
-
/**
|
|
181
|
-
* 符号
|
|
182
|
-
*/
|
|
183
128
|
symbol: string;
|
|
184
129
|
checked: boolean;
|
|
185
130
|
describe: string;
|
|
186
|
-
/**
|
|
187
|
-
* 左值
|
|
188
|
-
*/
|
|
189
131
|
leftVariableBo: LeftVariable;
|
|
190
|
-
/**
|
|
191
|
-
* 右值
|
|
192
|
-
*/
|
|
193
132
|
rightVariableBo: RightVariable;
|
|
194
133
|
constructor(props?: Partial<FieldFilterCondition>);
|
|
195
134
|
}
|
|
@@ -224,41 +163,14 @@ export declare class MultistageFillingItem {
|
|
|
224
163
|
propName: string;
|
|
225
164
|
constructor(props: Partial<MultistageFillingItem>);
|
|
226
165
|
}
|
|
227
|
-
/**
|
|
228
|
-
* 显示项
|
|
229
|
-
* @public
|
|
230
|
-
*/
|
|
231
166
|
export declare class DisplayBoListItem {
|
|
232
|
-
/**
|
|
233
|
-
* 显示项类型:字段 | 符号
|
|
234
|
-
* @defaultValue 'FIELD'
|
|
235
|
-
* @public
|
|
236
|
-
*/
|
|
237
167
|
type: 'FIELD' | 'MOSAICS';
|
|
238
|
-
/**
|
|
239
|
-
* 值
|
|
240
|
-
*/
|
|
241
168
|
value: string;
|
|
242
|
-
/**
|
|
243
|
-
* 字段数据类型
|
|
244
|
-
*/
|
|
245
169
|
fieldType?: FieldTypes;
|
|
246
170
|
constructor(props?: Partial<DisplayBoListItem>);
|
|
247
171
|
}
|
|
248
|
-
/**
|
|
249
|
-
* 数据源排序项
|
|
250
|
-
* @public
|
|
251
|
-
*/
|
|
252
172
|
export declare class DataSourceOrderItem {
|
|
253
|
-
/**
|
|
254
|
-
* 列名
|
|
255
|
-
* @defaultValue ''
|
|
256
|
-
*/
|
|
257
173
|
columnName: string;
|
|
258
|
-
/**
|
|
259
|
-
* 倒序
|
|
260
|
-
* @defaultValue false
|
|
261
|
-
*/
|
|
262
174
|
desc: boolean;
|
|
263
175
|
constructor(props: Partial<DataSourceOrderItem>);
|
|
264
176
|
}
|
|
@@ -302,12 +214,6 @@ export declare class DataSourceBind {
|
|
|
302
214
|
* @public
|
|
303
215
|
*/
|
|
304
216
|
displayBoList: DisplayBoListItem[];
|
|
305
|
-
/**
|
|
306
|
-
* 查询关键字参数映射
|
|
307
|
-
* @defaultValue ''
|
|
308
|
-
* @public
|
|
309
|
-
*/
|
|
310
|
-
keywordMapping?: string;
|
|
311
217
|
/**
|
|
312
218
|
* 绑定服务
|
|
313
219
|
* @defaultValue ''
|
|
@@ -476,25 +382,9 @@ export declare class Language {
|
|
|
476
382
|
ja: string;
|
|
477
383
|
constructor(props?: Partial<Language>);
|
|
478
384
|
}
|
|
479
|
-
/**
|
|
480
|
-
* 正则校验
|
|
481
|
-
* @public
|
|
482
|
-
*/
|
|
483
385
|
export declare class RegularRules {
|
|
484
|
-
/**
|
|
485
|
-
* 内置模版
|
|
486
|
-
* @defaultValue ''
|
|
487
|
-
*/
|
|
488
386
|
stencilName: string;
|
|
489
|
-
/**
|
|
490
|
-
* 正则表达式
|
|
491
|
-
* @defaultValue ''
|
|
492
|
-
*/
|
|
493
387
|
expression: string;
|
|
494
|
-
/**
|
|
495
|
-
* 校验错误提示信息
|
|
496
|
-
* @defaultValue ''
|
|
497
|
-
*/
|
|
498
388
|
errMessage: string;
|
|
499
389
|
constructor(props?: Partial<RegularRules>);
|
|
500
390
|
}
|
|
@@ -525,146 +415,45 @@ export declare class ImageOptionSetting extends OptionSetting {
|
|
|
525
415
|
}
|
|
526
416
|
export declare function initOptions(options?: Partial<OptionSetting>[]): OptionSetting[];
|
|
527
417
|
export declare function initImageOptions(options?: Partial<ImageOptionSetting>[]): ImageOptionSetting[];
|
|
528
|
-
/**
|
|
529
|
-
* 对象类型数据绑定配置
|
|
530
|
-
* @public
|
|
531
|
-
*/
|
|
532
418
|
export declare class ObjectDataBind {
|
|
533
|
-
/**
|
|
534
|
-
* 绑定配置
|
|
535
|
-
*/
|
|
536
419
|
[key: string]: DataBind;
|
|
537
420
|
}
|
|
538
|
-
/**
|
|
539
|
-
* 金额控件数据绑定配置
|
|
540
|
-
* @public
|
|
541
|
-
*/
|
|
542
421
|
export declare class AmountDataBind extends ObjectDataBind {
|
|
543
|
-
/**
|
|
544
|
-
* 金额字段绑定配置
|
|
545
|
-
*/
|
|
546
422
|
amount: DataBind;
|
|
547
|
-
/**
|
|
548
|
-
* 币种字段绑定配置
|
|
549
|
-
*/
|
|
550
423
|
currency: DataBind;
|
|
551
424
|
constructor(props?: Partial<AmountDataBind>);
|
|
552
425
|
}
|
|
553
|
-
/**
|
|
554
|
-
* 金额控件值
|
|
555
|
-
* @public
|
|
556
|
-
*/
|
|
557
426
|
export declare class AmountValue {
|
|
558
|
-
/**
|
|
559
|
-
* 金额值
|
|
560
|
-
* @defaultValue ''
|
|
561
|
-
*/
|
|
562
427
|
amount: number | '';
|
|
563
|
-
/**
|
|
564
|
-
* 货币值
|
|
565
|
-
* @defaultValue 'CNY'
|
|
566
|
-
*/
|
|
567
428
|
currency: AMOUNT_TYPE;
|
|
568
429
|
constructor(props?: Partial<AmountValue>);
|
|
569
430
|
}
|
|
570
|
-
/**
|
|
571
|
-
* 日期区间数据绑定项
|
|
572
|
-
* @public
|
|
573
|
-
*/
|
|
574
431
|
export declare class RangeDataBind extends ObjectDataBind {
|
|
575
|
-
/**
|
|
576
|
-
* 开始日期字段绑定项
|
|
577
|
-
*/
|
|
578
432
|
min: DataBind;
|
|
579
|
-
/**
|
|
580
|
-
* 结束日期字段绑定项
|
|
581
|
-
*/
|
|
582
433
|
max: DataBind;
|
|
583
434
|
constructor(props?: Partial<AmountDataBind>);
|
|
584
435
|
}
|
|
585
|
-
/**
|
|
586
|
-
* 日期区间值
|
|
587
|
-
* @public
|
|
588
|
-
*/
|
|
589
436
|
export declare class RangeDateValue {
|
|
590
|
-
/**
|
|
591
|
-
* 开始日期值
|
|
592
|
-
* @defaultValue ''
|
|
593
|
-
*/
|
|
594
437
|
min: string;
|
|
595
|
-
/**
|
|
596
|
-
* 结束日期值
|
|
597
|
-
* @defaultValue ''
|
|
598
|
-
*/
|
|
599
438
|
max: string;
|
|
600
439
|
constructor(props?: Partial<RangeDateValue>);
|
|
601
440
|
}
|
|
602
|
-
/**
|
|
603
|
-
* 地址值
|
|
604
|
-
* @public
|
|
605
|
-
*/
|
|
606
441
|
export declare class AddressValue {
|
|
607
|
-
/**
|
|
608
|
-
* 市编码
|
|
609
|
-
* @defaultValue ''
|
|
610
|
-
*/
|
|
611
442
|
city?: string;
|
|
612
|
-
/**
|
|
613
|
-
* 市显示文字
|
|
614
|
-
* @defaultValue ''
|
|
615
|
-
*/
|
|
616
443
|
cityDisplay?: string;
|
|
617
|
-
/**
|
|
618
|
-
* 区编码
|
|
619
|
-
* @defaultValue ''
|
|
620
|
-
*/
|
|
621
444
|
district?: string;
|
|
622
|
-
/**
|
|
623
|
-
* 区显示文字
|
|
624
|
-
* @defaultValue ''
|
|
625
|
-
*/
|
|
626
445
|
districtDisplay?: string;
|
|
627
|
-
/**
|
|
628
|
-
* 省编码
|
|
629
|
-
* @defaultValue ''
|
|
630
|
-
*/
|
|
631
446
|
province?: string;
|
|
632
|
-
/**
|
|
633
|
-
* 省显示文字
|
|
634
|
-
* @defaultValue ''
|
|
635
|
-
*/
|
|
636
447
|
provinceDisplay?: string;
|
|
637
448
|
constructor(props?: Partial<AddressValue>);
|
|
638
449
|
}
|
|
639
|
-
/**
|
|
640
|
-
* 计算公式数据绑定项
|
|
641
|
-
* @public
|
|
642
|
-
*/
|
|
643
450
|
export declare class CalcDataBind extends ObjectDataBind {
|
|
644
|
-
/**
|
|
645
|
-
* 计算结果字段绑定项
|
|
646
|
-
*/
|
|
647
451
|
result: DataBind;
|
|
648
|
-
/**
|
|
649
|
-
* 单位字段绑定项
|
|
650
|
-
*/
|
|
651
452
|
unit: DataBind;
|
|
652
453
|
constructor(props?: Partial<CalcDataBind>);
|
|
653
454
|
}
|
|
654
|
-
/**
|
|
655
|
-
* 计算公式值
|
|
656
|
-
* @public
|
|
657
|
-
*/
|
|
658
455
|
export declare class CalcValue {
|
|
659
|
-
/**
|
|
660
|
-
* 计算结果值
|
|
661
|
-
* @defaultValue 0
|
|
662
|
-
*/
|
|
663
456
|
result: number | 0;
|
|
664
|
-
/**
|
|
665
|
-
* 单位
|
|
666
|
-
* @defaultValue ''
|
|
667
|
-
*/
|
|
668
457
|
unit: string;
|
|
669
458
|
constructor(props?: Partial<CalcValue>);
|
|
670
459
|
}
|
|
@@ -810,3 +599,18 @@ export declare class BaseStyle {
|
|
|
810
599
|
heightConfig: 'px' | '%' | 'fill' | 'hug';
|
|
811
600
|
constructor(props?: Partial<BaseStyle>);
|
|
812
601
|
}
|
|
602
|
+
export declare class OptObject {
|
|
603
|
+
/**
|
|
604
|
+
* 操作项编码
|
|
605
|
+
* @defaultValue ''
|
|
606
|
+
* @public
|
|
607
|
+
*/
|
|
608
|
+
optCode: string;
|
|
609
|
+
/**
|
|
610
|
+
* 操作项类型
|
|
611
|
+
* @defaultValue ''
|
|
612
|
+
* @public
|
|
613
|
+
*/
|
|
614
|
+
optType: string;
|
|
615
|
+
constructor(props?: Partial<OptObject>);
|
|
616
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0-alpha.4",
|
|
4
4
|
"description": "model engine core",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-shared": "2.
|
|
29
|
+
"@byteluck-fe/model-driven-shared": "2.6.0-alpha.4",
|
|
30
30
|
"async-validator": "3.5.1",
|
|
31
31
|
"tslib": "^2.1.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "eba06a33cebd14e20b8ca9010dcda75e26754be1"
|
|
34
34
|
}
|