@byteluck-fe/model-driven-engine 4.41.0-lx4 → 4.51.0-lx0
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/Engine.js +53 -53
- package/dist/index.umd.js +2 -2
- package/package.json +4 -4
|
@@ -949,9 +949,9 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
949
949
|
}
|
|
950
950
|
},
|
|
951
951
|
{
|
|
952
|
-
/**
|
|
953
|
-
* 设置payload的options,提供在不是使用标准api修改state的时候可以传递options,会在本次任务执行完成之后清空
|
|
954
|
-
* @param options 需要携带的options
|
|
952
|
+
/**
|
|
953
|
+
* 设置payload的options,提供在不是使用标准api修改state的时候可以传递options,会在本次任务执行完成之后清空
|
|
954
|
+
* @param options 需要携带的options
|
|
955
955
|
* */ key: "setPayloadOptions",
|
|
956
956
|
value: function setPayloadOptions(options) {
|
|
957
957
|
eventOptionsTemp = options;
|
|
@@ -968,9 +968,9 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
968
968
|
}
|
|
969
969
|
},
|
|
970
970
|
{
|
|
971
|
-
/**
|
|
972
|
-
* 向Store设置一组值,明细表必须全量赋值,并触发事件(触发事件是根据组件在页面中的顺序逐个触发)
|
|
973
|
-
* @param states
|
|
971
|
+
/**
|
|
972
|
+
* 向Store设置一组值,明细表必须全量赋值,并触发事件(触发事件是根据组件在页面中的顺序逐个触发)
|
|
973
|
+
* @param states
|
|
974
974
|
*/ key: "setStates",
|
|
975
975
|
value: function setStates(states, rowIndex, options) {
|
|
976
976
|
var _this = this;
|
|
@@ -1041,11 +1041,11 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1041
1041
|
}
|
|
1042
1042
|
},
|
|
1043
1043
|
{
|
|
1044
|
-
/**
|
|
1045
|
-
* 通过dataCode和fieldCode来获取控件的值
|
|
1046
|
-
* @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
|
|
1047
|
-
* @param fieldCode 字段编码 - 控件绑定的数据项的编码
|
|
1048
|
-
* @param rowIndex 行下标 - 如果是明细子表中的控件需要提供
|
|
1044
|
+
/**
|
|
1045
|
+
* 通过dataCode和fieldCode来获取控件的值
|
|
1046
|
+
* @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
|
|
1047
|
+
* @param fieldCode 字段编码 - 控件绑定的数据项的编码
|
|
1048
|
+
* @param rowIndex 行下标 - 如果是明细子表中的控件需要提供
|
|
1049
1049
|
* */ key: "getField",
|
|
1050
1050
|
value: function getField(dataCode, fieldCode, rowIndex) {
|
|
1051
1051
|
if (!fieldCode) {
|
|
@@ -1118,7 +1118,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1118
1118
|
obj[(_controlIdMapping_key2 = controlIdMapping[key]) === null || _controlIdMapping_key2 === void 0 ? void 0 : _controlIdMapping_key2.dataBind.fieldCode] = getFieldData[key];
|
|
1119
1119
|
} else if ((_controlIdMapping_key1 = controlIdMapping[key]) === null || _controlIdMapping_key1 === void 0 ? void 0 : (_controlIdMapping_key_dataBind1 = _controlIdMapping_key1.dataBind) === null || _controlIdMapping_key_dataBind1 === void 0 ? void 0 : _controlIdMapping_key_dataBind1.dataCode) {
|
|
1120
1120
|
// 明细字表只循环一层明细子表未递归
|
|
1121
|
-
if (
|
|
1121
|
+
if (Array.isArray(getFieldData[key])) {
|
|
1122
1122
|
var _controlIdMapping_key3, _getFieldData_key;
|
|
1123
1123
|
obj[(_controlIdMapping_key3 = controlIdMapping[key]) === null || _controlIdMapping_key3 === void 0 ? void 0 : _controlIdMapping_key3.dataBind.dataCode] = (_getFieldData_key = getFieldData[key]) === null || _getFieldData_key === void 0 ? void 0 : _getFieldData_key.map(function(item) {
|
|
1124
1124
|
var objChi = {};
|
|
@@ -1158,13 +1158,13 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1158
1158
|
}
|
|
1159
1159
|
},
|
|
1160
1160
|
{
|
|
1161
|
-
/**
|
|
1162
|
-
* 通过dataCode和fieldCode来设置控件的值
|
|
1163
|
-
* @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
|
|
1164
|
-
* @param fieldCode 字段编码 - 控件绑定的数据项的编码
|
|
1165
|
-
* @param value 修改的值
|
|
1166
|
-
* @param rowIndex 行下标 - 如果是明细子表中的控件需要提供
|
|
1167
|
-
* @param options 触发事件携带的参数
|
|
1161
|
+
/**
|
|
1162
|
+
* 通过dataCode和fieldCode来设置控件的值
|
|
1163
|
+
* @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
|
|
1164
|
+
* @param fieldCode 字段编码 - 控件绑定的数据项的编码
|
|
1165
|
+
* @param value 修改的值
|
|
1166
|
+
* @param rowIndex 行下标 - 如果是明细子表中的控件需要提供
|
|
1167
|
+
* @param options 触发事件携带的参数
|
|
1168
1168
|
* */ key: "setField",
|
|
1169
1169
|
value: function setField(dataCode, fieldCode, value, rowIndex, options) {
|
|
1170
1170
|
var dataBindMapping = this.getDataBindMapping(dataCode, fieldCode);
|
|
@@ -1192,12 +1192,12 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1192
1192
|
}
|
|
1193
1193
|
},
|
|
1194
1194
|
{
|
|
1195
|
-
/**
|
|
1196
|
-
* 通过dataCode和 state来给一组控件赋值,并触发事件携带options
|
|
1197
|
-
* @param dataCode 需要赋值的目标模型
|
|
1198
|
-
* @param state 赋值对象,以fieldCode为key组成的对象
|
|
1199
|
-
* @param rowIndex 行下标,给明细子表赋值时指定赋值某行
|
|
1200
|
-
* @param options 触发事件携带的参数
|
|
1195
|
+
/**
|
|
1196
|
+
* 通过dataCode和 state来给一组控件赋值,并触发事件携带options
|
|
1197
|
+
* @param dataCode 需要赋值的目标模型
|
|
1198
|
+
* @param state 赋值对象,以fieldCode为key组成的对象
|
|
1199
|
+
* @param rowIndex 行下标,给明细子表赋值时指定赋值某行
|
|
1200
|
+
* @param options 触发事件携带的参数
|
|
1201
1201
|
* */ key: "setFields",
|
|
1202
1202
|
value: function setFields(dataCode, state, rowIndex, options) {
|
|
1203
1203
|
var _this = this;
|
|
@@ -1238,10 +1238,10 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1238
1238
|
}
|
|
1239
1239
|
},
|
|
1240
1240
|
{
|
|
1241
|
-
/**
|
|
1242
|
-
* 通过dataCode来将state转化为标准的state结构
|
|
1243
|
-
* @param dataCode 需要转换的目标模型code
|
|
1244
|
-
* @param state 值对象,以fieldCode为key组成的对象
|
|
1241
|
+
/**
|
|
1242
|
+
* 通过dataCode来将state转化为标准的state结构
|
|
1243
|
+
* @param dataCode 需要转换的目标模型code
|
|
1244
|
+
* @param state 值对象,以fieldCode为key组成的对象
|
|
1245
1245
|
* */ key: "buildFields",
|
|
1246
1246
|
value: function buildFields(dataCode, state) {
|
|
1247
1247
|
var _this = this;
|
|
@@ -1282,10 +1282,10 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1282
1282
|
}
|
|
1283
1283
|
},
|
|
1284
1284
|
{
|
|
1285
|
-
/**
|
|
1286
|
-
* 向Store设置一组值,并触发事件携带options
|
|
1287
|
-
* @param dataSet
|
|
1288
|
-
* @options 传递给关联事件中 EventPayload中的options,一般在plugin中监听使用
|
|
1285
|
+
/**
|
|
1286
|
+
* 向Store设置一组值,并触发事件携带options
|
|
1287
|
+
* @param dataSet
|
|
1288
|
+
* @options 传递给关联事件中 EventPayload中的options,一般在plugin中监听使用
|
|
1289
1289
|
*/ key: "setData",
|
|
1290
1290
|
value: function setData(dataSet, options) {
|
|
1291
1291
|
var _this = this;
|
|
@@ -1422,19 +1422,19 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1422
1422
|
}
|
|
1423
1423
|
},
|
|
1424
1424
|
{
|
|
1425
|
-
/**
|
|
1426
|
-
* 获取控件的dataBind
|
|
1427
|
-
* @param controlId
|
|
1425
|
+
/**
|
|
1426
|
+
* 获取控件的dataBind
|
|
1427
|
+
* @param controlId
|
|
1428
1428
|
* */ key: "getDataBind",
|
|
1429
1429
|
value: function getDataBind(controlId) {
|
|
1430
1430
|
return this.store.getDataBind(controlId);
|
|
1431
1431
|
}
|
|
1432
1432
|
},
|
|
1433
1433
|
{
|
|
1434
|
-
/**
|
|
1435
|
-
* 获取组件实例,传入rowIndex代表获取明细表内的控件实例,rowIndex传入-1代表获取表头内的实例
|
|
1436
|
-
* @param controlId
|
|
1437
|
-
* @param rowIndex
|
|
1434
|
+
/**
|
|
1435
|
+
* 获取组件实例,传入rowIndex代表获取明细表内的控件实例,rowIndex传入-1代表获取表头内的实例
|
|
1436
|
+
* @param controlId
|
|
1437
|
+
* @param rowIndex
|
|
1438
1438
|
*/ key: "getInstance",
|
|
1439
1439
|
value: function getInstance(controlId, rowIndex) {
|
|
1440
1440
|
var instances = this.getInstances(controlId, rowIndex === -1);
|
|
@@ -1453,10 +1453,10 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1453
1453
|
}
|
|
1454
1454
|
},
|
|
1455
1455
|
{
|
|
1456
|
-
/**
|
|
1457
|
-
* 获取组件实例,明细表中的组件将会得到数组, 第二个参数为(false/不传入)则获取到的是明细表内不包含表头内实例的所有控件实例,传入true则获取到包含表头内实例的所有控件实例,表头内实例永远在下标0的位置
|
|
1458
|
-
* @param controlId
|
|
1459
|
-
* @param header 明细表内是否获取表头的控件
|
|
1456
|
+
/**
|
|
1457
|
+
* 获取组件实例,明细表中的组件将会得到数组, 第二个参数为(false/不传入)则获取到的是明细表内不包含表头内实例的所有控件实例,传入true则获取到包含表头内实例的所有控件实例,表头内实例永远在下标0的位置
|
|
1458
|
+
* @param controlId
|
|
1459
|
+
* @param header 明细表内是否获取表头的控件
|
|
1460
1460
|
*/ // getInstances(
|
|
1461
1461
|
// controlId?: string,
|
|
1462
1462
|
// header: boolean = false
|
|
@@ -1628,27 +1628,27 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1628
1628
|
},
|
|
1629
1629
|
{
|
|
1630
1630
|
key: "assertInstance",
|
|
1631
|
-
value: /**
|
|
1632
|
-
* 判断控件的类型,返回当前控件的正确类型
|
|
1631
|
+
value: /**
|
|
1632
|
+
* 判断控件的类型,返回当前控件的正确类型
|
|
1633
1633
|
* */ function assertInstance(instance, types) {
|
|
1634
1634
|
return isString(types) ? instance.type === types : types.includes(instance.type);
|
|
1635
1635
|
}
|
|
1636
1636
|
},
|
|
1637
1637
|
{
|
|
1638
1638
|
key: "assertInstanceIsCustomControl",
|
|
1639
|
-
value: /**
|
|
1640
|
-
* 判断控件或控件类型是一个自定义控件
|
|
1639
|
+
value: /**
|
|
1640
|
+
* 判断控件或控件类型是一个自定义控件
|
|
1641
1641
|
* */ function assertInstanceIsCustomControl(instance) {
|
|
1642
1642
|
return !isBuiltInControls(isString(instance) ? instance : instance.type);
|
|
1643
1643
|
}
|
|
1644
1644
|
},
|
|
1645
1645
|
{
|
|
1646
1646
|
key: "getInstanceRowIndex",
|
|
1647
|
-
value: /**
|
|
1648
|
-
* 获取控件在明细子表中的行下标,
|
|
1649
|
-
* 如果控件在表头内,则返回-1
|
|
1650
|
-
* 如果控件在表内,则返回行下标
|
|
1651
|
-
* 如果控件不在明细表内,则返回undefined
|
|
1647
|
+
value: /**
|
|
1648
|
+
* 获取控件在明细子表中的行下标,
|
|
1649
|
+
* 如果控件在表头内,则返回-1
|
|
1650
|
+
* 如果控件在表内,则返回行下标
|
|
1651
|
+
* 如果控件不在明细表内,则返回undefined
|
|
1652
1652
|
* */ // public getInstanceRowIndex(
|
|
1653
1653
|
// instance: ControlRuntimeInstance<ControlsKeys> | RuntimeControl
|
|
1654
1654
|
// ) {
|
package/dist/index.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
var WD=Object.defineProperty,GD=Object.defineProperties;var ZD=Object.getOwnPropertyDescriptors;var Lo=Object.getOwnPropertySymbols,JD=Object.getPrototypeOf,XD=Object.prototype.hasOwnProperty,KD=Object.prototype.propertyIsEnumerable,QD=Reflect.get;var qn=Math.pow,qo=(W,ie,ce)=>ie in W?WD(W,ie,{enumerable:!0,configurable:!0,writable:!0,value:ce}):W[ie]=ce,ae=(W,ie)=>{for(var ce in ie||(ie={}))XD.call(ie,ce)&&qo(W,ce,ie[ce]);if(Lo)for(var ce of Lo(ie))KD.call(ie,ce)&&qo(W,ce,ie[ce]);return W},uu=(W,ie)=>GD(W,ZD(ie));var Uo=(W,ie,ce)=>QD(JD(W),ce,ie);var We=(W,ie,ce)=>new Promise((Un,nn)=>{var Vn=Ge=>{try{jt(ce.next(Ge))}catch(kt){nn(kt)}},Hn=Ge=>{try{jt(ce.throw(Ge))}catch(kt){nn(kt)}},jt=Ge=>Ge.done?Un(Ge.value):Promise.resolve(Ge.value).then(Vn,Hn);jt((ce=ce.apply(W,ie)).next())});(function(W,ie){typeof exports=="object"&&typeof module!="undefined"?ie(exports,require("crypto")):typeof define=="function"&&define.amd?define(["exports","crypto"],ie):(W=typeof globalThis!="undefined"?globalThis:W||self,ie(W.modelDrivenEngine={},W.require$$0))})(this,function(W,ie){"use strict";function ce(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var Un=ce(ie),nn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Vn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Hn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",jt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Ge="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",kt="{caption}\u5FC5\u586B",Vo="\u8BF7\u8F93\u5165\u6807\u9898",Ho="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",zo="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Wo="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Go="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Zo="\u8BF7\u7ED1\u5B9A\u8868\u5355",Jo="\u8BF7\u7ED1\u5B9A\u5217\u8868",Xo="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Ko="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Qo="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Yo="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ea="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",ta="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",na="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",ra="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ua="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",ia="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",oa="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",aa="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",sa="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",ca="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",la="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",fa="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",da="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",ha="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",pa="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Da="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",ga="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",ma="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ya="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",va="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Ea="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Aa="\u8BF7\u9009\u62E9\u7701",Ca="\u8BF7\u9009\u62E9\u5E02",Fa="\u8BF7\u9009\u62E9\u533A",wa="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",ba="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Ba="\u8BF7\u8F93\u5165\u5217\u5BBD",_a="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Sa="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Ma="\u8BF7\u9009\u62E9\u63A7\u4EF6",Na="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ia="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Oa="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",xa="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Ta="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Pa="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",$a="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ra="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ja="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ka="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",La="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",qa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ua="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Va="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ha="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",za="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Wa="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Ga="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Za="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Ja="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Xa="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ka="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Qa="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Ya="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",es="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",ts="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",ns="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",rs={isNotNumber:nn,isNotString:Vn,isNotObject:Hn,isNotArray:jt,isNotBoolean:Ge,runtimeRequired:kt,pleaseEnterCaption:Vo,pleaseEnterCaptionTip:Ho,pleaseEnterRowCaption:zo,pleaseEnterPlaceholder:Wo,pleaseEnterFieldCode:Go,pleaseEnterForm:Zo,pleaseEnterList:Jo,pleaseEnterProcess:Xo,pleaseEnterLabel:Ko,pleaseEnterValue:Qo,bizKeyNotBindFiled:Yo,pleaseSelectOneField:ea,pleaseEnterNumberRange:ta,pleaseEnterAValueGreaterThanMin:na,pleaseEnterAValueLessThanMax:ra,numberRangeSetError:ua,stringRangeError:ia,attachmentMaxSize:oa,pleaseEnterTotalScoreSetting:aa,theTotalScoreMustNotBeLessThan1:sa,scoreDefaultValueRange:ca,attachmentLimitError:la,PleaseReselectTheOptionalQuantity:fa,TheMaximumLengthIsGreaterThanTheMinimumLength:da,TheMinimumLengthIsGreaterThanTheMaximumLength:ha,PleaseSelectTheCorrectOptionSettings:pa,optionIdIsRepeat:Da,optionIsRequired:ga,pleaseEnterDataCode:ma,pleaseEnterValueFieldCode:ya,pleaseEnterSvcCode:va,pleaseBindAtLeastOneDisplayValue:Ea,pleaseSelectProvince:Aa,pleaseSelectCity:Ca,pleaseSelectDistrict:Fa,limitRowsCannotBeLessThan0:wa,TheNumberOfRowsCannotBeLessThanMinRows:ba,pleaseEnterColumnWidth:Ba,pleaseSetTheLogicalRelationshipOfAllRuleConditions:_a,pleaseCompleteAllRulesAndConditions:Sa,pleaseSelectControl:Ma,pleaseSelectAtLeastOneColumn:Na,pleaseSelectFillBackMode:Ia,pleaseSelectDashboard:Oa,rootNodeIsRequired:xa,theViewNameCannotBeEmpty:Ta,pleaseSelectOcrType:Pa,pleaseSelectAtLeastOneFieldToFillIn:$a,pleaseChooseAtLeastOne:Ra,pleaseEnterButtonContent:ja,pleaseEnterDataCodeInDataSetting:ka,pleaseEnterValueFieldCodeInDataSetting:La,pleaseEnterSvcCodeInDataSetting:qa,pleaseBindAtLeastOneDisplayValueInDataSetting:Ua,rootNodeIsRequiredInDataSetting:Va,pleaseEnterMaxHeight:Ha,pleaseEnter:za,pleaseEnterWatermark:Wa,pleaseEnterFileName:Ga,pleaseUploadAtLeastOnePrintTemplate:Za,pleaseAssignBusiness:Ja,pleaseAssignExternal:Xa,pleaseEnterAliasCode:Ka,pleaseSelectDataCode:Qa,pleaseSelectSvcCode:Ya,pleaseSelectJoinFieldCode:es,pleaseSelectMainFieldCode:ts,pleaseSelectSortFieldCode:ns},us="Please enter a number",is="Please enter a string",os="Please enter an object",as="Please enter an array",ss="Please enter a boolean",cs="{caption} Required",ls="Please enter the title",fs="Please enter the bubble prompt",ds="Please enter the row title",hs="Please enter the prompt text",ps="Please bind data items",Ds="Please bind the form",gs="Please bind the list",ms="Please bind the process",ys="Please enter the displayed value",vs="Please enter the stored value",Es="The document number is not bound to the data item",As="Please select at least one display field",Cs="Please enter a value greater than or equal to {min} and less than or equal to {max}",Fs="Please enter a value greater than or equal to {min}",ws="Please enter a value less than or equal to {max}",bs="The value range is set incorrectly",Bs="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",_s="The attachment size must be between 0MB and 1000MB",Ss="Please fill in the total score setting",Ms="The total score cannot be less than 1",Ns="The default value must be between {min} and {max}",Is="The number of attachments uploaded must be between {min} and {max}",Os="Please re-select the optional quantity",xs="The maximum length of the control must be greater than the minimum length",Ts="The minimum length of the control must be less than the maximum length",Ps="Please select the correct option setting",$s="Option ID cannot be repeated",Rs="Please enter at least one option",js="Please bind the data source",ks="Please bind the stored value",Ls="Please bind the service",qs="At least one display value must be bound",Us="Please select a province",Vs="Please select a city",Hs="Please select a district",zs="The minimum number of lines to fill in cannot be less than 0",Ws="The number of rows cannot be less than {min} rows",Gs="Please enter the column width",Zs="Please set the logical relationship of all rule conditions",Js="Please complete all rules and conditions",Xs="please select control",Ks="Please select the dashboard",Qs="View name cannot be empty",Ys="Please select recognition type",ec="Please select at least one field to fill in",tc="Please select at least one",nc="Please enter the button title",rc="Please bind the business model in the data settings",uc="Please bind storage values in data settings",ic="Please bind the service in the data settings",oc="Please bind at least one display value in the data settings",ac="Please select the root node in the data settings",sc="Please enter the maximum height",cc="The input content cannot be empty",lc="Watermark cannot be empty",fc="File name cannot be empty",dc="Please upload at least one printing template!\uFF01",hc="Please select a specific business department",pc="Please select a specified external organization",Dc="Please enter a sub table alias",gc="Please select the associated table to set the business model",mc="Please select the association table to set the binding service",yc="Select associated sub table fields",vc="Please select the associated main table field",Ec="Please select the sort field",Ac={isNotNumber:us,isNotString:is,isNotObject:os,isNotArray:as,isNotBoolean:ss,runtimeRequired:cs,pleaseEnterCaption:ls,pleaseEnterCaptionTip:fs,pleaseEnterRowCaption:ds,pleaseEnterPlaceholder:hs,pleaseEnterFieldCode:ps,pleaseEnterForm:Ds,pleaseEnterList:gs,pleaseEnterProcess:ms,pleaseEnterLabel:ys,pleaseEnterValue:vs,bizKeyNotBindFiled:Es,pleaseSelectOneField:As,pleaseEnterNumberRange:Cs,pleaseEnterAValueGreaterThanMin:Fs,pleaseEnterAValueLessThanMax:ws,numberRangeSetError:bs,stringRangeError:Bs,attachmentMaxSize:_s,pleaseEnterTotalScoreSetting:Ss,theTotalScoreMustNotBeLessThan1:Ms,scoreDefaultValueRange:Ns,attachmentLimitError:Is,PleaseReselectTheOptionalQuantity:Os,TheMaximumLengthIsGreaterThanTheMinimumLength:xs,TheMinimumLengthIsGreaterThanTheMaximumLength:Ts,PleaseSelectTheCorrectOptionSettings:Ps,optionIdIsRepeat:$s,optionIsRequired:Rs,pleaseEnterDataCode:js,pleaseEnterValueFieldCode:ks,pleaseEnterSvcCode:Ls,pleaseBindAtLeastOneDisplayValue:qs,pleaseSelectProvince:Us,pleaseSelectCity:Vs,pleaseSelectDistrict:Hs,limitRowsCannotBeLessThan0:zs,TheNumberOfRowsCannotBeLessThanMinRows:Ws,pleaseEnterColumnWidth:Gs,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Zs,pleaseCompleteAllRulesAndConditions:Js,pleaseSelectControl:Xs,pleaseSelectDashboard:Ks,theViewNameCannotBeEmpty:Qs,pleaseSelectOcrType:Ys,pleaseSelectAtLeastOneFieldToFillIn:ec,pleaseChooseAtLeastOne:tc,pleaseEnterButtonContent:nc,pleaseEnterDataCodeInDataSetting:rc,pleaseEnterValueFieldCodeInDataSetting:uc,pleaseEnterSvcCodeInDataSetting:ic,pleaseBindAtLeastOneDisplayValueInDataSetting:oc,rootNodeIsRequiredInDataSetting:ac,pleaseEnterMaxHeight:sc,pleaseEnter:cc,pleaseEnterWatermark:lc,pleaseEnterFileName:fc,pleaseUploadAtLeastOnePrintTemplate:dc,pleaseAssignBusiness:hc,pleaseAssignExternal:pc,pleaseEnterAliasCode:Dc,pleaseSelectDataCode:gc,pleaseSelectSvcCode:mc,pleaseSelectJoinFieldCode:yc,pleaseSelectMainFieldCode:vc,pleaseSelectSortFieldCode:Ec},Cc="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fc="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wc="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bc="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Bc="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_c="{caption}\u5FC5\u9808",Sc="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mc="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Nc="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ic="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oc="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",xc="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Tc="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Pc="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",$c="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Rc="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",jc="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",kc="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Lc="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",qc="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Uc="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Vc="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Hc="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",zc="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Wc="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Gc="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Zc="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Jc="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Xc="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Kc="\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",Qc="\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",Yc="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",el="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",tl="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",nl="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",rl="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ul="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",il="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ol="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",al="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",sl="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",cl="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ll="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",fl="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",dl="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",hl="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",pl="please select control",Dl="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",gl="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ml="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",yl="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",vl="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",El="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Al="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Cl="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Fl="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",wl="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",bl="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Bl="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",_l="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Sl="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ml="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Nl="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",Il="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ol="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",xl="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Tl="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",Pl="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",$l="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",Rl="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",jl="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",kl={isNotNumber:Cc,isNotString:Fc,isNotObject:wc,isNotArray:bc,isNotBoolean:Bc,runtimeRequired:_c,pleaseEnterCaption:Sc,pleaseEnterCaptionTip:Mc,pleaseEnterRowCaption:Nc,pleaseEnterPlaceholder:Ic,pleaseEnterFieldCode:Oc,pleaseEnterForm:xc,pleaseEnterList:Tc,pleaseEnterProcess:Pc,pleaseEnterLabel:$c,pleaseEnterValue:Rc,bizKeyNotBindFiled:jc,pleaseSelectOneField:kc,pleaseEnterNumberRange:Lc,pleaseEnterAValueGreaterThanMin:qc,pleaseEnterAValueLessThanMax:Uc,numberRangeSetError:Vc,stringRangeError:Hc,attachmentMaxSize:zc,pleaseEnterTotalScoreSetting:Wc,theTotalScoreMustNotBeLessThan1:Gc,scoreDefaultValueRange:Zc,attachmentLimitError:Jc,PleaseReselectTheOptionalQuantity:Xc,TheMaximumLengthIsGreaterThanTheMinimumLength:Kc,TheMinimumLengthIsGreaterThanTheMaximumLength:Qc,PleaseSelectTheCorrectOptionSettings:Yc,optionIdIsRepeat:el,optionIsRequired:tl,pleaseEnterDataCode:nl,pleaseEnterValueFieldCode:rl,pleaseEnterSvcCode:ul,pleaseBindAtLeastOneDisplayValue:il,pleaseSelectProvince:ol,pleaseSelectCity:al,pleaseSelectDistrict:sl,limitRowsCannotBeLessThan0:cl,TheNumberOfRowsCannotBeLessThanMinRows:ll,pleaseEnterColumnWidth:fl,pleaseSetTheLogicalRelationshipOfAllRuleConditions:dl,pleaseCompleteAllRulesAndConditions:hl,pleaseSelectControl:pl,pleaseSelectDashboard:Dl,theViewNameCannotBeEmpty:gl,pleaseSelectOcrType:ml,pleaseSelectAtLeastOneFieldToFillIn:yl,pleaseChooseAtLeastOne:vl,pleaseEnterButtonContent:El,pleaseEnterDataCodeInDataSetting:Al,pleaseEnterValueFieldCodeInDataSetting:Cl,pleaseEnterSvcCodeInDataSetting:Fl,pleaseBindAtLeastOneDisplayValueInDataSetting:wl,rootNodeIsRequiredInDataSetting:bl,pleaseEnterMaxHeight:Bl,pleaseEnter:_l,pleaseEnterWatermark:Sl,pleaseEnterFileName:Ml,pleaseUploadAtLeastOnePrintTemplate:Nl,pleaseAssignBusiness:Il,pleaseAssignExternal:Ol,pleaseEnterAliasCode:xl,pleaseSelectDataCode:Tl,pleaseSelectSvcCode:Pl,pleaseSelectJoinFieldCode:$l,pleaseSelectMainFieldCode:Rl,pleaseSelectSortFieldCode:jl},Ll={zhCN:rs,enUS:Ac,jaJP:kl},Ze=function(e){return e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable",e}({}),rn=function(e){return e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN",e}({}),iu="zh-CN";function Se(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Z=function(e){return e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search",e}({}),oe=function(e){return e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.OPERATION_BUTTON="operation-button",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.GRID_LAYOUT_CONTAINER="grid-layout-container",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e.GRID_LAYOUT_WRAP="grid-layout-wrap",e.SENSITIVEN_INFORMATION="sensitiven-information",e}({}),le=function(e){return e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field",e}({}),ye;ye={},Se(ye,"array","array-column"),Se(ye,"auto_number","auto-number-column"),Se(ye,"decimal","decimal-column"),Se(ye,"department","department-column"),Se(ye,"file","file-column"),Se(ye,"image","image-column"),Se(ye,"location","location-column"),Se(ye,"people","employee-column"),Se(ye,"text","text-column"),Se(ye,"timescope","timescope-column"),Se(ye,"timestamp","timestamp-column"),Se(ye,"varchar","varchar-column"),Se(ye,"relation","varchar-column");var ou="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",ql=ou+"0123456789";function un(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?ou:ql,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function zn(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Ul(e){if(Array.isArray(e))return zn(e)}function Vl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function au(e,t,n){return t=Lt(t),Gl(e,Gn()?Reflect.construct(t,n||[],Lt(e).constructor):t.apply(e,n))}function su(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function on(e,t,n){return Gn()?on=Reflect.construct:on=function(u,i,o){var a=[null];a.push.apply(a,i);var s=Function.bind.apply(u,a),c=new s;return o&&qt(c,o.prototype),c},on.apply(null,arguments)}function Lt(e){return Lt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Lt(e)}function cu(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&qt(e,t)}function Hl(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function zl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Wl(){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 Gl(e,t){return t&&(Zl(t)==="object"||typeof t=="function")?t:Vl(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},qt(e,t)}function lu(e){return Ul(e)||zl(e)||Jl(e)||Wl()}function Zl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Jl(e,t){if(!!e){if(typeof e=="string")return zn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return zn(e,t)}}function Wn(e){var t=typeof Map=="function"?new Map:void 0;return Wn=function(r){if(r===null||!Hl(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return on(r,arguments,Lt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),qt(u,r)},Wn(e)}function Gn(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Gn=function(){return!!e})()}var Zn=console;function tt(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=Zn).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(lu(u)))}function Jn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=Zn).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(lu(u)))}function Xl(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Xn=function(e){cu(t,e);function t(n){su(this,t);var r;return r=au(this,t,[n]),r.name="\u{1F4A5} Driven Error",r.message=n?Xl(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",r}return t}(Wn(Error)),Kl=function(e){cu(t,e);function t(n){su(this,t);var r;return r=au(this,t,[n]),r.name="\u{1F6A8} Driven Reference Error",r}return t}(Xn);function Je(e){throw new Xn(e)}function fu(e){throw new Kl(e)}function an(e){Zn.error(new Xn(e))}function Xe(e,t){Array.isArray(e)&&e.map(function(n){switch(n.controlType){case"layout":Xe(n==null?void 0:n.children,t);break;case"wrap":Xe(n==null?void 0:n.children,t);break;case"search":Xe(n==null?void 0:n.children,t);break;case"form":t(n)}})}var Ql=Object.prototype.toString;function du(e,t){return Ql.call(e)==="[object "+t+"]"}function Yl(e){return du(e,"String")}function ef(e){return du(e,"Promise")}var tf=function(){function e(t){var n,r;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((r=(n=t.messages)!==null&&n!==void 0?n:this.getPreImport(t.locale))!==null&&r!==void 0?r:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var n=this;this.locale=t,this._messageCache.clear();var r=this.getMessageData();ef(r)?r.then(function(u){n._messageCache.clear(),n.messages[n.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var u=this.getMessage(t);return u?this.formatMessage(u,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(u,i,o,a){if(u!==void 0){var s=u[i];if(!(o===a.length-1&&!Yl(s)))return s}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,u){var i=n[u];return i!==void 0?String(i):r}):t},e.prototype.getPreImport=function(t){var n;if(window.okI18nPreImport){var r=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(r)?window.okI18nPreImport:(n={},n[r]=window.okI18nPreImport,n)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function nf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function hu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function rf(e,t,n){return t&&hu(e.prototype,t),n&&hu(e,n),e}function uf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Me=function(){function e(){nf(this,e)}return rf(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:iu;return new tf({locale:n,messages:Ll})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();uf(Me,"$i18n",Me.resetI18n());function Kn(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,o){return"."+o}).split("."),u=!1;return r.reduce(function(i,o,a,s){var c=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,o)){tt("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),i,i);return}return a===s.length-1&&!Object.is(c[o],n)&&(c[o]=n,u=!0),c[o]}},e),u}var nt=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function of(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Qn={exports:{}};(function(e){(function(t){var n=function(h,y,E){if(!c(y)||f(y)||d(y)||p(y)||s(y))return y;var A,w=0,M=0;if(l(y))for(A=[],M=y.length;w<M;w++)A.push(n(h,y[w],E));else{A={};for(var I in y)Object.prototype.hasOwnProperty.call(y,I)&&(A[h(I,E)]=n(h,y[I],E))}return A},r=function(h,y){y=y||{};var E=y.separator||"_",A=y.split||/(?=[A-Z])/;return h.split(A).join(E)},u=function(h){return g(h)?h:(h=h.replace(/[\-_\s]+(.)?/g,function(y,E){return E?E.toUpperCase():""}),h.substr(0,1).toLowerCase()+h.substr(1))},i=function(h){var y=u(h);return y.substr(0,1).toUpperCase()+y.substr(1)},o=function(h,y){return r(h,y).toLowerCase()},a=Object.prototype.toString,s=function(h){return typeof h=="function"},c=function(h){return h===Object(h)},l=function(h){return a.call(h)=="[object Array]"},f=function(h){return a.call(h)=="[object Date]"},d=function(h){return a.call(h)=="[object RegExp]"},p=function(h){return a.call(h)=="[object Boolean]"},g=function(h){return h=h-0,h===h},m=function(h,y){var E=y&&"process"in y?y.process:y;return typeof E!="function"?h:function(A,w){return E(A,h,w)}},C={camelize:u,decamelize:o,pascalize:i,depascalize:o,camelizeKeys:function(h,y){return n(m(u,y),h)},decamelizeKeys:function(h,y){return n(m(o,y),h,y)},pascalizeKeys:function(h,y){return n(m(i,y),h)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=C:t.humps=C})(nt)})(Qn);var pu={};Object.defineProperty(pu,"__esModule",{value:!0});function Yn(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:Yn(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:Yn(r)}return t}}var af=pu.default=Yn;function Du(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ee(e){if(e!==void 0)return(typeof e=="undefined"?"undefined":Du(e))==="object"?af(e):e}function Re(e){return Object.prototype.toString.call(e)==="[object Object]"}function sf(e){return e!=null&&(typeof e=="undefined"?"undefined":Du(e))==="object"&&Array.isArray(e)===!1}function pt(e){return Array.isArray(e)}function Ae(e){return typeof e=="string"}function sn(e){return typeof e=="number"}function gu(e){return typeof e=="function"}function cf(e){return pt(e)&&e.every(function(t){return Ae(t)})}function lf(e){return pt(e)&&e.every(function(t){return sn(t)||t===""})}function mu(e){return/^\[.*?]$/.test(e)}function cn(e){return/^{.*?}$/.test(e)}function ff(e){return Object.values(oe).includes(e)}function er(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function df(e){if(Array.isArray(e))return er(e)}function yu(e,t,n,r,u,i,o){try{var a=e[i](o),s=a.value}catch(c){n(c);return}a.done?t(s):Promise.resolve(s).then(r,u)}function hf(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){yu(i,r,u,o,a,"next",s)}function a(s){yu(i,r,u,o,a,"throw",s)}o(void 0)})}}function pf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function vu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Df(e,t,n){return t&&vu(e.prototype,t),n&&vu(e,n),e}function Eu(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function gf(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function mf(){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 tr(e){return df(e)||gf(e)||yf(e)||mf()}function yf(e,t){if(!!e){if(typeof e=="string")return er(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return er(e,t)}}function vf(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=a(0),o.throw=a(1),o.return=a(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(c){return function(l){return s([c,l])}}function s(c){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,c[0]&&(i=0)),i;)try{if(n=1,r&&(u=c[0]&2?r.return:c[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,c[1])).done)return u;switch(r=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return i.label++,{value:c[1],done:!1};case 5:i.label++,r=c[1],c=[0];continue;case 7:c=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){i.label=c[1];break}if(c[0]===6&&i.label<u[1]){i.label=u[1],u=c;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(c);break}u[2]&&i.ops.pop(),i.trys.pop();continue}c=t.call(e,i)}catch(l){c=[6,l],r=0}finally{n=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}var Au=function(){function e(){pf(this,e),Eu(this,"_events",new Map),Eu(this,"debug",!1)}return Df(e,[{key:"emit",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),i=1;i<r;i++)u[i-1]=arguments[i];return hf(function(){var o,a,s,c,l,f,d,p,g,m,C,h;return vf(this,function(y){switch(y.label){case 0:if(o=this._events.get(n),a=[],!o)return[3,10];s=o.slice(),c=!0,l=!1,f=void 0,y.label=1;case 1:y.trys.push([1,8,9,10]),d=s[Symbol.iterator](),y.label=2;case 2:if(c=(p=d.next()).done)return[3,7];if(g=p.value,!o.includes(g))return[3,6];y.label=3;case 3:return y.trys.push([3,5,,6]),this.debug&&Jn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(g.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+g.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"\u3002")].concat(tr(u))),[4,g.apply(null,tr(u))];case 4:return m=y.sent(),this.debug&&Jn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(g.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+g.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(tr(u),[m])),a.push(m),m===!1?[3,7]:[3,6];case 5:return C=y.sent(),an(String(C)+":"+String(C.stack)),[3,6];case 6:return c=!0,[3,2];case 7:return[3,10];case 8:return h=y.sent(),l=!0,f=h,[3,10];case 9:try{!c&&d.return!=null&&d.return()}finally{if(l)throw f}return[7];case 10:return[2,a]}})}).call(this)}},{key:"on",value:function(n,r){if(this._events.has(n)){var u;(u=this._events.get(n))===null||u===void 0||u.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var u=this._events.get(n),i=u==null?void 0:u.indexOf(r);u==null||u.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function Ef(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Cu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Af(e,t,n){return t&&Cu(e.prototype,t),n&&Cu(e,n),e}function Cf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ff=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],Fu=function(){function e(){Ef(this,e)}return Af(e,null,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(u){return r.includes(u.key)})}},{key:"getEventsFromControl",value:function(n){var r=[],u=n.eventKeys;r=r.concat(e.events.filter(function(o){return u.includes(o.key)}));var i=n.customEvents.map(function(o){var a=o.key;return{key:a,code:o.key,name:o.name}});return r=r.concat(i),r}}]),e}();Cf(Fu,"events",Ff);function nr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function wf(e){if(Array.isArray(e))return nr(e)}function bf(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Bf(){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 wu(e){return wf(e)||bf(e)||_f(e)||Bf()}function _f(e,t){if(!!e){if(typeof e=="string")return nr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return nr(e,t)}}function rr(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function bu(e,t,n){n!=="Runtime"&&(e.parent=t,rr(e,"parent"))}function Sf(e,t,n){e.forEach(function(r){bu(r,t,n)})}var Bu=Symbol("targetKey");function _u(e){var t;return(t=e[Bu])!==null&&t!==void 0?t:e}function Su(e,t,n){return Sf(e,t,n),new Proxy(e,{get:function(u,i){for(var o=arguments.length,a=new Array(o>2?o-2:0),s=2;s<o;s++)a[s-2]=arguments[s];var c;return i===Bu?u:(c=Reflect).get.apply(c,[u,i].concat(wu(a)))},set:function(u,i,o){for(var a=arguments.length,s=new Array(a>3?a-3:0),c=3;c<a;c++)s[c-3]=arguments[c];var l;if(pt(e)&&i==="length"&&o===e.length)return!0;var f=(l=Reflect).set.apply(l,[u,i,o].concat(wu(s)));return Re(o)&&bu(o,t,n),f}})}function ur(e,t,n,r,u){var i=r!=null?r:e,o=Su(_u(n!=null?n:[]),i,u);Object.defineProperty(e,t,{get:function(){return o},set:function(s){o=Su(_u(s),i,u)},enumerable:!0})}function Mf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Mu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Nf(e,t,n){return t&&Mu(e.prototype,t),n&&Mu(e,n),e}function rt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Nu=[],Ut=function(){function e(t){Mf(this,e),rt(this,"registeredControlTypes",new Set),rt(this,"controlConfigMap",new Map),rt(this,"_controls",[]),rt(this,"_type",void 0),this._type=t,this._initControls(t)}return Nf(e,[{key:"registerControlConfig",value:function(n,r){return this.controlConfigMap.set(n,r),this}},{key:"getControlConfig",value:function(n){return this.controlConfigMap.get(n)}},{key:"getControls",value:function(){return this._controls}},{key:"register",value:function(n){n.__is_control__||Je("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(u){return u.controlType===n.controlType});return r>-1&&(tt("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===Z.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===Z.FORM}},{key:"isListControl",value:function(n){return n.controlType===Z.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===Z.COLUMN}},{key:"createControl",value:function(n,r){var u=this;if(Array.isArray(n))return n.map(function(l){return u.createControl(l,r)});if(n.children&&(n.children=n.children.map(function(l){return u.createControl(l,r)})),this.isListControl(n)){var i=n.props;i.headers&&(i.headers=i.headers.map(function(l){return u.createControl(l,r)})),i.footers&&(i.footers=i.footers.map(function(l){var f;return l&&(f=u.createControl(l,r)),f}))}var o=this.getControlFormType(n.type);if(o){var a=n;if(typeof r=="function"){var s=r(a);s&&(a=s)}var c;return o.mode==="Runtime"?(c=a,c.fieldType=o.controlFieldType,this._setParentPrototypeToSchema(c,this)):c=new o(a),c}else Je("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"resetInstanceParent",value:function(n,r){delete n.parent,Object.defineProperty(n,"parent",{configurable:!0,get:function(){return r}}),rr(n,"parent")}},{key:"_setParentPrototypeToSchema",value:function(n,r){r._type==="Runtime"&&(Object.defineProperty(n,"parent",{configurable:!0,get:function(){var i=n.id,o=r._controlParentIdMap,a=r.instanceMap;if(!(!o||!a)){var s=o[i],c=a[i];if(!(!s&&!c)){var l=c.findIndex(function(p){return p==n}),f=a[s]||[],d;return f.length!==c.length?d=f[0]:d=f[l],d}}}}),rr(n,"parent"))}},{key:"createControlInstance",value:function(n,r){var u=this.getControlFormType(n);if(u)return new u(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(u){r.register(u[n]),e.staticControlsRuntimeRules.set(u.Runtime.controlType,u.Property.RuntimeRules),u.Property.mode=n})}}],[{key:"staticGetRules",value:function(n,r){var u=e.staticControlsRuntimeRules.get(n),i=[];if(u){var o=new u(r);i=Array.from(o)}return i}},{key:"register",value:function(n,r){var u=n.Designer,i=n.Runtime,o=n.Property;(!u||!i||!u.__is_control__||!i.__is_control__)&&Je("".concat(n," is can't register as a Control"));var a=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return a>-1&&(tt("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(a,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),o.mode=r,this}}]),e}();rt(Ut,"staticControlsRuntimeRules",new Map),rt(Ut,"staticControls",Nu),rt(Ut,"staticRegisteredTypes",new Set(Nu.map(function(e){return e.Designer.controlType}))),rt(Ut,"staticRegisteredConfigs",new Map);function Dt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function re(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ir=function e(t){Dt(this,e),re(this,"dataCode",void 0),re(this,"fieldCode",void 0),re(this,"fieldType",void 0),re(this,"aliasCode",void 0);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:"",this.aliasCode=t==null?void 0:t.aliasCode},If=function e(t){Dt(this,e),re(this,"minWidth",void 0),re(this,"maxWidth",void 0),re(this,"flex",void 0);var n;this.minWidth=(n=t==null?void 0:t.minWidth)!==null&&n!==void 0?n:150,this.maxWidth=t==null?void 0:t.maxWidth;var r;this.flex=(r=t==null?void 0:t.flex)!==null&&r!==void 0?r:1},or=function e(t){Dt(this,e),re(this,"amount",void 0),re(this,"currency",void 0);var n;this.amount=(n=t==null?void 0:t.amount)!==null&&n!==void 0?n:"";var r;this.currency=(r=t==null?void 0:t.currency)!==null&&r!==void 0?r:"CNY"},ar=function e(t){Dt(this,e),re(this,"min",void 0),re(this,"max",void 0);var n;this.min=(n=t==null?void 0:t.min)!==null&&n!==void 0?n:"";var r;this.max=(r=t==null?void 0:t.max)!==null&&r!==void 0?r:""},sr=function e(t){Dt(this,e),re(this,"city",void 0),re(this,"cityDisplay",void 0),re(this,"district",void 0),re(this,"districtDisplay",void 0),re(this,"province",void 0),re(this,"provinceDisplay",void 0);var n;this.city=(n=t==null?void 0:t.city)!==null&&n!==void 0?n:"";var r;this.cityDisplay=(r=t==null?void 0:t.cityDisplay)!==null&&r!==void 0?r:"";var u;this.district=(u=t==null?void 0:t.district)!==null&&u!==void 0?u:"";var i;this.districtDisplay=(i=t==null?void 0:t.districtDisplay)!==null&&i!==void 0?i:"";var o;this.province=(o=t==null?void 0:t.province)!==null&&o!==void 0?o:"";var a;this.provinceDisplay=(a=t==null?void 0:t.provinceDisplay)!==null&&a!==void 0?a:""},cr=function e(t){Dt(this,e),re(this,"result",void 0),re(this,"unit",void 0);var n;this.result=(n=t==null?void 0:t.result)!==null&&n!==void 0?n:0;var r;this.unit=(r=t==null?void 0:t.unit)!==null&&r!==void 0?r:""},Of=function(e){return e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT",e}({}),xf=function e(t){Dt(this,e),re(this,"width",void 0),re(this,"height",void 0),re(this,"widthConfig",void 0),re(this,"heightConfig",void 0);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var i;this.heightConfig=(i=t==null?void 0:t.heightConfig)!==null&&i!==void 0?i:"fill"};function Tf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Pf(e,t,n){return t=Vt(t),jf(e,dr()?Reflect.construct(t,n||[],Vt(e).constructor):t.apply(e,n))}function lr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ln(e,t,n){return dr()?ln=Reflect.construct:ln=function(u,i,o){var a=[null];a.push.apply(a,i);var s=Function.bind.apply(u,a),c=new s;return o&&Ht(c,o.prototype),c},ln.apply(null,arguments)}function ut(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Vt(e){return Vt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Vt(e)}function $f(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ht(e,t)}function Rf(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function jf(e,t){return t&&(kf(t)==="object"||typeof t=="function")?t:Tf(e)}function Ht(e,t){return Ht=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ht(e,t)}function kf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function fr(e){var t=typeof Map=="function"?new Map:void 0;return fr=function(r){if(r===null||!Rf(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return ln(r,arguments,Vt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Ht(u,r)},fr(e)}function dr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(dr=function(){return!!e})()}var hr=function e(t){lr(this,e),ut(this,"isHide",{type:"boolean"})},Iu=function(e){$f(t,e);function t(n){return lr(this,t),Pf(this,t)}return t}(fr(Array)),Ke=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";lr(this,e),ut(this,"isHide",void 0),ut(this,"className",void 0),ut(this,"style",void 0),ut(this,"caption",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new xf(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};ut(Ke,"mode",void 0),ut(Ke,"Rules",hr),ut(Ke,"RuntimeRules",Iu);function Ue(){return Ue=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Ue.apply(this,arguments)}function Lf(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function pr(e){return pr=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},pr(e)}function fn(e,t){return fn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},fn(e,t)}function qf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function dn(e,t,n){return qf()?dn=Reflect.construct:dn=function(u,i,o){var a=[null];a.push.apply(a,i);var s=Function.bind.apply(u,a),c=new s;return o&&fn(c,o.prototype),c},dn.apply(null,arguments)}function Uf(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Dr(e){var t=typeof Map=="function"?new Map:void 0;return Dr=function(r){if(r===null||!Uf(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return dn(r,arguments,pr(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),fn(u,r)},Dr(e)}var Vf=/%[sdj%]/g,Ou=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Ou=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function gr(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function Ne(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,u=t[0],i=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var o=String(u).replace(Vf,function(a){if(a==="%%")return"%";if(r>=i)return a;switch(a){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(s){return"[Circular]"}break;default:return a}});return o}return u}function Hf(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function fe(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Hf(t)&&typeof e=="string"&&!e)}function zf(e,t,n){var r=[],u=0,i=e.length;function o(a){r.push.apply(r,a),u++,u===i&&n(r)}e.forEach(function(a){t(a,o)})}function xu(e,t,n){var r=0,u=e.length;function i(o){if(o&&o.length){n(o);return}var a=r;r=r+1,a<u?t(e[a],i):n([])}i([])}function Wf(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var Tu=function(e){Lf(t,e);function t(n,r){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=n,u.fields=r,u}return t}(Dr(Error));function Gf(e,t,n,r){if(t.first){var u=new Promise(function(f,d){var p=function(C){return r(C),C.length?d(new Tu(C,gr(C))):f()},g=Wf(e);xu(g,n,p)});return u.catch(function(f){return f}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var o=Object.keys(e),a=o.length,s=0,c=[],l=new Promise(function(f,d){var p=function(m){if(c.push.apply(c,m),s++,s===a)return r(c),c.length?d(new Tu(c,gr(c))):f()};o.length||(r(c),f()),o.forEach(function(g){var m=e[g];i.indexOf(g)!==-1?xu(m,n,p):zf(m,n,p)})});return l.catch(function(f){return f}),l}function Pu(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function $u(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=Ue(Ue({},e[n]),r):e[n]=r}}return e}function Ru(e,t,n,r,u,i){e.required&&(!n.hasOwnProperty(e.field)||fe(t,i||e.type))&&r.push(Ne(u.messages.required,e.fullField))}function Zf(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(Ne(u.messages.whitespace,e.fullField))}var mr={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},zt={integer:function(t){return zt.number(t)&&parseInt(t,10)===t},float:function(t){return zt.number(t)&&!zt.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(n){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!zt.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(mr.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(mr.url)},hex:function(t){return typeof t=="string"&&!!t.match(mr.hex)}};function Jf(e,t,n,r,u){if(e.required&&t===void 0){Ru(e,t,n,r,u);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;i.indexOf(o)>-1?zt[o](t)||r.push(Ne(u.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(Ne(u.messages.types[o],e.fullField,e.type))}function Xf(e,t,n,r,u){var i=typeof e.len=="number",o=typeof e.min=="number",a=typeof e.max=="number",s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=t,l=null,f=typeof t=="number",d=typeof t=="string",p=Array.isArray(t);if(f?l="number":d?l="string":p&&(l="array"),!l)return!1;p&&(c=t.length),d&&(c=t.replace(s,"_").length),i?c!==e.len&&r.push(Ne(u.messages[l].len,e.fullField,e.len)):o&&!a&&c<e.min?r.push(Ne(u.messages[l].min,e.fullField,e.min)):a&&!o&&c>e.max?r.push(Ne(u.messages[l].max,e.fullField,e.max)):o&&a&&(c<e.min||c>e.max)&&r.push(Ne(u.messages[l].range,e.fullField,e.min,e.max))}var Ct="enum";function Kf(e,t,n,r,u){e[Ct]=Array.isArray(e[Ct])?e[Ct]:[],e[Ct].indexOf(t)===-1&&r.push(Ne(u.messages[Ct],e.fullField,e[Ct].join(", ")))}function Qf(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(Ne(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var i=new RegExp(e.pattern);i.test(t)||r.push(Ne(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var z={required:Ru,whitespace:Zf,type:Jf,range:Xf,enum:Kf,pattern:Qf};function Yf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t,"string")&&!e.required)return n();z.required(e,t,r,i,u,"string"),fe(t,"string")||(z.type(e,t,r,i,u),z.range(e,t,r,i,u),z.pattern(e,t,r,i,u),e.whitespace===!0&&z.whitespace(e,t,r,i,u))}n(i)}function e0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&z.type(e,t,r,i,u)}n(i)}function t0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&(z.type(e,t,r,i,u),z.range(e,t,r,i,u))}n(i)}function n0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&z.type(e,t,r,i,u)}n(i)}function r0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),fe(t)||z.type(e,t,r,i,u)}n(i)}function u0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&(z.type(e,t,r,i,u),z.range(e,t,r,i,u))}n(i)}function i0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&(z.type(e,t,r,i,u),z.range(e,t,r,i,u))}n(i)}function o0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return n();z.required(e,t,r,i,u,"array"),t!=null&&(z.type(e,t,r,i,u),z.range(e,t,r,i,u))}n(i)}function a0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&z.type(e,t,r,i,u)}n(i)}var s0="enum";function c0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&z[s0](e,t,r,i,u)}n(i)}function l0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t,"string")&&!e.required)return n();z.required(e,t,r,i,u),fe(t,"string")||z.pattern(e,t,r,i,u)}n(i)}function f0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t,"date")&&!e.required)return n();if(z.required(e,t,r,i,u),!fe(t,"date")){var a;t instanceof Date?a=t:a=new Date(t),z.type(e,a,r,i,u),a&&z.range(e,a.getTime(),r,i,u)}}n(i)}function d0(e,t,n,r,u){var i=[],o=Array.isArray(t)?"array":typeof t;z.required(e,t,r,i,u,o),n(i)}function yr(e,t,n,r,u){var i=e.type,o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(fe(t,i)&&!e.required)return n();z.required(e,t,r,o,u,i),fe(t,i)||z.type(e,t,r,o,u)}n(o)}function h0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u)}n(i)}var Wt={string:Yf,method:e0,number:t0,boolean:n0,regexp:r0,integer:u0,float:i0,array:o0,object:a0,enum:c0,pattern:l0,date:f0,url:yr,hex:yr,email:yr,required:d0,any:h0};function vr(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var Er=vr();function it(e){this.rules=null,this._messages=Er,this.define(e)}it.prototype={messages:function(t){return t&&(this._messages=$u(vr(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var u=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var i=t,o=n,a=r;if(typeof o=="function"&&(a=o,o={}),!this.rules||Object.keys(this.rules).length===0)return a&&a(),Promise.resolve();function s(m){var C,h=[],y={};function E(A){if(Array.isArray(A)){var w;h=(w=h).concat.apply(w,A)}else h.push(A)}for(C=0;C<m.length;C++)E(m[C]);h.length?y=gr(h):(h=null,y=null),a(h,y)}if(o.messages){var c=this.messages();c===Er&&(c=vr()),$u(c,o.messages),o.messages=c}else o.messages=this.messages();var l,f,d={},p=o.keys||Object.keys(this.rules);p.forEach(function(m){l=u.rules[m],f=i[m],l.forEach(function(C){var h=C;typeof h.transform=="function"&&(i===t&&(i=Ue({},i)),f=i[m]=h.transform(f)),typeof h=="function"?h={validator:h}:h=Ue({},h),h.validator=u.getValidationMethod(h),h.field=m,h.fullField=h.fullField||m,h.type=u.getType(h),h.validator&&(d[m]=d[m]||[],d[m].push({rule:h,value:f,source:i,field:m}))})});var g={};return Gf(d,o,function(m,C){var h=m.rule,y=(h.type==="object"||h.type==="array")&&(typeof h.fields=="object"||typeof h.defaultField=="object");y=y&&(h.required||!h.required&&m.value),h.field=m.field;function E(M,I){return Ue(Ue({},I),{},{fullField:h.fullField+"."+M})}function A(M){M===void 0&&(M=[]);var I=M;if(Array.isArray(I)||(I=[I]),!o.suppressWarning&&I.length&&it.warning("async-validator:",I),I.length&&h.message!==void 0&&(I=[].concat(h.message)),I=I.map(Pu(h)),o.first&&I.length)return g[h.field]=1,C(I);if(!y)C(I);else{if(h.required&&!m.value)return h.message!==void 0?I=[].concat(h.message).map(Pu(h)):o.error&&(I=[o.error(h,Ne(o.messages.required,h.field))]),C(I);var j={};if(h.defaultField)for(var U in m.value)m.value.hasOwnProperty(U)&&(j[U]=h.defaultField);j=Ue(Ue({},j),m.rule.fields);for(var V in j)if(j.hasOwnProperty(V)){var T=Array.isArray(j[V])?j[V]:[j[V]];j[V]=T.map(E.bind(null,V))}var R=new it(j);R.messages(o.messages),m.rule.options&&(m.rule.options.messages=o.messages,m.rule.options.error=o.error),R.validate(m.value,m.rule.options||o,function(J){var G=[];I&&I.length&&G.push.apply(G,I),J&&J.length&&G.push.apply(G,J),C(G.length?G:null)})}}var w;h.asyncValidator?w=h.asyncValidator(h,m.value,A,m.source,o):h.validator&&(w=h.validator(h,m.value,A,m.source,o),w===!0?A():w===!1?A(h.message||h.field+" fails"):w instanceof Array?A(w):w instanceof Error&&A(w.message)),w&&w.then&&w.then(function(){return A()},function(M){return A(M)})},function(m){s(m)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Wt.hasOwnProperty(t.type))throw new Error(Ne("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var n=Object.keys(t),r=n.indexOf("message");return r!==-1&&n.splice(r,1),n.length===1&&n[0]==="required"?Wt.required:Wt[this.getType(t)]||!1}},it.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Wt[t]=n},it.warning=Ou,it.messages=Er,it.validators=Wt;var p0={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 D0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new it(e);return n.messages(Object.assign(p0,t)),n}var g0=new Au;function Ar(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function m0(e){if(Array.isArray(e))return e}function y0(e){if(Array.isArray(e))return Ar(e)}function ju(e,t,n,r,u,i,o){try{var a=e[i](o),s=a.value}catch(c){n(c);return}a.done?t(s):Promise.resolve(s).then(r,u)}function ku(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){ju(i,r,u,o,a,"next",s)}function a(s){ju(i,r,u,o,a,"throw",s)}o(void 0)})}}function v0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Lu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function E0(e,t,n){return t&&Lu(e.prototype,t),n&&Lu(e,n),e}function ne(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function qu(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Uu(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function A0(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function C0(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Vu(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){ne(e,u,n[u])})}return e}function F0(e){return m0(e)||Uu(e)||Hu(e)||A0()}function Cr(e){return y0(e)||Uu(e)||Hu(e)||C0()}function w0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Hu(e,t){if(!!e){if(typeof e=="string")return Ar(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ar(e,t)}}function zu(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=a(0),o.throw=a(1),o.return=a(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(c){return function(l){return s([c,l])}}function s(c){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,c[0]&&(i=0)),i;)try{if(n=1,r&&(u=c[0]&2?r.return:c[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,c[1])).done)return u;switch(r=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return i.label++,{value:c[1],done:!1};case 5:i.label++,r=c[1],c=[0];continue;case 7:c=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){i.label=c[1];break}if(c[0]===6&&i.label<u[1]){i.label=u[1],u=c;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(c);break}u[2]&&i.ops.pop(),i.trys.pop();continue}c=t.call(e,i)}catch(l){c=[6,l],r=0}finally{n=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}var Ce=function(){function t(n){var r=this;v0(this,t),ne(this,"id",void 0),ne(this,"name",void 0),ne(this,"icon",void 0),ne(this,"type",void 0),ne(this,"controlType",void 0),ne(this,"props",void 0),ne(this,"setting",[]),ne(this,"fieldType",void 0),ne(this,"eventKeys",[]),ne(this,"customEvents",[]),ne(this,"parent",null),ne(this,"updateSetting",Gu),ne(this,"removeSetting",Wu),this._callControlHooks("preInstance",n);var u=qu(this,t)?this.constructor:void 0,i=u.controlName,o=u.controlIcon,a=u.controlType,s=u.controlFieldType,c=u.controlEventKeys,l=u.controlCustomEvents,f=u.name,d=u.setting;i&&o&&a||fu("The ".concat(f," controlName,controlIcon,controlType is not define"));var p;this.id=(p=n==null?void 0:n.id)!==null&&p!==void 0?p:un(10),this.name=i,this.icon=o;var g;this.type=(g=n==null?void 0:n.type)!==null&&g!==void 0?g:a,this.props=new Ke(n==null?void 0:n.props,(qu(this,t)?this.constructor:void 0).controlName);var m;this.controlType=(m=n==null?void 0:n.controlType)!==null&&m!==void 0?m:"base",this.setting=ee(d);var C;this.fieldType=(C=n==null?void 0:n.fieldType)!==null&&C!==void 0?C:s,this.eventKeys=ee(c),this.customEvents=ee(l),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return E0(t,[{key:"rules",get:function(){var r=this.props.constructor.Rules;return r?new r(this.props):{}}},{key:"_callControlHooks",value:function(){for(var r=arguments.length,u=new Array(r),i=0;i<r;i++)u[i]=arguments[i];var o,a=F0(u),s=a[0],c=a.slice(1);return(o=g0).emit.apply(o,[s,this].concat(Cr(c)))}},{key:"preUpdate",value:function(r,u){this._callControlHooks("preUpdateProps",r,u)}},{key:"postUpdate",value:function(r,u){this._callControlHooks("postUpdateProps",r,u)}},{key:"updateProps",value:function(r,u){this.preUpdate(r,u),Kn(this.props,r,u),this.postUpdate(r,u)}},{key:"preValidate",value:function(){return ku(function(){var r,u,i;return zu(this,function(o){switch(o.label){case 0:return r=Vu({},this.rules),[4,this._callControlHooks("preValidate",r)];case 1:return u=o.sent(),i=u[u.length-1],[2,i===!1?void 0:i]}})}).call(this)}},{key:"validate",value:function(r,u){return ku(function(){var i,o,a,s;return zu(this,function(c){switch(c.label){case 0:return[4,this.preValidate()];case 1:i=c.sent(),o=i!==void 0?i:Vu({},this.rules),Array.isArray(u)&&u.forEach(function(l){o.hasOwnProperty(l)&&delete o[l]}),a=D0(o,r),c.label=2;case 2:return c.trys.push([2,4,,5]),[4,a.validate(this.props)];case 3:return c.sent(),[2,!0];case 4:throw s=c.sent(),s.control||(s.control=this),s;case 5:return[2]}})}).call(this)}},{key:"toDataBindModel",value:function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,u=this.fieldType,i=this.id,o=this.type,a=this.props,s=a.dataBind,c=a.datasourceBind,l=a.optionConfig,f=a.caption,d=a.required,p=a.maxLength,g=a.options,m=a.encrypted,C=a.encryptedMode;if(!(!u&&!s&&!c)){var h={parentId:r,fieldType:u,controlId:i,caption:f,type:o,props:{}};switch(s&&(h.dataBind=s),l){case"datasource":case void 0:c&&(h.datasourceBind=c);break;case"custom":h.props.options=g;break}return d!==void 0&&(h.required=d),p!==void 0&&(h.maxLength=p),m!==void 0&&(h.encrypted=m),C!==void 0&&(h.encryptedMode=C),h}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:ee(this.props),fieldType:this.fieldType,controlType:this.controlType}}}],[{key:"updateBasicControl",value:function(r,u){if(r==="setting"){if(u.add){var i;(i=this.setting).push.apply(i,Cr(u.add))}u.remove&&this.removeSettingItem(u.remove),u.update}}}]),t}();ne(Ce,"mode","Designer"),ne(Ce,"controlName","\u63A7\u4EF6"),ne(Ce,"controlIcon","icon"),ne(Ce,"controlType","control"),ne(Ce,"controlFieldType",void 0),ne(Ce,"controlEventKeys",[]),ne(Ce,"controlCustomEvents",[]),ne(Ce,"setting",[]),ne(Ce,"__is_control__",!0),ne(Ce,"removeSettingItem",Wu),ne(Ce,"updateSettingItem",Gu);function Wu(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u,i=typeof r!="string",o=(u=t.setting)===null||u===void 0?void 0:u.findIndex(function(c){return c.key===(i?r.key:r)});if(o!==-1){var a,s;i?t.setting[o].showItems=(a=t.setting[o].showItems)===null||a===void 0?void 0:a.filter(function(c){return!r.hideItems.includes(c)}):t.setting.splice(o,1),i&&!(!((s=t.setting[o].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(o,1)}})}function Gu(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var i=n.setting.find(function(c){return c.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if((typeof t=="undefined"?"undefined":w0(t))==="object"){var o,a=(o=t.type)!==null&&o!==void 0?o:"replace";if(a==="replace")i.showItems=t.showItems;else{var s;(s=i.showItems).push.apply(s,Cr(t.showItems))}}}})}function b0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Zu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function B0(e,t,n){return t&&Zu(e.prototype,t),n&&Zu(e,n),e}function Ie(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _0(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var Gt=function(){function t(n){b0(this,t),Ie(this,"id",void 0),Ie(this,"type",void 0),Ie(this,"controlType",void 0),Ie(this,"props",void 0),Ie(this,"fieldType",void 0),Ie(this,"customEvents",[]),Ie(this,"pageStatus",void 0),Ie(this,"parent",null);var r=_0(this,t)?this.constructor:void 0,u=r.controlType,i=r.controlFieldType,o=r.name,a=r.controlCustomEvents;u||fu("The ".concat(o," controlType is not define"));var s;this.id=(s=n==null?void 0:n.id)!==null&&s!==void 0?s:un(10);var c;this.type=(c=n==null?void 0:n.type)!==null&&c!==void 0?c:u,this.props=new Ke(n==null?void 0:n.props),this.customEvents=a;var l;this.controlType=(l=n==null?void 0:n.controlType)!==null&&l!==void 0?l:"base";var f;this.fieldType=(f=n==null?void 0:n.fieldType)!==null&&f!==void 0?f:i;var d;this.pageStatus=(d=n==null?void 0:n.pageStatus)!==null&&d!==void 0?d:Of.UNKNOWN}return B0(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var u=new r(this.props);return Array.from(u)}return[]}}]),t}();Ie(Gt,"mode","Runtime"),Ie(Gt,"controlType","control"),Ie(Gt,"controlFieldType",void 0),Ie(Gt,"__is_control__",!0),Ie(Gt,"controlCustomEvents",[]);function Oe(e){return(e==null?void 0:e.dataCode)!==void 0&&(e==null?void 0:e.fieldCode)!==void 0}function S0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Fr(e,t,n){return t=hn(t),M0(e,Ju()?Reflect.construct(t,n||[],hn(e).constructor):t.apply(e,n))}function wr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ue(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function hn(e){return hn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},hn(e)}function br(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Br(e,t)}function M0(e,t){return t&&(N0(t)==="object"||typeof t=="function")?t:S0(e)}function Br(e,t){return Br=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Br(e,t)}function N0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ju(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Ju=function(){return!!e})()}var I0=function(e){br(t,e);function t(n){wr(this,t);var r;r=Fr(this,t,[n]),ue(r,"dataBind",{}),ue(r,"caption",{type:"string",required:!0,message:Me.getMessage("pleaseEnterCaption")}),ue(r,"isHideCaption",{type:"boolean"}),ue(r,"labelPosition",{type:"enum",enum:["top","left"]}),ue(r,"defaultState",{type:"enum",enum:["default","readonly"]}),ue(r,"required",{type:"boolean"}),ue(r,"captionTip",{type:"string",required:!1,message:Me.getMessage("pleaseEnterCaptionTip")});var u={fieldCode:{type:"string",required:!0,message:Me.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:Me.getMessage("pleaseEnterFieldCode")}};if(Oe(n.dataBind))r.dataBind={type:"object",required:!0,fields:ee(u),message:Me.getMessage("pleaseEnterFieldCode")};else{var i={type:"object",required:!0,fields:{},message:Me.getMessage("pleaseEnterFieldCode")};Object.keys(n.dataBind).forEach(function(o){i.fields[o]={type:"object",required:!0,fields:ee(u),message:Me.getMessage("pleaseEnterFieldCode")}}),r.dataBind=i}return n.isShowCaptionTip&&(r.captionTip.required=!0),r}return t}(hr),O0=function(e){br(t,e);function t(n){wr(this,t);var r;r=Fr(this,t,[n]);var u=n.isHide?!1:n.required;return u&&r.push({type:"string",required:u,message:n.requiredMessage!==""?n.requiredMessage:Me.getMessage("runtimeRequired",{caption:n.caption})}),r}return t}(Iu),_r=function(e){br(t,e);function t(n){wr(this,t);var r;r=Fr(this,t,[n]),ue(r,"caption",void 0),ue(r,"captionSize",void 0),ue(r,"captionColor",void 0),ue(r,"isCaptionItalic",void 0),ue(r,"isHideCaption",void 0),ue(r,"isShowCaptionTip",void 0),ue(r,"captionTip",void 0),ue(r,"labelPosition",void 0),ue(r,"dataBind",void 0),ue(r,"defaultValue",void 0),ue(r,"placeholder",void 0),ue(r,"defaultState",void 0),ue(r,"required",void 0),ue(r,"requiredMessage",void 0);var u;r.caption=(u=n==null?void 0:n.caption)!==null&&u!==void 0?u:"";var i;r.captionSize=(i=n==null?void 0:n.captionSize)!==null&&i!==void 0?i:"14";var o;r.captionColor=(o=n==null?void 0:n.captionColor)!==null&&o!==void 0?o:"";var a;r.isCaptionItalic=(a=n==null?void 0:n.isCaptionItalic)!==null&&a!==void 0?a:!1;var s;r.isHideCaption=(s=n==null?void 0:n.isHideCaption)!==null&&s!==void 0?s:!1;var c;r.isShowCaptionTip=(c=n==null?void 0:n.isShowCaptionTip)!==null&&c!==void 0?c:!1;var l;r.captionTip=(l=n==null?void 0:n.captionTip)!==null&&l!==void 0?l:"";var f;r.defaultState=(f=n==null?void 0:n.defaultState)!==null&&f!==void 0?f:"default";var d;r.labelPosition=(d=n==null?void 0:n.labelPosition)!==null&&d!==void 0?d:"top";var p;r.placeholder=(p=n==null?void 0:n.placeholder)!==null&&p!==void 0?p:"";var g;r.required=(g=n==null?void 0:n.required)!==null&&g!==void 0?g:!1;var m;r.requiredMessage=(m=n==null?void 0:n.requiredMessage)!==null&&m!==void 0?m:"",r.dataBind=new ir(n==null?void 0:n.dataBind);var C;return r.defaultValue=(C=n==null?void 0:n.defaultValue)!==null&&C!==void 0?C:"",r}return t}(Ke);ue(_r,"Rules",I0),ue(_r,"RuntimeRules",O0);function x0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function T0(e,t,n){return t=Dn(t),R0(e,Xu()?Reflect.construct(t,n||[],Dn(e).constructor):t.apply(e,n))}function P0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Dn(e){return Dn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Dn(e)}function $0(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Sr(e,t)}function R0(e,t){return t&&(j0(t)==="object"||typeof t=="function")?t:x0(e)}function Sr(e,t){return Sr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Sr(e,t)}function j0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Xu(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Xu=function(){return!!e})()}var Ku=function(e){$0(t,e);function t(n){P0(this,t);var r;return r=T0(this,t,[n]),pn(r,"controlType","form"),pn(r,"props",void 0),r.props=new _r(n==null?void 0:n.props),r}return t}(Ce);pn(Ku,"controlEventKeys",["on_change","on_focus","on_blur"]),pn(Ku,"controlCustomAttributes",void 0);function k0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function L0(e,t,n){return t=gn(t),V0(e,Qu()?Reflect.construct(t,n||[],gn(e).constructor):t.apply(e,n))}function q0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function gn(e){return gn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},gn(e)}function U0(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Mr(e,t)}function V0(e,t){return t&&(H0(t)==="object"||typeof t=="function")?t:k0(e)}function Mr(e,t){return Mr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Mr(e,t)}function H0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Qu(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Qu=function(){return!!e})()}var z0=function(e){U0(t,e);function t(n){return q0(this,t),L0(this,t,[n])}return t}(Ke);function Nr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function W0(e){if(Array.isArray(e))return Nr(e)}function G0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Yu(e,t,n,r,u,i,o){try{var a=e[i](o),s=a.value}catch(c){n(c);return}a.done?t(s):Promise.resolve(s).then(r,u)}function Z0(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){Yu(i,r,u,o,a,"next",s)}function a(s){Yu(i,r,u,o,a,"throw",s)}o(void 0)})}}function J0(e,t,n){return t=at(t),id(e,ni()?Reflect.construct(t,n||[],at(e).constructor):t.apply(e,n))}function X0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ei(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function K0(e,t,n){return t&&ei(e.prototype,t),n&&ei(e,n),e}function ot(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ft(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?Ft=Reflect.get:Ft=function(u,i,o){var a=od(u,i);if(!!a){var s=Object.getOwnPropertyDescriptor(a,i);return s.get?s.get.call(o||u):s.value}},Ft(e,t,n||e)}function at(e){return at=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},at(e)}function Q0(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ir(e,t)}function Y0(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function ed(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function td(){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 nd(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){ot(e,u,n[u])})}return e}function rd(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function ud(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):rd(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function id(e,t){return t&&(ad(t)==="object"||typeof t=="function")?t:G0(e)}function Ir(e,t){return Ir=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ir(e,t)}function od(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=at(e),e!==null););return e}function ti(e){return W0(e)||ed(e)||sd(e)||td()}function ad(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function sd(e,t){if(!!e){if(typeof e=="string")return Nr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Nr(e,t)}}function ni(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(ni=function(){return!!e})()}function cd(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=a(0),o.throw=a(1),o.return=a(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(c){return function(l){return s([c,l])}}function s(c){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,c[0]&&(i=0)),i;)try{if(n=1,r&&(u=c[0]&2?r.return:c[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,c[1])).done)return u;switch(r=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return i.label++,{value:c[1],done:!1};case 5:i.label++,r=c[1],c=[0];continue;case 7:c=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){i.label=c[1];break}if(c[0]===6&&i.label<u[1]){i.label=u[1],u=c;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(c);break}u[2]&&i.ops.pop(),i.trys.pop();continue}c=t.call(e,i)}catch(l){c=[6,l],r=0}finally{n=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}var ld=1e4,ri=function(t){Q0(n,t);function n(r){X0(this,n);var u;u=J0(this,n,[r]),ot(u,"controlType","layout"),ot(u,"children",void 0),ot(u,"excludes",void 0),ot(u,"childrenMaxLength",void 0),ot(u,"props",void 0);var i=Y0(this,n)?this.constructor:void 0,o=i.excludes,a=i.childrenMaxLength;return u.props=new z0(r==null?void 0:r.props),ur(u,"children",r==null?void 0:r.children,void 0,"Designer"),u.excludes=ee(o),u.childrenMaxLength=a,u}return K0(n,[{key:"judgeExcludesChildren",value:function(u){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(u)}},{key:"judgeJoinChildren",value:function(u){var i=this.judgeExcludesChildren(u);return i&&this.childrenMaxLength>this.children.length}},{key:"validate",value:function(u,i){var o=this,a=this,s=function(){return Ft(at(n.prototype),"validate",o)};return Z0(function(){return cd(this,function(c){switch(c.label){case 0:return[4,s().call(a,u,i)];case 1:return c.sent(),[4,Promise.all(this.children.map(function(l){return l.validate(u,i)}))];case 2:return c.sent(),[2,!0]}})}).call(this)}},{key:"toDataBindModel",value:function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=Ft(at(n.prototype),"toDataBindModel",this).call(this),o=i?[i]:[];return this.children.reduce(function(a,s){var c=s.toDataBindModel(u);if(Array.isArray(c)){var l=c.filter(function(f){return!!f});return ti(a).concat(ti(l))}return c&&a.push(c),a},o)}},{key:"toSchema",value:function(){var u=Ft(at(n.prototype),"toSchema",this).call(this),i=this.children.map(function(o){var a=o.toSchema();return a});return ud(nd({},u),{children:i})}}]),n}(Ce);ot(ri,"excludes",!1),ot(ri,"childrenMaxLength",ld);function fd(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dd(e,t,n){return t=mn(t),Dd(e,ui()?Reflect.construct(t,n||[],mn(e).constructor):t.apply(e,n))}function hd(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function wt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function mn(e){return mn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},mn(e)}function pd(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Or(e,t)}function Dd(e,t){return t&&(gd(t)==="object"||typeof t=="function")?t:fd(e)}function Or(e,t){return Or=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Or(e,t)}function gd(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ui(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(ui=function(){return!!e})()}var md=function(e){pd(t,e);function t(n,r,u){hd(this,t);var i;i=dd(this,t,[r]),wt(i,"headers",void 0),wt(i,"footers",void 0),wt(i,"pageIndex",void 0),wt(i,"pageSize",void 0),wt(i,"pageSizeOptions",void 0),wt(i,"totalCount",void 0),ur(i,"headers",r==null?void 0:r.headers,n,u),ur(i,"footers",r==null?void 0:r.footers,n);var o;i.pageIndex=(o=r==null?void 0:r.pageIndex)!==null&&o!==void 0?o:1;var a;i.pageSize=(a=r==null?void 0:r.pageSize)!==null&&a!==void 0?a:20;var s;i.pageSizeOptions=(s=r==null?void 0:r.pageSizeOptions)!==null&&s!==void 0?s:[20];var c;return i.totalCount=(c=r==null?void 0:r.totalCount)!==null&&c!==void 0?c:0,i}return t}(Ke);function xr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function yd(e){if(Array.isArray(e))return xr(e)}function vd(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ii(e,t,n,r,u,i,o){try{var a=e[i](o),s=a.value}catch(c){n(c);return}a.done?t(s):Promise.resolve(s).then(r,u)}function Ed(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){ii(i,r,u,o,a,"next",s)}function a(s){ii(i,r,u,o,a,"throw",s)}o(void 0)})}}function Ad(e,t,n){return t=st(t),Sd(e,li()?Reflect.construct(t,n||[],st(e).constructor):t.apply(e,n))}function Cd(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function oi(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Fd(e,t,n){return t&&oi(e.prototype,t),n&&oi(e,n),e}function yn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function bt(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?bt=Reflect.get:bt=function(u,i,o){var a=Md(u,i);if(!!a){var s=Object.getOwnPropertyDescriptor(a,i);return s.get?s.get.call(o||u):s.value}},bt(e,t,n||e)}function st(e){return st=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},st(e)}function wd(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Tr(e,t)}function bd(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Bd(){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 ai(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){yn(e,u,n[u])})}return e}function _d(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function si(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):_d(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Sd(e,t){return t&&(Nd(t)==="object"||typeof t=="function")?t:vd(e)}function Tr(e,t){return Tr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Tr(e,t)}function Md(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=st(e),e!==null););return e}function ci(e){return yd(e)||bd(e)||Id(e)||Bd()}function Nd(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Id(e,t){if(!!e){if(typeof e=="string")return xr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return xr(e,t)}}function li(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(li=function(){return!!e})()}function Od(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=a(0),o.throw=a(1),o.return=a(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(c){return function(l){return s([c,l])}}function s(c){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,c[0]&&(i=0)),i;)try{if(n=1,r&&(u=c[0]&2?r.return:c[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,c[1])).done)return u;switch(r=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return i.label++,{value:c[1],done:!1};case 5:i.label++,r=c[1],c=[0];continue;case 7:c=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){i.label=c[1];break}if(c[0]===6&&i.label<u[1]){i.label=u[1],u=c;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(c);break}u[2]&&i.ops.pop(),i.trys.pop();continue}c=t.call(e,i)}catch(l){c=[6,l],r=0}finally{n=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}var xd=function(e){wd(t,e);function t(n){Cd(this,t);var r;return r=Ad(this,t,[n]),yn(r,"controlType","list"),yn(r,"props",void 0),r.props=new md(r,n==null?void 0:n.props,"Designer"),r}return Fd(t,[{key:"validate",value:function(r,u){var i=this,o=this,a=function(){return bt(st(t.prototype),"validate",i)};return Ed(function(){return Od(this,function(s){switch(s.label){case 0:return[4,a().call(o,r)];case 1:return s.sent(),[4,Promise.all(this.props.headers.map(function(c){return c.validate(r,u)}))];case 2:return s.sent(),[2,!0]}})}).call(this)}},{key:"toDataBindModel",value:function(){var r=bt(st(t.prototype),"toDataBindModel",this).call(this),u=r?[r]:[],i=this.id;return this.props.headers.reduce(function(o,a){var s=a.toDataBindModel(i);if(Array.isArray(s)){var c=s.filter(function(l){return!!l});return ci(o).concat(ci(c))}return s&&o.push(s),o},u)}},{key:"toSchema",value:function(){var r,u,i=bt(st(t.prototype),"toSchema",this).call(this),o=this.props.headers.map(function(s){return s.toSchema()}),a=(u=this.props)===null||u===void 0||(r=u.footers)===null||r===void 0?void 0:r.map(function(s){if(s)return s.toSchema()});return si(ai({},i),{props:si(ai({},this.props),{headers:o,footers:a})})}}]),t}(Ce);yn(xd,"controlFieldType",le.LIST);function Td(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function fi(e,t,n){return t=vn(t),Pd(e,pi()?Reflect.construct(t,n||[],vn(e).constructor):t.apply(e,n))}function di(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Fe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function vn(e){return vn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},vn(e)}function hi(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Pr(e,t)}function Pd(e,t){return t&&($d(t)==="object"||typeof t=="function")?t:Td(e)}function Pr(e,t){return Pr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Pr(e,t)}function $d(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function pi(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(pi=function(){return!!e})()}var Rd=function(e){hi(t,e);function t(n){di(this,t);var r;return r=fi(this,t,[n]),Fe(r,"caption",{type:"string",required:!0,message:Me.getMessage("pleaseEnterCaption")}),Fe(r,"width",{type:"number",required:!1,message:Me.getMessage("pleaseEnterColumnWidth")}),r.width.required=n.widthType==="px",r}return t}(hr),jd=function(e){hi(t,e);function t(n){di(this,t);var r;r=fi(this,t,[n]),Fe(r,"widthType",void 0),Fe(r,"width",void 0),Fe(r,"caption",void 0),Fe(r,"dataBind",void 0),Fe(r,"autoWidth",void 0),Fe(r,"fixed",void 0),Fe(r,"sort",void 0),Fe(r,"align",void 0),Fe(r,"colSpan",void 0),Fe(r,"autoHeight",void 0),Fe(r,"children",void 0);var u;r.width=(u=n==null?void 0:n.width)!==null&&u!==void 0?u:150,r.widthType=(n==null?void 0:n.widthType)||"auto";var i;r.caption=(i=n==null?void 0:n.caption)!==null&&i!==void 0?i:"";var o;r.fixed=(o=n==null?void 0:n.fixed)!==null&&o!==void 0?o:"none",r.autoWidth=new If(n==null?void 0:n.autoWidth),r.dataBind=new ir(n==null?void 0:n.dataBind);var a;r.sort=(a=n==null?void 0:n.sort)!==null&&a!==void 0?a:!0,r.align=n==null?void 0:n.align,r.colSpan=n==null?void 0:n.colSpan;var s;return r.autoHeight=(s=n==null?void 0:n.autoHeight)!==null&&s!==void 0?s:!1,r}return t}(Ke);Fe(jd,"Rules",Rd);function En(e){return e.controlType===Z.LAYOUT||e.controlType===Z.WRAP||e.controlType===Z.LIST||e.controlType===Z.SEARCH||e.controlType===Z.COLUMN&&e.type!==oe.OPERATION_COLUMN}function gt(e,t){Array.isArray(e)&&e.map(n=>{n.type===oe.SUBTABLE?t(n,[]):En(n)?gt(n==null?void 0:n.children,t):n.controlType===Z.FORM&&t(n)})}function mt(e,t){Array.isArray(e)&&e.map(n=>{n.type===oe.DATA_VIEW||n.type===oe.SIMPLE_SEARCH?t(n):En(n)&&mt(n==null?void 0:n.children,t)})}let Di=0;function Zt(e=""){const t=Date.now(),n=Math.floor(Math.random()*1e9);return Di++,e+"_"+n+Di+String(t)}class ve extends Ut{constructor(t){super("Runtime"),this._flatInstances=[],this._instanceMap={},this._controlParentIdMap={};const{schema:n}=t;this._schema=n,this._instance=this.createControl(n,t.beforeCreateInstance),this.getFlatInstances()}getFlatInstances(){const t=[],n={},r={};return An(this._instance,"",(u,i)=>{i&&(r[u.id]=i),n[u.id]||(n[u.id]=[]),!(u.type==="subtable-column"&&n[u.id].length>0)&&(t.push(u),n[u.id].push(u))}),this._flatInstances=t,this._instanceMap=n,this._controlParentIdMap=r,this._flatInstances}get schema(){return this._schema}get instance(){return this._instance}get flatInstances(){return this._flatInstances}get instanceMap(){return this._instanceMap}get allRules(){let t={},n={},r={};return mt(this._instance,u=>{let i=ve.staticGetRules(u.type,u.props);n[u.id]=ee(i[0]),t[u.id]=ee(i[0]),r[u.id]=ee(i[0]),gt(u.children,o=>{(o.controlType===Z.FORM||o.controlType===Z.LIST)&&(mi(n[u.id].fields,o,!0),Ei(t[u.id].fields,o,!0),yi(r[u.id].fields,o,!0))})}),{rules:this.rules,antdRules:this.antdRules,fieldCodeRules:this.fieldCodeRules,defaultAntdRules:t,defaultRule:n,defaultFieldRules:r}}get rules(){let t={};return mt(this._instance,n=>{let r=ve.staticGetRules(n.type,n.props);t[n.id]=r[0],gt(n.children,u=>{(u.controlType===Z.FORM||u.controlType===Z.LIST)&&mi(t[n.id].fields,u)})}),t}get fieldCodeRules(){let t={};return mt(this._instance,n=>{let r=ve.staticGetRules(n.type,n.props);t[n.id]=r[0],gt(n.children,u=>{(u.controlType===Z.FORM||u.controlType===Z.LIST)&&yi(t[n.id].fields,u)})}),t}get antdRules(){let t={};return mt(this._instance,n=>{let r=ve.staticGetRules(n.type,n.props);t[n.id]=r[0],gt(n.children,u=>{(u.controlType===Z.FORM||u.controlType===Z.LIST)&&Ei(t[n.id].fields,u)})}),t}}function An(e,t,n){(Array.isArray(e)?e:[e]).map(u=>{if(n(u,t),En(u)){const i=u;i.children||(i.children=[]),An(i.children,i.id,n)}gi(u,"headers")&&An(u.props.headers,u.id,n),gi(u,"footers")&&An(u.props.footers,u.id,n)})}function gi(e,t){return t in e.props&&pt(e.props[t])}function Cn(e){return e.props.isHide?!0:e.parent===null||e.parent===void 0?!1:Cn(e.parent)}function mi(e,t,n=!1){if(Cn(t))return;let r=ve.staticGetRules(t.type,t.props);if(t.controlType===Z.FORM)e[t.id]=r;else if(t.type===oe.SUBTABLE){e[t.id]=r;const u={type:"array",fields:{}};(n===!0?[{children:t.props.headers}]:t.children).forEach((i,o)=>{Xe(i.children,a=>{if(u.fields){u.fields[o]||(u.fields[o]={type:"object",required:!0,fields:{}});let s=ve.staticGetRules(a.type,a.props);u.fields[o].fields[a.id]=s}})}),e[t.id].push(u)}}function yi(e,t,n=!1){var u,i,o,a,s,c,l;if(Cn(t))return;let r=ve.staticGetRules(t.type,t.props);if(t.controlType===Z.FORM)if(Oe(t.props.dataBind))((u=t.props.dataBind)==null?void 0:u.fieldCode)!=""&&(e[(i=t.props.dataBind)==null?void 0:i.fieldCode]=r);else for(const f in t.props.dataBind)((o=t.props.dataBind[f])==null?void 0:o.fieldCode)!=""&&(e[(a=t.props.dataBind[f])==null?void 0:a.fieldCode]=((s=vi(r))==null?void 0:s[f])||[]);else if(t.type===oe.SUBTABLE){e[(c=t.props.datasourceBind)==null?void 0:c.dataCode]=r;const f={type:"array",fields:{}};(n===!0?[{children:t.props.headers}]:t.children).forEach((d,p)=>{Xe(d.children,g=>{var m,C,h,y;if(f.fields){f.fields[p]||(f.fields[p]={type:"object",required:!0,fields:{}});let E=ve.staticGetRules(g.type,g.props);if(Oe(g.props.dataBind))((h=g.props.dataBind)==null?void 0:h.fieldCode)!=""&&(f.fields[p].fields[(y=g.props.dataBind)==null?void 0:y.fieldCode]=E);else for(const A in g.props.dataBind)((m=g.props.dataBind[A])==null?void 0:m.fieldCode)!=""&&(f.fields[p].fields[g.props.dataBind[A].fieldCode]=((C=vi(E))==null?void 0:C[A])||[])}})}),e[(l=t.props.datasourceBind)==null?void 0:l.dataCode].push(f)}}function vi(e){let t={};return e.map(n=>{n.fields&&(t=n)}),t==null?void 0:t.fields}function Ei(e,t,n=!1){if(Cn(t))return;let r=ve.staticGetRules(t.type,t.props);t.controlType===Z.FORM?e[t.id]=r:t.type===oe.SUBTABLE&&t.children.length&&(e[t.id]=[],(n===!0?[{children:t.props.headers}]:t.children).forEach(u=>{let i={};Xe(u.children,o=>{let a=ve.staticGetRules(o.type,o.props);i[o.id]=a}),e[t.id].push(i)}))}class kd{constructor(t){const{state:n,emptyState:r,databindMapping:u,controlidMapping:i,defaultState:o,subtableHeadersControlIdMapping:a}=Ld(t.instance);this.emptyState=r,this.state=n,this.dataBindMapping=u,this.controlIdMapping=i,this.defaultState=o,this.subtableHeadersControlIdMapping=a}setState(t,n,r){const u=this.controlIdMapping[t],i=ee(n);u!==void 0?(u.children&&n.forEach(o=>{o.uid||Object.assign(o,{uid:"new:"+Zt("uid")})}),this.state[u.dataView][t]=i):r!==void 0?Object.keys(this.controlIdMapping).map(o=>{const a=this.controlIdMapping[o].dataView,s=this.controlIdMapping[o].children;s!==void 0&&Object.keys(s).map(c=>{c===t&&this.state[a][o][r]&&(this.state[a][o][r][t]=i)})}):this.state[t]=i}getState(t,n){var u;if(this.state[t]!==void 0)return this.state[t];{const i=this.controlIdMapping[t];if(i!==void 0){const o=this.state[i.dataView][t];return n!==void 0&&Object.keys((u=i==null?void 0:i.children)!=null?u:{}).length>0?o[n]:o}else if(n!==void 0){let o;return Object.keys(this.controlIdMapping).map(a=>{const s=this.controlIdMapping[a].dataView,c=this.controlIdMapping[a].children;c!==void 0&&Object.keys(c).map(l=>{var f;l===t&&(o=(f=this.state[s][a][n])==null?void 0:f[t])})}),o}else{let o=[];return Object.keys(this.controlIdMapping).map(a=>{const s=this.controlIdMapping[a].dataView,c=this.controlIdMapping[a].children;c!==void 0&&Object.keys(c).map(l=>{l===t&&this.state[s][a].map(f=>{o.push(f[t])})})}),o}}}getEmptyState(t){if(this.emptyState[t]!==void 0)return this.emptyState[t];{const r=this.controlIdMapping[t];if(r!==void 0){const u=this.emptyState[r.dataView][t];return"children"in r&&Object.assign(u,{uid:"new:"+Zt("uid")}),u}else{let u;return Object.keys(this.controlIdMapping).map(i=>{const o=this.controlIdMapping[i].dataView,a=this.controlIdMapping[i].children;a!==void 0&&Object.keys(a).map(s=>{s===t&&(u=this.emptyState[o][i][t])})}),u}}}getDataBind(t){let n=this.controlIdMapping[t];if(n)return n.dataBind;e:for(let r in this.controlIdMapping){const u=this.controlIdMapping[r];if(u.children){for(let i in u.children)if(i===t){n=u.children[i];break e}}}return n==null?void 0:n.dataBind}}function Ld(e){let t={},n={},r={},u={},i={},o={};return mt(e,a=>{const s=a.id,c={},l={};gt([a],(f,d)=>{qd(c,l,f),Ud(r,s,f),Vd(u,s,f),Hd(i,f)}),t[s]={},o[s]=c,n[s]=l}),{state:t,defaultState:o,subtableHeadersControlIdMapping:i,emptyState:n,databindMapping:r,controlidMapping:u}}function qd(e,t,n){var r,u;if(n.controlType===Z.FORM)e[n.id]=ee(n.props.defaultValue),t[n.id]=ee(n.props.defaultValue);else{const i={};Xe(n.props.headers,o=>{i[o.id]=ee(o.props.defaultValue)}),e[n.id]=(u=new Array((r=n.props.defaultRows)!=null?r:1).fill(0).map(()=>ae({uid:"new:"+Zt("uid")},ee(i))))!=null?u:[],t[n.id]=i}}function Ud(e,t,n){var r,u;if(n.controlType===Z.FORM)Oe(n.props.dataBind)?((u=(r=n.props)==null?void 0:r.dataBind)==null?void 0:u.dataCode)===void 0||(e[n.props.dataBind.dataCode]===void 0&&(e[n.props.dataBind.dataCode]={controlId:t,fields:[],dataViewId:t}),e[n.props.dataBind.dataCode].fields.push({fieldCode:n.props.dataBind.fieldCode,controlId:n.id,dataBind:n.props.dataBind,dataViewId:[t]})):Object.keys(n.props.dataBind).map(i=>{const o=n.props.dataBind,a=o[i].dataCode;a!==void 0&&(e[a]===void 0&&(e[a]={controlId:n.id,fields:[],dataViewId:t}),e[a].fields.push({fieldCode:o[i].fieldCode,controlId:n.id,dataBind:o,dataViewId:[t]}))});else{if(n.props.datasourceBind.dataCode===""){tt(`datasourceBind.dataCode is empty! maybe in preview mode, control:${n.id} type:${n.type}`);return}e[n.props.datasourceBind.dataCode]={controlId:n.id,fields:[],dataViewId:t};const i=n.id;Xe(n.props.headers,o=>{Oe(o.props.dataBind)?(e[o.props.dataBind.dataCode]===void 0&&(e[o.props.dataBind.dataCode]={controlId:t,fields:[],dataViewId:t}),e[o.props.dataBind.dataCode].fields.push({fieldCode:o.props.dataBind.fieldCode,controlId:o.id,dataBind:o.props.dataBind,dataViewId:[t,i]})):Object.keys(o.props.dataBind).map(a=>{const s=o.props.dataBind,c=s[a].dataCode;e[c].fields.push({fieldCode:s[a].fieldCode,controlId:o.id,dataBind:s,dataViewId:[t,i]})})})}}function Vd(e,t,n){n.controlType===Z.FORM?e[n.id]={dataBind:n.props.dataBind,options:[],dataView:t}:n.type===oe.SUBTABLE&&(e[n.id]={dataBind:new ir({dataCode:n.props.datasourceBind.dataCode,fieldCode:""}),dataView:t,children:{},options:[]},Xe(n.props.headers,r=>{var u,i;Object.assign((i=(u=e[n.id])==null?void 0:u.children)!=null?i:{},{[r.id]:{dataBind:r.props.dataBind}})}))}function Hd(e,t){if(t.type===oe.SUBTABLE){const n={};t.props.headers.map(r=>{r.children.map(u=>{Object.assign(n,{[u.id]:u})})}),Object.assign(e,{[t.id]:n})}}const Ai=["splice","push","shift","pop","unshift","reverse"],$r=Symbol("__engineProxy__"),Rr=Symbol("__engineTarget__"),Ci=Symbol("__engineArrayBeforeSetCallbackFlag__"),Fi=Symbol("__engineProxyThisKey__"),je={type:"",args:[],callback:wi};function wi(){}Jd();function zd(e,t,n,r,u){if(je.type){je.callback=u.bind(null,e,r);return}const i=Number(t);if(i>e.length){Je(`Wrong array operations may cause unknown errors. It is recommended to use APIs such as ${Ai.join(",")} for array operations`);return}if(!(Number.isNaN(i)&&t!=="length"))if(t==="length"){const a=n,s=e.length;if(a>e.length){Je("Do not directly modify the length of the array data, please add new rows");return}return a===e.length?void 0:()=>u.call(null,e,r,"splice",[a,s-a])}else return i===e.length?()=>u.call(null,e,r,"push",[n]):()=>u.call(null,e,r,"splice",[i,1,n])}function Wd(e,t,n){return{__engineProxy__:!0,get(r,u,i){return u===$r?!0:u===Rr?r:Array.isArray(r)&&u===Ci?n:u===Fi?e:Reflect.get(r,u,i)},set(r,u,i,o){var d;let a=ee(i);const s=r[u],c=e===""?u:e+"."+u;function l(p){if(typeof p=="object"&&p!==null)return p[$r]!==!0?Fn(p,t,n,c):Fn(p[Rr],t,n,c)}a=(d=l(a))!=null?d:a;let f;if(Array.isArray(r)){const p=zd(r,u,a,e,t);f=Reflect.set(r,u,a,o),p&&p()}else{try{let p=a;if(a=n.call(null,r,c,a,s),p!==a){const g=l(a);g!==void 0&&(a=g)}}catch(p){return an(`${c} set error ${p}`),!0}f=Reflect.set(r,u,a,o),t.call(null,r,c,a,s)}return f||!0}}}function Fn(e,t,n,r=""){if(Object.isFrozen(e))return e;for(let u in e){const i=r===""?u:r+"."+u,o=e[u];typeof o=="object"&&o!==null&&(e[u]=Fn(o,t,n,i))}return new Proxy(e,Wd(r,t,n))}function jr(e,t){if(e==="")return{instance:void 0,rowIndex:void 0};var n=e.split(".");if(n.length===0)return{instance:void 0,rowIndex:void 0};const r=n.filter(s=>!isNaN(s)).at(-1),u=r?n.lastIndexOf(r):-1;let i,o;return u>-1?(i=Number(n[u]),o=n==null?void 0:n[u+1]):o=n[1],{instance:t.getInstance(o,i),rowIndex:i}}function Gd(e,t){return["push","unshift"].includes(e)?t:e==="splice"?t.slice(2):[]}function Zd(e,t,n){if(["push","unshift"].includes(e))return n;if(e==="splice")return t.slice(0,2).concat(n)}function Jd(){Ai.forEach(e=>{const t=Array.prototype[e];Array.prototype[e]=function(...n){var r;if(this[$r]){let u;const i=Gd(e,n);if(i.length){const o=(r=this[Ci])==null?void 0:r.call(this,this[Rr],this[Fi],i),a=Zd(e,n,o);je.type=e,je.args=a,u=t.apply(this,a)}else je.type=e,je.args=n,u=t.apply(this,n);return typeof je.callback=="function"&&je.callback(e,n,u),je.type="",je.args=[],je.callback=wi,u}else return t.apply(this,n)}})}class Xd{constructor(){this.actionMap=new Map,this.buildinActions={},this.actionUtils={},this.sources={}}execAction(t,n,...r){return We(this,null,function*(){const u=this.actionMap.get(t);if(!!u)try{return yield u.func.call(null,n,...r)}catch(i){return an(`${u.id} Exception during calling action: ${i}`),!1}})}addAction(t,n){this.actionMap.has(t)&&Je("duplicated action key");const r=new Kd(t,n);this.actionMap.set(t,r)}}class Kd{constructor(t,n){this.id="",this.id=t,this.func=n}}class Qd{constructor(t){this._dataStore=new Map,this.executer=t}add(t,n){this._dataStore.set(t,n)}get(t){let n=this._dataStore.get(t);return ee(n)}remove(t){this._dataStore.delete(t)}getRemoteData(t){return We(this,null,function*(){return this.executer===void 0?(an("\u672A\u521D\u59CB\u5316executer"),[]):this.executer(t)})}}class ct{}class Jt extends ct{validate(t){return Ae(t)}transform(t){if(t==null)return"";if(!Re(t)&&!gu(t))return String(t);if(sf(t))return JSON.stringify(t);throw`${t} is not a string`}}class kr extends ct{validate(t){return sn(t)||t===""}transform(t){if(t==null)return"";const n=!Re(t)&&!gu(t)?Number(t):void 0;if(!Number.isNaN(n)&&n!==void 0)return n;throw`${t} is not a number`}}class Yd extends ct{validate(t){return cf(t)}transform(t){if(t==null)return[];function n(r){return r.map(u=>u?String(u):"")}if(pt(t))return n(t);if(Ae(t)&&mu(t))try{const r=JSON.parse(t);if(Array.isArray(r))return n(r)}catch(r){}return[String(t)]}}class eh extends ct{validate(t){return lf(t)}transform(t){if(t==null)return[];function n(u){return u.map(i=>!i&&i!==0?"":Number(i)).filter(i=>i===""||!Number.isNaN(i))}if(pt(t))return n(t);if(Ae(t)&&mu(t))try{const u=JSON.parse(t);if(pt(u))return n(u)}catch(u){}const r=Number(t);if(Number.isNaN(r))throw`${t} is not a number array`;return[r]}}class th extends ct{validate(t){return Re(t)&&"amount"in t&&sn(t.amount)&&"currency"in t&&Ae(t.currency)}transform(t,n){if(t==null||t==="")return new or({currency:n==null?void 0:n.currency});let r;if(Re(t)&&(r=new or(ae(ae({},n),t))),Ae(t)&&cn(t))try{const u=JSON.parse(t);r=new or(ae(ae({},n),u))}catch(u){}if(r){const u=new kr,i=new Jt;return u.validate(r.amount)||(r.amount=u.transform(r.amount)),i.validate(r.currency)||(r.currency=i.transform(r.currency)),r}throw`${t} is not a { amount: number, currency: string } object`}}class nh extends ct{validate(t){return Re(t)&&"min"in t&&Ae(t.min)&&"max"in t&&Ae(t.max)}transform(t,n){if(t==null||t==="")return new ar;let r;if(Re(t)&&(r=new ar(ae(ae({},n),t))),Ae(t)&&cn(t))try{const u=JSON.parse(t);r=new ar(ae(ae({},n),u))}catch(u){}if(r){const u=new Jt;return u.validate(r.min)||(r.min=u.transform(r.min)),u.validate(r.max)||(r.max=u.transform(r.max)),r}throw`${t} is not a { min: string, max: string } object`}}class rh extends ct{validate(t){return Re(t)&&"result"in t&&sn(t.result)&&"unit"in t&&Ae(t.unit)}transform(t,n){if(t==null||t==="")return new cr({unit:n==null?void 0:n.unit});let r;if(Re(t)&&(r=new cr(ae(ae({},n),t))),Ae(t)&&cn(t))try{const u=JSON.parse(t);r=new cr(ae(ae({},n),u))}catch(u){}if(r){const u=new kr,i=new Jt;return u.validate(r.result)||(r.result=u.transform(r.result)),i.validate(r.unit)||(r.unit=i.transform(r.unit)),r}throw`${t} is not a { result: string, unit: string } object`}}class uh extends ct{validate(t){return!!Re(t)}transform(t,n){if(t==null||t==="")return new sr;let r;if(Re(t)&&(r=new sr(ae(ae({},n),Qn.exports.camelizeKeys(t)))),Ae(t)&&cn(t))try{const u=JSON.parse(t);r=new sr(ae(ae({},n),Qn.exports.camelizeKeys(u)))}catch(u){}if(r){const u=new Jt;return u.validate(r.city)||(r.city=u.transform(r.city)),u.validate(r.district)||(r.district=u.transform(r.district)),u.validate(r.province)||(r.province=u.transform(r.province)),r}throw`${t} is not a { city: string, district: string, province: string } object`}}class ih{static getValueChecker(t){let n;switch(t){case le.VARCHAR:case le.TIMESTAMP:case le.TEXT:case le.RELATION:case le.AUTO_NUMBER:n=new Jt;break;case le.DECIMAL:n=new kr;break;case le.EMPLOYEES:case le.DEPARTMENTS:case le.IMAGE:case le.FILE:case le.ARRAY:n=new Yd;break;case le.MONEY:n=new th;break;case le.TIMESCOPE:n=new nh;break;case le.CALC:n=new rh;break;case le.DECIMAL_RANGE:n=new eh;break;case le.ADDRESS:n=new uh;break}return n}}function oh(e){if(["min","max","currency","unit"].includes(e))return le.VARCHAR;if(["result","amount"].includes(e))return le.DECIMAL}function bi(e,t,n,r){var o;let u=(o=oh(t))!=null?o:e,i=ih.getValueChecker(u);if(!i||i.validate(n))return n;try{const a=i.transform(n,r);return a!==void 0?a:n}catch(a){throw`${t} ${a}`}}function ah(e,t,n){return Object.entries(e).reduce((r,[u,i])=>{const o=t[u];return r[u]=bi(i,u,o,n[u]),r},Object.assign({},t))}typeof window!="undefined"&&(window.engines={});let Bt=null,Xt="";class Lr extends Au{constructor(t){super(),this.rawStore={},this.isMounted=!1,this.id=un(8),this.__pluginsApplied=!1,this.actionManager=new Xd,this._jobTasks=[],this.createControlInstance=this.createInstance,this.$options=Object.freeze(t);const{autoMount:n=!0,schema:r,beforeCreateInstance:u,externalParams:i,language:o=iu,debug:a=!1}=this.$options;Me.setLocale(o),this.debug=a,this.runtime=new ve({schema:r,beforeCreateInstance:u}),this.externalParams=i,this.store=new kd({instance:this.runtime.instance}),this.debugLog("engine is Instantiation complete"),n&&this.mount()}debugLog(...t){this.debug&&Jn(...t)}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}registerControl(...t){return this.runtime.register(...t),this}static register(t){return ve.register(t,"Runtime")}static judgeControlIsRegistered(t){return ve.staticRegisteredTypes.has(t.Runtime.controlType)}mount(){this.debugLog("engine\u7684mount\u65B9\u6CD5\u5F00\u59CB\u8C03\u7528");const{plugins:t=[]}=this.$options;this._handlerProxyState(),this.__plugins=t,this.applyPlugins(),this.setStates(this.getState()),this.debugLog("engine\u7684mount\u65B9\u6CD5\u8C03\u7528\u7ED3\u675F"),this.debug&&typeof window!="undefined"&&(window.engines[this.id]=this)}destroy(){this.debug&&typeof window!="undefined"&&delete window.engines[this.id]}_handlerProxyState(){this.store.state=Fn(this.store.state,this._proxyStateCallback.bind(this),this._proxyStateBeforeSetCallback.bind(this))}_proxyStateBeforeSetCallback(t,n,r,u){const{instance:i,rowIndex:o}=jr(n,this);if(!i)return r;if(this.assertInstance(i,oe.SUBTABLE)){if(r===null)return[];const c=i.props.headers.reduce((f,d)=>{const p=d.children[0];return p&&p.controlType===Z.FORM&&(f[p.id]=p.fieldType),f},{}),l=this.getEmptyState(i.id);return r==null?void 0:r.map(f=>ah(c,f,l))}const a=n.split("."),s=a[a.length-1];try{return bi(i.fieldType,s,r,u)}catch(c){throw tt(`the id=${i.id}'s instance setState error, %o ${c}.`,r),c}}_proxyStateCallback(t,n,r,u,i){Array.isArray(t)?this._handlerArrayUpdate(t,n,r,u,i):this._handlerObjectUpdate(t,n,r,u)}_handlerArrayUpdate(t,n,r,u,i){const a=jr(n,this).instance;if((a==null?void 0:a.controlType)!==Z.LIST)return;const s=g=>{const m=[];for(let C=0;C<g;C++){const h=this.listControlCreateRow(a,"subtable-row");h&&m.push(h)}return m},c=Bt;let l=[],f=[],d=[],p=!1;if(r&&u){switch(r){case"push":case"unshift":const m=u.length;l=s(m),f=u,a.children[r](...l),this.runtime.getFlatInstances();break;case"splice":if(u.length>2){const C=u.length-2,h=u.slice(2);l=s(C),f=h;const y=u[0],E=u[1];a.children[r](y,E,...l),this.runtime.getFlatInstances()}else{const C=u[0],h=u[1];C+h===a.children.length-1&&(p=!0),a.children[r](...u),this.runtime.getFlatInstances()}break;default:a.children[r](...u),this.runtime.getFlatInstances();break}r==="splice"?d=i:["pop","shift"].includes(r)&&(d=[i]);const g=this.getState(a.id);this._handlerSubtableUpdateUid(g),this.emit("list-change",{instance:a,value:g,options:Object.assign({},c,{changed:l,data:f,deleted:d!=null?d:[],jsonValue:JSON.stringify(g),isDeleteLastOne:p,type:r,args:u})}),Bt=null}}_handlerSubtableUpdateUid(t){t.forEach(n=>{n.uid||Object.assign(n,{uid:"new:"+Zt("uid")})})}_handlerObjectUpdate(t,n,r,u){const{instance:i,rowIndex:o}=jr(n,this);if(!i)return;const a=o,s=Bt||{};if(i.controlType===Z.LIST&&i.type===oe.SUBTABLE){i.children.length=0;const c=r;let l=[];for(let d=0;d<c.length;d++){const p=this.listControlCreateRow(i,"subtable-row");p&&l.push(p)}i.children.push(...l),this.runtime.getFlatInstances();let f=u!=null?u:[];(s==null?void 0:s.setData)===!0&&(f=[]),this._handlerSubtableUpdateUid(c),this.emit("list-change",{instance:i,value:r,options:uu(ae({},s),{changed:l,data:c,deleted:f,type:"push",jsonValue:JSON.stringify(c)})})}else this.emit("change",{instance:i,value:this.getState(i.id,a),rowIndex:a,options:uu(ae({},s),{oldValue:u})})}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{Xt=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this)}catch(r){Je(`${Xt} Plugin apply Error
|
|
2
|
-
${r}`)}finally{Xt=""}}),this.__pluginsApplied=!0)}listControlCreateRow(t,n){let r;if(n==="subtable-row"?r={children:[],controlType:Z.LAYOUT,id:un(),type:"subtable-row",props:{caption:"",isHide:!1,style:{height:"",heightConfig:"fill",width:"",widthConfig:"fill"}},fieldType:void 0,customEvents:[],pageStatus:0,rules:[],parent:void 0}:r=this.runtime.createControlInstance(n),!!r){if(r.controlType===Z.LAYOUT){const u=r,i=ee(t.props.headers),o=this.createControl(i);for(let a of o)a.parent||this.runtime.resetInstanceParent(a,u);u.children.push(...o)}return r.parent=t,r}}listControlAddRow(t,n="subtable-row"){const r=this.listControlCreateRow(t,n);!r||t.children.push(r)}emit(t,n){return We(this,null,function*(){if(t==="engine-mounted"){if(this.isMounted)return tt("The engine-mounted life cycle can only be triggered once"),Promise.resolve([]);if(this._jobTasks.length){console.time("engine-mounted need wait");const o=[...this._jobTasks];yield Promise.all(o),console.timeEnd("engine-mounted need wait")}this.isMounted=!0}let r,u;this.isMounted||(u=new Promise(o=>{r=o}),this._jobTasks.push(u));const i=yield Uo(Lr.prototype,this,"emit").call(this,t,n);return r&&u&&(r(),this._jobTasks.splice(this._jobTasks.indexOf(u),1)),i})}on(t,n){return Xt&&(n.applyingPluginName=Xt),super.on(t,n)}createControl(...t){return this.runtime.createControl(...t)}createInstance(t,n){return this.runtime.createControlInstance(t,n)}schemaEvent(t,n){this.emit(t,n)}updateInstanceProps(t,n,r,u){return this.setInstance(t,n,r,u)}getRule(t,n){return ve.staticGetRules(t,n)}getAllRules(t){var r,u;const n=this.runtime.allRules;return t===void 0?n:{rules:(r=n.rules[t])==null?void 0:r.fields,antdRules:(u=n.antdRules[t])==null?void 0:u.fields}}getRules(t,n=!1){var a,s,c,l,f,d,p;const r=this.runtime.rules,u=this.runtime.fieldCodeRules,i=this.store.controlIdMapping,o=n?u:r;if(t===void 0)return n?u:o;{if(t=n?(a=i[t])!=null&&a.children?(s=i[t].dataBind)==null?void 0:s.dataCode:((c=i[t].dataBind)==null?void 0:c.fieldCode)||t:t,t in o)return(l=o[t])==null?void 0:l.fields;let g;for(const m in o)if(t in(((f=o[m])==null?void 0:f.fields)||{})){g=(p=(d=o[m])==null?void 0:d.fields)==null?void 0:p[t];break}return g}}getAntdRules(t){var n;return t===void 0?this.runtime.antdRules:(n=this.runtime.antdRules[t])==null?void 0:n.fields}getState(t,n){return t===void 0?this.store.state:this.store.getState(t,n)}getEmptyState(t){return ee(t===void 0?this.store.emptyState:this.store.getEmptyState(t))}setPayloadOptions(t){Bt=t}setState(t,n,r,u){Bt=u,this.debugLog("[%o]: \u89E6\u53D1setState, \u4FEE\u6539\u7684\u503C\u4E3A%o, rowIndex=%o, options=%o",t,n,r,u),this.store.setState(t,n,r),this.debugLog("[%o]: setState\u5B8C\u6210, \u4FEE\u6539\u7684\u503C\u4E3A%o, rowIndex=%o",t,n,r),Bt=null}setStates(t,n,r){let u=t!=null?t:{};Object.keys(u).forEach(i=>{Object.entries(this.store.controlIdMapping).forEach(([o,a])=>{if(a.dataView===i){const s=u[i][o];s!==void 0&&this.setState(o,s,n,r)}else(o===i||a.children&&a.children[i])&&u[i]!==void 0&&this.setState(i,u[i],n,r)})})}getTitleField(t){const n=Object.values(this.store.state).filter(r=>r.submit_user)[0];return t?n[t]:n}getSystemField(t){var u,i;const n=["creator","process_location","create_time","uid","update_time","process_status","process_instance_id","process_key"],r=((u=this.externalParams)==null?void 0:u.data.data_set.values.filter(o=>n.some(a=>a==o.code)))||[];return t?(i=r.filter(o=>o.code==t)[0])==null?void 0:i.value:r}getField(t,n,r){if(!n){const s=this.getDataBindMapping(t);if(s){const{controlId:c}=s;return this.getState(c)}return}const u=this.getDataBindMapping(t,n);if(!u)return;const{dataBind:i,controlId:o}=u,a=this.getState(o,r);return Oe(i)?a:Object.entries(i).reduce((s,[c,l])=>l.fieldCode===n?s[c]:s,a)}getData(t){var u,i,o,a,s,c,l,f,d;if(!t)return;let n=this.getDataBindMapping(t),r=this.getControlIdMapping();if(n){const{controlId:p}=n,g=this.getField(t);if(Array.isArray(g))return g.map(C=>{var y,E,A,w,M,I;let h={};for(let j in C){const U=(A=(E=(y=r[p])==null?void 0:y.children[j])==null?void 0:E.dataBind)==null?void 0:A.fieldCode;if(U!==""){if(U)h[U]=C[j];else if((w=r[p])!=null&&w.children[j])for(let V in C[j])h[(I=(M=r[p])==null?void 0:M.children[j])==null?void 0:I.dataBind[V].fieldCode]=C[j][V]}}return h});{let m={};for(let C in g)if((i=(u=r[C])==null?void 0:u.dataBind)!=null&&i.fieldCode)m[(o=r[C])==null?void 0:o.dataBind.fieldCode]=g[C];else if((s=(a=r[C])==null?void 0:a.dataBind)!=null&&s.dataCode)Array.isArray(g[C])||(m[(c=r[C])==null?void 0:c.dataBind.dataCode]=(l=g[C])==null?void 0:l.map(h=>{var E,A,w,M,I,j;let y={};for(let U in h){const V=((E=r[C])==null?void 0:E.children)&&U?(I=(M=(w=(A=r[C])==null?void 0:A.children)==null?void 0:w[U])==null?void 0:M.dataBind)==null?void 0:I.fieldCode:"";if(V!=="")if(V)y[V]=h[U];else for(let T in h[U])y[(j=r[C].children[U])==null?void 0:j.dataBind[T].fieldCode]=h[U][T]}return y}));else if(r[C])for(let h in g[C])m[(d=(f=r[C])==null?void 0:f.dataBind[h])==null?void 0:d.fieldCode]=g[C][h];return m}}}setField(t,n,r,u,i){var c;const o=this.getDataBindMapping(t,n);if(!o)return;const{dataBind:a,controlId:s}=o;if(Oe(a))this.setState(s,r,u,i);else{const l=(c=ee(this.getState(s,u)))!=null?c:this.getEmptyState(s),f=Object.entries(a).reduce((d,[p,g])=>(g.fieldCode===n&&(d[p]=r),d),l);this.setState(s,f,u,i)}}setFields(t,n,r,u){const i=this.getDataBindMapping(t);if(!i)return;let o=[];i.fields.forEach(a=>{var f;const{dataBind:s,controlId:c,fieldCode:l}=a;if(!o.includes(l)&&!!Object.hasOwnProperty.call(n,l))if(Oe(s))this.setState(c,n[l],r,u);else{const d=(f=ee(this.getState(c,r)))!=null?f:this.getEmptyState(c),p=Object.entries(s).reduce((g,[m,C])=>{o.push(C.fieldCode);const h=n[C.fieldCode];return h!==void 0&&(g[m]=h),g},d);this.setState(a.controlId,p,r,u)}})}buildFields(t,n){const r=this.getDataBindMapping(t);if(!r||!r.fields)return;let u=[];const i={};return r.fields.forEach(o=>{const{dataBind:a,controlId:s,fieldCode:c}=o;if(!u.includes(c)&&!!Object.hasOwnProperty.call(n,c))if(Oe(a))i[s]=n[c];else{const l=this.getEmptyState(s);i[o.controlId]=Object.entries(a).reduce((f,[d,p])=>{u.push(p.fieldCode);const g=n[p.fieldCode];return g!==void 0&&(f[d]=g),f},l)}}),i}setData(t,n){this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\uFF0C\u53C2\u6570\u4E3A%o\uFF0C%o\u3002",t,n);const r=n==null?void 0:n.onlySetData;let u=this.store.defaultState;r===!0&&(u={}),Object.keys(t).map(i=>{var a,s,c,l;const o=t[i];if(Array.isArray(o)){const f=this.getDataBindMapping(i);if(!f)return;u[f.dataViewId]||(u[f.dataViewId]={}),o.length?u[f.dataViewId][f.controlId]=[]:u[f.dataViewId][f.controlId]=(a=u[f.dataViewId][f.controlId])!=null?a:[];let d={},p={};o.map(g=>{let m=ee(this.store.emptyState[f.dataViewId][f.controlId]),C=[];Object.keys(g).map(h=>{var E,A,w;if(C.includes(h))return;p.hasOwnProperty(h)===!1&&(p[h]=(A=(E=this.store.dataBindMapping[i])==null?void 0:E.fields)==null?void 0:A.find(M=>M.fieldCode===h));const y=p[h];if(y){if(Oe(y.dataBind)&&g[h]!==void 0)m[y.controlId]=g[h];else if(!Oe(y.dataBind)){d.hasOwnProperty(y.controlId)===!1&&(d[y.controlId]=ee((w=this.getEmptyState(y.controlId))!=null?w:{}));let M=ee(d[y.controlId]);Object.keys(y.dataBind).map(I=>{const j=y.dataBind[I];g[j.fieldCode]!==void 0&&(M[I]=g[j.fieldCode]),C.push(j.fieldCode)}),m[y.controlId]=M}}else h==="uid"&&g.uid!==void 0?m.uid=g.uid:h==="virtualStore"&&g.virtualStore!==void 0&&(m.virtualStore=Object.freeze(g.virtualStore))}),u[f.dataViewId][f.controlId].push(m)})}else if(o){let f=[];const d=ee(this.store.emptyState);(s=Object.keys(o))!=null&&s.length&&Object.keys(o).map(g=>{var C;if(f.includes(g))return;const m=this.getDataBindMapping(i,g);if(m){if(u[m.dataViewId[0]]||(u[m.dataViewId[0]]={}),Oe(m.dataBind)&&o[g]!==void 0)u[m.dataViewId[0]][m.controlId]=o[g]!==void 0?o[g]:d[m.dataViewId[0]][m.controlId];else if(!Oe(m.dataBind)){let h=(C=this.getEmptyState(m.controlId))!=null?C:{};Object.keys(m.dataBind).map(y=>{const E=m.dataBind[y];o[E.fieldCode]!==void 0&&(h[y]=o[E.fieldCode]),f.push(E.fieldCode)}),u[m.dataViewId[0]][m.controlId]=h}}});const p=this.getDataBindMapping(i);if(p){const g=(c=p==null?void 0:p.fields)==null?void 0:c.map(h=>h==null?void 0:h.controlId),m=this.getEmptyState(p==null?void 0:p.controlId),C=Object.keys((l=u==null?void 0:u[p==null?void 0:p.controlId])!=null?l:{});g==null||g.forEach(h=>{!C.includes(h)&&h!=="uid"&&u[p==null?void 0:p.controlId]&&(Object.keys(u).length?Object.assign(u[p==null?void 0:p.controlId],{[h]:m[h]}):Object.assign(u,{[p.controlId]:{[h]:m[h]}}))}),this.debugLog("engine setData\u65B9\u6CD5\u9ED8\u8BA4\u503C\u53CA\u8868\u5355\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",u)}}}),this.debugLog("engine setData\u65B9\u6CD5\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",u),this.setStates(u,void 0,ae({setData:!0},n)),this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\u5B8C\u6210\u3002")}getDataBind(t){return this.store.getDataBind(t)}getInstance(t,n){const r=this.getInstances(t,n===-1);if(r.length>0)return n!==void 0?n===-1?r[0]:r[n]:r[0]}getInstances(t,n=!1){if(t===void 0)return this.runtime.flatInstances;const r=Array.from(this.runtime.instanceMap[t]||[]);if(n&&r.length){const u=r[0],i=this.findSubtableHeadersControl(u.id);i!==void 0&&r.unshift(i)}return r}setInstance(t,n,r,u){try{if(typeof t=="string"&&u===-1)this.getInstances(t,u===-1).map(o=>{o&&(this.debugLog("[%o]: \u4FEE\u6539instance: %o\u7684%o\u5C5E\u6027\uFF0C\u4FEE\u6539\u7684\u503C\u4E3A%o\u3002",o.id,o,n,r),Kn(o.props,n,r),this.schemaEvent("schema-change",{instance:o,props:n,value:r,rowIndex:u}))});else{let i;if(typeof t=="string"?i=this.getInstance(t,u):i=t,!i)return;this.debugLog("[%o]: \u4FEE\u6539instance: %o\u7684%o\u5C5E\u6027\uFF0C\u4FEE\u6539\u7684\u503C\u4E3A%o\u3002",i.id,i,n,r),Kn(i.props,n,r),this.schemaEvent("schema-change",{instance:i,props:n,value:r,rowIndex:u})}}catch(i){throw i}}getControlIdMapping(){return this.store.controlIdMapping}getDataBindMapping(t,n){if(!t&&!n)return this.store.dataBindMapping;const r=this.store.dataBindMapping[t];if(!r){tt(`No corresponding dataCode=${t} was found`);return}if(!n)return r;const u=r.fields.find(i=>i.fieldCode===n);if(!u){tt(`No corresponding fieldCode=${n} was found`);return}return u}getAction(){return this.actionManager}initDataManager(t){this.dataManager=new Qd(t)}getDataManager(){return this.dataManager}assertInstance(t,n){return Ae(n)?t.type===n:n.includes(t.type)}assertInstanceIsCustomControl(t){return!ff(Ae(t)?t:t.type)}getInstanceRowIndex(t){if(!t.parent)return;let n;if(this.assertInstance(t.parent,oe.SUBTABLE_COLUMN)&&this.assertInstance(t.parent.parent,oe.SUBTABLE))n=-1;else if(this.getInstanceParentControl(t,oe.SUBTABLE_COLUMN)){const i=this.runtime.instanceMap[t.id];if(Object.prototype.toString.call(i)==="[object Array]"){const o=i.findIndex(a=>a===t);o>-1&&(n=o)}}return n}getInstanceParentControl(t,n){if(!!t.parent)return this.assertInstance(t.parent,n)?t.parent:this.getInstanceParentControl(t.parent,n)}getInstanceInSubtableHeader(t){const n=this.getInstanceRowIndex(t);if(n===void 0)return;if(n===-1)return t;const r=this.assertInstance(t,oe.SUBTABLE_COLUMN)?t:this.getInstanceParentControl(t,oe.SUBTABLE_COLUMN);if(!r)return;const i=this.getInstanceParentControl(t,oe.SUBTABLE).props.headers.find(o=>o.id===r.id);if(!!i)return i.children.find(o=>o.id===t.id)}setControlConfig(...t){return this.runtime.registerControlConfig(...t)}getControlConfig(t){return this.runtime.getControlConfig(t)}inList(t){const n=this.store.subtableHeadersControlIdMapping;let r;for(const u in n)if(t in n[u]){r=u;break}return r}findSubtableHeadersControl(t){const n=this.store.subtableHeadersControlIdMapping;let r;for(const u in n)if(t in n[u]){r=n[u][t];break}return r}}class sh{}class ch{constructor(t,n,r){this.config=t,this.env=n,this.eventJs=r}apply(t){this.engine=t;const n=this.config;if(!n)return;const r=t.getAction();if(this.eventJs){this.eventJs.exportsFun({ctx:t,utils:r.actionUtils});for(let[u,i]of Object.entries(this.eventJs))r.addAction(u,i)}else{const u=Bi(n,t,this.env);if(!u)return;for(let[i,o]of Object.entries(u.funcMap))r.addAction(i,o)}}}function Bi(e,t,n){if(!e.module||!e.module.compiled)return;const r=e.module.compiled,u={exports:{ctx:t,utils:t.getAction().actionUtils,env:n}};try{new Function("module","exports",r).call(u,u,u.exports)}catch(a){Je(a.message+". fail to parse the module"),process.env.NODE_ENV!=="production"&&Je("fail to parse the module")}const i={},o={};for(const[a,s]of Object.entries(u.exports))typeof s=="function"?i[a]=s:o[a]=s;return{funcMap:i,variables:o}}const lh={"engine-initialized":"did_init","engine-mounted":"did_mount","engine-submit":"will_submit","engine-submit-params":"do_submit","engine-submitted":"did_submit"};class fh{constructor(t){this.config=t}apply(t){this.engine=t,Object.entries(lh).forEach(([n,r])=>{t.on(n,u=>We(this,null,function*(){const i=yield this.callLifecycleEvent(r,u);return i.includes(!1)?!1:i}))})}callLifecycleEvent(t,n){return We(this,null,function*(){const r=this.config;return!r||!Array.isArray(r[t])?[]:yield Promise.all(r[t].map(i=>We(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})))})}}class dh{constructor(t){this.config=t}apply(t){this.engine=t,Fu.events.forEach(n=>{n.code&&n.key&&this.engineAddEventListener(n.code,n.key)})}engineAddEventListener(t,n){this.engine.on(t,r=>We(this,null,function*(){if(!((t==="change"||t==="list-change")&&!this.engine.isMounted)&&r.instance!==void 0)return yield this.callControlEvent(n,r)}))}callControlEvent(t,n){return We(this,null,function*(){const r=this.config[n.instance.id];if(!r||!Array.isArray(r[t]))return[];const u=yield Promise.all(r[t].map(i=>We(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})));return u.includes(!1)?!1:u})}}function wn(){return wn=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},wn.apply(null,arguments)}var _i={epsilon:1e-12,matrix:"Matrix",number:"number",precision:64,predictable:!1,randomSeed:null};function De(e){return typeof e=="number"}function Qe(e){return!e||typeof e!="object"||typeof e.constructor!="function"?!1:e.isBigNumber===!0&&typeof e.constructor.prototype=="object"&&e.constructor.prototype.isBigNumber===!0||typeof e.constructor.isDecimal=="function"&&e.constructor.isDecimal(e)===!0}function Si(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isComplex===!0||!1}function Mi(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isFraction===!0||!1}function Ni(e){return e&&e.constructor.prototype.isUnit===!0||!1}function bn(e){return typeof e=="string"}var xe=Array.isArray;function _t(e){return e&&e.constructor.prototype.isMatrix===!0||!1}function qr(e){return Array.isArray(e)||_t(e)}function hh(e){return e&&e.isDenseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function ph(e){return e&&e.isSparseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function Dh(e){return e&&e.constructor.prototype.isRange===!0||!1}function Ii(e){return e&&e.constructor.prototype.isIndex===!0||!1}function gh(e){return typeof e=="boolean"}function mh(e){return e&&e.constructor.prototype.isResultSet===!0||!1}function yh(e){return e&&e.constructor.prototype.isHelp===!0||!1}function vh(e){return typeof e=="function"}function Eh(e){return e instanceof Date}function Ah(e){return e instanceof RegExp}function Oi(e){return!!(e&&typeof e=="object"&&e.constructor===Object&&!Si(e)&&!Mi(e))}function Ch(e){return e===null}function Fh(e){return e===void 0}function wh(e){return e&&e.isAccessorNode===!0&&e.constructor.prototype.isNode===!0||!1}function bh(e){return e&&e.isArrayNode===!0&&e.constructor.prototype.isNode===!0||!1}function Bh(e){return e&&e.isAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function _h(e){return e&&e.isBlockNode===!0&&e.constructor.prototype.isNode===!0||!1}function Sh(e){return e&&e.isConditionalNode===!0&&e.constructor.prototype.isNode===!0||!1}function Mh(e){return e&&e.isConstantNode===!0&&e.constructor.prototype.isNode===!0||!1}function Nh(e){return e&&e.isFunctionAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ih(e){return e&&e.isFunctionNode===!0&&e.constructor.prototype.isNode===!0||!1}function Oh(e){return e&&e.isIndexNode===!0&&e.constructor.prototype.isNode===!0||!1}function xh(e){return e&&e.isNode===!0&&e.constructor.prototype.isNode===!0||!1}function Th(e){return e&&e.isObjectNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ph(e){return e&&e.isOperatorNode===!0&&e.constructor.prototype.isNode===!0||!1}function $h(e){return e&&e.isParenthesisNode===!0&&e.constructor.prototype.isNode===!0||!1}function Rh(e){return e&&e.isRangeNode===!0&&e.constructor.prototype.isNode===!0||!1}function jh(e){return e&&e.isRelationalNode===!0&&e.constructor.prototype.isNode===!0||!1}function kh(e){return e&&e.isSymbolNode===!0&&e.constructor.prototype.isNode===!0||!1}function Lh(e){return e&&e.constructor.prototype.isChain===!0||!1}function Ur(e){var t=typeof e;return t==="object"?e===null?"null":Qe(e)?"BigNumber":e.constructor&&e.constructor.name?e.constructor.name:"Object":t}function yt(e){var t=typeof e;if(t==="number"||t==="string"||t==="boolean"||e===null||e===void 0)return e;if(typeof e.clone=="function")return e.clone();if(Array.isArray(e))return e.map(function(n){return yt(n)});if(e instanceof Date)return new Date(e.valueOf());if(Qe(e))return e;if(Oi(e))return qh(e,yt);throw new TypeError("Cannot clone: unknown type of value (value: ".concat(e,")"))}function qh(e,t){var n={};for(var r in e)Bn(e,r)&&(n[r]=t(e[r]));return n}function Kt(e,t){var n,r,u;if(Array.isArray(e)){if(!Array.isArray(t)||e.length!==t.length)return!1;for(r=0,u=e.length;r<u;r++)if(!Kt(e[r],t[r]))return!1;return!0}else{if(typeof e=="function")return e===t;if(e instanceof Object){if(Array.isArray(t)||!(t instanceof Object))return!1;for(n in e)if(!(n in t)||!Kt(e[n],t[n]))return!1;for(n in t)if(!(n in e))return!1;return!0}else return e===t}}function Bn(e,t){return e&&Object.hasOwnProperty.call(e,t)}function Uh(e,t){for(var n={},r=0;r<t.length;r++){var u=t[r],i=e[u];i!==void 0&&(n[u]=i)}return n}var Vh=["Matrix","Array"],Hh=["number","BigNumber","Fraction"],xi=function(t){if(t)throw new Error(`The global config is readonly.
|
|
1
|
+
var WD=Object.defineProperty,GD=Object.defineProperties;var ZD=Object.getOwnPropertyDescriptors;var Lo=Object.getOwnPropertySymbols,JD=Object.getPrototypeOf,XD=Object.prototype.hasOwnProperty,KD=Object.prototype.propertyIsEnumerable,QD=Reflect.get;var qn=Math.pow,qo=(W,ie,ce)=>ie in W?WD(W,ie,{enumerable:!0,configurable:!0,writable:!0,value:ce}):W[ie]=ce,ae=(W,ie)=>{for(var ce in ie||(ie={}))XD.call(ie,ce)&&qo(W,ce,ie[ce]);if(Lo)for(var ce of Lo(ie))KD.call(ie,ce)&&qo(W,ce,ie[ce]);return W},uu=(W,ie)=>GD(W,ZD(ie));var Uo=(W,ie,ce)=>QD(JD(W),ce,ie);var We=(W,ie,ce)=>new Promise((Un,nn)=>{var Vn=Ge=>{try{jt(ce.next(Ge))}catch(kt){nn(kt)}},Hn=Ge=>{try{jt(ce.throw(Ge))}catch(kt){nn(kt)}},jt=Ge=>Ge.done?Un(Ge.value):Promise.resolve(Ge.value).then(Vn,Hn);jt((ce=ce.apply(W,ie)).next())});(function(W,ie){typeof exports=="object"&&typeof module!="undefined"?ie(exports,require("crypto")):typeof define=="function"&&define.amd?define(["exports","crypto"],ie):(W=typeof globalThis!="undefined"?globalThis:W||self,ie(W.modelDrivenEngine={},W.require$$0))})(this,function(W,ie){"use strict";function ce(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var Un=ce(ie),nn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Vn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Hn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",jt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Ge="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",kt="{caption}\u5FC5\u586B",Vo="\u8BF7\u8F93\u5165\u6807\u9898",Ho="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",zo="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Wo="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Go="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Zo="\u8BF7\u7ED1\u5B9A\u8868\u5355",Jo="\u8BF7\u7ED1\u5B9A\u5217\u8868",Xo="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Ko="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Qo="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Yo="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ea="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",ta="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",na="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",ra="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ua="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",ia="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",oa="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",aa="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",sa="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",ca="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",la="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",fa="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",da="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",ha="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",pa="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Da="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",ga="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",ma="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ya="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",va="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Ea="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Aa="\u8BF7\u9009\u62E9\u7701",Ca="\u8BF7\u9009\u62E9\u5E02",Fa="\u8BF7\u9009\u62E9\u533A",wa="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",ba="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Ba="\u8BF7\u8F93\u5165\u5217\u5BBD",_a="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Sa="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Ma="\u8BF7\u9009\u62E9\u63A7\u4EF6",Na="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ia="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Oa="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",xa="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Ta="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Pa="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",$a="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ra="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ja="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ka="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",La="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",qa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ua="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Va="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ha="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",za="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Wa="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Ga="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Za="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Ja="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Xa="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ka="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Qa="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Ya="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",es="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",ts="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",ns="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",rs={isNotNumber:nn,isNotString:Vn,isNotObject:Hn,isNotArray:jt,isNotBoolean:Ge,runtimeRequired:kt,pleaseEnterCaption:Vo,pleaseEnterCaptionTip:Ho,pleaseEnterRowCaption:zo,pleaseEnterPlaceholder:Wo,pleaseEnterFieldCode:Go,pleaseEnterForm:Zo,pleaseEnterList:Jo,pleaseEnterProcess:Xo,pleaseEnterLabel:Ko,pleaseEnterValue:Qo,bizKeyNotBindFiled:Yo,pleaseSelectOneField:ea,pleaseEnterNumberRange:ta,pleaseEnterAValueGreaterThanMin:na,pleaseEnterAValueLessThanMax:ra,numberRangeSetError:ua,stringRangeError:ia,attachmentMaxSize:oa,pleaseEnterTotalScoreSetting:aa,theTotalScoreMustNotBeLessThan1:sa,scoreDefaultValueRange:ca,attachmentLimitError:la,PleaseReselectTheOptionalQuantity:fa,TheMaximumLengthIsGreaterThanTheMinimumLength:da,TheMinimumLengthIsGreaterThanTheMaximumLength:ha,PleaseSelectTheCorrectOptionSettings:pa,optionIdIsRepeat:Da,optionIsRequired:ga,pleaseEnterDataCode:ma,pleaseEnterValueFieldCode:ya,pleaseEnterSvcCode:va,pleaseBindAtLeastOneDisplayValue:Ea,pleaseSelectProvince:Aa,pleaseSelectCity:Ca,pleaseSelectDistrict:Fa,limitRowsCannotBeLessThan0:wa,TheNumberOfRowsCannotBeLessThanMinRows:ba,pleaseEnterColumnWidth:Ba,pleaseSetTheLogicalRelationshipOfAllRuleConditions:_a,pleaseCompleteAllRulesAndConditions:Sa,pleaseSelectControl:Ma,pleaseSelectAtLeastOneColumn:Na,pleaseSelectFillBackMode:Ia,pleaseSelectDashboard:Oa,rootNodeIsRequired:xa,theViewNameCannotBeEmpty:Ta,pleaseSelectOcrType:Pa,pleaseSelectAtLeastOneFieldToFillIn:$a,pleaseChooseAtLeastOne:Ra,pleaseEnterButtonContent:ja,pleaseEnterDataCodeInDataSetting:ka,pleaseEnterValueFieldCodeInDataSetting:La,pleaseEnterSvcCodeInDataSetting:qa,pleaseBindAtLeastOneDisplayValueInDataSetting:Ua,rootNodeIsRequiredInDataSetting:Va,pleaseEnterMaxHeight:Ha,pleaseEnter:za,pleaseEnterWatermark:Wa,pleaseEnterFileName:Ga,pleaseUploadAtLeastOnePrintTemplate:Za,pleaseAssignBusiness:Ja,pleaseAssignExternal:Xa,pleaseEnterAliasCode:Ka,pleaseSelectDataCode:Qa,pleaseSelectSvcCode:Ya,pleaseSelectJoinFieldCode:es,pleaseSelectMainFieldCode:ts,pleaseSelectSortFieldCode:ns},us="Please enter a number",is="Please enter a string",os="Please enter an object",as="Please enter an array",ss="Please enter a boolean",cs="{caption} Required",ls="Please enter the title",fs="Please enter the bubble prompt",ds="Please enter the row title",hs="Please enter the prompt text",ps="Please bind data items",Ds="Please bind the form",gs="Please bind the list",ms="Please bind the process",ys="Please enter the displayed value",vs="Please enter the stored value",Es="The document number is not bound to the data item",As="Please select at least one display field",Cs="Please enter a value greater than or equal to {min} and less than or equal to {max}",Fs="Please enter a value greater than or equal to {min}",ws="Please enter a value less than or equal to {max}",bs="The value range is set incorrectly",Bs="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",_s="The attachment size must be between 0MB and 1000MB",Ss="Please fill in the total score setting",Ms="The total score cannot be less than 1",Ns="The default value must be between {min} and {max}",Is="The number of attachments uploaded must be between {min} and {max}",Os="Please re-select the optional quantity",xs="The maximum length of the control must be greater than the minimum length",Ts="The minimum length of the control must be less than the maximum length",Ps="Please select the correct option setting",$s="Option ID cannot be repeated",Rs="Please enter at least one option",js="Please bind the data source",ks="Please bind the stored value",Ls="Please bind the service",qs="At least one display value must be bound",Us="Please select a province",Vs="Please select a city",Hs="Please select a district",zs="The minimum number of lines to fill in cannot be less than 0",Ws="The number of rows cannot be less than {min} rows",Gs="Please enter the column width",Zs="Please set the logical relationship of all rule conditions",Js="Please complete all rules and conditions",Xs="please select control",Ks="Please select the dashboard",Qs="View name cannot be empty",Ys="Please select recognition type",ec="Please select at least one field to fill in",tc="Please select at least one",nc="Please enter the button title",rc="Please bind the business model in the data settings",uc="Please bind storage values in data settings",ic="Please bind the service in the data settings",oc="Please bind at least one display value in the data settings",ac="Please select the root node in the data settings",sc="Please enter the maximum height",cc="The input content cannot be empty",lc="Watermark cannot be empty",fc="File name cannot be empty",dc="Please upload at least one printing template!\uFF01",hc="Please select a specific business department",pc="Please select a specified external organization",Dc="Please enter a sub table alias",gc="Please select the associated table to set the business model",mc="Please select the association table to set the binding service",yc="Select associated sub table fields",vc="Please select the associated main table field",Ec="Please select the sort field",Ac={isNotNumber:us,isNotString:is,isNotObject:os,isNotArray:as,isNotBoolean:ss,runtimeRequired:cs,pleaseEnterCaption:ls,pleaseEnterCaptionTip:fs,pleaseEnterRowCaption:ds,pleaseEnterPlaceholder:hs,pleaseEnterFieldCode:ps,pleaseEnterForm:Ds,pleaseEnterList:gs,pleaseEnterProcess:ms,pleaseEnterLabel:ys,pleaseEnterValue:vs,bizKeyNotBindFiled:Es,pleaseSelectOneField:As,pleaseEnterNumberRange:Cs,pleaseEnterAValueGreaterThanMin:Fs,pleaseEnterAValueLessThanMax:ws,numberRangeSetError:bs,stringRangeError:Bs,attachmentMaxSize:_s,pleaseEnterTotalScoreSetting:Ss,theTotalScoreMustNotBeLessThan1:Ms,scoreDefaultValueRange:Ns,attachmentLimitError:Is,PleaseReselectTheOptionalQuantity:Os,TheMaximumLengthIsGreaterThanTheMinimumLength:xs,TheMinimumLengthIsGreaterThanTheMaximumLength:Ts,PleaseSelectTheCorrectOptionSettings:Ps,optionIdIsRepeat:$s,optionIsRequired:Rs,pleaseEnterDataCode:js,pleaseEnterValueFieldCode:ks,pleaseEnterSvcCode:Ls,pleaseBindAtLeastOneDisplayValue:qs,pleaseSelectProvince:Us,pleaseSelectCity:Vs,pleaseSelectDistrict:Hs,limitRowsCannotBeLessThan0:zs,TheNumberOfRowsCannotBeLessThanMinRows:Ws,pleaseEnterColumnWidth:Gs,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Zs,pleaseCompleteAllRulesAndConditions:Js,pleaseSelectControl:Xs,pleaseSelectDashboard:Ks,theViewNameCannotBeEmpty:Qs,pleaseSelectOcrType:Ys,pleaseSelectAtLeastOneFieldToFillIn:ec,pleaseChooseAtLeastOne:tc,pleaseEnterButtonContent:nc,pleaseEnterDataCodeInDataSetting:rc,pleaseEnterValueFieldCodeInDataSetting:uc,pleaseEnterSvcCodeInDataSetting:ic,pleaseBindAtLeastOneDisplayValueInDataSetting:oc,rootNodeIsRequiredInDataSetting:ac,pleaseEnterMaxHeight:sc,pleaseEnter:cc,pleaseEnterWatermark:lc,pleaseEnterFileName:fc,pleaseUploadAtLeastOnePrintTemplate:dc,pleaseAssignBusiness:hc,pleaseAssignExternal:pc,pleaseEnterAliasCode:Dc,pleaseSelectDataCode:gc,pleaseSelectSvcCode:mc,pleaseSelectJoinFieldCode:yc,pleaseSelectMainFieldCode:vc,pleaseSelectSortFieldCode:Ec},Cc="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fc="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wc="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bc="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Bc="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_c="{caption}\u5FC5\u9808",Sc="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mc="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Nc="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ic="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oc="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",xc="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Tc="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Pc="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",$c="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Rc="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",jc="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",kc="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Lc="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",qc="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Uc="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Vc="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Hc="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",zc="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Wc="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Gc="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Zc="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Jc="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Xc="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Kc="\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",Qc="\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",Yc="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",el="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",tl="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",nl="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",rl="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ul="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",il="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ol="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",al="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",sl="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",cl="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ll="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",fl="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",dl="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",hl="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",pl="please select control",Dl="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",gl="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ml="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",yl="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",vl="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",El="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Al="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Cl="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Fl="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",wl="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",bl="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Bl="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",_l="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Sl="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ml="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Nl="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",Il="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ol="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",xl="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Tl="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",Pl="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",$l="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",Rl="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",jl="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",kl={isNotNumber:Cc,isNotString:Fc,isNotObject:wc,isNotArray:bc,isNotBoolean:Bc,runtimeRequired:_c,pleaseEnterCaption:Sc,pleaseEnterCaptionTip:Mc,pleaseEnterRowCaption:Nc,pleaseEnterPlaceholder:Ic,pleaseEnterFieldCode:Oc,pleaseEnterForm:xc,pleaseEnterList:Tc,pleaseEnterProcess:Pc,pleaseEnterLabel:$c,pleaseEnterValue:Rc,bizKeyNotBindFiled:jc,pleaseSelectOneField:kc,pleaseEnterNumberRange:Lc,pleaseEnterAValueGreaterThanMin:qc,pleaseEnterAValueLessThanMax:Uc,numberRangeSetError:Vc,stringRangeError:Hc,attachmentMaxSize:zc,pleaseEnterTotalScoreSetting:Wc,theTotalScoreMustNotBeLessThan1:Gc,scoreDefaultValueRange:Zc,attachmentLimitError:Jc,PleaseReselectTheOptionalQuantity:Xc,TheMaximumLengthIsGreaterThanTheMinimumLength:Kc,TheMinimumLengthIsGreaterThanTheMaximumLength:Qc,PleaseSelectTheCorrectOptionSettings:Yc,optionIdIsRepeat:el,optionIsRequired:tl,pleaseEnterDataCode:nl,pleaseEnterValueFieldCode:rl,pleaseEnterSvcCode:ul,pleaseBindAtLeastOneDisplayValue:il,pleaseSelectProvince:ol,pleaseSelectCity:al,pleaseSelectDistrict:sl,limitRowsCannotBeLessThan0:cl,TheNumberOfRowsCannotBeLessThanMinRows:ll,pleaseEnterColumnWidth:fl,pleaseSetTheLogicalRelationshipOfAllRuleConditions:dl,pleaseCompleteAllRulesAndConditions:hl,pleaseSelectControl:pl,pleaseSelectDashboard:Dl,theViewNameCannotBeEmpty:gl,pleaseSelectOcrType:ml,pleaseSelectAtLeastOneFieldToFillIn:yl,pleaseChooseAtLeastOne:vl,pleaseEnterButtonContent:El,pleaseEnterDataCodeInDataSetting:Al,pleaseEnterValueFieldCodeInDataSetting:Cl,pleaseEnterSvcCodeInDataSetting:Fl,pleaseBindAtLeastOneDisplayValueInDataSetting:wl,rootNodeIsRequiredInDataSetting:bl,pleaseEnterMaxHeight:Bl,pleaseEnter:_l,pleaseEnterWatermark:Sl,pleaseEnterFileName:Ml,pleaseUploadAtLeastOnePrintTemplate:Nl,pleaseAssignBusiness:Il,pleaseAssignExternal:Ol,pleaseEnterAliasCode:xl,pleaseSelectDataCode:Tl,pleaseSelectSvcCode:Pl,pleaseSelectJoinFieldCode:$l,pleaseSelectMainFieldCode:Rl,pleaseSelectSortFieldCode:jl},Ll={zhCN:rs,enUS:Ac,jaJP:kl},Ze=function(e){return e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable",e}({}),rn=function(e){return e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN",e}({}),iu="zh-CN";function Se(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Z=function(e){return e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search",e}({}),oe=function(e){return e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.OPERATION_BUTTON="operation-button",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.GRID_LAYOUT_CONTAINER="grid-layout-container",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e.GRID_LAYOUT_WRAP="grid-layout-wrap",e.SENSITIVEN_INFORMATION="sensitiven-information",e}({}),le=function(e){return e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field",e}({}),ye;ye={},Se(ye,"array","array-column"),Se(ye,"auto_number","auto-number-column"),Se(ye,"decimal","decimal-column"),Se(ye,"department","department-column"),Se(ye,"file","file-column"),Se(ye,"image","image-column"),Se(ye,"location","location-column"),Se(ye,"people","employee-column"),Se(ye,"text","text-column"),Se(ye,"timescope","timescope-column"),Se(ye,"timestamp","timestamp-column"),Se(ye,"varchar","varchar-column"),Se(ye,"relation","varchar-column");var ou="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",ql=ou+"0123456789";function un(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?ou:ql,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function zn(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Ul(e){if(Array.isArray(e))return zn(e)}function Vl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function au(e,t,n){return t=Lt(t),Gl(e,Gn()?Reflect.construct(t,n||[],Lt(e).constructor):t.apply(e,n))}function su(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function on(e,t,n){return Gn()?on=Reflect.construct:on=function(u,i,o){var a=[null];a.push.apply(a,i);var s=Function.bind.apply(u,a),c=new s;return o&&qt(c,o.prototype),c},on.apply(null,arguments)}function Lt(e){return Lt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Lt(e)}function cu(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&qt(e,t)}function Hl(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function zl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Wl(){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 Gl(e,t){return t&&(Zl(t)==="object"||typeof t=="function")?t:Vl(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},qt(e,t)}function lu(e){return Ul(e)||zl(e)||Jl(e)||Wl()}function Zl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Jl(e,t){if(!!e){if(typeof e=="string")return zn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return zn(e,t)}}function Wn(e){var t=typeof Map=="function"?new Map:void 0;return Wn=function(r){if(r===null||!Hl(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return on(r,arguments,Lt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),qt(u,r)},Wn(e)}function Gn(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Gn=function(){return!!e})()}var Zn=console;function tt(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=Zn).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(lu(u)))}function Jn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=Zn).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(lu(u)))}function Xl(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Xn=function(e){cu(t,e);function t(n){su(this,t);var r;return r=au(this,t,[n]),r.name="\u{1F4A5} Driven Error",r.message=n?Xl(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",r}return t}(Wn(Error)),Kl=function(e){cu(t,e);function t(n){su(this,t);var r;return r=au(this,t,[n]),r.name="\u{1F6A8} Driven Reference Error",r}return t}(Xn);function Je(e){throw new Xn(e)}function fu(e){throw new Kl(e)}function an(e){Zn.error(new Xn(e))}function Xe(e,t){Array.isArray(e)&&e.map(function(n){switch(n.controlType){case"layout":Xe(n==null?void 0:n.children,t);break;case"wrap":Xe(n==null?void 0:n.children,t);break;case"search":Xe(n==null?void 0:n.children,t);break;case"form":t(n)}})}var Ql=Object.prototype.toString;function du(e,t){return Ql.call(e)==="[object "+t+"]"}function Yl(e){return du(e,"String")}function ef(e){return du(e,"Promise")}var tf=function(){function e(t){var n,r;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((r=(n=t.messages)!==null&&n!==void 0?n:this.getPreImport(t.locale))!==null&&r!==void 0?r:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var n=this;this.locale=t,this._messageCache.clear();var r=this.getMessageData();ef(r)?r.then(function(u){n._messageCache.clear(),n.messages[n.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var u=this.getMessage(t);return u?this.formatMessage(u,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(u,i,o,a){if(u!==void 0){var s=u[i];if(!(o===a.length-1&&!Yl(s)))return s}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,u){var i=n[u];return i!==void 0?String(i):r}):t},e.prototype.getPreImport=function(t){var n;if(window.okI18nPreImport){var r=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(r)?window.okI18nPreImport:(n={},n[r]=window.okI18nPreImport,n)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function nf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function hu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function rf(e,t,n){return t&&hu(e.prototype,t),n&&hu(e,n),e}function uf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Me=function(){function e(){nf(this,e)}return rf(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:iu;return new tf({locale:n,messages:Ll})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();uf(Me,"$i18n",Me.resetI18n());function Kn(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,o){return"."+o}).split("."),u=!1;return r.reduce(function(i,o,a,s){var c=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,o)){tt("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),i,i);return}return a===s.length-1&&!Object.is(c[o],n)&&(c[o]=n,u=!0),c[o]}},e),u}var nt=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function of(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Qn={exports:{}};(function(e){(function(t){var n=function(h,y,E){if(!c(y)||f(y)||d(y)||p(y)||s(y))return y;var A,w=0,M=0;if(l(y))for(A=[],M=y.length;w<M;w++)A.push(n(h,y[w],E));else{A={};for(var I in y)Object.prototype.hasOwnProperty.call(y,I)&&(A[h(I,E)]=n(h,y[I],E))}return A},r=function(h,y){y=y||{};var E=y.separator||"_",A=y.split||/(?=[A-Z])/;return h.split(A).join(E)},u=function(h){return g(h)?h:(h=h.replace(/[\-_\s]+(.)?/g,function(y,E){return E?E.toUpperCase():""}),h.substr(0,1).toLowerCase()+h.substr(1))},i=function(h){var y=u(h);return y.substr(0,1).toUpperCase()+y.substr(1)},o=function(h,y){return r(h,y).toLowerCase()},a=Object.prototype.toString,s=function(h){return typeof h=="function"},c=function(h){return h===Object(h)},l=function(h){return a.call(h)=="[object Array]"},f=function(h){return a.call(h)=="[object Date]"},d=function(h){return a.call(h)=="[object RegExp]"},p=function(h){return a.call(h)=="[object Boolean]"},g=function(h){return h=h-0,h===h},m=function(h,y){var E=y&&"process"in y?y.process:y;return typeof E!="function"?h:function(A,w){return E(A,h,w)}},C={camelize:u,decamelize:o,pascalize:i,depascalize:o,camelizeKeys:function(h,y){return n(m(u,y),h)},decamelizeKeys:function(h,y){return n(m(o,y),h,y)},pascalizeKeys:function(h,y){return n(m(i,y),h)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=C:t.humps=C})(nt)})(Qn);var pu={};Object.defineProperty(pu,"__esModule",{value:!0});function Yn(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:Yn(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:Yn(r)}return t}}var af=pu.default=Yn;function Du(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ee(e){if(e!==void 0)return(typeof e=="undefined"?"undefined":Du(e))==="object"?af(e):e}function Re(e){return Object.prototype.toString.call(e)==="[object Object]"}function sf(e){return e!=null&&(typeof e=="undefined"?"undefined":Du(e))==="object"&&Array.isArray(e)===!1}function pt(e){return Array.isArray(e)}function Ae(e){return typeof e=="string"}function sn(e){return typeof e=="number"}function gu(e){return typeof e=="function"}function cf(e){return pt(e)&&e.every(function(t){return Ae(t)})}function lf(e){return pt(e)&&e.every(function(t){return sn(t)||t===""})}function mu(e){return/^\[.*?]$/.test(e)}function cn(e){return/^{.*?}$/.test(e)}function ff(e){return Object.values(oe).includes(e)}function er(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function df(e){if(Array.isArray(e))return er(e)}function yu(e,t,n,r,u,i,o){try{var a=e[i](o),s=a.value}catch(c){n(c);return}a.done?t(s):Promise.resolve(s).then(r,u)}function hf(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){yu(i,r,u,o,a,"next",s)}function a(s){yu(i,r,u,o,a,"throw",s)}o(void 0)})}}function pf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function vu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Df(e,t,n){return t&&vu(e.prototype,t),n&&vu(e,n),e}function Eu(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function gf(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function mf(){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 tr(e){return df(e)||gf(e)||yf(e)||mf()}function yf(e,t){if(!!e){if(typeof e=="string")return er(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return er(e,t)}}function vf(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=a(0),o.throw=a(1),o.return=a(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(c){return function(l){return s([c,l])}}function s(c){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,c[0]&&(i=0)),i;)try{if(n=1,r&&(u=c[0]&2?r.return:c[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,c[1])).done)return u;switch(r=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return i.label++,{value:c[1],done:!1};case 5:i.label++,r=c[1],c=[0];continue;case 7:c=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){i.label=c[1];break}if(c[0]===6&&i.label<u[1]){i.label=u[1],u=c;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(c);break}u[2]&&i.ops.pop(),i.trys.pop();continue}c=t.call(e,i)}catch(l){c=[6,l],r=0}finally{n=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}var Au=function(){function e(){pf(this,e),Eu(this,"_events",new Map),Eu(this,"debug",!1)}return Df(e,[{key:"emit",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),i=1;i<r;i++)u[i-1]=arguments[i];return hf(function(){var o,a,s,c,l,f,d,p,g,m,C,h;return vf(this,function(y){switch(y.label){case 0:if(o=this._events.get(n),a=[],!o)return[3,10];s=o.slice(),c=!0,l=!1,f=void 0,y.label=1;case 1:y.trys.push([1,8,9,10]),d=s[Symbol.iterator](),y.label=2;case 2:if(c=(p=d.next()).done)return[3,7];if(g=p.value,!o.includes(g))return[3,6];y.label=3;case 3:return y.trys.push([3,5,,6]),this.debug&&Jn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(g.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+g.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"\u3002")].concat(tr(u))),[4,g.apply(null,tr(u))];case 4:return m=y.sent(),this.debug&&Jn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(g.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+g.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(tr(u),[m])),a.push(m),m===!1?[3,7]:[3,6];case 5:return C=y.sent(),an(String(C)+":"+String(C.stack)),[3,6];case 6:return c=!0,[3,2];case 7:return[3,10];case 8:return h=y.sent(),l=!0,f=h,[3,10];case 9:try{!c&&d.return!=null&&d.return()}finally{if(l)throw f}return[7];case 10:return[2,a]}})}).call(this)}},{key:"on",value:function(n,r){if(this._events.has(n)){var u;(u=this._events.get(n))===null||u===void 0||u.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var u=this._events.get(n),i=u==null?void 0:u.indexOf(r);u==null||u.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function Ef(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Cu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Af(e,t,n){return t&&Cu(e.prototype,t),n&&Cu(e,n),e}function Cf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ff=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"},{key:"on_list_after_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u540E",code:"list-after-import"}],Fu=function(){function e(){Ef(this,e)}return Af(e,null,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(u){return r.includes(u.key)})}},{key:"getEventsFromControl",value:function(n){var r=[],u=n.eventKeys;r=r.concat(e.events.filter(function(o){return u.includes(o.key)}));var i=n.customEvents.map(function(o){var a=o.key;return{key:a,code:o.key,name:o.name}});return r=r.concat(i),r}}]),e}();Cf(Fu,"events",Ff);function nr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function wf(e){if(Array.isArray(e))return nr(e)}function bf(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Bf(){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 wu(e){return wf(e)||bf(e)||_f(e)||Bf()}function _f(e,t){if(!!e){if(typeof e=="string")return nr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return nr(e,t)}}function rr(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function bu(e,t,n){n!=="Runtime"&&(e.parent=t,rr(e,"parent"))}function Sf(e,t,n){e.forEach(function(r){bu(r,t,n)})}var Bu=Symbol("targetKey");function _u(e){var t;return(t=e[Bu])!==null&&t!==void 0?t:e}function Su(e,t,n){return Sf(e,t,n),new Proxy(e,{get:function(u,i){for(var o=arguments.length,a=new Array(o>2?o-2:0),s=2;s<o;s++)a[s-2]=arguments[s];var c;return i===Bu?u:(c=Reflect).get.apply(c,[u,i].concat(wu(a)))},set:function(u,i,o){for(var a=arguments.length,s=new Array(a>3?a-3:0),c=3;c<a;c++)s[c-3]=arguments[c];var l;if(pt(e)&&i==="length"&&o===e.length)return!0;var f=(l=Reflect).set.apply(l,[u,i,o].concat(wu(s)));return Re(o)&&bu(o,t,n),f}})}function ur(e,t,n,r,u){var i=r!=null?r:e,o=Su(_u(n!=null?n:[]),i,u);Object.defineProperty(e,t,{get:function(){return o},set:function(s){o=Su(_u(s),i,u)},enumerable:!0})}function Mf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Mu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Nf(e,t,n){return t&&Mu(e.prototype,t),n&&Mu(e,n),e}function rt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Nu=[],Ut=function(){function e(t){Mf(this,e),rt(this,"registeredControlTypes",new Set),rt(this,"controlConfigMap",new Map),rt(this,"_controls",[]),rt(this,"_type",void 0),this._type=t,this._initControls(t)}return Nf(e,[{key:"registerControlConfig",value:function(n,r){return this.controlConfigMap.set(n,r),this}},{key:"getControlConfig",value:function(n){return this.controlConfigMap.get(n)}},{key:"getControls",value:function(){return this._controls}},{key:"register",value:function(n){n.__is_control__||Je("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(u){return u.controlType===n.controlType});return r>-1&&(tt("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===Z.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===Z.FORM}},{key:"isListControl",value:function(n){return n.controlType===Z.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===Z.COLUMN}},{key:"createControl",value:function(n,r){var u=this;if(Array.isArray(n))return n.map(function(l){return u.createControl(l,r)});if(n.children&&(n.children=n.children.map(function(l){return u.createControl(l,r)})),this.isListControl(n)){var i=n.props;i.headers&&(i.headers=i.headers.map(function(l){return u.createControl(l,r)})),i.footers&&(i.footers=i.footers.map(function(l){var f;return l&&(f=u.createControl(l,r)),f}))}var o=this.getControlFormType(n.type);if(o){var a=n;if(typeof r=="function"){var s=r(a);s&&(a=s)}var c;return o.mode==="Runtime"?(c=a,c.fieldType=o.controlFieldType,this._setParentPrototypeToSchema(c,this)):c=new o(a),c}else Je("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"resetInstanceParent",value:function(n,r){delete n.parent,Object.defineProperty(n,"parent",{configurable:!0,get:function(){return r}}),rr(n,"parent")}},{key:"_setParentPrototypeToSchema",value:function(n,r){r._type==="Runtime"&&(Object.defineProperty(n,"parent",{configurable:!0,get:function(){var i=n.id,o=r._controlParentIdMap,a=r.instanceMap;if(!(!o||!a)){var s=o[i],c=a[i];if(!(!s&&!c)){var l=c.findIndex(function(p){return p==n}),f=a[s]||[],d;return f.length!==c.length?d=f[0]:d=f[l],d}}}}),rr(n,"parent"))}},{key:"createControlInstance",value:function(n,r){var u=this.getControlFormType(n);if(u)return new u(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(u){r.register(u[n]),e.staticControlsRuntimeRules.set(u.Runtime.controlType,u.Property.RuntimeRules),u.Property.mode=n})}}],[{key:"staticGetRules",value:function(n,r){var u=e.staticControlsRuntimeRules.get(n),i=[];if(u){var o=new u(r);i=Array.from(o)}return i}},{key:"register",value:function(n,r){var u=n.Designer,i=n.Runtime,o=n.Property;(!u||!i||!u.__is_control__||!i.__is_control__)&&Je("".concat(n," is can't register as a Control"));var a=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return a>-1&&(tt("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(a,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),o.mode=r,this}}]),e}();rt(Ut,"staticControlsRuntimeRules",new Map),rt(Ut,"staticControls",Nu),rt(Ut,"staticRegisteredTypes",new Set(Nu.map(function(e){return e.Designer.controlType}))),rt(Ut,"staticRegisteredConfigs",new Map);function Dt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function re(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ir=function e(t){Dt(this,e),re(this,"dataCode",void 0),re(this,"fieldCode",void 0),re(this,"fieldType",void 0),re(this,"aliasCode",void 0);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:"",this.aliasCode=t==null?void 0:t.aliasCode},If=function e(t){Dt(this,e),re(this,"minWidth",void 0),re(this,"maxWidth",void 0),re(this,"flex",void 0);var n;this.minWidth=(n=t==null?void 0:t.minWidth)!==null&&n!==void 0?n:150,this.maxWidth=t==null?void 0:t.maxWidth;var r;this.flex=(r=t==null?void 0:t.flex)!==null&&r!==void 0?r:1},or=function e(t){Dt(this,e),re(this,"amount",void 0),re(this,"currency",void 0);var n;this.amount=(n=t==null?void 0:t.amount)!==null&&n!==void 0?n:"";var r;this.currency=(r=t==null?void 0:t.currency)!==null&&r!==void 0?r:"CNY"},ar=function e(t){Dt(this,e),re(this,"min",void 0),re(this,"max",void 0);var n;this.min=(n=t==null?void 0:t.min)!==null&&n!==void 0?n:"";var r;this.max=(r=t==null?void 0:t.max)!==null&&r!==void 0?r:""},sr=function e(t){Dt(this,e),re(this,"city",void 0),re(this,"cityDisplay",void 0),re(this,"district",void 0),re(this,"districtDisplay",void 0),re(this,"province",void 0),re(this,"provinceDisplay",void 0);var n;this.city=(n=t==null?void 0:t.city)!==null&&n!==void 0?n:"";var r;this.cityDisplay=(r=t==null?void 0:t.cityDisplay)!==null&&r!==void 0?r:"";var u;this.district=(u=t==null?void 0:t.district)!==null&&u!==void 0?u:"";var i;this.districtDisplay=(i=t==null?void 0:t.districtDisplay)!==null&&i!==void 0?i:"";var o;this.province=(o=t==null?void 0:t.province)!==null&&o!==void 0?o:"";var a;this.provinceDisplay=(a=t==null?void 0:t.provinceDisplay)!==null&&a!==void 0?a:""},cr=function e(t){Dt(this,e),re(this,"result",void 0),re(this,"unit",void 0);var n;this.result=(n=t==null?void 0:t.result)!==null&&n!==void 0?n:0;var r;this.unit=(r=t==null?void 0:t.unit)!==null&&r!==void 0?r:""},Of=function(e){return e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT",e}({}),xf=function e(t){Dt(this,e),re(this,"width",void 0),re(this,"height",void 0),re(this,"widthConfig",void 0),re(this,"heightConfig",void 0);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var i;this.heightConfig=(i=t==null?void 0:t.heightConfig)!==null&&i!==void 0?i:"fill"};function Tf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Pf(e,t,n){return t=Vt(t),jf(e,dr()?Reflect.construct(t,n||[],Vt(e).constructor):t.apply(e,n))}function lr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ln(e,t,n){return dr()?ln=Reflect.construct:ln=function(u,i,o){var a=[null];a.push.apply(a,i);var s=Function.bind.apply(u,a),c=new s;return o&&Ht(c,o.prototype),c},ln.apply(null,arguments)}function ut(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Vt(e){return Vt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Vt(e)}function $f(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ht(e,t)}function Rf(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function jf(e,t){return t&&(kf(t)==="object"||typeof t=="function")?t:Tf(e)}function Ht(e,t){return Ht=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ht(e,t)}function kf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function fr(e){var t=typeof Map=="function"?new Map:void 0;return fr=function(r){if(r===null||!Rf(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return ln(r,arguments,Vt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Ht(u,r)},fr(e)}function dr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(dr=function(){return!!e})()}var hr=function e(t){lr(this,e),ut(this,"isHide",{type:"boolean"})},Iu=function(e){$f(t,e);function t(n){return lr(this,t),Pf(this,t)}return t}(fr(Array)),Ke=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";lr(this,e),ut(this,"isHide",void 0),ut(this,"className",void 0),ut(this,"style",void 0),ut(this,"caption",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new xf(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};ut(Ke,"mode",void 0),ut(Ke,"Rules",hr),ut(Ke,"RuntimeRules",Iu);function Ue(){return Ue=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Ue.apply(this,arguments)}function Lf(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function pr(e){return pr=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},pr(e)}function fn(e,t){return fn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},fn(e,t)}function qf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function dn(e,t,n){return qf()?dn=Reflect.construct:dn=function(u,i,o){var a=[null];a.push.apply(a,i);var s=Function.bind.apply(u,a),c=new s;return o&&fn(c,o.prototype),c},dn.apply(null,arguments)}function Uf(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Dr(e){var t=typeof Map=="function"?new Map:void 0;return Dr=function(r){if(r===null||!Uf(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return dn(r,arguments,pr(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),fn(u,r)},Dr(e)}var Vf=/%[sdj%]/g,Ou=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Ou=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function gr(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function Ne(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,u=t[0],i=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var o=String(u).replace(Vf,function(a){if(a==="%%")return"%";if(r>=i)return a;switch(a){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(s){return"[Circular]"}break;default:return a}});return o}return u}function Hf(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function fe(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Hf(t)&&typeof e=="string"&&!e)}function zf(e,t,n){var r=[],u=0,i=e.length;function o(a){r.push.apply(r,a),u++,u===i&&n(r)}e.forEach(function(a){t(a,o)})}function xu(e,t,n){var r=0,u=e.length;function i(o){if(o&&o.length){n(o);return}var a=r;r=r+1,a<u?t(e[a],i):n([])}i([])}function Wf(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var Tu=function(e){Lf(t,e);function t(n,r){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=n,u.fields=r,u}return t}(Dr(Error));function Gf(e,t,n,r){if(t.first){var u=new Promise(function(f,d){var p=function(C){return r(C),C.length?d(new Tu(C,gr(C))):f()},g=Wf(e);xu(g,n,p)});return u.catch(function(f){return f}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var o=Object.keys(e),a=o.length,s=0,c=[],l=new Promise(function(f,d){var p=function(m){if(c.push.apply(c,m),s++,s===a)return r(c),c.length?d(new Tu(c,gr(c))):f()};o.length||(r(c),f()),o.forEach(function(g){var m=e[g];i.indexOf(g)!==-1?xu(m,n,p):zf(m,n,p)})});return l.catch(function(f){return f}),l}function Pu(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function $u(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=Ue(Ue({},e[n]),r):e[n]=r}}return e}function Ru(e,t,n,r,u,i){e.required&&(!n.hasOwnProperty(e.field)||fe(t,i||e.type))&&r.push(Ne(u.messages.required,e.fullField))}function Zf(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(Ne(u.messages.whitespace,e.fullField))}var mr={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},zt={integer:function(t){return zt.number(t)&&parseInt(t,10)===t},float:function(t){return zt.number(t)&&!zt.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(n){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!zt.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(mr.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(mr.url)},hex:function(t){return typeof t=="string"&&!!t.match(mr.hex)}};function Jf(e,t,n,r,u){if(e.required&&t===void 0){Ru(e,t,n,r,u);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;i.indexOf(o)>-1?zt[o](t)||r.push(Ne(u.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(Ne(u.messages.types[o],e.fullField,e.type))}function Xf(e,t,n,r,u){var i=typeof e.len=="number",o=typeof e.min=="number",a=typeof e.max=="number",s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=t,l=null,f=typeof t=="number",d=typeof t=="string",p=Array.isArray(t);if(f?l="number":d?l="string":p&&(l="array"),!l)return!1;p&&(c=t.length),d&&(c=t.replace(s,"_").length),i?c!==e.len&&r.push(Ne(u.messages[l].len,e.fullField,e.len)):o&&!a&&c<e.min?r.push(Ne(u.messages[l].min,e.fullField,e.min)):a&&!o&&c>e.max?r.push(Ne(u.messages[l].max,e.fullField,e.max)):o&&a&&(c<e.min||c>e.max)&&r.push(Ne(u.messages[l].range,e.fullField,e.min,e.max))}var Ct="enum";function Kf(e,t,n,r,u){e[Ct]=Array.isArray(e[Ct])?e[Ct]:[],e[Ct].indexOf(t)===-1&&r.push(Ne(u.messages[Ct],e.fullField,e[Ct].join(", ")))}function Qf(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(Ne(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var i=new RegExp(e.pattern);i.test(t)||r.push(Ne(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var z={required:Ru,whitespace:Zf,type:Jf,range:Xf,enum:Kf,pattern:Qf};function Yf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t,"string")&&!e.required)return n();z.required(e,t,r,i,u,"string"),fe(t,"string")||(z.type(e,t,r,i,u),z.range(e,t,r,i,u),z.pattern(e,t,r,i,u),e.whitespace===!0&&z.whitespace(e,t,r,i,u))}n(i)}function e0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&z.type(e,t,r,i,u)}n(i)}function t0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&(z.type(e,t,r,i,u),z.range(e,t,r,i,u))}n(i)}function n0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&z.type(e,t,r,i,u)}n(i)}function r0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),fe(t)||z.type(e,t,r,i,u)}n(i)}function u0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&(z.type(e,t,r,i,u),z.range(e,t,r,i,u))}n(i)}function i0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&(z.type(e,t,r,i,u),z.range(e,t,r,i,u))}n(i)}function o0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return n();z.required(e,t,r,i,u,"array"),t!=null&&(z.type(e,t,r,i,u),z.range(e,t,r,i,u))}n(i)}function a0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&z.type(e,t,r,i,u)}n(i)}var s0="enum";function c0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u),t!==void 0&&z[s0](e,t,r,i,u)}n(i)}function l0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t,"string")&&!e.required)return n();z.required(e,t,r,i,u),fe(t,"string")||z.pattern(e,t,r,i,u)}n(i)}function f0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t,"date")&&!e.required)return n();if(z.required(e,t,r,i,u),!fe(t,"date")){var a;t instanceof Date?a=t:a=new Date(t),z.type(e,a,r,i,u),a&&z.range(e,a.getTime(),r,i,u)}}n(i)}function d0(e,t,n,r,u){var i=[],o=Array.isArray(t)?"array":typeof t;z.required(e,t,r,i,u,o),n(i)}function yr(e,t,n,r,u){var i=e.type,o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(fe(t,i)&&!e.required)return n();z.required(e,t,r,o,u,i),fe(t,i)||z.type(e,t,r,o,u)}n(o)}function h0(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(fe(t)&&!e.required)return n();z.required(e,t,r,i,u)}n(i)}var Wt={string:Yf,method:e0,number:t0,boolean:n0,regexp:r0,integer:u0,float:i0,array:o0,object:a0,enum:c0,pattern:l0,date:f0,url:yr,hex:yr,email:yr,required:d0,any:h0};function vr(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var Er=vr();function it(e){this.rules=null,this._messages=Er,this.define(e)}it.prototype={messages:function(t){return t&&(this._messages=$u(vr(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var u=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var i=t,o=n,a=r;if(typeof o=="function"&&(a=o,o={}),!this.rules||Object.keys(this.rules).length===0)return a&&a(),Promise.resolve();function s(m){var C,h=[],y={};function E(A){if(Array.isArray(A)){var w;h=(w=h).concat.apply(w,A)}else h.push(A)}for(C=0;C<m.length;C++)E(m[C]);h.length?y=gr(h):(h=null,y=null),a(h,y)}if(o.messages){var c=this.messages();c===Er&&(c=vr()),$u(c,o.messages),o.messages=c}else o.messages=this.messages();var l,f,d={},p=o.keys||Object.keys(this.rules);p.forEach(function(m){l=u.rules[m],f=i[m],l.forEach(function(C){var h=C;typeof h.transform=="function"&&(i===t&&(i=Ue({},i)),f=i[m]=h.transform(f)),typeof h=="function"?h={validator:h}:h=Ue({},h),h.validator=u.getValidationMethod(h),h.field=m,h.fullField=h.fullField||m,h.type=u.getType(h),h.validator&&(d[m]=d[m]||[],d[m].push({rule:h,value:f,source:i,field:m}))})});var g={};return Gf(d,o,function(m,C){var h=m.rule,y=(h.type==="object"||h.type==="array")&&(typeof h.fields=="object"||typeof h.defaultField=="object");y=y&&(h.required||!h.required&&m.value),h.field=m.field;function E(M,I){return Ue(Ue({},I),{},{fullField:h.fullField+"."+M})}function A(M){M===void 0&&(M=[]);var I=M;if(Array.isArray(I)||(I=[I]),!o.suppressWarning&&I.length&&it.warning("async-validator:",I),I.length&&h.message!==void 0&&(I=[].concat(h.message)),I=I.map(Pu(h)),o.first&&I.length)return g[h.field]=1,C(I);if(!y)C(I);else{if(h.required&&!m.value)return h.message!==void 0?I=[].concat(h.message).map(Pu(h)):o.error&&(I=[o.error(h,Ne(o.messages.required,h.field))]),C(I);var j={};if(h.defaultField)for(var U in m.value)m.value.hasOwnProperty(U)&&(j[U]=h.defaultField);j=Ue(Ue({},j),m.rule.fields);for(var V in j)if(j.hasOwnProperty(V)){var T=Array.isArray(j[V])?j[V]:[j[V]];j[V]=T.map(E.bind(null,V))}var R=new it(j);R.messages(o.messages),m.rule.options&&(m.rule.options.messages=o.messages,m.rule.options.error=o.error),R.validate(m.value,m.rule.options||o,function(J){var G=[];I&&I.length&&G.push.apply(G,I),J&&J.length&&G.push.apply(G,J),C(G.length?G:null)})}}var w;h.asyncValidator?w=h.asyncValidator(h,m.value,A,m.source,o):h.validator&&(w=h.validator(h,m.value,A,m.source,o),w===!0?A():w===!1?A(h.message||h.field+" fails"):w instanceof Array?A(w):w instanceof Error&&A(w.message)),w&&w.then&&w.then(function(){return A()},function(M){return A(M)})},function(m){s(m)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Wt.hasOwnProperty(t.type))throw new Error(Ne("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var n=Object.keys(t),r=n.indexOf("message");return r!==-1&&n.splice(r,1),n.length===1&&n[0]==="required"?Wt.required:Wt[this.getType(t)]||!1}},it.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Wt[t]=n},it.warning=Ou,it.messages=Er,it.validators=Wt;var p0={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 D0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new it(e);return n.messages(Object.assign(p0,t)),n}var g0=new Au;function Ar(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function m0(e){if(Array.isArray(e))return e}function y0(e){if(Array.isArray(e))return Ar(e)}function ju(e,t,n,r,u,i,o){try{var a=e[i](o),s=a.value}catch(c){n(c);return}a.done?t(s):Promise.resolve(s).then(r,u)}function ku(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){ju(i,r,u,o,a,"next",s)}function a(s){ju(i,r,u,o,a,"throw",s)}o(void 0)})}}function v0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Lu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function E0(e,t,n){return t&&Lu(e.prototype,t),n&&Lu(e,n),e}function ne(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function qu(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Uu(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function A0(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function C0(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Vu(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){ne(e,u,n[u])})}return e}function F0(e){return m0(e)||Uu(e)||Hu(e)||A0()}function Cr(e){return y0(e)||Uu(e)||Hu(e)||C0()}function w0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Hu(e,t){if(!!e){if(typeof e=="string")return Ar(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ar(e,t)}}function zu(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=a(0),o.throw=a(1),o.return=a(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(c){return function(l){return s([c,l])}}function s(c){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,c[0]&&(i=0)),i;)try{if(n=1,r&&(u=c[0]&2?r.return:c[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,c[1])).done)return u;switch(r=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return i.label++,{value:c[1],done:!1};case 5:i.label++,r=c[1],c=[0];continue;case 7:c=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){i.label=c[1];break}if(c[0]===6&&i.label<u[1]){i.label=u[1],u=c;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(c);break}u[2]&&i.ops.pop(),i.trys.pop();continue}c=t.call(e,i)}catch(l){c=[6,l],r=0}finally{n=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}var Ce=function(){function t(n){var r=this;v0(this,t),ne(this,"id",void 0),ne(this,"name",void 0),ne(this,"icon",void 0),ne(this,"type",void 0),ne(this,"controlType",void 0),ne(this,"props",void 0),ne(this,"setting",[]),ne(this,"fieldType",void 0),ne(this,"eventKeys",[]),ne(this,"customEvents",[]),ne(this,"parent",null),ne(this,"updateSetting",Gu),ne(this,"removeSetting",Wu),this._callControlHooks("preInstance",n);var u=qu(this,t)?this.constructor:void 0,i=u.controlName,o=u.controlIcon,a=u.controlType,s=u.controlFieldType,c=u.controlEventKeys,l=u.controlCustomEvents,f=u.name,d=u.setting;i&&o&&a||fu("The ".concat(f," controlName,controlIcon,controlType is not define"));var p;this.id=(p=n==null?void 0:n.id)!==null&&p!==void 0?p:un(10),this.name=i,this.icon=o;var g;this.type=(g=n==null?void 0:n.type)!==null&&g!==void 0?g:a,this.props=new Ke(n==null?void 0:n.props,(qu(this,t)?this.constructor:void 0).controlName);var m;this.controlType=(m=n==null?void 0:n.controlType)!==null&&m!==void 0?m:"base",this.setting=ee(d);var C;this.fieldType=(C=n==null?void 0:n.fieldType)!==null&&C!==void 0?C:s,this.eventKeys=ee(c),this.customEvents=ee(l),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return E0(t,[{key:"rules",get:function(){var r=this.props.constructor.Rules;return r?new r(this.props):{}}},{key:"_callControlHooks",value:function(){for(var r=arguments.length,u=new Array(r),i=0;i<r;i++)u[i]=arguments[i];var o,a=F0(u),s=a[0],c=a.slice(1);return(o=g0).emit.apply(o,[s,this].concat(Cr(c)))}},{key:"preUpdate",value:function(r,u){this._callControlHooks("preUpdateProps",r,u)}},{key:"postUpdate",value:function(r,u){this._callControlHooks("postUpdateProps",r,u)}},{key:"updateProps",value:function(r,u){this.preUpdate(r,u),Kn(this.props,r,u),this.postUpdate(r,u)}},{key:"preValidate",value:function(){return ku(function(){var r,u,i;return zu(this,function(o){switch(o.label){case 0:return r=Vu({},this.rules),[4,this._callControlHooks("preValidate",r)];case 1:return u=o.sent(),i=u[u.length-1],[2,i===!1?void 0:i]}})}).call(this)}},{key:"validate",value:function(r,u){return ku(function(){var i,o,a,s;return zu(this,function(c){switch(c.label){case 0:return[4,this.preValidate()];case 1:i=c.sent(),o=i!==void 0?i:Vu({},this.rules),Array.isArray(u)&&u.forEach(function(l){o.hasOwnProperty(l)&&delete o[l]}),a=D0(o,r),c.label=2;case 2:return c.trys.push([2,4,,5]),[4,a.validate(this.props)];case 3:return c.sent(),[2,!0];case 4:throw s=c.sent(),s.control||(s.control=this),s;case 5:return[2]}})}).call(this)}},{key:"toDataBindModel",value:function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,u=this.fieldType,i=this.id,o=this.type,a=this.props,s=a.dataBind,c=a.datasourceBind,l=a.optionConfig,f=a.caption,d=a.required,p=a.maxLength,g=a.options,m=a.encrypted,C=a.encryptedMode;if(!(!u&&!s&&!c)){var h={parentId:r,fieldType:u,controlId:i,caption:f,type:o,props:{}};switch(s&&(h.dataBind=s),l){case"datasource":case void 0:c&&(h.datasourceBind=c);break;case"custom":h.props.options=g;break}return d!==void 0&&(h.required=d),p!==void 0&&(h.maxLength=p),m!==void 0&&(h.encrypted=m),C!==void 0&&(h.encryptedMode=C),h}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:ee(this.props),fieldType:this.fieldType,controlType:this.controlType}}}],[{key:"updateBasicControl",value:function(r,u){if(r==="setting"){if(u.add){var i;(i=this.setting).push.apply(i,Cr(u.add))}u.remove&&this.removeSettingItem(u.remove),u.update}}}]),t}();ne(Ce,"mode","Designer"),ne(Ce,"controlName","\u63A7\u4EF6"),ne(Ce,"controlIcon","icon"),ne(Ce,"controlType","control"),ne(Ce,"controlFieldType",void 0),ne(Ce,"controlEventKeys",[]),ne(Ce,"controlCustomEvents",[]),ne(Ce,"setting",[]),ne(Ce,"__is_control__",!0),ne(Ce,"removeSettingItem",Wu),ne(Ce,"updateSettingItem",Gu);function Wu(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u,i=typeof r!="string",o=(u=t.setting)===null||u===void 0?void 0:u.findIndex(function(c){return c.key===(i?r.key:r)});if(o!==-1){var a,s;i?t.setting[o].showItems=(a=t.setting[o].showItems)===null||a===void 0?void 0:a.filter(function(c){return!r.hideItems.includes(c)}):t.setting.splice(o,1),i&&!(!((s=t.setting[o].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(o,1)}})}function Gu(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var i=n.setting.find(function(c){return c.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if((typeof t=="undefined"?"undefined":w0(t))==="object"){var o,a=(o=t.type)!==null&&o!==void 0?o:"replace";if(a==="replace")i.showItems=t.showItems;else{var s;(s=i.showItems).push.apply(s,Cr(t.showItems))}}}})}function b0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Zu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function B0(e,t,n){return t&&Zu(e.prototype,t),n&&Zu(e,n),e}function Ie(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _0(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var Gt=function(){function t(n){b0(this,t),Ie(this,"id",void 0),Ie(this,"type",void 0),Ie(this,"controlType",void 0),Ie(this,"props",void 0),Ie(this,"fieldType",void 0),Ie(this,"customEvents",[]),Ie(this,"pageStatus",void 0),Ie(this,"parent",null);var r=_0(this,t)?this.constructor:void 0,u=r.controlType,i=r.controlFieldType,o=r.name,a=r.controlCustomEvents;u||fu("The ".concat(o," controlType is not define"));var s;this.id=(s=n==null?void 0:n.id)!==null&&s!==void 0?s:un(10);var c;this.type=(c=n==null?void 0:n.type)!==null&&c!==void 0?c:u,this.props=new Ke(n==null?void 0:n.props),this.customEvents=a;var l;this.controlType=(l=n==null?void 0:n.controlType)!==null&&l!==void 0?l:"base";var f;this.fieldType=(f=n==null?void 0:n.fieldType)!==null&&f!==void 0?f:i;var d;this.pageStatus=(d=n==null?void 0:n.pageStatus)!==null&&d!==void 0?d:Of.UNKNOWN}return B0(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var u=new r(this.props);return Array.from(u)}return[]}}]),t}();Ie(Gt,"mode","Runtime"),Ie(Gt,"controlType","control"),Ie(Gt,"controlFieldType",void 0),Ie(Gt,"__is_control__",!0),Ie(Gt,"controlCustomEvents",[]);function Oe(e){return(e==null?void 0:e.dataCode)!==void 0&&(e==null?void 0:e.fieldCode)!==void 0}function S0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Fr(e,t,n){return t=hn(t),M0(e,Ju()?Reflect.construct(t,n||[],hn(e).constructor):t.apply(e,n))}function wr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ue(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function hn(e){return hn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},hn(e)}function br(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Br(e,t)}function M0(e,t){return t&&(N0(t)==="object"||typeof t=="function")?t:S0(e)}function Br(e,t){return Br=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Br(e,t)}function N0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ju(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Ju=function(){return!!e})()}var I0=function(e){br(t,e);function t(n){wr(this,t);var r;r=Fr(this,t,[n]),ue(r,"dataBind",{}),ue(r,"caption",{type:"string",required:!0,message:Me.getMessage("pleaseEnterCaption")}),ue(r,"isHideCaption",{type:"boolean"}),ue(r,"labelPosition",{type:"enum",enum:["top","left"]}),ue(r,"defaultState",{type:"enum",enum:["default","readonly"]}),ue(r,"required",{type:"boolean"}),ue(r,"captionTip",{type:"string",required:!1,message:Me.getMessage("pleaseEnterCaptionTip")});var u={fieldCode:{type:"string",required:!0,message:Me.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:Me.getMessage("pleaseEnterFieldCode")}};if(Oe(n.dataBind))r.dataBind={type:"object",required:!0,fields:ee(u),message:Me.getMessage("pleaseEnterFieldCode")};else{var i={type:"object",required:!0,fields:{},message:Me.getMessage("pleaseEnterFieldCode")};Object.keys(n.dataBind).forEach(function(o){i.fields[o]={type:"object",required:!0,fields:ee(u),message:Me.getMessage("pleaseEnterFieldCode")}}),r.dataBind=i}return n.isShowCaptionTip&&(r.captionTip.required=!0),r}return t}(hr),O0=function(e){br(t,e);function t(n){wr(this,t);var r;r=Fr(this,t,[n]);var u=n.isHide?!1:n.required;return u&&r.push({type:"string",required:u,message:n.requiredMessage!==""?n.requiredMessage:Me.getMessage("runtimeRequired",{caption:n.caption})}),r}return t}(Iu),_r=function(e){br(t,e);function t(n){wr(this,t);var r;r=Fr(this,t,[n]),ue(r,"caption",void 0),ue(r,"captionSize",void 0),ue(r,"captionColor",void 0),ue(r,"isCaptionItalic",void 0),ue(r,"isHideCaption",void 0),ue(r,"isShowCaptionTip",void 0),ue(r,"captionTip",void 0),ue(r,"labelPosition",void 0),ue(r,"dataBind",void 0),ue(r,"defaultValue",void 0),ue(r,"placeholder",void 0),ue(r,"defaultState",void 0),ue(r,"required",void 0),ue(r,"requiredMessage",void 0);var u;r.caption=(u=n==null?void 0:n.caption)!==null&&u!==void 0?u:"";var i;r.captionSize=(i=n==null?void 0:n.captionSize)!==null&&i!==void 0?i:"14";var o;r.captionColor=(o=n==null?void 0:n.captionColor)!==null&&o!==void 0?o:"";var a;r.isCaptionItalic=(a=n==null?void 0:n.isCaptionItalic)!==null&&a!==void 0?a:!1;var s;r.isHideCaption=(s=n==null?void 0:n.isHideCaption)!==null&&s!==void 0?s:!1;var c;r.isShowCaptionTip=(c=n==null?void 0:n.isShowCaptionTip)!==null&&c!==void 0?c:!1;var l;r.captionTip=(l=n==null?void 0:n.captionTip)!==null&&l!==void 0?l:"";var f;r.defaultState=(f=n==null?void 0:n.defaultState)!==null&&f!==void 0?f:"default";var d;r.labelPosition=(d=n==null?void 0:n.labelPosition)!==null&&d!==void 0?d:"top";var p;r.placeholder=(p=n==null?void 0:n.placeholder)!==null&&p!==void 0?p:"";var g;r.required=(g=n==null?void 0:n.required)!==null&&g!==void 0?g:!1;var m;r.requiredMessage=(m=n==null?void 0:n.requiredMessage)!==null&&m!==void 0?m:"",r.dataBind=new ir(n==null?void 0:n.dataBind);var C;return r.defaultValue=(C=n==null?void 0:n.defaultValue)!==null&&C!==void 0?C:"",r}return t}(Ke);ue(_r,"Rules",I0),ue(_r,"RuntimeRules",O0);function x0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function T0(e,t,n){return t=Dn(t),R0(e,Xu()?Reflect.construct(t,n||[],Dn(e).constructor):t.apply(e,n))}function P0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Dn(e){return Dn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Dn(e)}function $0(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Sr(e,t)}function R0(e,t){return t&&(j0(t)==="object"||typeof t=="function")?t:x0(e)}function Sr(e,t){return Sr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Sr(e,t)}function j0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Xu(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Xu=function(){return!!e})()}var Ku=function(e){$0(t,e);function t(n){P0(this,t);var r;return r=T0(this,t,[n]),pn(r,"controlType","form"),pn(r,"props",void 0),r.props=new _r(n==null?void 0:n.props),r}return t}(Ce);pn(Ku,"controlEventKeys",["on_change","on_focus","on_blur"]),pn(Ku,"controlCustomAttributes",void 0);function k0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function L0(e,t,n){return t=gn(t),V0(e,Qu()?Reflect.construct(t,n||[],gn(e).constructor):t.apply(e,n))}function q0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function gn(e){return gn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},gn(e)}function U0(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Mr(e,t)}function V0(e,t){return t&&(H0(t)==="object"||typeof t=="function")?t:k0(e)}function Mr(e,t){return Mr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Mr(e,t)}function H0(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Qu(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Qu=function(){return!!e})()}var z0=function(e){U0(t,e);function t(n){return q0(this,t),L0(this,t,[n])}return t}(Ke);function Nr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function W0(e){if(Array.isArray(e))return Nr(e)}function G0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Yu(e,t,n,r,u,i,o){try{var a=e[i](o),s=a.value}catch(c){n(c);return}a.done?t(s):Promise.resolve(s).then(r,u)}function Z0(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){Yu(i,r,u,o,a,"next",s)}function a(s){Yu(i,r,u,o,a,"throw",s)}o(void 0)})}}function J0(e,t,n){return t=at(t),id(e,ni()?Reflect.construct(t,n||[],at(e).constructor):t.apply(e,n))}function X0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ei(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function K0(e,t,n){return t&&ei(e.prototype,t),n&&ei(e,n),e}function ot(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ft(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?Ft=Reflect.get:Ft=function(u,i,o){var a=od(u,i);if(!!a){var s=Object.getOwnPropertyDescriptor(a,i);return s.get?s.get.call(o||u):s.value}},Ft(e,t,n||e)}function at(e){return at=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},at(e)}function Q0(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ir(e,t)}function Y0(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function ed(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function td(){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 nd(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){ot(e,u,n[u])})}return e}function rd(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function ud(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):rd(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function id(e,t){return t&&(ad(t)==="object"||typeof t=="function")?t:G0(e)}function Ir(e,t){return Ir=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ir(e,t)}function od(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=at(e),e!==null););return e}function ti(e){return W0(e)||ed(e)||sd(e)||td()}function ad(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function sd(e,t){if(!!e){if(typeof e=="string")return Nr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Nr(e,t)}}function ni(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(ni=function(){return!!e})()}function cd(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=a(0),o.throw=a(1),o.return=a(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(c){return function(l){return s([c,l])}}function s(c){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,c[0]&&(i=0)),i;)try{if(n=1,r&&(u=c[0]&2?r.return:c[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,c[1])).done)return u;switch(r=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return i.label++,{value:c[1],done:!1};case 5:i.label++,r=c[1],c=[0];continue;case 7:c=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){i.label=c[1];break}if(c[0]===6&&i.label<u[1]){i.label=u[1],u=c;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(c);break}u[2]&&i.ops.pop(),i.trys.pop();continue}c=t.call(e,i)}catch(l){c=[6,l],r=0}finally{n=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}var ld=1e4,ri=function(t){Q0(n,t);function n(r){X0(this,n);var u;u=J0(this,n,[r]),ot(u,"controlType","layout"),ot(u,"children",void 0),ot(u,"excludes",void 0),ot(u,"childrenMaxLength",void 0),ot(u,"props",void 0);var i=Y0(this,n)?this.constructor:void 0,o=i.excludes,a=i.childrenMaxLength;return u.props=new z0(r==null?void 0:r.props),ur(u,"children",r==null?void 0:r.children,void 0,"Designer"),u.excludes=ee(o),u.childrenMaxLength=a,u}return K0(n,[{key:"judgeExcludesChildren",value:function(u){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(u)}},{key:"judgeJoinChildren",value:function(u){var i=this.judgeExcludesChildren(u);return i&&this.childrenMaxLength>this.children.length}},{key:"validate",value:function(u,i){var o=this,a=this,s=function(){return Ft(at(n.prototype),"validate",o)};return Z0(function(){return cd(this,function(c){switch(c.label){case 0:return[4,s().call(a,u,i)];case 1:return c.sent(),[4,Promise.all(this.children.map(function(l){return l.validate(u,i)}))];case 2:return c.sent(),[2,!0]}})}).call(this)}},{key:"toDataBindModel",value:function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=Ft(at(n.prototype),"toDataBindModel",this).call(this),o=i?[i]:[];return this.children.reduce(function(a,s){var c=s.toDataBindModel(u);if(Array.isArray(c)){var l=c.filter(function(f){return!!f});return ti(a).concat(ti(l))}return c&&a.push(c),a},o)}},{key:"toSchema",value:function(){var u=Ft(at(n.prototype),"toSchema",this).call(this),i=this.children.map(function(o){var a=o.toSchema();return a});return ud(nd({},u),{children:i})}}]),n}(Ce);ot(ri,"excludes",!1),ot(ri,"childrenMaxLength",ld);function fd(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dd(e,t,n){return t=mn(t),Dd(e,ui()?Reflect.construct(t,n||[],mn(e).constructor):t.apply(e,n))}function hd(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function wt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function mn(e){return mn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},mn(e)}function pd(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Or(e,t)}function Dd(e,t){return t&&(gd(t)==="object"||typeof t=="function")?t:fd(e)}function Or(e,t){return Or=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Or(e,t)}function gd(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ui(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(ui=function(){return!!e})()}var md=function(e){pd(t,e);function t(n,r,u){hd(this,t);var i;i=dd(this,t,[r]),wt(i,"headers",void 0),wt(i,"footers",void 0),wt(i,"pageIndex",void 0),wt(i,"pageSize",void 0),wt(i,"pageSizeOptions",void 0),wt(i,"totalCount",void 0),ur(i,"headers",r==null?void 0:r.headers,n,u),ur(i,"footers",r==null?void 0:r.footers,n);var o;i.pageIndex=(o=r==null?void 0:r.pageIndex)!==null&&o!==void 0?o:1;var a;i.pageSize=(a=r==null?void 0:r.pageSize)!==null&&a!==void 0?a:20;var s;i.pageSizeOptions=(s=r==null?void 0:r.pageSizeOptions)!==null&&s!==void 0?s:[20];var c;return i.totalCount=(c=r==null?void 0:r.totalCount)!==null&&c!==void 0?c:0,i}return t}(Ke);function xr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function yd(e){if(Array.isArray(e))return xr(e)}function vd(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ii(e,t,n,r,u,i,o){try{var a=e[i](o),s=a.value}catch(c){n(c);return}a.done?t(s):Promise.resolve(s).then(r,u)}function Ed(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){ii(i,r,u,o,a,"next",s)}function a(s){ii(i,r,u,o,a,"throw",s)}o(void 0)})}}function Ad(e,t,n){return t=st(t),Sd(e,li()?Reflect.construct(t,n||[],st(e).constructor):t.apply(e,n))}function Cd(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function oi(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Fd(e,t,n){return t&&oi(e.prototype,t),n&&oi(e,n),e}function yn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function bt(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?bt=Reflect.get:bt=function(u,i,o){var a=Md(u,i);if(!!a){var s=Object.getOwnPropertyDescriptor(a,i);return s.get?s.get.call(o||u):s.value}},bt(e,t,n||e)}function st(e){return st=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},st(e)}function wd(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Tr(e,t)}function bd(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Bd(){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 ai(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){yn(e,u,n[u])})}return e}function _d(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function si(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):_d(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Sd(e,t){return t&&(Nd(t)==="object"||typeof t=="function")?t:vd(e)}function Tr(e,t){return Tr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Tr(e,t)}function Md(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=st(e),e!==null););return e}function ci(e){return yd(e)||bd(e)||Id(e)||Bd()}function Nd(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Id(e,t){if(!!e){if(typeof e=="string")return xr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return xr(e,t)}}function li(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(li=function(){return!!e})()}function Od(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=a(0),o.throw=a(1),o.return=a(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(c){return function(l){return s([c,l])}}function s(c){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,c[0]&&(i=0)),i;)try{if(n=1,r&&(u=c[0]&2?r.return:c[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,c[1])).done)return u;switch(r=0,u&&(c=[c[0]&2,u.value]),c[0]){case 0:case 1:u=c;break;case 4:return i.label++,{value:c[1],done:!1};case 5:i.label++,r=c[1],c=[0];continue;case 7:c=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!u||c[1]>u[0]&&c[1]<u[3])){i.label=c[1];break}if(c[0]===6&&i.label<u[1]){i.label=u[1],u=c;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(c);break}u[2]&&i.ops.pop(),i.trys.pop();continue}c=t.call(e,i)}catch(l){c=[6,l],r=0}finally{n=u=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}var xd=function(e){wd(t,e);function t(n){Cd(this,t);var r;return r=Ad(this,t,[n]),yn(r,"controlType","list"),yn(r,"props",void 0),r.props=new md(r,n==null?void 0:n.props,"Designer"),r}return Fd(t,[{key:"validate",value:function(r,u){var i=this,o=this,a=function(){return bt(st(t.prototype),"validate",i)};return Ed(function(){return Od(this,function(s){switch(s.label){case 0:return[4,a().call(o,r)];case 1:return s.sent(),[4,Promise.all(this.props.headers.map(function(c){return c.validate(r,u)}))];case 2:return s.sent(),[2,!0]}})}).call(this)}},{key:"toDataBindModel",value:function(){var r=bt(st(t.prototype),"toDataBindModel",this).call(this),u=r?[r]:[],i=this.id;return this.props.headers.reduce(function(o,a){var s=a.toDataBindModel(i);if(Array.isArray(s)){var c=s.filter(function(l){return!!l});return ci(o).concat(ci(c))}return s&&o.push(s),o},u)}},{key:"toSchema",value:function(){var r,u,i=bt(st(t.prototype),"toSchema",this).call(this),o=this.props.headers.map(function(s){return s.toSchema()}),a=(u=this.props)===null||u===void 0||(r=u.footers)===null||r===void 0?void 0:r.map(function(s){if(s)return s.toSchema()});return si(ai({},i),{props:si(ai({},this.props),{headers:o,footers:a})})}}]),t}(Ce);yn(xd,"controlFieldType",le.LIST);function Td(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function fi(e,t,n){return t=vn(t),Pd(e,pi()?Reflect.construct(t,n||[],vn(e).constructor):t.apply(e,n))}function di(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Fe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function vn(e){return vn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},vn(e)}function hi(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Pr(e,t)}function Pd(e,t){return t&&($d(t)==="object"||typeof t=="function")?t:Td(e)}function Pr(e,t){return Pr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Pr(e,t)}function $d(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function pi(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(pi=function(){return!!e})()}var Rd=function(e){hi(t,e);function t(n){di(this,t);var r;return r=fi(this,t,[n]),Fe(r,"caption",{type:"string",required:!0,message:Me.getMessage("pleaseEnterCaption")}),Fe(r,"width",{type:"number",required:!1,message:Me.getMessage("pleaseEnterColumnWidth")}),r.width.required=n.widthType==="px",r}return t}(hr),jd=function(e){hi(t,e);function t(n){di(this,t);var r;r=fi(this,t,[n]),Fe(r,"widthType",void 0),Fe(r,"width",void 0),Fe(r,"caption",void 0),Fe(r,"dataBind",void 0),Fe(r,"autoWidth",void 0),Fe(r,"fixed",void 0),Fe(r,"sort",void 0),Fe(r,"align",void 0),Fe(r,"colSpan",void 0),Fe(r,"autoHeight",void 0),Fe(r,"children",void 0);var u;r.width=(u=n==null?void 0:n.width)!==null&&u!==void 0?u:150,r.widthType=(n==null?void 0:n.widthType)||"auto";var i;r.caption=(i=n==null?void 0:n.caption)!==null&&i!==void 0?i:"";var o;r.fixed=(o=n==null?void 0:n.fixed)!==null&&o!==void 0?o:"none",r.autoWidth=new If(n==null?void 0:n.autoWidth),r.dataBind=new ir(n==null?void 0:n.dataBind);var a;r.sort=(a=n==null?void 0:n.sort)!==null&&a!==void 0?a:!0,r.align=n==null?void 0:n.align,r.colSpan=n==null?void 0:n.colSpan;var s;return r.autoHeight=(s=n==null?void 0:n.autoHeight)!==null&&s!==void 0?s:!1,r}return t}(Ke);Fe(jd,"Rules",Rd);function En(e){return e.controlType===Z.LAYOUT||e.controlType===Z.WRAP||e.controlType===Z.LIST||e.controlType===Z.SEARCH||e.controlType===Z.COLUMN&&e.type!==oe.OPERATION_COLUMN}function gt(e,t){Array.isArray(e)&&e.map(n=>{n.type===oe.SUBTABLE?t(n,[]):En(n)?gt(n==null?void 0:n.children,t):n.controlType===Z.FORM&&t(n)})}function mt(e,t){Array.isArray(e)&&e.map(n=>{n.type===oe.DATA_VIEW||n.type===oe.SIMPLE_SEARCH?t(n):En(n)&&mt(n==null?void 0:n.children,t)})}let Di=0;function Zt(e=""){const t=Date.now(),n=Math.floor(Math.random()*1e9);return Di++,e+"_"+n+Di+String(t)}class ve extends Ut{constructor(t){super("Runtime"),this._flatInstances=[],this._instanceMap={},this._controlParentIdMap={};const{schema:n}=t;this._schema=n,this._instance=this.createControl(n,t.beforeCreateInstance),this.getFlatInstances()}getFlatInstances(){const t=[],n={},r={};return An(this._instance,"",(u,i)=>{i&&(r[u.id]=i),n[u.id]||(n[u.id]=[]),!(u.type==="subtable-column"&&n[u.id].length>0)&&(t.push(u),n[u.id].push(u))}),this._flatInstances=t,this._instanceMap=n,this._controlParentIdMap=r,this._flatInstances}get schema(){return this._schema}get instance(){return this._instance}get flatInstances(){return this._flatInstances}get instanceMap(){return this._instanceMap}get allRules(){let t={},n={},r={};return mt(this._instance,u=>{let i=ve.staticGetRules(u.type,u.props);n[u.id]=ee(i[0]),t[u.id]=ee(i[0]),r[u.id]=ee(i[0]),gt(u.children,o=>{(o.controlType===Z.FORM||o.controlType===Z.LIST)&&(mi(n[u.id].fields,o,!0),Ei(t[u.id].fields,o,!0),yi(r[u.id].fields,o,!0))})}),{rules:this.rules,antdRules:this.antdRules,fieldCodeRules:this.fieldCodeRules,defaultAntdRules:t,defaultRule:n,defaultFieldRules:r}}get rules(){let t={};return mt(this._instance,n=>{let r=ve.staticGetRules(n.type,n.props);t[n.id]=r[0],gt(n.children,u=>{(u.controlType===Z.FORM||u.controlType===Z.LIST)&&mi(t[n.id].fields,u)})}),t}get fieldCodeRules(){let t={};return mt(this._instance,n=>{let r=ve.staticGetRules(n.type,n.props);t[n.id]=r[0],gt(n.children,u=>{(u.controlType===Z.FORM||u.controlType===Z.LIST)&&yi(t[n.id].fields,u)})}),t}get antdRules(){let t={};return mt(this._instance,n=>{let r=ve.staticGetRules(n.type,n.props);t[n.id]=r[0],gt(n.children,u=>{(u.controlType===Z.FORM||u.controlType===Z.LIST)&&Ei(t[n.id].fields,u)})}),t}}function An(e,t,n){(Array.isArray(e)?e:[e]).map(u=>{if(n(u,t),En(u)){const i=u;i.children||(i.children=[]),An(i.children,i.id,n)}gi(u,"headers")&&An(u.props.headers,u.id,n),gi(u,"footers")&&An(u.props.footers,u.id,n)})}function gi(e,t){return t in e.props&&pt(e.props[t])}function Cn(e){return e.props.isHide?!0:e.parent===null||e.parent===void 0?!1:Cn(e.parent)}function mi(e,t,n=!1){if(Cn(t))return;let r=ve.staticGetRules(t.type,t.props);if(t.controlType===Z.FORM)e[t.id]=r;else if(t.type===oe.SUBTABLE){e[t.id]=r;const u={type:"array",fields:{}};(n===!0?[{children:t.props.headers}]:t.children).forEach((i,o)=>{Xe(i.children,a=>{if(u.fields){u.fields[o]||(u.fields[o]={type:"object",required:!0,fields:{}});let s=ve.staticGetRules(a.type,a.props);u.fields[o].fields[a.id]=s}})}),e[t.id].push(u)}}function yi(e,t,n=!1){var u,i,o,a,s,c,l;if(Cn(t))return;let r=ve.staticGetRules(t.type,t.props);if(t.controlType===Z.FORM)if(Oe(t.props.dataBind))((u=t.props.dataBind)==null?void 0:u.fieldCode)!=""&&(e[(i=t.props.dataBind)==null?void 0:i.fieldCode]=r);else for(const f in t.props.dataBind)((o=t.props.dataBind[f])==null?void 0:o.fieldCode)!=""&&(e[(a=t.props.dataBind[f])==null?void 0:a.fieldCode]=((s=vi(r))==null?void 0:s[f])||[]);else if(t.type===oe.SUBTABLE){e[(c=t.props.datasourceBind)==null?void 0:c.dataCode]=r;const f={type:"array",fields:{}};(n===!0?[{children:t.props.headers}]:t.children).forEach((d,p)=>{Xe(d.children,g=>{var m,C,h,y;if(f.fields){f.fields[p]||(f.fields[p]={type:"object",required:!0,fields:{}});let E=ve.staticGetRules(g.type,g.props);if(Oe(g.props.dataBind))((h=g.props.dataBind)==null?void 0:h.fieldCode)!=""&&(f.fields[p].fields[(y=g.props.dataBind)==null?void 0:y.fieldCode]=E);else for(const A in g.props.dataBind)((m=g.props.dataBind[A])==null?void 0:m.fieldCode)!=""&&(f.fields[p].fields[g.props.dataBind[A].fieldCode]=((C=vi(E))==null?void 0:C[A])||[])}})}),e[(l=t.props.datasourceBind)==null?void 0:l.dataCode].push(f)}}function vi(e){let t={};return e.map(n=>{n.fields&&(t=n)}),t==null?void 0:t.fields}function Ei(e,t,n=!1){if(Cn(t))return;let r=ve.staticGetRules(t.type,t.props);t.controlType===Z.FORM?e[t.id]=r:t.type===oe.SUBTABLE&&t.children.length&&(e[t.id]=[],(n===!0?[{children:t.props.headers}]:t.children).forEach(u=>{let i={};Xe(u.children,o=>{let a=ve.staticGetRules(o.type,o.props);i[o.id]=a}),e[t.id].push(i)}))}class kd{constructor(t){const{state:n,emptyState:r,databindMapping:u,controlidMapping:i,defaultState:o,subtableHeadersControlIdMapping:a}=Ld(t.instance);this.emptyState=r,this.state=n,this.dataBindMapping=u,this.controlIdMapping=i,this.defaultState=o,this.subtableHeadersControlIdMapping=a}setState(t,n,r){const u=this.controlIdMapping[t],i=ee(n);u!==void 0?(u.children&&n.forEach(o=>{o.uid||Object.assign(o,{uid:"new:"+Zt("uid")})}),this.state[u.dataView][t]=i):r!==void 0?Object.keys(this.controlIdMapping).map(o=>{const a=this.controlIdMapping[o].dataView,s=this.controlIdMapping[o].children;s!==void 0&&Object.keys(s).map(c=>{c===t&&this.state[a][o][r]&&(this.state[a][o][r][t]=i)})}):this.state[t]=i}getState(t,n){var u;if(this.state[t]!==void 0)return this.state[t];{const i=this.controlIdMapping[t];if(i!==void 0){const o=this.state[i.dataView][t];return n!==void 0&&Object.keys((u=i==null?void 0:i.children)!=null?u:{}).length>0?o[n]:o}else if(n!==void 0){let o;return Object.keys(this.controlIdMapping).map(a=>{const s=this.controlIdMapping[a].dataView,c=this.controlIdMapping[a].children;c!==void 0&&Object.keys(c).map(l=>{var f;l===t&&(o=(f=this.state[s][a][n])==null?void 0:f[t])})}),o}else{let o=[];return Object.keys(this.controlIdMapping).map(a=>{const s=this.controlIdMapping[a].dataView,c=this.controlIdMapping[a].children;c!==void 0&&Object.keys(c).map(l=>{l===t&&this.state[s][a].map(f=>{o.push(f[t])})})}),o}}}getEmptyState(t){if(this.emptyState[t]!==void 0)return this.emptyState[t];{const r=this.controlIdMapping[t];if(r!==void 0){const u=this.emptyState[r.dataView][t];return"children"in r&&Object.assign(u,{uid:"new:"+Zt("uid")}),u}else{let u;return Object.keys(this.controlIdMapping).map(i=>{const o=this.controlIdMapping[i].dataView,a=this.controlIdMapping[i].children;a!==void 0&&Object.keys(a).map(s=>{s===t&&(u=this.emptyState[o][i][t])})}),u}}}getDataBind(t){let n=this.controlIdMapping[t];if(n)return n.dataBind;e:for(let r in this.controlIdMapping){const u=this.controlIdMapping[r];if(u.children){for(let i in u.children)if(i===t){n=u.children[i];break e}}}return n==null?void 0:n.dataBind}}function Ld(e){let t={},n={},r={},u={},i={},o={};return mt(e,a=>{const s=a.id,c={},l={};gt([a],(f,d)=>{qd(c,l,f),Ud(r,s,f),Vd(u,s,f),Hd(i,f)}),t[s]={},o[s]=c,n[s]=l}),{state:t,defaultState:o,subtableHeadersControlIdMapping:i,emptyState:n,databindMapping:r,controlidMapping:u}}function qd(e,t,n){var r,u;if(n.controlType===Z.FORM)e[n.id]=ee(n.props.defaultValue),t[n.id]=ee(n.props.defaultValue);else{const i={};Xe(n.props.headers,o=>{i[o.id]=ee(o.props.defaultValue)}),e[n.id]=(u=new Array((r=n.props.defaultRows)!=null?r:1).fill(0).map(()=>ae({uid:"new:"+Zt("uid")},ee(i))))!=null?u:[],t[n.id]=i}}function Ud(e,t,n){var r,u;if(n.controlType===Z.FORM)Oe(n.props.dataBind)?((u=(r=n.props)==null?void 0:r.dataBind)==null?void 0:u.dataCode)===void 0||(e[n.props.dataBind.dataCode]===void 0&&(e[n.props.dataBind.dataCode]={controlId:t,fields:[],dataViewId:t}),e[n.props.dataBind.dataCode].fields.push({fieldCode:n.props.dataBind.fieldCode,controlId:n.id,dataBind:n.props.dataBind,dataViewId:[t]})):Object.keys(n.props.dataBind).map(i=>{const o=n.props.dataBind,a=o[i].dataCode;a!==void 0&&(e[a]===void 0&&(e[a]={controlId:n.id,fields:[],dataViewId:t}),e[a].fields.push({fieldCode:o[i].fieldCode,controlId:n.id,dataBind:o,dataViewId:[t]}))});else{if(n.props.datasourceBind.dataCode===""){tt(`datasourceBind.dataCode is empty! maybe in preview mode, control:${n.id} type:${n.type}`);return}e[n.props.datasourceBind.dataCode]={controlId:n.id,fields:[],dataViewId:t};const i=n.id;Xe(n.props.headers,o=>{Oe(o.props.dataBind)?(e[o.props.dataBind.dataCode]===void 0&&(e[o.props.dataBind.dataCode]={controlId:t,fields:[],dataViewId:t}),e[o.props.dataBind.dataCode].fields.push({fieldCode:o.props.dataBind.fieldCode,controlId:o.id,dataBind:o.props.dataBind,dataViewId:[t,i]})):Object.keys(o.props.dataBind).map(a=>{const s=o.props.dataBind,c=s[a].dataCode;e[c].fields.push({fieldCode:s[a].fieldCode,controlId:o.id,dataBind:s,dataViewId:[t,i]})})})}}function Vd(e,t,n){n.controlType===Z.FORM?e[n.id]={dataBind:n.props.dataBind,options:[],dataView:t}:n.type===oe.SUBTABLE&&(e[n.id]={dataBind:new ir({dataCode:n.props.datasourceBind.dataCode,fieldCode:""}),dataView:t,children:{},options:[]},Xe(n.props.headers,r=>{var u,i;Object.assign((i=(u=e[n.id])==null?void 0:u.children)!=null?i:{},{[r.id]:{dataBind:r.props.dataBind}})}))}function Hd(e,t){if(t.type===oe.SUBTABLE){const n={};t.props.headers.map(r=>{r.children.map(u=>{Object.assign(n,{[u.id]:u})})}),Object.assign(e,{[t.id]:n})}}const Ai=["splice","push","shift","pop","unshift","reverse"],$r=Symbol("__engineProxy__"),Rr=Symbol("__engineTarget__"),Ci=Symbol("__engineArrayBeforeSetCallbackFlag__"),Fi=Symbol("__engineProxyThisKey__"),je={type:"",args:[],callback:wi};function wi(){}Jd();function zd(e,t,n,r,u){if(je.type){je.callback=u.bind(null,e,r);return}const i=Number(t);if(i>e.length){Je(`Wrong array operations may cause unknown errors. It is recommended to use APIs such as ${Ai.join(",")} for array operations`);return}if(!(Number.isNaN(i)&&t!=="length"))if(t==="length"){const a=n,s=e.length;if(a>e.length){Je("Do not directly modify the length of the array data, please add new rows");return}return a===e.length?void 0:()=>u.call(null,e,r,"splice",[a,s-a])}else return i===e.length?()=>u.call(null,e,r,"push",[n]):()=>u.call(null,e,r,"splice",[i,1,n])}function Wd(e,t,n){return{__engineProxy__:!0,get(r,u,i){return u===$r?!0:u===Rr?r:Array.isArray(r)&&u===Ci?n:u===Fi?e:Reflect.get(r,u,i)},set(r,u,i,o){var d;let a=ee(i);const s=r[u],c=e===""?u:e+"."+u;function l(p){if(typeof p=="object"&&p!==null)return p[$r]!==!0?Fn(p,t,n,c):Fn(p[Rr],t,n,c)}a=(d=l(a))!=null?d:a;let f;if(Array.isArray(r)){const p=zd(r,u,a,e,t);f=Reflect.set(r,u,a,o),p&&p()}else{try{let p=a;if(a=n.call(null,r,c,a,s),p!==a){const g=l(a);g!==void 0&&(a=g)}}catch(p){return an(`${c} set error ${p}`),!0}f=Reflect.set(r,u,a,o),t.call(null,r,c,a,s)}return f||!0}}}function Fn(e,t,n,r=""){if(Object.isFrozen(e))return e;for(let u in e){const i=r===""?u:r+"."+u,o=e[u];typeof o=="object"&&o!==null&&(e[u]=Fn(o,t,n,i))}return new Proxy(e,Wd(r,t,n))}function jr(e,t){if(e==="")return{instance:void 0,rowIndex:void 0};var n=e.split(".");if(n.length===0)return{instance:void 0,rowIndex:void 0};const r=n.filter(s=>!isNaN(s)).at(-1),u=r?n.lastIndexOf(r):-1;let i,o;return u>-1?(i=Number(n[u]),o=n==null?void 0:n[u+1]):o=n[1],{instance:t.getInstance(o,i),rowIndex:i}}function Gd(e,t){return["push","unshift"].includes(e)?t:e==="splice"?t.slice(2):[]}function Zd(e,t,n){if(["push","unshift"].includes(e))return n;if(e==="splice")return t.slice(0,2).concat(n)}function Jd(){Ai.forEach(e=>{const t=Array.prototype[e];Array.prototype[e]=function(...n){var r;if(this[$r]){let u;const i=Gd(e,n);if(i.length){const o=(r=this[Ci])==null?void 0:r.call(this,this[Rr],this[Fi],i),a=Zd(e,n,o);je.type=e,je.args=a,u=t.apply(this,a)}else je.type=e,je.args=n,u=t.apply(this,n);return typeof je.callback=="function"&&je.callback(e,n,u),je.type="",je.args=[],je.callback=wi,u}else return t.apply(this,n)}})}class Xd{constructor(){this.actionMap=new Map,this.buildinActions={},this.actionUtils={},this.sources={}}execAction(t,n,...r){return We(this,null,function*(){const u=this.actionMap.get(t);if(!!u)try{return yield u.func.call(null,n,...r)}catch(i){return an(`${u.id} Exception during calling action: ${i}`),!1}})}addAction(t,n){this.actionMap.has(t)&&Je("duplicated action key");const r=new Kd(t,n);this.actionMap.set(t,r)}}class Kd{constructor(t,n){this.id="",this.id=t,this.func=n}}class Qd{constructor(t){this._dataStore=new Map,this.executer=t}add(t,n){this._dataStore.set(t,n)}get(t){let n=this._dataStore.get(t);return ee(n)}remove(t){this._dataStore.delete(t)}getRemoteData(t){return We(this,null,function*(){return this.executer===void 0?(an("\u672A\u521D\u59CB\u5316executer"),[]):this.executer(t)})}}class ct{}class Jt extends ct{validate(t){return Ae(t)}transform(t){if(t==null)return"";if(!Re(t)&&!gu(t))return String(t);if(sf(t))return JSON.stringify(t);throw`${t} is not a string`}}class kr extends ct{validate(t){return sn(t)||t===""}transform(t){if(t==null)return"";const n=!Re(t)&&!gu(t)?Number(t):void 0;if(!Number.isNaN(n)&&n!==void 0)return n;throw`${t} is not a number`}}class Yd extends ct{validate(t){return cf(t)}transform(t){if(t==null)return[];function n(r){return r.map(u=>u?String(u):"")}if(pt(t))return n(t);if(Ae(t)&&mu(t))try{const r=JSON.parse(t);if(Array.isArray(r))return n(r)}catch(r){}return[String(t)]}}class eh extends ct{validate(t){return lf(t)}transform(t){if(t==null)return[];function n(u){return u.map(i=>!i&&i!==0?"":Number(i)).filter(i=>i===""||!Number.isNaN(i))}if(pt(t))return n(t);if(Ae(t)&&mu(t))try{const u=JSON.parse(t);if(pt(u))return n(u)}catch(u){}const r=Number(t);if(Number.isNaN(r))throw`${t} is not a number array`;return[r]}}class th extends ct{validate(t){return Re(t)&&"amount"in t&&sn(t.amount)&&"currency"in t&&Ae(t.currency)}transform(t,n){if(t==null||t==="")return new or({currency:n==null?void 0:n.currency});let r;if(Re(t)&&(r=new or(ae(ae({},n),t))),Ae(t)&&cn(t))try{const u=JSON.parse(t);r=new or(ae(ae({},n),u))}catch(u){}if(r){const u=new kr,i=new Jt;return u.validate(r.amount)||(r.amount=u.transform(r.amount)),i.validate(r.currency)||(r.currency=i.transform(r.currency)),r}throw`${t} is not a { amount: number, currency: string } object`}}class nh extends ct{validate(t){return Re(t)&&"min"in t&&Ae(t.min)&&"max"in t&&Ae(t.max)}transform(t,n){if(t==null||t==="")return new ar;let r;if(Re(t)&&(r=new ar(ae(ae({},n),t))),Ae(t)&&cn(t))try{const u=JSON.parse(t);r=new ar(ae(ae({},n),u))}catch(u){}if(r){const u=new Jt;return u.validate(r.min)||(r.min=u.transform(r.min)),u.validate(r.max)||(r.max=u.transform(r.max)),r}throw`${t} is not a { min: string, max: string } object`}}class rh extends ct{validate(t){return Re(t)&&"result"in t&&sn(t.result)&&"unit"in t&&Ae(t.unit)}transform(t,n){if(t==null||t==="")return new cr({unit:n==null?void 0:n.unit});let r;if(Re(t)&&(r=new cr(ae(ae({},n),t))),Ae(t)&&cn(t))try{const u=JSON.parse(t);r=new cr(ae(ae({},n),u))}catch(u){}if(r){const u=new kr,i=new Jt;return u.validate(r.result)||(r.result=u.transform(r.result)),i.validate(r.unit)||(r.unit=i.transform(r.unit)),r}throw`${t} is not a { result: string, unit: string } object`}}class uh extends ct{validate(t){return!!Re(t)}transform(t,n){if(t==null||t==="")return new sr;let r;if(Re(t)&&(r=new sr(ae(ae({},n),Qn.exports.camelizeKeys(t)))),Ae(t)&&cn(t))try{const u=JSON.parse(t);r=new sr(ae(ae({},n),Qn.exports.camelizeKeys(u)))}catch(u){}if(r){const u=new Jt;return u.validate(r.city)||(r.city=u.transform(r.city)),u.validate(r.district)||(r.district=u.transform(r.district)),u.validate(r.province)||(r.province=u.transform(r.province)),r}throw`${t} is not a { city: string, district: string, province: string } object`}}class ih{static getValueChecker(t){let n;switch(t){case le.VARCHAR:case le.TIMESTAMP:case le.TEXT:case le.RELATION:case le.AUTO_NUMBER:n=new Jt;break;case le.DECIMAL:n=new kr;break;case le.EMPLOYEES:case le.DEPARTMENTS:case le.IMAGE:case le.FILE:case le.ARRAY:n=new Yd;break;case le.MONEY:n=new th;break;case le.TIMESCOPE:n=new nh;break;case le.CALC:n=new rh;break;case le.DECIMAL_RANGE:n=new eh;break;case le.ADDRESS:n=new uh;break}return n}}function oh(e){if(["min","max","currency","unit"].includes(e))return le.VARCHAR;if(["result","amount"].includes(e))return le.DECIMAL}function bi(e,t,n,r){var o;let u=(o=oh(t))!=null?o:e,i=ih.getValueChecker(u);if(!i||i.validate(n))return n;try{const a=i.transform(n,r);return a!==void 0?a:n}catch(a){throw`${t} ${a}`}}function ah(e,t,n){return Object.entries(e).reduce((r,[u,i])=>{const o=t[u];return r[u]=bi(i,u,o,n[u]),r},Object.assign({},t))}typeof window!="undefined"&&(window.engines={});let Bt=null,Xt="";class Lr extends Au{constructor(t){super(),this.rawStore={},this.isMounted=!1,this.id=un(8),this.__pluginsApplied=!1,this.actionManager=new Xd,this._jobTasks=[],this.createControlInstance=this.createInstance,this.$options=Object.freeze(t);const{autoMount:n=!0,schema:r,beforeCreateInstance:u,externalParams:i,language:o=iu,debug:a=!1}=this.$options;Me.setLocale(o),this.debug=a,this.runtime=new ve({schema:r,beforeCreateInstance:u}),this.externalParams=i,this.store=new kd({instance:this.runtime.instance}),this.debugLog("engine is Instantiation complete"),n&&this.mount()}debugLog(...t){this.debug&&Jn(...t)}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}registerControl(...t){return this.runtime.register(...t),this}static register(t){return ve.register(t,"Runtime")}static judgeControlIsRegistered(t){return ve.staticRegisteredTypes.has(t.Runtime.controlType)}mount(){this.debugLog("engine\u7684mount\u65B9\u6CD5\u5F00\u59CB\u8C03\u7528");const{plugins:t=[]}=this.$options;this._handlerProxyState(),this.__plugins=t,this.applyPlugins(),this.setStates(this.getState()),this.debugLog("engine\u7684mount\u65B9\u6CD5\u8C03\u7528\u7ED3\u675F"),this.debug&&typeof window!="undefined"&&(window.engines[this.id]=this)}destroy(){this.debug&&typeof window!="undefined"&&delete window.engines[this.id]}_handlerProxyState(){this.store.state=Fn(this.store.state,this._proxyStateCallback.bind(this),this._proxyStateBeforeSetCallback.bind(this))}_proxyStateBeforeSetCallback(t,n,r,u){const{instance:i,rowIndex:o}=jr(n,this);if(!i)return r;if(this.assertInstance(i,oe.SUBTABLE)){if(r===null)return[];const c=i.props.headers.reduce((f,d)=>{const p=d.children[0];return p&&p.controlType===Z.FORM&&(f[p.id]=p.fieldType),f},{}),l=this.getEmptyState(i.id);return r==null?void 0:r.map(f=>ah(c,f,l))}const a=n.split("."),s=a[a.length-1];try{return bi(i.fieldType,s,r,u)}catch(c){throw tt(`the id=${i.id}'s instance setState error, %o ${c}.`,r),c}}_proxyStateCallback(t,n,r,u,i){Array.isArray(t)?this._handlerArrayUpdate(t,n,r,u,i):this._handlerObjectUpdate(t,n,r,u)}_handlerArrayUpdate(t,n,r,u,i){const a=jr(n,this).instance;if((a==null?void 0:a.controlType)!==Z.LIST)return;const s=g=>{const m=[];for(let C=0;C<g;C++){const h=this.listControlCreateRow(a,"subtable-row");h&&m.push(h)}return m},c=Bt;let l=[],f=[],d=[],p=!1;if(r&&u){switch(r){case"push":case"unshift":const m=u.length;l=s(m),f=u,a.children[r](...l),this.runtime.getFlatInstances();break;case"splice":if(u.length>2){const C=u.length-2,h=u.slice(2);l=s(C),f=h;const y=u[0],E=u[1];a.children[r](y,E,...l),this.runtime.getFlatInstances()}else{const C=u[0],h=u[1];C+h===a.children.length-1&&(p=!0),a.children[r](...u),this.runtime.getFlatInstances()}break;default:a.children[r](...u),this.runtime.getFlatInstances();break}r==="splice"?d=i:["pop","shift"].includes(r)&&(d=[i]);const g=this.getState(a.id);this._handlerSubtableUpdateUid(g),this.emit("list-change",{instance:a,value:g,options:Object.assign({},c,{changed:l,data:f,deleted:d!=null?d:[],jsonValue:JSON.stringify(g),isDeleteLastOne:p,type:r,args:u})}),Bt=null}}_handlerSubtableUpdateUid(t){t.forEach(n=>{n.uid||Object.assign(n,{uid:"new:"+Zt("uid")})})}_handlerObjectUpdate(t,n,r,u){const{instance:i,rowIndex:o}=jr(n,this);if(!i)return;const a=o,s=Bt||{};if(i.controlType===Z.LIST&&i.type===oe.SUBTABLE){i.children.length=0;const c=r;let l=[];for(let d=0;d<c.length;d++){const p=this.listControlCreateRow(i,"subtable-row");p&&l.push(p)}i.children.push(...l),this.runtime.getFlatInstances();let f=u!=null?u:[];(s==null?void 0:s.setData)===!0&&(f=[]),this._handlerSubtableUpdateUid(c),this.emit("list-change",{instance:i,value:r,options:uu(ae({},s),{changed:l,data:c,deleted:f,type:"push",jsonValue:JSON.stringify(c)})})}else this.emit("change",{instance:i,value:this.getState(i.id,a),rowIndex:a,options:uu(ae({},s),{oldValue:u})})}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{Xt=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this)}catch(r){Je(`${Xt} Plugin apply Error
|
|
2
|
+
${r}`)}finally{Xt=""}}),this.__pluginsApplied=!0)}listControlCreateRow(t,n){let r;if(n==="subtable-row"?r={children:[],controlType:Z.LAYOUT,id:un(),type:"subtable-row",props:{caption:"",isHide:!1,style:{height:"",heightConfig:"fill",width:"",widthConfig:"fill"}},fieldType:void 0,customEvents:[],pageStatus:0,rules:[],parent:void 0}:r=this.runtime.createControlInstance(n),!!r){if(r.controlType===Z.LAYOUT){const u=r,i=ee(t.props.headers),o=this.createControl(i);for(let a of o)a.parent||this.runtime.resetInstanceParent(a,u);u.children.push(...o)}return r.parent=t,r}}listControlAddRow(t,n="subtable-row"){const r=this.listControlCreateRow(t,n);!r||t.children.push(r)}emit(t,n){return We(this,null,function*(){if(t==="engine-mounted"){if(this.isMounted)return tt("The engine-mounted life cycle can only be triggered once"),Promise.resolve([]);if(this._jobTasks.length){console.time("engine-mounted need wait");const o=[...this._jobTasks];yield Promise.all(o),console.timeEnd("engine-mounted need wait")}this.isMounted=!0}let r,u;this.isMounted||(u=new Promise(o=>{r=o}),this._jobTasks.push(u));const i=yield Uo(Lr.prototype,this,"emit").call(this,t,n);return r&&u&&(r(),this._jobTasks.splice(this._jobTasks.indexOf(u),1)),i})}on(t,n){return Xt&&(n.applyingPluginName=Xt),super.on(t,n)}createControl(...t){return this.runtime.createControl(...t)}createInstance(t,n){return this.runtime.createControlInstance(t,n)}schemaEvent(t,n){this.emit(t,n)}updateInstanceProps(t,n,r,u){return this.setInstance(t,n,r,u)}getRule(t,n){return ve.staticGetRules(t,n)}getAllRules(t){var r,u;const n=this.runtime.allRules;return t===void 0?n:{rules:(r=n.rules[t])==null?void 0:r.fields,antdRules:(u=n.antdRules[t])==null?void 0:u.fields}}getRules(t,n=!1){var a,s,c,l,f,d,p;const r=this.runtime.rules,u=this.runtime.fieldCodeRules,i=this.store.controlIdMapping,o=n?u:r;if(t===void 0)return n?u:o;{if(t=n?(a=i[t])!=null&&a.children?(s=i[t].dataBind)==null?void 0:s.dataCode:((c=i[t].dataBind)==null?void 0:c.fieldCode)||t:t,t in o)return(l=o[t])==null?void 0:l.fields;let g;for(const m in o)if(t in(((f=o[m])==null?void 0:f.fields)||{})){g=(p=(d=o[m])==null?void 0:d.fields)==null?void 0:p[t];break}return g}}getAntdRules(t){var n;return t===void 0?this.runtime.antdRules:(n=this.runtime.antdRules[t])==null?void 0:n.fields}getState(t,n){return t===void 0?this.store.state:this.store.getState(t,n)}getEmptyState(t){return ee(t===void 0?this.store.emptyState:this.store.getEmptyState(t))}setPayloadOptions(t){Bt=t}setState(t,n,r,u){Bt=u,this.debugLog("[%o]: \u89E6\u53D1setState, \u4FEE\u6539\u7684\u503C\u4E3A%o, rowIndex=%o, options=%o",t,n,r,u),this.store.setState(t,n,r),this.debugLog("[%o]: setState\u5B8C\u6210, \u4FEE\u6539\u7684\u503C\u4E3A%o, rowIndex=%o",t,n,r),Bt=null}setStates(t,n,r){let u=t!=null?t:{};Object.keys(u).forEach(i=>{Object.entries(this.store.controlIdMapping).forEach(([o,a])=>{if(a.dataView===i){const s=u[i][o];s!==void 0&&this.setState(o,s,n,r)}else(o===i||a.children&&a.children[i])&&u[i]!==void 0&&this.setState(i,u[i],n,r)})})}getTitleField(t){const n=Object.values(this.store.state).filter(r=>r.submit_user)[0];return t?n[t]:n}getSystemField(t){var u,i;const n=["creator","process_location","create_time","uid","update_time","process_status","process_instance_id","process_key"],r=((u=this.externalParams)==null?void 0:u.data.data_set.values.filter(o=>n.some(a=>a==o.code)))||[];return t?(i=r.filter(o=>o.code==t)[0])==null?void 0:i.value:r}getField(t,n,r){if(!n){const s=this.getDataBindMapping(t);if(s){const{controlId:c}=s;return this.getState(c)}return}const u=this.getDataBindMapping(t,n);if(!u)return;const{dataBind:i,controlId:o}=u,a=this.getState(o,r);return Oe(i)?a:Object.entries(i).reduce((s,[c,l])=>l.fieldCode===n?s[c]:s,a)}getData(t){var u,i,o,a,s,c,l,f,d;if(!t)return;let n=this.getDataBindMapping(t),r=this.getControlIdMapping();if(n){const{controlId:p}=n,g=this.getField(t);if(Array.isArray(g))return g.map(C=>{var y,E,A,w,M,I;let h={};for(let j in C){const U=(A=(E=(y=r[p])==null?void 0:y.children[j])==null?void 0:E.dataBind)==null?void 0:A.fieldCode;if(U!==""){if(U)h[U]=C[j];else if((w=r[p])!=null&&w.children[j])for(let V in C[j])h[(I=(M=r[p])==null?void 0:M.children[j])==null?void 0:I.dataBind[V].fieldCode]=C[j][V]}}return h});{let m={};for(let C in g)if((i=(u=r[C])==null?void 0:u.dataBind)!=null&&i.fieldCode)m[(o=r[C])==null?void 0:o.dataBind.fieldCode]=g[C];else if((s=(a=r[C])==null?void 0:a.dataBind)!=null&&s.dataCode)Array.isArray(g[C])&&(m[(c=r[C])==null?void 0:c.dataBind.dataCode]=(l=g[C])==null?void 0:l.map(h=>{var E,A,w,M,I,j;let y={};for(let U in h){const V=((E=r[C])==null?void 0:E.children)&&U?(I=(M=(w=(A=r[C])==null?void 0:A.children)==null?void 0:w[U])==null?void 0:M.dataBind)==null?void 0:I.fieldCode:"";if(V!=="")if(V)y[V]=h[U];else for(let T in h[U])y[(j=r[C].children[U])==null?void 0:j.dataBind[T].fieldCode]=h[U][T]}return y}));else if(r[C])for(let h in g[C])m[(d=(f=r[C])==null?void 0:f.dataBind[h])==null?void 0:d.fieldCode]=g[C][h];return m}}}setField(t,n,r,u,i){var c;const o=this.getDataBindMapping(t,n);if(!o)return;const{dataBind:a,controlId:s}=o;if(Oe(a))this.setState(s,r,u,i);else{const l=(c=ee(this.getState(s,u)))!=null?c:this.getEmptyState(s),f=Object.entries(a).reduce((d,[p,g])=>(g.fieldCode===n&&(d[p]=r),d),l);this.setState(s,f,u,i)}}setFields(t,n,r,u){const i=this.getDataBindMapping(t);if(!i)return;let o=[];i.fields.forEach(a=>{var f;const{dataBind:s,controlId:c,fieldCode:l}=a;if(!o.includes(l)&&!!Object.hasOwnProperty.call(n,l))if(Oe(s))this.setState(c,n[l],r,u);else{const d=(f=ee(this.getState(c,r)))!=null?f:this.getEmptyState(c),p=Object.entries(s).reduce((g,[m,C])=>{o.push(C.fieldCode);const h=n[C.fieldCode];return h!==void 0&&(g[m]=h),g},d);this.setState(a.controlId,p,r,u)}})}buildFields(t,n){const r=this.getDataBindMapping(t);if(!r||!r.fields)return;let u=[];const i={};return r.fields.forEach(o=>{const{dataBind:a,controlId:s,fieldCode:c}=o;if(!u.includes(c)&&!!Object.hasOwnProperty.call(n,c))if(Oe(a))i[s]=n[c];else{const l=this.getEmptyState(s);i[o.controlId]=Object.entries(a).reduce((f,[d,p])=>{u.push(p.fieldCode);const g=n[p.fieldCode];return g!==void 0&&(f[d]=g),f},l)}}),i}setData(t,n){this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\uFF0C\u53C2\u6570\u4E3A%o\uFF0C%o\u3002",t,n);const r=n==null?void 0:n.onlySetData;let u=this.store.defaultState;r===!0&&(u={}),Object.keys(t).map(i=>{var a,s,c,l;const o=t[i];if(Array.isArray(o)){const f=this.getDataBindMapping(i);if(!f)return;u[f.dataViewId]||(u[f.dataViewId]={}),o.length?u[f.dataViewId][f.controlId]=[]:u[f.dataViewId][f.controlId]=(a=u[f.dataViewId][f.controlId])!=null?a:[];let d={},p={};o.map(g=>{let m=ee(this.store.emptyState[f.dataViewId][f.controlId]),C=[];Object.keys(g).map(h=>{var E,A,w;if(C.includes(h))return;p.hasOwnProperty(h)===!1&&(p[h]=(A=(E=this.store.dataBindMapping[i])==null?void 0:E.fields)==null?void 0:A.find(M=>M.fieldCode===h));const y=p[h];if(y){if(Oe(y.dataBind)&&g[h]!==void 0)m[y.controlId]=g[h];else if(!Oe(y.dataBind)){d.hasOwnProperty(y.controlId)===!1&&(d[y.controlId]=ee((w=this.getEmptyState(y.controlId))!=null?w:{}));let M=ee(d[y.controlId]);Object.keys(y.dataBind).map(I=>{const j=y.dataBind[I];g[j.fieldCode]!==void 0&&(M[I]=g[j.fieldCode]),C.push(j.fieldCode)}),m[y.controlId]=M}}else h==="uid"&&g.uid!==void 0?m.uid=g.uid:h==="virtualStore"&&g.virtualStore!==void 0&&(m.virtualStore=Object.freeze(g.virtualStore))}),u[f.dataViewId][f.controlId].push(m)})}else if(o){let f=[];const d=ee(this.store.emptyState);(s=Object.keys(o))!=null&&s.length&&Object.keys(o).map(g=>{var C;if(f.includes(g))return;const m=this.getDataBindMapping(i,g);if(m){if(u[m.dataViewId[0]]||(u[m.dataViewId[0]]={}),Oe(m.dataBind)&&o[g]!==void 0)u[m.dataViewId[0]][m.controlId]=o[g]!==void 0?o[g]:d[m.dataViewId[0]][m.controlId];else if(!Oe(m.dataBind)){let h=(C=this.getEmptyState(m.controlId))!=null?C:{};Object.keys(m.dataBind).map(y=>{const E=m.dataBind[y];o[E.fieldCode]!==void 0&&(h[y]=o[E.fieldCode]),f.push(E.fieldCode)}),u[m.dataViewId[0]][m.controlId]=h}}});const p=this.getDataBindMapping(i);if(p){const g=(c=p==null?void 0:p.fields)==null?void 0:c.map(h=>h==null?void 0:h.controlId),m=this.getEmptyState(p==null?void 0:p.controlId),C=Object.keys((l=u==null?void 0:u[p==null?void 0:p.controlId])!=null?l:{});g==null||g.forEach(h=>{!C.includes(h)&&h!=="uid"&&u[p==null?void 0:p.controlId]&&(Object.keys(u).length?Object.assign(u[p==null?void 0:p.controlId],{[h]:m[h]}):Object.assign(u,{[p.controlId]:{[h]:m[h]}}))}),this.debugLog("engine setData\u65B9\u6CD5\u9ED8\u8BA4\u503C\u53CA\u8868\u5355\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",u)}}}),this.debugLog("engine setData\u65B9\u6CD5\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",u),this.setStates(u,void 0,ae({setData:!0},n)),this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\u5B8C\u6210\u3002")}getDataBind(t){return this.store.getDataBind(t)}getInstance(t,n){const r=this.getInstances(t,n===-1);if(r.length>0)return n!==void 0?n===-1?r[0]:r[n]:r[0]}getInstances(t,n=!1){if(t===void 0)return this.runtime.flatInstances;const r=Array.from(this.runtime.instanceMap[t]||[]);if(n&&r.length){const u=r[0],i=this.findSubtableHeadersControl(u.id);i!==void 0&&r.unshift(i)}return r}setInstance(t,n,r,u){try{if(typeof t=="string"&&u===-1)this.getInstances(t,u===-1).map(o=>{o&&(this.debugLog("[%o]: \u4FEE\u6539instance: %o\u7684%o\u5C5E\u6027\uFF0C\u4FEE\u6539\u7684\u503C\u4E3A%o\u3002",o.id,o,n,r),Kn(o.props,n,r),this.schemaEvent("schema-change",{instance:o,props:n,value:r,rowIndex:u}))});else{let i;if(typeof t=="string"?i=this.getInstance(t,u):i=t,!i)return;this.debugLog("[%o]: \u4FEE\u6539instance: %o\u7684%o\u5C5E\u6027\uFF0C\u4FEE\u6539\u7684\u503C\u4E3A%o\u3002",i.id,i,n,r),Kn(i.props,n,r),this.schemaEvent("schema-change",{instance:i,props:n,value:r,rowIndex:u})}}catch(i){throw i}}getControlIdMapping(){return this.store.controlIdMapping}getDataBindMapping(t,n){if(!t&&!n)return this.store.dataBindMapping;const r=this.store.dataBindMapping[t];if(!r){tt(`No corresponding dataCode=${t} was found`);return}if(!n)return r;const u=r.fields.find(i=>i.fieldCode===n);if(!u){tt(`No corresponding fieldCode=${n} was found`);return}return u}getAction(){return this.actionManager}initDataManager(t){this.dataManager=new Qd(t)}getDataManager(){return this.dataManager}assertInstance(t,n){return Ae(n)?t.type===n:n.includes(t.type)}assertInstanceIsCustomControl(t){return!ff(Ae(t)?t:t.type)}getInstanceRowIndex(t){if(!t.parent)return;let n;if(this.assertInstance(t.parent,oe.SUBTABLE_COLUMN)&&this.assertInstance(t.parent.parent,oe.SUBTABLE))n=-1;else if(this.getInstanceParentControl(t,oe.SUBTABLE_COLUMN)){const i=this.runtime.instanceMap[t.id];if(Object.prototype.toString.call(i)==="[object Array]"){const o=i.findIndex(a=>a===t);o>-1&&(n=o)}}return n}getInstanceParentControl(t,n){if(!!t.parent)return this.assertInstance(t.parent,n)?t.parent:this.getInstanceParentControl(t.parent,n)}getInstanceInSubtableHeader(t){const n=this.getInstanceRowIndex(t);if(n===void 0)return;if(n===-1)return t;const r=this.assertInstance(t,oe.SUBTABLE_COLUMN)?t:this.getInstanceParentControl(t,oe.SUBTABLE_COLUMN);if(!r)return;const i=this.getInstanceParentControl(t,oe.SUBTABLE).props.headers.find(o=>o.id===r.id);if(!!i)return i.children.find(o=>o.id===t.id)}setControlConfig(...t){return this.runtime.registerControlConfig(...t)}getControlConfig(t){return this.runtime.getControlConfig(t)}inList(t){const n=this.store.subtableHeadersControlIdMapping;let r;for(const u in n)if(t in n[u]){r=u;break}return r}findSubtableHeadersControl(t){const n=this.store.subtableHeadersControlIdMapping;let r;for(const u in n)if(t in n[u]){r=n[u][t];break}return r}}class sh{}class ch{constructor(t,n,r){this.config=t,this.env=n,this.eventJs=r}apply(t){this.engine=t;const n=this.config;if(!n)return;const r=t.getAction();if(this.eventJs){this.eventJs.exportsFun({ctx:t,utils:r.actionUtils});for(let[u,i]of Object.entries(this.eventJs))r.addAction(u,i)}else{const u=Bi(n,t,this.env);if(!u)return;for(let[i,o]of Object.entries(u.funcMap))r.addAction(i,o)}}}function Bi(e,t,n){if(!e.module||!e.module.compiled)return;const r=e.module.compiled,u={exports:{ctx:t,utils:t.getAction().actionUtils,env:n}};try{new Function("module","exports",r).call(u,u,u.exports)}catch(a){Je(a.message+". fail to parse the module"),process.env.NODE_ENV!=="production"&&Je("fail to parse the module")}const i={},o={};for(const[a,s]of Object.entries(u.exports))typeof s=="function"?i[a]=s:o[a]=s;return{funcMap:i,variables:o}}const lh={"engine-initialized":"did_init","engine-mounted":"did_mount","engine-submit":"will_submit","engine-submit-params":"do_submit","engine-submitted":"did_submit"};class fh{constructor(t){this.config=t}apply(t){this.engine=t,Object.entries(lh).forEach(([n,r])=>{t.on(n,u=>We(this,null,function*(){const i=yield this.callLifecycleEvent(r,u);return i.includes(!1)?!1:i}))})}callLifecycleEvent(t,n){return We(this,null,function*(){const r=this.config;return!r||!Array.isArray(r[t])?[]:yield Promise.all(r[t].map(i=>We(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})))})}}class dh{constructor(t){this.config=t}apply(t){this.engine=t,Fu.events.forEach(n=>{n.code&&n.key&&this.engineAddEventListener(n.code,n.key)})}engineAddEventListener(t,n){this.engine.on(t,r=>We(this,null,function*(){if(!((t==="change"||t==="list-change")&&!this.engine.isMounted)&&r.instance!==void 0)return yield this.callControlEvent(n,r)}))}callControlEvent(t,n){return We(this,null,function*(){const r=this.config[n.instance.id];if(!r||!Array.isArray(r[t]))return[];const u=yield Promise.all(r[t].map(i=>We(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})));return u.includes(!1)?!1:u})}}function wn(){return wn=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},wn.apply(null,arguments)}var _i={epsilon:1e-12,matrix:"Matrix",number:"number",precision:64,predictable:!1,randomSeed:null};function De(e){return typeof e=="number"}function Qe(e){return!e||typeof e!="object"||typeof e.constructor!="function"?!1:e.isBigNumber===!0&&typeof e.constructor.prototype=="object"&&e.constructor.prototype.isBigNumber===!0||typeof e.constructor.isDecimal=="function"&&e.constructor.isDecimal(e)===!0}function Si(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isComplex===!0||!1}function Mi(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isFraction===!0||!1}function Ni(e){return e&&e.constructor.prototype.isUnit===!0||!1}function bn(e){return typeof e=="string"}var xe=Array.isArray;function _t(e){return e&&e.constructor.prototype.isMatrix===!0||!1}function qr(e){return Array.isArray(e)||_t(e)}function hh(e){return e&&e.isDenseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function ph(e){return e&&e.isSparseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function Dh(e){return e&&e.constructor.prototype.isRange===!0||!1}function Ii(e){return e&&e.constructor.prototype.isIndex===!0||!1}function gh(e){return typeof e=="boolean"}function mh(e){return e&&e.constructor.prototype.isResultSet===!0||!1}function yh(e){return e&&e.constructor.prototype.isHelp===!0||!1}function vh(e){return typeof e=="function"}function Eh(e){return e instanceof Date}function Ah(e){return e instanceof RegExp}function Oi(e){return!!(e&&typeof e=="object"&&e.constructor===Object&&!Si(e)&&!Mi(e))}function Ch(e){return e===null}function Fh(e){return e===void 0}function wh(e){return e&&e.isAccessorNode===!0&&e.constructor.prototype.isNode===!0||!1}function bh(e){return e&&e.isArrayNode===!0&&e.constructor.prototype.isNode===!0||!1}function Bh(e){return e&&e.isAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function _h(e){return e&&e.isBlockNode===!0&&e.constructor.prototype.isNode===!0||!1}function Sh(e){return e&&e.isConditionalNode===!0&&e.constructor.prototype.isNode===!0||!1}function Mh(e){return e&&e.isConstantNode===!0&&e.constructor.prototype.isNode===!0||!1}function Nh(e){return e&&e.isFunctionAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ih(e){return e&&e.isFunctionNode===!0&&e.constructor.prototype.isNode===!0||!1}function Oh(e){return e&&e.isIndexNode===!0&&e.constructor.prototype.isNode===!0||!1}function xh(e){return e&&e.isNode===!0&&e.constructor.prototype.isNode===!0||!1}function Th(e){return e&&e.isObjectNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ph(e){return e&&e.isOperatorNode===!0&&e.constructor.prototype.isNode===!0||!1}function $h(e){return e&&e.isParenthesisNode===!0&&e.constructor.prototype.isNode===!0||!1}function Rh(e){return e&&e.isRangeNode===!0&&e.constructor.prototype.isNode===!0||!1}function jh(e){return e&&e.isRelationalNode===!0&&e.constructor.prototype.isNode===!0||!1}function kh(e){return e&&e.isSymbolNode===!0&&e.constructor.prototype.isNode===!0||!1}function Lh(e){return e&&e.constructor.prototype.isChain===!0||!1}function Ur(e){var t=typeof e;return t==="object"?e===null?"null":Qe(e)?"BigNumber":e.constructor&&e.constructor.name?e.constructor.name:"Object":t}function yt(e){var t=typeof e;if(t==="number"||t==="string"||t==="boolean"||e===null||e===void 0)return e;if(typeof e.clone=="function")return e.clone();if(Array.isArray(e))return e.map(function(n){return yt(n)});if(e instanceof Date)return new Date(e.valueOf());if(Qe(e))return e;if(Oi(e))return qh(e,yt);throw new TypeError("Cannot clone: unknown type of value (value: ".concat(e,")"))}function qh(e,t){var n={};for(var r in e)Bn(e,r)&&(n[r]=t(e[r]));return n}function Kt(e,t){var n,r,u;if(Array.isArray(e)){if(!Array.isArray(t)||e.length!==t.length)return!1;for(r=0,u=e.length;r<u;r++)if(!Kt(e[r],t[r]))return!1;return!0}else{if(typeof e=="function")return e===t;if(e instanceof Object){if(Array.isArray(t)||!(t instanceof Object))return!1;for(n in e)if(!(n in t)||!Kt(e[n],t[n]))return!1;for(n in t)if(!(n in e))return!1;return!0}else return e===t}}function Bn(e,t){return e&&Object.hasOwnProperty.call(e,t)}function Uh(e,t){for(var n={},r=0;r<t.length;r++){var u=t[r],i=e[u];i!==void 0&&(n[u]=i)}return n}var Vh=["Matrix","Array"],Hh=["number","BigNumber","Fraction"],xi=function(t){if(t)throw new Error(`The global config is readonly.
|
|
3
3
|
Please create a mathjs instance if you want to change the default configuration.
|
|
4
4
|
Example:
|
|
5
5
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-engine",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.51.0-lx0",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-core": "4.
|
|
30
|
-
"@byteluck-fe/model-driven-shared": "
|
|
29
|
+
"@byteluck-fe/model-driven-core": "4.51.0-lx0",
|
|
30
|
+
"@byteluck-fe/model-driven-shared": "4.51.0-lx0",
|
|
31
31
|
"@types/mathjs": "^9.4.2",
|
|
32
32
|
"mathjs": "^11.3.3"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "~18.0.6"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "d966159177ec7a8334131585e2bdd4a82bde1c80"
|
|
38
38
|
}
|