@byteluck-fe/model-driven-core 2.7.0-alpha.3 → 2.7.0-alpha.31b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +69 -69
- package/dist/esm/api-doc-index.js +4 -4
- package/dist/esm/common/BaseControl/designer.js +111 -228
- package/dist/esm/common/BaseControl/index.js +7 -7
- package/dist/esm/common/BaseControl/property.js +14 -42
- package/dist/esm/common/BaseControl/runtime.js +21 -41
- package/dist/esm/common/ColumnControl/designer.js +5 -19
- package/dist/esm/common/ColumnControl/index.js +6 -6
- package/dist/esm/common/ColumnControl/property.js +49 -97
- package/dist/esm/common/ColumnControl/runtime.js +5 -19
- package/dist/esm/common/ControlArray.js +21 -19
- package/dist/esm/common/FormControl/designer.js +10 -25
- package/dist/esm/common/FormControl/index.js +6 -6
- package/dist/esm/common/FormControl/property.js +99 -166
- package/dist/esm/common/FormControl/runtime.js +5 -20
- package/dist/esm/common/LayoutControl/designer.js +30 -158
- package/dist/esm/common/LayoutControl/index.js +6 -6
- package/dist/esm/common/LayoutControl/property.js +3 -3
- package/dist/esm/common/LayoutControl/runtime.js +7 -22
- package/dist/esm/common/ListControl/designer.js +37 -153
- package/dist/esm/common/ListControl/index.js +6 -6
- package/dist/esm/common/ListControl/property.js +7 -20
- package/dist/esm/common/ListControl/runtime.js +8 -23
- package/dist/esm/common/SearchViewControl/designer.js +5 -19
- package/dist/esm/common/SearchViewControl/index.js +6 -6
- package/dist/esm/common/SearchViewControl/property.js +4 -18
- package/dist/esm/common/SearchViewControl/runtime.js +5 -19
- package/dist/esm/common/Validator.js +5 -5
- package/dist/esm/common/WrapControl/designer.js +5 -19
- package/dist/esm/common/WrapControl/index.js +6 -6
- package/dist/esm/common/WrapControl/property.js +3 -3
- package/dist/esm/common/WrapControl/runtime.js +5 -19
- package/dist/esm/common/controlHooksEmitter.js +1 -1
- package/dist/esm/common/index.js +12 -12
- package/dist/esm/common/initLinkOperationRules.js +6 -6
- package/dist/esm/common/initOptionAndDataSourceRules.js +82 -82
- package/dist/esm/framework/RegisterControls.js +118 -36
- package/dist/esm/framework/index.js +415 -859
- package/dist/esm/framework/isDataBind.js +7 -0
- package/dist/esm/index.js +4 -3
- package/dist/index.umd.js +1 -1
- package/dist/types/api-doc-index.d.ts +4 -4
- package/dist/types/common/BaseControl/designer.d.ts +63 -62
- package/dist/types/common/BaseControl/index.d.ts +13 -13
- package/dist/types/common/BaseControl/property.d.ts +38 -36
- package/dist/types/common/BaseControl/runtime.d.ts +23 -22
- package/dist/types/common/BaseControl/types.d.ts +35 -35
- package/dist/types/common/ColumnControl/designer.d.ts +10 -10
- package/dist/types/common/ColumnControl/index.d.ts +12 -12
- package/dist/types/common/ColumnControl/property.d.ts +73 -73
- package/dist/types/common/ColumnControl/runtime.d.ts +10 -10
- package/dist/types/common/ControlArray.d.ts +9 -8
- package/dist/types/common/FormControl/designer.d.ts +13 -13
- package/dist/types/common/FormControl/index.d.ts +12 -12
- package/dist/types/common/FormControl/property.d.ts +100 -100
- package/dist/types/common/FormControl/runtime.d.ts +11 -11
- package/dist/types/common/LayoutControl/designer.d.ts +21 -21
- package/dist/types/common/LayoutControl/index.d.ts +12 -12
- package/dist/types/common/LayoutControl/property.d.ts +6 -6
- package/dist/types/common/LayoutControl/runtime.d.ts +11 -11
- package/dist/types/common/ListControl/designer.d.ts +16 -16
- package/dist/types/common/ListControl/index.d.ts +12 -12
- package/dist/types/common/ListControl/property.d.ts +14 -12
- package/dist/types/common/ListControl/runtime.d.ts +12 -12
- package/dist/types/common/SearchViewControl/designer.d.ts +11 -11
- package/dist/types/common/SearchViewControl/index.d.ts +12 -12
- package/dist/types/common/SearchViewControl/property.d.ts +8 -8
- package/dist/types/common/SearchViewControl/runtime.d.ts +11 -11
- package/dist/types/common/Validator.d.ts +15 -15
- package/dist/types/common/WrapControl/designer.d.ts +11 -11
- package/dist/types/common/WrapControl/index.d.ts +12 -12
- package/dist/types/common/WrapControl/property.d.ts +6 -6
- package/dist/types/common/WrapControl/runtime.d.ts +11 -11
- package/dist/types/common/controlHooksEmitter.d.ts +4 -4
- package/dist/types/common/index.d.ts +12 -12
- package/dist/types/common/initLinkOperationRules.d.ts +6 -6
- package/dist/types/common/initOptionAndDataSourceRules.d.ts +10 -10
- package/dist/types/framework/RegisterControls.d.ts +37 -33
- package/dist/types/framework/index.d.ts +844 -842
- package/dist/types/framework/isDataBind.d.ts +2 -0
- package/dist/types/index.d.ts +4 -3
- package/dist/types/type.d.ts +91 -91
- package/package.json +3 -3
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export function isDataBind(dataBind) {
|
|
2
|
+
if ((dataBind === null || dataBind === void 0 ? void 0 : dataBind.dataCode) !== undefined && (dataBind === null || dataBind === void 0 ? void 0 : dataBind.fieldCode) !== undefined) {
|
|
3
|
+
return true;
|
|
4
|
+
} else {
|
|
5
|
+
return false;
|
|
6
|
+
}
|
|
7
|
+
}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
1
|
+
export * from './common';
|
|
2
|
+
export * from './framework';
|
|
3
|
+
export * from './type';
|
|
4
|
+
export * from './framework/isDataBind';
|
package/dist/index.umd.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var Hl=Object.defineProperty,kl=Object.defineProperties;var Tl=Object.getOwnPropertyDescriptors;var nn=Object.getOwnPropertySymbols,Wl=Object.getPrototypeOf,Kl=Object.prototype.hasOwnProperty,zl=Object.prototype.propertyIsEnumerable,Xl=Reflect.get;var un=(l,F,I)=>F in l?Hl(l,F,{enumerable:!0,configurable:!0,writable:!0,value:I}):l[F]=I,Z=(l,F)=>{for(var I in F||(F={}))Kl.call(F,I)&&un(l,I,F[I]);if(nn)for(var I of nn(F))zl.call(F,I)&&un(l,I,F[I]);return l},Ce=(l,F)=>kl(l,Tl(F));var rt=(l,F,I)=>Xl(Wl(l),I,F);var se=(l,F,I)=>new Promise((Fe,oe)=>{var De=U=>{try{Q(I.next(U))}catch(Y){oe(Y)}},be=U=>{try{Q(I.throw(U))}catch(Y){oe(Y)}},Q=U=>U.done?Fe(U.value):Promise.resolve(U.value).then(De,be);Q((I=I.apply(l,F)).next())});(function(l,F){typeof exports=="object"&&typeof module!="undefined"?F(exports):typeof define=="function"&&define.amd?define(["exports"],F):(l=typeof globalThis!="undefined"?globalThis:l||self,F(l.modelDrivenCore={}))})(this,function(l){"use strict";var F="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",I="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Fe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",oe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",De="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",be="{caption}\u5FC5\u586B",Q="\u8BF7\u8F93\u5165\u6807\u9898",U="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",Y="\u8BF7\u8F93\u5165\u884C\u6807\u9898",an="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",rn="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",ln="\u8BF7\u7ED1\u5B9A\u8868\u5355",sn="\u8BF7\u7ED1\u5B9A\u5217\u8868",on="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",cn="\u8BF7\u8F93\u5165\u663E\u793A\u503C",dn="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",fn="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",hn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",mn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",gn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",yn="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",En="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",vn="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Bn="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",An="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Cn="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Fn="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Dn="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",bn="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",wn="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Sn="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",In="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Rn="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Mn="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Ln="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",$n="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",_n="\u8BF7\u7ED1\u5B9A\u670D\u52A1",qn="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Pn="\u8BF7\u9009\u62E9\u7701",On="\u8BF7\u9009\u62E9\u5E02",Vn="\u8BF7\u9009\u62E9\u533A",Nn="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",xn="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Un="\u8BF7\u8F93\u5165\u5217\u5BBD",jn="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Hn="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",kn="\u8BF7\u9009\u62E9\u63A7\u4EF6",Tn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Wn="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Kn="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",zn="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Xn="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Jn="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Gn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Zn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Qn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Yn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",pn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",eu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",tu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",nu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",uu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",au="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",iu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ru="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",lu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",su="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ou="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",cu={isNotNumber:F,isNotString:I,isNotObject:Fe,isNotArray:oe,isNotBoolean:De,runtimeRequired:be,pleaseEnterCaption:Q,pleaseEnterCaptionTip:U,pleaseEnterRowCaption:Y,pleaseEnterPlaceholder:an,pleaseEnterFieldCode:rn,pleaseEnterForm:ln,pleaseEnterList:sn,pleaseEnterProcess:on,pleaseEnterLabel:cn,pleaseEnterValue:dn,bizKeyNotBindFiled:fn,pleaseSelectOneField:hn,pleaseEnterNumberRange:mn,pleaseEnterAValueGreaterThanMin:gn,pleaseEnterAValueLessThanMax:yn,numberRangeSetError:En,stringRangeError:vn,attachmentMaxSize:Bn,pleaseEnterTotalScoreSetting:An,theTotalScoreMustNotBeLessThan1:Cn,scoreDefaultValueRange:Fn,attachmentLimitError:Dn,PleaseReselectTheOptionalQuantity:bn,TheMaximumLengthIsGreaterThanTheMinimumLength:wn,TheMinimumLengthIsGreaterThanTheMaximumLength:Sn,PleaseSelectTheCorrectOptionSettings:In,optionIdIsRepeat:Rn,optionIsRequired:Mn,pleaseEnterDataCode:Ln,pleaseEnterValueFieldCode:$n,pleaseEnterSvcCode:_n,pleaseBindAtLeastOneDisplayValue:qn,pleaseSelectProvince:Pn,pleaseSelectCity:On,pleaseSelectDistrict:Vn,limitRowsCannotBeLessThan0:Nn,TheNumberOfRowsCannotBeLessThanMinRows:xn,pleaseEnterColumnWidth:Un,pleaseSetTheLogicalRelationshipOfAllRuleConditions:jn,pleaseCompleteAllRulesAndConditions:Hn,pleaseSelectControl:kn,pleaseSelectAtLeastOneColumn:Tn,pleaseSelectFillBackMode:Wn,pleaseSelectDashboard:Kn,rootNodeIsRequired:zn,theViewNameCannotBeEmpty:Xn,pleaseSelectOcrType:Jn,pleaseSelectAtLeastOneFieldToFillIn:Gn,pleaseChooseAtLeastOne:Zn,pleaseEnterButtonContent:Qn,pleaseEnterDataCodeInDataSetting:Yn,pleaseEnterValueFieldCodeInDataSetting:pn,pleaseEnterSvcCodeInDataSetting:eu,pleaseBindAtLeastOneDisplayValueInDataSetting:tu,rootNodeIsRequiredInDataSetting:nu,pleaseEnterMaxHeight:uu,pleaseEnter:au,pleaseEnterWatermark:iu,pleaseEnterFileName:ru,pleaseUploadAtLeastOnePrintTemplate:lu,pleaseAssignBusiness:su,pleaseAssignExternal:ou},du="Please enter a number",fu="Please enter a string",hu="Please enter an object",mu="Please enter an array",gu="Please enter a boolean",yu="{caption} Required",Eu="Please enter the title",vu="Please enter the bubble prompt",Bu="Please enter the row title",Au="Please enter the prompt text",Cu="Please bind data items",Fu="Please bind the form",Du="Please bind the list",bu="Please bind the process",wu="Please enter the displayed value",Su="Please enter the stored value",Iu="The document number is not bound to the data item",Ru="Please select at least one display field",Mu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Lu="Please enter a value greater than or equal to {min}",$u="Please enter a value less than or equal to {max}",_u="The value range is set incorrectly",qu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Pu="The attachment size must be between 0MB and 1000MB",Ou="Please fill in the total score setting",Vu="The total score cannot be less than 1",Nu="The default value must be between {min} and {max}",xu="The number of attachments uploaded must be between {min} and {max}",Uu="Please re-select the optional quantity",ju="The maximum length of the control must be greater than the minimum length",Hu="The minimum length of the control must be less than the maximum length",ku="Please select the correct option setting",Tu="Option ID cannot be repeated",Wu="Please enter at least one option",Ku="Please bind the data source",zu="Please bind the stored value",Xu="Please bind the service",Ju="At least one display value must be bound",Gu="Please select a province",Zu="Please select a city",Qu="Please select a district",Yu="The minimum number of lines to fill in cannot be less than 0",pu="The number of rows cannot be less than {min} rows",ea="Please enter the column width",ta="Please set the logical relationship of all rule conditions",na="Please complete all rules and conditions",ua="please select control",aa="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ia="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ra="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",la="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",sa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",oa="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ca="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",da="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",fa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ha="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ma="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ga="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ya="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Ea="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",va="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ba="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Aa="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ca="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Fa={isNotNumber:du,isNotString:fu,isNotObject:hu,isNotArray:mu,isNotBoolean:gu,runtimeRequired:yu,pleaseEnterCaption:Eu,pleaseEnterCaptionTip:vu,pleaseEnterRowCaption:Bu,pleaseEnterPlaceholder:Au,pleaseEnterFieldCode:Cu,pleaseEnterForm:Fu,pleaseEnterList:Du,pleaseEnterProcess:bu,pleaseEnterLabel:wu,pleaseEnterValue:Su,bizKeyNotBindFiled:Iu,pleaseSelectOneField:Ru,pleaseEnterNumberRange:Mu,pleaseEnterAValueGreaterThanMin:Lu,pleaseEnterAValueLessThanMax:$u,numberRangeSetError:_u,stringRangeError:qu,attachmentMaxSize:Pu,pleaseEnterTotalScoreSetting:Ou,theTotalScoreMustNotBeLessThan1:Vu,scoreDefaultValueRange:Nu,attachmentLimitError:xu,PleaseReselectTheOptionalQuantity:Uu,TheMaximumLengthIsGreaterThanTheMinimumLength:ju,TheMinimumLengthIsGreaterThanTheMaximumLength:Hu,PleaseSelectTheCorrectOptionSettings:ku,optionIdIsRepeat:Tu,optionIsRequired:Wu,pleaseEnterDataCode:Ku,pleaseEnterValueFieldCode:zu,pleaseEnterSvcCode:Xu,pleaseBindAtLeastOneDisplayValue:Ju,pleaseSelectProvince:Gu,pleaseSelectCity:Zu,pleaseSelectDistrict:Qu,limitRowsCannotBeLessThan0:Yu,TheNumberOfRowsCannotBeLessThanMinRows:pu,pleaseEnterColumnWidth:ea,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ta,pleaseCompleteAllRulesAndConditions:na,pleaseSelectControl:ua,pleaseSelectDashboard:aa,theViewNameCannotBeEmpty:ia,pleaseSelectOcrType:ra,pleaseSelectAtLeastOneFieldToFillIn:la,pleaseChooseAtLeastOne:sa,pleaseEnterButtonContent:oa,pleaseEnterDataCodeInDataSetting:ca,pleaseEnterValueFieldCodeInDataSetting:da,pleaseEnterSvcCodeInDataSetting:fa,pleaseBindAtLeastOneDisplayValueInDataSetting:ha,rootNodeIsRequiredInDataSetting:ma,pleaseEnterMaxHeight:ga,pleaseEnter:ya,pleaseEnterWatermark:Ea,pleaseEnterFileName:va,pleaseUploadAtLeastOnePrintTemplate:Ba,pleaseAssignBusiness:Aa,pleaseAssignExternal:Ca},Da="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ba="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wa="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Sa="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ia="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ra="{caption}\u5FC5\u9808",Ma="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",La="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",$a="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",_a="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",qa="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Pa="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Oa="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Va="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Na="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xa="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ua="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",ja="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ha="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ka="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ta="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Wa="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Ka="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",za="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Xa="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ja="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ga="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Za="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Qa="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ya="\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",pa="\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",ei="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ti="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ni="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ui="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ai="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ii="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ri="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",li="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",si="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",oi="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ci="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",di="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",fi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",hi="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",mi="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",gi="please select control",yi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ei="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",vi="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Bi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ai="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ci="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Fi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Di="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",bi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",wi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Si="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ii="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ri="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Mi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Li="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",$i="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",_i="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",qi="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Pi={isNotNumber:Da,isNotString:ba,isNotObject:wa,isNotArray:Sa,isNotBoolean:Ia,runtimeRequired:Ra,pleaseEnterCaption:Ma,pleaseEnterCaptionTip:La,pleaseEnterRowCaption:$a,pleaseEnterPlaceholder:_a,pleaseEnterFieldCode:qa,pleaseEnterForm:Pa,pleaseEnterList:Oa,pleaseEnterProcess:Va,pleaseEnterLabel:Na,pleaseEnterValue:xa,bizKeyNotBindFiled:Ua,pleaseSelectOneField:ja,pleaseEnterNumberRange:Ha,pleaseEnterAValueGreaterThanMin:ka,pleaseEnterAValueLessThanMax:Ta,numberRangeSetError:Wa,stringRangeError:Ka,attachmentMaxSize:za,pleaseEnterTotalScoreSetting:Xa,theTotalScoreMustNotBeLessThan1:Ja,scoreDefaultValueRange:Ga,attachmentLimitError:Za,PleaseReselectTheOptionalQuantity:Qa,TheMaximumLengthIsGreaterThanTheMinimumLength:Ya,TheMinimumLengthIsGreaterThanTheMaximumLength:pa,PleaseSelectTheCorrectOptionSettings:ei,optionIdIsRepeat:ti,optionIsRequired:ni,pleaseEnterDataCode:ui,pleaseEnterValueFieldCode:ai,pleaseEnterSvcCode:ii,pleaseBindAtLeastOneDisplayValue:ri,pleaseSelectProvince:li,pleaseSelectCity:si,pleaseSelectDistrict:oi,limitRowsCannotBeLessThan0:ci,TheNumberOfRowsCannotBeLessThanMinRows:di,pleaseEnterColumnWidth:fi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:hi,pleaseCompleteAllRulesAndConditions:mi,pleaseSelectControl:gi,pleaseSelectDashboard:yi,theViewNameCannotBeEmpty:Ei,pleaseSelectOcrType:vi,pleaseSelectAtLeastOneFieldToFillIn:Bi,pleaseChooseAtLeastOne:Ai,pleaseEnterButtonContent:Ci,pleaseEnterDataCodeInDataSetting:Fi,pleaseEnterValueFieldCodeInDataSetting:Di,pleaseEnterSvcCodeInDataSetting:bi,pleaseBindAtLeastOneDisplayValueInDataSetting:wi,rootNodeIsRequiredInDataSetting:Si,pleaseEnterMaxHeight:Ii,pleaseEnter:Ri,pleaseEnterWatermark:Mi,pleaseEnterFileName:Li,pleaseUploadAtLeastOnePrintTemplate:$i,pleaseAssignBusiness:_i,pleaseAssignExternal:qi},Oi={zhCN:cu,enUS:Fa,jaJP:Pi},lt;(function(t){t.Number="Number",t.Operator="Operator",t.VariableInMainTable="VariableInMainTable",t.VariableInCurrentSubTable="VariableInCurrentSubTable",t.VariableInOtherSubTable="VariableInOtherSubTable",t.UndefinedVariable="UndefinedVariable"})(lt||(lt={}));var st;(function(t){t.SUM="SUM",t.AVG="AVG",t.MAX="MAX",t.MIN="MIN"})(st||(st={}));var Vi="zh-CN";function q(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var z;(function(t){t.BASE="base",t.FORM="form",t.LAYOUT="layout",t.WRAP="wrap",t.COLUMN="column",t.LIST="list",t.SEARCH="search"})(z||(z={}));var L;(function(t){t.TITLE="title",t.LINK="link",t.BUTTON="button",t.DIVIDER="divider",t.TEXT="text",t.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",t.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",t.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",t.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",t.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",t.EXPORT_LIST_BUTTON="list-page-btn-export-list",t.LIST_SELECT_BUTTON="list-select-button",t.ORGANIZATION_SELECTION="organization-selection",t.FORM_SELECT_BUTTON="form-select-button",t.LIST_VIEW_SELECT="list-view-select",t.TEXT_OCR_BUTTON="text-ocr-button",t.INVOICE_CHECK_BUTTON="invoice-check-button",t.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",t.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",t.VARCHAR_COLUMN="varchar-column",t.TEXT_COLUMN="text-column",t.DECIMAL_COLUMN="decimal-column",t.TIMESCOPE_COLUMN="timescope-column",t.TIMESTAMP_COLUMN="timestamp-column",t.ARRAY_COLUMN="array-column",t.DEPARTMENT_COLUMN="department-column",t.AUTO_NUMBER_COLUMN="auto-number-column",t.FILE_COLUMN="file-column",t.IMAGE_COLUMN="image-column",t.PEOPLE_COLUMN="people-column",t.LOCATION_COLUMN="location-column",t.CUSTOM_COLUMN="custom-column",t.ORDER_COLUMN="order-column",t.OPERATION_COLUMN="operation-column",t.EMPLOYEE_COLUMN="employee-column",t.Approval_Status_Column="approval-status-column",t.ADDRESS="address",t.AMOUNT="amount",t.ATTACHMENT="attachment",t.AUTO_NUMBER="auto-number",t.CALC="calc",t.CHECKBOX="checkbox",t.DATE_PICKER="date-picker",t.DATE_RANGE="date-range",t.DEPARTMENT="department",t.EMPLOYEE="employee",t.IMAGE="image",t.INPUT="input",t.NUMBER="number",t.RADIO="radio",t.RICH_TEXT="rich-text",t.SCORE="score",t.SEARCH_DATE_RANGE="search-date-range",t.SEARCH_NUMBER_RANGE="search-number-range",t.SEARCH_INPUT="search-input",t.SELECT="select",t.SELECT_MULTIPLE="select-multiple",t.SELECT_RELATION="select-relation",t.VUE_FORM_ITEM="vue-form-item",t.TEXTAREA="textarea",t.EMAIL="email",t.FOOTER="footer",t.HEADER="header",t.ID_CARD="id-card",t.MOBILE="mobile",t.PHONE="phone",t.RADIO_IMAGE="radio-image",t.ELECTRONIC_SIGNATURE="electronic-signature",t.WPS="wps",t.CARD_GROUP="card-group",t.COL="col",t.GRID="grid",t.GRID_ROW="grid-row",t.GRID_TABLE_COLUMN="grid-table-column",t.GRID_LAYOUT_CONTAINER="grid-layout-container",t.ROW="row",t.TWO_COLUMNS="two-columns",t.SUBTABLE_COLUMN="subtable-column",t.SUBTABLE_ROW="subtable-row",t.TAB="tab",t.TAB_PANE="tab-pane",t.TOOLBOX="toolbox",t.DATA_VIEW="data-view",t.LIST_VIEW="list-view",t.ACTION_BAR="action-bar",t.SUBTABLE="subtable",t.GRID_TABLE="grid-table",t.SIMPLE_SEARCH="simple-search",t.PAGINATION="pagination",t.CHECKBOX_IMAGE="checkbox-image",t.DASHBOARD="dashboard",t.TREE="tree",t.EMPLOYEE2="employee2",t.DEPARTMENT2="department2"})(L||(L={}));var M;(function(t){t.VARCHAR="varchar",t.TEXT="text",t.ARRAY="array",t.ADDRESS="location",t.DECIMAL="decimal",t.DECIMAL_RANGE="decimal_range",t.TIMESTAMP="timestamp",t.EMPLOYEES="people",t.DEPARTMENTS="department",t.MONEY="money",t.TIMESCOPE="timescope",t.FILE="file",t.IMAGE="image",t.AUTO_NUMBER="auto_number",t.CALC="calc",t.RELATION="relation",t.LIST="list",t.RELATION_FIELD="relation-field",t.REFERENCE_FIELD="reference-field",t.CALC_FIELD="calc",t.JSON="json",t.BIGINT="bigint",t.ANY="ANY",t.ENCRYPTED_FIELD="encrypted_field"})(M||(M={}));var $;$={},q($,M.ARRAY,L.ARRAY_COLUMN),q($,M.AUTO_NUMBER,L.AUTO_NUMBER_COLUMN),q($,M.DECIMAL,L.DECIMAL_COLUMN),q($,M.DEPARTMENTS,L.DEPARTMENT_COLUMN),q($,M.FILE,L.FILE_COLUMN),q($,M.IMAGE,L.IMAGE_COLUMN),q($,M.ADDRESS,L.LOCATION_COLUMN),q($,M.EMPLOYEES,L.EMPLOYEE_COLUMN),q($,M.TEXT,L.TEXT_COLUMN),q($,M.TIMESCOPE,L.TIMESCOPE_COLUMN),q($,M.TIMESTAMP,L.TIMESTAMP_COLUMN),q($,M.VARCHAR,L.VARCHAR_COLUMN),q($,M.RELATION,L.VARCHAR_COLUMN);var ot;(function(t){t.YEAR="year",t.MONTH="month",t.DATE="date",t.DATEHOUR="datehour",t.DATEMIN="datemin",t.DATETIME="datetime"})(ot||(ot={}));var ct="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Ni=ct+"0123456789";function T(){for(var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,e="",n=0;n<t;n++){var u=n===0?ct:Ni,a=Math.random()*u.length;e+=u[parseInt(String(a),10)]}return e}function we(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function xi(t){if(Array.isArray(t))return we(t)}function Ui(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function dt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ji(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function ce(t,e,n){return ji()?ce=Reflect.construct:ce=function(a,i,r){var s=[null];s.push.apply(s,i);var d=Function.bind.apply(a,s),c=new d;return r&&ee(c,r.prototype),c},ce.apply(null,arguments)}function p(t){return p=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},p(t)}function ft(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&ee(t,e)}function Hi(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function ki(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Ti(){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 Wi(t,e){return e&&(Ki(e)==="object"||typeof e=="function")?e:Ui(t)}function ee(t,e){return ee=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},ee(t,e)}function ht(t){return xi(t)||ki(t)||zi(t)||Ti()}var Ki=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function zi(t,e){if(!!t){if(typeof t=="string")return we(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return we(t,e)}}function Se(t){var e=typeof Map=="function"?new Map:void 0;return Se=function(u){if(u===null||!Hi(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return ce(u,arguments,p(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),ee(a,u)},Se(t)}function Xi(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}function mt(t){var e=Xi();return function(){var u=p(t),a;if(e){var i=p(this).constructor;a=Reflect.construct(u,arguments,i)}else a=u.apply(this,arguments);return Wi(this,a)}}var Ie=console;function Re(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=Ie).warn.apply(u,["\u{1F9D0} Driven Warning:"+e[0]].concat(ht(a)))}function gt(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=Ie).log.apply(u,["\u{1F680} Driven Log:"+e[0]].concat(ht(a)))}function Ji(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Me=function(t){ft(n,t);var e=mt(n);function n(u){dt(this,n);var a;return a=e.call(this,u),a.name="\u{1F4A5} Driven Error",a.message=u?Ji(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return n}(Se(Error)),Gi=function(t){ft(n,t);var e=mt(n);function n(u){dt(this,n);var a;return a=e.call(this,u),a.name="\u{1F6A8} Driven Reference Error",a}return n}(Me);function Le(t){throw new Me(t)}function yt(t){throw new Gi(t)}function Zi(t){Ie.error(new Me(t))}var Qi=Object.prototype.toString;function Et(t,e){return Qi.call(t)==="[object "+e+"]"}function Yi(t){return Et(t,"String")}function pi(t){return Et(t,"Promise")}var er=function(){function t(e){var n,u;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((u=(n=e.messages)!==null&&n!==void 0?n:this.getPreImport(e.locale))!==null&&u!==void 0?u:{}),e.variableRegExp&&(this.variableRegExp=e.variableRegExp),this.setLocale(e.locale)}return t.prototype.setLocale=function(e){var n=this;this.locale=e,this._messageCache.clear();var u=this.getMessageData();pi(u)?u.then(function(a){n._messageCache.clear(),n.messages[n.localeInMessageKey]=a}):this.messages[this.localeInMessageKey]=u},t.prototype.getMessageData=function(){var e=this._messages[this.localeInMessageKey];return typeof e=="function"?e():e},t.prototype.translate=function(e,n,u){var a=this.getMessage(e);return a?this.formatMessage(a,u):this.formatMessage(n,u)},t.prototype.getMessage=function(e){if(this._messageCache.has(e))return this._messageCache.get(e);var n=this.getPathArray(e),u=n.reduce(function(a,i,r,s){if(a!==void 0){var d=a[i];if(!(r===s.length-1&&!Yi(d)))return d}},this.message);return this._messageCache.set(e,u),u},t.prototype.formatMessage=function(e,n){return n?e.replace(this.variableRegExp,function(u,a){var i=n[a];return i!==void 0?String(i):u}):e},t.prototype.getPreImport=function(e){var n;if(window.okI18nPreImport){var u=this.getLocaleInMessageKey(e);return window.okI18nPreImport.hasOwnProperty(u)?window.okI18nPreImport:(n={},n[u]=window.okI18nPreImport,n)}},t.prototype.getPathArray=function(e){return e.split(".")},t.prototype.getLocaleInMessageKey=function(e){return e.replace(/-/g,"")},Object.defineProperty(t.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"message",{get:function(){var e;return(e=this.messages[this.localeInMessageKey])!==null&&e!==void 0?e:{}},enumerable:!1,configurable:!0}),t}();function tr(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function vt(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function nr(t,e,n){return e&&vt(t.prototype,e),n&&vt(t,n),t}function ur(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var h=function(){function t(){tr(this,t)}return nr(t,null,[{key:"getMessage",value:function(n){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",u)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Vi;return new er({locale:n,messages:Oi})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),t}();ur(h,"$i18n",h.resetI18n());function ar(t,e,n){var u=e.replace(/\[(\d)]/g,function(i,r){return"."+r}).split("."),a=!1;return u.reduce(function(i,r,s,d){var c=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,r)){Re("Can not set ".concat(e,"'s ").concat(r," property in current %o, Because there is no ").concat(r," property on the %o"),i,i);return}return s===d.length-1&&!Object.is(c[r],n)&&(c[r]=n,a=!0),c[r]}},t),a}var ir=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},rr={exports:{}};(function(t){(function(e){var n=function(o,m,v){if(!c(m)||E(m)||C(m)||D(m)||d(m))return m;var b,S=0,N=0;if(g(m))for(b=[],N=m.length;S<N;S++)b.push(n(o,m[S],v));else{b={};for(var A in m)Object.prototype.hasOwnProperty.call(m,A)&&(b[o(A,v)]=n(o,m[A],v))}return b},u=function(o,m){m=m||{};var v=m.separator||"_",b=m.split||/(?=[A-Z])/;return o.split(b).join(v)},a=function(o){return w(o)?o:(o=o.replace(/[\-_\s]+(.)?/g,function(m,v){return v?v.toUpperCase():""}),o.substr(0,1).toLowerCase()+o.substr(1))},i=function(o){var m=a(o);return m.substr(0,1).toUpperCase()+m.substr(1)},r=function(o,m){return u(o,m).toLowerCase()},s=Object.prototype.toString,d=function(o){return typeof o=="function"},c=function(o){return o===Object(o)},g=function(o){return s.call(o)=="[object Array]"},E=function(o){return s.call(o)=="[object Date]"},C=function(o){return s.call(o)=="[object RegExp]"},D=function(o){return s.call(o)=="[object Boolean]"},w=function(o){return o=o-0,o===o},f=function(o,m){var v=m&&"process"in m?m.process:m;return typeof v!="function"?o:function(b,S){return v(b,o,S)}},B={camelize:a,decamelize:r,pascalize:i,depascalize:r,camelizeKeys:function(o,m){return n(f(a,m),o)},decamelizeKeys:function(o,m){return n(f(r,m),o,m)},pascalizeKeys:function(o,m){return n(f(i,m),o)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};t.exports?t.exports=B:e.humps=B})(ir)})(rr);var Bt={};Object.defineProperty(Bt,"__esModule",{value:!0});function $e(t){if(typeof t!="object"||t===null)return t;if(Array.isArray(t))return t.map(e=>typeof e!="object"||e===null?e:$e(e));{const e={};for(const n in t){const u=t[n];e[n]=typeof u!="object"||u===null?u:$e(u)}return e}}var lr=Bt.default=$e;function W(t){if(t!==void 0)return typeof t=="object"?lr(t):t}function sr(t){return Object.prototype.toString.call(t)==="[object Object]"}function or(t){return Array.isArray(t)}function cr(t){return t.reduce(function(e,n){return e.includes(n)||e.push(n),e},[])}function _e(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function dr(t){if(Array.isArray(t))return _e(t)}function At(t,e,n,u,a,i,r){try{var s=t[i](r),d=s.value}catch(c){n(c);return}s.done?e(d):Promise.resolve(d).then(u,a)}function fr(t){return function(){var e=this,n=arguments;return new Promise(function(u,a){var i=t.apply(e,n);function r(d){At(i,u,a,r,s,"next",d)}function s(d){At(i,u,a,r,s,"throw",d)}r(void 0)})}}function hr(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Ct(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function mr(t,e,n){return e&&Ct(t.prototype,e),n&&Ct(t,n),t}function Ft(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function gr(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function yr(){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 qe(t){return dr(t)||gr(t)||Er(t)||yr()}function Er(t,e){if(!!t){if(typeof t=="string")return _e(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return _e(t,e)}}var vr=function(t,e){var n,u,a,i,r={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(c){return function(g){return d([c,g])}}function d(c){if(n)throw new TypeError("Generator is already executing.");for(;r;)try{if(n=1,u&&(a=c[0]&2?u.return:c[0]?u.throw||((a=u.return)&&a.call(u),0):u.next)&&!(a=a.call(u,c[1])).done)return a;switch(u=0,a&&(c=[c[0]&2,a.value]),c[0]){case 0:case 1:a=c;break;case 4:return r.label++,{value:c[1],done:!1};case 5:r.label++,u=c[1],c=[0];continue;case 7:c=r.ops.pop(),r.trys.pop();continue;default:if(a=r.trys,!(a=a.length>0&&a[a.length-1])&&(c[0]===6||c[0]===2)){r=0;continue}if(c[0]===3&&(!a||c[1]>a[0]&&c[1]<a[3])){r.label=c[1];break}if(c[0]===6&&r.label<a[1]){r.label=a[1],a=c;break}if(a&&r.label<a[2]){r.label=a[2],r.ops.push(c);break}a[2]&&r.ops.pop(),r.trys.pop();continue}c=e.call(t,r)}catch(g){c=[6,g],u=0}finally{n=a=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},Br=function(){function t(){hr(this,t),Ft(this,"_events",new Map),Ft(this,"debug",!1)}return mr(t,[{key:"emit",value:function(n){for(var u=arguments.length,a=new Array(u>1?u-1:0),i=1;i<u;i++)a[i-1]=arguments[i];var r=this;return fr(function(){var s,d,c,g,E,C,D,w,f,B,o,m;return vr(this,function(v){switch(v.label){case 0:if(s=r._events.get(n),d=[],!s)return[3,10];c=s.slice(),g=!0,E=!1,C=void 0,v.label=1;case 1:v.trys.push([1,8,9,10]),D=c[Symbol.iterator](),v.label=2;case 2:if(g=(w=D.next()).done)return[3,7];if(f=w.value,!s.includes(f))return[3,6];v.label=3;case 3:return v.trys.push([3,5,,6]),r.debug&>.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(f.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+f.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"\u3002")].concat(qe(a))),[4,f.apply(null,qe(a))];case 4:return B=v.sent(),r.debug&>.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(f.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+f.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(qe(a),[B])),d.push(B),B===!1?[3,7]:[3,6];case 5:return o=v.sent(),Zi(String(o)+":"+String(o.stack)),[3,6];case 6:return g=!0,[3,2];case 7:return[3,10];case 8:return m=v.sent(),E=!0,C=m,[3,10];case 9:try{!g&&D.return!=null&&D.return()}finally{if(E)throw C}return[7];case 10:return[2,d]}})})()}},{key:"on",value:function(n,u){if(this._events.has(n)){var a;(a=this._events.get(n))===null||a===void 0||a.push(u)}else this._events.set(n,[u])}},{key:"off",value:function(n,u){if(this._events.has(n)){var a=this._events.get(n),i=a==null?void 0:a.indexOf(u);a==null||a.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),t}();function Ar(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Dt(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function Cr(t,e,n){return e&&Dt(t.prototype,e),n&&Dt(t,n),t}function Fr(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Dr=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],br=function(){function t(){Ar(this,t)}return Cr(t,[{key:"getEventsFromKeys",value:function(n){var u=typeof n=="string"?[n]:n;return t.events.filter(function(a){return u.includes(a.key)})}}]),t}();Fr(br,"events",Dr);const bt=[];class de{constructor(e){this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=e,this._initControls(e)}registerControlConfig(e,n){return this.controlConfigMap.set(e,n),this}getControlConfig(e){return this.controlConfigMap.get(e)}static register(e){const{Designer:n,Runtime:u}=e;(!n||!u||!n.__is_control__||!u.__is_control__)&&Le(`${e} is can't register as a Control`);const a=this.staticControls.findIndex(i=>i.Designer.controlType===n.controlType);return a>-1&&(Re(`The ${n.controlType} is repeat register, So it overwrites the one that was registered before.`),this.staticControls.splice(a,1)),this.staticRegisteredTypes.add(n.controlType),this.staticControls.push(e),this}getControls(){return this._controls}register(e){e.__is_control__||Le(`${e.name} is not a Control`);const n=this._controls.findIndex(u=>u.controlType===e.controlType);return n>-1&&(Re(`The ${e.controlType} is repeat register, So it overwrites the one that was registered before.`),this._controls.splice(n,1)),this.registeredControlTypes.add(e.controlType),this._controls.push(e),this}isLayoutControl(e){return e.controlType===z.LAYOUT}isFormControl(e){return e.controlType===z.FORM}isListControl(e){return e.controlType===z.LIST}isColumnControl(e){return e.controlType===z.COLUMN}createControl(e,n){if(Array.isArray(e))return e.map(a=>this.createControl(a,n));e.children&&(e.children=e.children.map(a=>this.createControl(a,n))),this.isListControl(e)&&e.props.headers&&(e.props.headers=e.props.headers.map(a=>this.createControl(a,n)));const u=this.getControlFormType(e.type);if(u){let a=e;if(typeof n=="function"){const r=n(a);r&&(a=r)}return new u(a)}else Le(`The constructor of ${e.type} could not be found, please confirm that the constructor has been registered`)}createControlInstance(e,n){const u=this.getControlFormType(e);if(u)return new u(n)}getControlFormType(e){return this._controls.find(n=>n.controlType===e)}_initControls(e){this.constructor.staticControls.forEach(n=>{this.register(n[e])})}}de.staticControls=bt,de.staticRegisteredTypes=new Set(bt.map(t=>t.Designer.controlType)),de.staticRegisteredConfigs=new Map;class O{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.aliasCode=e==null?void 0:e.aliasCode}}class Pe{constructor(e){var n,u;this.minWidth=(n=e==null?void 0:e.minWidth)!=null?n:150,this.maxWidth=e==null?void 0:e.maxWidth,this.flex=(u=e==null?void 0:e.flex)!=null?u:1}}class fe extends Pe{constructor(e){var n,u;super(e),this.width=(n=e==null?void 0:e.width)!=null?n:240,this.widthType=(u=e==null?void 0:e.widthType)!=null?u:"auto"}}class wr{constructor(e){this.pc=new fe(e==null?void 0:e.pc),this.mobile=e!=null&&e.mobile?new fe(e==null?void 0:e.mobile):new fe({width:130,minWidth:180})}}class Sr{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"firstThree",this.customOptions=(u=e==null?void 0:e.customOptions)!=null?u:[]}}class he{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.appId=(a=e==null?void 0:e.appId)!=null?a:""}}class Ir extends he{constructor(e){var n;super(e),this.primaryControlId=(n=e==null?void 0:e.primaryControlId)!=null?n:""}}class wt{constructor(e){var n;this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:""}}class Rr{constructor(e){var n,u,a,i;this.appId=(n=e==null?void 0:e.appId)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new wt(r)))!=null?i:[]}}class St{constructor(e){var n,u,a;this.fieldName=(n=e==null?void 0:e.fieldName)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:M.VARCHAR}}class It extends he{constructor(e){var n,u,a,i;super(e),this.title=(n=e==null?void 0:e.title)!=null?n:"",this.svcCode=(u=e==null?void 0:e.svcCode)!=null?u:"",this.isOpenFilter=(a=e==null?void 0:e.isOpenFilter)!=null?a:!1,this.filters=(i=e==null?void 0:e.filters)!=null?i:[]}}class Mr{constructor(e){var n,u,a,i;this.type="sublist-page",this.formBind=new he(e==null?void 0:e.formBind),this.displayFields=(u=(n=e==null?void 0:e.displayFields)==null?void 0:n.map(r=>new St(r)))!=null?u:[],this.sublists=(i=(a=e==null?void 0:e.sublists)==null?void 0:a.map(r=>new It(r)))!=null?i:[]}}class Rt{constructor(e){this.type=e==null?void 0:e.type,this.value=e==null?void 0:e.value}}class Oe{constructor(e){var n,u,a;this.type=(n=e==null?void 0:e.type)!=null?n:"custom",this.value=(u=e==null?void 0:e.value)!=null?u:[],this.displayBos=(a=e==null?void 0:e.displayBos)!=null?a:[]}}class te{constructor(e){var n,u,a,i;this.type="conditions",this.id=(n=e==null?void 0:e.id)!=null?n:T(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.level=(a=e==null?void 0:e.level)!=null?a:0,this.value=(i=e==null?void 0:e.value)!=null?i:"and",this.children=[],Array.isArray(e==null?void 0:e.children)&&(e==null||e.children.map(r=>{var s,d;if(r.children!==void 0){const c=new te(r);(s=this.children)==null||s.push(c)}else{const c=new me(r);(d=this.children)==null||d.push(c)}}))}}class me{constructor(e){var n,u,a,i,r;this.type="condition",this.id=(n=e==null?void 0:e.id)!=null?n:T(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.symbol=(a=e==null?void 0:e.symbol)!=null?a:"",this.checked=(i=e==null?void 0:e.checked)!=null?i:!1,this.describe=(r=e==null?void 0:e.describe)!=null?r:"",this.leftVariableBo=new Rt(e==null?void 0:e.leftVariableBo),this.rightVariableBo=new Oe(e==null?void 0:e.rightVariableBo)}}class Lr{constructor(e){var n,u;this.aliasCode=(n=e==null?void 0:e.aliasCode)!=null?n:"",this.datasourceBind=new ne(e==null?void 0:e.datasourceBind),this.relationFields=(u=e==null?void 0:e.relationFields)!=null?u:[]}}class Mt{constructor(e){var n,u,a,i;this.controlId=(n=e==null?void 0:e.controlId)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.propName=(i=e==null?void 0:e.propName)!=null?i:""}}class Ve{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"FIELD",this.value=(u=e==null?void 0:e.value)!=null?u:"",this.fieldType=e==null?void 0:e.fieldType}}class Ne{constructor(e){var n,u;this.columnName=(n=e.columnName)!=null?n:"",this.desc=(u=e.desc)!=null?u:!1}}class Lt{constructor(e){var n,u,a;this.code=(n=e.code)!=null?n:"",this.value=(u=e.value)!=null?u:"",this.field_type=(a=e.field_type)!=null?a:M.ANY}}class $r{constructor(e){var n,u,a,i,r,s,d;this.id=(n=e.id)!=null?n:"",this.limit=(u=e.limit)!=null?u:20,this.formKey=(a=e.formKey)!=null?a:"",this.orders=(r=(i=e.orders)==null?void 0:i.map(c=>new Ne(c)))!=null?r:[],this.dataSet=(d=(s=e.dataSet)==null?void 0:s.map(c=>new Lt(c)))!=null?d:[]}}function xe(t){var e,n,u,a,i,r;this.filters=(n=(e=t==null?void 0:t.filters)==null?void 0:e.map(s=>s.children!==void 0?new te(s):new me(s)))!=null?n:[],this.viewFilters=(a=(u=t==null?void 0:t.viewFilters)==null?void 0:u.map(s=>s.children!==void 0?new te(s):new me(s)))!=null?a:[],(this instanceof ne||this instanceof qt)&&(this.orders=(r=(i=t==null?void 0:t.orders)==null?void 0:i.map(s=>new Ne(s)))!=null?r:[])}class ne{constructor(e){var n,u,a,i,r,s,d;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.valueFieldCode=(a=e==null?void 0:e.valueFieldCode)!=null?a:"",this.displayBoList=[],this.isOpenViewFilters=(i=e==null?void 0:e.isOpenViewFilters)!=null?i:0,Array.isArray(e==null?void 0:e.displayBoList)&&(e==null||e.displayBoList.map(c=>{var g;(g=this.displayBoList)==null||g.push(new Ve(c))})),this.keywordMapping=(r=e==null?void 0:e.keywordMapping)!=null?r:"",this.showOrder=(s=e==null?void 0:e.showOrder)!=null?s:!0,this.svcCode=(d=e==null?void 0:e.svcCode)!=null?d:"",xe.call(this,e)}}class _r{constructor(e){var n,u;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.displayBoList=(u=e==null?void 0:e.displayBoList)!=null?u:[]}}class qr{constructor(e){var n,u,a,i,r,s,d,c,g,E;this.code=(n=e==null?void 0:e.code)!=null?n:"view",this.color=(u=e==null?void 0:e.color)!=null?u:"primary",this.command=(a=e==null?void 0:e.command)!=null?a:"view",this.confirmMessage=(i=e==null?void 0:e.confirmMessage)!=null?i:void 0,this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.formKey=(s=e==null?void 0:e.formKey)!=null?s:void 0,this.icon=(d=e==null?void 0:e.icon)!=null?d:"iconliulan1",this.needConfirm=(c=e==null?void 0:e.needConfirm)!=null?c:!1,this.openType=(g=e==null?void 0:e.openType)!=null?g:"modal",this.priorityProcess=(E=e==null?void 0:e.priorityProcess)!=null?E:!0}}class Ue{constructor(e){var n,u,a,i;this.name=(n=e==null?void 0:e.name)!=null?n:"",this.key=(u=e==null?void 0:e.key)!=null?u:"",this.value=(i=(a=e==null?void 0:e.value)==null?void 0:a.map(r=>new Ve(r)))!=null?i:[]}}class $t extends ne{constructor(e){var n,u;super(e),this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(a=>new Ue(a)))!=null?u:[]}}class Pr extends ne{constructor(e){var n,u,a;super(e),this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(i=>new Ue(i)))!=null?u:[],this.formCode=(a=e==null?void 0:e.formCode)!=null?a:""}}class Or extends $t{constructor(e){var n;super(e),this.rootNode=new Oe(e==null?void 0:e.rootNode),this.filterCode=(n=e==null?void 0:e.filterCode)!=null?n:""}}class _t{constructor(e){var n,u,a,i;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.fillList=(i=(a=e==null?void 0:e.fillList)==null?void 0:a.map(r=>new Mt(r)))!=null?i:[]}}class qt extends _t{constructor(e){super(e),xe.call(this,e)}}class Vr extends _t{constructor(e){var n,u;super(e),this.mode=(n=e==null?void 0:e.mode)!=null?n:"current",this.multiple=(u=e==null?void 0:e.multiple)!=null?u:!1}}class Nr{constructor(e){var n,u,a;this.zh=(n=e==null?void 0:e.zh)!=null?n:"",this.en=(u=e==null?void 0:e.en)!=null?u:"",this.ja=(a=e==null?void 0:e.ja)!=null?a:""}}class xr{constructor(e){var n,u,a;this.stencilName=(n=e==null?void 0:e.stencilName)!=null?n:"",this.expression=(u=e==null?void 0:e.expression)!=null?u:"",this.errMessage=(a=e==null?void 0:e.errMessage)!=null?a:""}}class je{constructor(e){var n,u,a;this.id=(n=e==null?void 0:e.id)!=null?n:T(8),this.label=(u=e==null?void 0:e.label)!=null?u:"",this.value=(a=e==null?void 0:e.value)!=null?a:this.label}}class Pt extends je{constructor(e){var n,u;super(e),this.image=(n=e==null?void 0:e.image)!=null?n:"",this.type=(u=e==null?void 0:e.type)!=null?u:"src"}}function Ur(t){var e;return(e=t==null?void 0:t.map(n=>new je(n)))!=null?e:[]}function jr(t){var e;return(e=t==null?void 0:t.map(n=>new Pt(n)))!=null?e:[]}class ge{}class Hr extends ge{constructor(e){super(),this.amount=new O(e==null?void 0:e.amount),this.currency=new O(e==null?void 0:e.currency)}}class kr{constructor(e){var n,u;this.amount=(n=e==null?void 0:e.amount)!=null?n:"",this.currency=(u=e==null?void 0:e.currency)!=null?u:He.CNY}}class Tr extends ge{constructor(e){super(),this.min=new O(e==null?void 0:e.min),this.max=new O(e==null?void 0:e.max)}}class Wr{constructor(e){var n,u;this.min=(n=e==null?void 0:e.min)!=null?n:"",this.max=(u=e==null?void 0:e.max)!=null?u:""}}class Kr{constructor(e){var n,u,a,i,r,s;this.city=(n=e==null?void 0:e.city)!=null?n:"",this.cityDisplay=(u=e==null?void 0:e.cityDisplay)!=null?u:"",this.district=(a=e==null?void 0:e.district)!=null?a:"",this.districtDisplay=(i=e==null?void 0:e.districtDisplay)!=null?i:"",this.province=(r=e==null?void 0:e.province)!=null?r:"",this.provinceDisplay=(s=e==null?void 0:e.provinceDisplay)!=null?s:""}}class zr extends ge{constructor(e){super(),this.result=new O(e==null?void 0:e.result),this.unit=new O(e==null?void 0:e.unit)}}class Xr{constructor(e){var n,u;this.result=(n=e==null?void 0:e.result)!=null?n:0,this.unit=(u=e==null?void 0:e.unit)!=null?u:""}}var He=(t=>(t.CNY="CNY",t.USD="USD",t.JPY="JPY",t.EUR="EUR",t.INR="INR",t.IDR="IDR",t.BRL="BRL",t.AED="AED",t.AUD="AUD",t.CAD="CAD",t.EGP="EGP",t.GBP="GBP",t.ZAR="ZAR",t.KRW="KRW",t.MAD="MAD",t.MXN="MXN",t.MYR="MYR",t.PHP="PHP",t.PLN="PLN",t.RUB="RUB",t.SGD="SGD",t.THB="THB",t.TRY="TRY",t.TWD="TWD",t.VND="VND",t.HKD="HKD",t.IEP="IEP",t))(He||{}),Ot=(t=>(t.DEFAULT_DISPLAY="defaultDisplay",t.REQUIRED="required",t.IS_HIDE="isHide",t.IS_SHOW_UNIT="isShowUnit",t.IMD_SEARCH="immediatelySearch",t.MULTIPLE="multiple",t.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",t.CAPTION="caption",t.IS_HIDE_CAPTION="isHideCaption",t.DEFAULT_SHOW_OPTIONS="defaultShowOptions",t.CAN_SEARCH="canSearch",t.CAN_CHECK="canCheck",t.CAN_EDIT="canEdit",t.CAN_DELETE="canDelete",t.SHOW_UPPER_CASE="showUpperCase",t.MICROMETER="micrometer",t.PRECISION="precision",t.PERCENTAGE="percentage",t.OPTIONAL_LEVEL="optionalLevel",t.CONTAINS_SUB_NODE="containsSubNode",t.DEFAULT_COLLAPSE="defaultCollapse",t.CAN_VIEW_FORM="canViewForm",t.VIEW_FORM_MODEL_TYPE="viewFormModelType",t.SERVER_PAGINATION="serverPagination",t.IS_SHOW_CAPTION_TIP="isShowCaptionTip",t.ENCRYPTED="encrypted",t.IS_INLINE_EDIT="isInlineEdit",t.REVISIONS_MODE="revisionsMode",t.ALLOW_COPY_OPTIONS="allowCopyOptions",t))(Ot||{}),ke=(t=>(t[t.UNKNOWN=0]="UNKNOWN",t[t.READONLY=1]="READONLY",t[t.EDITABLE=2]="EDITABLE",t[t.PRINT=5]="PRINT",t))(ke||{});class Jr{constructor(e){var n,u,a,i,r,s;this.isShow=(n=e==null?void 0:e.isShow)!=null?n:!0,this.content=(u=e==null?void 0:e.content)!=null?u:"",this.formKey=(a=e==null?void 0:e.formKey)!=null?a:"",this.openType=(i=e==null?void 0:e.openType)!=null?i:"modal",this.type=(r=e==null?void 0:e.type)!=null?r:"",this.priorityProcess=(s=e==null?void 0:e.priorityProcess)!=null?s:!1}}class Gr{constructor(e){var n,u,a,i;this.id=(n=e==null?void 0:e.id)!=null?n:T(8),this.title=(u=e==null?void 0:e.title)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new wt(r)))!=null?i:[],xe.call(this,e)}}class Zr{constructor(e){var n,u;this.key=(n=e.key)!=null?n:T(8),this.caption=(u=e.caption)!=null?u:""}}class Vt{constructor(e){var n,u,a,i;this.width=(n=e==null?void 0:e.width)!=null?n:"",this.height=(u=e==null?void 0:e.height)!=null?u:"",this.widthConfig=(a=e==null?void 0:e.widthConfig)!=null?a:"fill",this.heightConfig=(i=e==null?void 0:e.heightConfig)!=null?i:"fill"}}class Qr{constructor(e){var n,u;this.optCode=(n=e==null?void 0:e.optCode)!=null?n:"",this.optType=(u=e==null?void 0:e.optType)!=null?u:""}}class ye{constructor(e){this.isHide={type:"boolean"}}}class Te extends Array{constructor(e){super()}}class j{constructor(e,n=""){var u,a;this.isHide=(u=e==null?void 0:e.isHide)!=null?u:!1,this.style=new Vt(e==null?void 0:e.style),this.caption=(a=e==null?void 0:e.caption)!=null?a:n}}j.Rules=ye,j.RuntimeRules=Te;function V(){return V=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var u in n)Object.prototype.hasOwnProperty.call(n,u)&&(t[u]=n[u])}return t},V.apply(this,arguments)}function Yr(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function We(t){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},We(t)}function Ee(t,e){return Ee=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},Ee(t,e)}function pr(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function ve(t,e,n){return pr()?ve=Reflect.construct:ve=function(a,i,r){var s=[null];s.push.apply(s,i);var d=Function.bind.apply(a,s),c=new d;return r&&Ee(c,r.prototype),c},ve.apply(null,arguments)}function el(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Ke(t){var e=typeof Map=="function"?new Map:void 0;return Ke=function(u){if(u===null||!el(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return ve(u,arguments,We(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Ee(a,u)},Ke(t)}var tl=/%[sdj%]/g,Nt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Nt=function(e,n){typeof console!="undefined"&&console.warn&&n.every(function(u){return typeof u=="string"})&&console.warn(e,n)});function ze(t){if(!t||!t.length)return null;var e={};return t.forEach(function(n){var u=n.field;e[u]=e[u]||[],e[u].push(n)}),e}function P(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u=1,a=e[0],i=e.length;if(typeof a=="function")return a.apply(null,e.slice(1));if(typeof a=="string"){var r=String(a).replace(tl,function(s){if(s==="%%")return"%";if(u>=i)return s;switch(s){case"%s":return String(e[u++]);case"%d":return Number(e[u++]);case"%j":try{return JSON.stringify(e[u++])}catch(d){return"[Circular]"}break;default:return s}});return r}return a}function nl(t){return t==="string"||t==="url"||t==="hex"||t==="email"||t==="date"||t==="pattern"}function R(t,e){return!!(t==null||e==="array"&&Array.isArray(t)&&!t.length||nl(e)&&typeof t=="string"&&!t)}function ul(t,e,n){var u=[],a=0,i=t.length;function r(s){u.push.apply(u,s),a++,a===i&&n(u)}t.forEach(function(s){e(s,r)})}function xt(t,e,n){var u=0,a=t.length;function i(r){if(r&&r.length){n(r);return}var s=u;u=u+1,s<a?e(t[s],i):n([])}i([])}function al(t){var e=[];return Object.keys(t).forEach(function(n){e.push.apply(e,t[n])}),e}var Ut=function(t){Yr(e,t);function e(n,u){var a;return a=t.call(this,"Async Validation Error")||this,a.errors=n,a.fields=u,a}return e}(Ke(Error));function il(t,e,n,u){if(e.first){var a=new Promise(function(E,C){var D=function(B){return u(B),B.length?C(new Ut(B,ze(B))):E()},w=al(t);xt(w,n,D)});return a.catch(function(E){return E}),a}var i=e.firstFields||[];i===!0&&(i=Object.keys(t));var r=Object.keys(t),s=r.length,d=0,c=[],g=new Promise(function(E,C){var D=function(f){if(c.push.apply(c,f),d++,d===s)return u(c),c.length?C(new Ut(c,ze(c))):E()};r.length||(u(c),E()),r.forEach(function(w){var f=t[w];i.indexOf(w)!==-1?xt(f,n,D):ul(f,n,D)})});return g.catch(function(E){return E}),g}function jt(t){return function(e){return e&&e.message?(e.field=e.field||t.fullField,e):{message:typeof e=="function"?e():e,field:e.field||t.fullField}}}function Ht(t,e){if(e){for(var n in e)if(e.hasOwnProperty(n)){var u=e[n];typeof u=="object"&&typeof t[n]=="object"?t[n]=V(V({},t[n]),u):t[n]=u}}return t}function kt(t,e,n,u,a,i){t.required&&(!n.hasOwnProperty(t.field)||R(e,i||t.type))&&u.push(P(a.messages.required,t.fullField))}function rl(t,e,n,u,a){(/^\s+$/.test(e)||e==="")&&u.push(P(a.messages.whitespace,t.fullField))}var Xe={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},ue={integer:function(e){return ue.number(e)&&parseInt(e,10)===e},float:function(e){return ue.number(e)&&!ue.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(n){return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!ue.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&!!e.match(Xe.email)&&e.length<255},url:function(e){return typeof e=="string"&&!!e.match(Xe.url)},hex:function(e){return typeof e=="string"&&!!e.match(Xe.hex)}};function ll(t,e,n,u,a){if(t.required&&e===void 0){kt(t,e,n,u,a);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],r=t.type;i.indexOf(r)>-1?ue[r](e)||u.push(P(a.messages.types[r],t.fullField,t.type)):r&&typeof e!==t.type&&u.push(P(a.messages.types[r],t.fullField,t.type))}function sl(t,e,n,u,a){var i=typeof t.len=="number",r=typeof t.min=="number",s=typeof t.max=="number",d=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=e,g=null,E=typeof e=="number",C=typeof e=="string",D=Array.isArray(e);if(E?g="number":C?g="string":D&&(g="array"),!g)return!1;D&&(c=e.length),C&&(c=e.replace(d,"_").length),i?c!==t.len&&u.push(P(a.messages[g].len,t.fullField,t.len)):r&&!s&&c<t.min?u.push(P(a.messages[g].min,t.fullField,t.min)):s&&!r&&c>t.max?u.push(P(a.messages[g].max,t.fullField,t.max)):r&&s&&(c<t.min||c>t.max)&&u.push(P(a.messages[g].range,t.fullField,t.min,t.max))}var X="enum";function ol(t,e,n,u,a){t[X]=Array.isArray(t[X])?t[X]:[],t[X].indexOf(e)===-1&&u.push(P(a.messages[X],t.fullField,t[X].join(", ")))}function cl(t,e,n,u,a){if(t.pattern){if(t.pattern instanceof RegExp)t.pattern.lastIndex=0,t.pattern.test(e)||u.push(P(a.messages.pattern.mismatch,t.fullField,e,t.pattern));else if(typeof t.pattern=="string"){var i=new RegExp(t.pattern);i.test(e)||u.push(P(a.messages.pattern.mismatch,t.fullField,e,t.pattern))}}}var y={required:kt,whitespace:rl,type:ll,range:sl,enum:ol,pattern:cl};function dl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e,"string")&&!t.required)return n();y.required(t,e,u,i,a,"string"),R(e,"string")||(y.type(t,e,u,i,a),y.range(t,e,u,i,a),y.pattern(t,e,u,i,a),t.whitespace===!0&&y.whitespace(t,e,u,i,a))}n(i)}function fl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}function hl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e===""&&(e=void 0),R(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function ml(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}function gl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return n();y.required(t,e,u,i,a),R(e)||y.type(t,e,u,i,a)}n(i)}function yl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function El(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function vl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e==null&&!t.required)return n();y.required(t,e,u,i,a,"array"),e!=null&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function Bl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}var Al="enum";function Cl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y[Al](t,e,u,i,a)}n(i)}function Fl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e,"string")&&!t.required)return n();y.required(t,e,u,i,a),R(e,"string")||y.pattern(t,e,u,i,a)}n(i)}function Dl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e,"date")&&!t.required)return n();if(y.required(t,e,u,i,a),!R(e,"date")){var s;e instanceof Date?s=e:s=new Date(e),y.type(t,s,u,i,a),s&&y.range(t,s.getTime(),u,i,a)}}n(i)}function bl(t,e,n,u,a){var i=[],r=Array.isArray(e)?"array":typeof e;y.required(t,e,u,i,a,r),n(i)}function Je(t,e,n,u,a){var i=t.type,r=[],s=t.required||!t.required&&u.hasOwnProperty(t.field);if(s){if(R(e,i)&&!t.required)return n();y.required(t,e,u,r,a,i),R(e,i)||y.type(t,e,u,r,a)}n(r)}function wl(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return n();y.required(t,e,u,i,a)}n(i)}var ae={string:dl,method:fl,number:hl,boolean:ml,regexp:gl,integer:yl,float:El,array:vl,object:Bl,enum:Cl,pattern:Fl,date:Dl,url:Je,hex:Je,email:Je,required:bl,any:wl};function Ge(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var Ze=Ge();function H(t){this.rules=null,this._messages=Ze,this.define(t)}H.prototype={messages:function(e){return e&&(this._messages=Ht(Ge(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if(typeof e!="object"||Array.isArray(e))throw new Error("Rules must be an object");this.rules={};var n,u;for(n in e)e.hasOwnProperty(n)&&(u=e[n],this.rules[n]=Array.isArray(u)?u:[u])},validate:function(e,n,u){var a=this;n===void 0&&(n={}),u===void 0&&(u=function(){});var i=e,r=n,s=u;if(typeof r=="function"&&(s=r,r={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function d(f){var B,o=[],m={};function v(b){if(Array.isArray(b)){var S;o=(S=o).concat.apply(S,b)}else o.push(b)}for(B=0;B<f.length;B++)v(f[B]);o.length?m=ze(o):(o=null,m=null),s(o,m)}if(r.messages){var c=this.messages();c===Ze&&(c=Ge()),Ht(c,r.messages),r.messages=c}else r.messages=this.messages();var g,E,C={},D=r.keys||Object.keys(this.rules);D.forEach(function(f){g=a.rules[f],E=i[f],g.forEach(function(B){var o=B;typeof o.transform=="function"&&(i===e&&(i=V({},i)),E=i[f]=o.transform(E)),typeof o=="function"?o={validator:o}:o=V({},o),o.validator=a.getValidationMethod(o),o.field=f,o.fullField=o.fullField||f,o.type=a.getType(o),o.validator&&(C[f]=C[f]||[],C[f].push({rule:o,value:E,source:i,field:f}))})});var w={};return il(C,r,function(f,B){var o=f.rule,m=(o.type==="object"||o.type==="array")&&(typeof o.fields=="object"||typeof o.defaultField=="object");m=m&&(o.required||!o.required&&f.value),o.field=f.field;function v(N,A){return V(V({},A),{},{fullField:o.fullField+"."+N})}function b(N){N===void 0&&(N=[]);var A=N;if(Array.isArray(A)||(A=[A]),!r.suppressWarning&&A.length&&H.warning("async-validator:",A),A.length&&o.message!==void 0&&(A=[].concat(o.message)),A=A.map(jt(o)),r.first&&A.length)return w[o.field]=1,B(A);if(!m)B(A);else{if(o.required&&!f.value)return o.message!==void 0?A=[].concat(o.message).map(jt(o)):r.error&&(A=[r.error(o,P(r.messages.required,o.field))]),B(A);var x={};if(o.defaultField)for(var en in f.value)f.value.hasOwnProperty(en)&&(x[en]=o.defaultField);x=V(V({},x),f.rule.fields);for(var J in x)if(x.hasOwnProperty(J)){var jl=Array.isArray(x[J])?x[J]:[x[J]];x[J]=jl.map(v.bind(null,J))}var tn=new H(x);tn.messages(r.messages),f.rule.options&&(f.rule.options.messages=r.messages,f.rule.options.error=r.error),tn.validate(f.value,f.rule.options||r,function(it){var G=[];A&&A.length&&G.push.apply(G,A),it&&it.length&&G.push.apply(G,it),B(G.length?G:null)})}}var S;o.asyncValidator?S=o.asyncValidator(o,f.value,b,f.source,r):o.validator&&(S=o.validator(o,f.value,b,f.source,r),S===!0?b():S===!1?b(o.message||o.field+" fails"):S instanceof Array?b(S):S instanceof Error&&b(S.message)),S&&S.then&&S.then(function(){return b()},function(N){return b(N)})},function(f){d(f)})},getType:function(e){if(e.type===void 0&&e.pattern instanceof RegExp&&(e.type="pattern"),typeof e.validator!="function"&&e.type&&!ae.hasOwnProperty(e.type))throw new Error(P("Unknown rule type %s",e.type));return e.type||"string"},getValidationMethod:function(e){if(typeof e.validator=="function")return e.validator;var n=Object.keys(e),u=n.indexOf("message");return u!==-1&&n.splice(u,1),n.length===1&&n[0]==="required"?ae.required:ae[this.getType(e)]||!1}},H.register=function(e,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");ae[e]=n},H.warning=Nt,H.messages=Ze,H.validators=ae;const Sl={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 Tt(t,e={}){const n=new H(t);return n.messages(Object.assign(Sl,e)),n}const Wt=new Br;class _{constructor(e){var g,E,C,D;this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=zt,this.removeSetting=Kt,this._callControlHooks("preInstance",e);const{controlName:n,controlIcon:u,controlType:a,controlFieldType:i,controlEventKeys:r,controlCustomEvents:s,name:d,setting:c}=new.target;n&&u&&a||yt(`The ${d} controlName,controlIcon,controlType is not define`),this.id=(g=e==null?void 0:e.id)!=null?g:T(10),this.name=n,this.icon=u,this.type=(E=e==null?void 0:e.type)!=null?E:a,this.props=new j(e==null?void 0:e.props,new.target.controlName),this.controlType=(C=e==null?void 0:e.controlType)!=null?C:"base",this.setting=W(c),this.fieldType=(D=e==null?void 0:e.fieldType)!=null?D:i,this.eventKeys=W(r),this.customEvents=W(s),Promise.resolve().then(()=>{this._callControlHooks("postInstance",e)})}get rules(){const e=this.props.constructor.Rules;return e?new e(this.props):{}}_callControlHooks(...e){const[n,...u]=e;return Wt.emit(n,this,...u)}preUpdate(e,n){this._callControlHooks("preUpdateProps",e,n)}postUpdate(e,n){this._callControlHooks("postUpdateProps",e,n)}updateProps(e,n){this.preUpdate(e,n),ar(this.props,e,n),this.postUpdate(e,n)}preValidate(){return se(this,null,function*(){const e=Z({},this.rules),n=yield this._callControlHooks("preValidate",e),u=n[n.length-1];return u===!1?void 0:u})}validate(e,n){return se(this,null,function*(){const u=yield this.preValidate(),a=u!==void 0?u:Z({},this.rules);Array.isArray(n)&&n.forEach(r=>{a.hasOwnProperty(r)&&delete a[r]});const i=Tt(a,e);try{return yield i.validate(this.props),!0}catch(r){throw r.control||(r.control=this),r}})}toDataBindModel(e=null){const n=this.fieldType,u=this.id,a=this.type,{dataBind:i,datasourceBind:r,optionConfig:s,caption:d,required:c,maxLength:g,options:E,encrypted:C,encryptedMode:D}=this.props;if(!n&&!i&&!r)return;const w={parentId:e,fieldType:n,controlId:u,caption:d,type:a,props:{}};switch(i&&(w.dataBind=i),s){case"datasource":case void 0:r&&(w.datasourceBind=r);break;case"custom":w.props.options=E;break}return c!==void 0&&(w.required=c),g!==void 0&&(w.maxLength=g),C!==void 0&&(w.encrypted=C),D!==void 0&&(w.encryptedMode=D),w}preToSchema(){this._callControlHooks("preToSchema",this)}toSchema(){return this.preToSchema(),{id:this.id,type:this.type,props:W(this.props),fieldType:this.fieldType,controlType:this.controlType}}static updateBasicControl(e,n){e==="setting"&&(n.add&&this.setting.push(...n.add),n.remove&&this.removeSettingItem(n.remove),n.update)}}_.controlName="\u63A7\u4EF6",_.controlIcon="icon",_.controlType="control",_.controlEventKeys=[],_.controlCustomEvents=[],_.setting=[],_.__is_control__=!0,_.removeSettingItem=Kt,_.updateSettingItem=zt;function Kt(t){(Array.isArray(t)?t:[t]).forEach(n=>{var i,r,s;const u=typeof n!="string",a=(i=this.setting)==null?void 0:i.findIndex(d=>d.key===(u?n.key:n));a!==-1&&(u?this.setting[a].showItems=(r=this.setting[a].showItems)==null?void 0:r.filter(d=>!n.hideItems.includes(d)):this.setting.splice(a,1),u&&!((s=this.setting[a].showItems)!=null&&s.length)&&this.setting.splice(a,1))})}function zt(t,e){(typeof t=="string"?[t]:t).forEach(u=>{var i;const a=this.setting.find(r=>r.key===u);a&&(typeof e=="boolean"?a.visible=e:typeof e=="object"&&(((i=e.type)!=null?i:"replace")==="replace"?a.showItems=e.showItems:a.showItems.push(...e.showItems)))})}class k{constructor(e){var r,s,d,c,g;this.customEvents=[],this.parent=null;const{controlType:n,controlFieldType:u,name:a,controlCustomEvents:i}=new.target;n||yt(`The ${a} controlType is not define`),this.id=(r=e==null?void 0:e.id)!=null?r:T(10),this.type=(s=e==null?void 0:e.type)!=null?s:n,this.props=new j(e==null?void 0:e.props),this.customEvents=i,this.controlType=(d=e==null?void 0:e.controlType)!=null?d:"base",this.fieldType=(c=e==null?void 0:e.fieldType)!=null?c:u,this.pageStatus=(g=e==null?void 0:e.pageStatus)!=null?g:ke.UNKNOWN}get rules(){const e=this.props.constructor.RuntimeRules;if(e){const n=new e(this.props);return Array.from(n)}return[]}}k.controlType="control",k.__is_control__=!0,k.controlCustomEvents=[];function Qe(t){t.hasOwnProperty("optionConfig")||(this.optionConfig={type:"any"}),t.hasOwnProperty("options")||(this.options={type:"any"}),t.hasOwnProperty("datasourceBind")||(this.datasourceBind={type:"any"}),t.hasOwnProperty("options")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="custom")?this.options=[{type:"array",message:h.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{label:{type:"string",required:!0,message:h.getMessage("pleaseEnterLabel")},value:{type:"string",required:!0,message:h.getMessage("pleaseEnterValue")}}}},{type:"array",validator(e,n,u){n.length===0&&u(h.getMessage("optionIsRequired")),u()}},{type:"array",validator(e,n,u){const a=n.map(r=>r.value),i=cr(a);a.length!==i.length?u(h.getMessage("optionIdIsRepeat")):u()},message:h.getMessage("optionIdIsRepeat")}]:t.hasOwnProperty("datasourceBind")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="datasource")&&(this.datasourceBind=[{type:"object",message:h.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:h.getMessage("pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:h.getMessage("pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:h.getMessage("pleaseEnterSvcCode")},displayBoList:[{type:"array",message:h.getMessage("isNotArray")},{type:"array",validator(e,n,u){n.length===0&&u(h.getMessage("pleaseBindAtLeastOneDisplayValue")),u()},message:h.getMessage("pleaseBindAtLeastOneDisplayValue")}],orders:[{type:"array",message:h.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:h.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:h.getMessage("isNotBoolean")}}}}]}}])}function Il(t,e,n=!1){this.datasourceBind=[{type:"object",message:h.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:h.getMessage(n?"pleaseEnterDataCodeInDataSetting":"pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:h.getMessage(n?"pleaseEnterValueFieldCodeInDataSetting":"pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:h.getMessage(n?"pleaseEnterSvcCodeInDataSetting":"pleaseEnterSvcCode")},attributes:[{type:"array",message:h.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{name:{type:"string",required:!0,message:h.getMessage("isNotString")},key:{type:"string",required:!0,message:h.getMessage("isNotString")},value:[{type:"array",message:h.getMessage("isNotArray")},{type:"array",validator(u,a,i){a.length===0&&i(h.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")),i()},message:h.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")}]}}}],orders:[{type:"array",message:h.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:h.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:h.getMessage("isNotBoolean")}}}}]}}]}class Ye extends ye{constructor(e){super(e),this.dataBind={},this.caption={type:"string",required:!0,message:h.getMessage("pleaseEnterCaption")},this.isHideCaption={type:"boolean"},this.labelPosition={type:"enum",enum:["top","left"]},this.defaultState={type:"enum",enum:["default","readonly"]},this.required={type:"boolean"},this.captionTip={type:"string",required:!1,message:h.getMessage("pleaseEnterCaptionTip")};const n={fieldCode:{type:"string",required:!0,message:h.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:h.getMessage("pleaseEnterFieldCode")}};if(e.dataBind instanceof O)this.dataBind={type:"object",required:!0,fields:W(n),message:h.getMessage("pleaseEnterFieldCode")};else{let u={type:"object",required:!0,fields:{},message:h.getMessage("pleaseEnterFieldCode")};Object.keys(e.dataBind).forEach(a=>{u.fields[a]={type:"object",required:!0,fields:W(n),message:h.getMessage("pleaseEnterFieldCode")}}),this.dataBind=u}e.isShowCaptionTip&&(this.captionTip.required=!0)}}class Xt extends Te{constructor(e){super(e),this.push({type:"string",required:e.isHide?!1:e.required,message:e.requiredMessage!==""?e.requiredMessage:h.getMessage("runtimeRequired",{caption:e.caption})})}}class ie extends j{constructor(e){var n,u,a,i,r,s,d,c,g,E;super(e),this.caption=(n=e==null?void 0:e.caption)!=null?n:"",this.isHideCaption=(u=e==null?void 0:e.isHideCaption)!=null?u:!1,this.isShowCaptionTip=(a=e==null?void 0:e.isShowCaptionTip)!=null?a:!1,this.captionTip=(i=e==null?void 0:e.captionTip)!=null?i:"",this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.labelPosition=(s=e==null?void 0:e.labelPosition)!=null?s:"top",this.placeholder=(d=e==null?void 0:e.placeholder)!=null?d:"",this.required=(c=e==null?void 0:e.required)!=null?c:!1,this.requiredMessage=(g=e==null?void 0:e.requiredMessage)!=null?g:"",this.dataBind=new O(e==null?void 0:e.dataBind),this.defaultValue=(E=e==null?void 0:e.defaultValue)!=null?E:""}}ie.Rules=Ye,ie.RuntimeRules=Xt;class Rl extends Ye{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource"],message:h.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:h.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:h.getMessage("isNotObject")}],Qe.call(this,e)}}class Jt extends _{constructor(e){super(e),this.controlType="form",this.props=new ie(e==null?void 0:e.props)}}Jt.controlEventKeys=["on_change","on_focus","on_blur"];class Ml extends k{constructor(e){super(e),this.controlType="form",this.props=new ie(e==null?void 0:e.props)}}class re extends j{constructor(e){super(e)}}function Gt(t,e){var n;(n=Object.getOwnPropertyDescriptors(t)[e])!=null&&n.enumerable&&Object.defineProperty(t,e,{enumerable:!1})}function pe(t,e){t.parent=e,Gt(t,"parent")}function Zt(t,e){t.forEach(n=>{pe(n,e)})}const Qt=Symbol("targetKey");function Yt(t){var e;return(e=t[Qt])!=null?e:t}function pt(t,e){return Zt(t,e),new Proxy(t,{get(n,u,...a){return u===Qt?n:Reflect.get(n,u,...a)},set(n,u,a,...i){if(or(t)&&u==="length"&&a===t.length)return!0;const r=Reflect.set(n,u,a,...i);return sr(a)&&pe(a,e),r}})}function le(t,e,n,u){const a=u!=null?u:t;let i=pt(Yt(n!=null?n:[]),a);Object.defineProperty(t,e,{get(){return i},set(r){i=pt(Yt(r),a)},enumerable:!0})}const Ll=1e4;class K extends _{constructor(e){super(e),this.controlType="layout";const{excludes:n,childrenMaxLength:u}=new.target;this.props=new re(e==null?void 0:e.props),le(this,"children",e==null?void 0:e.children),this.excludes=W(n),this.childrenMaxLength=u}judgeExcludesChildren(e){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(e)}judgeJoinChildren(e){const n=this.judgeExcludesChildren(e);return n&&this.childrenMaxLength>this.children.length}validate(e,n){return se(this,null,function*(){return yield rt(K.prototype,this,"validate").call(this,e,n),yield Promise.all(this.children.map(u=>u.validate(e,n))),!0})}toDataBindModel(e=null){const n=super.toDataBindModel(),u=n?[n]:[];return this.children.reduce((a,i)=>{const r=i.toDataBindModel(e);if(Array.isArray(r)){const s=r.filter(d=>!!d);return[...a,...s]}return r&&a.push(r),a},u)}toSchema(){const e=super.toSchema(),n=this.children.map(u=>u.toSchema());return Ce(Z({},e),{children:n})}}K.excludes=!1,K.childrenMaxLength=Ll;class et extends k{constructor(e){super(e),this.controlType="layout",this.props=new re(e==null?void 0:e.props),le(this,"children",e==null?void 0:e.children)}}class tt extends j{constructor(e,n){super(n),le(this,"headers",n==null?void 0:n.headers,e)}}class Be extends _{constructor(e){super(e),this.controlType="list",this.props=new tt(this,e==null?void 0:e.props)}validate(e,n){return se(this,null,function*(){return yield rt(Be.prototype,this,"validate").call(this,e),yield Promise.all(this.props.headers.map(u=>u.validate(e,n))),!0})}toDataBindModel(){const e=super.toDataBindModel(),n=e?[e]:[],u=this.id;return this.props.headers.reduce((a,i)=>{const r=i.toDataBindModel(u);if(Array.isArray(r)){const s=r.filter(d=>!!d);return[...a,...s]}return r&&a.push(r),a},n)}toSchema(){const e=super.toSchema(),n=this.props.headers.map(u=>u.toSchema());return Ce(Z({},e),{props:Ce(Z({},this.props),{headers:n})})}}Be.controlFieldType=M.LIST;class $l extends k{constructor(e){super(e),this.controlType="list",this.props=new tt(this,e==null?void 0:e.props),le(this,"children",e==null?void 0:e.children)}get length(){return this.children.length}}class nt extends ye{constructor(e){super(e),this.caption={type:"string",required:!0,message:h.getMessage("pleaseEnterCaption")},this.width={type:"number",required:!1,message:h.getMessage("pleaseEnterColumnWidth")},this.width.required=e.widthType==="px"}}class Ae extends j{constructor(e){var n,u,a,i,r;super(e),this.width=(n=e==null?void 0:e.width)!=null?n:150,this.widthType=(e==null?void 0:e.widthType)||"auto",this.caption=(u=e==null?void 0:e.caption)!=null?u:"",this.fixed=(a=e==null?void 0:e.fixed)!=null?a:"none",this.autoWidth=new Pe(e==null?void 0:e.autoWidth),this.dataBind=new O(e==null?void 0:e.dataBind),this.sort=(i=e==null?void 0:e.sort)!=null?i:!0,this.align=e==null?void 0:e.align,this.colSpan=e==null?void 0:e.colSpan,this.autoHeight=(r=e==null?void 0:e.autoHeight)!=null?r:!1}}Ae.Rules=nt;class _l extends nt{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource","none"],message:h.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:h.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:h.getMessage("isNotObject")}],Qe.call(this,e)}}class ql extends _{constructor(e){super(e),this.controlType="column",this.props=new Ae(e==null?void 0:e.props)}}class Pl extends k{constructor(e){super(e),this.controlType="column",this.props=new Ae(e==null?void 0:e.props)}}class ut extends re{constructor(e){super(e),this.dataBind=new O(e==null?void 0:e.dataBind)}}class Ol extends K{constructor(e){super(e),this.controlType="search",this.props=new ut(e==null?void 0:e.props)}}class Vl extends et{constructor(e){super(e),this.controlType="search",this.props=new ut(e==null?void 0:e.props)}}class at extends re{constructor(e){super(e)}}class Nl extends K{constructor(e){super(e),this.controlType="wrap",this.props=new at(e==null?void 0:e.props)}}class xl extends et{constructor(e){super(e),this.controlType="wrap",this.props=new at(e==null?void 0:e.props)}}function Ul(t){t.hasOwnProperty("linkOperationOption")&&t.hasOwnProperty("showLinkOperation")&&t.showLinkOperation&&(this.linkOperationOption=[{type:"object",fields:{formKey:{type:"string",required:!0,message:h.getMessage("pleaseEnterForm")}}}])}l.AMOUNT_TYPE=He,l.AddressValue=Kr,l.AmountDataBind=Hr,l.AmountValue=kr,l.AutoWidth=Pe,l.BaseControlProperty=ie,l.BaseControlPropertyRules=Ye,l.BaseControlPropertyRuntimeRules=Xt,l.BaseStyle=Vt,l.COMMON_SETTING_TYPE=Ot,l.CalcDataBind=zr,l.CalcValue=Xr,l.ColumnControlProperty=Ae,l.ColumnControlPropertyRules=nt,l.ColumnOptionAndDataSourcePropertyRules=_l,l.CustomAttributeItem=Ue,l.CustomPermissionItem=Zr,l.DataBind=O,l.DataSourceBind=ne,l.DataSourceDataSetValue=Lt,l.DataSourceOrderItem=Ne,l.DataSourceParamItem=$r,l.DataStorageDoc=Sr,l.DesignerColumnControl=ql,l.DesignerControl=_,l.DesignerFormControl=Jt,l.DesignerLayoutControl=K,l.DesignerListControl=Be,l.DesignerSearchControl=Ol,l.DesignerWrapControl=Nl,l.DisplayBoListItem=Ve,l.FieldBindItem=St,l.FieldFilterCondition=me,l.FieldFilterConditions=te,l.FillBackBind=Vr,l.FillPayloadBind=qt,l.FormBind=he,l.FormSelectBind=Ir,l.ImageOptionSetting=Pt,l.JoinRelation=Lr,l.Language=Nr,l.LayoutControlProperty=re,l.LeftVariable=Rt,l.LinkOperationOption=qr,l.ListBind=Rr,l.ListControlProperty=tt,l.MetaAutoWidth=wr,l.MetaWidth=fe,l.MultistageFillingItem=Mt,l.ObjectDataBind=ge,l.OperationItem=Jr,l.OptObject=Qr,l.OptionAndDataSourcePropertyRules=Rl,l.OptionSetting=je,l.OrganizationDataSourceBind=Pr,l.PAGE_STATUS=ke,l.Property=j,l.PropertyRules=ye,l.PropertyRuntimeRules=Te,l.RangeDataBind=Tr,l.RangeDateValue=Wr,l.RegisterControls=de,l.RegularRules=xr,l.RightVariable=Oe,l.RuntimeColumnControl=Pl,l.RuntimeControl=k,l.RuntimeFormControl=Ml,l.RuntimeLayoutControl=et,l.RuntimeListControl=$l,l.RuntimeSearchControl=Vl,l.RuntimeWrapControl=xl,l.SearchControlProperty=ut,l.SelectedContentConfig=_r,l.SubListItem=It,l.SubListPageConfig=Mr,l.SuperDataSourceBind=$t,l.TreeDataSourceBind=Or,l.ViewOperationItem=Gr,l.WrapControlProperty=at,l.controlHooksEmitter=Wt,l.createValidator=Tt,l.defineArrayParent=Zt,l.defineControlArrayToProperty=le,l.defineParent=pe,l.initImageOptions=jr,l.initLinkOperationRules=Ul,l.initOptionAndDataSourceRules=Qe,l.initOptions=Ur,l.initSuperDataSourceRules=Il,l.setPropertyDontEnum=Gt,Object.defineProperty(l,"__esModule",{value:!0})});
|
|
1
|
+
var hl=Object.defineProperty,ml=Object.defineProperties;var gl=Object.getOwnPropertyDescriptors;var Bn=Object.getOwnPropertySymbols;var yl=Object.prototype.hasOwnProperty,vl=Object.prototype.propertyIsEnumerable;var An=(l,P,V)=>P in l?hl(l,P,{enumerable:!0,configurable:!0,writable:!0,value:V}):l[P]=V,ce=(l,P)=>{for(var V in P||(P={}))yl.call(P,V)&&An(l,V,P[V]);if(Bn)for(var V of Bn(P))vl.call(P,V)&&An(l,V,P[V]);return l},_e=(l,P)=>ml(l,gl(P));var De=(l,P,V)=>new Promise((je,be)=>{var Ue=X=>{try{de(V.next(X))}catch(fe){be(fe)}},Te=X=>{try{de(V.throw(X))}catch(fe){be(fe)}},de=X=>X.done?je(X.value):Promise.resolve(X.value).then(Ue,Te);de((V=V.apply(l,P)).next())});(function(l,P){typeof exports=="object"&&typeof module!="undefined"?P(exports):typeof define=="function"&&define.amd?define(["exports"],P):(l=typeof globalThis!="undefined"?globalThis:l||self,P(l.modelDrivenCore={}))})(this,function(l){"use strict";var P="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",V="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",je="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",be="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Ue="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Te="{caption}\u5FC5\u586B",de="\u8BF7\u8F93\u5165\u6807\u9898",X="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",fe="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Fn="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Dn="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",bn="\u8BF7\u7ED1\u5B9A\u8868\u5355",Sn="\u8BF7\u7ED1\u5B9A\u5217\u8868",wn="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",In="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Rn="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Mn="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Ln="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",$n="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Pn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",On="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",qn="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Vn="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Nn="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",_n="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",jn="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Un="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Tn="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",xn="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Hn="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Wn="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",kn="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Kn="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",zn="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Gn="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Jn="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Xn="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Zn="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Qn="\u8BF7\u9009\u62E9\u7701",Yn="\u8BF7\u9009\u62E9\u5E02",pn="\u8BF7\u9009\u62E9\u533A",eu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",tu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",nu="\u8BF7\u8F93\u5165\u5217\u5BBD",uu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",au="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",iu="\u8BF7\u9009\u62E9\u63A7\u4EF6",ru="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",su="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",lu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ou="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",cu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",du="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",fu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",hu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",mu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",gu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",yu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",vu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Eu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Cu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Bu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Au="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Fu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Du="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",bu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Su="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",wu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Iu="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Ru="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Mu="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",Lu="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",$u="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",Pu={isNotNumber:P,isNotString:V,isNotObject:je,isNotArray:be,isNotBoolean:Ue,runtimeRequired:Te,pleaseEnterCaption:de,pleaseEnterCaptionTip:X,pleaseEnterRowCaption:fe,pleaseEnterPlaceholder:Fn,pleaseEnterFieldCode:Dn,pleaseEnterForm:bn,pleaseEnterList:Sn,pleaseEnterProcess:wn,pleaseEnterLabel:In,pleaseEnterValue:Rn,bizKeyNotBindFiled:Mn,pleaseSelectOneField:Ln,pleaseEnterNumberRange:$n,pleaseEnterAValueGreaterThanMin:Pn,pleaseEnterAValueLessThanMax:On,numberRangeSetError:qn,stringRangeError:Vn,attachmentMaxSize:Nn,pleaseEnterTotalScoreSetting:_n,theTotalScoreMustNotBeLessThan1:jn,scoreDefaultValueRange:Un,attachmentLimitError:Tn,PleaseReselectTheOptionalQuantity:xn,TheMaximumLengthIsGreaterThanTheMinimumLength:Hn,TheMinimumLengthIsGreaterThanTheMaximumLength:Wn,PleaseSelectTheCorrectOptionSettings:kn,optionIdIsRepeat:Kn,optionIsRequired:zn,pleaseEnterDataCode:Gn,pleaseEnterValueFieldCode:Jn,pleaseEnterSvcCode:Xn,pleaseBindAtLeastOneDisplayValue:Zn,pleaseSelectProvince:Qn,pleaseSelectCity:Yn,pleaseSelectDistrict:pn,limitRowsCannotBeLessThan0:eu,TheNumberOfRowsCannotBeLessThanMinRows:tu,pleaseEnterColumnWidth:nu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:uu,pleaseCompleteAllRulesAndConditions:au,pleaseSelectControl:iu,pleaseSelectAtLeastOneColumn:ru,pleaseSelectFillBackMode:su,pleaseSelectDashboard:lu,rootNodeIsRequired:ou,theViewNameCannotBeEmpty:cu,pleaseSelectOcrType:du,pleaseSelectAtLeastOneFieldToFillIn:fu,pleaseChooseAtLeastOne:hu,pleaseEnterButtonContent:mu,pleaseEnterDataCodeInDataSetting:gu,pleaseEnterValueFieldCodeInDataSetting:yu,pleaseEnterSvcCodeInDataSetting:vu,pleaseBindAtLeastOneDisplayValueInDataSetting:Eu,rootNodeIsRequiredInDataSetting:Cu,pleaseEnterMaxHeight:Bu,pleaseEnter:Au,pleaseEnterWatermark:Fu,pleaseEnterFileName:Du,pleaseUploadAtLeastOnePrintTemplate:bu,pleaseAssignBusiness:Su,pleaseAssignExternal:wu,pleaseEnterAliasCode:Iu,pleaseSelectDataCode:Ru,pleaseSelectSvcCode:Mu,pleaseSelectJoinFieldCode:Lu,pleaseSelectMainFieldCode:$u},Ou="Please enter a number",qu="Please enter a string",Vu="Please enter an object",Nu="Please enter an array",_u="Please enter a boolean",ju="{caption} Required",Uu="Please enter the title",Tu="Please enter the bubble prompt",xu="Please enter the row title",Hu="Please enter the prompt text",Wu="Please bind data items",ku="Please bind the form",Ku="Please bind the list",zu="Please bind the process",Gu="Please enter the displayed value",Ju="Please enter the stored value",Xu="The document number is not bound to the data item",Zu="Please select at least one display field",Qu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Yu="Please enter a value greater than or equal to {min}",pu="Please enter a value less than or equal to {max}",ea="The value range is set incorrectly",ta="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",na="The attachment size must be between 0MB and 1000MB",ua="Please fill in the total score setting",aa="The total score cannot be less than 1",ia="The default value must be between {min} and {max}",ra="The number of attachments uploaded must be between {min} and {max}",sa="Please re-select the optional quantity",la="The maximum length of the control must be greater than the minimum length",oa="The minimum length of the control must be less than the maximum length",ca="Please select the correct option setting",da="Option ID cannot be repeated",fa="Please enter at least one option",ha="Please bind the data source",ma="Please bind the stored value",ga="Please bind the service",ya="At least one display value must be bound",va="Please select a province",Ea="Please select a city",Ca="Please select a district",Ba="The minimum number of lines to fill in cannot be less than 0",Aa="The number of rows cannot be less than {min} rows",Fa="Please enter the column width",Da="Please set the logical relationship of all rule conditions",ba="Please complete all rules and conditions",Sa="please select control",wa="Please select the dashboard",Ia="View name cannot be empty",Ra="Please select recognition type",Ma="Please select at least one field to fill in",La="Please select at least one",$a="Please enter the button title",Pa="Please bind the business model in the data settings",Oa="Please bind storage values in data settings",qa="Please bind the service in the data settings",Va="Please bind at least one display value in the data settings",Na="Please select the root node in the data settings",_a="Please enter the maximum height",ja="The input content cannot be empty",Ua="Watermark cannot be empty",Ta="File name cannot be empty",xa="Please upload at least one printing template!\uFF01",Ha="Please select a specific business department",Wa="Please select a specified external organization",ka="Please enter a sub table alias",Ka="Please select the associated table to set the business model",za="Please select the association table to set the binding service",Ga="Select associated sub table fields",Ja="Please select the associated main table field",Xa={isNotNumber:Ou,isNotString:qu,isNotObject:Vu,isNotArray:Nu,isNotBoolean:_u,runtimeRequired:ju,pleaseEnterCaption:Uu,pleaseEnterCaptionTip:Tu,pleaseEnterRowCaption:xu,pleaseEnterPlaceholder:Hu,pleaseEnterFieldCode:Wu,pleaseEnterForm:ku,pleaseEnterList:Ku,pleaseEnterProcess:zu,pleaseEnterLabel:Gu,pleaseEnterValue:Ju,bizKeyNotBindFiled:Xu,pleaseSelectOneField:Zu,pleaseEnterNumberRange:Qu,pleaseEnterAValueGreaterThanMin:Yu,pleaseEnterAValueLessThanMax:pu,numberRangeSetError:ea,stringRangeError:ta,attachmentMaxSize:na,pleaseEnterTotalScoreSetting:ua,theTotalScoreMustNotBeLessThan1:aa,scoreDefaultValueRange:ia,attachmentLimitError:ra,PleaseReselectTheOptionalQuantity:sa,TheMaximumLengthIsGreaterThanTheMinimumLength:la,TheMinimumLengthIsGreaterThanTheMaximumLength:oa,PleaseSelectTheCorrectOptionSettings:ca,optionIdIsRepeat:da,optionIsRequired:fa,pleaseEnterDataCode:ha,pleaseEnterValueFieldCode:ma,pleaseEnterSvcCode:ga,pleaseBindAtLeastOneDisplayValue:ya,pleaseSelectProvince:va,pleaseSelectCity:Ea,pleaseSelectDistrict:Ca,limitRowsCannotBeLessThan0:Ba,TheNumberOfRowsCannotBeLessThanMinRows:Aa,pleaseEnterColumnWidth:Fa,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Da,pleaseCompleteAllRulesAndConditions:ba,pleaseSelectControl:Sa,pleaseSelectDashboard:wa,theViewNameCannotBeEmpty:Ia,pleaseSelectOcrType:Ra,pleaseSelectAtLeastOneFieldToFillIn:Ma,pleaseChooseAtLeastOne:La,pleaseEnterButtonContent:$a,pleaseEnterDataCodeInDataSetting:Pa,pleaseEnterValueFieldCodeInDataSetting:Oa,pleaseEnterSvcCodeInDataSetting:qa,pleaseBindAtLeastOneDisplayValueInDataSetting:Va,rootNodeIsRequiredInDataSetting:Na,pleaseEnterMaxHeight:_a,pleaseEnter:ja,pleaseEnterWatermark:Ua,pleaseEnterFileName:Ta,pleaseUploadAtLeastOnePrintTemplate:xa,pleaseAssignBusiness:Ha,pleaseAssignExternal:Wa,pleaseEnterAliasCode:ka,pleaseSelectDataCode:Ka,pleaseSelectSvcCode:za,pleaseSelectJoinFieldCode:Ga,pleaseSelectMainFieldCode:Ja},Za="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Qa="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ya="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",pa="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ei="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ti="{caption}\u5FC5\u9808",ni="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ui="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ai="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ii="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ri="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",si="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",li="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",oi="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ci="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",di="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",fi="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",hi="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",mi="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",gi="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",yi="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",vi="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Ei="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ci="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Bi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ai="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Fi="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Di="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",bi="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Si="\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",wi="\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",Ii="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ri="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Mi="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Li="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",$i="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Pi="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Oi="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",qi="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Vi="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ni="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",_i="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ji="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Ui="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ti="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",xi="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Hi="please select control",Wi="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ki="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ki="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",zi="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Gi="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ji="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Xi="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Zi="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Qi="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Yi="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",pi="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",er="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",tr="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",nr="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ur="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ar="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",ir="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",rr="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",sr="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",lr="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",or="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",cr="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",dr="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",fr={isNotNumber:Za,isNotString:Qa,isNotObject:Ya,isNotArray:pa,isNotBoolean:ei,runtimeRequired:ti,pleaseEnterCaption:ni,pleaseEnterCaptionTip:ui,pleaseEnterRowCaption:ai,pleaseEnterPlaceholder:ii,pleaseEnterFieldCode:ri,pleaseEnterForm:si,pleaseEnterList:li,pleaseEnterProcess:oi,pleaseEnterLabel:ci,pleaseEnterValue:di,bizKeyNotBindFiled:fi,pleaseSelectOneField:hi,pleaseEnterNumberRange:mi,pleaseEnterAValueGreaterThanMin:gi,pleaseEnterAValueLessThanMax:yi,numberRangeSetError:vi,stringRangeError:Ei,attachmentMaxSize:Ci,pleaseEnterTotalScoreSetting:Bi,theTotalScoreMustNotBeLessThan1:Ai,scoreDefaultValueRange:Fi,attachmentLimitError:Di,PleaseReselectTheOptionalQuantity:bi,TheMaximumLengthIsGreaterThanTheMinimumLength:Si,TheMinimumLengthIsGreaterThanTheMaximumLength:wi,PleaseSelectTheCorrectOptionSettings:Ii,optionIdIsRepeat:Ri,optionIsRequired:Mi,pleaseEnterDataCode:Li,pleaseEnterValueFieldCode:$i,pleaseEnterSvcCode:Pi,pleaseBindAtLeastOneDisplayValue:Oi,pleaseSelectProvince:qi,pleaseSelectCity:Vi,pleaseSelectDistrict:Ni,limitRowsCannotBeLessThan0:_i,TheNumberOfRowsCannotBeLessThanMinRows:ji,pleaseEnterColumnWidth:Ui,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ti,pleaseCompleteAllRulesAndConditions:xi,pleaseSelectControl:Hi,pleaseSelectDashboard:Wi,theViewNameCannotBeEmpty:ki,pleaseSelectOcrType:Ki,pleaseSelectAtLeastOneFieldToFillIn:zi,pleaseChooseAtLeastOne:Gi,pleaseEnterButtonContent:Ji,pleaseEnterDataCodeInDataSetting:Xi,pleaseEnterValueFieldCodeInDataSetting:Zi,pleaseEnterSvcCodeInDataSetting:Qi,pleaseBindAtLeastOneDisplayValueInDataSetting:Yi,rootNodeIsRequiredInDataSetting:pi,pleaseEnterMaxHeight:er,pleaseEnter:tr,pleaseEnterWatermark:nr,pleaseEnterFileName:ur,pleaseUploadAtLeastOnePrintTemplate:ar,pleaseAssignBusiness:ir,pleaseAssignExternal:rr,pleaseEnterAliasCode:sr,pleaseSelectDataCode:lr,pleaseSelectSvcCode:or,pleaseSelectJoinFieldCode:cr,pleaseSelectMainFieldCode:dr},hr={zhCN:Pu,enUS:Xa,jaJP:fr},wt;(function(t){t.Number="Number",t.Operator="Operator",t.VariableInMainTable="VariableInMainTable",t.VariableInCurrentSubTable="VariableInCurrentSubTable",t.VariableInOtherSubTable="VariableInOtherSubTable",t.UndefinedVariable="UndefinedVariable"})(wt||(wt={}));var It;(function(t){t.SUM="SUM",t.AVG="AVG",t.MAX="MAX",t.MIN="MIN"})(It||(It={}));var mr="zh-CN";function k(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var ie;(function(t){t.BASE="base",t.FORM="form",t.LAYOUT="layout",t.WRAP="wrap",t.COLUMN="column",t.LIST="list",t.SEARCH="search"})(ie||(ie={}));var N;(function(t){t.TITLE="title",t.LINK="link",t.BUTTON="button",t.DIVIDER="divider",t.TEXT="text",t.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",t.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",t.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",t.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",t.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",t.EXPORT_LIST_BUTTON="list-page-btn-export-list",t.LIST_SELECT_BUTTON="list-select-button",t.ORGANIZATION_SELECTION="organization-selection",t.FORM_SELECT_BUTTON="form-select-button",t.LIST_VIEW_SELECT="list-view-select",t.TEXT_OCR_BUTTON="text-ocr-button",t.INVOICE_CHECK_BUTTON="invoice-check-button",t.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",t.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",t.VARCHAR_COLUMN="varchar-column",t.TEXT_COLUMN="text-column",t.DECIMAL_COLUMN="decimal-column",t.TIMESCOPE_COLUMN="timescope-column",t.TIMESTAMP_COLUMN="timestamp-column",t.ARRAY_COLUMN="array-column",t.DEPARTMENT_COLUMN="department-column",t.AUTO_NUMBER_COLUMN="auto-number-column",t.FILE_COLUMN="file-column",t.IMAGE_COLUMN="image-column",t.PEOPLE_COLUMN="people-column",t.LOCATION_COLUMN="location-column",t.CUSTOM_COLUMN="custom-column",t.ORDER_COLUMN="order-column",t.OPERATION_COLUMN="operation-column",t.EMPLOYEE_COLUMN="employee-column",t.Approval_Status_Column="approval-status-column",t.ADDRESS="address",t.AMOUNT="amount",t.ATTACHMENT="attachment",t.AUTO_NUMBER="auto-number",t.CALC="calc",t.CHECKBOX="checkbox",t.DATE_PICKER="date-picker",t.DATE_RANGE="date-range",t.DEPARTMENT="department",t.EMPLOYEE="employee",t.IMAGE="image",t.INPUT="input",t.NUMBER="number",t.RADIO="radio",t.RICH_TEXT="rich-text",t.SCORE="score",t.SEARCH_DATE_RANGE="search-date-range",t.SEARCH_NUMBER_RANGE="search-number-range",t.SEARCH_INPUT="search-input",t.SELECT="select",t.SELECT_MULTIPLE="select-multiple",t.SELECT_RELATION="select-relation",t.VUE_FORM_ITEM="vue-form-item",t.TEXTAREA="textarea",t.EMAIL="email",t.FOOTER="footer",t.HEADER="header",t.ID_CARD="id-card",t.MOBILE="mobile",t.PHONE="phone",t.RADIO_IMAGE="radio-image",t.ELECTRONIC_SIGNATURE="electronic-signature",t.WPS="wps",t.CARD_GROUP="card-group",t.COL="col",t.GRID="grid",t.GRID_ROW="grid-row",t.GRID_TABLE_COLUMN="grid-table-column",t.GRID_LAYOUT_CONTAINER="grid-layout-container",t.ROW="row",t.TWO_COLUMNS="two-columns",t.SUBTABLE_COLUMN="subtable-column",t.SUBTABLE_ROW="subtable-row",t.TAB="tab",t.TAB_PANE="tab-pane",t.TOOLBOX="toolbox",t.DATA_VIEW="data-view",t.LIST_VIEW="list-view",t.ACTION_BAR="action-bar",t.SUBTABLE="subtable",t.GRID_TABLE="grid-table",t.SIMPLE_SEARCH="simple-search",t.PAGINATION="pagination",t.CHECKBOX_IMAGE="checkbox-image",t.DASHBOARD="dashboard",t.TREE="tree",t.EMPLOYEE2="employee2",t.DEPARTMENT2="department2",t.GRID_LAYOUT_WRAP="grid-layout-wrap"})(N||(N={}));var q;(function(t){t.VARCHAR="varchar",t.TEXT="text",t.ARRAY="array",t.ADDRESS="location",t.DECIMAL="decimal",t.DECIMAL_RANGE="decimal_range",t.TIMESTAMP="timestamp",t.EMPLOYEES="people",t.DEPARTMENTS="department",t.MONEY="money",t.TIMESCOPE="timescope",t.FILE="file",t.IMAGE="image",t.AUTO_NUMBER="auto_number",t.CALC="calc",t.RELATION="relation",t.LIST="list",t.RELATION_FIELD="relation-field",t.REFERENCE_FIELD="reference-field",t.CALC_FIELD="calc",t.JSON="json",t.BIGINT="bigint",t.ANY="ANY",t.ENCRYPTED_FIELD="encrypted_field"})(q||(q={}));var _;_={},k(_,q.ARRAY,N.ARRAY_COLUMN),k(_,q.AUTO_NUMBER,N.AUTO_NUMBER_COLUMN),k(_,q.DECIMAL,N.DECIMAL_COLUMN),k(_,q.DEPARTMENTS,N.DEPARTMENT_COLUMN),k(_,q.FILE,N.FILE_COLUMN),k(_,q.IMAGE,N.IMAGE_COLUMN),k(_,q.ADDRESS,N.LOCATION_COLUMN),k(_,q.EMPLOYEES,N.EMPLOYEE_COLUMN),k(_,q.TEXT,N.TEXT_COLUMN),k(_,q.TIMESCOPE,N.TIMESCOPE_COLUMN),k(_,q.TIMESTAMP,N.TIMESTAMP_COLUMN),k(_,q.VARCHAR,N.VARCHAR_COLUMN),k(_,q.RELATION,N.VARCHAR_COLUMN);var Rt;(function(t){t.YEAR="year",t.MONTH="month",t.DATE="date",t.DATEHOUR="datehour",t.DATEMIN="datemin",t.DATETIME="datetime"})(Rt||(Rt={}));var Mt="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",gr=Mt+"0123456789";function ne(){for(var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,e="",n=0;n<t;n++){var u=n===0?Mt:gr,a=Math.random()*u.length;e+=u[parseInt(String(a),10)]}return e}function xe(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function yr(t){if(Array.isArray(t))return xe(t)}function vr(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Lt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Er(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function Se(t,e,n){return Er()?Se=Reflect.construct:Se=function(a,i,r){var s=[null];s.push.apply(s,i);var h=Function.bind.apply(a,s),m=new h;return r&&me(m,r.prototype),m},Se.apply(null,arguments)}function he(t){return he=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},he(t)}function $t(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&me(t,e)}function Cr(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Br(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Ar(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Fr(t,e){return e&&(Dr(e)==="object"||typeof e=="function")?e:vr(t)}function me(t,e){return me=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},me(t,e)}function Pt(t){return yr(t)||Br(t)||br(t)||Ar()}var Dr=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function br(t,e){if(!!t){if(typeof t=="string")return xe(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return xe(t,e)}}function He(t){var e=typeof Map=="function"?new Map:void 0;return He=function(u){if(u===null||!Cr(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return Se(u,arguments,he(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),me(a,u)},He(t)}function Sr(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}function Ot(t){var e=Sr();return function(){var u=he(t),a;if(e){var i=he(this).constructor;a=Reflect.construct(u,arguments,i)}else a=u.apply(this,arguments);return Fr(this,a)}}var We=console;function ke(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=We).warn.apply(u,["\u{1F9D0} Driven Warning:"+e[0]].concat(Pt(a)))}function qt(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=We).log.apply(u,["\u{1F680} Driven Log:"+e[0]].concat(Pt(a)))}function wr(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Ke=function(t){$t(n,t);var e=Ot(n);function n(u){Lt(this,n);var a;return a=e.call(this,u),a.name="\u{1F4A5} Driven Error",a.message=u?wr(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return n}(He(Error)),Ir=function(t){$t(n,t);var e=Ot(n);function n(u){Lt(this,n);var a;return a=e.call(this,u),a.name="\u{1F6A8} Driven Reference Error",a}return n}(Ke);function ze(t){throw new Ke(t)}function Vt(t){throw new Ir(t)}function Rr(t){We.error(new Ke(t))}var Mr=Object.prototype.toString;function Nt(t,e){return Mr.call(t)==="[object "+e+"]"}function Lr(t){return Nt(t,"String")}function $r(t){return Nt(t,"Promise")}var Pr=function(){function t(e){var n,u;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((u=(n=e.messages)!==null&&n!==void 0?n:this.getPreImport(e.locale))!==null&&u!==void 0?u:{}),e.variableRegExp&&(this.variableRegExp=e.variableRegExp),this.setLocale(e.locale)}return t.prototype.setLocale=function(e){var n=this;this.locale=e,this._messageCache.clear();var u=this.getMessageData();$r(u)?u.then(function(a){n._messageCache.clear(),n.messages[n.localeInMessageKey]=a}):this.messages[this.localeInMessageKey]=u},t.prototype.getMessageData=function(){var e=this._messages[this.localeInMessageKey];return typeof e=="function"?e():e},t.prototype.translate=function(e,n,u){var a=this.getMessage(e);return a?this.formatMessage(a,u):this.formatMessage(n,u)},t.prototype.getMessage=function(e){if(this._messageCache.has(e))return this._messageCache.get(e);var n=this.getPathArray(e),u=n.reduce(function(a,i,r,s){if(a!==void 0){var h=a[i];if(!(r===s.length-1&&!Lr(h)))return h}},this.message);return this._messageCache.set(e,u),u},t.prototype.formatMessage=function(e,n){return n?e.replace(this.variableRegExp,function(u,a){var i=n[a];return i!==void 0?String(i):u}):e},t.prototype.getPreImport=function(e){var n;if(window.okI18nPreImport){var u=this.getLocaleInMessageKey(e);return window.okI18nPreImport.hasOwnProperty(u)?window.okI18nPreImport:(n={},n[u]=window.okI18nPreImport,n)}},t.prototype.getPathArray=function(e){return e.split(".")},t.prototype.getLocaleInMessageKey=function(e){return e.replace(/-/g,"")},Object.defineProperty(t.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"message",{get:function(){var e;return(e=this.messages[this.localeInMessageKey])!==null&&e!==void 0?e:{}},enumerable:!1,configurable:!0}),t}();function Or(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function _t(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function qr(t,e,n){return e&&_t(t.prototype,e),n&&_t(t,n),t}var E=function(){function t(){Or(this,t)}return qr(t,null,[{key:"getMessage",value:function(n){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",u)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:mr;return new Pr({locale:n,messages:hr})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),t}();E.$i18n=E.resetI18n();function Vr(t,e,n){var u=e.replace(/\[(\d)]/g,function(i,r){return"."+r}).split("."),a=!1;return u.reduce(function(i,r,s,h){var m=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,r)){ke("Can not set ".concat(e,"'s ").concat(r," property in current %o, Because there is no ").concat(r," property on the %o"),i,i);return}return s===h.length-1&&!Object.is(m[r],n)&&(m[r]=n,a=!0),m[r]}},t),a}var Nr=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},_r={exports:{}};(function(t){(function(e){var n=function(o,g,y){if(!m(g)||B(g)||M(g)||$(g)||h(g))return g;var R,S=0,T=0;if(A(g))for(R=[],T=g.length;S<T;S++)R.push(n(o,g[S],y));else{R={};for(var w in g)Object.prototype.hasOwnProperty.call(g,w)&&(R[o(w,y)]=n(o,g[w],y))}return R},u=function(o,g){g=g||{};var y=g.separator||"_",R=g.split||/(?=[A-Z])/;return o.split(R).join(y)},a=function(o){return L(o)?o:(o=o.replace(/[\-_\s]+(.)?/g,function(g,y){return y?y.toUpperCase():""}),o.substr(0,1).toLowerCase()+o.substr(1))},i=function(o){var g=a(o);return g.substr(0,1).toUpperCase()+g.substr(1)},r=function(o,g){return u(o,g).toLowerCase()},s=Object.prototype.toString,h=function(o){return typeof o=="function"},m=function(o){return o===Object(o)},A=function(o){return s.call(o)=="[object Array]"},B=function(o){return s.call(o)=="[object Date]"},M=function(o){return s.call(o)=="[object RegExp]"},$=function(o){return s.call(o)=="[object Boolean]"},L=function(o){return o=o-0,o===o},C=function(o,g){var y=g&&"process"in g?g.process:g;return typeof y!="function"?o:function(R,S){return y(R,o,S)}},b={camelize:a,decamelize:r,pascalize:i,depascalize:r,camelizeKeys:function(o,g){return n(C(a,g),o)},decamelizeKeys:function(o,g){return n(C(r,g),o,g)},pascalizeKeys:function(o,g){return n(C(i,g),o)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};t.exports?t.exports=b:e.humps=b})(Nr)})(_r);var jt={};Object.defineProperty(jt,"__esModule",{value:!0});function Ge(t){if(typeof t!="object"||t===null)return t;if(Array.isArray(t))return t.map(e=>typeof e!="object"||e===null?e:Ge(e));{const e={};for(const n in t){const u=t[n];e[n]=typeof u!="object"||u===null?u:Ge(u)}return e}}var jr=jt.default=Ge;function ue(t){if(t!==void 0)return typeof t=="object"?jr(t):t}function Ur(t){return Object.prototype.toString.call(t)==="[object Object]"}function Tr(t){return Array.isArray(t)}function xr(t){return t.reduce(function(e,n){return e.includes(n)||e.push(n),e},[])}var Ut={exports:{}};(function(t){var e=function(n){var u=Object.prototype,a=u.hasOwnProperty,i=Object.defineProperty||function(d,c,f){d[c]=f.value},r,s=typeof Symbol=="function"?Symbol:{},h=s.iterator||"@@iterator",m=s.asyncIterator||"@@asyncIterator",A=s.toStringTag||"@@toStringTag";function B(d,c,f){return Object.defineProperty(d,c,{value:f,enumerable:!0,configurable:!0,writable:!0}),d[c]}try{B({},"")}catch(d){B=function(c,f,F){return c[f]=F}}function M(d,c,f,F){var v=c&&c.prototype instanceof y?c:y,I=Object.create(v.prototype),x=new Dt(F||[]);return i(I,"_invoke",{value:Ne(d,f,x)}),I}n.wrap=M;function $(d,c,f){try{return{type:"normal",arg:d.call(c,f)}}catch(F){return{type:"throw",arg:F}}}var L="suspendedStart",C="suspendedYield",b="executing",o="completed",g={};function y(){}function R(){}function S(){}var T={};B(T,h,function(){return this});var w=Object.getPrototypeOf,U=w&&w(w(bt([])));U&&U!==u&&a.call(U,h)&&(T=U);var Y=S.prototype=y.prototype=Object.create(T);R.prototype=S,i(Y,"constructor",{value:S,configurable:!0}),i(S,"constructor",{value:R,configurable:!0}),R.displayName=B(S,A,"GeneratorFunction");function p(d){["next","throw","return"].forEach(function(c){B(d,c,function(f){return this._invoke(c,f)})})}n.isGeneratorFunction=function(d){var c=typeof d=="function"&&d.constructor;return c?c===R||(c.displayName||c.name)==="GeneratorFunction":!1},n.mark=function(d){return Object.setPrototypeOf?Object.setPrototypeOf(d,S):(d.__proto__=S,B(d,A,"GeneratorFunction")),d.prototype=Object.create(Y),d},n.awrap=function(d){return{__await:d}};function le(d,c){function f(I,x,H,z){var W=$(d[I],d,x);if(W.type==="throw")z(W.arg);else{var St=W.arg,Fe=St.value;return Fe&&typeof Fe=="object"&&a.call(Fe,"__await")?c.resolve(Fe.__await).then(function(ae){f("next",ae,H,z)},function(ae){f("throw",ae,H,z)}):c.resolve(Fe).then(function(ae){St.value=ae,H(St)},function(ae){return f("throw",ae,H,z)})}}var F;function v(I,x){function H(){return new c(function(z,W){f(I,x,z,W)})}return F=F?F.then(H,H):H()}i(this,"_invoke",{value:v})}p(le.prototype),B(le.prototype,m,function(){return this}),n.AsyncIterator=le,n.async=function(d,c,f,F,v){v===void 0&&(v=Promise);var I=new le(M(d,c,f,F),v);return n.isGeneratorFunction(c)?I:I.next().then(function(x){return x.done?x.value:I.next()})};function Ne(d,c,f){var F=L;return function(I,x){if(F===b)throw new Error("Generator is already running");if(F===o){if(I==="throw")throw x;return fl()}for(f.method=I,f.arg=x;;){var H=f.delegate;if(H){var z=oe(H,f);if(z){if(z===g)continue;return z}}if(f.method==="next")f.sent=f._sent=f.arg;else if(f.method==="throw"){if(F===L)throw F=o,f.arg;f.dispatchException(f.arg)}else f.method==="return"&&f.abrupt("return",f.arg);F=b;var W=$(d,c,f);if(W.type==="normal"){if(F=f.done?o:C,W.arg===g)continue;return{value:W.arg,done:f.done}}else W.type==="throw"&&(F=o,f.method="throw",f.arg=W.arg)}}}function oe(d,c){var f=c.method,F=d.iterator[f];if(F===r)return c.delegate=null,f==="throw"&&d.iterator.return&&(c.method="return",c.arg=r,oe(d,c),c.method==="throw")||f!=="return"&&(c.method="throw",c.arg=new TypeError("The iterator does not provide a '"+f+"' method")),g;var v=$(F,d.iterator,c.arg);if(v.type==="throw")return c.method="throw",c.arg=v.arg,c.delegate=null,g;var I=v.arg;if(!I)return c.method="throw",c.arg=new TypeError("iterator result is not an object"),c.delegate=null,g;if(I.done)c[d.resultName]=I.value,c.next=d.nextLoc,c.method!=="return"&&(c.method="next",c.arg=r);else return I;return c.delegate=null,g}p(Y),B(Y,A,"Generator"),B(Y,h,function(){return this}),B(Y,"toString",function(){return"[object Generator]"});function te(d){var c={tryLoc:d[0]};1 in d&&(c.catchLoc=d[1]),2 in d&&(c.finallyLoc=d[2],c.afterLoc=d[3]),this.tryEntries.push(c)}function Ft(d){var c=d.completion||{};c.type="normal",delete c.arg,d.completion=c}function Dt(d){this.tryEntries=[{tryLoc:"root"}],d.forEach(te,this),this.reset(!0)}n.keys=function(d){var c=Object(d),f=[];for(var F in c)f.push(F);return f.reverse(),function v(){for(;f.length;){var I=f.pop();if(I in c)return v.value=I,v.done=!1,v}return v.done=!0,v}};function bt(d){if(d||d===""){var c=d[h];if(c)return c.call(d);if(typeof d.next=="function")return d;if(!isNaN(d.length)){var f=-1,F=function v(){for(;++f<d.length;)if(a.call(d,f))return v.value=d[f],v.done=!1,v;return v.value=r,v.done=!0,v};return F.next=F}}throw new TypeError(typeof d+" is not iterable")}n.values=bt;function fl(){return{value:r,done:!0}}return Dt.prototype={constructor:Dt,reset:function(d){if(this.prev=0,this.next=0,this.sent=this._sent=r,this.done=!1,this.delegate=null,this.method="next",this.arg=r,this.tryEntries.forEach(Ft),!d)for(var c in this)c.charAt(0)==="t"&&a.call(this,c)&&!isNaN(+c.slice(1))&&(this[c]=r)},stop:function(){this.done=!0;var d=this.tryEntries[0],c=d.completion;if(c.type==="throw")throw c.arg;return this.rval},dispatchException:function(d){if(this.done)throw d;var c=this;function f(z,W){return I.type="throw",I.arg=d,c.next=z,W&&(c.method="next",c.arg=r),!!W}for(var F=this.tryEntries.length-1;F>=0;--F){var v=this.tryEntries[F],I=v.completion;if(v.tryLoc==="root")return f("end");if(v.tryLoc<=this.prev){var x=a.call(v,"catchLoc"),H=a.call(v,"finallyLoc");if(x&&H){if(this.prev<v.catchLoc)return f(v.catchLoc,!0);if(this.prev<v.finallyLoc)return f(v.finallyLoc)}else if(x){if(this.prev<v.catchLoc)return f(v.catchLoc,!0)}else if(H){if(this.prev<v.finallyLoc)return f(v.finallyLoc)}else throw new Error("try statement without catch or finally")}}},abrupt:function(d,c){for(var f=this.tryEntries.length-1;f>=0;--f){var F=this.tryEntries[f];if(F.tryLoc<=this.prev&&a.call(F,"finallyLoc")&&this.prev<F.finallyLoc){var v=F;break}}v&&(d==="break"||d==="continue")&&v.tryLoc<=c&&c<=v.finallyLoc&&(v=null);var I=v?v.completion:{};return I.type=d,I.arg=c,v?(this.method="next",this.next=v.finallyLoc,g):this.complete(I)},complete:function(d,c){if(d.type==="throw")throw d.arg;return d.type==="break"||d.type==="continue"?this.next=d.arg:d.type==="return"?(this.rval=this.arg=d.arg,this.method="return",this.next="end"):d.type==="normal"&&c&&(this.next=c),g},finish:function(d){for(var c=this.tryEntries.length-1;c>=0;--c){var f=this.tryEntries[c];if(f.finallyLoc===d)return this.complete(f.completion,f.afterLoc),Ft(f),g}},catch:function(d){for(var c=this.tryEntries.length-1;c>=0;--c){var f=this.tryEntries[c];if(f.tryLoc===d){var F=f.completion;if(F.type==="throw"){var v=F.arg;Ft(f)}return v}}throw new Error("illegal catch attempt")},delegateYield:function(d,c,f){return this.delegate={iterator:bt(d),resultName:c,nextLoc:f},this.method==="next"&&(this.arg=r),g}},n}(t.exports);try{regeneratorRuntime=e}catch(n){typeof globalThis=="object"?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}})(Ut);var Tt=Ut.exports;function Je(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function Hr(t){if(Array.isArray(t))return Je(t)}function xt(t,e,n,u,a,i,r){try{var s=t[i](r),h=s.value}catch(m){n(m);return}s.done?e(h):Promise.resolve(h).then(u,a)}function Wr(t){return function(){var e=this,n=arguments;return new Promise(function(u,a){var i=t.apply(e,n);function r(h){xt(i,u,a,r,s,"next",h)}function s(h){xt(i,u,a,r,s,"throw",h)}r(void 0)})}}function kr(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Ht(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function Kr(t,e,n){return e&&Ht(t.prototype,e),n&&Ht(t,n),t}function zr(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Gr(){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 Xe(t){return Hr(t)||zr(t)||Jr(t)||Gr()}function Jr(t,e){if(!!t){if(typeof t=="string")return Je(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Je(t,e)}}var Xr=function(){function t(){kr(this,t),this._events=new Map,this.debug=!1}return Kr(t,[{key:"emit",value:function(n){for(var u=arguments.length,a=new Array(u>1?u-1:0),i=1;i<u;i++)a[i-1]=arguments[i];var r=this;return Wr(Tt.mark(function s(){var h,m,A,B,M,$,L,C,b,o;return Tt.wrap(function(y){for(;;)switch(y.prev=y.next){case 0:if(h=r._events.get(n),m=[],!h){y.next=42;break}A=h.slice(),B=!0,M=!1,$=void 0,y.prev=5,L=A[Symbol.iterator]();case 7:if(B=(C=L.next()).done){y.next=28;break}if(b=C.value,h.includes(b)){y.next=11;break}return y.abrupt("continue",25);case 11:return y.prev=11,r.debug&&qt.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(b.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+b.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"\u3002")].concat(Xe(a))),y.next=15,b.apply(null,Xe(a));case 15:if(o=y.sent,r.debug&&qt.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(b.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+b.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Xe(a),[o])),m.push(o),o!==!1){y.next=20;break}return y.abrupt("break",28);case 20:y.next=25;break;case 22:y.prev=22,y.t0=y.catch(11),Rr(String(y.t0)+":"+String(y.t0.stack));case 25:B=!0,y.next=7;break;case 28:y.next=34;break;case 30:y.prev=30,y.t1=y.catch(5),M=!0,$=y.t1;case 34:y.prev=34,y.prev=35,!B&&L.return!=null&&L.return();case 37:if(y.prev=37,!M){y.next=40;break}throw $;case 40:return y.finish(37);case 41:return y.finish(34);case 42:return y.abrupt("return",m);case 43:case"end":return y.stop()}},s,null,[[5,30,34,42],[11,22],[35,,37,41]])}))()}},{key:"on",value:function(n,u){if(this._events.has(n)){var a;(a=this._events.get(n))===null||a===void 0||a.push(u)}else this._events.set(n,[u])}},{key:"off",value:function(n,u){if(this._events.has(n)){var a=this._events.get(n),i=a==null?void 0:a.indexOf(u);a==null||a.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),t}();function we(t,e){var n;((n=Object.getOwnPropertyDescriptors(t)[e])==null?void 0:n.enumerable)&&Object.defineProperty(t,e,{enumerable:!1})}function Ze(t,e,n){n==="Designer"&&(t.parent=e,we(t,"parent"))}function Wt(t,e,n){t.forEach(u=>{Ze(u,e,n)})}const kt=Symbol("targetKey");function Kt(t){var e;return(e=t[kt])!=null?e:t}function zt(t,e,n){return Wt(t,e,n),new Proxy(t,{get(u,a,...i){return a===kt?u:Reflect.get(u,a,...i)},set(u,a,i,...r){if(Tr(t)&&a==="length"&&i===t.length)return!0;const s=Reflect.set(u,a,i,...r);return Ur(i)&&Ze(i,e,n),s}})}function re(t,e,n,u,a){const i=u!=null?u:t;let r=zt(Kt(n!=null?n:[]),i,a);Object.defineProperty(t,e,{get(){return r},set(s){r=zt(Kt(s),i,a)},enumerable:!0})}const Gt=[],Qe=class{constructor(t){this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=t,this._initControls(t)}static staticGetRules(t,e){const n=Qe.staticControlsRuntimeRules.get(t);let u=[];if(n){const a=new n(e);u=Array.from(a)}return u}registerControlConfig(t,e){return this.controlConfigMap.set(t,e),this}getControlConfig(t){return this.controlConfigMap.get(t)}static register(t,e){const{Designer:n,Runtime:u,Property:a}=t;(!n||!u||!n.__is_control__||!u.__is_control__)&&ze(`${t} is can't register as a Control`);const i=this.staticControls.findIndex(r=>r.Designer.controlType===n.controlType);return i>-1&&(ke(`The ${n.controlType} is repeat register, So it overwrites the one that was registered before.`),this.staticControls.splice(i,1)),this.staticRegisteredTypes.add(n.controlType),this.staticControls.push(t),a.mode=e,this}getControls(){return this._controls}register(t){t.__is_control__||ze(`${t.name} is not a Control`);const e=this._controls.findIndex(n=>n.controlType===t.controlType);return e>-1&&(ke(`The ${t.controlType} is repeat register, So it overwrites the one that was registered before.`),this._controls.splice(e,1)),this.registeredControlTypes.add(t.controlType),this._controls.push(t),this}isLayoutControl(t){return t.controlType===ie.LAYOUT}isFormControl(t){return t.controlType===ie.FORM}isListControl(t){return t.controlType===ie.LIST}isColumnControl(t){return t.controlType===ie.COLUMN}createControl(t,e){if(Array.isArray(t))return t.map(u=>this.createControl(u,e));if(t.children&&(t.children=t.children.map(u=>this.createControl(u,e))),this.isListControl(t)){const u=t.props;u.headers&&(u.headers=u.headers.map(a=>this.createControl(a,e))),u.footers&&(u.footers=u.footers.map(a=>{let i;return a&&(i=this.createControl(a,e)),i}))}const n=this.getControlFormType(t.type);if(n){let u=t;if(typeof e=="function"){const i=e(u);i&&(u=i)}let a;return n.mode==="Runtime"?(a=u,this._setParentPrototypeToSchema(a,this)):a=new n(u),a}else ze(`The constructor of ${t.type} could not be found, please confirm that the constructor has been registered`)}resetInstanceParent(t,e){delete t.parent,Object.defineProperty(t,"parent",{configurable:!0,get(){return e}}),we(t,"parent")}_setParentPrototypeToSchema(t,e){e._type==="Runtime"&&(Object.defineProperty(t,"parent",{configurable:!0,get(){const n=t.id,u=e._controlParentIdMap,a=e.instanceMap;if(!u||!a)return;const i=u[n],r=a[n];if(!i&&!r)return;const s=r.findIndex(A=>A==t),h=a[i]||[];let m;return h.length!==r.length?m=h[0]:m=h[s],m}}),we(t,"parent"))}createControlInstance(t,e){const n=this.getControlFormType(t);if(n)return new n(e)}getControlFormType(t){return this._controls.find(e=>e.controlType===t)}_initControls(t){this.constructor.staticControls.forEach(e=>{this.register(e[t]),Qe.staticControlsRuntimeRules.set(e.Runtime.controlType,e.Property.RuntimeRules),e.Property.mode=t})}};let ge=Qe;ge.staticControlsRuntimeRules=new Map,ge.staticControls=Gt,ge.staticRegisteredTypes=new Set(Gt.map(t=>t.Designer.controlType)),ge.staticRegisteredConfigs=new Map;class G{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.aliasCode=e==null?void 0:e.aliasCode}}class Ye{constructor(e){var n,u;this.minWidth=(n=e==null?void 0:e.minWidth)!=null?n:150,this.maxWidth=e==null?void 0:e.maxWidth,this.flex=(u=e==null?void 0:e.flex)!=null?u:1}}class Ie extends Ye{constructor(e){super(e);var n,u;this.width=(n=e==null?void 0:e.width)!=null?n:240,this.widthType=(u=e==null?void 0:e.widthType)!=null?u:"auto"}}class Zr{constructor(e){this.pc=new Ie(e==null?void 0:e.pc),this.mobile=(e==null?void 0:e.mobile)?new Ie(e==null?void 0:e.mobile):new Ie({width:130,minWidth:180})}}class Qr{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"firstThree",this.customOptions=(u=e==null?void 0:e.customOptions)!=null?u:[]}}class Re{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.appId=(a=e==null?void 0:e.appId)!=null?a:""}}class Yr extends Re{constructor(e){super(e);var n;this.primaryControlId=(n=e==null?void 0:e.primaryControlId)!=null?n:""}}class Jt{constructor(e){var n;this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:""}}class pr{constructor(e){var n,u,a,i;this.appId=(n=e==null?void 0:e.appId)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Jt(r)))!=null?i:[]}}class Xt{constructor(e){var n,u,a;this.fieldName=(n=e==null?void 0:e.fieldName)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:q.VARCHAR}}class Zt extends Re{constructor(e){super(e);var n,u,a,i;this.title=(n=e==null?void 0:e.title)!=null?n:"",this.svcCode=(u=e==null?void 0:e.svcCode)!=null?u:"",this.isOpenFilter=(a=e==null?void 0:e.isOpenFilter)!=null?a:!1,this.filters=(i=e==null?void 0:e.filters)!=null?i:[]}}class es{constructor(e){var n,u,a,i;this.type="sublist-page",this.formBind=new Re(e==null?void 0:e.formBind),this.displayFields=(u=(n=e==null?void 0:e.displayFields)==null?void 0:n.map(r=>new Xt(r)))!=null?u:[],this.sublists=(i=(a=e==null?void 0:e.sublists)==null?void 0:a.map(r=>new Zt(r)))!=null?i:[]}}class Qt{constructor(e){this.type=e==null?void 0:e.type,this.value=e==null?void 0:e.value}}class pe{constructor(e){var n,u,a;this.type=(n=e==null?void 0:e.type)!=null?n:"custom",this.value=(u=e==null?void 0:e.value)!=null?u:[],this.displayBos=(a=e==null?void 0:e.displayBos)!=null?a:[]}}class ye{constructor(e){var n,u,a,i;this.type="conditions",this.id=(n=e==null?void 0:e.id)!=null?n:ne(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.level=(a=e==null?void 0:e.level)!=null?a:0,this.value=(i=e==null?void 0:e.value)!=null?i:"and",this.children=[],Array.isArray(e==null?void 0:e.children)&&(e==null||e.children.map(r=>{var s,h;if(r.children!==void 0){const m=new ye(r);(s=this.children)==null||s.push(m)}else{const m=new Me(r);(h=this.children)==null||h.push(m)}}))}}class Me{constructor(e){var n,u,a,i,r;this.type="condition",this.id=(n=e==null?void 0:e.id)!=null?n:ne(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.symbol=(a=e==null?void 0:e.symbol)!=null?a:"",this.checked=(i=e==null?void 0:e.checked)!=null?i:!1,this.describe=(r=e==null?void 0:e.describe)!=null?r:"",this.leftVariableBo=new Qt(e==null?void 0:e.leftVariableBo),this.rightVariableBo=new pe(e==null?void 0:e.rightVariableBo)}}class ts{constructor(e){var n,u;this.aliasCode=(n=e==null?void 0:e.aliasCode)!=null?n:"",this.datasourceBind=new Le(e==null?void 0:e.datasourceBind),this.relationFields=(u=e==null?void 0:e.relationFields)!=null?u:[]}}class Yt{constructor(e){var n,u,a,i;this.controlId=(n=e==null?void 0:e.controlId)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.propName=(i=e==null?void 0:e.propName)!=null?i:""}}class et{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"FIELD",this.value=(u=e==null?void 0:e.value)!=null?u:"",this.fieldType=e==null?void 0:e.fieldType}}class tt{constructor(e){var n,u;this.columnName=(n=e.columnName)!=null?n:"",this.desc=(u=e.desc)!=null?u:!1}}class pt{constructor(e){var n,u,a;this.code=(n=e.code)!=null?n:"",this.value=(u=e.value)!=null?u:"",this.field_type=(a=e.field_type)!=null?a:q.ANY}}class ns{constructor(e){var n,u,a,i,r,s,h;this.id=(n=e.id)!=null?n:"",this.limit=(u=e.limit)!=null?u:20,this.formKey=(a=e.formKey)!=null?a:"",this.orders=(r=(i=e.orders)==null?void 0:i.map(m=>new tt(m)))!=null?r:[],this.dataSet=(h=(s=e.dataSet)==null?void 0:s.map(m=>new pt(m)))!=null?h:[]}}function nt(t){var e,n,u,a,i,r;this.filters=(n=(e=t==null?void 0:t.filters)==null?void 0:e.map(s=>s.children!==void 0?new ye(s):new Me(s)))!=null?n:[],this.viewFilters=(a=(u=t==null?void 0:t.viewFilters)==null?void 0:u.map(s=>s.children!==void 0?new ye(s):new Me(s)))!=null?a:[],this.orders=(r=(i=t==null?void 0:t.orders)==null?void 0:i.map(s=>new tt(s)))!=null?r:[]}class Le{constructor(e){var n,u,a,i,r,s,h;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.valueFieldCode=(a=e==null?void 0:e.valueFieldCode)!=null?a:"",this.displayBoList=[],this.isOpenViewFilters=(i=e==null?void 0:e.isOpenViewFilters)!=null?i:0,Array.isArray(e==null?void 0:e.displayBoList)&&(e==null||e.displayBoList.map(m=>{var A;(A=this.displayBoList)==null||A.push(new et(m))})),this.keywordMapping=(r=e==null?void 0:e.keywordMapping)!=null?r:"",this.showOrder=(s=e==null?void 0:e.showOrder)!=null?s:!0,this.svcCode=(h=e==null?void 0:e.svcCode)!=null?h:"",nt.call(this,e)}}class us{constructor(e){var n,u;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.displayBoList=(u=e==null?void 0:e.displayBoList)!=null?u:[]}}class as{constructor(e){var n,u,a,i,r,s,h,m,A,B;this.code=(n=e==null?void 0:e.code)!=null?n:"view",this.color=(u=e==null?void 0:e.color)!=null?u:"primary",this.command=(a=e==null?void 0:e.command)!=null?a:"view",this.confirmMessage=(i=e==null?void 0:e.confirmMessage)!=null?i:void 0,this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.formKey=(s=e==null?void 0:e.formKey)!=null?s:void 0,this.formType=e==null?void 0:e.formType,this.icon=(h=e==null?void 0:e.icon)!=null?h:"iconliulan1",this.needConfirm=(m=e==null?void 0:e.needConfirm)!=null?m:!1,this.openType=(A=e==null?void 0:e.openType)!=null?A:"modal",this.priorityProcess=(B=e==null?void 0:e.priorityProcess)!=null?B:!0}}class ut{constructor(e){var n,u,a,i;this.name=(n=e==null?void 0:e.name)!=null?n:"",this.key=(u=e==null?void 0:e.key)!=null?u:"",this.value=(i=(a=e==null?void 0:e.value)==null?void 0:a.map(r=>new et(r)))!=null?i:[]}}class en extends Le{constructor(e){super(e);var n,u;this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(a=>new ut(a)))!=null?u:[]}}class is extends Le{constructor(e){super(e);var n,u,a;this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(i=>new ut(i)))!=null?u:[],this.formCode=(a=e==null?void 0:e.formCode)!=null?a:""}}class rs extends en{constructor(e){super(e);var n;this.rootNode=new pe(e==null?void 0:e.rootNode),this.filterCode=(n=e==null?void 0:e.filterCode)!=null?n:""}}class tn{constructor(e){var n,u,a,i;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.fillList=(i=(a=e==null?void 0:e.fillList)==null?void 0:a.map(r=>new Yt(r)))!=null?i:[]}}class ss extends tn{constructor(e){super(e);nt.call(this,e)}}class ls extends tn{constructor(e){super(e);var n,u;this.mode=(n=e==null?void 0:e.mode)!=null?n:"current",this.multiple=(u=e==null?void 0:e.multiple)!=null?u:!1}}class os{constructor(e){var n,u,a;this.zh=(n=e==null?void 0:e.zh)!=null?n:"",this.en=(u=e==null?void 0:e.en)!=null?u:"",this.ja=(a=e==null?void 0:e.ja)!=null?a:""}}class cs{constructor(e){var n,u,a;this.stencilName=(n=e==null?void 0:e.stencilName)!=null?n:"",this.expression=(u=e==null?void 0:e.expression)!=null?u:"",this.errMessage=(a=e==null?void 0:e.errMessage)!=null?a:""}}class at{constructor(e){var n,u,a;this.id=(n=e==null?void 0:e.id)!=null?n:ne(8),this.label=(u=e==null?void 0:e.label)!=null?u:"",this.value=(a=e==null?void 0:e.value)!=null?a:this.label}}class nn extends at{constructor(e){super(e);var n,u;this.image=(n=e==null?void 0:e.image)!=null?n:"",this.type=(u=e==null?void 0:e.type)!=null?u:"src"}}function ds(t){var e;return(e=t==null?void 0:t.map(n=>new at(n)))!=null?e:[]}function fs(t){var e;return(e=t==null?void 0:t.map(n=>new nn(n)))!=null?e:[]}class $e{}class hs extends $e{constructor(e){super();this.amount=new G(e==null?void 0:e.amount),this.currency=new G(e==null?void 0:e.currency)}}class ms{constructor(e){var n,u;this.amount=(n=e==null?void 0:e.amount)!=null?n:"",this.currency=(u=e==null?void 0:e.currency)!=null?u:it.CNY}}class gs extends $e{constructor(e){super();this.min=new G(e==null?void 0:e.min),this.max=new G(e==null?void 0:e.max)}}class ys{constructor(e){var n,u;this.min=(n=e==null?void 0:e.min)!=null?n:"",this.max=(u=e==null?void 0:e.max)!=null?u:""}}class vs{constructor(e){var n,u,a,i,r,s;this.city=(n=e==null?void 0:e.city)!=null?n:"",this.cityDisplay=(u=e==null?void 0:e.cityDisplay)!=null?u:"",this.district=(a=e==null?void 0:e.district)!=null?a:"",this.districtDisplay=(i=e==null?void 0:e.districtDisplay)!=null?i:"",this.province=(r=e==null?void 0:e.province)!=null?r:"",this.provinceDisplay=(s=e==null?void 0:e.provinceDisplay)!=null?s:""}}class Es extends $e{constructor(e){super();this.result=new G(e==null?void 0:e.result),this.unit=new G(e==null?void 0:e.unit)}}class Cs{constructor(e){var n,u;this.result=(n=e==null?void 0:e.result)!=null?n:0,this.unit=(u=e==null?void 0:e.unit)!=null?u:""}}var it=(t=>(t.CNY="CNY",t.USD="USD",t.JPY="JPY",t.EUR="EUR",t.INR="INR",t.IDR="IDR",t.BRL="BRL",t.AED="AED",t.AUD="AUD",t.CAD="CAD",t.EGP="EGP",t.GBP="GBP",t.ZAR="ZAR",t.KRW="KRW",t.MAD="MAD",t.MXN="MXN",t.MYR="MYR",t.PHP="PHP",t.PLN="PLN",t.RUB="RUB",t.SGD="SGD",t.THB="THB",t.TRY="TRY",t.TWD="TWD",t.VND="VND",t.HKD="HKD",t.IEP="IEP",t))(it||{}),un=(t=>(t.DEFAULT_DISPLAY="defaultDisplay",t.REQUIRED="required",t.IS_HIDE="isHide",t.IS_SHOW_UNIT="isShowUnit",t.IMD_SEARCH="immediatelySearch",t.MULTIPLE="multiple",t.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",t.CAPTION="caption",t.IS_HIDE_CAPTION="isHideCaption",t.DEFAULT_SHOW_OPTIONS="defaultShowOptions",t.CAN_SEARCH="canSearch",t.CAN_CHECK="canCheck",t.CAN_EDIT="canEdit",t.CAN_DELETE="canDelete",t.SHOW_UPPER_CASE="showUpperCase",t.MICROMETER="micrometer",t.PRECISION="precision",t.PERCENTAGE="percentage",t.OPTIONAL_LEVEL="optionalLevel",t.CONTAINS_SUB_NODE="containsSubNode",t.DEFAULT_COLLAPSE="defaultCollapse",t.CAN_VIEW_FORM="canViewForm",t.VIEW_FORM_MODEL_TYPE="viewFormModelType",t.SERVER_PAGINATION="serverPagination",t.IS_SHOW_CAPTION_TIP="isShowCaptionTip",t.ENCRYPTED="encrypted",t.IS_INLINE_EDIT="isInlineEdit",t.REVISIONS_MODE="revisionsMode",t.ALLOW_COPY_OPTIONS="allowCopyOptions",t.IS_PASTE="isPaste",t))(un||{}),rt=(t=>(t[t.UNKNOWN=0]="UNKNOWN",t[t.READONLY=1]="READONLY",t[t.EDITABLE=2]="EDITABLE",t[t.PRINT=5]="PRINT",t))(rt||{});class Bs{constructor(e){var n,u,a,i,r,s;this.isShow=(n=e==null?void 0:e.isShow)!=null?n:!0,this.content=(u=e==null?void 0:e.content)!=null?u:"",this.formKey=(a=e==null?void 0:e.formKey)!=null?a:"",this.openType=(i=e==null?void 0:e.openType)!=null?i:"modal",this.type=(r=e==null?void 0:e.type)!=null?r:"",this.priorityProcess=(s=e==null?void 0:e.priorityProcess)!=null?s:!1}}class As{constructor(e){var n,u,a,i;this.id=(n=e==null?void 0:e.id)!=null?n:ne(8),this.title=(u=e==null?void 0:e.title)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Jt(r)))!=null?i:[],nt.call(this,e)}}class Fs{constructor(e){var n,u;this.key=(n=e.key)!=null?n:ne(8),this.caption=(u=e.caption)!=null?u:""}}class an{constructor(e){var n,u,a,i;this.width=(n=e==null?void 0:e.width)!=null?n:"",this.height=(u=e==null?void 0:e.height)!=null?u:"",this.widthConfig=(a=e==null?void 0:e.widthConfig)!=null?a:"fill",this.heightConfig=(i=e==null?void 0:e.heightConfig)!=null?i:"fill"}}class Ds{constructor(e){var n,u;this.optCode=(n=e==null?void 0:e.optCode)!=null?n:"",this.optType=(u=e==null?void 0:e.optType)!=null?u:""}}class Pe{constructor(e){this.isHide={type:"boolean"}}}class st extends Array{constructor(e){super()}}class Z{constructor(e,n=""){var u,a;this.isHide=(u=e==null?void 0:e.isHide)!=null?u:!1,this.style=new an(e==null?void 0:e.style),this.caption=(a=e==null?void 0:e.caption)!=null?a:n}}Z.Rules=Pe,Z.RuntimeRules=st;function J(){return J=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var u in n)Object.prototype.hasOwnProperty.call(n,u)&&(t[u]=n[u])}return t},J.apply(this,arguments)}function bs(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function lt(t){return lt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},lt(t)}function Oe(t,e){return Oe=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},Oe(t,e)}function Ss(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function qe(t,e,n){return Ss()?qe=Reflect.construct:qe=function(a,i,r){var s=[null];s.push.apply(s,i);var h=Function.bind.apply(a,s),m=new h;return r&&Oe(m,r.prototype),m},qe.apply(null,arguments)}function ws(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function ot(t){var e=typeof Map=="function"?new Map:void 0;return ot=function(u){if(u===null||!ws(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return qe(u,arguments,lt(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Oe(a,u)},ot(t)}var Is=/%[sdj%]/g,rn=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(rn=function(e,n){typeof console!="undefined"&&console.warn&&n.every(function(u){return typeof u=="string"})&&console.warn(e,n)});function ct(t){if(!t||!t.length)return null;var e={};return t.forEach(function(n){var u=n.field;e[u]=e[u]||[],e[u].push(n)}),e}function K(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u=1,a=e[0],i=e.length;if(typeof a=="function")return a.apply(null,e.slice(1));if(typeof a=="string"){var r=String(a).replace(Is,function(s){if(s==="%%")return"%";if(u>=i)return s;switch(s){case"%s":return String(e[u++]);case"%d":return Number(e[u++]);case"%j":try{return JSON.stringify(e[u++])}catch(h){return"[Circular]"}break;default:return s}});return r}return a}function Rs(t){return t==="string"||t==="url"||t==="hex"||t==="email"||t==="date"||t==="pattern"}function O(t,e){return!!(t==null||e==="array"&&Array.isArray(t)&&!t.length||Rs(e)&&typeof t=="string"&&!t)}function Ms(t,e,n){var u=[],a=0,i=t.length;function r(s){u.push.apply(u,s),a++,a===i&&n(u)}t.forEach(function(s){e(s,r)})}function sn(t,e,n){var u=0,a=t.length;function i(r){if(r&&r.length){n(r);return}var s=u;u=u+1,s<a?e(t[s],i):n([])}i([])}function Ls(t){var e=[];return Object.keys(t).forEach(function(n){e.push.apply(e,t[n])}),e}var ln=function(t){bs(e,t);function e(n,u){var a;return a=t.call(this,"Async Validation Error")||this,a.errors=n,a.fields=u,a}return e}(ot(Error));function $s(t,e,n,u){if(e.first){var a=new Promise(function(B,M){var $=function(b){return u(b),b.length?M(new ln(b,ct(b))):B()},L=Ls(t);sn(L,n,$)});return a.catch(function(B){return B}),a}var i=e.firstFields||[];i===!0&&(i=Object.keys(t));var r=Object.keys(t),s=r.length,h=0,m=[],A=new Promise(function(B,M){var $=function(C){if(m.push.apply(m,C),h++,h===s)return u(m),m.length?M(new ln(m,ct(m))):B()};r.length||(u(m),B()),r.forEach(function(L){var C=t[L];i.indexOf(L)!==-1?sn(C,n,$):Ms(C,n,$)})});return A.catch(function(B){return B}),A}function on(t){return function(e){return e&&e.message?(e.field=e.field||t.fullField,e):{message:typeof e=="function"?e():e,field:e.field||t.fullField}}}function cn(t,e){if(e){for(var n in e)if(e.hasOwnProperty(n)){var u=e[n];typeof u=="object"&&typeof t[n]=="object"?t[n]=J(J({},t[n]),u):t[n]=u}}return t}function dn(t,e,n,u,a,i){t.required&&(!n.hasOwnProperty(t.field)||O(e,i||t.type))&&u.push(K(a.messages.required,t.fullField))}function Ps(t,e,n,u,a){(/^\s+$/.test(e)||e==="")&&u.push(K(a.messages.whitespace,t.fullField))}var dt={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},ve={integer:function(e){return ve.number(e)&&parseInt(e,10)===e},float:function(e){return ve.number(e)&&!ve.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(n){return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!ve.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&!!e.match(dt.email)&&e.length<255},url:function(e){return typeof e=="string"&&!!e.match(dt.url)},hex:function(e){return typeof e=="string"&&!!e.match(dt.hex)}};function Os(t,e,n,u,a){if(t.required&&e===void 0){dn(t,e,n,u,a);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],r=t.type;i.indexOf(r)>-1?ve[r](e)||u.push(K(a.messages.types[r],t.fullField,t.type)):r&&typeof e!==t.type&&u.push(K(a.messages.types[r],t.fullField,t.type))}function qs(t,e,n,u,a){var i=typeof t.len=="number",r=typeof t.min=="number",s=typeof t.max=="number",h=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,m=e,A=null,B=typeof e=="number",M=typeof e=="string",$=Array.isArray(e);if(B?A="number":M?A="string":$&&(A="array"),!A)return!1;$&&(m=e.length),M&&(m=e.replace(h,"_").length),i?m!==t.len&&u.push(K(a.messages[A].len,t.fullField,t.len)):r&&!s&&m<t.min?u.push(K(a.messages[A].min,t.fullField,t.min)):s&&!r&&m>t.max?u.push(K(a.messages[A].max,t.fullField,t.max)):r&&s&&(m<t.min||m>t.max)&&u.push(K(a.messages[A].range,t.fullField,t.min,t.max))}var se="enum";function Vs(t,e,n,u,a){t[se]=Array.isArray(t[se])?t[se]:[],t[se].indexOf(e)===-1&&u.push(K(a.messages[se],t.fullField,t[se].join(", ")))}function Ns(t,e,n,u,a){if(t.pattern){if(t.pattern instanceof RegExp)t.pattern.lastIndex=0,t.pattern.test(e)||u.push(K(a.messages.pattern.mismatch,t.fullField,e,t.pattern));else if(typeof t.pattern=="string"){var i=new RegExp(t.pattern);i.test(e)||u.push(K(a.messages.pattern.mismatch,t.fullField,e,t.pattern))}}}var D={required:dn,whitespace:Ps,type:Os,range:qs,enum:Vs,pattern:Ns};function _s(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e,"string")&&!t.required)return n();D.required(t,e,u,i,a,"string"),O(e,"string")||(D.type(t,e,u,i,a),D.range(t,e,u,i,a),D.pattern(t,e,u,i,a),t.whitespace===!0&&D.whitespace(t,e,u,i,a))}n(i)}function js(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e)&&!t.required)return n();D.required(t,e,u,i,a),e!==void 0&&D.type(t,e,u,i,a)}n(i)}function Us(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e===""&&(e=void 0),O(e)&&!t.required)return n();D.required(t,e,u,i,a),e!==void 0&&(D.type(t,e,u,i,a),D.range(t,e,u,i,a))}n(i)}function Ts(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e)&&!t.required)return n();D.required(t,e,u,i,a),e!==void 0&&D.type(t,e,u,i,a)}n(i)}function xs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e)&&!t.required)return n();D.required(t,e,u,i,a),O(e)||D.type(t,e,u,i,a)}n(i)}function Hs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e)&&!t.required)return n();D.required(t,e,u,i,a),e!==void 0&&(D.type(t,e,u,i,a),D.range(t,e,u,i,a))}n(i)}function Ws(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e)&&!t.required)return n();D.required(t,e,u,i,a),e!==void 0&&(D.type(t,e,u,i,a),D.range(t,e,u,i,a))}n(i)}function ks(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e==null&&!t.required)return n();D.required(t,e,u,i,a,"array"),e!=null&&(D.type(t,e,u,i,a),D.range(t,e,u,i,a))}n(i)}function Ks(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e)&&!t.required)return n();D.required(t,e,u,i,a),e!==void 0&&D.type(t,e,u,i,a)}n(i)}var zs="enum";function Gs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e)&&!t.required)return n();D.required(t,e,u,i,a),e!==void 0&&D[zs](t,e,u,i,a)}n(i)}function Js(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e,"string")&&!t.required)return n();D.required(t,e,u,i,a),O(e,"string")||D.pattern(t,e,u,i,a)}n(i)}function Xs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e,"date")&&!t.required)return n();if(D.required(t,e,u,i,a),!O(e,"date")){var s;e instanceof Date?s=e:s=new Date(e),D.type(t,s,u,i,a),s&&D.range(t,s.getTime(),u,i,a)}}n(i)}function Zs(t,e,n,u,a){var i=[],r=Array.isArray(e)?"array":typeof e;D.required(t,e,u,i,a,r),n(i)}function ft(t,e,n,u,a){var i=t.type,r=[],s=t.required||!t.required&&u.hasOwnProperty(t.field);if(s){if(O(e,i)&&!t.required)return n();D.required(t,e,u,r,a,i),O(e,i)||D.type(t,e,u,r,a)}n(r)}function Qs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(O(e)&&!t.required)return n();D.required(t,e,u,i,a)}n(i)}var Ee={string:_s,method:js,number:Us,boolean:Ts,regexp:xs,integer:Hs,float:Ws,array:ks,object:Ks,enum:Gs,pattern:Js,date:Xs,url:ft,hex:ft,email:ft,required:Zs,any:Qs};function ht(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var mt=ht();function ee(t){this.rules=null,this._messages=mt,this.define(t)}ee.prototype={messages:function(e){return e&&(this._messages=cn(ht(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if(typeof e!="object"||Array.isArray(e))throw new Error("Rules must be an object");this.rules={};var n,u;for(n in e)e.hasOwnProperty(n)&&(u=e[n],this.rules[n]=Array.isArray(u)?u:[u])},validate:function(e,n,u){var a=this;n===void 0&&(n={}),u===void 0&&(u=function(){});var i=e,r=n,s=u;if(typeof r=="function"&&(s=r,r={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function h(C){var b,o=[],g={};function y(R){if(Array.isArray(R)){var S;o=(S=o).concat.apply(S,R)}else o.push(R)}for(b=0;b<C.length;b++)y(C[b]);o.length?g=ct(o):(o=null,g=null),s(o,g)}if(r.messages){var m=this.messages();m===mt&&(m=ht()),cn(m,r.messages),r.messages=m}else r.messages=this.messages();var A,B,M={},$=r.keys||Object.keys(this.rules);$.forEach(function(C){A=a.rules[C],B=i[C],A.forEach(function(b){var o=b;typeof o.transform=="function"&&(i===e&&(i=J({},i)),B=i[C]=o.transform(B)),typeof o=="function"?o={validator:o}:o=J({},o),o.validator=a.getValidationMethod(o),o.field=C,o.fullField=o.fullField||C,o.type=a.getType(o),!!o.validator&&(M[C]=M[C]||[],M[C].push({rule:o,value:B,source:i,field:C}))})});var L={};return $s(M,r,function(C,b){var o=C.rule,g=(o.type==="object"||o.type==="array")&&(typeof o.fields=="object"||typeof o.defaultField=="object");g=g&&(o.required||!o.required&&C.value),o.field=C.field;function y(T,w){return J(J({},w),{},{fullField:o.fullField+"."+T})}function R(T){T===void 0&&(T=[]);var w=T;if(Array.isArray(w)||(w=[w]),!r.suppressWarning&&w.length&&ee.warning("async-validator:",w),w.length&&o.message!==void 0&&(w=[].concat(o.message)),w=w.map(on(o)),r.first&&w.length)return L[o.field]=1,b(w);if(!g)b(w);else{if(o.required&&!C.value)return o.message!==void 0?w=[].concat(o.message).map(on(o)):r.error&&(w=[r.error(o,K(r.messages.required,o.field))]),b(w);var U={};if(o.defaultField)for(var Y in C.value)C.value.hasOwnProperty(Y)&&(U[Y]=o.defaultField);U=J(J({},U),C.rule.fields);for(var p in U)if(U.hasOwnProperty(p)){var le=Array.isArray(U[p])?U[p]:[U[p]];U[p]=le.map(y.bind(null,p))}var Ne=new ee(U);Ne.messages(r.messages),C.rule.options&&(C.rule.options.messages=r.messages,C.rule.options.error=r.error),Ne.validate(C.value,C.rule.options||r,function(oe){var te=[];w&&w.length&&te.push.apply(te,w),oe&&oe.length&&te.push.apply(te,oe),b(te.length?te:null)})}}var S;o.asyncValidator?S=o.asyncValidator(o,C.value,R,C.source,r):o.validator&&(S=o.validator(o,C.value,R,C.source,r),S===!0?R():S===!1?R(o.message||o.field+" fails"):S instanceof Array?R(S):S instanceof Error&&R(S.message)),S&&S.then&&S.then(function(){return R()},function(T){return R(T)})},function(C){h(C)})},getType:function(e){if(e.type===void 0&&e.pattern instanceof RegExp&&(e.type="pattern"),typeof e.validator!="function"&&e.type&&!Ee.hasOwnProperty(e.type))throw new Error(K("Unknown rule type %s",e.type));return e.type||"string"},getValidationMethod:function(e){if(typeof e.validator=="function")return e.validator;var n=Object.keys(e),u=n.indexOf("message");return u!==-1&&n.splice(u,1),n.length===1&&n[0]==="required"?Ee.required:Ee[this.getType(e)]||!1}},ee.register=function(e,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Ee[e]=n},ee.warning=rn,ee.messages=mt,ee.validators=Ee;const Ys={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 fn(t,e={}){const n=new ee(t);return n.messages(Object.assign(Ys,e)),n}const hn=new Xr;class j{constructor(e){var A,B,M,$;this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=gn,this.removeSetting=mn,this._callControlHooks("preInstance",e);const{controlName:n,controlIcon:u,controlType:a,controlFieldType:i,controlEventKeys:r,controlCustomEvents:s,name:h,setting:m}=new.target;n&&u&&a||Vt(`The ${h} controlName,controlIcon,controlType is not define`),this.id=(A=e==null?void 0:e.id)!=null?A:ne(10),this.name=n,this.icon=u,this.type=(B=e==null?void 0:e.type)!=null?B:a,this.props=new Z(e==null?void 0:e.props,new.target.controlName),this.controlType=(M=e==null?void 0:e.controlType)!=null?M:"base",this.setting=ue(m),this.fieldType=($=e==null?void 0:e.fieldType)!=null?$:i,this.eventKeys=ue(r),this.customEvents=ue(s),Promise.resolve().then(()=>{this._callControlHooks("postInstance",e)})}get rules(){const e=this.props.constructor.Rules;return e?new e(this.props):{}}_callControlHooks(...e){const[n,...u]=e;return hn.emit(n,this,...u)}preUpdate(e,n){this._callControlHooks("preUpdateProps",e,n)}postUpdate(e,n){this._callControlHooks("postUpdateProps",e,n)}updateProps(e,n){this.preUpdate(e,n),Vr(this.props,e,n),this.postUpdate(e,n)}preValidate(){return De(this,null,function*(){const e=ce({},this.rules),n=yield this._callControlHooks("preValidate",e),u=n[n.length-1];return u===!1?void 0:u})}validate(e,n){return De(this,null,function*(){const u=yield this.preValidate(),a=u!==void 0?u:ce({},this.rules);Array.isArray(n)&&n.forEach(r=>{a.hasOwnProperty(r)&&delete a[r]});const i=fn(a,e);try{return yield i.validate(this.props),!0}catch(r){throw r.control||(r.control=this),r}})}toDataBindModel(e=null){const n=this.fieldType,u=this.id,a=this.type,{dataBind:i,datasourceBind:r,optionConfig:s,caption:h,required:m,maxLength:A,options:B,encrypted:M,encryptedMode:$}=this.props;if(!n&&!i&&!r)return;const L={parentId:e,fieldType:n,controlId:u,caption:h,type:a,props:{}};switch(i&&(L.dataBind=i),s){case"datasource":case void 0:r&&(L.datasourceBind=r);break;case"custom":L.props.options=B;break}return m!==void 0&&(L.required=m),A!==void 0&&(L.maxLength=A),M!==void 0&&(L.encrypted=M),$!==void 0&&(L.encryptedMode=$),L}preToSchema(){this._callControlHooks("preToSchema",this)}toSchema(){return this.preToSchema(),{id:this.id,type:this.type,props:ue(this.props),fieldType:this.fieldType,controlType:this.controlType}}static updateBasicControl(e,n){e==="setting"&&(n.add&&this.setting.push(...n.add),n.remove&&this.removeSettingItem(n.remove),n.update)}}j.mode="Designer",j.controlName="\u63A7\u4EF6",j.controlIcon="icon",j.controlType="control",j.controlEventKeys=[],j.controlCustomEvents=[],j.setting=[],j.__is_control__=!0,j.removeSettingItem=mn,j.updateSettingItem=gn;function mn(t){(Array.isArray(t)?t:[t]).forEach(n=>{var i,r,s;const u=typeof n!="string",a=(i=this.setting)==null?void 0:i.findIndex(h=>h.key===(u?n.key:n));a!==-1&&(u?this.setting[a].showItems=(r=this.setting[a].showItems)==null?void 0:r.filter(h=>!n.hideItems.includes(h)):this.setting.splice(a,1),u&&!((s=this.setting[a].showItems)==null?void 0:s.length)&&this.setting.splice(a,1))})}function gn(t,e){(typeof t=="string"?[t]:t).forEach(u=>{var i;const a=this.setting.find(r=>r.key===u);a&&(typeof e=="boolean"?a.visible=e:typeof e=="object"&&(((i=e.type)!=null?i:"replace")==="replace"?a.showItems=e.showItems:a.showItems.push(...e.showItems)))})}class Q{constructor(e){var r,s,h,m,A;this.customEvents=[],this.parent=null;const{controlType:n,controlFieldType:u,name:a,controlCustomEvents:i}=new.target;n||Vt(`The ${a} controlType is not define`),this.id=(r=e==null?void 0:e.id)!=null?r:ne(10),this.type=(s=e==null?void 0:e.type)!=null?s:n,this.props=new Z(e==null?void 0:e.props),this.customEvents=i,this.controlType=(h=e==null?void 0:e.controlType)!=null?h:"base",this.fieldType=(m=e==null?void 0:e.fieldType)!=null?m:u,this.pageStatus=(A=e==null?void 0:e.pageStatus)!=null?A:rt.UNKNOWN}get rules(){const e=this.props.constructor.RuntimeRules;if(e){const n=new e(this.props);return Array.from(n)}return[]}}Q.mode="Runtime",Q.controlType="control",Q.__is_control__=!0,Q.controlCustomEvents=[];function gt(t){t.hasOwnProperty("optionConfig")||(this.optionConfig={type:"any"}),t.hasOwnProperty("options")||(this.options={type:"any"}),t.hasOwnProperty("datasourceBind")||(this.datasourceBind={type:"any"}),t.hasOwnProperty("options")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="custom")?this.options=[{type:"array",message:E.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{label:{type:"string",required:!0,message:E.getMessage("pleaseEnterLabel")},value:{type:"string",required:!0,message:E.getMessage("pleaseEnterValue")}}}},{type:"array",validator(e,n,u){n.length===0&&u(E.getMessage("optionIsRequired")),u()}},{type:"array",validator(e,n,u){const a=n.map(r=>r.value),i=xr(a);a.length!==i.length?u(E.getMessage("optionIdIsRepeat")):u()},message:E.getMessage("optionIdIsRepeat")}]:t.hasOwnProperty("datasourceBind")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="datasource")&&(this.datasourceBind=[{type:"object",message:E.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:E.getMessage("pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:E.getMessage("pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:E.getMessage("pleaseEnterSvcCode")},displayBoList:[{type:"array",message:E.getMessage("isNotArray")},{type:"array",validator(e,n,u){n.length===0&&u(E.getMessage("pleaseBindAtLeastOneDisplayValue")),u()},message:E.getMessage("pleaseBindAtLeastOneDisplayValue")}],orders:[{type:"array",message:E.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:E.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:E.getMessage("isNotBoolean")}}}}]}}])}function ps(t,e,n=!1){this.datasourceBind=[{type:"object",message:E.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:E.getMessage(n?"pleaseEnterDataCodeInDataSetting":"pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:E.getMessage(n?"pleaseEnterValueFieldCodeInDataSetting":"pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:E.getMessage(n?"pleaseEnterSvcCodeInDataSetting":"pleaseEnterSvcCode")},attributes:[{type:"array",message:E.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{name:{type:"string",required:!0,message:E.getMessage("isNotString")},key:{type:"string",required:!0,message:E.getMessage("isNotString")},value:[{type:"array",message:E.getMessage("isNotArray")},{type:"array",validator(u,a,i){a.length===0&&i(E.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")),i()},message:E.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")}]}}}],orders:[{type:"array",message:E.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:E.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:E.getMessage("isNotBoolean")}}}}]}}]}function yn(t){return(t==null?void 0:t.dataCode)!==void 0&&(t==null?void 0:t.fieldCode)!==void 0}class yt extends Pe{constructor(e){super(e);this.dataBind={},this.caption={type:"string",required:!0,message:E.getMessage("pleaseEnterCaption")},this.isHideCaption={type:"boolean"},this.labelPosition={type:"enum",enum:["top","left"]},this.defaultState={type:"enum",enum:["default","readonly"]},this.required={type:"boolean"},this.captionTip={type:"string",required:!1,message:E.getMessage("pleaseEnterCaptionTip")};const n={fieldCode:{type:"string",required:!0,message:E.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:E.getMessage("pleaseEnterFieldCode")}};if(yn(e.dataBind))this.dataBind={type:"object",required:!0,fields:ue(n),message:E.getMessage("pleaseEnterFieldCode")};else{let u={type:"object",required:!0,fields:{},message:E.getMessage("pleaseEnterFieldCode")};Object.keys(e.dataBind).forEach(a=>{u.fields[a]={type:"object",required:!0,fields:ue(n),message:E.getMessage("pleaseEnterFieldCode")}}),this.dataBind=u}e.isShowCaptionTip&&(this.captionTip.required=!0)}}class vn extends st{constructor(e){super(e);const n=e.isHide?!1:e.required;n&&this.push({type:"string",required:n,message:e.requiredMessage!==""?e.requiredMessage:E.getMessage("runtimeRequired",{caption:e.caption})})}}class Ce extends Z{constructor(e){super(e);var n,u,a,i,r,s,h,m,A,B;this.caption=(n=e==null?void 0:e.caption)!=null?n:"",this.isHideCaption=(u=e==null?void 0:e.isHideCaption)!=null?u:!1,this.isShowCaptionTip=(a=e==null?void 0:e.isShowCaptionTip)!=null?a:!1,this.captionTip=(i=e==null?void 0:e.captionTip)!=null?i:"",this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.labelPosition=(s=e==null?void 0:e.labelPosition)!=null?s:"top",this.placeholder=(h=e==null?void 0:e.placeholder)!=null?h:"",this.required=(m=e==null?void 0:e.required)!=null?m:!1,this.requiredMessage=(A=e==null?void 0:e.requiredMessage)!=null?A:"",this.dataBind=new G(e==null?void 0:e.dataBind),this.defaultValue=(B=e==null?void 0:e.defaultValue)!=null?B:""}}Ce.Rules=yt,Ce.RuntimeRules=vn;class el extends yt{constructor(e){super(e);this.optionConfig={type:"enum",enum:["custom","datasource"],message:E.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:E.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:E.getMessage("isNotObject")}],gt.call(this,e)}}class En extends j{constructor(e){super(e);this.controlType="form",this.props=new Ce(e==null?void 0:e.props)}}En.controlEventKeys=["on_change","on_focus","on_blur"];class tl extends Q{constructor(e){super(e);this.controlType="form",this.props=new Ce(e==null?void 0:e.props)}}class Be extends Z{constructor(e){super(e)}}const nl=1e4;class Ae extends j{constructor(e){super(e);this.controlType="layout";const{excludes:n,childrenMaxLength:u}=new.target;this.props=new Be(e==null?void 0:e.props),re(this,"children",e==null?void 0:e.children,void 0,"Designer"),this.excludes=ue(n),this.childrenMaxLength=u}judgeExcludesChildren(e){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(e)}judgeJoinChildren(e){const n=this.judgeExcludesChildren(e);return n&&this.childrenMaxLength>this.children.length}validate(e,n){var u=a=>super[a];return De(this,null,function*(){return yield u("validate").call(this,e,n),yield Promise.all(this.children.map(i=>i.validate(e,n))),!0})}toDataBindModel(e=null){const n=super.toDataBindModel(),u=n?[n]:[];return this.children.reduce((a,i)=>{const r=i.toDataBindModel(e);if(Array.isArray(r)){const s=r.filter(h=>!!h);return[...a,...s]}return r&&a.push(r),a},u)}toSchema(){const e=super.toSchema(),n=this.children.map(u=>u.toSchema());return _e(ce({},e),{children:n})}}Ae.excludes=!1,Ae.childrenMaxLength=nl;class vt extends Q{constructor(e){super(e);this.controlType="layout",this.props=new Be(e==null?void 0:e.props),re(this,"children",e==null?void 0:e.children,void 0,"Runtime")}}class Et extends Z{constructor(e,n,u){super(n);re(this,"headers",n==null?void 0:n.headers,e,u),re(this,"footers",n==null?void 0:n.footers,e)}}class Cn extends j{constructor(e){super(e);this.controlType="list",this.props=new Et(this,e==null?void 0:e.props,"Designer")}validate(e,n){var u=a=>super[a];return De(this,null,function*(){return yield u("validate").call(this,e),yield Promise.all(this.props.headers.map(i=>i.validate(e,n))),!0})}toDataBindModel(){const e=super.toDataBindModel(),n=e?[e]:[],u=this.id;return this.props.headers.reduce((a,i)=>{const r=i.toDataBindModel(u);if(Array.isArray(r)){const s=r.filter(h=>!!h);return[...a,...s]}return r&&a.push(r),a},n)}toSchema(){var a,i;const e=super.toSchema(),n=this.props.headers.map(r=>r.toSchema()),u=(i=(a=this.props)==null?void 0:a.footers)==null?void 0:i.map(r=>{if(r)return r.toSchema()});return _e(ce({},e),{props:_e(ce({},this.props),{headers:n,footers:u})})}}Cn.controlFieldType=q.LIST;class ul extends Q{constructor(e){super(e);this.controlType="list",this.props=new Et(this,e==null?void 0:e.props,"Runtime"),re(this,"children",e==null?void 0:e.children,void 0,"Runtime")}get length(){return this.children.length}}class Ct extends Pe{constructor(e){super(e);this.caption={type:"string",required:!0,message:E.getMessage("pleaseEnterCaption")},this.width={type:"number",required:!1,message:E.getMessage("pleaseEnterColumnWidth")},this.width.required=e.widthType==="px"}}class Ve extends Z{constructor(e){super(e);var n,u,a,i,r;this.width=(n=e==null?void 0:e.width)!=null?n:150,this.widthType=(e==null?void 0:e.widthType)||"auto",this.caption=(u=e==null?void 0:e.caption)!=null?u:"",this.fixed=(a=e==null?void 0:e.fixed)!=null?a:"none",this.autoWidth=new Ye(e==null?void 0:e.autoWidth),this.dataBind=new G(e==null?void 0:e.dataBind),this.sort=(i=e==null?void 0:e.sort)!=null?i:!0,this.align=e==null?void 0:e.align,this.colSpan=e==null?void 0:e.colSpan,this.autoHeight=(r=e==null?void 0:e.autoHeight)!=null?r:!1}}Ve.Rules=Ct;class al extends Ct{constructor(e){super(e);this.optionConfig={type:"enum",enum:["custom","datasource","none"],message:E.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:E.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:E.getMessage("isNotObject")}],gt.call(this,e)}}class il extends j{constructor(e){super(e);this.controlType="column",this.props=new Ve(e==null?void 0:e.props)}}class rl extends Q{constructor(e){super(e);this.controlType="column",this.props=new Ve(e==null?void 0:e.props)}}class Bt extends Be{constructor(e){super(e);this.dataBind=new G(e==null?void 0:e.dataBind)}}class sl extends Ae{constructor(e){super(e);this.controlType="search",this.props=new Bt(e==null?void 0:e.props)}}class ll extends vt{constructor(e){super(e);this.controlType="search",this.props=new Bt(e==null?void 0:e.props)}}class At extends Be{constructor(e){super(e)}}class ol extends Ae{constructor(e){super(e);this.controlType="wrap",this.props=new At(e==null?void 0:e.props)}}class cl extends vt{constructor(e){super(e);this.controlType="wrap",this.props=new At(e==null?void 0:e.props)}}function dl(t){t.hasOwnProperty("linkOperationOption")&&t.hasOwnProperty("showLinkOperation")&&t.showLinkOperation&&(this.linkOperationOption=[{type:"object",fields:{formKey:{type:"string",required:!0,message:E.getMessage("pleaseEnterForm")}}}])}l.AMOUNT_TYPE=it,l.AddressValue=vs,l.AmountDataBind=hs,l.AmountValue=ms,l.AutoWidth=Ye,l.BaseControlProperty=Ce,l.BaseControlPropertyRules=yt,l.BaseControlPropertyRuntimeRules=vn,l.BaseStyle=an,l.COMMON_SETTING_TYPE=un,l.CalcDataBind=Es,l.CalcValue=Cs,l.ColumnControlProperty=Ve,l.ColumnControlPropertyRules=Ct,l.ColumnOptionAndDataSourcePropertyRules=al,l.CustomAttributeItem=ut,l.CustomPermissionItem=Fs,l.DataBind=G,l.DataSourceBind=Le,l.DataSourceDataSetValue=pt,l.DataSourceOrderItem=tt,l.DataSourceParamItem=ns,l.DataStorageDoc=Qr,l.DesignerColumnControl=il,l.DesignerControl=j,l.DesignerFormControl=En,l.DesignerLayoutControl=Ae,l.DesignerListControl=Cn,l.DesignerSearchControl=sl,l.DesignerWrapControl=ol,l.DisplayBoListItem=et,l.FieldBindItem=Xt,l.FieldFilterCondition=Me,l.FieldFilterConditions=ye,l.FillBackBind=ls,l.FillPayloadBind=ss,l.FormBind=Re,l.FormSelectBind=Yr,l.ImageOptionSetting=nn,l.JoinRelation=ts,l.Language=os,l.LayoutControlProperty=Be,l.LeftVariable=Qt,l.LinkOperationOption=as,l.ListBind=pr,l.ListControlProperty=Et,l.MetaAutoWidth=Zr,l.MetaWidth=Ie,l.MultistageFillingItem=Yt,l.ObjectDataBind=$e,l.OperationItem=Bs,l.OptObject=Ds,l.OptionAndDataSourcePropertyRules=el,l.OptionSetting=at,l.OrganizationDataSourceBind=is,l.PAGE_STATUS=rt,l.Property=Z,l.PropertyRules=Pe,l.PropertyRuntimeRules=st,l.RangeDataBind=gs,l.RangeDateValue=ys,l.RegisterControls=ge,l.RegularRules=cs,l.RightVariable=pe,l.RuntimeColumnControl=rl,l.RuntimeControl=Q,l.RuntimeFormControl=tl,l.RuntimeLayoutControl=vt,l.RuntimeListControl=ul,l.RuntimeSearchControl=ll,l.RuntimeWrapControl=cl,l.SearchControlProperty=Bt,l.SelectedContentConfig=us,l.SubListItem=Zt,l.SubListPageConfig=es,l.SuperDataSourceBind=en,l.TreeDataSourceBind=rs,l.ViewOperationItem=As,l.WrapControlProperty=At,l.controlHooksEmitter=hn,l.createValidator=fn,l.defineArrayParent=Wt,l.defineControlArrayToProperty=re,l.defineParent=Ze,l.initImageOptions=fs,l.initLinkOperationRules=dl,l.initOptionAndDataSourceRules=gt,l.initOptions=ds,l.initSuperDataSourceRules=ps,l.isDataBind=yn,l.setPropertyDontEnum=we,Object.defineProperty(l,"__esModule",{value:!0})});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './framework/index';
|
|
2
|
-
export { default as BaseControlProperty } from './common/BaseControl/property';
|
|
3
|
-
export { default as ColumnControlProperty } from './common/ColumnControl/property';
|
|
4
|
-
export { default as FormControlProperty } from './common/FormControl/property';
|
|
1
|
+
export * from './framework/index';
|
|
2
|
+
export { default as BaseControlProperty } from './common/BaseControl/property';
|
|
3
|
+
export { default as ColumnControlProperty } from './common/ColumnControl/property';
|
|
4
|
+
export { default as FormControlProperty } from './common/FormControl/property';
|