@byteluck-fe/model-driven-engine 1.7.6-bete.12 → 1.7.6-bete.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -440,7 +440,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
440
440
|
cc.log("㊗️_proxyStateBeforeSetCallback findItem " + key, newValue, oldValue);
|
|
441
441
|
cc.time("㊗️_proxyStateBeforeSetCallback findItem " + key + " " + now);
|
|
442
442
|
var instance = findItem(this.runtime.flatInstances, key);
|
|
443
|
-
cc.
|
|
443
|
+
cc.timeEnd("㊗️_proxyStateBeforeSetCallback findItem " + key + " " + now);
|
|
444
444
|
// 找不到控件说明不是改动控件上的字段,直接通过
|
|
445
445
|
if (!instance) {
|
|
446
446
|
return newValue;
|
|
@@ -484,7 +484,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
484
484
|
var cc = console;
|
|
485
485
|
cc.time("㊗️ _handlerArrayUpdate findItem" + key);
|
|
486
486
|
var subtable = findItem(this.runtime.flatInstances, key);
|
|
487
|
-
cc.
|
|
487
|
+
cc.timeEnd("㊗️ _handlerArrayUpdate findItem" + key);
|
|
488
488
|
if (!_instanceof(subtable, RuntimeListControl)) return;
|
|
489
489
|
// 新增多行方法
|
|
490
490
|
var createRows = function(len) {
|
|
@@ -579,7 +579,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
579
579
|
cc.log("㊗️_handlerObjectUpdate findItem " + key, value, oldValue);
|
|
580
580
|
cc.time("㊗️_handlerObjectUpdate findItem " + key + " " + now);
|
|
581
581
|
var instance = findItem(this.runtime.flatInstances, key);
|
|
582
|
-
cc.
|
|
582
|
+
cc.timeEnd("㊗️_handlerObjectUpdate findItem " + key + " " + now);
|
|
583
583
|
if (!instance) {
|
|
584
584
|
return;
|
|
585
585
|
}
|
|
@@ -1150,6 +1150,10 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1150
1150
|
if (controlId === undefined) {
|
|
1151
1151
|
return this.runtime.flatInstances;
|
|
1152
1152
|
}
|
|
1153
|
+
var cc = console;
|
|
1154
|
+
var now = Date.now();
|
|
1155
|
+
var timeLabel = "⚠️ getInstances " + controlId + " " + header + now;
|
|
1156
|
+
cc.time(timeLabel);
|
|
1153
1157
|
var instances = this.runtime.flatInstances.filter(// @ts-ignore
|
|
1154
1158
|
function(item) {
|
|
1155
1159
|
return item.id === controlId;
|
|
@@ -1190,6 +1194,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1190
1194
|
}
|
|
1191
1195
|
}
|
|
1192
1196
|
}
|
|
1197
|
+
cc.timeEnd(timeLabel);
|
|
1193
1198
|
return instances;
|
|
1194
1199
|
};
|
|
1195
1200
|
_proto.setInstance = function setInstance(instance, props, value, rowIndex) {
|
|
@@ -283,6 +283,10 @@ export var CalcPlugin = /*#__PURE__*/ function() {
|
|
|
283
283
|
if (!scriptEcho || scriptEcho.length === 0) {
|
|
284
284
|
return;
|
|
285
285
|
}
|
|
286
|
+
var cc = console;
|
|
287
|
+
var now = Date.now();
|
|
288
|
+
var timeLabel = "\uD83D\uDC36 computedCalcValue " + control.id + " " + now;
|
|
289
|
+
cc.time(timeLabel);
|
|
286
290
|
// @ts-ignore
|
|
287
291
|
var scriptText = scriptEcho.reduce(function(result, current) {
|
|
288
292
|
if (current.type === CALC_TOKEN_TYPE.Operator || current.type === CALC_TOKEN_TYPE.Number) {
|
|
@@ -343,6 +347,8 @@ export var CalcPlugin = /*#__PURE__*/ function() {
|
|
|
343
347
|
rowIndex = this.engine.getInstanceRowIndex(control);
|
|
344
348
|
// 控件在明细表内,但是没有行下标,说明控件被已经删除了,所以直接return
|
|
345
349
|
if (rowIndex === undefined) {
|
|
350
|
+
cc.log(timeLabel, "------> 控件在明细表内,但是没有行下标,说明控件被已经删除了,所以直接return");
|
|
351
|
+
cc.timeEnd(timeLabel);
|
|
346
352
|
return;
|
|
347
353
|
}
|
|
348
354
|
}
|
|
@@ -350,6 +356,8 @@ export var CalcPlugin = /*#__PURE__*/ function() {
|
|
|
350
356
|
var result = !value || value === Infinity || value === -Infinity ? 0 : control.props.precision === "" ? value : Number(value.toFixed(control.props.precision));
|
|
351
357
|
// 如果值没变的话,不触发修改
|
|
352
358
|
if (result === (oldValue === null || oldValue === void 0 ? void 0 : oldValue.result)) {
|
|
359
|
+
cc.log(timeLabel, "------> 如果值没变的话,不触发修改");
|
|
360
|
+
cc.timeEnd(timeLabel);
|
|
353
361
|
return;
|
|
354
362
|
}
|
|
355
363
|
var _oldValue_unit;
|
|
@@ -357,6 +365,7 @@ export var CalcPlugin = /*#__PURE__*/ function() {
|
|
|
357
365
|
result: result,
|
|
358
366
|
unit: (_oldValue_unit = oldValue === null || oldValue === void 0 ? void 0 : oldValue.unit) !== null && _oldValue_unit !== void 0 ? _oldValue_unit : ""
|
|
359
367
|
}, rowIndex);
|
|
368
|
+
cc.timeEnd(timeLabel);
|
|
360
369
|
};
|
|
361
370
|
/**
|
|
362
371
|
* @description 获取数字值,因为计算公式可以依赖计算公式和金额,所以需要从value中取到对应的值
|
package/dist/index.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
var N1=Object.defineProperty,I1=Object.defineProperties;var x1=Object.getOwnPropertyDescriptors;var so=Object.getOwnPropertySymbols,O1=Object.getPrototypeOf,R1=Object.prototype.hasOwnProperty,$1=Object.prototype.propertyIsEnumerable,P1=Reflect.get;var $n=Math.pow,co=(Z,Y,ne)=>Y in Z?N1(Z,Y,{enumerable:!0,configurable:!0,writable:!0,value:ne}):Z[Y]=ne,oe=(Z,Y)=>{for(var ne in Y||(Y={}))R1.call(Y,ne)&&co(Z,ne,Y[ne]);if(so)for(var ne of so(Y))$1.call(Y,ne)&&co(Z,ne,Y[ne]);return Z},Zr=(Z,Y)=>I1(Z,x1(Y));var fo=(Z,Y,ne)=>P1(O1(Z),ne,Y);var ze=(Z,Y,ne)=>new Promise((Pn,Gt)=>{var Tn=We=>{try{Nt(ne.next(We))}catch(It){Gt(It)}},Ln=We=>{try{Nt(ne.throw(We))}catch(It){Gt(It)}},Nt=We=>We.done?Pn(We.value):Promise.resolve(We.value).then(Tn,Ln);Nt((ne=ne.apply(Z,Y)).next())});(function(Z,Y){typeof exports=="object"&&typeof module!="undefined"?Y(exports,require("crypto")):typeof define=="function"&&define.amd?define(["exports","crypto"],Y):(Z=typeof globalThis!="undefined"?globalThis:Z||self,Y(Z.modelDrivenEngine={},Z.require$$0))})(this,function(Z,Y){"use strict";function ne(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var Pn=ne(Y),Gt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Tn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Ln="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Nt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",We="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",It="{caption}\u5FC5\u586B",lo="\u8BF7\u8F93\u5165\u6807\u9898",ho="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",po="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Do="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",go="\u8BF7\u7ED1\u5B9A\u8868\u5355",vo="\u8BF7\u7ED1\u5B9A\u5217\u8868",mo="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",yo="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Eo="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Ao="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Co="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Fo="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",wo="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Bo="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",bo="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",So="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",_o="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Mo="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",No="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Io="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",xo="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Oo="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Ro="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",$o="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Po="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",To="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Lo="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",jo="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",qo="\u8BF7\u7ED1\u5B9A\u670D\u52A1",ko="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Vo="\u8BF7\u9009\u62E9\u7701",Uo="\u8BF7\u9009\u62E9\u5E02",Ho="\u8BF7\u9009\u62E9\u533A",zo="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Wo="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Zo="\u8BF7\u8F93\u5165\u5217\u5BBD",Xo="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Go="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Jo="\u8BF7\u9009\u62E9\u63A7\u4EF6",Ko="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Qo="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Yo="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ea="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",ta="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",na="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ra="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ua="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ia="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",oa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",aa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",sa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ca="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",fa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",la="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ha="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",da="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",pa="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Da="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ga="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",va="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ma={isNotNumber:Gt,isNotString:Tn,isNotObject:Ln,isNotArray:Nt,isNotBoolean:We,runtimeRequired:It,pleaseEnterCaption:lo,pleaseEnterCaptionTip:ho,pleaseEnterPlaceholder:po,pleaseEnterFieldCode:Do,pleaseEnterForm:go,pleaseEnterList:vo,pleaseEnterProcess:mo,pleaseEnterLabel:yo,pleaseEnterValue:Eo,bizKeyNotBindFiled:Ao,pleaseEnterNumberRange:Co,pleaseEnterAValueGreaterThanMin:Fo,pleaseEnterAValueLessThanMax:wo,numberRangeSetError:Bo,stringRangeError:bo,attachmentMaxSize:So,pleaseEnterTotalScoreSetting:_o,theTotalScoreMustNotBeLessThan1:Mo,scoreDefaultValueRange:No,attachmentLimitError:Io,PleaseReselectTheOptionalQuantity:xo,TheMaximumLengthIsGreaterThanTheMinimumLength:Oo,TheMinimumLengthIsGreaterThanTheMaximumLength:Ro,PleaseSelectTheCorrectOptionSettings:$o,optionIdIsRepeat:Po,optionIsRequired:To,pleaseEnterDataCode:Lo,pleaseEnterValueFieldCode:jo,pleaseEnterSvcCode:qo,pleaseBindAtLeastOneDisplayValue:ko,pleaseSelectProvince:Vo,pleaseSelectCity:Uo,pleaseSelectDistrict:Ho,limitRowsCannotBeLessThan0:zo,TheNumberOfRowsCannotBeLessThanMinRows:Wo,pleaseEnterColumnWidth:Zo,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Xo,pleaseCompleteAllRulesAndConditions:Go,pleaseSelectControl:Jo,pleaseSelectAtLeastOneColumn:Ko,pleaseSelectFillBackMode:Qo,pleaseSelectDashboard:Yo,rootNodeIsRequired:ea,theViewNameCannotBeEmpty:ta,pleaseSelectOcrType:na,pleaseSelectAtLeastOneFieldToFillIn:ra,pleaseChooseAtLeastOne:ua,pleaseEnterButtonContent:ia,pleaseEnterDataCodeInDataSetting:oa,pleaseEnterValueFieldCodeInDataSetting:aa,pleaseEnterSvcCodeInDataSetting:sa,pleaseBindAtLeastOneDisplayValueInDataSetting:ca,rootNodeIsRequiredInDataSetting:fa,pleaseEnterMaxHeight:la,pleaseEnter:ha,pleaseEnterWatermark:da,pleaseEnterFileName:pa,pleaseUploadAtLeastOnePrintTemplate:Da,pleaseAssignBusiness:ga,pleaseAssignExternal:va},ya="Please enter a number",Ea="Please enter a string",Aa="Please enter an object",Ca="Please enter an array",Fa="Please enter a boolean",wa="{caption} Required",Ba="Please enter the title",ba="Please enter the bubble prompt",Sa="Please enter the prompt text",_a="Please bind data items",Ma="Please bind the form",Na="Please bind the list",Ia="Please bind the process",xa="Please enter the displayed value",Oa="Please enter the stored value",Ra="The document number is not bound to the data item",$a="Please enter a value greater than or equal to {min} and less than or equal to {max}",Pa="Please enter a value greater than or equal to {min}",Ta="Please enter a value less than or equal to {max}",La="The value range is set incorrectly",ja="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",qa="The attachment size must be between 0MB and 1000MB",ka="Please fill in the total score setting",Va="The total score cannot be less than 1",Ua="The default value must be between {min} and {max}",Ha="The number of attachments uploaded must be between {min} and {max}",za="Please re-select the optional quantity",Wa="The maximum length of the control must be greater than the minimum length",Za="The minimum length of the control must be less than the maximum length",Xa="Please select the correct option setting",Ga="Option ID cannot be repeated",Ja="Please enter at least one option",Ka="Please bind the data source",Qa="Please bind the stored value",Ya="Please bind the service",es="At least one display value must be bound",ts="Please select a province",ns="Please select a city",rs="Please select a district",us="The minimum number of lines to fill in cannot be less than 0",is="The number of rows cannot be less than {min} rows",os="Please enter the column width",as="Please set the logical relationship of all rule conditions",ss="Please complete all rules and conditions",cs="please select control",fs="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ls="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",hs="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ds="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ps="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ds="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",gs="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",vs="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ms="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ys="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Es="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",As="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Cs="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Fs="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ws="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Bs="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",bs="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ss="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",_s={isNotNumber:ya,isNotString:Ea,isNotObject:Aa,isNotArray:Ca,isNotBoolean:Fa,runtimeRequired:wa,pleaseEnterCaption:Ba,pleaseEnterCaptionTip:ba,pleaseEnterPlaceholder:Sa,pleaseEnterFieldCode:_a,pleaseEnterForm:Ma,pleaseEnterList:Na,pleaseEnterProcess:Ia,pleaseEnterLabel:xa,pleaseEnterValue:Oa,bizKeyNotBindFiled:Ra,pleaseEnterNumberRange:$a,pleaseEnterAValueGreaterThanMin:Pa,pleaseEnterAValueLessThanMax:Ta,numberRangeSetError:La,stringRangeError:ja,attachmentMaxSize:qa,pleaseEnterTotalScoreSetting:ka,theTotalScoreMustNotBeLessThan1:Va,scoreDefaultValueRange:Ua,attachmentLimitError:Ha,PleaseReselectTheOptionalQuantity:za,TheMaximumLengthIsGreaterThanTheMinimumLength:Wa,TheMinimumLengthIsGreaterThanTheMaximumLength:Za,PleaseSelectTheCorrectOptionSettings:Xa,optionIdIsRepeat:Ga,optionIsRequired:Ja,pleaseEnterDataCode:Ka,pleaseEnterValueFieldCode:Qa,pleaseEnterSvcCode:Ya,pleaseBindAtLeastOneDisplayValue:es,pleaseSelectProvince:ts,pleaseSelectCity:ns,pleaseSelectDistrict:rs,limitRowsCannotBeLessThan0:us,TheNumberOfRowsCannotBeLessThanMinRows:is,pleaseEnterColumnWidth:os,pleaseSetTheLogicalRelationshipOfAllRuleConditions:as,pleaseCompleteAllRulesAndConditions:ss,pleaseSelectControl:cs,pleaseSelectDashboard:fs,theViewNameCannotBeEmpty:ls,pleaseSelectOcrType:hs,pleaseSelectAtLeastOneFieldToFillIn:ds,pleaseChooseAtLeastOne:ps,pleaseEnterButtonContent:Ds,pleaseEnterDataCodeInDataSetting:gs,pleaseEnterValueFieldCodeInDataSetting:vs,pleaseEnterSvcCodeInDataSetting:ms,pleaseBindAtLeastOneDisplayValueInDataSetting:ys,rootNodeIsRequiredInDataSetting:Es,pleaseEnterMaxHeight:As,pleaseEnter:Cs,pleaseEnterWatermark:Fs,pleaseEnterFileName:ws,pleaseUploadAtLeastOnePrintTemplate:Bs,pleaseAssignBusiness:bs,pleaseAssignExternal:Ss},Ms="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ns="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Is="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xs="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Os="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Rs="{caption}\u5FC5\u9808",$s="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ps="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ts="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ls="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",js="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qs="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ks="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Vs="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Us="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Hs="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",zs="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ws="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Zs="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Xs="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Gs="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Js="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ks="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Qs="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ys="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ec="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",tc="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",nc="\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",rc="\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",uc="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ic="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",oc="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ac="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",sc="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",cc="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",fc="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",lc="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",hc="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",dc="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",pc="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Dc="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",gc="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vc="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",mc="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",yc="please select control",Ec="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ac="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Cc="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Fc="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",wc="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Bc="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",bc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Sc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",_c="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Mc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Nc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ic="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",xc="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Oc="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Rc="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",$c="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Pc="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Tc="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Lc={isNotNumber:Ms,isNotString:Ns,isNotObject:Is,isNotArray:xs,isNotBoolean:Os,runtimeRequired:Rs,pleaseEnterCaption:$s,pleaseEnterCaptionTip:Ps,pleaseEnterPlaceholder:Ts,pleaseEnterFieldCode:Ls,pleaseEnterForm:js,pleaseEnterList:qs,pleaseEnterProcess:ks,pleaseEnterLabel:Vs,pleaseEnterValue:Us,bizKeyNotBindFiled:Hs,pleaseEnterNumberRange:zs,pleaseEnterAValueGreaterThanMin:Ws,pleaseEnterAValueLessThanMax:Zs,numberRangeSetError:Xs,stringRangeError:Gs,attachmentMaxSize:Js,pleaseEnterTotalScoreSetting:Ks,theTotalScoreMustNotBeLessThan1:Qs,scoreDefaultValueRange:Ys,attachmentLimitError:ec,PleaseReselectTheOptionalQuantity:tc,TheMaximumLengthIsGreaterThanTheMinimumLength:nc,TheMinimumLengthIsGreaterThanTheMaximumLength:rc,PleaseSelectTheCorrectOptionSettings:uc,optionIdIsRepeat:ic,optionIsRequired:oc,pleaseEnterDataCode:ac,pleaseEnterValueFieldCode:sc,pleaseEnterSvcCode:cc,pleaseBindAtLeastOneDisplayValue:fc,pleaseSelectProvince:lc,pleaseSelectCity:hc,pleaseSelectDistrict:dc,limitRowsCannotBeLessThan0:pc,TheNumberOfRowsCannotBeLessThanMinRows:Dc,pleaseEnterColumnWidth:gc,pleaseSetTheLogicalRelationshipOfAllRuleConditions:vc,pleaseCompleteAllRulesAndConditions:mc,pleaseSelectControl:yc,pleaseSelectDashboard:Ec,theViewNameCannotBeEmpty:Ac,pleaseSelectOcrType:Cc,pleaseSelectAtLeastOneFieldToFillIn:Fc,pleaseChooseAtLeastOne:wc,pleaseEnterButtonContent:Bc,pleaseEnterDataCodeInDataSetting:bc,pleaseEnterValueFieldCodeInDataSetting:Sc,pleaseEnterSvcCodeInDataSetting:_c,pleaseBindAtLeastOneDisplayValueInDataSetting:Mc,rootNodeIsRequiredInDataSetting:Nc,pleaseEnterMaxHeight:Ic,pleaseEnter:xc,pleaseEnterWatermark:Oc,pleaseEnterFileName:Rc,pleaseUploadAtLeastOnePrintTemplate:$c,pleaseAssignBusiness:Pc,pleaseAssignExternal:Tc},jc={zhCN:ma,enUS:_s,jaJP:Lc},xe;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(xe||(xe={}));var pt;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(pt||(pt={}));var Xr="zh-CN";function we(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Le;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(Le||(Le={}));var X;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(X||(X={}));var H;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(H||(H={}));var De;De={},we(De,H.ARRAY,X.ARRAY_COLUMN),we(De,H.AUTO_NUMBER,X.AUTO_NUMBER_COLUMN),we(De,H.DECIMAL,X.DECIMAL_COLUMN),we(De,H.DEPARTMENTS,X.DEPARTMENT_COLUMN),we(De,H.FILE,X.FILE_COLUMN),we(De,H.IMAGE,X.IMAGE_COLUMN),we(De,H.ADDRESS,X.LOCATION_COLUMN),we(De,H.EMPLOYEES,X.EMPLOYEE_COLUMN),we(De,H.TEXT,X.TEXT_COLUMN),we(De,H.TIMESCOPE,X.TIMESCOPE_COLUMN),we(De,H.TIMESTAMP,X.TIMESTAMP_COLUMN),we(De,H.VARCHAR,X.VARCHAR_COLUMN),we(De,H.RELATION,X.VARCHAR_COLUMN);var Gr;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(Gr||(Gr={}));var Jr="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",qc=Jr+"0123456789";function jn(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?Jr:qc,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function qn(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 kc(e){if(Array.isArray(e))return qn(e)}function Vc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Kr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Uc(){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 Jt(e,t,n){return Uc()?Jt=Reflect.construct:Jt=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),l=new c;return o&&Ot(l,o.prototype),l},Jt.apply(null,arguments)}function xt(e){return xt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},xt(e)}function Qr(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&&Ot(e,t)}function Hc(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function zc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Wc(){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 Zc(e,t){return t&&(Xc(t)==="object"||typeof t=="function")?t:Vc(e)}function Ot(e,t){return Ot=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ot(e,t)}function Yr(e){return kc(e)||zc(e)||Gc(e)||Wc()}var Xc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Gc(e,t){if(!!e){if(typeof e=="string")return qn(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 qn(e,t)}}function kn(e){var t=typeof Map=="function"?new Map:void 0;return kn=function(r){if(r===null||!Hc(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 Jt(r,arguments,xt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Ot(u,r)},kn(e)}function Jc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function eu(e){var t=Jc();return function(){var r=xt(e),u;if(t){var i=xt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Zc(this,u)}}var Vn=console;function Je(){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=Vn).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(Yr(u)))}function Un(){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=Vn).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(Yr(u)))}function Kc(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Hn=function(e){Qr(n,e);var t=eu(n);function n(r){Kr(this,n);var u;return u=t.call(this,r),u.name="\u{1F4A5} Driven Error",u.message=r?Kc(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return n}(kn(Error)),Qc=function(e){Qr(n,e);var t=eu(n);function n(r){Kr(this,n);var u;return u=t.call(this,r),u.name="\u{1F6A8} Driven Reference Error",u}return n}(Hn);function Ze(e){throw new Hn(e)}function tu(e){throw new Qc(e)}function Kt(e){Vn.error(new Hn(e))}function at(e,t){Array.isArray(e)&&e.map(function(n){switch(n.controlType){case"layout":at(n==null?void 0:n.children,t);break;case"search":at(n==null?void 0:n.children,t);break;case"form":t(n)}})}var Yc=Object.prototype.toString;function nu(e,t){return Yc.call(e)==="[object "+t+"]"}function ef(e){return nu(e,"String")}function tf(e){return nu(e,"Promise")}var nf=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();tf(r)?r.then(function(u){n._messageCache.clear(),n.messages[n.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var u=this.getMessage(t);return u?this.formatMessage(u,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(u,i,o,s){if(u!==void 0){var c=u[i];if(!(o===s.length-1&&!ef(c)))return c}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,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 rf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Oe=function(){function e(){rf(this,e)}return e.getMessage=function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)},e.resetI18n=function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Xr;return new nf({locale:n,messages:jc})},e.setLocale=function(n){return this.$i18n.setLocale(n)},e}();Oe.$i18n=Oe.resetI18n();function ru(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,o){return"."+o}).split("."),u=!1;return r.reduce(function(i,o,s,c){var l=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,o)){Je("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),i,i);return}return s===c.length-1&&!Object.is(l[o],n)&&(l[o]=n,u=!0),l[o]}},e),u}var Ke=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function uu(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var zn={exports:{}};(function(e){(function(t){var n=function(g,E,b){if(!l(E)||a(E)||h(E)||d(E)||c(E))return E;var C,M=0,O=0;if(f(E))for(C=[],O=E.length;M<O;M++)C.push(n(g,E[M],b));else{C={};for(var P in E)Object.prototype.hasOwnProperty.call(E,P)&&(C[g(P,b)]=n(g,E[P],b))}return C},r=function(g,E){E=E||{};var b=E.separator||"_",C=E.split||/(?=[A-Z])/;return g.split(C).join(b)},u=function(g){return p(g)?g:(g=g.replace(/[\-_\s]+(.)?/g,function(E,b){return b?b.toUpperCase():""}),g.substr(0,1).toLowerCase()+g.substr(1))},i=function(g){var E=u(g);return E.substr(0,1).toUpperCase()+E.substr(1)},o=function(g,E){return r(g,E).toLowerCase()},s=Object.prototype.toString,c=function(g){return typeof g=="function"},l=function(g){return g===Object(g)},f=function(g){return s.call(g)=="[object Array]"},a=function(g){return s.call(g)=="[object Date]"},h=function(g){return s.call(g)=="[object RegExp]"},d=function(g){return s.call(g)=="[object Boolean]"},p=function(g){return g=g-0,g===g},D=function(g,E){var b=E&&"process"in E?E.process:E;return typeof b!="function"?g:function(C,M){return b(C,g,M)}},v={camelize:u,decamelize:o,pascalize:i,depascalize:o,camelizeKeys:function(g,E){return n(D(u,E),g)},decamelizeKeys:function(g,E){return n(D(o,E),g,E)},pascalizeKeys:function(g,E){return n(D(i,E),g)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=v:t.humps=v})(Ke)})(zn);function te(e){if(e!==void 0)return typeof e=="object"?JSON.parse(JSON.stringify(e)):e}function je(e){return Object.prototype.toString.call(e)==="[object Object]"}function uf(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function Dt(e){return Array.isArray(e)}function Be(e){return typeof e=="string"}function Qt(e){return typeof e=="number"}function iu(e){return typeof e=="function"}function of(e){return Dt(e)&&e.every(function(t){return Be(t)})}function af(e){return Dt(e)&&e.every(function(t){return Qt(t)||t===""})}function ou(e){return/^\[.*?]$/.test(e)}function Yt(e){return/^{.*?}$/.test(e)}function Wn(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 sf(e){if(Array.isArray(e))return Wn(e)}function au(e,t,n,r,u,i,o){try{var s=e[i](o),c=s.value}catch(l){n(l);return}s.done?t(c):Promise.resolve(c).then(r,u)}function cf(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(c){au(i,r,u,o,s,"next",c)}function s(c){au(i,r,u,o,s,"throw",c)}o(void 0)})}}function ff(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function lf(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function hf(){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 Zn(e){return sf(e)||lf(e)||df(e)||hf()}function df(e,t){if(!!e){if(typeof e=="string")return Wn(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 Wn(e,t)}}var pf=function(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(l){return function(f){return c([l,f])}}function c(l){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=l[0]&2?r.return:l[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,l[1])).done)return u;switch(r=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return o.label++,{value:l[1],done:!1};case 5:o.label++,r=l[1],l=[0];continue;case 7:l=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){o=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){o.label=l[1];break}if(l[0]===6&&o.label<u[1]){o.label=u[1],u=l;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(l);break}u[2]&&o.ops.pop(),o.trys.pop();continue}l=t.call(e,o)}catch(f){l=[6,f],r=0}finally{n=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},su=function(){function e(){ff(this,e),this._events=new Map,this.debug=!1}var t=e.prototype;return t.emit=function(r){for(var u=arguments.length,i=new Array(u>1?u-1:0),o=1;o<u;o++)i[o-1]=arguments[o];var s=this;return cf(function(){var c,l,f,a,h,d,p,D,v,g,E,b;return pf(this,function(C){switch(C.label){case 0:if(c=s._events.get(r),l=[],!c)return[3,10];f=c.slice(),a=!0,h=!1,d=void 0,C.label=1;case 1:C.trys.push([1,8,9,10]),p=f[Symbol.iterator](),C.label=2;case 2:if(a=(D=p.next()).done)return[3,7];if(v=D.value,!c.includes(v))return[3,6];C.label=3;case 3:return C.trys.push([3,5,,6]),s.debug&&Un.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(r," \u4E8B\u4EF6: ").concat(v.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+v.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"\u3002")].concat(Zn(i))),[4,v.apply(null,Zn(i))];case 4:return g=C.sent(),s.debug&&Un.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(r," \u4E8B\u4EF6: ").concat(v.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+v.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Zn(i),[g])),l.push(g),g===!1?[3,7]:[3,6];case 5:return E=C.sent(),Kt(String(E)),[3,6];case 6:return a=!0,[3,2];case 7:return[3,10];case 8:return b=C.sent(),h=!0,d=b,[3,10];case 9:try{!a&&p.return!=null&&p.return()}finally{if(h)throw d}return[7];case 10:return[2,l]}})})()},t.on=function(r,u){if(this._events.has(r)){var i;(i=this._events.get(r))===null||i===void 0||i.push(u)}else this._events.set(r,[u])},t.off=function(r,u){if(this._events.has(r)){var i=this._events.get(r),o=i==null?void 0:i.indexOf(u);i==null||i.splice(o,1)}},t.delete=function(r){this._events.has(r)&&this._events.delete(r)},t.clear=function(){this._events=new Map},e}();function Df(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var gf=[{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_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_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"}],cu=function(){function e(){Df(this,e)}var t=e.prototype;return t.getEventsFromKeys=function(r){var u=typeof r=="string"?[r]:r;return e.events.filter(function(i){return u.includes(i.key)})},e}();cu.events=gf;function vf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var fu=[],en=function(){function e(n){vf(this,e),this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=n,this._initControls(n)}var t=e.prototype;return t.registerControlConfig=function(r,u){return this.controlConfigMap.set(r,u),this},t.getControlConfig=function(r){return this.controlConfigMap.get(r)},t.getControls=function(){return this._controls},t.register=function(r){r.__is_control__||Ze("".concat(r.name," is not a Control"));var u=this._controls.findIndex(function(i){return i.controlType===r.controlType});return u>-1&&(Je("The ".concat(r.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(u,1)),this.registeredControlTypes.add(r.controlType),this._controls.push(r),this},t.isLayoutControl=function(r){return r.controlType===Le.LAYOUT},t.isFormControl=function(r){return r.controlType===Le.FORM},t.isListControl=function(r){return r.controlType===Le.LIST},t.isColumnControl=function(r){return r.controlType===Le.COLUMN},t.createControl=function(r,u){var i=this;if(Array.isArray(r))return r.map(function(f){return i.createControl(f,u)});r.children&&(r.children=r.children.map(function(f){return i.createControl(f,u)})),this.isListControl(r)&&r.props.headers&&(r.props.headers=r.props.headers.map(function(f){return i.createControl(f,u)}));var o=this.getControlFormType(r.type);if(o){var s=r;if(typeof u=="function"){var c=u(s);c&&(s=c)}var l=new o(s);return l}else Ze("The constructor of ".concat(r.type," could not be found, please confirm that the constructor has been registered"))},t.createControlInstance=function(r,u){var i=this.getControlFormType(r);if(i)return new i(u)},t.getControlFormType=function(r){return this._controls.find(function(u){return u.controlType===r})},t._initControls=function(r){var u=this;this.constructor.staticControls.forEach(function(i){u.register(i[r])})},e.register=function(r){var u=r.Designer,i=r.Runtime;(!u||!i||!u.__is_control__||!i.__is_control__)&&Ze("".concat(r," is can't register as a Control"));var o=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return o>-1&&(Je("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(o,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(r),this},e}();en.staticControls=fu,en.staticRegisteredTypes=new Set(fu.map(function(e){return e.Designer.controlType})),en.staticRegisteredConfigs=new Map;function st(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Rt=function e(t){st(this,e);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:""},Qe=function e(){st(this,e)},tn=function e(t){st(this,e);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:Xn.CNY},nn=function e(t){st(this,e);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:""},rn=function e(t){st(this,e);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 s;this.provinceDisplay=(s=t==null?void 0:t.provinceDisplay)!==null&&s!==void 0?s:""},un=function e(t){st(this,e);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:""},Xn;(function(e){e.CNY="CNY",e.USD="USD",e.JPY="JPY",e.EUR="EUR",e.INR="INR",e.IDR="IDR",e.BRL="BRL",e.AED="AED",e.AUD="AUD",e.CAD="CAD",e.EGP="EGP",e.GBP="GBP",e.ZAR="ZAR",e.KRW="KRW",e.MAD="MAD",e.MXN="MXN",e.MYR="MYR",e.PHP="PHP",e.PLN="PLN",e.RUB="RUB",e.SGD="SGD",e.THB="THB",e.TRY="TRY",e.TWD="TWD",e.VND="VND",e.HKD="HKD",e.IEP="IEP"})(Xn||(Xn={}));var lu;(function(e){e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions"})(lu||(lu={}));var Gn;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(Gn||(Gn={}));var mf=function e(t){st(this,e);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 yf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Jn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ef(){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 on(e,t,n){return Ef()?on=Reflect.construct:on=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),l=new c;return o&&Pt(l,o.prototype),l},on.apply(null,arguments)}function $t(e){return $t=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},$t(e)}function Af(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Pt(e,t)}function Cf(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Ff(e,t){return t&&(wf(t)==="object"||typeof t=="function")?t:yf(e)}function Pt(e,t){return Pt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Pt(e,t)}var wf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Kn(e){var t=typeof Map=="function"?new Map:void 0;return Kn=function(r){if(r===null||!Cf(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,$t(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Pt(u,r)},Kn(e)}function Bf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function bf(e){var t=Bf();return function(){var r=$t(e),u;if(t){var i=$t(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Ff(this,u)}}var hu=function e(t){Jn(this,e),this.isHide={type:"boolean"}},du=function(e){Af(n,e);var t=bf(n);function n(r){return Jn(this,n),t.call(this)}return n}(Kn(Array)),ct=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";Jn(this,e);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new mf(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};ct.Rules=hu,ct.RuntimeRules=du;function qe(){return qe=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},qe.apply(this,arguments)}function Sf(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function Qn(e){return Qn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Qn(e)}function an(e,t){return an=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},an(e,t)}function _f(){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 sn(e,t,n){return _f()?sn=Reflect.construct:sn=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),l=new c;return o&&an(l,o.prototype),l},sn.apply(null,arguments)}function Mf(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Yn(e){var t=typeof Map=="function"?new Map:void 0;return Yn=function(r){if(r===null||!Mf(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 sn(r,arguments,Qn(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),an(u,r)},Yn(e)}var Nf=/%[sdj%]/g,pu=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(pu=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function er(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 be(){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(Nf,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(c){return"[Circular]"}break;default:return s}});return o}return u}function If(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function re(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||If(t)&&typeof e=="string"&&!e)}function xf(e,t,n){var r=[],u=0,i=e.length;function o(s){r.push.apply(r,s),u++,u===i&&n(r)}e.forEach(function(s){t(s,o)})}function Du(e,t,n){var r=0,u=e.length;function i(o){if(o&&o.length){n(o);return}var s=r;r=r+1,s<u?t(e[s],i):n([])}i([])}function Of(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var gu=function(e){Sf(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}(Yn(Error));function Rf(e,t,n,r){if(t.first){var u=new Promise(function(a,h){var d=function(v){return r(v),v.length?h(new gu(v,er(v))):a()},p=Of(e);Du(p,n,d)});return u.catch(function(a){return a}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var o=Object.keys(e),s=o.length,c=0,l=[],f=new Promise(function(a,h){var d=function(D){if(l.push.apply(l,D),c++,c===s)return r(l),l.length?h(new gu(l,er(l))):a()};o.length||(r(l),a()),o.forEach(function(p){var D=e[p];i.indexOf(p)!==-1?Du(D,n,d):xf(D,n,d)})});return f.catch(function(a){return a}),f}function vu(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 mu(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]=qe(qe({},e[n]),r):e[n]=r}}return e}function yu(e,t,n,r,u,i){e.required&&(!n.hasOwnProperty(e.field)||re(t,i||e.type))&&r.push(be(u.messages.required,e.fullField))}function $f(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(be(u.messages.whitespace,e.fullField))}var tr={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},Tt={integer:function(t){return Tt.number(t)&&parseInt(t,10)===t},float:function(t){return Tt.number(t)&&!Tt.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"&&!Tt.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(tr.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(tr.url)},hex:function(t){return typeof t=="string"&&!!t.match(tr.hex)}};function Pf(e,t,n,r,u){if(e.required&&t===void 0){yu(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?Tt[o](t)||r.push(be(u.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(be(u.messages.types[o],e.fullField,e.type))}function Tf(e,t,n,r,u){var i=typeof e.len=="number",o=typeof e.min=="number",s=typeof e.max=="number",c=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,l=t,f=null,a=typeof t=="number",h=typeof t=="string",d=Array.isArray(t);if(a?f="number":h?f="string":d&&(f="array"),!f)return!1;d&&(l=t.length),h&&(l=t.replace(c,"_").length),i?l!==e.len&&r.push(be(u.messages[f].len,e.fullField,e.len)):o&&!s&&l<e.min?r.push(be(u.messages[f].min,e.fullField,e.min)):s&&!o&&l>e.max?r.push(be(u.messages[f].max,e.fullField,e.max)):o&&s&&(l<e.min||l>e.max)&&r.push(be(u.messages[f].range,e.fullField,e.min,e.max))}var gt="enum";function Lf(e,t,n,r,u){e[gt]=Array.isArray(e[gt])?e[gt]:[],e[gt].indexOf(t)===-1&&r.push(be(u.messages[gt],e.fullField,e[gt].join(", ")))}function jf(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(be(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(be(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var U={required:yu,whitespace:$f,type:Pf,range:Tf,enum:Lf,pattern:jf};function qf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t,"string")&&!e.required)return n();U.required(e,t,r,i,u,"string"),re(t,"string")||(U.type(e,t,r,i,u),U.range(e,t,r,i,u),U.pattern(e,t,r,i,u),e.whitespace===!0&&U.whitespace(e,t,r,i,u))}n(i)}function kf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&U.type(e,t,r,i,u)}n(i)}function Vf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&(U.type(e,t,r,i,u),U.range(e,t,r,i,u))}n(i)}function Uf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&U.type(e,t,r,i,u)}n(i)}function Hf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),re(t)||U.type(e,t,r,i,u)}n(i)}function zf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&(U.type(e,t,r,i,u),U.range(e,t,r,i,u))}n(i)}function Wf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&(U.type(e,t,r,i,u),U.range(e,t,r,i,u))}n(i)}function Zf(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();U.required(e,t,r,i,u,"array"),t!=null&&(U.type(e,t,r,i,u),U.range(e,t,r,i,u))}n(i)}function Xf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&U.type(e,t,r,i,u)}n(i)}var Gf="enum";function Jf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&U[Gf](e,t,r,i,u)}n(i)}function Kf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t,"string")&&!e.required)return n();U.required(e,t,r,i,u),re(t,"string")||U.pattern(e,t,r,i,u)}n(i)}function Qf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t,"date")&&!e.required)return n();if(U.required(e,t,r,i,u),!re(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),U.type(e,s,r,i,u),s&&U.range(e,s.getTime(),r,i,u)}}n(i)}function Yf(e,t,n,r,u){var i=[],o=Array.isArray(t)?"array":typeof t;U.required(e,t,r,i,u,o),n(i)}function nr(e,t,n,r,u){var i=e.type,o=[],s=e.required||!e.required&&r.hasOwnProperty(e.field);if(s){if(re(t,i)&&!e.required)return n();U.required(e,t,r,o,u,i),re(t,i)||U.type(e,t,r,o,u)}n(o)}function el(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u)}n(i)}var Lt={string:qf,method:kf,number:Vf,boolean:Uf,regexp:Hf,integer:zf,float:Wf,array:Zf,object:Xf,enum:Jf,pattern:Kf,date:Qf,url:nr,hex:nr,email:nr,required:Yf,any:el};function rr(){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 ur=rr();function Ye(e){this.rules=null,this._messages=ur,this.define(e)}Ye.prototype={messages:function(t){return t&&(this._messages=mu(rr(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var u=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var i=t,o=n,s=r;if(typeof o=="function"&&(s=o,o={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function c(D){var v,g=[],E={};function b(C){if(Array.isArray(C)){var M;g=(M=g).concat.apply(M,C)}else g.push(C)}for(v=0;v<D.length;v++)b(D[v]);g.length?E=er(g):(g=null,E=null),s(g,E)}if(o.messages){var l=this.messages();l===ur&&(l=rr()),mu(l,o.messages),o.messages=l}else o.messages=this.messages();var f,a,h={},d=o.keys||Object.keys(this.rules);d.forEach(function(D){f=u.rules[D],a=i[D],f.forEach(function(v){var g=v;typeof g.transform=="function"&&(i===t&&(i=qe({},i)),a=i[D]=g.transform(a)),typeof g=="function"?g={validator:g}:g=qe({},g),g.validator=u.getValidationMethod(g),g.field=D,g.fullField=g.fullField||D,g.type=u.getType(g),g.validator&&(h[D]=h[D]||[],h[D].push({rule:g,value:a,source:i,field:D}))})});var p={};return Rf(h,o,function(D,v){var g=D.rule,E=(g.type==="object"||g.type==="array")&&(typeof g.fields=="object"||typeof g.defaultField=="object");E=E&&(g.required||!g.required&&D.value),g.field=D.field;function b(O,P){return qe(qe({},P),{},{fullField:g.fullField+"."+O})}function C(O){O===void 0&&(O=[]);var P=O;if(Array.isArray(P)||(P=[P]),!o.suppressWarning&&P.length&&Ye.warning("async-validator:",P),P.length&&g.message!==void 0&&(P=[].concat(g.message)),P=P.map(vu(g)),o.first&&P.length)return p[g.field]=1,v(P);if(!E)v(P);else{if(g.required&&!D.value)return g.message!==void 0?P=[].concat(g.message).map(vu(g)):o.error&&(P=[o.error(g,be(o.messages.required,g.field))]),v(P);var S={};if(g.defaultField)for(var $ in D.value)D.value.hasOwnProperty($)&&(S[$]=g.defaultField);S=qe(qe({},S),D.rule.fields);for(var W in S)if(S.hasOwnProperty(W)){var k=Array.isArray(S[W])?S[W]:[S[W]];S[W]=k.map(b.bind(null,W))}var K=new Ye(S);K.messages(o.messages),D.rule.options&&(D.rule.options.messages=o.messages,D.rule.options.error=o.error),K.validate(D.value,D.rule.options||o,function(J){var ee=[];P&&P.length&&ee.push.apply(ee,P),J&&J.length&&ee.push.apply(ee,J),v(ee.length?ee:null)})}}var M;g.asyncValidator?M=g.asyncValidator(g,D.value,C,D.source,o):g.validator&&(M=g.validator(g,D.value,C,D.source,o),M===!0?C():M===!1?C(g.message||g.field+" fails"):M instanceof Array?C(M):M instanceof Error&&C(M.message)),M&&M.then&&M.then(function(){return C()},function(O){return C(O)})},function(D){c(D)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Lt.hasOwnProperty(t.type))throw new Error(be("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"?Lt.required:Lt[this.getType(t)]||!1}},Ye.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Lt[t]=n},Ye.warning=pu,Ye.messages=ur,Ye.validators=Lt;var tl={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 nl(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new Ye(e);return n.messages(Object.assign(tl,t)),n}var rl=new su;function ir(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 e}function il(e){if(Array.isArray(e))return ir(e)}function Eu(e,t,n,r,u,i,o){try{var s=e[i](o),c=s.value}catch(l){n(l);return}s.done?t(c):Promise.resolve(c).then(r,u)}function Au(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(c){Eu(i,r,u,o,s,"next",c)}function s(c){Eu(i,r,u,o,s,"throw",c)}o(void 0)})}}function ol(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 al(e,t,n){return t&&Cu(e.prototype,t),n&&Cu(e,n),e}function sl(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Fu(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function wu(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function cl(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function fl(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Bu(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){sl(e,u,n[u])})}return e}function ll(e){return ul(e)||wu(e)||bu(e)||cl()}function or(e){return il(e)||wu(e)||bu(e)||fl()}function bu(e,t){if(!!e){if(typeof e=="string")return ir(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 ir(e,t)}}var Su=function(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(l){return function(f){return c([l,f])}}function c(l){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=l[0]&2?r.return:l[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,l[1])).done)return u;switch(r=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return o.label++,{value:l[1],done:!1};case 5:o.label++,r=l[1],l=[0];continue;case 7:l=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){o=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){o.label=l[1];break}if(l[0]===6&&o.label<u[1]){o.label=u[1],u=l;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(l);break}u[2]&&o.ops.pop(),o.trys.pop();continue}l=t.call(e,o)}catch(f){l=[6,f],r=0}finally{n=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},ke=function(){function t(r){var u=this;ol(this,t),this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=Mu,this.removeSetting=_u,this._callControlHooks("preInstance",r);var i=Fu(this,t)?this.constructor:void 0,o=i.controlName,s=i.controlIcon,c=i.controlType,l=i.controlFieldType,f=i.controlEventKeys,a=i.controlCustomEvents,h=i.name,d=i.setting;o&&s&&c||tu("The ".concat(h," controlName,controlIcon,controlType is not define"));var p;this.id=(p=r==null?void 0:r.id)!==null&&p!==void 0?p:jn(10),this.name=o,this.icon=s;var D;this.type=(D=r==null?void 0:r.type)!==null&&D!==void 0?D:c,this.props=new ct(r==null?void 0:r.props,(Fu(this,t)?this.constructor:void 0).controlName);var v;this.controlType=(v=r==null?void 0:r.controlType)!==null&&v!==void 0?v:"base",this.setting=te(d);var g;this.fieldType=(g=r==null?void 0:r.fieldType)!==null&&g!==void 0?g:l,this.eventKeys=te(f),this.customEvents=te(a),Promise.resolve().then(function(){u._callControlHooks("postInstance",r)})}var n=t.prototype;return n._callControlHooks=function(){for(var u=arguments.length,i=new Array(u),o=0;o<u;o++)i[o]=arguments[o];var s,c=ll(i),l=c[0],f=c.slice(1);return(s=rl).emit.apply(s,[l,this].concat(or(f)))},n.preUpdate=function(u,i){this._callControlHooks("preUpdateProps",u,i)},n.postUpdate=function(u,i){this._callControlHooks("postUpdateProps",u,i)},n.updateProps=function(u,i){this.preUpdate(u,i),ru(this.props,u,i),this.postUpdate(u,i)},n.preValidate=function(){var u=this;return Au(function(){var i,o,s;return Su(this,function(c){switch(c.label){case 0:return i=Bu({},u.rules),[4,u._callControlHooks("preValidate",i)];case 1:return o=c.sent(),s=o[o.length-1],[2,s===!1?void 0:s]}})})()},n.validate=function(u,i){var o=this;return Au(function(){var s,c,l,f;return Su(this,function(a){switch(a.label){case 0:return[4,o.preValidate()];case 1:s=a.sent(),c=s!==void 0?s:Bu({},o.rules),Array.isArray(i)&&i.forEach(function(h){c.hasOwnProperty(h)&&delete c[h]}),l=nl(c,u),a.label=2;case 2:return a.trys.push([2,4,,5]),[4,l.validate(o.props)];case 3:return a.sent(),[2,!0];case 4:throw f=a.sent(),f.control||(f.control=o),f;case 5:return[2]}})})()},n.toDataBindModel=function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this.fieldType,o=this.id,s=this.type,c=this.props,l=c.dataBind,f=c.datasourceBind,a=c.optionConfig,h=c.caption,d=c.required,p=c.maxLength,D=c.options,v=c.encrypted,g=c.encryptedMode;if(!(!i&&!l&&!f)){var E={parentId:u,fieldType:i,controlId:o,caption:h,type:s,props:{}};switch(l&&(E.dataBind=l),a){case"datasource":case void 0:f&&(E.datasourceBind=f);break;case"custom":E.props.options=D;break}return d!==void 0&&(E.required=d),p!==void 0&&(E.maxLength=p),v!==void 0&&(E.encrypted=v),g!==void 0&&(E.encryptedMode=g),E}},n.preToSchema=function(){this._callControlHooks("preToSchema",this)},n.toSchema=function(){return this.preToSchema(),{id:this.id,type:this.type,props:te(this.props),fieldType:this.fieldType,controlType:this.controlType}},t.updateBasicControl=function(u,i){if(u==="setting"){if(i.add){var o;(o=this.setting).push.apply(o,or(i.add))}i.remove&&this.removeSettingItem(i.remove),i.update}},al(t,[{key:"rules",get:function(){var u=this.props.constructor.Rules;return u?new u(this.props):{}}}]),t}();ke.controlName="\u63A7\u4EF6",ke.controlIcon="icon",ke.controlType="control",ke.controlEventKeys=[],ke.controlCustomEvents=[],ke.setting=[],ke.__is_control__=!0,ke.removeSettingItem=_u,ke.updateSettingItem=Mu;function _u(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u=typeof r!="string",i=t.setting.findIndex(function(c){return c.key===(u?r.key:r)});if(i!==-1){var o,s;u?t.setting[i].showItems=(o=t.setting[i].showItems)===null||o===void 0?void 0:o.filter(function(c){return!r.hideItems.includes(c)}):t.setting.splice(i,1),u&&!(!((s=t.setting[i].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(i,1)}})}function Mu(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var i=n.setting.find(function(l){return l.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if(typeof t=="object"){var o,s=(o=t.type)!==null&&o!==void 0?o:"replace";if(s==="replace")i.showItems=t.showItems;else{var c;(c=i.showItems).push.apply(c,or(t.showItems))}}}})}function hl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Nu(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 dl(e,t,n){return t&&Nu(e.prototype,t),n&&Nu(e,n),e}function pl(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var vt=function(){function t(n){hl(this,t),this.customEvents=[],this.parent=null;var r=pl(this,t)?this.constructor:void 0,u=r.controlType,i=r.controlFieldType,o=r.name,s=r.controlCustomEvents;u||tu("The ".concat(o," controlType is not define"));var c;this.id=(c=n==null?void 0:n.id)!==null&&c!==void 0?c:jn(10);var l;this.type=(l=n==null?void 0:n.type)!==null&&l!==void 0?l:u,this.props=new ct(n==null?void 0:n.props),this.customEvents=s;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var a;this.fieldType=(a=n==null?void 0:n.fieldType)!==null&&a!==void 0?a:i;var h;this.pageStatus=(h=n==null?void 0:n.pageStatus)!==null&&h!==void 0?h:Gn.UNKNOWN}return dl(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}();vt.controlType="control",vt.__is_control__=!0,vt.controlCustomEvents=[];function Dl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ar(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function cn(e){return cn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},cn(e)}function sr(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&cr(e,t)}function gl(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function vl(e,t){return t&&(ml(t)==="object"||typeof t=="function")?t:Dl(e)}function cr(e,t){return cr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},cr(e,t)}var ml=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function yl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function fr(e){var t=yl();return function(){var r=cn(e),u;if(t){var i=cn(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return vl(this,u)}}var El=function(e){sr(n,e);var t=fr(n);function n(r){ar(this,n);var u;u=t.call(this,r),u.dataBind={},u.caption={type:"string",required:!0,message:Oe.getMessage("pleaseEnterCaption")},u.isHideCaption={type:"boolean"},u.labelPosition={type:"enum",enum:["top","left"]},u.defaultState={type:"enum",enum:["default","readonly"]},u.required={type:"boolean"},u.captionTip={type:"string",required:!1,message:Oe.getMessage("pleaseEnterCaptionTip")};var i={fieldCode:{type:"string",required:!0,message:Oe.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:Oe.getMessage("pleaseEnterFieldCode")}};if(gl(r.dataBind,Rt))u.dataBind={type:"object",required:!0,fields:te(i),message:Oe.getMessage("pleaseEnterFieldCode")};else{var o={type:"object",required:!0,fields:{},message:Oe.getMessage("pleaseEnterFieldCode")};Object.keys(r.dataBind).forEach(function(s){o.fields[s]={type:"object",required:!0,fields:te(i),message:Oe.getMessage("pleaseEnterFieldCode")}}),u.dataBind=o}return r.isShowCaptionTip&&(u.captionTip.required=!0),u}return n}(hu),Al=function(e){sr(n,e);var t=fr(n);function n(r){ar(this,n);var u;return u=t.call(this,r),u.push({type:"string",required:r.isHide?!1:r.required,message:r.requiredMessage!==""?r.requiredMessage:Oe.getMessage("runtimeRequired",{caption:r.caption})}),u}return n}(du),lr=function(e){sr(n,e);var t=fr(n);function n(r){ar(this,n);var u;u=t.call(this,r);var i;u.caption=(i=r==null?void 0:r.caption)!==null&&i!==void 0?i:"";var o;u.isHideCaption=(o=r==null?void 0:r.isHideCaption)!==null&&o!==void 0?o:!1;var s;u.isShowCaptionTip=(s=r==null?void 0:r.isShowCaptionTip)!==null&&s!==void 0?s:!1;var c;u.captionTip=(c=r==null?void 0:r.captionTip)!==null&&c!==void 0?c:"";var l;u.defaultState=(l=r==null?void 0:r.defaultState)!==null&&l!==void 0?l:"default";var f;u.labelPosition=(f=r==null?void 0:r.labelPosition)!==null&&f!==void 0?f:"top";var a;u.placeholder=(a=r==null?void 0:r.placeholder)!==null&&a!==void 0?a:"";var h;u.required=(h=r==null?void 0:r.required)!==null&&h!==void 0?h:!1;var d;u.requiredMessage=(d=r==null?void 0:r.requiredMessage)!==null&&d!==void 0?d:"",u.dataBind=new Rt(r==null?void 0:r.dataBind);var p;return u.defaultValue=(p=r==null?void 0:r.defaultValue)!==null&&p!==void 0?p:"",u}return n}(ct);lr.Rules=El,lr.RuntimeRules=Al;function Cl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Fl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function fn(e){return fn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},fn(e)}function wl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&hr(e,t)}function Bl(e,t){return t&&(bl(t)==="object"||typeof t=="function")?t:Cl(e)}function hr(e,t){return hr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},hr(e,t)}var bl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Sl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function _l(e){var t=Sl();return function(){var r=fn(e),u;if(t){var i=fn(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Bl(this,u)}}var Ve=function(e){wl(n,e);var t=_l(n);function n(r){Fl(this,n);var u;return u=t.call(this,r),u.controlType="form",u.props=new lr(r==null?void 0:r.props),u}return n}(vt);function Ml(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Nl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ln(e){return ln=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ln(e)}function Il(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&&dr(e,t)}function xl(e,t){return t&&(Ol(t)==="object"||typeof t=="function")?t:Ml(e)}function dr(e,t){return dr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},dr(e,t)}var Ol=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Rl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function $l(e){var t=Rl();return function(){var r=ln(e),u;if(t){var i=ln(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return xl(this,u)}}var Iu=function(e){Il(n,e);var t=$l(n);function n(r){return Nl(this,n),t.call(this,r)}return n}(ct);function pr(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 Pl(e){if(Array.isArray(e))return pr(e)}function Tl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Ll(){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 xu(e){return Pl(e)||Tl(e)||jl(e)||Ll()}function jl(e,t){if(!!e){if(typeof e=="string")return pr(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 pr(e,t)}}function ql(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function Ou(e,t){e.parent=t,ql(e,"parent")}function kl(e,t){e.forEach(function(n){Ou(n,t)})}var Ru=Symbol("targetKey");function $u(e){var t;return(t=e[Ru])!==null&&t!==void 0?t:e}function Pu(e,t){return kl(e,t),new Proxy(e,{get:function(r,u){for(var i=arguments.length,o=new Array(i>2?i-2:0),s=2;s<i;s++)o[s-2]=arguments[s];var c;return u===Ru?r:(c=Reflect).get.apply(c,[r,u].concat(xu(o)))},set:function(r,u,i){for(var o=arguments.length,s=new Array(o>3?o-3:0),c=3;c<o;c++)s[c-3]=arguments[c];var l;if(Dt(e)&&u==="length"&&i===e.length)return!0;var f=(l=Reflect).set.apply(l,[r,u,i].concat(xu(s)));return je(i)&&Ou(i,t),f}})}function hn(e,t,n,r){var u=r!=null?r:e,i=Pu($u(n!=null?n:[]),u);Object.defineProperty(e,t,{get:function(){return i},set:function(s){i=Pu($u(s),u)},enumerable:!0})}function Dr(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 Vl(e){if(Array.isArray(e))return Dr(e)}function Tu(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Lu(e,t,n,r,u,i,o){try{var s=e[i](o),c=s.value}catch(l){n(l);return}s.done?t(c):Promise.resolve(c).then(r,u)}function Ul(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(c){Lu(i,r,u,o,s,"next",c)}function s(c){Lu(i,r,u,o,s,"throw",c)}o(void 0)})}}function Hl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function zl(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function mt(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?mt=Reflect.get:mt=function(u,i,o){var s=e0(u,i);if(!!s){var c=Object.getOwnPropertyDescriptor(s,i);return c.get?c.get.call(o):c.value}},mt(e,t,n||e)}function et(e){return et=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},et(e)}function Wl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&gr(e,t)}function Zl(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Xl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Gl(){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 Jl(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){zl(e,u,n[u])})}return e}function Kl(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 Ql(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Kl(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Yl(e,t){return t&&(t0(t)==="object"||typeof t=="function")?t:Tu(e)}function gr(e,t){return gr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},gr(e,t)}function e0(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=et(e),e!==null););return e}function ju(e){return Vl(e)||Xl(e)||n0(e)||Gl()}var t0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function n0(e,t){if(!!e){if(typeof e=="string")return Dr(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 Dr(e,t)}}function r0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function u0(e){var t=r0();return function(){var r=et(e),u;if(t){var i=et(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Yl(this,u)}}var i0=function(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(l){return function(f){return c([l,f])}}function c(l){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=l[0]&2?r.return:l[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,l[1])).done)return u;switch(r=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return o.label++,{value:l[1],done:!1};case 5:o.label++,r=l[1],l=[0];continue;case 7:l=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){o=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){o.label=l[1];break}if(l[0]===6&&o.label<u[1]){o.label=u[1],u=l;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(l);break}u[2]&&o.ops.pop(),o.trys.pop();continue}l=t.call(e,o)}catch(f){l=[6,f],r=0}finally{n=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},o0=1e4,qu=function(t){Wl(r,t);var n=u0(r);function r(i){Hl(this,r);var o;o=n.call(this,i),o.controlType="layout";var s=Zl(this,r)?this.constructor:void 0,c=s.excludes,l=s.childrenMaxLength;return o.props=new Iu(i==null?void 0:i.props),hn(Tu(o),"children",i==null?void 0:i.children),o.excludes=te(c),o.childrenMaxLength=l,o}var u=r.prototype;return u.judgeExcludesChildren=function(o){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(o)},u.judgeJoinChildren=function(o){var s=this.judgeExcludesChildren(o);return s&&this.childrenMaxLength>this.children.length},u.validate=function(o,s){var c=this,l=this,f=function(){return mt(et(r.prototype),"validate",c)};return Ul(function(){return i0(this,function(a){switch(a.label){case 0:return[4,f().call(l,o,s)];case 1:return a.sent(),[4,Promise.all(l.children.map(function(h){return h.validate(o,s)}))];case 2:return a.sent(),[2,!0]}})})()},u.toDataBindModel=function(){var o=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,s=mt(et(r.prototype),"toDataBindModel",this).call(this),c=s?[s]:[];return this.children.reduce(function(l,f){var a=f.toDataBindModel(o);if(Array.isArray(a)){var h=a.filter(function(d){return!!d});return ju(l).concat(ju(h))}return a&&l.push(a),l},c)},u.toSchema=function(){var o=mt(et(r.prototype),"toSchema",this).call(this),s=this.children.map(function(c){var l=c.toSchema();return l});return Ql(Jl({},o),{children:s})},r}(ke);qu.excludes=!1,qu.childrenMaxLength=o0;function ku(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function a0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function dn(e){return dn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},dn(e)}function s0(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&&vr(e,t)}function c0(e,t){return t&&(f0(t)==="object"||typeof t=="function")?t:ku(e)}function vr(e,t){return vr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},vr(e,t)}var f0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function l0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function h0(e){var t=l0();return function(){var r=dn(e),u;if(t){var i=dn(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return c0(this,u)}}var d0=function(e){s0(n,e);var t=h0(n);function n(r){a0(this,n);var u;return u=t.call(this,r),u.controlType="layout",u.props=new Iu(r==null?void 0:r.props),hn(ku(u),"children",r==null?void 0:r.children),u}return n}(vt);function Vu(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function p0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pn(e){return pn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},pn(e)}function D0(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 g0(e,t){return t&&(v0(t)==="object"||typeof t=="function")?t:Vu(e)}function mr(e,t){return mr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},mr(e,t)}var v0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function m0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function y0(e){var t=m0();return function(){var r=pn(e),u;if(t){var i=pn(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return g0(this,u)}}var E0=function(e){D0(n,e);var t=y0(n);function n(r,u){p0(this,n);var i;return i=t.call(this,u),hn(Vu(i),"headers",u==null?void 0:u.headers,r),i}return n}(ct);H.LIST;function yr(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function A0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Uu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function C0(e,t,n){return t&&Uu(e.prototype,t),n&&Uu(e,n),e}function Dn(e){return Dn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Dn(e)}function F0(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&&Er(e,t)}function w0(e,t){return t&&(B0(t)==="object"||typeof t=="function")?t:yr(e)}function Er(e,t){return Er=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Er(e,t)}var B0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function b0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function S0(e){var t=b0();return function(){var r=Dn(e),u;if(t){var i=Dn(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return w0(this,u)}}var gn=function(e){F0(n,e);var t=S0(n);function n(r){A0(this,n);var u;return u=t.call(this,r),u.controlType="list",u.props=new E0(yr(u),r==null?void 0:r.props),hn(yr(u),"children",r==null?void 0:r.children),u}return C0(n,[{key:"length",get:function(){return this.children.length}}]),n}(vt);console.log(10);function vn(e){return e.controlType===Le.LAYOUT||e.controlType===Le.WRAP||e.controlType===Le.LIST||e.controlType===Le.SEARCH}function jt(e,t){Array.isArray(e)&&e.map(n=>{if(n.type===X.SUBTABLE){const r=n.getChildrenFormControl();t(n,r)}else vn(n)?jt(n==null?void 0:n.children,t):n instanceof Ve&&t(n)})}function qt(e,t){Array.isArray(e)&&e.map(n=>{n.type===X.DATA_VIEW||n.type===X.SIMPLE_SEARCH?t(n):vn(n)&&qt(n==null?void 0:n.children,t)})}class Ar extends en{constructor(t){super("Runtime"),this._flatInstances=[],this._instanceMap={};const{schema:n}=t;this._schema=n,this._instance=this.createControl(n,t.beforeCreateInstance),this.getFlatInstances()}getFlatInstances(){const t=[],n={};return Hu(this._instance,r=>{t.push(r),n[r.id]||(n[r.id]=[]),n[r.id].push(r)}),this._flatInstances=t,this._instanceMap=n,this._flatInstances}get schema(){return this._schema}get instance(){return this._instance}get flatInstances(){return this._flatInstances}get instanceMap(){return this._instanceMap}get rules(){let t={};return qt(this._instance,n=>{t[n.id]=n.rules[0],jt(n.children,r=>{(r instanceof Ve||r instanceof gn)&&_0(t[n.id].fields,r)})}),t}get antdRules(){let t={};return qt(this._instance,n=>{t[n.id]=n.rules[0],jt(n.children,r=>{(r instanceof Ve||r instanceof gn)&&M0(t[n.id].fields,r)})}),t}}function Hu(e,t){Array.isArray(e)?e.map(n=>{t(n),vn(n)&&Hu(n.children,t)}):t(e)}function Cr(e){return e.props.isHide?!0:e.parent===null?!1:Cr(e.parent)}function _0(e,t){if(!Cr(t)){if(t instanceof Ve)e[t.id]=t.rules;else if(t.type===X.SUBTABLE){e[t.id]=t.rules;const n={type:"array",fields:{}};t.children.forEach((r,u)=>{at(r.children,i=>{n.fields&&(n.fields[u]||(n.fields[u]={type:"object",required:!0,fields:{}}),n.fields[u].fields[i.id]=i.rules)})}),e[t.id].push(n)}}}function M0(e,t){Cr(t)||(t instanceof Ve?e[t.id]=t.rules:t.type===X.SUBTABLE&&t.children.length&&(e[t.id]=[],t.children.forEach(n=>{let r={};at(n.children,u=>{r[u.id]=u.rules}),e[t.id].push(r)})))}class N0{constructor(t){const{state:n,emptyState:r,databindMapping:u,controlidMapping:i}=I0(t.instance);this.emptyState=r,this.state=n,this.dataBindMapping=u,this.controlIdMapping=i}setState(t,n,r){const u=this.controlIdMapping[t];u!==void 0?this.state[u.dataView][t]=n:r!==void 0?Object.keys(this.controlIdMapping).map(i=>{const o=this.controlIdMapping[i].dataView,s=this.controlIdMapping[i].children;s!==void 0&&Object.keys(s).map(c=>{c===t&&(this.state[o][i][r][t]=n)})}):this.state[t]=n}getState(t,n){if(this.state[t]!==void 0)return this.state[t];{const u=this.controlIdMapping[t];if(u!==void 0)return this.state[u.dataView][t];if(n!==void 0){let i;return Object.keys(this.controlIdMapping).map(o=>{const s=this.controlIdMapping[o].dataView,c=this.controlIdMapping[o].children;c!==void 0&&Object.keys(c).map(l=>{var f;l===t&&(i=(f=this.state[s][o][n])==null?void 0:f[t])})}),i}else{let i=[];return Object.keys(this.controlIdMapping).map(o=>{const s=this.controlIdMapping[o].dataView,c=this.controlIdMapping[o].children;c!==void 0&&Object.keys(c).map(l=>{l===t&&this.state[s][o].map(f=>{i.push(f[t])})})}),i}}}getEmptyState(t){if(this.emptyState[t]!==void 0)return this.emptyState[t];{const r=this.controlIdMapping[t];if(r!==void 0)return this.emptyState[r.dataView][t];{let u;return Object.keys(this.controlIdMapping).map(i=>{const o=this.controlIdMapping[i].dataView,s=this.controlIdMapping[i].children;s!==void 0&&Object.keys(s).map(c=>{c===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 I0(e){let t={},n={},r={},u={};return qt(e,i=>{const o=i.id,s={},c={};jt([i],(l,f)=>{x0(s,c,l),O0(r,o,l),R0(u,o,l)}),t[o]=s,n[o]=c}),{state:t,emptyState:n,databindMapping:r,controlidMapping:u}}function x0(e,t,n){var r;if(n instanceof Ve)e[n.id]=te(n.props.defaultValue),t[n.id]=te(n.props.defaultValue);else{const u={};at(n.props.headers,i=>{u[i.id]=te(i.props.defaultValue)}),e[n.id]=new Array((r=n.props.defaultRows)!=null?r:1).fill(0).map(()=>te(u)),t[n.id]=u}}function O0(e,t,n){if(n instanceof Ve)n.props.dataBind instanceof Qe?Object.keys(n.props.dataBind).map(r=>{const u=n.props.dataBind,i=u[r].dataCode;i!==void 0&&(e[i]===void 0&&(e[i]={controlId:n.id,fields:[],dataViewId:t}),e[i].fields.push({fieldCode:u[r].fieldCode,controlId:n.id,dataBind:u,dataViewId:[t]}))}):(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]}));else{if(n.props.datasourceBind.dataCode===""){Je(`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 r=n.id;at(n.props.headers,u=>{u.props.dataBind instanceof Qe?Object.keys(u.props.dataBind).map(i=>{const o=u.props.dataBind,s=o[i].dataCode;e[s].fields.push({fieldCode:o[i].fieldCode,controlId:u.id,dataBind:o,dataViewId:[t,r]})}):e[u.props.dataBind.dataCode].fields.push({fieldCode:u.props.dataBind.fieldCode,controlId:u.id,dataBind:u.props.dataBind,dataViewId:[t,r]})})}}function R0(e,t,n){n instanceof Ve?e[n.id]={dataBind:n.props.dataBind,options:[],dataView:t}:n.type===X.SUBTABLE&&(e[n.id]={dataBind:new Rt({dataCode:n.props.datasourceBind.dataCode,fieldCode:""}),dataView:t,children:{},options:[]},at(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}})}))}const zu=["splice","push","shift","pop","unshift","reverse"],Fr=Symbol("__engineProxy__"),wr=Symbol("__engineTarget__"),Wu=Symbol("__engineArrayBeforeSetCallbackFlag__"),Zu=Symbol("__engineProxyThisKey__"),Re={type:"",args:[],callback:Xu};function Xu(){}j0();function $0(e,t,n,r,u){if(Re.type){Re.callback=u.bind(null,e,r);return}const i=Number(t);if(i>e.length){Ze(`Wrong array operations may cause unknown errors. It is recommended to use APIs such as ${zu.join(",")} for array operations`);return}if(!(Number.isNaN(i)&&t!=="length"))if(t==="length"){const s=n,c=e.length;if(s>e.length){Ze("Do not directly modify the length of the array data, please add new rows");return}return s===e.length?void 0:()=>u.call(null,e,r,"splice",[s,c-s])}else return i===e.length?()=>u.call(null,e,r,"push",[n]):()=>u.call(null,e,r,"splice",[i,1,n])}function P0(e,t,n){return{__engineProxy__:!0,get(r,u,i){return u===Fr?!0:u===wr?r:Array.isArray(r)&&u===Wu?n:u===Zu?e:Reflect.get(r,u,i)},set(r,u,i,o){var h;let s=i;const c=r[u],l=e===""?u:e+"."+u;function f(d){if(typeof d=="object"&&d!==null)return d[Fr]!==!0?mn(d,t,n,l):mn(d[wr],t,n,l)}s=(h=f(i))!=null?h:s;let a;if(Array.isArray(r)){const d=$0(r,u,i,e,t);a=Reflect.set(r,u,s,o),d&&d()}else{try{let d=s;if(s=n.call(null,r,l,s,c),d!==s){const p=f(s);p!==void 0&&(s=p)}}catch(d){return Kt(`${l} set error ${d}`),!0}a=Reflect.set(r,u,s,o),t.call(null,r,l,i,c)}return a}}}function mn(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]=mn(o,t,n,i))}return new Proxy(e,P0(r,t,n))}function Gu(e){const t=[];return e.forEach(n=>{t.push(n),n.controlType==="layout"&&t.push(...Gu(n.children))}),t}function Br(e,t){if(t==="")return;const n=t.split(".");if(n.length===0)return;const r=n[0],u=n.slice(1),i=e.find(o=>o.id===r);return u.length===0?i:u.reduce((o,s)=>{var f,a;const c=Number(s);if(Number.isNaN(c)){const h=o!=null&&o.children?Gu(o.children):void 0,d=h==null?void 0:h.find(p=>p.id===s);return d||(o instanceof Ve?o:void 0)}else return(a=(f=o==null?void 0:o.children)==null?void 0:f[c])!=null?a:o},i)}function T0(e,t){return["push","unshift"].includes(e)?t:e==="splice"?t.slice(2):[]}function L0(e,t,n){if(["push","unshift"].includes(e))return n;if(e==="splice")return t.slice(0,2).concat(n)}function j0(){zu.forEach(e=>{const t=Array.prototype[e];Array.prototype[e]=function(...n){var r;if(this[Fr]){let u;const i=T0(e,n);if(i.length){const o=(r=this[Wu])==null?void 0:r.call(this,this[wr],this[Zu],i),s=L0(e,n,o);Re.type=e,Re.args=s,u=t.apply(this,s)}else Re.type=e,Re.args=n,u=t.apply(this,n);return typeof Re.callback=="function"&&Re.callback(e,n,u),Re.type="",Re.args=[],Re.callback=Xu,u}else return t.apply(this,n)}})}class q0{constructor(){this.actionMap=new Map,this.buildinActions={},this.actionUtils={},this.sources={}}execAction(t,n,...r){return ze(this,null,function*(){const u=this.actionMap.get(t);if(!!u)try{return yield u.func.call(null,n,...r)}catch(i){Kt(`${u.id} Exception during calling action: ${i}`)}})}addAction(t,n){this.actionMap.has(t)&&Ze("duplicated action key");const r=new k0(t,n);this.actionMap.set(t,r)}}class k0{constructor(t,n){this.id="",this.id=t,this.func=n}}class V0{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 te(n)}remove(t){this._dataStore.delete(t)}getRemoteData(t){return ze(this,null,function*(){return this.executer===void 0?(Kt("\u672A\u521D\u59CB\u5316executer"),[]):this.executer(t)})}}class tt{}class kt extends tt{validate(t){return Be(t)}transform(t){if(t==null)return"";if(!je(t)&&!iu(t))return String(t);if(uf(t))return JSON.stringify(t);throw`${t} is not a string`}}class br extends tt{validate(t){return Qt(t)||t===""}transform(t){if(t==null)return"";const n=!je(t)&&!iu(t)?Number(t):void 0;if(!Number.isNaN(n)&&n!==void 0)return n;throw`${t} is not a number`}}class U0 extends tt{validate(t){return of(t)}transform(t){if(t==null)return[];function n(r){return r.map(u=>u?String(u):"")}if(Dt(t))return n(t);if(Be(t)&&ou(t))try{const r=JSON.parse(t);if(Array.isArray(r))return n(r)}catch(r){}return[String(t)]}}class H0 extends tt{validate(t){return af(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(Dt(t))return n(t);if(Be(t)&&ou(t))try{const u=JSON.parse(t);if(Dt(u))return n(u)}catch(u){}const r=Number(t);if(Number.isNaN(r))throw`${t} is not a number array`;return[r]}}class z0 extends tt{validate(t){return t instanceof tn||je(t)&&"amount"in t&&Qt(t.amount)&&"currency"in t&&Be(t.currency)}transform(t,n){if(t==null||t==="")return new tn({currency:n==null?void 0:n.currency});let r;if(je(t)&&(r=new tn(oe(oe({},n),t))),Be(t)&&Yt(t))try{const u=JSON.parse(t);r=new tn(oe(oe({},n),u))}catch(u){}if(r){const u=new br,i=new kt;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 W0 extends tt{validate(t){return t instanceof nn||je(t)&&"min"in t&&Be(t.min)&&"max"in t&&Be(t.max)}transform(t,n){if(t==null||t==="")return new nn;let r;if(je(t)&&(r=new nn(oe(oe({},n),t))),Be(t)&&Yt(t))try{const u=JSON.parse(t);r=new nn(oe(oe({},n),u))}catch(u){}if(r){const u=new kt;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 Z0 extends tt{validate(t){return t instanceof un||je(t)&&"result"in t&&Qt(t.result)&&"unit"in t&&Be(t.unit)}transform(t,n){if(t==null||t==="")return new un({unit:n==null?void 0:n.unit});let r;if(je(t)&&(r=new un(oe(oe({},n),t))),Be(t)&&Yt(t))try{const u=JSON.parse(t);r=new un(oe(oe({},n),u))}catch(u){}if(r){const u=new br,i=new kt;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 X0 extends tt{validate(t){return t instanceof rn}transform(t,n){if(t==null||t==="")return new rn;let r;if(je(t)&&(r=new rn(oe(oe({},n),zn.exports.camelizeKeys(t)))),Be(t)&&Yt(t))try{const u=JSON.parse(t);r=new rn(oe(oe({},n),zn.exports.camelizeKeys(u)))}catch(u){}if(r){const u=new kt;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 G0{static getValueChecker(t){let n;switch(t){case H.VARCHAR:case H.TIMESTAMP:case H.TEXT:case H.RELATION:case H.AUTO_NUMBER:n=new kt;break;case H.DECIMAL:n=new br;break;case H.EMPLOYEES:case H.DEPARTMENTS:case H.IMAGE:case H.FILE:case H.ARRAY:n=new U0;break;case H.MONEY:n=new z0;break;case H.TIMESCOPE:n=new W0;break;case H.CALC:n=new Z0;break;case H.DECIMAL_RANGE:n=new H0;break;case H.ADDRESS:n=new X0;break}return n}}function J0(e){if(["min","max","currency","unit"].includes(e))return H.VARCHAR;if(["result","amount"].includes(e))return H.DECIMAL}function Ju(e,t,n,r){var o;let u=(o=J0(t))!=null?o:e,i=G0.getValueChecker(u);if(!i||i.validate(n))return n;try{const s=i.transform(n,r);return s!==void 0?s:n}catch(s){throw`${t} ${s}`}}function K0(e,t,n){return Object.entries(e).reduce((r,[u,i])=>{const o=t[u];return r[u]=Ju(i,u,o,n[u]),r},Object.assign({},t))}typeof window!="undefined"&&(window.engines={});let yt=null,Vt="";class Sr extends su{constructor(t){super(),this.isMounted=!1,this.id=jn(8),this.__pluginsApplied=!1,this.actionManager=new q0,this._jobTasks=[],this.rawStore={},this.createControlInstance=this.createInstance,this.$options=Object.freeze(t);const{autoMount:n=!0,schema:r,beforeCreateInstance:u,externalParams:i,language:o=Xr,debug:s=!1}=this.$options;Oe.setLocale(o),this.debug=s,this.runtime=new Ar({schema:r,beforeCreateInstance:u}),this.externalParams=i,this.store=new N0({instance:this.runtime.instance}),this.debugLog("engine is Instantiation complete"),n&&this.mount()}debugLog(...t){this.debug&&Un(...t)}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}registerControl(...t){return this.runtime.register(...t),this}static register(...t){return Ar.register(...t)}static judgeControlIsRegistered(t){return Ar.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=mn(this.store.state,this._proxyStateCallback.bind(this),this._proxyStateBeforeSetCallback.bind(this))}_proxyStateBeforeSetCallback(t,n,r,u){const i=console,o=Date.now();i.log("\u3297\uFE0F_proxyStateBeforeSetCallback findItem "+n,r,u),i.time("\u3297\uFE0F_proxyStateBeforeSetCallback findItem "+n+" "+o);const s=Br(this.runtime.flatInstances,n);if(i.timeLog("\u3297\uFE0F_proxyStateBeforeSetCallback findItem "+n+" "+o),!s)return r;if(this.assertInstance(s,X.SUBTABLE)){const f=s.props.headers.reduce((a,h)=>{const d=h.children[0];return d&&d instanceof Ve&&(a[d.id]=d.fieldType),a},{});return r===null?[]:r.map(a=>K0(f,a,this.getEmptyState(s.id)))}const c=n.split("."),l=c[c.length-1];try{return Ju(s.fieldType,l,r,u)}catch(f){throw Je(`the id=${s.id}'s instance setState error, %o ${f}.`,r),f}}_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 o=console;o.time("\u3297\uFE0F _handlerArrayUpdate findItem"+n);const s=Br(this.runtime.flatInstances,n);if(o.timeLog("\u3297\uFE0F _handlerArrayUpdate findItem"+n),!(s instanceof gn))return;const c=d=>{const p=[];for(let D=0;D<d;D++){const v=this.listControlCreateRow(s,"subtable-row");v&&p.push(v)}return p},l=yt;let f=[],a=[],h=[];if(r&&u){switch(r){case"push":case"unshift":const d=u.length;f=c(d),a=u,s.children[r](...f),this.runtime.getFlatInstances();break;case"splice":if(u.length>2){const p=u.length-2,D=u.slice(2);f=c(p),a=D;const v=u[0],g=u[1];s.children[r](v,g,...f),this.runtime.getFlatInstances()}else s.children[r](...u),this.runtime.getFlatInstances();break;default:s.children[r](...u),this.runtime.getFlatInstances();break}r==="splice"?h=i:["pop","shift"].includes(r)&&(h=[i]),this.emit("list-change",{instance:s,value:this.getState(s.id),options:Object.assign({},l,{changed:f,data:a,deleted:h!=null?h:[]})}),yt=null}}_handlerObjectUpdate(t,n,r,u){const i=console,o=Date.now();i.log("\u3297\uFE0F_handlerObjectUpdate findItem "+n,r,u),i.time("\u3297\uFE0F_handlerObjectUpdate findItem "+n+" "+o);const s=Br(this.runtime.flatInstances,n);if(i.timeLog("\u3297\uFE0F_handlerObjectUpdate findItem "+n+" "+o),!s)return;const c=this.getInstanceRowIndex(s),l=yt||{};if(s instanceof gn){s.children.length=0;const f=r;let a=[];for(let h=0;h<f.length;h++){const d=this.listControlCreateRow(s,"subtable-row");d&&a.push(d)}s.children.push(...a),this.runtime.getFlatInstances(),this.emit("list-change",{instance:s,value:r,options:Zr(oe({},l),{changed:a,data:f,deleted:u!=null?u:[]})})}else this.emit("change",{instance:s,value:this.getState(s.id,c),rowIndex:c,options:Zr(oe({},l),{oldValue:u})})}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{Vt=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this)}catch(r){Ze(`${Vt} Plugin apply Error
|
|
2
|
-
${r}`)}finally{Vt=""}}),this.__pluginsApplied=!0)}listControlCreateRow(t,n){const r=this.runtime.createControlInstance(n);if(!!r){if(r instanceof d0){const u=te(t.props.headers),i=this.createControl(u);r.children.push(...i)}return r}}listControlAddRow(t,n="subtable-row"){const r=this.listControlCreateRow(t,n);!r||t.children.push(r)}emit(t,n){return ze(this,null,function*(){if(t==="engine-mounted"){if(this.isMounted)return Je("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 fo(Sr.prototype,this,"emit").call(this,t,n);return r&&u&&(r(),this._jobTasks.splice(this._jobTasks.indexOf(u),1)),i})}on(t,n){return Vt&&(n.applyingPluginName=Vt),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)}getRules(t){var n;return t===void 0?this.runtime.rules:(n=this.runtime.rules[t])==null?void 0:n.fields}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 te(t===void 0?this.store.emptyState:this.store.getEmptyState(t))}setPayloadOptions(t){yt=t}setState(t,n,r,u){yt=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),yt=null}setStates(t,n,r){let u=t;Object.keys(u).forEach(i=>{Object.entries(this.store.controlIdMapping).forEach(([o,s])=>{if(s.dataView===i){const c=u[i][o];c!==void 0&&this.setState(o,c,n,r)}else(o===i||s.children&&s.children[i])&&u[i]!==void 0&&this.setState(i,u[i],n,r)})})}getField(t,n,r){if(!n){const c=this.getDataBindMapping(t);if(c){const{controlId:l}=c;return this.getState(l)}return}const u=this.getDataBindMapping(t,n);if(!u)return;const{dataBind:i,controlId:o}=u,s=this.getState(o,r);return i instanceof Qe?Object.entries(i).reduce((c,[l,f])=>f.fieldCode===n?c[l]:c,s):s}getData(t){var u,i,o,s,c,l,f,a;if(!t)return;let n=this.getDataBindMapping(t),r=this.getControlIdMapping();if(n){const{controlId:h}=n,d=this.getField(t);if(Array.isArray(d))return d.map(D=>{var g,E,b,C,M,O,P;let v={};for(let S in D)if((b=(E=(g=r[h])==null?void 0:g.children[S])==null?void 0:E.dataBind)!=null&&b.fieldCode)v[(C=r[h].children[S])==null?void 0:C.dataBind.fieldCode]=D[S];else if((M=r[h])!=null&&M.children[S])for(let $ in D[S])v[(P=(O=r[h])==null?void 0:O.children[S])==null?void 0:P.dataBind[$].fieldCode]=D[S][$];return v});{let p={};for(let D in d)if((i=(u=r[D])==null?void 0:u.dataBind)!=null&&i.fieldCode)p[(o=r[D])==null?void 0:o.dataBind.fieldCode]=d[D];else if((c=(s=r[D])==null?void 0:s.dataBind)!=null&&c.dataCode)p[(l=r[D])==null?void 0:l.dataBind.dataCode]=d[D].map(v=>{var E,b,C;let g={};for(let M in v)if((E=r[D].children[M])!=null&&E.dataBind.fieldCode)g[(b=r[D].children[M])==null?void 0:b.dataBind.fieldCode]=v[M];else for(let O in v[M])g[(C=r[D].children[M])==null?void 0:C.dataBind[O].fieldCode]=v[M][O];return g});else if(r[D])for(let v in d[D])p[(a=(f=r[D])==null?void 0:f.dataBind[v])==null?void 0:a.fieldCode]=d[D][v];return p}}}setField(t,n,r,u,i){var l;const o=this.getDataBindMapping(t,n);if(!o)return;const{dataBind:s,controlId:c}=o;if(s instanceof Qe){const f=(l=te(this.getState(c,u)))!=null?l:this.getEmptyState(c),a=Object.entries(s).reduce((h,[d,p])=>(p.fieldCode===n&&(h[d]=r),h),f);this.setState(c,a,u,i)}else this.setState(c,r,u,i)}setFields(t,n,r,u){const i=this.getDataBindMapping(t);if(!i)return;let o=[];i.fields.forEach(s=>{var a;const{dataBind:c,controlId:l,fieldCode:f}=s;if(!o.includes(f)&&!!Object.hasOwnProperty.call(n,f))if(c instanceof Qe){const h=(a=te(this.getState(l,r)))!=null?a:this.getEmptyState(l),d=Object.entries(c).reduce((p,[D,v])=>{o.push(v.fieldCode);const g=n[v.fieldCode];return g!==void 0&&(p[D]=g),p},h);this.setState(s.controlId,d,r,u)}else this.setState(l,n[f],r,u)})}buildFields(t,n){const r=this.getDataBindMapping(t);if(!r)return;let u=[];const i={};return r.fields.forEach(o=>{const{dataBind:s,controlId:c,fieldCode:l}=o;if(!u.includes(l)&&!!Object.hasOwnProperty.call(n,l))if(s instanceof Qe){const f=this.getEmptyState(c);i[o.controlId]=Object.entries(s).reduce((a,[h,d])=>{u.push(d.fieldCode);const p=n[d.fieldCode];return p!==void 0&&(a[h]=p),a},f)}else i[c]=n[l]}),i}setData(t,n){this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\uFF0C\u53C2\u6570\u4E3A%o\uFF0C%o\u3002",t,n);let r={};Object.keys(t).map(u=>{const i=t[u];if(Array.isArray(i))i.map(o=>{const s=this.getDataBindMapping(u);if(!s)return;let c=te(this.store.emptyState[s.dataViewId][s.controlId]),l=[];Object.keys(o).map(f=>{var h,d,p;if(l.includes(f))return;const a=(d=(h=this.store.dataBindMapping[u])==null?void 0:h.fields)==null?void 0:d.find(D=>D.fieldCode===f);if(a){if(a.dataBind instanceof Rt&&o[f]!==void 0)c[a.controlId]=o[f];else if(a.dataBind instanceof Qe){let D=te((p=this.getEmptyState(a.controlId))!=null?p:{});Object.keys(a.dataBind).map(v=>{const g=a.dataBind[v];o[g.fieldCode]!==void 0&&(D[v]=o[g.fieldCode]),l.push(g.fieldCode)}),c[a.controlId]=D}}}),r[s.dataViewId]||(r[s.dataViewId]={}),r[s.dataViewId][s.controlId]||(r[s.dataViewId][s.controlId]=[]),r[s.dataViewId][s.controlId].push(c)});else if(i){let o=[];Object.keys(i).map(s=>{var l;if(o.includes(s))return;const c=this.getDataBindMapping(u,s);if(c){if(r[c.dataViewId[0]]||(r[c.dataViewId[0]]={}),c.dataBind instanceof Rt&&i[s]!==void 0)r[c.dataViewId[0]][c.controlId]=i[s];else if(c.dataBind instanceof Qe){let f=te((l=this.getEmptyState(c.controlId))!=null?l:{});Object.keys(c.dataBind).map(a=>{const h=c.dataBind[a];i[h.fieldCode]!==void 0&&(f[a]=i[h.fieldCode]),o.push(h.fieldCode)}),r[c.dataViewId[0]][c.controlId]=f}}})}}),this.debugLog("engine setData\u65B9\u6CD5\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",r),this.setStates(r,void 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){var u;if(t===void 0)return this.runtime.flatInstances;const r=this.runtime.flatInstances.filter(i=>i.id===t);if(n)if(r.length){const i=r[0];if(this.getInstanceRowIndex(i)!==void 0){const o=this.getInstanceInSubtableHeader(i);o&&r.unshift(o)}}else{const i=this.getControlIdMapping(),[o]=(u=Object.entries(i).find(([s,c])=>c.children&&t in c.children))!=null?u:[];if(o){const c=this.getInstance(o).props.headers.find(l=>l.children.find(f=>f.id===t));if(c){const l=c.children.find(f=>f.id===t);l&&r.unshift(l)}}}return r}setInstance(t,n,r,u){try{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),ru(i.props,n,r),this.schemaEvent("schema-change",{instance:i,props:n,value:r})}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){Je(`No corresponding dataCode=${t} was found`);return}if(!n)return r;const u=r.fields.find(i=>i.fieldCode===n);if(!u){Je(`No corresponding fieldCode=${n} was found`);return}return u}getAction(){return this.actionManager}initDataManager(t){this.dataManager=new V0(t)}getDataManager(){return this.dataManager}assertInstance(t,n){return Be(n)?t.type===n:n.includes(t.type)}getInstanceRowIndex(t){if(!t.parent)return;let n;if(this.assertInstance(t.parent,X.SUBTABLE))if(this.assertInstance(t,X.SUBTABLE_COLUMN))n=-1;else{const r=t.parent.children.findIndex(u=>u===t);r>-1&&(n=r)}else n=this.getInstanceRowIndex(t.parent);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,X.SUBTABLE_COLUMN)?t:this.getInstanceParentControl(t,X.SUBTABLE_COLUMN);if(!r)return;const i=this.getInstanceParentControl(t,X.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)}}class Q0{}class Y0{constructor(t){this.config=t}apply(t){this.engine=t;const n=this.config;if(!n)return;const r=Ku(n,t);if(!r)return;const u=t.getAction();for(let[i,o]of Object.entries(r.funcMap))u.addAction(i,o)}}function Ku(e,t){if(!e.module||!e.module.compiled)return;const n=e.module.compiled,r={exports:{ctx:t,utils:t.getAction().actionUtils}};try{new Function("module","exports",n).call(r,r,r.exports)}catch(o){Ze(o.message+". fail to parse the module"),process.env.NODE_ENV!=="production"&&Ze("fail to parse the module")}const u={},i={};for(const[o,s]of Object.entries(r.exports))typeof s=="function"?u[o]=s:i[o]=s;return{funcMap:u,variables:i}}const eh={"engine-mounted":"did_mount","engine-submit":"will_submit","engine-submit-params":"do_submit","engine-submitted":"did_submit"};class th{constructor(t){this.config=t}apply(t){this.engine=t,Object.entries(eh).forEach(([n,r])=>{t.on(n,u=>ze(this,null,function*(){const i=yield this.callLifecycleEvent(r,u);return i.includes(!1)?!1:i}))})}callLifecycleEvent(t,n){return ze(this,null,function*(){const r=this.config;return!r||!Array.isArray(r[t])?[]:yield Promise.all(r[t].map(i=>ze(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})))})}}class nh{constructor(t){this.config=t}apply(t){this.engine=t,cu.events.forEach(n=>{n.code&&n.key&&this.engineAddEventListener(n.code,n.key)})}engineAddEventListener(t,n){this.engine.on(t,r=>ze(this,null,function*(){if(!(t==="change"&&!this.engine.isMounted)&&r.instance!==void 0)return yield this.callControlEvent(n,r)}))}callControlEvent(t,n){return ze(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=>ze(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})));return u.includes(!1)?!1:u})}}function _r(){return _r=Object.assign?Object.assign.bind():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},_r.apply(this,arguments)}var Qu={epsilon:1e-12,matrix:"Matrix",number:"number",precision:64,predictable:!1,randomSeed:null};function ge(e){return typeof e=="number"}function nt(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 Yu(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isComplex===!0||!1}function ei(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isFraction===!0||!1}function ti(e){return e&&e.constructor.prototype.isUnit===!0||!1}function yn(e){return typeof e=="string"}var Se=Array.isArray;function Ut(e){return e&&e.constructor.prototype.isMatrix===!0||!1}function Mr(e){return Array.isArray(e)||Ut(e)}function rh(e){return e&&e.isDenseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function uh(e){return e&&e.isSparseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function ih(e){return e&&e.constructor.prototype.isRange===!0||!1}function ni(e){return e&&e.constructor.prototype.isIndex===!0||!1}function oh(e){return typeof e=="boolean"}function ah(e){return e&&e.constructor.prototype.isResultSet===!0||!1}function sh(e){return e&&e.constructor.prototype.isHelp===!0||!1}function ch(e){return typeof e=="function"}function fh(e){return e instanceof Date}function lh(e){return e instanceof RegExp}function hh(e){return!!(e&&typeof e=="object"&&e.constructor===Object&&!Yu(e)&&!ei(e))}function dh(e){return e===null}function ph(e){return e===void 0}function Dh(e){return e&&e.isAccessorNode===!0&&e.constructor.prototype.isNode===!0||!1}function gh(e){return e&&e.isArrayNode===!0&&e.constructor.prototype.isNode===!0||!1}function vh(e){return e&&e.isAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function mh(e){return e&&e.isBlockNode===!0&&e.constructor.prototype.isNode===!0||!1}function yh(e){return e&&e.isConditionalNode===!0&&e.constructor.prototype.isNode===!0||!1}function Eh(e){return e&&e.isConstantNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ah(e){return e&&e.isFunctionAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ch(e){return e&&e.isFunctionNode===!0&&e.constructor.prototype.isNode===!0||!1}function Fh(e){return e&&e.isIndexNode===!0&&e.constructor.prototype.isNode===!0||!1}function wh(e){return e&&e.isNode===!0&&e.constructor.prototype.isNode===!0||!1}function Bh(e){return e&&e.isObjectNode===!0&&e.constructor.prototype.isNode===!0||!1}function bh(e){return e&&e.isOperatorNode===!0&&e.constructor.prototype.isNode===!0||!1}function Sh(e){return e&&e.isParenthesisNode===!0&&e.constructor.prototype.isNode===!0||!1}function _h(e){return e&&e.isRangeNode===!0&&e.constructor.prototype.isNode===!0||!1}function Mh(e){return e&&e.isRelationalNode===!0&&e.constructor.prototype.isNode===!0||!1}function Nh(e){return e&&e.isSymbolNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ih(e){return e&&e.constructor.prototype.isChain===!0||!1}function Nr(e){var t=typeof e;return t==="object"?e===null?"null":nt(e)?"BigNumber":e.constructor&&e.constructor.name?e.constructor.name:"Object":t}function ft(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 ft(n)});if(e instanceof Date)return new Date(e.valueOf());if(nt(e))return e;if(e instanceof RegExp)throw new TypeError("Cannot clone "+e);return xh(e,ft)}function xh(e,t){var n={};for(var r in e)En(e,r)&&(n[r]=t(e[r]));return n}function Ir(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(!Ir(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)||!Ir(e[n],t[n]))return!1;for(n in t)if(!(n in e))return!1;return!0}else return e===t}}function En(e,t){return e&&Object.hasOwnProperty.call(e,t)}function Oh(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 Rh=["Matrix","Array"],$h=["number","BigNumber","Fraction"],ri=function(t){if(t)throw new Error(`The global config is readonly.
|
|
1
|
+
var N1=Object.defineProperty,I1=Object.defineProperties;var x1=Object.getOwnPropertyDescriptors;var so=Object.getOwnPropertySymbols,O1=Object.getPrototypeOf,R1=Object.prototype.hasOwnProperty,$1=Object.prototype.propertyIsEnumerable,P1=Reflect.get;var $n=Math.pow,co=(Z,Y,ne)=>Y in Z?N1(Z,Y,{enumerable:!0,configurable:!0,writable:!0,value:ne}):Z[Y]=ne,oe=(Z,Y)=>{for(var ne in Y||(Y={}))R1.call(Y,ne)&&co(Z,ne,Y[ne]);if(so)for(var ne of so(Y))$1.call(Y,ne)&&co(Z,ne,Y[ne]);return Z},Zr=(Z,Y)=>I1(Z,x1(Y));var fo=(Z,Y,ne)=>P1(O1(Z),ne,Y);var ze=(Z,Y,ne)=>new Promise((Pn,Gt)=>{var Tn=We=>{try{Nt(ne.next(We))}catch(It){Gt(It)}},Ln=We=>{try{Nt(ne.throw(We))}catch(It){Gt(It)}},Nt=We=>We.done?Pn(We.value):Promise.resolve(We.value).then(Tn,Ln);Nt((ne=ne.apply(Z,Y)).next())});(function(Z,Y){typeof exports=="object"&&typeof module!="undefined"?Y(exports,require("crypto")):typeof define=="function"&&define.amd?define(["exports","crypto"],Y):(Z=typeof globalThis!="undefined"?globalThis:Z||self,Y(Z.modelDrivenEngine={},Z.require$$0))})(this,function(Z,Y){"use strict";function ne(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var Pn=ne(Y),Gt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Tn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Ln="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Nt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",We="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",It="{caption}\u5FC5\u586B",lo="\u8BF7\u8F93\u5165\u6807\u9898",ho="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",po="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Do="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",go="\u8BF7\u7ED1\u5B9A\u8868\u5355",vo="\u8BF7\u7ED1\u5B9A\u5217\u8868",mo="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",yo="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Eo="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Ao="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Co="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Fo="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",wo="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Bo="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",bo="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",So="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",_o="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Mo="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",No="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Io="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",xo="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Oo="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Ro="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",$o="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Po="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",To="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Lo="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",jo="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",qo="\u8BF7\u7ED1\u5B9A\u670D\u52A1",ko="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Vo="\u8BF7\u9009\u62E9\u7701",Uo="\u8BF7\u9009\u62E9\u5E02",Ho="\u8BF7\u9009\u62E9\u533A",zo="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Wo="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Zo="\u8BF7\u8F93\u5165\u5217\u5BBD",Xo="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Go="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Jo="\u8BF7\u9009\u62E9\u63A7\u4EF6",Ko="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Qo="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Yo="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ea="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",ta="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",na="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ra="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ua="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ia="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",oa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",aa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",sa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ca="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",fa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",la="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ha="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",da="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",pa="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Da="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ga="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",va="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ma={isNotNumber:Gt,isNotString:Tn,isNotObject:Ln,isNotArray:Nt,isNotBoolean:We,runtimeRequired:It,pleaseEnterCaption:lo,pleaseEnterCaptionTip:ho,pleaseEnterPlaceholder:po,pleaseEnterFieldCode:Do,pleaseEnterForm:go,pleaseEnterList:vo,pleaseEnterProcess:mo,pleaseEnterLabel:yo,pleaseEnterValue:Eo,bizKeyNotBindFiled:Ao,pleaseEnterNumberRange:Co,pleaseEnterAValueGreaterThanMin:Fo,pleaseEnterAValueLessThanMax:wo,numberRangeSetError:Bo,stringRangeError:bo,attachmentMaxSize:So,pleaseEnterTotalScoreSetting:_o,theTotalScoreMustNotBeLessThan1:Mo,scoreDefaultValueRange:No,attachmentLimitError:Io,PleaseReselectTheOptionalQuantity:xo,TheMaximumLengthIsGreaterThanTheMinimumLength:Oo,TheMinimumLengthIsGreaterThanTheMaximumLength:Ro,PleaseSelectTheCorrectOptionSettings:$o,optionIdIsRepeat:Po,optionIsRequired:To,pleaseEnterDataCode:Lo,pleaseEnterValueFieldCode:jo,pleaseEnterSvcCode:qo,pleaseBindAtLeastOneDisplayValue:ko,pleaseSelectProvince:Vo,pleaseSelectCity:Uo,pleaseSelectDistrict:Ho,limitRowsCannotBeLessThan0:zo,TheNumberOfRowsCannotBeLessThanMinRows:Wo,pleaseEnterColumnWidth:Zo,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Xo,pleaseCompleteAllRulesAndConditions:Go,pleaseSelectControl:Jo,pleaseSelectAtLeastOneColumn:Ko,pleaseSelectFillBackMode:Qo,pleaseSelectDashboard:Yo,rootNodeIsRequired:ea,theViewNameCannotBeEmpty:ta,pleaseSelectOcrType:na,pleaseSelectAtLeastOneFieldToFillIn:ra,pleaseChooseAtLeastOne:ua,pleaseEnterButtonContent:ia,pleaseEnterDataCodeInDataSetting:oa,pleaseEnterValueFieldCodeInDataSetting:aa,pleaseEnterSvcCodeInDataSetting:sa,pleaseBindAtLeastOneDisplayValueInDataSetting:ca,rootNodeIsRequiredInDataSetting:fa,pleaseEnterMaxHeight:la,pleaseEnter:ha,pleaseEnterWatermark:da,pleaseEnterFileName:pa,pleaseUploadAtLeastOnePrintTemplate:Da,pleaseAssignBusiness:ga,pleaseAssignExternal:va},ya="Please enter a number",Ea="Please enter a string",Aa="Please enter an object",Ca="Please enter an array",Fa="Please enter a boolean",wa="{caption} Required",Ba="Please enter the title",ba="Please enter the bubble prompt",Sa="Please enter the prompt text",_a="Please bind data items",Ma="Please bind the form",Na="Please bind the list",Ia="Please bind the process",xa="Please enter the displayed value",Oa="Please enter the stored value",Ra="The document number is not bound to the data item",$a="Please enter a value greater than or equal to {min} and less than or equal to {max}",Pa="Please enter a value greater than or equal to {min}",Ta="Please enter a value less than or equal to {max}",La="The value range is set incorrectly",ja="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",qa="The attachment size must be between 0MB and 1000MB",ka="Please fill in the total score setting",Va="The total score cannot be less than 1",Ua="The default value must be between {min} and {max}",Ha="The number of attachments uploaded must be between {min} and {max}",za="Please re-select the optional quantity",Wa="The maximum length of the control must be greater than the minimum length",Za="The minimum length of the control must be less than the maximum length",Xa="Please select the correct option setting",Ga="Option ID cannot be repeated",Ja="Please enter at least one option",Ka="Please bind the data source",Qa="Please bind the stored value",Ya="Please bind the service",es="At least one display value must be bound",ts="Please select a province",ns="Please select a city",rs="Please select a district",us="The minimum number of lines to fill in cannot be less than 0",is="The number of rows cannot be less than {min} rows",os="Please enter the column width",as="Please set the logical relationship of all rule conditions",ss="Please complete all rules and conditions",cs="please select control",fs="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ls="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",hs="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ds="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ps="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ds="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",gs="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",vs="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ms="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ys="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Es="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",As="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Cs="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Fs="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ws="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Bs="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",bs="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ss="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",_s={isNotNumber:ya,isNotString:Ea,isNotObject:Aa,isNotArray:Ca,isNotBoolean:Fa,runtimeRequired:wa,pleaseEnterCaption:Ba,pleaseEnterCaptionTip:ba,pleaseEnterPlaceholder:Sa,pleaseEnterFieldCode:_a,pleaseEnterForm:Ma,pleaseEnterList:Na,pleaseEnterProcess:Ia,pleaseEnterLabel:xa,pleaseEnterValue:Oa,bizKeyNotBindFiled:Ra,pleaseEnterNumberRange:$a,pleaseEnterAValueGreaterThanMin:Pa,pleaseEnterAValueLessThanMax:Ta,numberRangeSetError:La,stringRangeError:ja,attachmentMaxSize:qa,pleaseEnterTotalScoreSetting:ka,theTotalScoreMustNotBeLessThan1:Va,scoreDefaultValueRange:Ua,attachmentLimitError:Ha,PleaseReselectTheOptionalQuantity:za,TheMaximumLengthIsGreaterThanTheMinimumLength:Wa,TheMinimumLengthIsGreaterThanTheMaximumLength:Za,PleaseSelectTheCorrectOptionSettings:Xa,optionIdIsRepeat:Ga,optionIsRequired:Ja,pleaseEnterDataCode:Ka,pleaseEnterValueFieldCode:Qa,pleaseEnterSvcCode:Ya,pleaseBindAtLeastOneDisplayValue:es,pleaseSelectProvince:ts,pleaseSelectCity:ns,pleaseSelectDistrict:rs,limitRowsCannotBeLessThan0:us,TheNumberOfRowsCannotBeLessThanMinRows:is,pleaseEnterColumnWidth:os,pleaseSetTheLogicalRelationshipOfAllRuleConditions:as,pleaseCompleteAllRulesAndConditions:ss,pleaseSelectControl:cs,pleaseSelectDashboard:fs,theViewNameCannotBeEmpty:ls,pleaseSelectOcrType:hs,pleaseSelectAtLeastOneFieldToFillIn:ds,pleaseChooseAtLeastOne:ps,pleaseEnterButtonContent:Ds,pleaseEnterDataCodeInDataSetting:gs,pleaseEnterValueFieldCodeInDataSetting:vs,pleaseEnterSvcCodeInDataSetting:ms,pleaseBindAtLeastOneDisplayValueInDataSetting:ys,rootNodeIsRequiredInDataSetting:Es,pleaseEnterMaxHeight:As,pleaseEnter:Cs,pleaseEnterWatermark:Fs,pleaseEnterFileName:ws,pleaseUploadAtLeastOnePrintTemplate:Bs,pleaseAssignBusiness:bs,pleaseAssignExternal:Ss},Ms="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ns="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Is="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xs="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Os="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Rs="{caption}\u5FC5\u9808",$s="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ps="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ts="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ls="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",js="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qs="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ks="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Vs="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Us="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Hs="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",zs="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ws="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Zs="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Xs="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Gs="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Js="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ks="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Qs="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ys="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ec="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",tc="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",nc="\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",rc="\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",uc="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ic="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",oc="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ac="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",sc="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",cc="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",fc="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",lc="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",hc="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",dc="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",pc="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Dc="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",gc="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vc="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",mc="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",yc="please select control",Ec="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ac="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Cc="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Fc="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",wc="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Bc="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",bc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Sc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",_c="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Mc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Nc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ic="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",xc="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Oc="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Rc="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",$c="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Pc="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Tc="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Lc={isNotNumber:Ms,isNotString:Ns,isNotObject:Is,isNotArray:xs,isNotBoolean:Os,runtimeRequired:Rs,pleaseEnterCaption:$s,pleaseEnterCaptionTip:Ps,pleaseEnterPlaceholder:Ts,pleaseEnterFieldCode:Ls,pleaseEnterForm:js,pleaseEnterList:qs,pleaseEnterProcess:ks,pleaseEnterLabel:Vs,pleaseEnterValue:Us,bizKeyNotBindFiled:Hs,pleaseEnterNumberRange:zs,pleaseEnterAValueGreaterThanMin:Ws,pleaseEnterAValueLessThanMax:Zs,numberRangeSetError:Xs,stringRangeError:Gs,attachmentMaxSize:Js,pleaseEnterTotalScoreSetting:Ks,theTotalScoreMustNotBeLessThan1:Qs,scoreDefaultValueRange:Ys,attachmentLimitError:ec,PleaseReselectTheOptionalQuantity:tc,TheMaximumLengthIsGreaterThanTheMinimumLength:nc,TheMinimumLengthIsGreaterThanTheMaximumLength:rc,PleaseSelectTheCorrectOptionSettings:uc,optionIdIsRepeat:ic,optionIsRequired:oc,pleaseEnterDataCode:ac,pleaseEnterValueFieldCode:sc,pleaseEnterSvcCode:cc,pleaseBindAtLeastOneDisplayValue:fc,pleaseSelectProvince:lc,pleaseSelectCity:hc,pleaseSelectDistrict:dc,limitRowsCannotBeLessThan0:pc,TheNumberOfRowsCannotBeLessThanMinRows:Dc,pleaseEnterColumnWidth:gc,pleaseSetTheLogicalRelationshipOfAllRuleConditions:vc,pleaseCompleteAllRulesAndConditions:mc,pleaseSelectControl:yc,pleaseSelectDashboard:Ec,theViewNameCannotBeEmpty:Ac,pleaseSelectOcrType:Cc,pleaseSelectAtLeastOneFieldToFillIn:Fc,pleaseChooseAtLeastOne:wc,pleaseEnterButtonContent:Bc,pleaseEnterDataCodeInDataSetting:bc,pleaseEnterValueFieldCodeInDataSetting:Sc,pleaseEnterSvcCodeInDataSetting:_c,pleaseBindAtLeastOneDisplayValueInDataSetting:Mc,rootNodeIsRequiredInDataSetting:Nc,pleaseEnterMaxHeight:Ic,pleaseEnter:xc,pleaseEnterWatermark:Oc,pleaseEnterFileName:Rc,pleaseUploadAtLeastOnePrintTemplate:$c,pleaseAssignBusiness:Pc,pleaseAssignExternal:Tc},jc={zhCN:ma,enUS:_s,jaJP:Lc},xe;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(xe||(xe={}));var pt;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(pt||(pt={}));var Xr="zh-CN";function we(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Le;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(Le||(Le={}));var X;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(X||(X={}));var H;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(H||(H={}));var De;De={},we(De,H.ARRAY,X.ARRAY_COLUMN),we(De,H.AUTO_NUMBER,X.AUTO_NUMBER_COLUMN),we(De,H.DECIMAL,X.DECIMAL_COLUMN),we(De,H.DEPARTMENTS,X.DEPARTMENT_COLUMN),we(De,H.FILE,X.FILE_COLUMN),we(De,H.IMAGE,X.IMAGE_COLUMN),we(De,H.ADDRESS,X.LOCATION_COLUMN),we(De,H.EMPLOYEES,X.EMPLOYEE_COLUMN),we(De,H.TEXT,X.TEXT_COLUMN),we(De,H.TIMESCOPE,X.TIMESCOPE_COLUMN),we(De,H.TIMESTAMP,X.TIMESTAMP_COLUMN),we(De,H.VARCHAR,X.VARCHAR_COLUMN),we(De,H.RELATION,X.VARCHAR_COLUMN);var Gr;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(Gr||(Gr={}));var Jr="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",qc=Jr+"0123456789";function jn(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?Jr:qc,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function qn(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 kc(e){if(Array.isArray(e))return qn(e)}function Vc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Kr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Uc(){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 Jt(e,t,n){return Uc()?Jt=Reflect.construct:Jt=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),l=new c;return o&&Ot(l,o.prototype),l},Jt.apply(null,arguments)}function xt(e){return xt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},xt(e)}function Qr(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&&Ot(e,t)}function Hc(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function zc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Wc(){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 Zc(e,t){return t&&(Xc(t)==="object"||typeof t=="function")?t:Vc(e)}function Ot(e,t){return Ot=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ot(e,t)}function Yr(e){return kc(e)||zc(e)||Gc(e)||Wc()}var Xc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Gc(e,t){if(!!e){if(typeof e=="string")return qn(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 qn(e,t)}}function kn(e){var t=typeof Map=="function"?new Map:void 0;return kn=function(r){if(r===null||!Hc(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 Jt(r,arguments,xt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Ot(u,r)},kn(e)}function Jc(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function eu(e){var t=Jc();return function(){var r=xt(e),u;if(t){var i=xt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Zc(this,u)}}var Vn=console;function Je(){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=Vn).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(Yr(u)))}function Un(){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=Vn).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(Yr(u)))}function Kc(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Hn=function(e){Qr(n,e);var t=eu(n);function n(r){Kr(this,n);var u;return u=t.call(this,r),u.name="\u{1F4A5} Driven Error",u.message=r?Kc(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return n}(kn(Error)),Qc=function(e){Qr(n,e);var t=eu(n);function n(r){Kr(this,n);var u;return u=t.call(this,r),u.name="\u{1F6A8} Driven Reference Error",u}return n}(Hn);function Ze(e){throw new Hn(e)}function tu(e){throw new Qc(e)}function Kt(e){Vn.error(new Hn(e))}function at(e,t){Array.isArray(e)&&e.map(function(n){switch(n.controlType){case"layout":at(n==null?void 0:n.children,t);break;case"search":at(n==null?void 0:n.children,t);break;case"form":t(n)}})}var Yc=Object.prototype.toString;function nu(e,t){return Yc.call(e)==="[object "+t+"]"}function ef(e){return nu(e,"String")}function tf(e){return nu(e,"Promise")}var nf=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();tf(r)?r.then(function(u){n._messageCache.clear(),n.messages[n.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var u=this.getMessage(t);return u?this.formatMessage(u,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(u,i,o,s){if(u!==void 0){var c=u[i];if(!(o===s.length-1&&!ef(c)))return c}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,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 rf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Oe=function(){function e(){rf(this,e)}return e.getMessage=function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)},e.resetI18n=function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Xr;return new nf({locale:n,messages:jc})},e.setLocale=function(n){return this.$i18n.setLocale(n)},e}();Oe.$i18n=Oe.resetI18n();function ru(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,o){return"."+o}).split("."),u=!1;return r.reduce(function(i,o,s,c){var l=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,o)){Je("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),i,i);return}return s===c.length-1&&!Object.is(l[o],n)&&(l[o]=n,u=!0),l[o]}},e),u}var Ke=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function uu(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var zn={exports:{}};(function(e){(function(t){var n=function(g,E,b){if(!l(E)||a(E)||h(E)||d(E)||c(E))return E;var C,M=0,O=0;if(f(E))for(C=[],O=E.length;M<O;M++)C.push(n(g,E[M],b));else{C={};for(var P in E)Object.prototype.hasOwnProperty.call(E,P)&&(C[g(P,b)]=n(g,E[P],b))}return C},r=function(g,E){E=E||{};var b=E.separator||"_",C=E.split||/(?=[A-Z])/;return g.split(C).join(b)},u=function(g){return p(g)?g:(g=g.replace(/[\-_\s]+(.)?/g,function(E,b){return b?b.toUpperCase():""}),g.substr(0,1).toLowerCase()+g.substr(1))},i=function(g){var E=u(g);return E.substr(0,1).toUpperCase()+E.substr(1)},o=function(g,E){return r(g,E).toLowerCase()},s=Object.prototype.toString,c=function(g){return typeof g=="function"},l=function(g){return g===Object(g)},f=function(g){return s.call(g)=="[object Array]"},a=function(g){return s.call(g)=="[object Date]"},h=function(g){return s.call(g)=="[object RegExp]"},d=function(g){return s.call(g)=="[object Boolean]"},p=function(g){return g=g-0,g===g},D=function(g,E){var b=E&&"process"in E?E.process:E;return typeof b!="function"?g:function(C,M){return b(C,g,M)}},v={camelize:u,decamelize:o,pascalize:i,depascalize:o,camelizeKeys:function(g,E){return n(D(u,E),g)},decamelizeKeys:function(g,E){return n(D(o,E),g,E)},pascalizeKeys:function(g,E){return n(D(i,E),g)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=v:t.humps=v})(Ke)})(zn);function te(e){if(e!==void 0)return typeof e=="object"?JSON.parse(JSON.stringify(e)):e}function je(e){return Object.prototype.toString.call(e)==="[object Object]"}function uf(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function Dt(e){return Array.isArray(e)}function Be(e){return typeof e=="string"}function Qt(e){return typeof e=="number"}function iu(e){return typeof e=="function"}function of(e){return Dt(e)&&e.every(function(t){return Be(t)})}function af(e){return Dt(e)&&e.every(function(t){return Qt(t)||t===""})}function ou(e){return/^\[.*?]$/.test(e)}function Yt(e){return/^{.*?}$/.test(e)}function Wn(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 sf(e){if(Array.isArray(e))return Wn(e)}function au(e,t,n,r,u,i,o){try{var s=e[i](o),c=s.value}catch(l){n(l);return}s.done?t(c):Promise.resolve(c).then(r,u)}function cf(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(c){au(i,r,u,o,s,"next",c)}function s(c){au(i,r,u,o,s,"throw",c)}o(void 0)})}}function ff(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function lf(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function hf(){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 Zn(e){return sf(e)||lf(e)||df(e)||hf()}function df(e,t){if(!!e){if(typeof e=="string")return Wn(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 Wn(e,t)}}var pf=function(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(l){return function(f){return c([l,f])}}function c(l){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=l[0]&2?r.return:l[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,l[1])).done)return u;switch(r=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return o.label++,{value:l[1],done:!1};case 5:o.label++,r=l[1],l=[0];continue;case 7:l=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){o=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){o.label=l[1];break}if(l[0]===6&&o.label<u[1]){o.label=u[1],u=l;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(l);break}u[2]&&o.ops.pop(),o.trys.pop();continue}l=t.call(e,o)}catch(f){l=[6,f],r=0}finally{n=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},su=function(){function e(){ff(this,e),this._events=new Map,this.debug=!1}var t=e.prototype;return t.emit=function(r){for(var u=arguments.length,i=new Array(u>1?u-1:0),o=1;o<u;o++)i[o-1]=arguments[o];var s=this;return cf(function(){var c,l,f,a,h,d,p,D,v,g,E,b;return pf(this,function(C){switch(C.label){case 0:if(c=s._events.get(r),l=[],!c)return[3,10];f=c.slice(),a=!0,h=!1,d=void 0,C.label=1;case 1:C.trys.push([1,8,9,10]),p=f[Symbol.iterator](),C.label=2;case 2:if(a=(D=p.next()).done)return[3,7];if(v=D.value,!c.includes(v))return[3,6];C.label=3;case 3:return C.trys.push([3,5,,6]),s.debug&&Un.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(r," \u4E8B\u4EF6: ").concat(v.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+v.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"\u3002")].concat(Zn(i))),[4,v.apply(null,Zn(i))];case 4:return g=C.sent(),s.debug&&Un.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(r," \u4E8B\u4EF6: ").concat(v.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+v.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Zn(i),[g])),l.push(g),g===!1?[3,7]:[3,6];case 5:return E=C.sent(),Kt(String(E)),[3,6];case 6:return a=!0,[3,2];case 7:return[3,10];case 8:return b=C.sent(),h=!0,d=b,[3,10];case 9:try{!a&&p.return!=null&&p.return()}finally{if(h)throw d}return[7];case 10:return[2,l]}})})()},t.on=function(r,u){if(this._events.has(r)){var i;(i=this._events.get(r))===null||i===void 0||i.push(u)}else this._events.set(r,[u])},t.off=function(r,u){if(this._events.has(r)){var i=this._events.get(r),o=i==null?void 0:i.indexOf(u);i==null||i.splice(o,1)}},t.delete=function(r){this._events.has(r)&&this._events.delete(r)},t.clear=function(){this._events=new Map},e}();function Df(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var gf=[{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_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_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"}],cu=function(){function e(){Df(this,e)}var t=e.prototype;return t.getEventsFromKeys=function(r){var u=typeof r=="string"?[r]:r;return e.events.filter(function(i){return u.includes(i.key)})},e}();cu.events=gf;function vf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var fu=[],en=function(){function e(n){vf(this,e),this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=n,this._initControls(n)}var t=e.prototype;return t.registerControlConfig=function(r,u){return this.controlConfigMap.set(r,u),this},t.getControlConfig=function(r){return this.controlConfigMap.get(r)},t.getControls=function(){return this._controls},t.register=function(r){r.__is_control__||Ze("".concat(r.name," is not a Control"));var u=this._controls.findIndex(function(i){return i.controlType===r.controlType});return u>-1&&(Je("The ".concat(r.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(u,1)),this.registeredControlTypes.add(r.controlType),this._controls.push(r),this},t.isLayoutControl=function(r){return r.controlType===Le.LAYOUT},t.isFormControl=function(r){return r.controlType===Le.FORM},t.isListControl=function(r){return r.controlType===Le.LIST},t.isColumnControl=function(r){return r.controlType===Le.COLUMN},t.createControl=function(r,u){var i=this;if(Array.isArray(r))return r.map(function(f){return i.createControl(f,u)});r.children&&(r.children=r.children.map(function(f){return i.createControl(f,u)})),this.isListControl(r)&&r.props.headers&&(r.props.headers=r.props.headers.map(function(f){return i.createControl(f,u)}));var o=this.getControlFormType(r.type);if(o){var s=r;if(typeof u=="function"){var c=u(s);c&&(s=c)}var l=new o(s);return l}else Ze("The constructor of ".concat(r.type," could not be found, please confirm that the constructor has been registered"))},t.createControlInstance=function(r,u){var i=this.getControlFormType(r);if(i)return new i(u)},t.getControlFormType=function(r){return this._controls.find(function(u){return u.controlType===r})},t._initControls=function(r){var u=this;this.constructor.staticControls.forEach(function(i){u.register(i[r])})},e.register=function(r){var u=r.Designer,i=r.Runtime;(!u||!i||!u.__is_control__||!i.__is_control__)&&Ze("".concat(r," is can't register as a Control"));var o=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return o>-1&&(Je("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(o,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(r),this},e}();en.staticControls=fu,en.staticRegisteredTypes=new Set(fu.map(function(e){return e.Designer.controlType})),en.staticRegisteredConfigs=new Map;function st(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Rt=function e(t){st(this,e);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:""},Qe=function e(){st(this,e)},tn=function e(t){st(this,e);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:Xn.CNY},nn=function e(t){st(this,e);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:""},rn=function e(t){st(this,e);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 s;this.provinceDisplay=(s=t==null?void 0:t.provinceDisplay)!==null&&s!==void 0?s:""},un=function e(t){st(this,e);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:""},Xn;(function(e){e.CNY="CNY",e.USD="USD",e.JPY="JPY",e.EUR="EUR",e.INR="INR",e.IDR="IDR",e.BRL="BRL",e.AED="AED",e.AUD="AUD",e.CAD="CAD",e.EGP="EGP",e.GBP="GBP",e.ZAR="ZAR",e.KRW="KRW",e.MAD="MAD",e.MXN="MXN",e.MYR="MYR",e.PHP="PHP",e.PLN="PLN",e.RUB="RUB",e.SGD="SGD",e.THB="THB",e.TRY="TRY",e.TWD="TWD",e.VND="VND",e.HKD="HKD",e.IEP="IEP"})(Xn||(Xn={}));var lu;(function(e){e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions"})(lu||(lu={}));var Gn;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(Gn||(Gn={}));var mf=function e(t){st(this,e);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 yf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Jn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ef(){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 on(e,t,n){return Ef()?on=Reflect.construct:on=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),l=new c;return o&&Pt(l,o.prototype),l},on.apply(null,arguments)}function $t(e){return $t=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},$t(e)}function Af(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Pt(e,t)}function Cf(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Ff(e,t){return t&&(wf(t)==="object"||typeof t=="function")?t:yf(e)}function Pt(e,t){return Pt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Pt(e,t)}var wf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Kn(e){var t=typeof Map=="function"?new Map:void 0;return Kn=function(r){if(r===null||!Cf(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,$t(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Pt(u,r)},Kn(e)}function Bf(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function bf(e){var t=Bf();return function(){var r=$t(e),u;if(t){var i=$t(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Ff(this,u)}}var hu=function e(t){Jn(this,e),this.isHide={type:"boolean"}},du=function(e){Af(n,e);var t=bf(n);function n(r){return Jn(this,n),t.call(this)}return n}(Kn(Array)),ct=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";Jn(this,e);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new mf(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};ct.Rules=hu,ct.RuntimeRules=du;function qe(){return qe=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},qe.apply(this,arguments)}function Sf(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function Qn(e){return Qn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Qn(e)}function an(e,t){return an=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},an(e,t)}function _f(){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 sn(e,t,n){return _f()?sn=Reflect.construct:sn=function(u,i,o){var s=[null];s.push.apply(s,i);var c=Function.bind.apply(u,s),l=new c;return o&&an(l,o.prototype),l},sn.apply(null,arguments)}function Mf(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Yn(e){var t=typeof Map=="function"?new Map:void 0;return Yn=function(r){if(r===null||!Mf(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 sn(r,arguments,Qn(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),an(u,r)},Yn(e)}var Nf=/%[sdj%]/g,pu=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(pu=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function er(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 be(){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(Nf,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(c){return"[Circular]"}break;default:return s}});return o}return u}function If(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function re(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||If(t)&&typeof e=="string"&&!e)}function xf(e,t,n){var r=[],u=0,i=e.length;function o(s){r.push.apply(r,s),u++,u===i&&n(r)}e.forEach(function(s){t(s,o)})}function Du(e,t,n){var r=0,u=e.length;function i(o){if(o&&o.length){n(o);return}var s=r;r=r+1,s<u?t(e[s],i):n([])}i([])}function Of(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var gu=function(e){Sf(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}(Yn(Error));function Rf(e,t,n,r){if(t.first){var u=new Promise(function(a,h){var d=function(v){return r(v),v.length?h(new gu(v,er(v))):a()},p=Of(e);Du(p,n,d)});return u.catch(function(a){return a}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var o=Object.keys(e),s=o.length,c=0,l=[],f=new Promise(function(a,h){var d=function(D){if(l.push.apply(l,D),c++,c===s)return r(l),l.length?h(new gu(l,er(l))):a()};o.length||(r(l),a()),o.forEach(function(p){var D=e[p];i.indexOf(p)!==-1?Du(D,n,d):xf(D,n,d)})});return f.catch(function(a){return a}),f}function vu(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 mu(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]=qe(qe({},e[n]),r):e[n]=r}}return e}function yu(e,t,n,r,u,i){e.required&&(!n.hasOwnProperty(e.field)||re(t,i||e.type))&&r.push(be(u.messages.required,e.fullField))}function $f(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(be(u.messages.whitespace,e.fullField))}var tr={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},Tt={integer:function(t){return Tt.number(t)&&parseInt(t,10)===t},float:function(t){return Tt.number(t)&&!Tt.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"&&!Tt.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(tr.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(tr.url)},hex:function(t){return typeof t=="string"&&!!t.match(tr.hex)}};function Pf(e,t,n,r,u){if(e.required&&t===void 0){yu(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?Tt[o](t)||r.push(be(u.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(be(u.messages.types[o],e.fullField,e.type))}function Tf(e,t,n,r,u){var i=typeof e.len=="number",o=typeof e.min=="number",s=typeof e.max=="number",c=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,l=t,f=null,a=typeof t=="number",h=typeof t=="string",d=Array.isArray(t);if(a?f="number":h?f="string":d&&(f="array"),!f)return!1;d&&(l=t.length),h&&(l=t.replace(c,"_").length),i?l!==e.len&&r.push(be(u.messages[f].len,e.fullField,e.len)):o&&!s&&l<e.min?r.push(be(u.messages[f].min,e.fullField,e.min)):s&&!o&&l>e.max?r.push(be(u.messages[f].max,e.fullField,e.max)):o&&s&&(l<e.min||l>e.max)&&r.push(be(u.messages[f].range,e.fullField,e.min,e.max))}var gt="enum";function Lf(e,t,n,r,u){e[gt]=Array.isArray(e[gt])?e[gt]:[],e[gt].indexOf(t)===-1&&r.push(be(u.messages[gt],e.fullField,e[gt].join(", ")))}function jf(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(be(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(be(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var U={required:yu,whitespace:$f,type:Pf,range:Tf,enum:Lf,pattern:jf};function qf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t,"string")&&!e.required)return n();U.required(e,t,r,i,u,"string"),re(t,"string")||(U.type(e,t,r,i,u),U.range(e,t,r,i,u),U.pattern(e,t,r,i,u),e.whitespace===!0&&U.whitespace(e,t,r,i,u))}n(i)}function kf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&U.type(e,t,r,i,u)}n(i)}function Vf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&(U.type(e,t,r,i,u),U.range(e,t,r,i,u))}n(i)}function Uf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&U.type(e,t,r,i,u)}n(i)}function Hf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),re(t)||U.type(e,t,r,i,u)}n(i)}function zf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&(U.type(e,t,r,i,u),U.range(e,t,r,i,u))}n(i)}function Wf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&(U.type(e,t,r,i,u),U.range(e,t,r,i,u))}n(i)}function Zf(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();U.required(e,t,r,i,u,"array"),t!=null&&(U.type(e,t,r,i,u),U.range(e,t,r,i,u))}n(i)}function Xf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&U.type(e,t,r,i,u)}n(i)}var Gf="enum";function Jf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u),t!==void 0&&U[Gf](e,t,r,i,u)}n(i)}function Kf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t,"string")&&!e.required)return n();U.required(e,t,r,i,u),re(t,"string")||U.pattern(e,t,r,i,u)}n(i)}function Qf(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t,"date")&&!e.required)return n();if(U.required(e,t,r,i,u),!re(t,"date")){var s;t instanceof Date?s=t:s=new Date(t),U.type(e,s,r,i,u),s&&U.range(e,s.getTime(),r,i,u)}}n(i)}function Yf(e,t,n,r,u){var i=[],o=Array.isArray(t)?"array":typeof t;U.required(e,t,r,i,u,o),n(i)}function nr(e,t,n,r,u){var i=e.type,o=[],s=e.required||!e.required&&r.hasOwnProperty(e.field);if(s){if(re(t,i)&&!e.required)return n();U.required(e,t,r,o,u,i),re(t,i)||U.type(e,t,r,o,u)}n(o)}function el(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(re(t)&&!e.required)return n();U.required(e,t,r,i,u)}n(i)}var Lt={string:qf,method:kf,number:Vf,boolean:Uf,regexp:Hf,integer:zf,float:Wf,array:Zf,object:Xf,enum:Jf,pattern:Kf,date:Qf,url:nr,hex:nr,email:nr,required:Yf,any:el};function rr(){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 ur=rr();function Ye(e){this.rules=null,this._messages=ur,this.define(e)}Ye.prototype={messages:function(t){return t&&(this._messages=mu(rr(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var u=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var i=t,o=n,s=r;if(typeof o=="function"&&(s=o,o={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function c(D){var v,g=[],E={};function b(C){if(Array.isArray(C)){var M;g=(M=g).concat.apply(M,C)}else g.push(C)}for(v=0;v<D.length;v++)b(D[v]);g.length?E=er(g):(g=null,E=null),s(g,E)}if(o.messages){var l=this.messages();l===ur&&(l=rr()),mu(l,o.messages),o.messages=l}else o.messages=this.messages();var f,a,h={},d=o.keys||Object.keys(this.rules);d.forEach(function(D){f=u.rules[D],a=i[D],f.forEach(function(v){var g=v;typeof g.transform=="function"&&(i===t&&(i=qe({},i)),a=i[D]=g.transform(a)),typeof g=="function"?g={validator:g}:g=qe({},g),g.validator=u.getValidationMethod(g),g.field=D,g.fullField=g.fullField||D,g.type=u.getType(g),g.validator&&(h[D]=h[D]||[],h[D].push({rule:g,value:a,source:i,field:D}))})});var p={};return Rf(h,o,function(D,v){var g=D.rule,E=(g.type==="object"||g.type==="array")&&(typeof g.fields=="object"||typeof g.defaultField=="object");E=E&&(g.required||!g.required&&D.value),g.field=D.field;function b(O,P){return qe(qe({},P),{},{fullField:g.fullField+"."+O})}function C(O){O===void 0&&(O=[]);var P=O;if(Array.isArray(P)||(P=[P]),!o.suppressWarning&&P.length&&Ye.warning("async-validator:",P),P.length&&g.message!==void 0&&(P=[].concat(g.message)),P=P.map(vu(g)),o.first&&P.length)return p[g.field]=1,v(P);if(!E)v(P);else{if(g.required&&!D.value)return g.message!==void 0?P=[].concat(g.message).map(vu(g)):o.error&&(P=[o.error(g,be(o.messages.required,g.field))]),v(P);var S={};if(g.defaultField)for(var $ in D.value)D.value.hasOwnProperty($)&&(S[$]=g.defaultField);S=qe(qe({},S),D.rule.fields);for(var W in S)if(S.hasOwnProperty(W)){var k=Array.isArray(S[W])?S[W]:[S[W]];S[W]=k.map(b.bind(null,W))}var K=new Ye(S);K.messages(o.messages),D.rule.options&&(D.rule.options.messages=o.messages,D.rule.options.error=o.error),K.validate(D.value,D.rule.options||o,function(J){var ee=[];P&&P.length&&ee.push.apply(ee,P),J&&J.length&&ee.push.apply(ee,J),v(ee.length?ee:null)})}}var M;g.asyncValidator?M=g.asyncValidator(g,D.value,C,D.source,o):g.validator&&(M=g.validator(g,D.value,C,D.source,o),M===!0?C():M===!1?C(g.message||g.field+" fails"):M instanceof Array?C(M):M instanceof Error&&C(M.message)),M&&M.then&&M.then(function(){return C()},function(O){return C(O)})},function(D){c(D)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Lt.hasOwnProperty(t.type))throw new Error(be("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"?Lt.required:Lt[this.getType(t)]||!1}},Ye.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Lt[t]=n},Ye.warning=pu,Ye.messages=ur,Ye.validators=Lt;var tl={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 nl(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new Ye(e);return n.messages(Object.assign(tl,t)),n}var rl=new su;function ir(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 e}function il(e){if(Array.isArray(e))return ir(e)}function Eu(e,t,n,r,u,i,o){try{var s=e[i](o),c=s.value}catch(l){n(l);return}s.done?t(c):Promise.resolve(c).then(r,u)}function Au(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(c){Eu(i,r,u,o,s,"next",c)}function s(c){Eu(i,r,u,o,s,"throw",c)}o(void 0)})}}function ol(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 al(e,t,n){return t&&Cu(e.prototype,t),n&&Cu(e,n),e}function sl(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Fu(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function wu(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function cl(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function fl(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Bu(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){sl(e,u,n[u])})}return e}function ll(e){return ul(e)||wu(e)||bu(e)||cl()}function or(e){return il(e)||wu(e)||bu(e)||fl()}function bu(e,t){if(!!e){if(typeof e=="string")return ir(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 ir(e,t)}}var Su=function(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(l){return function(f){return c([l,f])}}function c(l){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=l[0]&2?r.return:l[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,l[1])).done)return u;switch(r=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return o.label++,{value:l[1],done:!1};case 5:o.label++,r=l[1],l=[0];continue;case 7:l=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){o=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){o.label=l[1];break}if(l[0]===6&&o.label<u[1]){o.label=u[1],u=l;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(l);break}u[2]&&o.ops.pop(),o.trys.pop();continue}l=t.call(e,o)}catch(f){l=[6,f],r=0}finally{n=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},ke=function(){function t(r){var u=this;ol(this,t),this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=Mu,this.removeSetting=_u,this._callControlHooks("preInstance",r);var i=Fu(this,t)?this.constructor:void 0,o=i.controlName,s=i.controlIcon,c=i.controlType,l=i.controlFieldType,f=i.controlEventKeys,a=i.controlCustomEvents,h=i.name,d=i.setting;o&&s&&c||tu("The ".concat(h," controlName,controlIcon,controlType is not define"));var p;this.id=(p=r==null?void 0:r.id)!==null&&p!==void 0?p:jn(10),this.name=o,this.icon=s;var D;this.type=(D=r==null?void 0:r.type)!==null&&D!==void 0?D:c,this.props=new ct(r==null?void 0:r.props,(Fu(this,t)?this.constructor:void 0).controlName);var v;this.controlType=(v=r==null?void 0:r.controlType)!==null&&v!==void 0?v:"base",this.setting=te(d);var g;this.fieldType=(g=r==null?void 0:r.fieldType)!==null&&g!==void 0?g:l,this.eventKeys=te(f),this.customEvents=te(a),Promise.resolve().then(function(){u._callControlHooks("postInstance",r)})}var n=t.prototype;return n._callControlHooks=function(){for(var u=arguments.length,i=new Array(u),o=0;o<u;o++)i[o]=arguments[o];var s,c=ll(i),l=c[0],f=c.slice(1);return(s=rl).emit.apply(s,[l,this].concat(or(f)))},n.preUpdate=function(u,i){this._callControlHooks("preUpdateProps",u,i)},n.postUpdate=function(u,i){this._callControlHooks("postUpdateProps",u,i)},n.updateProps=function(u,i){this.preUpdate(u,i),ru(this.props,u,i),this.postUpdate(u,i)},n.preValidate=function(){var u=this;return Au(function(){var i,o,s;return Su(this,function(c){switch(c.label){case 0:return i=Bu({},u.rules),[4,u._callControlHooks("preValidate",i)];case 1:return o=c.sent(),s=o[o.length-1],[2,s===!1?void 0:s]}})})()},n.validate=function(u,i){var o=this;return Au(function(){var s,c,l,f;return Su(this,function(a){switch(a.label){case 0:return[4,o.preValidate()];case 1:s=a.sent(),c=s!==void 0?s:Bu({},o.rules),Array.isArray(i)&&i.forEach(function(h){c.hasOwnProperty(h)&&delete c[h]}),l=nl(c,u),a.label=2;case 2:return a.trys.push([2,4,,5]),[4,l.validate(o.props)];case 3:return a.sent(),[2,!0];case 4:throw f=a.sent(),f.control||(f.control=o),f;case 5:return[2]}})})()},n.toDataBindModel=function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this.fieldType,o=this.id,s=this.type,c=this.props,l=c.dataBind,f=c.datasourceBind,a=c.optionConfig,h=c.caption,d=c.required,p=c.maxLength,D=c.options,v=c.encrypted,g=c.encryptedMode;if(!(!i&&!l&&!f)){var E={parentId:u,fieldType:i,controlId:o,caption:h,type:s,props:{}};switch(l&&(E.dataBind=l),a){case"datasource":case void 0:f&&(E.datasourceBind=f);break;case"custom":E.props.options=D;break}return d!==void 0&&(E.required=d),p!==void 0&&(E.maxLength=p),v!==void 0&&(E.encrypted=v),g!==void 0&&(E.encryptedMode=g),E}},n.preToSchema=function(){this._callControlHooks("preToSchema",this)},n.toSchema=function(){return this.preToSchema(),{id:this.id,type:this.type,props:te(this.props),fieldType:this.fieldType,controlType:this.controlType}},t.updateBasicControl=function(u,i){if(u==="setting"){if(i.add){var o;(o=this.setting).push.apply(o,or(i.add))}i.remove&&this.removeSettingItem(i.remove),i.update}},al(t,[{key:"rules",get:function(){var u=this.props.constructor.Rules;return u?new u(this.props):{}}}]),t}();ke.controlName="\u63A7\u4EF6",ke.controlIcon="icon",ke.controlType="control",ke.controlEventKeys=[],ke.controlCustomEvents=[],ke.setting=[],ke.__is_control__=!0,ke.removeSettingItem=_u,ke.updateSettingItem=Mu;function _u(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u=typeof r!="string",i=t.setting.findIndex(function(c){return c.key===(u?r.key:r)});if(i!==-1){var o,s;u?t.setting[i].showItems=(o=t.setting[i].showItems)===null||o===void 0?void 0:o.filter(function(c){return!r.hideItems.includes(c)}):t.setting.splice(i,1),u&&!(!((s=t.setting[i].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(i,1)}})}function Mu(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var i=n.setting.find(function(l){return l.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if(typeof t=="object"){var o,s=(o=t.type)!==null&&o!==void 0?o:"replace";if(s==="replace")i.showItems=t.showItems;else{var c;(c=i.showItems).push.apply(c,or(t.showItems))}}}})}function hl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Nu(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 dl(e,t,n){return t&&Nu(e.prototype,t),n&&Nu(e,n),e}function pl(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var vt=function(){function t(n){hl(this,t),this.customEvents=[],this.parent=null;var r=pl(this,t)?this.constructor:void 0,u=r.controlType,i=r.controlFieldType,o=r.name,s=r.controlCustomEvents;u||tu("The ".concat(o," controlType is not define"));var c;this.id=(c=n==null?void 0:n.id)!==null&&c!==void 0?c:jn(10);var l;this.type=(l=n==null?void 0:n.type)!==null&&l!==void 0?l:u,this.props=new ct(n==null?void 0:n.props),this.customEvents=s;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var a;this.fieldType=(a=n==null?void 0:n.fieldType)!==null&&a!==void 0?a:i;var h;this.pageStatus=(h=n==null?void 0:n.pageStatus)!==null&&h!==void 0?h:Gn.UNKNOWN}return dl(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}();vt.controlType="control",vt.__is_control__=!0,vt.controlCustomEvents=[];function Dl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ar(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function cn(e){return cn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},cn(e)}function sr(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&cr(e,t)}function gl(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function vl(e,t){return t&&(ml(t)==="object"||typeof t=="function")?t:Dl(e)}function cr(e,t){return cr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},cr(e,t)}var ml=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function yl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function fr(e){var t=yl();return function(){var r=cn(e),u;if(t){var i=cn(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return vl(this,u)}}var El=function(e){sr(n,e);var t=fr(n);function n(r){ar(this,n);var u;u=t.call(this,r),u.dataBind={},u.caption={type:"string",required:!0,message:Oe.getMessage("pleaseEnterCaption")},u.isHideCaption={type:"boolean"},u.labelPosition={type:"enum",enum:["top","left"]},u.defaultState={type:"enum",enum:["default","readonly"]},u.required={type:"boolean"},u.captionTip={type:"string",required:!1,message:Oe.getMessage("pleaseEnterCaptionTip")};var i={fieldCode:{type:"string",required:!0,message:Oe.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:Oe.getMessage("pleaseEnterFieldCode")}};if(gl(r.dataBind,Rt))u.dataBind={type:"object",required:!0,fields:te(i),message:Oe.getMessage("pleaseEnterFieldCode")};else{var o={type:"object",required:!0,fields:{},message:Oe.getMessage("pleaseEnterFieldCode")};Object.keys(r.dataBind).forEach(function(s){o.fields[s]={type:"object",required:!0,fields:te(i),message:Oe.getMessage("pleaseEnterFieldCode")}}),u.dataBind=o}return r.isShowCaptionTip&&(u.captionTip.required=!0),u}return n}(hu),Al=function(e){sr(n,e);var t=fr(n);function n(r){ar(this,n);var u;return u=t.call(this,r),u.push({type:"string",required:r.isHide?!1:r.required,message:r.requiredMessage!==""?r.requiredMessage:Oe.getMessage("runtimeRequired",{caption:r.caption})}),u}return n}(du),lr=function(e){sr(n,e);var t=fr(n);function n(r){ar(this,n);var u;u=t.call(this,r);var i;u.caption=(i=r==null?void 0:r.caption)!==null&&i!==void 0?i:"";var o;u.isHideCaption=(o=r==null?void 0:r.isHideCaption)!==null&&o!==void 0?o:!1;var s;u.isShowCaptionTip=(s=r==null?void 0:r.isShowCaptionTip)!==null&&s!==void 0?s:!1;var c;u.captionTip=(c=r==null?void 0:r.captionTip)!==null&&c!==void 0?c:"";var l;u.defaultState=(l=r==null?void 0:r.defaultState)!==null&&l!==void 0?l:"default";var f;u.labelPosition=(f=r==null?void 0:r.labelPosition)!==null&&f!==void 0?f:"top";var a;u.placeholder=(a=r==null?void 0:r.placeholder)!==null&&a!==void 0?a:"";var h;u.required=(h=r==null?void 0:r.required)!==null&&h!==void 0?h:!1;var d;u.requiredMessage=(d=r==null?void 0:r.requiredMessage)!==null&&d!==void 0?d:"",u.dataBind=new Rt(r==null?void 0:r.dataBind);var p;return u.defaultValue=(p=r==null?void 0:r.defaultValue)!==null&&p!==void 0?p:"",u}return n}(ct);lr.Rules=El,lr.RuntimeRules=Al;function Cl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Fl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function fn(e){return fn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},fn(e)}function wl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&hr(e,t)}function Bl(e,t){return t&&(bl(t)==="object"||typeof t=="function")?t:Cl(e)}function hr(e,t){return hr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},hr(e,t)}var bl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Sl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function _l(e){var t=Sl();return function(){var r=fn(e),u;if(t){var i=fn(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Bl(this,u)}}var Ve=function(e){wl(n,e);var t=_l(n);function n(r){Fl(this,n);var u;return u=t.call(this,r),u.controlType="form",u.props=new lr(r==null?void 0:r.props),u}return n}(vt);function Ml(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Nl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ln(e){return ln=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ln(e)}function Il(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&&dr(e,t)}function xl(e,t){return t&&(Ol(t)==="object"||typeof t=="function")?t:Ml(e)}function dr(e,t){return dr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},dr(e,t)}var Ol=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Rl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function $l(e){var t=Rl();return function(){var r=ln(e),u;if(t){var i=ln(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return xl(this,u)}}var Iu=function(e){Il(n,e);var t=$l(n);function n(r){return Nl(this,n),t.call(this,r)}return n}(ct);function pr(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 Pl(e){if(Array.isArray(e))return pr(e)}function Tl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Ll(){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 xu(e){return Pl(e)||Tl(e)||jl(e)||Ll()}function jl(e,t){if(!!e){if(typeof e=="string")return pr(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 pr(e,t)}}function ql(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function Ou(e,t){e.parent=t,ql(e,"parent")}function kl(e,t){e.forEach(function(n){Ou(n,t)})}var Ru=Symbol("targetKey");function $u(e){var t;return(t=e[Ru])!==null&&t!==void 0?t:e}function Pu(e,t){return kl(e,t),new Proxy(e,{get:function(r,u){for(var i=arguments.length,o=new Array(i>2?i-2:0),s=2;s<i;s++)o[s-2]=arguments[s];var c;return u===Ru?r:(c=Reflect).get.apply(c,[r,u].concat(xu(o)))},set:function(r,u,i){for(var o=arguments.length,s=new Array(o>3?o-3:0),c=3;c<o;c++)s[c-3]=arguments[c];var l;if(Dt(e)&&u==="length"&&i===e.length)return!0;var f=(l=Reflect).set.apply(l,[r,u,i].concat(xu(s)));return je(i)&&Ou(i,t),f}})}function hn(e,t,n,r){var u=r!=null?r:e,i=Pu($u(n!=null?n:[]),u);Object.defineProperty(e,t,{get:function(){return i},set:function(s){i=Pu($u(s),u)},enumerable:!0})}function Dr(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 Vl(e){if(Array.isArray(e))return Dr(e)}function Tu(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Lu(e,t,n,r,u,i,o){try{var s=e[i](o),c=s.value}catch(l){n(l);return}s.done?t(c):Promise.resolve(c).then(r,u)}function Ul(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(c){Lu(i,r,u,o,s,"next",c)}function s(c){Lu(i,r,u,o,s,"throw",c)}o(void 0)})}}function Hl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function zl(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function mt(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?mt=Reflect.get:mt=function(u,i,o){var s=e0(u,i);if(!!s){var c=Object.getOwnPropertyDescriptor(s,i);return c.get?c.get.call(o):c.value}},mt(e,t,n||e)}function et(e){return et=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},et(e)}function Wl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&gr(e,t)}function Zl(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Xl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Gl(){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 Jl(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){zl(e,u,n[u])})}return e}function Kl(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 Ql(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Kl(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Yl(e,t){return t&&(t0(t)==="object"||typeof t=="function")?t:Tu(e)}function gr(e,t){return gr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},gr(e,t)}function e0(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=et(e),e!==null););return e}function ju(e){return Vl(e)||Xl(e)||n0(e)||Gl()}var t0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function n0(e,t){if(!!e){if(typeof e=="string")return Dr(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 Dr(e,t)}}function r0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function u0(e){var t=r0();return function(){var r=et(e),u;if(t){var i=et(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Yl(this,u)}}var i0=function(e,t){var n,r,u,i,o={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(l){return function(f){return c([l,f])}}function c(l){if(n)throw new TypeError("Generator is already executing.");for(;o;)try{if(n=1,r&&(u=l[0]&2?r.return:l[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,l[1])).done)return u;switch(r=0,u&&(l=[l[0]&2,u.value]),l[0]){case 0:case 1:u=l;break;case 4:return o.label++,{value:l[1],done:!1};case 5:o.label++,r=l[1],l=[0];continue;case 7:l=o.ops.pop(),o.trys.pop();continue;default:if(u=o.trys,!(u=u.length>0&&u[u.length-1])&&(l[0]===6||l[0]===2)){o=0;continue}if(l[0]===3&&(!u||l[1]>u[0]&&l[1]<u[3])){o.label=l[1];break}if(l[0]===6&&o.label<u[1]){o.label=u[1],u=l;break}if(u&&o.label<u[2]){o.label=u[2],o.ops.push(l);break}u[2]&&o.ops.pop(),o.trys.pop();continue}l=t.call(e,o)}catch(f){l=[6,f],r=0}finally{n=u=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}},o0=1e4,qu=function(t){Wl(r,t);var n=u0(r);function r(i){Hl(this,r);var o;o=n.call(this,i),o.controlType="layout";var s=Zl(this,r)?this.constructor:void 0,c=s.excludes,l=s.childrenMaxLength;return o.props=new Iu(i==null?void 0:i.props),hn(Tu(o),"children",i==null?void 0:i.children),o.excludes=te(c),o.childrenMaxLength=l,o}var u=r.prototype;return u.judgeExcludesChildren=function(o){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(o)},u.judgeJoinChildren=function(o){var s=this.judgeExcludesChildren(o);return s&&this.childrenMaxLength>this.children.length},u.validate=function(o,s){var c=this,l=this,f=function(){return mt(et(r.prototype),"validate",c)};return Ul(function(){return i0(this,function(a){switch(a.label){case 0:return[4,f().call(l,o,s)];case 1:return a.sent(),[4,Promise.all(l.children.map(function(h){return h.validate(o,s)}))];case 2:return a.sent(),[2,!0]}})})()},u.toDataBindModel=function(){var o=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,s=mt(et(r.prototype),"toDataBindModel",this).call(this),c=s?[s]:[];return this.children.reduce(function(l,f){var a=f.toDataBindModel(o);if(Array.isArray(a)){var h=a.filter(function(d){return!!d});return ju(l).concat(ju(h))}return a&&l.push(a),l},c)},u.toSchema=function(){var o=mt(et(r.prototype),"toSchema",this).call(this),s=this.children.map(function(c){var l=c.toSchema();return l});return Ql(Jl({},o),{children:s})},r}(ke);qu.excludes=!1,qu.childrenMaxLength=o0;function ku(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function a0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function dn(e){return dn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},dn(e)}function s0(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&&vr(e,t)}function c0(e,t){return t&&(f0(t)==="object"||typeof t=="function")?t:ku(e)}function vr(e,t){return vr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},vr(e,t)}var f0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function l0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function h0(e){var t=l0();return function(){var r=dn(e),u;if(t){var i=dn(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return c0(this,u)}}var d0=function(e){s0(n,e);var t=h0(n);function n(r){a0(this,n);var u;return u=t.call(this,r),u.controlType="layout",u.props=new Iu(r==null?void 0:r.props),hn(ku(u),"children",r==null?void 0:r.children),u}return n}(vt);function Vu(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function p0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pn(e){return pn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},pn(e)}function D0(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 g0(e,t){return t&&(v0(t)==="object"||typeof t=="function")?t:Vu(e)}function mr(e,t){return mr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},mr(e,t)}var v0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function m0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function y0(e){var t=m0();return function(){var r=pn(e),u;if(t){var i=pn(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return g0(this,u)}}var E0=function(e){D0(n,e);var t=y0(n);function n(r,u){p0(this,n);var i;return i=t.call(this,u),hn(Vu(i),"headers",u==null?void 0:u.headers,r),i}return n}(ct);H.LIST;function yr(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function A0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Uu(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function C0(e,t,n){return t&&Uu(e.prototype,t),n&&Uu(e,n),e}function Dn(e){return Dn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Dn(e)}function F0(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&&Er(e,t)}function w0(e,t){return t&&(B0(t)==="object"||typeof t=="function")?t:yr(e)}function Er(e,t){return Er=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Er(e,t)}var B0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function b0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function S0(e){var t=b0();return function(){var r=Dn(e),u;if(t){var i=Dn(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return w0(this,u)}}var gn=function(e){F0(n,e);var t=S0(n);function n(r){A0(this,n);var u;return u=t.call(this,r),u.controlType="list",u.props=new E0(yr(u),r==null?void 0:r.props),hn(yr(u),"children",r==null?void 0:r.children),u}return C0(n,[{key:"length",get:function(){return this.children.length}}]),n}(vt);console.log(11);function vn(e){return e.controlType===Le.LAYOUT||e.controlType===Le.WRAP||e.controlType===Le.LIST||e.controlType===Le.SEARCH}function jt(e,t){Array.isArray(e)&&e.map(n=>{if(n.type===X.SUBTABLE){const r=n.getChildrenFormControl();t(n,r)}else vn(n)?jt(n==null?void 0:n.children,t):n instanceof Ve&&t(n)})}function qt(e,t){Array.isArray(e)&&e.map(n=>{n.type===X.DATA_VIEW||n.type===X.SIMPLE_SEARCH?t(n):vn(n)&&qt(n==null?void 0:n.children,t)})}class Ar extends en{constructor(t){super("Runtime"),this._flatInstances=[],this._instanceMap={};const{schema:n}=t;this._schema=n,this._instance=this.createControl(n,t.beforeCreateInstance),this.getFlatInstances()}getFlatInstances(){const t=[],n={};return Hu(this._instance,r=>{t.push(r),n[r.id]||(n[r.id]=[]),n[r.id].push(r)}),this._flatInstances=t,this._instanceMap=n,this._flatInstances}get schema(){return this._schema}get instance(){return this._instance}get flatInstances(){return this._flatInstances}get instanceMap(){return this._instanceMap}get rules(){let t={};return qt(this._instance,n=>{t[n.id]=n.rules[0],jt(n.children,r=>{(r instanceof Ve||r instanceof gn)&&_0(t[n.id].fields,r)})}),t}get antdRules(){let t={};return qt(this._instance,n=>{t[n.id]=n.rules[0],jt(n.children,r=>{(r instanceof Ve||r instanceof gn)&&M0(t[n.id].fields,r)})}),t}}function Hu(e,t){Array.isArray(e)?e.map(n=>{t(n),vn(n)&&Hu(n.children,t)}):t(e)}function Cr(e){return e.props.isHide?!0:e.parent===null?!1:Cr(e.parent)}function _0(e,t){if(!Cr(t)){if(t instanceof Ve)e[t.id]=t.rules;else if(t.type===X.SUBTABLE){e[t.id]=t.rules;const n={type:"array",fields:{}};t.children.forEach((r,u)=>{at(r.children,i=>{n.fields&&(n.fields[u]||(n.fields[u]={type:"object",required:!0,fields:{}}),n.fields[u].fields[i.id]=i.rules)})}),e[t.id].push(n)}}}function M0(e,t){Cr(t)||(t instanceof Ve?e[t.id]=t.rules:t.type===X.SUBTABLE&&t.children.length&&(e[t.id]=[],t.children.forEach(n=>{let r={};at(n.children,u=>{r[u.id]=u.rules}),e[t.id].push(r)})))}class N0{constructor(t){const{state:n,emptyState:r,databindMapping:u,controlidMapping:i}=I0(t.instance);this.emptyState=r,this.state=n,this.dataBindMapping=u,this.controlIdMapping=i}setState(t,n,r){const u=this.controlIdMapping[t];u!==void 0?this.state[u.dataView][t]=n:r!==void 0?Object.keys(this.controlIdMapping).map(i=>{const o=this.controlIdMapping[i].dataView,s=this.controlIdMapping[i].children;s!==void 0&&Object.keys(s).map(c=>{c===t&&(this.state[o][i][r][t]=n)})}):this.state[t]=n}getState(t,n){if(this.state[t]!==void 0)return this.state[t];{const u=this.controlIdMapping[t];if(u!==void 0)return this.state[u.dataView][t];if(n!==void 0){let i;return Object.keys(this.controlIdMapping).map(o=>{const s=this.controlIdMapping[o].dataView,c=this.controlIdMapping[o].children;c!==void 0&&Object.keys(c).map(l=>{var f;l===t&&(i=(f=this.state[s][o][n])==null?void 0:f[t])})}),i}else{let i=[];return Object.keys(this.controlIdMapping).map(o=>{const s=this.controlIdMapping[o].dataView,c=this.controlIdMapping[o].children;c!==void 0&&Object.keys(c).map(l=>{l===t&&this.state[s][o].map(f=>{i.push(f[t])})})}),i}}}getEmptyState(t){if(this.emptyState[t]!==void 0)return this.emptyState[t];{const r=this.controlIdMapping[t];if(r!==void 0)return this.emptyState[r.dataView][t];{let u;return Object.keys(this.controlIdMapping).map(i=>{const o=this.controlIdMapping[i].dataView,s=this.controlIdMapping[i].children;s!==void 0&&Object.keys(s).map(c=>{c===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 I0(e){let t={},n={},r={},u={};return qt(e,i=>{const o=i.id,s={},c={};jt([i],(l,f)=>{x0(s,c,l),O0(r,o,l),R0(u,o,l)}),t[o]=s,n[o]=c}),{state:t,emptyState:n,databindMapping:r,controlidMapping:u}}function x0(e,t,n){var r;if(n instanceof Ve)e[n.id]=te(n.props.defaultValue),t[n.id]=te(n.props.defaultValue);else{const u={};at(n.props.headers,i=>{u[i.id]=te(i.props.defaultValue)}),e[n.id]=new Array((r=n.props.defaultRows)!=null?r:1).fill(0).map(()=>te(u)),t[n.id]=u}}function O0(e,t,n){if(n instanceof Ve)n.props.dataBind instanceof Qe?Object.keys(n.props.dataBind).map(r=>{const u=n.props.dataBind,i=u[r].dataCode;i!==void 0&&(e[i]===void 0&&(e[i]={controlId:n.id,fields:[],dataViewId:t}),e[i].fields.push({fieldCode:u[r].fieldCode,controlId:n.id,dataBind:u,dataViewId:[t]}))}):(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]}));else{if(n.props.datasourceBind.dataCode===""){Je(`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 r=n.id;at(n.props.headers,u=>{u.props.dataBind instanceof Qe?Object.keys(u.props.dataBind).map(i=>{const o=u.props.dataBind,s=o[i].dataCode;e[s].fields.push({fieldCode:o[i].fieldCode,controlId:u.id,dataBind:o,dataViewId:[t,r]})}):e[u.props.dataBind.dataCode].fields.push({fieldCode:u.props.dataBind.fieldCode,controlId:u.id,dataBind:u.props.dataBind,dataViewId:[t,r]})})}}function R0(e,t,n){n instanceof Ve?e[n.id]={dataBind:n.props.dataBind,options:[],dataView:t}:n.type===X.SUBTABLE&&(e[n.id]={dataBind:new Rt({dataCode:n.props.datasourceBind.dataCode,fieldCode:""}),dataView:t,children:{},options:[]},at(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}})}))}const zu=["splice","push","shift","pop","unshift","reverse"],Fr=Symbol("__engineProxy__"),wr=Symbol("__engineTarget__"),Wu=Symbol("__engineArrayBeforeSetCallbackFlag__"),Zu=Symbol("__engineProxyThisKey__"),Re={type:"",args:[],callback:Xu};function Xu(){}j0();function $0(e,t,n,r,u){if(Re.type){Re.callback=u.bind(null,e,r);return}const i=Number(t);if(i>e.length){Ze(`Wrong array operations may cause unknown errors. It is recommended to use APIs such as ${zu.join(",")} for array operations`);return}if(!(Number.isNaN(i)&&t!=="length"))if(t==="length"){const s=n,c=e.length;if(s>e.length){Ze("Do not directly modify the length of the array data, please add new rows");return}return s===e.length?void 0:()=>u.call(null,e,r,"splice",[s,c-s])}else return i===e.length?()=>u.call(null,e,r,"push",[n]):()=>u.call(null,e,r,"splice",[i,1,n])}function P0(e,t,n){return{__engineProxy__:!0,get(r,u,i){return u===Fr?!0:u===wr?r:Array.isArray(r)&&u===Wu?n:u===Zu?e:Reflect.get(r,u,i)},set(r,u,i,o){var h;let s=i;const c=r[u],l=e===""?u:e+"."+u;function f(d){if(typeof d=="object"&&d!==null)return d[Fr]!==!0?mn(d,t,n,l):mn(d[wr],t,n,l)}s=(h=f(i))!=null?h:s;let a;if(Array.isArray(r)){const d=$0(r,u,i,e,t);a=Reflect.set(r,u,s,o),d&&d()}else{try{let d=s;if(s=n.call(null,r,l,s,c),d!==s){const p=f(s);p!==void 0&&(s=p)}}catch(d){return Kt(`${l} set error ${d}`),!0}a=Reflect.set(r,u,s,o),t.call(null,r,l,i,c)}return a}}}function mn(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]=mn(o,t,n,i))}return new Proxy(e,P0(r,t,n))}function Gu(e){const t=[];return e.forEach(n=>{t.push(n),n.controlType==="layout"&&t.push(...Gu(n.children))}),t}function Br(e,t){if(t==="")return;const n=t.split(".");if(n.length===0)return;const r=n[0],u=n.slice(1),i=e.find(o=>o.id===r);return u.length===0?i:u.reduce((o,s)=>{var f,a;const c=Number(s);if(Number.isNaN(c)){const h=o!=null&&o.children?Gu(o.children):void 0,d=h==null?void 0:h.find(p=>p.id===s);return d||(o instanceof Ve?o:void 0)}else return(a=(f=o==null?void 0:o.children)==null?void 0:f[c])!=null?a:o},i)}function T0(e,t){return["push","unshift"].includes(e)?t:e==="splice"?t.slice(2):[]}function L0(e,t,n){if(["push","unshift"].includes(e))return n;if(e==="splice")return t.slice(0,2).concat(n)}function j0(){zu.forEach(e=>{const t=Array.prototype[e];Array.prototype[e]=function(...n){var r;if(this[Fr]){let u;const i=T0(e,n);if(i.length){const o=(r=this[Wu])==null?void 0:r.call(this,this[wr],this[Zu],i),s=L0(e,n,o);Re.type=e,Re.args=s,u=t.apply(this,s)}else Re.type=e,Re.args=n,u=t.apply(this,n);return typeof Re.callback=="function"&&Re.callback(e,n,u),Re.type="",Re.args=[],Re.callback=Xu,u}else return t.apply(this,n)}})}class q0{constructor(){this.actionMap=new Map,this.buildinActions={},this.actionUtils={},this.sources={}}execAction(t,n,...r){return ze(this,null,function*(){const u=this.actionMap.get(t);if(!!u)try{return yield u.func.call(null,n,...r)}catch(i){Kt(`${u.id} Exception during calling action: ${i}`)}})}addAction(t,n){this.actionMap.has(t)&&Ze("duplicated action key");const r=new k0(t,n);this.actionMap.set(t,r)}}class k0{constructor(t,n){this.id="",this.id=t,this.func=n}}class V0{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 te(n)}remove(t){this._dataStore.delete(t)}getRemoteData(t){return ze(this,null,function*(){return this.executer===void 0?(Kt("\u672A\u521D\u59CB\u5316executer"),[]):this.executer(t)})}}class tt{}class kt extends tt{validate(t){return Be(t)}transform(t){if(t==null)return"";if(!je(t)&&!iu(t))return String(t);if(uf(t))return JSON.stringify(t);throw`${t} is not a string`}}class br extends tt{validate(t){return Qt(t)||t===""}transform(t){if(t==null)return"";const n=!je(t)&&!iu(t)?Number(t):void 0;if(!Number.isNaN(n)&&n!==void 0)return n;throw`${t} is not a number`}}class U0 extends tt{validate(t){return of(t)}transform(t){if(t==null)return[];function n(r){return r.map(u=>u?String(u):"")}if(Dt(t))return n(t);if(Be(t)&&ou(t))try{const r=JSON.parse(t);if(Array.isArray(r))return n(r)}catch(r){}return[String(t)]}}class H0 extends tt{validate(t){return af(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(Dt(t))return n(t);if(Be(t)&&ou(t))try{const u=JSON.parse(t);if(Dt(u))return n(u)}catch(u){}const r=Number(t);if(Number.isNaN(r))throw`${t} is not a number array`;return[r]}}class z0 extends tt{validate(t){return t instanceof tn||je(t)&&"amount"in t&&Qt(t.amount)&&"currency"in t&&Be(t.currency)}transform(t,n){if(t==null||t==="")return new tn({currency:n==null?void 0:n.currency});let r;if(je(t)&&(r=new tn(oe(oe({},n),t))),Be(t)&&Yt(t))try{const u=JSON.parse(t);r=new tn(oe(oe({},n),u))}catch(u){}if(r){const u=new br,i=new kt;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 W0 extends tt{validate(t){return t instanceof nn||je(t)&&"min"in t&&Be(t.min)&&"max"in t&&Be(t.max)}transform(t,n){if(t==null||t==="")return new nn;let r;if(je(t)&&(r=new nn(oe(oe({},n),t))),Be(t)&&Yt(t))try{const u=JSON.parse(t);r=new nn(oe(oe({},n),u))}catch(u){}if(r){const u=new kt;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 Z0 extends tt{validate(t){return t instanceof un||je(t)&&"result"in t&&Qt(t.result)&&"unit"in t&&Be(t.unit)}transform(t,n){if(t==null||t==="")return new un({unit:n==null?void 0:n.unit});let r;if(je(t)&&(r=new un(oe(oe({},n),t))),Be(t)&&Yt(t))try{const u=JSON.parse(t);r=new un(oe(oe({},n),u))}catch(u){}if(r){const u=new br,i=new kt;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 X0 extends tt{validate(t){return t instanceof rn}transform(t,n){if(t==null||t==="")return new rn;let r;if(je(t)&&(r=new rn(oe(oe({},n),zn.exports.camelizeKeys(t)))),Be(t)&&Yt(t))try{const u=JSON.parse(t);r=new rn(oe(oe({},n),zn.exports.camelizeKeys(u)))}catch(u){}if(r){const u=new kt;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 G0{static getValueChecker(t){let n;switch(t){case H.VARCHAR:case H.TIMESTAMP:case H.TEXT:case H.RELATION:case H.AUTO_NUMBER:n=new kt;break;case H.DECIMAL:n=new br;break;case H.EMPLOYEES:case H.DEPARTMENTS:case H.IMAGE:case H.FILE:case H.ARRAY:n=new U0;break;case H.MONEY:n=new z0;break;case H.TIMESCOPE:n=new W0;break;case H.CALC:n=new Z0;break;case H.DECIMAL_RANGE:n=new H0;break;case H.ADDRESS:n=new X0;break}return n}}function J0(e){if(["min","max","currency","unit"].includes(e))return H.VARCHAR;if(["result","amount"].includes(e))return H.DECIMAL}function Ju(e,t,n,r){var o;let u=(o=J0(t))!=null?o:e,i=G0.getValueChecker(u);if(!i||i.validate(n))return n;try{const s=i.transform(n,r);return s!==void 0?s:n}catch(s){throw`${t} ${s}`}}function K0(e,t,n){return Object.entries(e).reduce((r,[u,i])=>{const o=t[u];return r[u]=Ju(i,u,o,n[u]),r},Object.assign({},t))}typeof window!="undefined"&&(window.engines={});let yt=null,Vt="";class Sr extends su{constructor(t){super(),this.isMounted=!1,this.id=jn(8),this.__pluginsApplied=!1,this.actionManager=new q0,this._jobTasks=[],this.rawStore={},this.createControlInstance=this.createInstance,this.$options=Object.freeze(t);const{autoMount:n=!0,schema:r,beforeCreateInstance:u,externalParams:i,language:o=Xr,debug:s=!1}=this.$options;Oe.setLocale(o),this.debug=s,this.runtime=new Ar({schema:r,beforeCreateInstance:u}),this.externalParams=i,this.store=new N0({instance:this.runtime.instance}),this.debugLog("engine is Instantiation complete"),n&&this.mount()}debugLog(...t){this.debug&&Un(...t)}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}registerControl(...t){return this.runtime.register(...t),this}static register(...t){return Ar.register(...t)}static judgeControlIsRegistered(t){return Ar.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=mn(this.store.state,this._proxyStateCallback.bind(this),this._proxyStateBeforeSetCallback.bind(this))}_proxyStateBeforeSetCallback(t,n,r,u){const i=console,o=Date.now();i.log("\u3297\uFE0F_proxyStateBeforeSetCallback findItem "+n,r,u),i.time("\u3297\uFE0F_proxyStateBeforeSetCallback findItem "+n+" "+o);const s=Br(this.runtime.flatInstances,n);if(i.timeEnd("\u3297\uFE0F_proxyStateBeforeSetCallback findItem "+n+" "+o),!s)return r;if(this.assertInstance(s,X.SUBTABLE)){const f=s.props.headers.reduce((a,h)=>{const d=h.children[0];return d&&d instanceof Ve&&(a[d.id]=d.fieldType),a},{});return r===null?[]:r.map(a=>K0(f,a,this.getEmptyState(s.id)))}const c=n.split("."),l=c[c.length-1];try{return Ju(s.fieldType,l,r,u)}catch(f){throw Je(`the id=${s.id}'s instance setState error, %o ${f}.`,r),f}}_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 o=console;o.time("\u3297\uFE0F _handlerArrayUpdate findItem"+n);const s=Br(this.runtime.flatInstances,n);if(o.timeEnd("\u3297\uFE0F _handlerArrayUpdate findItem"+n),!(s instanceof gn))return;const c=d=>{const p=[];for(let D=0;D<d;D++){const v=this.listControlCreateRow(s,"subtable-row");v&&p.push(v)}return p},l=yt;let f=[],a=[],h=[];if(r&&u){switch(r){case"push":case"unshift":const d=u.length;f=c(d),a=u,s.children[r](...f),this.runtime.getFlatInstances();break;case"splice":if(u.length>2){const p=u.length-2,D=u.slice(2);f=c(p),a=D;const v=u[0],g=u[1];s.children[r](v,g,...f),this.runtime.getFlatInstances()}else s.children[r](...u),this.runtime.getFlatInstances();break;default:s.children[r](...u),this.runtime.getFlatInstances();break}r==="splice"?h=i:["pop","shift"].includes(r)&&(h=[i]),this.emit("list-change",{instance:s,value:this.getState(s.id),options:Object.assign({},l,{changed:f,data:a,deleted:h!=null?h:[]})}),yt=null}}_handlerObjectUpdate(t,n,r,u){const i=console,o=Date.now();i.log("\u3297\uFE0F_handlerObjectUpdate findItem "+n,r,u),i.time("\u3297\uFE0F_handlerObjectUpdate findItem "+n+" "+o);const s=Br(this.runtime.flatInstances,n);if(i.timeEnd("\u3297\uFE0F_handlerObjectUpdate findItem "+n+" "+o),!s)return;const c=this.getInstanceRowIndex(s),l=yt||{};if(s instanceof gn){s.children.length=0;const f=r;let a=[];for(let h=0;h<f.length;h++){const d=this.listControlCreateRow(s,"subtable-row");d&&a.push(d)}s.children.push(...a),this.runtime.getFlatInstances(),this.emit("list-change",{instance:s,value:r,options:Zr(oe({},l),{changed:a,data:f,deleted:u!=null?u:[]})})}else this.emit("change",{instance:s,value:this.getState(s.id,c),rowIndex:c,options:Zr(oe({},l),{oldValue:u})})}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{Vt=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this)}catch(r){Ze(`${Vt} Plugin apply Error
|
|
2
|
+
${r}`)}finally{Vt=""}}),this.__pluginsApplied=!0)}listControlCreateRow(t,n){const r=this.runtime.createControlInstance(n);if(!!r){if(r instanceof d0){const u=te(t.props.headers),i=this.createControl(u);r.children.push(...i)}return r}}listControlAddRow(t,n="subtable-row"){const r=this.listControlCreateRow(t,n);!r||t.children.push(r)}emit(t,n){return ze(this,null,function*(){if(t==="engine-mounted"){if(this.isMounted)return Je("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 fo(Sr.prototype,this,"emit").call(this,t,n);return r&&u&&(r(),this._jobTasks.splice(this._jobTasks.indexOf(u),1)),i})}on(t,n){return Vt&&(n.applyingPluginName=Vt),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)}getRules(t){var n;return t===void 0?this.runtime.rules:(n=this.runtime.rules[t])==null?void 0:n.fields}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 te(t===void 0?this.store.emptyState:this.store.getEmptyState(t))}setPayloadOptions(t){yt=t}setState(t,n,r,u){yt=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),yt=null}setStates(t,n,r){let u=t;Object.keys(u).forEach(i=>{Object.entries(this.store.controlIdMapping).forEach(([o,s])=>{if(s.dataView===i){const c=u[i][o];c!==void 0&&this.setState(o,c,n,r)}else(o===i||s.children&&s.children[i])&&u[i]!==void 0&&this.setState(i,u[i],n,r)})})}getField(t,n,r){if(!n){const c=this.getDataBindMapping(t);if(c){const{controlId:l}=c;return this.getState(l)}return}const u=this.getDataBindMapping(t,n);if(!u)return;const{dataBind:i,controlId:o}=u,s=this.getState(o,r);return i instanceof Qe?Object.entries(i).reduce((c,[l,f])=>f.fieldCode===n?c[l]:c,s):s}getData(t){var u,i,o,s,c,l,f,a;if(!t)return;let n=this.getDataBindMapping(t),r=this.getControlIdMapping();if(n){const{controlId:h}=n,d=this.getField(t);if(Array.isArray(d))return d.map(D=>{var g,E,b,C,M,O,P;let v={};for(let S in D)if((b=(E=(g=r[h])==null?void 0:g.children[S])==null?void 0:E.dataBind)!=null&&b.fieldCode)v[(C=r[h].children[S])==null?void 0:C.dataBind.fieldCode]=D[S];else if((M=r[h])!=null&&M.children[S])for(let $ in D[S])v[(P=(O=r[h])==null?void 0:O.children[S])==null?void 0:P.dataBind[$].fieldCode]=D[S][$];return v});{let p={};for(let D in d)if((i=(u=r[D])==null?void 0:u.dataBind)!=null&&i.fieldCode)p[(o=r[D])==null?void 0:o.dataBind.fieldCode]=d[D];else if((c=(s=r[D])==null?void 0:s.dataBind)!=null&&c.dataCode)p[(l=r[D])==null?void 0:l.dataBind.dataCode]=d[D].map(v=>{var E,b,C;let g={};for(let M in v)if((E=r[D].children[M])!=null&&E.dataBind.fieldCode)g[(b=r[D].children[M])==null?void 0:b.dataBind.fieldCode]=v[M];else for(let O in v[M])g[(C=r[D].children[M])==null?void 0:C.dataBind[O].fieldCode]=v[M][O];return g});else if(r[D])for(let v in d[D])p[(a=(f=r[D])==null?void 0:f.dataBind[v])==null?void 0:a.fieldCode]=d[D][v];return p}}}setField(t,n,r,u,i){var l;const o=this.getDataBindMapping(t,n);if(!o)return;const{dataBind:s,controlId:c}=o;if(s instanceof Qe){const f=(l=te(this.getState(c,u)))!=null?l:this.getEmptyState(c),a=Object.entries(s).reduce((h,[d,p])=>(p.fieldCode===n&&(h[d]=r),h),f);this.setState(c,a,u,i)}else this.setState(c,r,u,i)}setFields(t,n,r,u){const i=this.getDataBindMapping(t);if(!i)return;let o=[];i.fields.forEach(s=>{var a;const{dataBind:c,controlId:l,fieldCode:f}=s;if(!o.includes(f)&&!!Object.hasOwnProperty.call(n,f))if(c instanceof Qe){const h=(a=te(this.getState(l,r)))!=null?a:this.getEmptyState(l),d=Object.entries(c).reduce((p,[D,v])=>{o.push(v.fieldCode);const g=n[v.fieldCode];return g!==void 0&&(p[D]=g),p},h);this.setState(s.controlId,d,r,u)}else this.setState(l,n[f],r,u)})}buildFields(t,n){const r=this.getDataBindMapping(t);if(!r)return;let u=[];const i={};return r.fields.forEach(o=>{const{dataBind:s,controlId:c,fieldCode:l}=o;if(!u.includes(l)&&!!Object.hasOwnProperty.call(n,l))if(s instanceof Qe){const f=this.getEmptyState(c);i[o.controlId]=Object.entries(s).reduce((a,[h,d])=>{u.push(d.fieldCode);const p=n[d.fieldCode];return p!==void 0&&(a[h]=p),a},f)}else i[c]=n[l]}),i}setData(t,n){this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\uFF0C\u53C2\u6570\u4E3A%o\uFF0C%o\u3002",t,n);let r={};Object.keys(t).map(u=>{const i=t[u];if(Array.isArray(i))i.map(o=>{const s=this.getDataBindMapping(u);if(!s)return;let c=te(this.store.emptyState[s.dataViewId][s.controlId]),l=[];Object.keys(o).map(f=>{var h,d,p;if(l.includes(f))return;const a=(d=(h=this.store.dataBindMapping[u])==null?void 0:h.fields)==null?void 0:d.find(D=>D.fieldCode===f);if(a){if(a.dataBind instanceof Rt&&o[f]!==void 0)c[a.controlId]=o[f];else if(a.dataBind instanceof Qe){let D=te((p=this.getEmptyState(a.controlId))!=null?p:{});Object.keys(a.dataBind).map(v=>{const g=a.dataBind[v];o[g.fieldCode]!==void 0&&(D[v]=o[g.fieldCode]),l.push(g.fieldCode)}),c[a.controlId]=D}}}),r[s.dataViewId]||(r[s.dataViewId]={}),r[s.dataViewId][s.controlId]||(r[s.dataViewId][s.controlId]=[]),r[s.dataViewId][s.controlId].push(c)});else if(i){let o=[];Object.keys(i).map(s=>{var l;if(o.includes(s))return;const c=this.getDataBindMapping(u,s);if(c){if(r[c.dataViewId[0]]||(r[c.dataViewId[0]]={}),c.dataBind instanceof Rt&&i[s]!==void 0)r[c.dataViewId[0]][c.controlId]=i[s];else if(c.dataBind instanceof Qe){let f=te((l=this.getEmptyState(c.controlId))!=null?l:{});Object.keys(c.dataBind).map(a=>{const h=c.dataBind[a];i[h.fieldCode]!==void 0&&(f[a]=i[h.fieldCode]),o.push(h.fieldCode)}),r[c.dataViewId[0]][c.controlId]=f}}})}}),this.debugLog("engine setData\u65B9\u6CD5\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",r),this.setStates(r,void 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){var s;if(t===void 0)return this.runtime.flatInstances;const r=console,u=Date.now(),i="\u26A0\uFE0F getInstances "+t+" "+n+u;r.time(i);const o=this.runtime.flatInstances.filter(c=>c.id===t);if(n)if(o.length){const c=o[0];if(this.getInstanceRowIndex(c)!==void 0){const l=this.getInstanceInSubtableHeader(c);l&&o.unshift(l)}}else{const c=this.getControlIdMapping(),[l]=(s=Object.entries(c).find(([f,a])=>a.children&&t in a.children))!=null?s:[];if(l){const a=this.getInstance(l).props.headers.find(h=>h.children.find(d=>d.id===t));if(a){const h=a.children.find(d=>d.id===t);h&&o.unshift(h)}}}return r.timeEnd(i),o}setInstance(t,n,r,u){try{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),ru(i.props,n,r),this.schemaEvent("schema-change",{instance:i,props:n,value:r})}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){Je(`No corresponding dataCode=${t} was found`);return}if(!n)return r;const u=r.fields.find(i=>i.fieldCode===n);if(!u){Je(`No corresponding fieldCode=${n} was found`);return}return u}getAction(){return this.actionManager}initDataManager(t){this.dataManager=new V0(t)}getDataManager(){return this.dataManager}assertInstance(t,n){return Be(n)?t.type===n:n.includes(t.type)}getInstanceRowIndex(t){if(!t.parent)return;let n;if(this.assertInstance(t.parent,X.SUBTABLE))if(this.assertInstance(t,X.SUBTABLE_COLUMN))n=-1;else{const r=t.parent.children.findIndex(u=>u===t);r>-1&&(n=r)}else n=this.getInstanceRowIndex(t.parent);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,X.SUBTABLE_COLUMN)?t:this.getInstanceParentControl(t,X.SUBTABLE_COLUMN);if(!r)return;const i=this.getInstanceParentControl(t,X.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)}}class Q0{}class Y0{constructor(t){this.config=t}apply(t){this.engine=t;const n=this.config;if(!n)return;const r=Ku(n,t);if(!r)return;const u=t.getAction();for(let[i,o]of Object.entries(r.funcMap))u.addAction(i,o)}}function Ku(e,t){if(!e.module||!e.module.compiled)return;const n=e.module.compiled,r={exports:{ctx:t,utils:t.getAction().actionUtils}};try{new Function("module","exports",n).call(r,r,r.exports)}catch(o){Ze(o.message+". fail to parse the module"),process.env.NODE_ENV!=="production"&&Ze("fail to parse the module")}const u={},i={};for(const[o,s]of Object.entries(r.exports))typeof s=="function"?u[o]=s:i[o]=s;return{funcMap:u,variables:i}}const eh={"engine-mounted":"did_mount","engine-submit":"will_submit","engine-submit-params":"do_submit","engine-submitted":"did_submit"};class th{constructor(t){this.config=t}apply(t){this.engine=t,Object.entries(eh).forEach(([n,r])=>{t.on(n,u=>ze(this,null,function*(){const i=yield this.callLifecycleEvent(r,u);return i.includes(!1)?!1:i}))})}callLifecycleEvent(t,n){return ze(this,null,function*(){const r=this.config;return!r||!Array.isArray(r[t])?[]:yield Promise.all(r[t].map(i=>ze(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})))})}}class nh{constructor(t){this.config=t}apply(t){this.engine=t,cu.events.forEach(n=>{n.code&&n.key&&this.engineAddEventListener(n.code,n.key)})}engineAddEventListener(t,n){this.engine.on(t,r=>ze(this,null,function*(){if(!(t==="change"&&!this.engine.isMounted)&&r.instance!==void 0)return yield this.callControlEvent(n,r)}))}callControlEvent(t,n){return ze(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=>ze(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})));return u.includes(!1)?!1:u})}}function _r(){return _r=Object.assign?Object.assign.bind():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},_r.apply(this,arguments)}var Qu={epsilon:1e-12,matrix:"Matrix",number:"number",precision:64,predictable:!1,randomSeed:null};function ge(e){return typeof e=="number"}function nt(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 Yu(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isComplex===!0||!1}function ei(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isFraction===!0||!1}function ti(e){return e&&e.constructor.prototype.isUnit===!0||!1}function yn(e){return typeof e=="string"}var Se=Array.isArray;function Ut(e){return e&&e.constructor.prototype.isMatrix===!0||!1}function Mr(e){return Array.isArray(e)||Ut(e)}function rh(e){return e&&e.isDenseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function uh(e){return e&&e.isSparseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function ih(e){return e&&e.constructor.prototype.isRange===!0||!1}function ni(e){return e&&e.constructor.prototype.isIndex===!0||!1}function oh(e){return typeof e=="boolean"}function ah(e){return e&&e.constructor.prototype.isResultSet===!0||!1}function sh(e){return e&&e.constructor.prototype.isHelp===!0||!1}function ch(e){return typeof e=="function"}function fh(e){return e instanceof Date}function lh(e){return e instanceof RegExp}function hh(e){return!!(e&&typeof e=="object"&&e.constructor===Object&&!Yu(e)&&!ei(e))}function dh(e){return e===null}function ph(e){return e===void 0}function Dh(e){return e&&e.isAccessorNode===!0&&e.constructor.prototype.isNode===!0||!1}function gh(e){return e&&e.isArrayNode===!0&&e.constructor.prototype.isNode===!0||!1}function vh(e){return e&&e.isAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function mh(e){return e&&e.isBlockNode===!0&&e.constructor.prototype.isNode===!0||!1}function yh(e){return e&&e.isConditionalNode===!0&&e.constructor.prototype.isNode===!0||!1}function Eh(e){return e&&e.isConstantNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ah(e){return e&&e.isFunctionAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ch(e){return e&&e.isFunctionNode===!0&&e.constructor.prototype.isNode===!0||!1}function Fh(e){return e&&e.isIndexNode===!0&&e.constructor.prototype.isNode===!0||!1}function wh(e){return e&&e.isNode===!0&&e.constructor.prototype.isNode===!0||!1}function Bh(e){return e&&e.isObjectNode===!0&&e.constructor.prototype.isNode===!0||!1}function bh(e){return e&&e.isOperatorNode===!0&&e.constructor.prototype.isNode===!0||!1}function Sh(e){return e&&e.isParenthesisNode===!0&&e.constructor.prototype.isNode===!0||!1}function _h(e){return e&&e.isRangeNode===!0&&e.constructor.prototype.isNode===!0||!1}function Mh(e){return e&&e.isRelationalNode===!0&&e.constructor.prototype.isNode===!0||!1}function Nh(e){return e&&e.isSymbolNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ih(e){return e&&e.constructor.prototype.isChain===!0||!1}function Nr(e){var t=typeof e;return t==="object"?e===null?"null":nt(e)?"BigNumber":e.constructor&&e.constructor.name?e.constructor.name:"Object":t}function ft(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 ft(n)});if(e instanceof Date)return new Date(e.valueOf());if(nt(e))return e;if(e instanceof RegExp)throw new TypeError("Cannot clone "+e);return xh(e,ft)}function xh(e,t){var n={};for(var r in e)En(e,r)&&(n[r]=t(e[r]));return n}function Ir(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(!Ir(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)||!Ir(e[n],t[n]))return!1;for(n in t)if(!(n in e))return!1;return!0}else return e===t}}function En(e,t){return e&&Object.hasOwnProperty.call(e,t)}function Oh(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 Rh=["Matrix","Array"],$h=["number","BigNumber","Fraction"],ri=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
|
|
|
@@ -25,4 +25,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
25
25
|
*
|
|
26
26
|
* Copyright (c) 2021, Robert Eisele (robert@xarg.org)
|
|
27
27
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
28
|
-
**/(function(e,t){(function(n){var r=2e3,u={s:1,n:0,d:1};function i(p,D){if(isNaN(p=parseInt(p,10)))throw d.InvalidParameter;return p*D}function o(p,D){if(D===0)throw d.DivisionByZero;var v=Object.create(d.prototype);v.s=p<0?-1:1,p=p<0?-p:p;var g=h(p,D);return v.n=p/g,v.d=D/g,v}function s(p){for(var D={},v=p,g=2,E=4;E<=v;){for(;v%g===0;)v/=g,D[g]=(D[g]||0)+1;E+=1+2*g++}return v!==p?v>1&&(D[v]=(D[v]||0)+1):D[p]=(D[p]||0)+1,D}var c=function(p,D){var v=0,g=1,E=1,b=0,C=0,M=0,O=1,P=1,S=0,$=1,W=1,k=1,K=1e7,J;if(p!=null)if(D!==void 0){if(v=p,g=D,E=v*g,v%1!==0||g%1!==0)throw d.NonIntegerParameter}else switch(typeof p){case"object":{if("d"in p&&"n"in p)v=p.n,g=p.d,"s"in p&&(v*=p.s);else if(0 in p)v=p[0],1 in p&&(g=p[1]);else throw d.InvalidParameter;E=v*g;break}case"number":{if(p<0&&(E=p,p=-p),p%1===0)v=p;else if(p>0){for(p>=1&&(P=Math.pow(10,Math.floor(1+Math.log(p)/Math.LN10)),p/=P);$<=K&&k<=K;)if(J=(S+W)/($+k),p===J){$+k<=K?(v=S+W,g=$+k):k>$?(v=W,g=k):(v=S,g=$);break}else p>J?(S+=W,$+=k):(W+=S,k+=$),$>K?(v=W,g=k):(v=S,g=$);v*=P}else(isNaN(p)||isNaN(D))&&(g=v=NaN);break}case"string":{if($=p.match(/\d+|./g),$===null)throw d.InvalidParameter;if($[S]==="-"?(E=-1,S++):$[S]==="+"&&S++,$.length===S+1?C=i($[S++],E):$[S+1]==="."||$[S]==="."?($[S]!=="."&&(b=i($[S++],E)),S++,(S+1===$.length||$[S+1]==="("&&$[S+3]===")"||$[S+1]==="'"&&$[S+3]==="'")&&(C=i($[S],E),O=Math.pow(10,$[S].length),S++),($[S]==="("&&$[S+2]===")"||$[S]==="'"&&$[S+2]==="'")&&(M=i($[S+1],E),P=Math.pow(10,$[S+1].length)-1,S+=3)):$[S+1]==="/"||$[S+1]===":"?(C=i($[S],E),O=i($[S+2],1),S+=3):$[S+3]==="/"&&$[S+1]===" "&&(b=i($[S],E),C=i($[S+2],E),O=i($[S+4],1),S+=5),$.length<=S){g=O*P,E=v=M+g*b+P*C;break}}default:throw d.InvalidParameter}if(g===0)throw d.DivisionByZero;u.s=E<0?-1:1,u.n=Math.abs(v),u.d=Math.abs(g)};function l(p,D,v){for(var g=1;D>0;p=p*p%v,D>>=1)D&1&&(g=g*p%v);return g}function f(p,D){for(;D%2===0;D/=2);for(;D%5===0;D/=5);if(D===1)return 0;for(var v=10%D,g=1;v!==1;g++)if(v=v*10%D,g>r)return 0;return g}function a(p,D,v){for(var g=1,E=l(10,v,D),b=0;b<300;b++){if(g===E)return b;g=g*10%D,E=E*10%D}return 0}function h(p,D){if(!p)return D;if(!D)return p;for(;;){if(p%=D,!p)return D;if(D%=p,!D)return p}}function d(p,D){if(c(p,D),this instanceof d)p=h(u.d,u.n),this.s=u.s,this.n=u.n/p,this.d=u.d/p;else return o(u.s*u.n,u.d)}d.DivisionByZero=new Error("Division by Zero"),d.InvalidParameter=new Error("Invalid argument"),d.NonIntegerParameter=new Error("Parameters must be integer"),d.prototype={s:1,n:0,d:1,abs:function(){return o(this.n,this.d)},neg:function(){return o(-this.s*this.n,this.d)},add:function(p,D){return c(p,D),o(this.s*this.n*u.d+u.s*this.d*u.n,this.d*u.d)},sub:function(p,D){return c(p,D),o(this.s*this.n*u.d-u.s*this.d*u.n,this.d*u.d)},mul:function(p,D){return c(p,D),o(this.s*u.s*this.n*u.n,this.d*u.d)},div:function(p,D){return c(p,D),o(this.s*u.s*this.n*u.d,this.d*u.n)},clone:function(){return o(this.s*this.n,this.d)},mod:function(p,D){if(isNaN(this.n)||isNaN(this.d))return new d(NaN);if(p===void 0)return o(this.s*this.n%this.d,1);if(c(p,D),u.n===0&&this.d===0)throw d.DivisionByZero;return o(this.s*(u.d*this.n)%(u.n*this.d),u.d*this.d)},gcd:function(p,D){return c(p,D),o(h(u.n,this.n)*h(u.d,this.d),u.d*this.d)},lcm:function(p,D){return c(p,D),u.n===0&&this.n===0?o(0,1):o(u.n*this.n,h(u.n,this.n)*h(u.d,this.d))},ceil:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new d(NaN):o(Math.ceil(p*this.s*this.n/this.d),p)},floor:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new d(NaN):o(Math.floor(p*this.s*this.n/this.d),p)},round:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new d(NaN):o(Math.round(p*this.s*this.n/this.d),p)},inverse:function(){return o(this.s*this.d,this.n)},pow:function(p,D){if(c(p,D),u.d===1)return u.s<0?o(Math.pow(this.s*this.d,u.n),Math.pow(this.n,u.n)):o(Math.pow(this.s*this.n,u.n),Math.pow(this.d,u.n));if(this.s<0)return null;var v=s(this.n),g=s(this.d),E=1,b=1;for(var C in v)if(C!=="1"){if(C==="0"){E=0;break}if(v[C]*=u.n,v[C]%u.d===0)v[C]/=u.d;else return null;E*=Math.pow(C,v[C])}for(var C in g)if(C!=="1"){if(g[C]*=u.n,g[C]%u.d===0)g[C]/=u.d;else return null;b*=Math.pow(C,g[C])}return u.s<0?o(b,E):o(E,b)},equals:function(p,D){return c(p,D),this.s*this.n*u.d===u.s*u.n*this.d},compare:function(p,D){c(p,D);var v=this.s*this.n*u.d-u.s*u.n*this.d;return(0<v)-(v<0)},simplify:function(p){if(isNaN(this.n)||isNaN(this.d))return this;p=p||.001;for(var D=this.abs(),v=D.toContinued(),g=1;g<v.length;g++){for(var E=o(v[g-1],1),b=g-2;b>=0;b--)E=E.inverse().add(v[b]);if(E.sub(D).abs().valueOf()<p)return E.mul(this.s)}return this},divisible:function(p,D){return c(p,D),!(!(u.n*this.d)||this.n*u.d%(u.n*this.d))},valueOf:function(){return this.s*this.n/this.d},toFraction:function(p){var D,v="",g=this.n,E=this.d;return this.s<0&&(v+="-"),E===1?v+=g:(p&&(D=Math.floor(g/E))>0&&(v+=D,v+=" ",g%=E),v+=g,v+="/",v+=E),v},toLatex:function(p){var D,v="",g=this.n,E=this.d;return this.s<0&&(v+="-"),E===1?v+=g:(p&&(D=Math.floor(g/E))>0&&(v+=D,g%=E),v+="\\frac{",v+=g,v+="}{",v+=E,v+="}"),v},toContinued:function(){var p,D=this.n,v=this.d,g=[];if(isNaN(D)||isNaN(v))return g;do g.push(Math.floor(D/v)),p=D%v,D=v,v=p;while(D!==1);return g},toString:function(p){var D=this.n,v=this.d;if(isNaN(D)||isNaN(v))return"NaN";p=p||15;var g=f(D,v),E=a(D,v,g),b=this.s<0?"-":"";if(b+=D/v|0,D%=v,D*=10,D&&(b+="."),g){for(var C=E;C--;)b+=D/v|0,D%=v,D*=10;b+="(";for(var C=g;C--;)b+=D/v|0,D%=v,D*=10;b+=")"}else for(var C=p;D&&C--;)b+=D/v|0,D%=v,D*=10;return b}},Object.defineProperty(d,"__esModule",{value:!0}),d.default=d,d.Fraction=d,e.exports=d})()})(Pi);var Ge=uu(Pi.exports),lp="Fraction",hp=[],dp=Ee(lp,hp,()=>(Object.defineProperty(Ge,"name",{value:"Fraction"}),Ge.prototype.constructor=Ge,Ge.prototype.type="Fraction",Ge.prototype.isFraction=!0,Ge.prototype.toJSON=function(){return{mathjs:"Fraction",n:this.s*this.n,d:this.d}},Ge.fromJSON=function(e){return new Ge(e)},Ge),{isClass:!0}),pp="Matrix",Dp=[],gp=Ee(pp,Dp,()=>{function e(){if(!(this instanceof e))throw new SyntaxError("Constructor must be called with the new operator")}return e.prototype.type="Matrix",e.prototype.isMatrix=!0,e.prototype.storage=function(){throw new Error("Cannot invoke storage on a Matrix interface")},e.prototype.datatype=function(){throw new Error("Cannot invoke datatype on a Matrix interface")},e.prototype.create=function(t,n){throw new Error("Cannot invoke create on a Matrix interface")},e.prototype.subset=function(t,n,r){throw new Error("Cannot invoke subset on a Matrix interface")},e.prototype.get=function(t){throw new Error("Cannot invoke get on a Matrix interface")},e.prototype.set=function(t,n,r){throw new Error("Cannot invoke set on a Matrix interface")},e.prototype.resize=function(t,n){throw new Error("Cannot invoke resize on a Matrix interface")},e.prototype.reshape=function(t,n){throw new Error("Cannot invoke reshape on a Matrix interface")},e.prototype.clone=function(){throw new Error("Cannot invoke clone on a Matrix interface")},e.prototype.size=function(){throw new Error("Cannot invoke size on a Matrix interface")},e.prototype.map=function(t,n){throw new Error("Cannot invoke map on a Matrix interface")},e.prototype.forEach=function(t){throw new Error("Cannot invoke forEach on a Matrix interface")},e.prototype[Symbol.iterator]=function(){throw new Error("Cannot iterate a Matrix interface")},e.prototype.toArray=function(){throw new Error("Cannot invoke toArray on a Matrix interface")},e.prototype.valueOf=function(){throw new Error("Cannot invoke valueOf on a Matrix interface")},e.prototype.format=function(t){throw new Error("Cannot invoke format on a Matrix interface")},e.prototype.toString=function(){throw new Error("Cannot invoke toString on a Matrix interface")},e},{isClass:!0});function vp(e){return Object.keys(e.signatures||{}).reduce(function(t,n){var r=(n.match(/,/g)||[]).length+1;return Math.max(t,r)},-1)}var mp="DenseMatrix",yp=["Matrix"],Ep=Ee(mp,yp,e=>{var{Matrix:t}=e;function n(f,a){if(!(this instanceof n))throw new SyntaxError("Constructor must be called with the new operator");if(a&&!yn(a))throw new Error("Invalid datatype: "+a);if(Ut(f))f.type==="DenseMatrix"?(this._data=ft(f._data),this._size=ft(f._size),this._datatype=a||f._datatype):(this._data=f.toArray(),this._size=f.size(),this._datatype=a||f._datatype);else if(f&&Se(f.data)&&Se(f.size))this._data=f.data,this._size=f.size,di(this._data,this._size),this._datatype=a||f.datatype;else if(Se(f))this._data=l(f),this._size=$r(this._data),di(this._data,this._size),this._datatype=a;else{if(f)throw new TypeError("Unsupported type of data ("+Nr(f)+")");this._data=[],this._size=[0],this._datatype=a}}n.prototype=new t,n.prototype.createDenseMatrix=function(f,a){return new n(f,a)},Object.defineProperty(n,"name",{value:"DenseMatrix"}),n.prototype.constructor=n,n.prototype.type="DenseMatrix",n.prototype.isDenseMatrix=!0,n.prototype.getDataType=function(){return Tr(this._data,Nr)},n.prototype.storage=function(){return"dense"},n.prototype.datatype=function(){return this._datatype},n.prototype.create=function(f,a){return new n(f,a)},n.prototype.subset=function(f,a,h){switch(arguments.length){case 1:return r(this,f);case 2:case 3:return i(this,f,a,h);default:throw new SyntaxError("Wrong number of arguments")}},n.prototype.get=function(f){if(!Se(f))throw new TypeError("Array expected");if(f.length!==this._size.length)throw new ae(f.length,this._size.length);for(var a=0;a<f.length;a++)Ne(f[a],this._size[a]);for(var h=this._data,d=0,p=f.length;d<p;d++){var D=f[d];Ne(D,h.length),h=h[D]}return h},n.prototype.set=function(f,a,h){if(!Se(f))throw new TypeError("Array expected");if(f.length<this._size.length)throw new ae(f.length,this._size.length,"<");var d,p,D,v=f.map(function(E){return E+1});c(this,v,h);var g=this._data;for(d=0,p=f.length-1;d<p;d++)D=f[d],Ne(D,g.length),g=g[D];return D=f[f.length-1],Ne(D,g.length),g[D]=a,this};function r(f,a){if(!ni(a))throw new TypeError("Invalid index");var h=a.isScalar();if(h)return f.get(a.min());var d=a.size();if(d.length!==f._size.length)throw new ae(d.length,f._size.length);for(var p=a.min(),D=a.max(),v=0,g=f._size.length;v<g;v++)Ne(p[v],f._size[v]),Ne(D[v],f._size[v]);return new n(u(f._data,a,d.length,0),f._datatype)}function u(f,a,h,d){var p=d===h-1,D=a.dimension(d);return p?D.map(function(v){return Ne(v,f.length),f[v]}).valueOf():D.map(function(v){Ne(v,f.length);var g=f[v];return u(g,a,h,d+1)}).valueOf()}function i(f,a,h,d){if(!a||a.isIndex!==!0)throw new TypeError("Invalid index");var p=a.size(),D=a.isScalar(),v;if(Ut(h)?(v=h.size(),h=h.valueOf()):v=$r(h),D){if(v.length!==0)throw new TypeError("Scalar expected");f.set(a.min(),h,d)}else{if(p.length<f._size.length)throw new ae(p.length,f._size.length,"<");if(v.length<p.length){for(var g=0,E=0;p[g]===1&&v[g]===1;)g++;for(;p[g]===1;)E++,g++;h=Jh(h,p.length,E,v)}if(!Ir(p,v))throw new ae(p,v,">");var b=a.max().map(function(O){return O+1});c(f,b,d);var C=p.length,M=0;o(f._data,a,h,C,M)}return f}function o(f,a,h,d,p){var D=p===d-1,v=a.dimension(p);D?v.forEach(function(g,E){Ne(g),f[g]=h[E[0]]}):v.forEach(function(g,E){Ne(g),o(f[g],a,h[E[0]],d,p+1)})}n.prototype.resize=function(f,a,h){if(!Mr(f))throw new TypeError("Array or Matrix expected");var d=f.valueOf().map(D=>Array.isArray(D)&&D.length===1?D[0]:D),p=h?this.clone():this;return s(p,d,a)};function s(f,a,h){if(a.length===0){for(var d=f._data;Se(d);)d=d[0];return d}return f._size=a.slice(0),f._data=pi(f._data,f._size,h),f}n.prototype.reshape=function(f,a){var h=a?this.clone():this;h._data=Xh(h._data,f);var d=h._size.reduce((p,D)=>p*D);return h._size=Di(f,d),h};function c(f,a,h){for(var d=f._size.slice(0),p=!1;d.length<a.length;)d.push(0),p=!0;for(var D=0,v=a.length;D<v;D++)a[D]>d[D]&&(d[D]=a[D],p=!0);p&&s(f,d,h)}n.prototype.clone=function(){var f=new n({data:ft(this._data),size:ft(this._size),datatype:this._datatype});return f},n.prototype.size=function(){return this._size.slice(0)},n.prototype.map=function(f){var a=this,h=vp(f),d=function v(g,E){return Se(g)?g.map(function(b,C){return v(b,E.concat(C))}):h===1?f(g):h===2?f(g,E):f(g,E,a)},p=d(this._data,[]),D=this._datatype!==void 0?Tr(p,Nr):void 0;return new n(p,D)},n.prototype.forEach=function(f){var a=this,h=function d(p,D){Se(p)?p.forEach(function(v,g){d(v,D.concat(g))}):f(p,D,a)};h(this._data,[])},n.prototype[Symbol.iterator]=function*(){var f=function*a(h,d){if(Se(h))for(var p=0;p<h.length;p++)yield*a(h[p],d.concat(p));else yield{value:h,index:d}};yield*f(this._data,[])},n.prototype.rows=function(){var f=[],a=this.size();if(a.length!==2)throw new TypeError("Rows can only be returned for a 2D matrix.");var h=this._data;for(var d of h)f.push(new n([d],this._datatype));return f},n.prototype.columns=function(){var f=this,a=[],h=this.size();if(h.length!==2)throw new TypeError("Rows can only be returned for a 2D matrix.");for(var d=this._data,p=function(g){var E=d.map(b=>[b[g]]);a.push(new n(E,f._datatype))},D=0;D<h[1];D++)p(D);return a},n.prototype.toArray=function(){return ft(this._data)},n.prototype.valueOf=function(){return this._data},n.prototype.format=function(f){return lt(this._data,f)},n.prototype.toString=function(){return lt(this._data)},n.prototype.toJSON=function(){return{mathjs:"DenseMatrix",data:this._data,size:this._size,datatype:this._datatype}},n.prototype.diagonal=function(f){if(f){if(nt(f)&&(f=f.toNumber()),!ge(f)||!Ue(f))throw new TypeError("The parameter k must be an integer number")}else f=0;for(var a=f>0?f:0,h=f<0?-f:0,d=this._size[0],p=this._size[1],D=Math.min(d-h,p-a),v=[],g=0;g<D;g++)v[g]=this._data[g+h][g+a];return new n({data:v,size:[D],datatype:this._datatype})},n.diagonal=function(f,a,h,d){if(!Se(f))throw new TypeError("Array expected, size parameter");if(f.length!==2)throw new Error("Only two dimensions matrix are supported");if(f=f.map(function(P){if(nt(P)&&(P=P.toNumber()),!ge(P)||!Ue(P)||P<1)throw new Error("Size values must be positive integers");return P}),h){if(nt(h)&&(h=h.toNumber()),!ge(h)||!Ue(h))throw new TypeError("The parameter k must be an integer number")}else h=0;var p=h>0?h:0,D=h<0?-h:0,v=f[0],g=f[1],E=Math.min(v-D,g-p),b;if(Se(a)){if(a.length!==E)throw new Error("Invalid value array length");b=function(S){return a[S]}}else if(Ut(a)){var C=a.size();if(C.length!==1||C[0]!==E)throw new Error("Invalid matrix length");b=function(S){return a.get([S])}}else b=function(){return a};d||(d=nt(b(0))?b(0).mul(0):0);var M=[];if(f.length>0){M=pi(M,f,d);for(var O=0;O<E;O++)M[O+D][O+p]=b(O)}return new n({data:M,size:[v,g]})},n.fromJSON=function(f){return new n(f)},n.prototype.swapRows=function(f,a){if(!ge(f)||!Ue(f)||!ge(a)||!Ue(a))throw new Error("Row index must be positive integers");if(this._size.length!==2)throw new Error("Only two dimensional matrix is supported");return Ne(f,this._size[0]),Ne(a,this._size[0]),n._swapRows(f,a,this._data),this},n._swapRows=function(f,a,h){var d=h[f];h[f]=h[a],h[a]=d};function l(f){for(var a=0,h=f.length;a<h;a++){var d=f[a];Se(d)?f[a]=l(d):d&&d.isMatrix===!0&&(f[a]=l(d.valueOf()))}return f}return n},{isClass:!0}),Ti="equalScalar";Ee(Ti,["typed","config"],e=>{var{typed:t,config:n}=e;return t(Ti,{"number, number":function(u,i){return Vh(u,i,n.epsilon)}})});function zt(e,t,n,r){if(!(this instanceof zt))throw new SyntaxError("Constructor must be called with the new operator");this.fn=e,this.count=t,this.min=n,this.max=r,this.message="Wrong number of arguments in function "+e+" ("+t+" provided, "+n+(r!=null?"-"+r:"")+" expected)",this.stack=new Error().stack}zt.prototype=new Error,zt.prototype.constructor=Error,zt.prototype.name="ArgumentsError",zt.prototype.isArgumentsError=!0;var Li="format",Ap=["typed"],Cp=Ee(Li,Ap,e=>{var{typed:t}=e;return t(Li,{any:lt,"any, Object | function | number":lt})}),ji="bin",Fp=["typed","format"];Ee(ji,Fp,e=>{var{typed:t,format:n}=e;return t(ji,{"number | BigNumber":function(u){return n(u,{notation:"bin"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"bin",wordSize:i})}})});var qi="oct",wp=["typed","format"];Ee(qi,wp,e=>{var{typed:t,format:n}=e;return t(qi,{"number | BigNumber":function(u){return n(u,{notation:"oct"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"oct",wordSize:i})}})});var ki="hex",Bp=["typed","format"];Ee(ki,Bp,e=>{var{typed:t,format:n}=e;return t(ki,{"number | BigNumber":function(u){return n(u,{notation:"hex"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"hex",wordSize:i})}})});var Vi="equal";Ee(Vi,["typed","equalScalar"],e=>{var{typed:t,equalScalar:n}=e;return t(Vi,{"any, any":function(u,i){return u===null?i===null:i===null?u===null:u===void 0?i===void 0:i===void 0?u===void 0:n(u,i)}})});var Ui="unequal";Ee(Ui,["typed","equalScalar"],e=>{var{typed:t,equalScalar:n}=e;return t(Ui,{"any, any":function(u,i){return u===null?i!==null:i===null?u!==null:u===void 0?i!==void 0:i===void 0?u!==void 0:!n(u,i)}})});var Hi={exports:{}};(function(e){(function(t,n,r){function u(c){var l=this,f=s();l.next=function(){var a=2091639*l.s0+l.c*23283064365386963e-26;return l.s0=l.s1,l.s1=l.s2,l.s2=a-(l.c=a|0)},l.c=1,l.s0=f(" "),l.s1=f(" "),l.s2=f(" "),l.s0-=f(c),l.s0<0&&(l.s0+=1),l.s1-=f(c),l.s1<0&&(l.s1+=1),l.s2-=f(c),l.s2<0&&(l.s2+=1),f=null}function i(c,l){return l.c=c.c,l.s0=c.s0,l.s1=c.s1,l.s2=c.s2,l}function o(c,l){var f=new u(c),a=l&&l.state,h=f.next;return h.int32=function(){return f.next()*4294967296|0},h.double=function(){return h()+(h()*2097152|0)*11102230246251565e-32},h.quick=h,a&&(typeof a=="object"&&i(a,f),h.state=function(){return i(f,{})}),h}function s(){var c=4022871197,l=function(f){f=String(f);for(var a=0;a<f.length;a++){c+=f.charCodeAt(a);var h=.02519603282416938*c;c=h>>>0,h-=c,h*=c,c=h>>>0,h-=c,c+=h*4294967296}return(c>>>0)*23283064365386963e-26};return l}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.alea=o})(Ke,e,!1)})(Hi);var zi={exports:{}};(function(e){(function(t,n,r){function u(s){var c=this,l="";c.x=0,c.y=0,c.z=0,c.w=0,c.next=function(){var a=c.x^c.x<<11;return c.x=c.y,c.y=c.z,c.z=c.w,c.w^=c.w>>>19^a^a>>>8},s===(s|0)?c.x=s:l+=s;for(var f=0;f<l.length+64;f++)c.x^=l.charCodeAt(f)|0,c.next()}function i(s,c){return c.x=s.x,c.y=s.y,c.z=s.z,c.w=s.w,c}function o(s,c){var l=new u(s),f=c&&c.state,a=function(){return(l.next()>>>0)/4294967296};return a.double=function(){do var h=l.next()>>>11,d=(l.next()>>>0)/4294967296,p=(h+d)/(1<<21);while(p===0);return p},a.int32=l.next,a.quick=a,f&&(typeof f=="object"&&i(f,l),a.state=function(){return i(l,{})}),a}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.xor128=o})(Ke,e,!1)})(zi);var Wi={exports:{}};(function(e){(function(t,n,r){function u(s){var c=this,l="";c.next=function(){var a=c.x^c.x>>>2;return c.x=c.y,c.y=c.z,c.z=c.w,c.w=c.v,(c.d=c.d+362437|0)+(c.v=c.v^c.v<<4^(a^a<<1))|0},c.x=0,c.y=0,c.z=0,c.w=0,c.v=0,s===(s|0)?c.x=s:l+=s;for(var f=0;f<l.length+64;f++)c.x^=l.charCodeAt(f)|0,f==l.length&&(c.d=c.x<<10^c.x>>>4),c.next()}function i(s,c){return c.x=s.x,c.y=s.y,c.z=s.z,c.w=s.w,c.v=s.v,c.d=s.d,c}function o(s,c){var l=new u(s),f=c&&c.state,a=function(){return(l.next()>>>0)/4294967296};return a.double=function(){do var h=l.next()>>>11,d=(l.next()>>>0)/4294967296,p=(h+d)/(1<<21);while(p===0);return p},a.int32=l.next,a.quick=a,f&&(typeof f=="object"&&i(f,l),a.state=function(){return i(l,{})}),a}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.xorwow=o})(Ke,e,!1)})(Wi);var Zi={exports:{}};(function(e){(function(t,n,r){function u(s){var c=this;c.next=function(){var f=c.x,a=c.i,h,d;return h=f[a],h^=h>>>7,d=h^h<<24,h=f[a+1&7],d^=h^h>>>10,h=f[a+3&7],d^=h^h>>>3,h=f[a+4&7],d^=h^h<<7,h=f[a+7&7],h=h^h<<13,d^=h^h<<9,f[a]=d,c.i=a+1&7,d};function l(f,a){var h,d=[];if(a===(a|0))d[0]=a;else for(a=""+a,h=0;h<a.length;++h)d[h&7]=d[h&7]<<15^a.charCodeAt(h)+d[h+1&7]<<13;for(;d.length<8;)d.push(0);for(h=0;h<8&&d[h]===0;++h);for(h==8?d[7]=-1:d[h],f.x=d,f.i=0,h=256;h>0;--h)f.next()}l(c,s)}function i(s,c){return c.x=s.x.slice(),c.i=s.i,c}function o(s,c){s==null&&(s=+new Date);var l=new u(s),f=c&&c.state,a=function(){return(l.next()>>>0)/4294967296};return a.double=function(){do var h=l.next()>>>11,d=(l.next()>>>0)/4294967296,p=(h+d)/(1<<21);while(p===0);return p},a.int32=l.next,a.quick=a,f&&(f.x&&i(f,l),a.state=function(){return i(l,{})}),a}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.xorshift7=o})(Ke,e,!1)})(Zi);var Xi={exports:{}};(function(e){(function(t,n,r){function u(s){var c=this;c.next=function(){var f=c.w,a=c.X,h=c.i,d,p;return c.w=f=f+1640531527|0,p=a[h+34&127],d=a[h=h+1&127],p^=p<<13,d^=d<<17,p^=p>>>15,d^=d>>>12,p=a[h]=p^d,c.i=h,p+(f^f>>>16)|0};function l(f,a){var h,d,p,D,v,g=[],E=128;for(a===(a|0)?(d=a,a=null):(a=a+"\0",d=0,E=Math.max(E,a.length)),p=0,D=-32;D<E;++D)a&&(d^=a.charCodeAt((D+32)%a.length)),D===0&&(v=d),d^=d<<10,d^=d>>>15,d^=d<<4,d^=d>>>13,D>=0&&(v=v+1640531527|0,h=g[D&127]^=d+v,p=h==0?p+1:0);for(p>=128&&(g[(a&&a.length||0)&127]=-1),p=127,D=4*128;D>0;--D)d=g[p+34&127],h=g[p=p+1&127],d^=d<<13,h^=h<<17,d^=d>>>15,h^=h>>>12,g[p]=d^h;f.w=v,f.X=g,f.i=p}l(c,s)}function i(s,c){return c.i=s.i,c.w=s.w,c.X=s.X.slice(),c}function o(s,c){s==null&&(s=+new Date);var l=new u(s),f=c&&c.state,a=function(){return(l.next()>>>0)/4294967296};return a.double=function(){do var h=l.next()>>>11,d=(l.next()>>>0)/4294967296,p=(h+d)/(1<<21);while(p===0);return p},a.int32=l.next,a.quick=a,f&&(f.X&&i(f,l),a.state=function(){return i(l,{})}),a}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.xor4096=o})(Ke,e,!1)})(Xi);var Gi={exports:{}};(function(e){(function(t,n,r){function u(s){var c=this,l="";c.next=function(){var a=c.b,h=c.c,d=c.d,p=c.a;return a=a<<25^a>>>7^h,h=h-d|0,d=d<<24^d>>>8^p,p=p-a|0,c.b=a=a<<20^a>>>12^h,c.c=h=h-d|0,c.d=d<<16^h>>>16^p,c.a=p-a|0},c.a=0,c.b=0,c.c=-1640531527,c.d=1367130551,s===Math.floor(s)?(c.a=s/4294967296|0,c.b=s|0):l+=s;for(var f=0;f<l.length+20;f++)c.b^=l.charCodeAt(f)|0,c.next()}function i(s,c){return c.a=s.a,c.b=s.b,c.c=s.c,c.d=s.d,c}function o(s,c){var l=new u(s),f=c&&c.state,a=function(){return(l.next()>>>0)/4294967296};return a.double=function(){do var h=l.next()>>>11,d=(l.next()>>>0)/4294967296,p=(h+d)/(1<<21);while(p===0);return p},a.int32=l.next,a.quick=a,f&&(typeof f=="object"&&i(f,l),a.state=function(){return i(l,{})}),a}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.tychei=o})(Ke,e,!1)})(Gi);var Ji={exports:{}};(function(e){(function(t,n,r){var u=256,i=6,o=52,s="random",c=r.pow(u,i),l=r.pow(2,o),f=l*2,a=u-1,h;function d(C,M,O){var P=[];M=M==!0?{entropy:!0}:M||{};var S=g(v(M.entropy?[C,b(n)]:C==null?E():C,3),P),$=new p(P),W=function(){for(var k=$.g(i),K=c,J=0;k<l;)k=(k+J)*u,K*=u,J=$.g(1);for(;k>=f;)k/=2,K/=2,J>>>=1;return(k+J)/K};return W.int32=function(){return $.g(4)|0},W.quick=function(){return $.g(4)/4294967296},W.double=W,g(b($.S),n),(M.pass||O||function(k,K,J,ee){return ee&&(ee.S&&D(ee,$),k.state=function(){return D($,{})}),J?(r[s]=k,K):k})(W,S,"global"in M?M.global:this==r,M.state)}function p(C){var M,O=C.length,P=this,S=0,$=P.i=P.j=0,W=P.S=[];for(O||(C=[O++]);S<u;)W[S]=S++;for(S=0;S<u;S++)W[S]=W[$=a&$+C[S%O]+(M=W[S])],W[$]=M;(P.g=function(k){for(var K,J=0,ee=P.i,Q=P.j,z=P.S;k--;)K=z[ee=a&ee+1],J=J*u+z[a&(z[ee]=z[Q=a&Q+K])+(z[Q]=K)];return P.i=ee,P.j=Q,J})(u)}function D(C,M){return M.i=C.i,M.j=C.j,M.S=C.S.slice(),M}function v(C,M){var O=[],P=typeof C,S;if(M&&P=="object")for(S in C)try{O.push(v(C[S],M-1))}catch($){}return O.length?O:P=="string"?C:C+"\0"}function g(C,M){for(var O=C+"",P,S=0;S<O.length;)M[a&S]=a&(P^=M[a&S]*19)+O.charCodeAt(S++);return b(M)}function E(){try{var C;return h&&(C=h.randomBytes)?C=C(u):(C=new Uint8Array(u),(t.crypto||t.msCrypto).getRandomValues(C)),b(C)}catch(P){var M=t.navigator,O=M&&M.plugins;return[+new Date,t,O,t.screen,b(n)]}}function b(C){return String.fromCharCode.apply(0,C)}if(g(r.random(),n),e.exports){e.exports=d;try{h=Pn.default}catch(C){}}else r["seed"+s]=d})(typeof self!="undefined"?self:Ke,[],Math)})(Ji);var bp=Hi.exports,Sp=zi.exports,_p=Wi.exports,Mp=Zi.exports,Np=Xi.exports,Ip=Gi.exports,St=Ji.exports;St.alea=bp,St.xor128=Sp,St.xorwow=_p,St.xorshift7=Mp,St.xor4096=Np,St.tychei=Ip,In("fineStructure",.0072973525693),In("weakMixingAngle",.2229),In("efimovFactor",22.7),In("sackurTetrode",-1.16487052358);function In(e,t){var n=["config","BigNumber"];return Ee(e,n,r=>{var{config:u,BigNumber:i}=r;return u.number==="BigNumber"?new i(t):t})}var xp=ap({config:ri}),Op=fp({}),Rp=dp({}),$p=gp({}),Pp=Ep({Matrix:$p}),Tp=fd({BigNumber:xp,Complex:Op,DenseMatrix:Pp,Fraction:Rp}),Lp=Cp({typed:Tp});class jp{constructor(t){this.calcControls=[],this.dependenciesTriggerMap=new Map,this.hideNotRememberControlIds=[],this.dontHasPermissionControlIds=[],this.cacheComputedResult={},this.options=t,this.getDontHasPermissionControlIds(),this.getNeedHideRememberControlIds()}getNeedHideRememberControlIds(){var t;!((t=this.options)!=null&&t.displayBoList)||(this.hideNotRememberControlIds=this.options.displayBoList.reduce((n,r)=>(r.is_remember||n.push(...r.hide_controls),n),[]))}getDontHasPermissionControlIds(){var t;!((t=this.options)!=null&&t.behavior)||(this.dontHasPermissionControlIds=this.options.behavior.reduce((n,r)=>(r.ctrlBehavior===1&&n.push(r.ctrlId),n),[]))}controlNeedComputedValue(t){if(!t)return!1;const n=this.getControlIsHide(t);return!(this.dontHasPermissionControlIds.includes(t.id)&&n||this.hideNotRememberControlIds.includes(t.id)&&n)}getControlIsHide(t){return t.props.isHide?!0:t.parent===null?!1:this.getControlIsHide(t.parent)}apply(t){this.engine=t,this.resetDependencies(),this.watchControlChange(),this.watchSubtableChange(),this.watchSchemaHideChange(),this.engine.on("engine-mounted",()=>{this.allCalcControlComputed()})}resetDependencies(){this.calcControls=[],this.dependenciesTriggerMap.clear(),this.getAllCalcControl(),this.getCalcDependencies()}allCalcControlComputed(){this.calcControls.forEach(t=>this.computedCalcValue(t))}getAllCalcControl(){this.calcControls=this.engine.runtime.flatInstances.filter(t=>t.type===X.CALC)}getCalcDependencies(){this.calcControls.forEach(t=>{const{scriptEcho:n}=t.props;n.forEach(r=>{(r.type===xe.VariableInMainTable||r.type===xe.VariableInCurrentSubTable||r.type===xe.VariableInOtherSubTable)&&this.setDependenciesTriggerMapItem(r.id,t),r.type===xe.VariableInOtherSubTable&&r.subTableId&&this.setDependenciesTriggerMapItem(r.subTableId,t)})})}setDependenciesTriggerMapItem(t,n){this.dependenciesTriggerMap.has(t)||this.dependenciesTriggerMap.set(t,[]);const r=this.dependenciesTriggerMap.get(t);r.includes(n)||r.push(n)}getCalcControlsFromSubtableRows(t){return t.reduce((n,r)=>(r.children.forEach(u=>{const i=u.children[0];i&&this.engine.assertInstance(i,X.CALC)&&n.push(i)}),n),[])}watchSchemaHideChange(){this.engine.on("schema-change",t=>{var n;t.props==="isHide"&&((n=this.dependenciesTriggerMap.get(t.instance.id))!=null?n:[]).forEach(u=>{this.computedCalcValue(u)})})}watchSubtableChange(){this.engine.on("list-change",t=>{var i,o,s;this.resetDependencies();const n=(o=(i=t.options)==null?void 0:i.changed)!=null?o:[];this.getCalcControlsFromSubtableRows(n).forEach(c=>{this.computedCalcValue(c)}),((s=this.dependenciesTriggerMap.get(t.instance.id))!=null?s:[]).forEach(c=>{this.computedCalcValue(c)})})}watchControlChange(){this.engine.on("change",t=>{var u;const{instance:n}=t;if(!this.dependenciesTriggerMap.has(n.id))return;const r=(u=this.dependenciesTriggerMap.get(n.id))!=null?u:[];t.rowIndex!==void 0&&t.rowIndex>-1?r.forEach(i=>{this.controlInSubtable(i)&&this.engine.getInstanceRowIndex(i)!==t.rowIndex||this.computedCalcValue(i)}):r.forEach(i=>{this.computedCalcValue(i)})})}controlInSubtable(t){var n;return((n=t.parent)==null?void 0:n.type)===X.SUBTABLE_COLUMN}computedCalcValue(t){var c;const n=t.props.scriptEcho;if(!n||n.length===0)return;const r=n.reduce((l,f)=>{if(f.type===xe.Operator||f.type===xe.Number)return l+f.name;let a=0,h;switch(f.type){case xe.VariableInMainTable:{const d=this.getNumberValue(this.engine.getState(f.id));h=this.engine.getInstance(f.id),a=Number(d);break}case xe.VariableInCurrentSubTable:{const d=this.engine.getInstanceRowIndex(t);h=this.engine.getInstance(f.id,d);const p=this.engine.getState(f.id,d),D=this.getNumberValue(p);a=Number(D);break}case xe.VariableInOtherSubTable:{const d=this.engine.getState(f.id),p=Array.isArray(d)?d.map(v=>this.getNumberValue(v)):[],D=this.getAggregateTypeValue(p,f.aggregateType);h=this.engine.getInstance(f.subTableId),a=Number(D);break}}return!Number.isNaN(a)&&this.controlNeedComputedValue(h)?l+=`(${a})`:l+=0,l},"");let u;this.cacheComputedResult[r]!==void 0?u=this.cacheComputedResult[r]:(u=Number(Lp(new Function(`return ${r}`)(),{precision:16})),this.cacheComputedResult[r]=u);let i;if(this.controlInSubtable(t)&&(i=this.engine.getInstanceRowIndex(t),i===void 0))return;const o=this.engine.getState(t.id,i),s=!u||u===1/0||u===-1/0?0:t.props.precision===""?u:Number(u.toFixed(t.props.precision));s!==(o==null?void 0:o.result)&&this.engine.setState(t.id,{result:s,unit:(c=o==null?void 0:o.unit)!=null?c:""},i)}getNumberValue(t){if(typeof t=="object"&&t){if("result"in t)return t.result;if("amount"in t)return t.amount}return typeof t=="number"?t:0}getAggregateTypeValue(t,n){if(!n||!t||!t.length)return 0;switch(n){case pt.MAX:return Math.max(...t);case pt.MIN:return Math.min(...t);case pt.SUM:return t.reduce((r,u)=>r+u);case pt.AVG:return t.reduce((r,u)=>r+u)/t.length}}}class qp{constructor(t){this.config=t}apply(t){var i,o;this.engine=t;const n=(o=(i=this.config)==null?void 0:i.source)!=null?o:"";let r=document.createElement("style");r.className="edit-css",r.type="text/css",r.innerHTML=n,document.querySelector("head").appendChild(r)}}Z.CalcPlugin=jp,Z.ControlsEventPlugin=nh,Z.ES6ModulePlugin=Y0,Z.Engine=Sr,Z.LifecycleEventPlugin=th,Z.Plugin=Q0,Z.StylePlugin=qp,Z.hasChildrenControl=vn,Z.loopDataViewControl=qt,Z.loopFormControl=jt,Z.parseModule=Ku,Object.defineProperty(Z,"__esModule",{value:!0})});
|
|
28
|
+
**/(function(e,t){(function(n){var r=2e3,u={s:1,n:0,d:1};function i(p,D){if(isNaN(p=parseInt(p,10)))throw d.InvalidParameter;return p*D}function o(p,D){if(D===0)throw d.DivisionByZero;var v=Object.create(d.prototype);v.s=p<0?-1:1,p=p<0?-p:p;var g=h(p,D);return v.n=p/g,v.d=D/g,v}function s(p){for(var D={},v=p,g=2,E=4;E<=v;){for(;v%g===0;)v/=g,D[g]=(D[g]||0)+1;E+=1+2*g++}return v!==p?v>1&&(D[v]=(D[v]||0)+1):D[p]=(D[p]||0)+1,D}var c=function(p,D){var v=0,g=1,E=1,b=0,C=0,M=0,O=1,P=1,S=0,$=1,W=1,k=1,K=1e7,J;if(p!=null)if(D!==void 0){if(v=p,g=D,E=v*g,v%1!==0||g%1!==0)throw d.NonIntegerParameter}else switch(typeof p){case"object":{if("d"in p&&"n"in p)v=p.n,g=p.d,"s"in p&&(v*=p.s);else if(0 in p)v=p[0],1 in p&&(g=p[1]);else throw d.InvalidParameter;E=v*g;break}case"number":{if(p<0&&(E=p,p=-p),p%1===0)v=p;else if(p>0){for(p>=1&&(P=Math.pow(10,Math.floor(1+Math.log(p)/Math.LN10)),p/=P);$<=K&&k<=K;)if(J=(S+W)/($+k),p===J){$+k<=K?(v=S+W,g=$+k):k>$?(v=W,g=k):(v=S,g=$);break}else p>J?(S+=W,$+=k):(W+=S,k+=$),$>K?(v=W,g=k):(v=S,g=$);v*=P}else(isNaN(p)||isNaN(D))&&(g=v=NaN);break}case"string":{if($=p.match(/\d+|./g),$===null)throw d.InvalidParameter;if($[S]==="-"?(E=-1,S++):$[S]==="+"&&S++,$.length===S+1?C=i($[S++],E):$[S+1]==="."||$[S]==="."?($[S]!=="."&&(b=i($[S++],E)),S++,(S+1===$.length||$[S+1]==="("&&$[S+3]===")"||$[S+1]==="'"&&$[S+3]==="'")&&(C=i($[S],E),O=Math.pow(10,$[S].length),S++),($[S]==="("&&$[S+2]===")"||$[S]==="'"&&$[S+2]==="'")&&(M=i($[S+1],E),P=Math.pow(10,$[S+1].length)-1,S+=3)):$[S+1]==="/"||$[S+1]===":"?(C=i($[S],E),O=i($[S+2],1),S+=3):$[S+3]==="/"&&$[S+1]===" "&&(b=i($[S],E),C=i($[S+2],E),O=i($[S+4],1),S+=5),$.length<=S){g=O*P,E=v=M+g*b+P*C;break}}default:throw d.InvalidParameter}if(g===0)throw d.DivisionByZero;u.s=E<0?-1:1,u.n=Math.abs(v),u.d=Math.abs(g)};function l(p,D,v){for(var g=1;D>0;p=p*p%v,D>>=1)D&1&&(g=g*p%v);return g}function f(p,D){for(;D%2===0;D/=2);for(;D%5===0;D/=5);if(D===1)return 0;for(var v=10%D,g=1;v!==1;g++)if(v=v*10%D,g>r)return 0;return g}function a(p,D,v){for(var g=1,E=l(10,v,D),b=0;b<300;b++){if(g===E)return b;g=g*10%D,E=E*10%D}return 0}function h(p,D){if(!p)return D;if(!D)return p;for(;;){if(p%=D,!p)return D;if(D%=p,!D)return p}}function d(p,D){if(c(p,D),this instanceof d)p=h(u.d,u.n),this.s=u.s,this.n=u.n/p,this.d=u.d/p;else return o(u.s*u.n,u.d)}d.DivisionByZero=new Error("Division by Zero"),d.InvalidParameter=new Error("Invalid argument"),d.NonIntegerParameter=new Error("Parameters must be integer"),d.prototype={s:1,n:0,d:1,abs:function(){return o(this.n,this.d)},neg:function(){return o(-this.s*this.n,this.d)},add:function(p,D){return c(p,D),o(this.s*this.n*u.d+u.s*this.d*u.n,this.d*u.d)},sub:function(p,D){return c(p,D),o(this.s*this.n*u.d-u.s*this.d*u.n,this.d*u.d)},mul:function(p,D){return c(p,D),o(this.s*u.s*this.n*u.n,this.d*u.d)},div:function(p,D){return c(p,D),o(this.s*u.s*this.n*u.d,this.d*u.n)},clone:function(){return o(this.s*this.n,this.d)},mod:function(p,D){if(isNaN(this.n)||isNaN(this.d))return new d(NaN);if(p===void 0)return o(this.s*this.n%this.d,1);if(c(p,D),u.n===0&&this.d===0)throw d.DivisionByZero;return o(this.s*(u.d*this.n)%(u.n*this.d),u.d*this.d)},gcd:function(p,D){return c(p,D),o(h(u.n,this.n)*h(u.d,this.d),u.d*this.d)},lcm:function(p,D){return c(p,D),u.n===0&&this.n===0?o(0,1):o(u.n*this.n,h(u.n,this.n)*h(u.d,this.d))},ceil:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new d(NaN):o(Math.ceil(p*this.s*this.n/this.d),p)},floor:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new d(NaN):o(Math.floor(p*this.s*this.n/this.d),p)},round:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new d(NaN):o(Math.round(p*this.s*this.n/this.d),p)},inverse:function(){return o(this.s*this.d,this.n)},pow:function(p,D){if(c(p,D),u.d===1)return u.s<0?o(Math.pow(this.s*this.d,u.n),Math.pow(this.n,u.n)):o(Math.pow(this.s*this.n,u.n),Math.pow(this.d,u.n));if(this.s<0)return null;var v=s(this.n),g=s(this.d),E=1,b=1;for(var C in v)if(C!=="1"){if(C==="0"){E=0;break}if(v[C]*=u.n,v[C]%u.d===0)v[C]/=u.d;else return null;E*=Math.pow(C,v[C])}for(var C in g)if(C!=="1"){if(g[C]*=u.n,g[C]%u.d===0)g[C]/=u.d;else return null;b*=Math.pow(C,g[C])}return u.s<0?o(b,E):o(E,b)},equals:function(p,D){return c(p,D),this.s*this.n*u.d===u.s*u.n*this.d},compare:function(p,D){c(p,D);var v=this.s*this.n*u.d-u.s*u.n*this.d;return(0<v)-(v<0)},simplify:function(p){if(isNaN(this.n)||isNaN(this.d))return this;p=p||.001;for(var D=this.abs(),v=D.toContinued(),g=1;g<v.length;g++){for(var E=o(v[g-1],1),b=g-2;b>=0;b--)E=E.inverse().add(v[b]);if(E.sub(D).abs().valueOf()<p)return E.mul(this.s)}return this},divisible:function(p,D){return c(p,D),!(!(u.n*this.d)||this.n*u.d%(u.n*this.d))},valueOf:function(){return this.s*this.n/this.d},toFraction:function(p){var D,v="",g=this.n,E=this.d;return this.s<0&&(v+="-"),E===1?v+=g:(p&&(D=Math.floor(g/E))>0&&(v+=D,v+=" ",g%=E),v+=g,v+="/",v+=E),v},toLatex:function(p){var D,v="",g=this.n,E=this.d;return this.s<0&&(v+="-"),E===1?v+=g:(p&&(D=Math.floor(g/E))>0&&(v+=D,g%=E),v+="\\frac{",v+=g,v+="}{",v+=E,v+="}"),v},toContinued:function(){var p,D=this.n,v=this.d,g=[];if(isNaN(D)||isNaN(v))return g;do g.push(Math.floor(D/v)),p=D%v,D=v,v=p;while(D!==1);return g},toString:function(p){var D=this.n,v=this.d;if(isNaN(D)||isNaN(v))return"NaN";p=p||15;var g=f(D,v),E=a(D,v,g),b=this.s<0?"-":"";if(b+=D/v|0,D%=v,D*=10,D&&(b+="."),g){for(var C=E;C--;)b+=D/v|0,D%=v,D*=10;b+="(";for(var C=g;C--;)b+=D/v|0,D%=v,D*=10;b+=")"}else for(var C=p;D&&C--;)b+=D/v|0,D%=v,D*=10;return b}},Object.defineProperty(d,"__esModule",{value:!0}),d.default=d,d.Fraction=d,e.exports=d})()})(Pi);var Ge=uu(Pi.exports),lp="Fraction",hp=[],dp=Ee(lp,hp,()=>(Object.defineProperty(Ge,"name",{value:"Fraction"}),Ge.prototype.constructor=Ge,Ge.prototype.type="Fraction",Ge.prototype.isFraction=!0,Ge.prototype.toJSON=function(){return{mathjs:"Fraction",n:this.s*this.n,d:this.d}},Ge.fromJSON=function(e){return new Ge(e)},Ge),{isClass:!0}),pp="Matrix",Dp=[],gp=Ee(pp,Dp,()=>{function e(){if(!(this instanceof e))throw new SyntaxError("Constructor must be called with the new operator")}return e.prototype.type="Matrix",e.prototype.isMatrix=!0,e.prototype.storage=function(){throw new Error("Cannot invoke storage on a Matrix interface")},e.prototype.datatype=function(){throw new Error("Cannot invoke datatype on a Matrix interface")},e.prototype.create=function(t,n){throw new Error("Cannot invoke create on a Matrix interface")},e.prototype.subset=function(t,n,r){throw new Error("Cannot invoke subset on a Matrix interface")},e.prototype.get=function(t){throw new Error("Cannot invoke get on a Matrix interface")},e.prototype.set=function(t,n,r){throw new Error("Cannot invoke set on a Matrix interface")},e.prototype.resize=function(t,n){throw new Error("Cannot invoke resize on a Matrix interface")},e.prototype.reshape=function(t,n){throw new Error("Cannot invoke reshape on a Matrix interface")},e.prototype.clone=function(){throw new Error("Cannot invoke clone on a Matrix interface")},e.prototype.size=function(){throw new Error("Cannot invoke size on a Matrix interface")},e.prototype.map=function(t,n){throw new Error("Cannot invoke map on a Matrix interface")},e.prototype.forEach=function(t){throw new Error("Cannot invoke forEach on a Matrix interface")},e.prototype[Symbol.iterator]=function(){throw new Error("Cannot iterate a Matrix interface")},e.prototype.toArray=function(){throw new Error("Cannot invoke toArray on a Matrix interface")},e.prototype.valueOf=function(){throw new Error("Cannot invoke valueOf on a Matrix interface")},e.prototype.format=function(t){throw new Error("Cannot invoke format on a Matrix interface")},e.prototype.toString=function(){throw new Error("Cannot invoke toString on a Matrix interface")},e},{isClass:!0});function vp(e){return Object.keys(e.signatures||{}).reduce(function(t,n){var r=(n.match(/,/g)||[]).length+1;return Math.max(t,r)},-1)}var mp="DenseMatrix",yp=["Matrix"],Ep=Ee(mp,yp,e=>{var{Matrix:t}=e;function n(f,a){if(!(this instanceof n))throw new SyntaxError("Constructor must be called with the new operator");if(a&&!yn(a))throw new Error("Invalid datatype: "+a);if(Ut(f))f.type==="DenseMatrix"?(this._data=ft(f._data),this._size=ft(f._size),this._datatype=a||f._datatype):(this._data=f.toArray(),this._size=f.size(),this._datatype=a||f._datatype);else if(f&&Se(f.data)&&Se(f.size))this._data=f.data,this._size=f.size,di(this._data,this._size),this._datatype=a||f.datatype;else if(Se(f))this._data=l(f),this._size=$r(this._data),di(this._data,this._size),this._datatype=a;else{if(f)throw new TypeError("Unsupported type of data ("+Nr(f)+")");this._data=[],this._size=[0],this._datatype=a}}n.prototype=new t,n.prototype.createDenseMatrix=function(f,a){return new n(f,a)},Object.defineProperty(n,"name",{value:"DenseMatrix"}),n.prototype.constructor=n,n.prototype.type="DenseMatrix",n.prototype.isDenseMatrix=!0,n.prototype.getDataType=function(){return Tr(this._data,Nr)},n.prototype.storage=function(){return"dense"},n.prototype.datatype=function(){return this._datatype},n.prototype.create=function(f,a){return new n(f,a)},n.prototype.subset=function(f,a,h){switch(arguments.length){case 1:return r(this,f);case 2:case 3:return i(this,f,a,h);default:throw new SyntaxError("Wrong number of arguments")}},n.prototype.get=function(f){if(!Se(f))throw new TypeError("Array expected");if(f.length!==this._size.length)throw new ae(f.length,this._size.length);for(var a=0;a<f.length;a++)Ne(f[a],this._size[a]);for(var h=this._data,d=0,p=f.length;d<p;d++){var D=f[d];Ne(D,h.length),h=h[D]}return h},n.prototype.set=function(f,a,h){if(!Se(f))throw new TypeError("Array expected");if(f.length<this._size.length)throw new ae(f.length,this._size.length,"<");var d,p,D,v=f.map(function(E){return E+1});c(this,v,h);var g=this._data;for(d=0,p=f.length-1;d<p;d++)D=f[d],Ne(D,g.length),g=g[D];return D=f[f.length-1],Ne(D,g.length),g[D]=a,this};function r(f,a){if(!ni(a))throw new TypeError("Invalid index");var h=a.isScalar();if(h)return f.get(a.min());var d=a.size();if(d.length!==f._size.length)throw new ae(d.length,f._size.length);for(var p=a.min(),D=a.max(),v=0,g=f._size.length;v<g;v++)Ne(p[v],f._size[v]),Ne(D[v],f._size[v]);return new n(u(f._data,a,d.length,0),f._datatype)}function u(f,a,h,d){var p=d===h-1,D=a.dimension(d);return p?D.map(function(v){return Ne(v,f.length),f[v]}).valueOf():D.map(function(v){Ne(v,f.length);var g=f[v];return u(g,a,h,d+1)}).valueOf()}function i(f,a,h,d){if(!a||a.isIndex!==!0)throw new TypeError("Invalid index");var p=a.size(),D=a.isScalar(),v;if(Ut(h)?(v=h.size(),h=h.valueOf()):v=$r(h),D){if(v.length!==0)throw new TypeError("Scalar expected");f.set(a.min(),h,d)}else{if(p.length<f._size.length)throw new ae(p.length,f._size.length,"<");if(v.length<p.length){for(var g=0,E=0;p[g]===1&&v[g]===1;)g++;for(;p[g]===1;)E++,g++;h=Jh(h,p.length,E,v)}if(!Ir(p,v))throw new ae(p,v,">");var b=a.max().map(function(O){return O+1});c(f,b,d);var C=p.length,M=0;o(f._data,a,h,C,M)}return f}function o(f,a,h,d,p){var D=p===d-1,v=a.dimension(p);D?v.forEach(function(g,E){Ne(g),f[g]=h[E[0]]}):v.forEach(function(g,E){Ne(g),o(f[g],a,h[E[0]],d,p+1)})}n.prototype.resize=function(f,a,h){if(!Mr(f))throw new TypeError("Array or Matrix expected");var d=f.valueOf().map(D=>Array.isArray(D)&&D.length===1?D[0]:D),p=h?this.clone():this;return s(p,d,a)};function s(f,a,h){if(a.length===0){for(var d=f._data;Se(d);)d=d[0];return d}return f._size=a.slice(0),f._data=pi(f._data,f._size,h),f}n.prototype.reshape=function(f,a){var h=a?this.clone():this;h._data=Xh(h._data,f);var d=h._size.reduce((p,D)=>p*D);return h._size=Di(f,d),h};function c(f,a,h){for(var d=f._size.slice(0),p=!1;d.length<a.length;)d.push(0),p=!0;for(var D=0,v=a.length;D<v;D++)a[D]>d[D]&&(d[D]=a[D],p=!0);p&&s(f,d,h)}n.prototype.clone=function(){var f=new n({data:ft(this._data),size:ft(this._size),datatype:this._datatype});return f},n.prototype.size=function(){return this._size.slice(0)},n.prototype.map=function(f){var a=this,h=vp(f),d=function v(g,E){return Se(g)?g.map(function(b,C){return v(b,E.concat(C))}):h===1?f(g):h===2?f(g,E):f(g,E,a)},p=d(this._data,[]),D=this._datatype!==void 0?Tr(p,Nr):void 0;return new n(p,D)},n.prototype.forEach=function(f){var a=this,h=function d(p,D){Se(p)?p.forEach(function(v,g){d(v,D.concat(g))}):f(p,D,a)};h(this._data,[])},n.prototype[Symbol.iterator]=function*(){var f=function*a(h,d){if(Se(h))for(var p=0;p<h.length;p++)yield*a(h[p],d.concat(p));else yield{value:h,index:d}};yield*f(this._data,[])},n.prototype.rows=function(){var f=[],a=this.size();if(a.length!==2)throw new TypeError("Rows can only be returned for a 2D matrix.");var h=this._data;for(var d of h)f.push(new n([d],this._datatype));return f},n.prototype.columns=function(){var f=this,a=[],h=this.size();if(h.length!==2)throw new TypeError("Rows can only be returned for a 2D matrix.");for(var d=this._data,p=function(g){var E=d.map(b=>[b[g]]);a.push(new n(E,f._datatype))},D=0;D<h[1];D++)p(D);return a},n.prototype.toArray=function(){return ft(this._data)},n.prototype.valueOf=function(){return this._data},n.prototype.format=function(f){return lt(this._data,f)},n.prototype.toString=function(){return lt(this._data)},n.prototype.toJSON=function(){return{mathjs:"DenseMatrix",data:this._data,size:this._size,datatype:this._datatype}},n.prototype.diagonal=function(f){if(f){if(nt(f)&&(f=f.toNumber()),!ge(f)||!Ue(f))throw new TypeError("The parameter k must be an integer number")}else f=0;for(var a=f>0?f:0,h=f<0?-f:0,d=this._size[0],p=this._size[1],D=Math.min(d-h,p-a),v=[],g=0;g<D;g++)v[g]=this._data[g+h][g+a];return new n({data:v,size:[D],datatype:this._datatype})},n.diagonal=function(f,a,h,d){if(!Se(f))throw new TypeError("Array expected, size parameter");if(f.length!==2)throw new Error("Only two dimensions matrix are supported");if(f=f.map(function(P){if(nt(P)&&(P=P.toNumber()),!ge(P)||!Ue(P)||P<1)throw new Error("Size values must be positive integers");return P}),h){if(nt(h)&&(h=h.toNumber()),!ge(h)||!Ue(h))throw new TypeError("The parameter k must be an integer number")}else h=0;var p=h>0?h:0,D=h<0?-h:0,v=f[0],g=f[1],E=Math.min(v-D,g-p),b;if(Se(a)){if(a.length!==E)throw new Error("Invalid value array length");b=function(S){return a[S]}}else if(Ut(a)){var C=a.size();if(C.length!==1||C[0]!==E)throw new Error("Invalid matrix length");b=function(S){return a.get([S])}}else b=function(){return a};d||(d=nt(b(0))?b(0).mul(0):0);var M=[];if(f.length>0){M=pi(M,f,d);for(var O=0;O<E;O++)M[O+D][O+p]=b(O)}return new n({data:M,size:[v,g]})},n.fromJSON=function(f){return new n(f)},n.prototype.swapRows=function(f,a){if(!ge(f)||!Ue(f)||!ge(a)||!Ue(a))throw new Error("Row index must be positive integers");if(this._size.length!==2)throw new Error("Only two dimensional matrix is supported");return Ne(f,this._size[0]),Ne(a,this._size[0]),n._swapRows(f,a,this._data),this},n._swapRows=function(f,a,h){var d=h[f];h[f]=h[a],h[a]=d};function l(f){for(var a=0,h=f.length;a<h;a++){var d=f[a];Se(d)?f[a]=l(d):d&&d.isMatrix===!0&&(f[a]=l(d.valueOf()))}return f}return n},{isClass:!0}),Ti="equalScalar";Ee(Ti,["typed","config"],e=>{var{typed:t,config:n}=e;return t(Ti,{"number, number":function(u,i){return Vh(u,i,n.epsilon)}})});function zt(e,t,n,r){if(!(this instanceof zt))throw new SyntaxError("Constructor must be called with the new operator");this.fn=e,this.count=t,this.min=n,this.max=r,this.message="Wrong number of arguments in function "+e+" ("+t+" provided, "+n+(r!=null?"-"+r:"")+" expected)",this.stack=new Error().stack}zt.prototype=new Error,zt.prototype.constructor=Error,zt.prototype.name="ArgumentsError",zt.prototype.isArgumentsError=!0;var Li="format",Ap=["typed"],Cp=Ee(Li,Ap,e=>{var{typed:t}=e;return t(Li,{any:lt,"any, Object | function | number":lt})}),ji="bin",Fp=["typed","format"];Ee(ji,Fp,e=>{var{typed:t,format:n}=e;return t(ji,{"number | BigNumber":function(u){return n(u,{notation:"bin"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"bin",wordSize:i})}})});var qi="oct",wp=["typed","format"];Ee(qi,wp,e=>{var{typed:t,format:n}=e;return t(qi,{"number | BigNumber":function(u){return n(u,{notation:"oct"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"oct",wordSize:i})}})});var ki="hex",Bp=["typed","format"];Ee(ki,Bp,e=>{var{typed:t,format:n}=e;return t(ki,{"number | BigNumber":function(u){return n(u,{notation:"hex"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"hex",wordSize:i})}})});var Vi="equal";Ee(Vi,["typed","equalScalar"],e=>{var{typed:t,equalScalar:n}=e;return t(Vi,{"any, any":function(u,i){return u===null?i===null:i===null?u===null:u===void 0?i===void 0:i===void 0?u===void 0:n(u,i)}})});var Ui="unequal";Ee(Ui,["typed","equalScalar"],e=>{var{typed:t,equalScalar:n}=e;return t(Ui,{"any, any":function(u,i){return u===null?i!==null:i===null?u!==null:u===void 0?i!==void 0:i===void 0?u!==void 0:!n(u,i)}})});var Hi={exports:{}};(function(e){(function(t,n,r){function u(c){var l=this,f=s();l.next=function(){var a=2091639*l.s0+l.c*23283064365386963e-26;return l.s0=l.s1,l.s1=l.s2,l.s2=a-(l.c=a|0)},l.c=1,l.s0=f(" "),l.s1=f(" "),l.s2=f(" "),l.s0-=f(c),l.s0<0&&(l.s0+=1),l.s1-=f(c),l.s1<0&&(l.s1+=1),l.s2-=f(c),l.s2<0&&(l.s2+=1),f=null}function i(c,l){return l.c=c.c,l.s0=c.s0,l.s1=c.s1,l.s2=c.s2,l}function o(c,l){var f=new u(c),a=l&&l.state,h=f.next;return h.int32=function(){return f.next()*4294967296|0},h.double=function(){return h()+(h()*2097152|0)*11102230246251565e-32},h.quick=h,a&&(typeof a=="object"&&i(a,f),h.state=function(){return i(f,{})}),h}function s(){var c=4022871197,l=function(f){f=String(f);for(var a=0;a<f.length;a++){c+=f.charCodeAt(a);var h=.02519603282416938*c;c=h>>>0,h-=c,h*=c,c=h>>>0,h-=c,c+=h*4294967296}return(c>>>0)*23283064365386963e-26};return l}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.alea=o})(Ke,e,!1)})(Hi);var zi={exports:{}};(function(e){(function(t,n,r){function u(s){var c=this,l="";c.x=0,c.y=0,c.z=0,c.w=0,c.next=function(){var a=c.x^c.x<<11;return c.x=c.y,c.y=c.z,c.z=c.w,c.w^=c.w>>>19^a^a>>>8},s===(s|0)?c.x=s:l+=s;for(var f=0;f<l.length+64;f++)c.x^=l.charCodeAt(f)|0,c.next()}function i(s,c){return c.x=s.x,c.y=s.y,c.z=s.z,c.w=s.w,c}function o(s,c){var l=new u(s),f=c&&c.state,a=function(){return(l.next()>>>0)/4294967296};return a.double=function(){do var h=l.next()>>>11,d=(l.next()>>>0)/4294967296,p=(h+d)/(1<<21);while(p===0);return p},a.int32=l.next,a.quick=a,f&&(typeof f=="object"&&i(f,l),a.state=function(){return i(l,{})}),a}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.xor128=o})(Ke,e,!1)})(zi);var Wi={exports:{}};(function(e){(function(t,n,r){function u(s){var c=this,l="";c.next=function(){var a=c.x^c.x>>>2;return c.x=c.y,c.y=c.z,c.z=c.w,c.w=c.v,(c.d=c.d+362437|0)+(c.v=c.v^c.v<<4^(a^a<<1))|0},c.x=0,c.y=0,c.z=0,c.w=0,c.v=0,s===(s|0)?c.x=s:l+=s;for(var f=0;f<l.length+64;f++)c.x^=l.charCodeAt(f)|0,f==l.length&&(c.d=c.x<<10^c.x>>>4),c.next()}function i(s,c){return c.x=s.x,c.y=s.y,c.z=s.z,c.w=s.w,c.v=s.v,c.d=s.d,c}function o(s,c){var l=new u(s),f=c&&c.state,a=function(){return(l.next()>>>0)/4294967296};return a.double=function(){do var h=l.next()>>>11,d=(l.next()>>>0)/4294967296,p=(h+d)/(1<<21);while(p===0);return p},a.int32=l.next,a.quick=a,f&&(typeof f=="object"&&i(f,l),a.state=function(){return i(l,{})}),a}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.xorwow=o})(Ke,e,!1)})(Wi);var Zi={exports:{}};(function(e){(function(t,n,r){function u(s){var c=this;c.next=function(){var f=c.x,a=c.i,h,d;return h=f[a],h^=h>>>7,d=h^h<<24,h=f[a+1&7],d^=h^h>>>10,h=f[a+3&7],d^=h^h>>>3,h=f[a+4&7],d^=h^h<<7,h=f[a+7&7],h=h^h<<13,d^=h^h<<9,f[a]=d,c.i=a+1&7,d};function l(f,a){var h,d=[];if(a===(a|0))d[0]=a;else for(a=""+a,h=0;h<a.length;++h)d[h&7]=d[h&7]<<15^a.charCodeAt(h)+d[h+1&7]<<13;for(;d.length<8;)d.push(0);for(h=0;h<8&&d[h]===0;++h);for(h==8?d[7]=-1:d[h],f.x=d,f.i=0,h=256;h>0;--h)f.next()}l(c,s)}function i(s,c){return c.x=s.x.slice(),c.i=s.i,c}function o(s,c){s==null&&(s=+new Date);var l=new u(s),f=c&&c.state,a=function(){return(l.next()>>>0)/4294967296};return a.double=function(){do var h=l.next()>>>11,d=(l.next()>>>0)/4294967296,p=(h+d)/(1<<21);while(p===0);return p},a.int32=l.next,a.quick=a,f&&(f.x&&i(f,l),a.state=function(){return i(l,{})}),a}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.xorshift7=o})(Ke,e,!1)})(Zi);var Xi={exports:{}};(function(e){(function(t,n,r){function u(s){var c=this;c.next=function(){var f=c.w,a=c.X,h=c.i,d,p;return c.w=f=f+1640531527|0,p=a[h+34&127],d=a[h=h+1&127],p^=p<<13,d^=d<<17,p^=p>>>15,d^=d>>>12,p=a[h]=p^d,c.i=h,p+(f^f>>>16)|0};function l(f,a){var h,d,p,D,v,g=[],E=128;for(a===(a|0)?(d=a,a=null):(a=a+"\0",d=0,E=Math.max(E,a.length)),p=0,D=-32;D<E;++D)a&&(d^=a.charCodeAt((D+32)%a.length)),D===0&&(v=d),d^=d<<10,d^=d>>>15,d^=d<<4,d^=d>>>13,D>=0&&(v=v+1640531527|0,h=g[D&127]^=d+v,p=h==0?p+1:0);for(p>=128&&(g[(a&&a.length||0)&127]=-1),p=127,D=4*128;D>0;--D)d=g[p+34&127],h=g[p=p+1&127],d^=d<<13,h^=h<<17,d^=d>>>15,h^=h>>>12,g[p]=d^h;f.w=v,f.X=g,f.i=p}l(c,s)}function i(s,c){return c.i=s.i,c.w=s.w,c.X=s.X.slice(),c}function o(s,c){s==null&&(s=+new Date);var l=new u(s),f=c&&c.state,a=function(){return(l.next()>>>0)/4294967296};return a.double=function(){do var h=l.next()>>>11,d=(l.next()>>>0)/4294967296,p=(h+d)/(1<<21);while(p===0);return p},a.int32=l.next,a.quick=a,f&&(f.X&&i(f,l),a.state=function(){return i(l,{})}),a}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.xor4096=o})(Ke,e,!1)})(Xi);var Gi={exports:{}};(function(e){(function(t,n,r){function u(s){var c=this,l="";c.next=function(){var a=c.b,h=c.c,d=c.d,p=c.a;return a=a<<25^a>>>7^h,h=h-d|0,d=d<<24^d>>>8^p,p=p-a|0,c.b=a=a<<20^a>>>12^h,c.c=h=h-d|0,c.d=d<<16^h>>>16^p,c.a=p-a|0},c.a=0,c.b=0,c.c=-1640531527,c.d=1367130551,s===Math.floor(s)?(c.a=s/4294967296|0,c.b=s|0):l+=s;for(var f=0;f<l.length+20;f++)c.b^=l.charCodeAt(f)|0,c.next()}function i(s,c){return c.a=s.a,c.b=s.b,c.c=s.c,c.d=s.d,c}function o(s,c){var l=new u(s),f=c&&c.state,a=function(){return(l.next()>>>0)/4294967296};return a.double=function(){do var h=l.next()>>>11,d=(l.next()>>>0)/4294967296,p=(h+d)/(1<<21);while(p===0);return p},a.int32=l.next,a.quick=a,f&&(typeof f=="object"&&i(f,l),a.state=function(){return i(l,{})}),a}n&&n.exports?n.exports=o:r&&r.amd?r(function(){return o}):this.tychei=o})(Ke,e,!1)})(Gi);var Ji={exports:{}};(function(e){(function(t,n,r){var u=256,i=6,o=52,s="random",c=r.pow(u,i),l=r.pow(2,o),f=l*2,a=u-1,h;function d(C,M,O){var P=[];M=M==!0?{entropy:!0}:M||{};var S=g(v(M.entropy?[C,b(n)]:C==null?E():C,3),P),$=new p(P),W=function(){for(var k=$.g(i),K=c,J=0;k<l;)k=(k+J)*u,K*=u,J=$.g(1);for(;k>=f;)k/=2,K/=2,J>>>=1;return(k+J)/K};return W.int32=function(){return $.g(4)|0},W.quick=function(){return $.g(4)/4294967296},W.double=W,g(b($.S),n),(M.pass||O||function(k,K,J,ee){return ee&&(ee.S&&D(ee,$),k.state=function(){return D($,{})}),J?(r[s]=k,K):k})(W,S,"global"in M?M.global:this==r,M.state)}function p(C){var M,O=C.length,P=this,S=0,$=P.i=P.j=0,W=P.S=[];for(O||(C=[O++]);S<u;)W[S]=S++;for(S=0;S<u;S++)W[S]=W[$=a&$+C[S%O]+(M=W[S])],W[$]=M;(P.g=function(k){for(var K,J=0,ee=P.i,Q=P.j,z=P.S;k--;)K=z[ee=a&ee+1],J=J*u+z[a&(z[ee]=z[Q=a&Q+K])+(z[Q]=K)];return P.i=ee,P.j=Q,J})(u)}function D(C,M){return M.i=C.i,M.j=C.j,M.S=C.S.slice(),M}function v(C,M){var O=[],P=typeof C,S;if(M&&P=="object")for(S in C)try{O.push(v(C[S],M-1))}catch($){}return O.length?O:P=="string"?C:C+"\0"}function g(C,M){for(var O=C+"",P,S=0;S<O.length;)M[a&S]=a&(P^=M[a&S]*19)+O.charCodeAt(S++);return b(M)}function E(){try{var C;return h&&(C=h.randomBytes)?C=C(u):(C=new Uint8Array(u),(t.crypto||t.msCrypto).getRandomValues(C)),b(C)}catch(P){var M=t.navigator,O=M&&M.plugins;return[+new Date,t,O,t.screen,b(n)]}}function b(C){return String.fromCharCode.apply(0,C)}if(g(r.random(),n),e.exports){e.exports=d;try{h=Pn.default}catch(C){}}else r["seed"+s]=d})(typeof self!="undefined"?self:Ke,[],Math)})(Ji);var bp=Hi.exports,Sp=zi.exports,_p=Wi.exports,Mp=Zi.exports,Np=Xi.exports,Ip=Gi.exports,St=Ji.exports;St.alea=bp,St.xor128=Sp,St.xorwow=_p,St.xorshift7=Mp,St.xor4096=Np,St.tychei=Ip,In("fineStructure",.0072973525693),In("weakMixingAngle",.2229),In("efimovFactor",22.7),In("sackurTetrode",-1.16487052358);function In(e,t){var n=["config","BigNumber"];return Ee(e,n,r=>{var{config:u,BigNumber:i}=r;return u.number==="BigNumber"?new i(t):t})}var xp=ap({config:ri}),Op=fp({}),Rp=dp({}),$p=gp({}),Pp=Ep({Matrix:$p}),Tp=fd({BigNumber:xp,Complex:Op,DenseMatrix:Pp,Fraction:Rp}),Lp=Cp({typed:Tp});class jp{constructor(t){this.calcControls=[],this.dependenciesTriggerMap=new Map,this.hideNotRememberControlIds=[],this.dontHasPermissionControlIds=[],this.cacheComputedResult={},this.options=t,this.getDontHasPermissionControlIds(),this.getNeedHideRememberControlIds()}getNeedHideRememberControlIds(){var t;!((t=this.options)!=null&&t.displayBoList)||(this.hideNotRememberControlIds=this.options.displayBoList.reduce((n,r)=>(r.is_remember||n.push(...r.hide_controls),n),[]))}getDontHasPermissionControlIds(){var t;!((t=this.options)!=null&&t.behavior)||(this.dontHasPermissionControlIds=this.options.behavior.reduce((n,r)=>(r.ctrlBehavior===1&&n.push(r.ctrlId),n),[]))}controlNeedComputedValue(t){if(!t)return!1;const n=this.getControlIsHide(t);return!(this.dontHasPermissionControlIds.includes(t.id)&&n||this.hideNotRememberControlIds.includes(t.id)&&n)}getControlIsHide(t){return t.props.isHide?!0:t.parent===null?!1:this.getControlIsHide(t.parent)}apply(t){this.engine=t,this.resetDependencies(),this.watchControlChange(),this.watchSubtableChange(),this.watchSchemaHideChange(),this.engine.on("engine-mounted",()=>{this.allCalcControlComputed()})}resetDependencies(){this.calcControls=[],this.dependenciesTriggerMap.clear(),this.getAllCalcControl(),this.getCalcDependencies()}allCalcControlComputed(){this.calcControls.forEach(t=>this.computedCalcValue(t))}getAllCalcControl(){this.calcControls=this.engine.runtime.flatInstances.filter(t=>t.type===X.CALC)}getCalcDependencies(){this.calcControls.forEach(t=>{const{scriptEcho:n}=t.props;n.forEach(r=>{(r.type===xe.VariableInMainTable||r.type===xe.VariableInCurrentSubTable||r.type===xe.VariableInOtherSubTable)&&this.setDependenciesTriggerMapItem(r.id,t),r.type===xe.VariableInOtherSubTable&&r.subTableId&&this.setDependenciesTriggerMapItem(r.subTableId,t)})})}setDependenciesTriggerMapItem(t,n){this.dependenciesTriggerMap.has(t)||this.dependenciesTriggerMap.set(t,[]);const r=this.dependenciesTriggerMap.get(t);r.includes(n)||r.push(n)}getCalcControlsFromSubtableRows(t){return t.reduce((n,r)=>(r.children.forEach(u=>{const i=u.children[0];i&&this.engine.assertInstance(i,X.CALC)&&n.push(i)}),n),[])}watchSchemaHideChange(){this.engine.on("schema-change",t=>{var n;t.props==="isHide"&&((n=this.dependenciesTriggerMap.get(t.instance.id))!=null?n:[]).forEach(u=>{this.computedCalcValue(u)})})}watchSubtableChange(){this.engine.on("list-change",t=>{var i,o,s;this.resetDependencies();const n=(o=(i=t.options)==null?void 0:i.changed)!=null?o:[];this.getCalcControlsFromSubtableRows(n).forEach(c=>{this.computedCalcValue(c)}),((s=this.dependenciesTriggerMap.get(t.instance.id))!=null?s:[]).forEach(c=>{this.computedCalcValue(c)})})}watchControlChange(){this.engine.on("change",t=>{var u;const{instance:n}=t;if(!this.dependenciesTriggerMap.has(n.id))return;const r=(u=this.dependenciesTriggerMap.get(n.id))!=null?u:[];t.rowIndex!==void 0&&t.rowIndex>-1?r.forEach(i=>{this.controlInSubtable(i)&&this.engine.getInstanceRowIndex(i)!==t.rowIndex||this.computedCalcValue(i)}):r.forEach(i=>{this.computedCalcValue(i)})})}controlInSubtable(t){var n;return((n=t.parent)==null?void 0:n.type)===X.SUBTABLE_COLUMN}computedCalcValue(t){var a;const n=t.props.scriptEcho;if(!n||n.length===0)return;const r=console,u=Date.now(),i="\u{1F436} computedCalcValue "+t.id+" "+u;r.time(i);const o=n.reduce((h,d)=>{if(d.type===xe.Operator||d.type===xe.Number)return h+d.name;let p=0,D;switch(d.type){case xe.VariableInMainTable:{const v=this.getNumberValue(this.engine.getState(d.id));D=this.engine.getInstance(d.id),p=Number(v);break}case xe.VariableInCurrentSubTable:{const v=this.engine.getInstanceRowIndex(t);D=this.engine.getInstance(d.id,v);const g=this.engine.getState(d.id,v),E=this.getNumberValue(g);p=Number(E);break}case xe.VariableInOtherSubTable:{const v=this.engine.getState(d.id),g=Array.isArray(v)?v.map(b=>this.getNumberValue(b)):[],E=this.getAggregateTypeValue(g,d.aggregateType);D=this.engine.getInstance(d.subTableId),p=Number(E);break}}return!Number.isNaN(p)&&this.controlNeedComputedValue(D)?h+=`(${p})`:h+=0,h},"");let s;this.cacheComputedResult[o]!==void 0?s=this.cacheComputedResult[o]:(s=Number(Lp(new Function(`return ${o}`)(),{precision:16})),this.cacheComputedResult[o]=s);let c;if(this.controlInSubtable(t)&&(c=this.engine.getInstanceRowIndex(t),c===void 0)){r.log(i,"------> \u63A7\u4EF6\u5728\u660E\u7EC6\u8868\u5185\uFF0C\u4F46\u662F\u6CA1\u6709\u884C\u4E0B\u6807\uFF0C\u8BF4\u660E\u63A7\u4EF6\u88AB\u5DF2\u7ECF\u5220\u9664\u4E86\uFF0C\u6240\u4EE5\u76F4\u63A5return"),r.timeEnd(i);return}const l=this.engine.getState(t.id,c),f=!s||s===1/0||s===-1/0?0:t.props.precision===""?s:Number(s.toFixed(t.props.precision));if(f===(l==null?void 0:l.result)){r.log(i,"------> \u5982\u679C\u503C\u6CA1\u53D8\u7684\u8BDD\uFF0C\u4E0D\u89E6\u53D1\u4FEE\u6539"),r.timeEnd(i);return}this.engine.setState(t.id,{result:f,unit:(a=l==null?void 0:l.unit)!=null?a:""},c),r.timeEnd(i)}getNumberValue(t){if(typeof t=="object"&&t){if("result"in t)return t.result;if("amount"in t)return t.amount}return typeof t=="number"?t:0}getAggregateTypeValue(t,n){if(!n||!t||!t.length)return 0;switch(n){case pt.MAX:return Math.max(...t);case pt.MIN:return Math.min(...t);case pt.SUM:return t.reduce((r,u)=>r+u);case pt.AVG:return t.reduce((r,u)=>r+u)/t.length}}}class qp{constructor(t){this.config=t}apply(t){var i,o;this.engine=t;const n=(o=(i=this.config)==null?void 0:i.source)!=null?o:"";let r=document.createElement("style");r.className="edit-css",r.type="text/css",r.innerHTML=n,document.querySelector("head").appendChild(r)}}Z.CalcPlugin=jp,Z.ControlsEventPlugin=nh,Z.ES6ModulePlugin=Y0,Z.Engine=Sr,Z.LifecycleEventPlugin=th,Z.Plugin=Q0,Z.StylePlugin=qp,Z.hasChildrenControl=vn,Z.loopDataViewControl=qt,Z.loopFormControl=jt,Z.parseModule=Ku,Object.defineProperty(Z,"__esModule",{value:!0})});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-engine",
|
|
3
|
-
"version": "1.7.6-bete.
|
|
3
|
+
"version": "1.7.6-bete.14",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@byteluck-fe/model-driven-core": "1.7.6-bete.
|
|
25
|
+
"@byteluck-fe/model-driven-core": "1.7.6-bete.14",
|
|
26
26
|
"@byteluck-fe/model-driven-shared": "^1.7.5",
|
|
27
27
|
"mathjs": "^11.3.3"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "~18.0.3"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "ce59b58c3111b3bf4b89684094c978367439e494"
|
|
33
33
|
}
|