@byteluck-fe/model-driven-settings 1.8.1-beta.2 → 2.0.1

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.
@@ -59,6 +59,6 @@ export function createBaseFields() {
59
59
  };
60
60
  }
61
61
  }
62
- }
62
+ },
63
63
  ];
64
64
  }
@@ -58,8 +58,8 @@ export function createFormBaseFields(defaultValues) {
58
58
  },
59
59
  // 在明细表内隐藏
60
60
  scopeEffect: function scopeEffect(driven, payload) {
61
- var _payload_current, _payload_from;
62
- if (((_payload_current = payload.current) === null || _payload_current === void 0 ? void 0 : _payload_current.type) !== ((_payload_from = payload.from) === null || _payload_from === void 0 ? void 0 : _payload_from.type)) {
61
+ var ref, ref1;
62
+ if (((ref = payload.current) === null || ref === void 0 ? void 0 : ref.type) !== ((ref1 = payload.from) === null || ref1 === void 0 ? void 0 : ref1.type)) {
63
63
  //明细子表内默认开启
64
64
  if (payload.current.type === "subtable") {
65
65
  driven.setInstance(payload.control, "isHideCaption", true);
@@ -85,7 +85,7 @@ export function createFormBaseFields(defaultValues) {
85
85
  {
86
86
  label: "左右布局",
87
87
  value: "left"
88
- }
88
+ },
89
89
  ]
90
90
  }
91
91
  },
@@ -104,7 +104,7 @@ export function createFormBaseFields(defaultValues) {
104
104
  {
105
105
  label: "只读",
106
106
  value: "readonly"
107
- }
107
+ },
108
108
  ]
109
109
  }
110
110
  },
@@ -125,6 +125,6 @@ export function createFormBaseFields(defaultValues) {
125
125
  maxLength: 80,
126
126
  i18n: true
127
127
  }
128
- }
128
+ },
129
129
  ]);
130
130
  }
@@ -21,10 +21,10 @@ export var BaseProps = /*#__PURE__*/ function() {
21
21
  "use strict";
22
22
  function BaseProps(props) {
23
23
  _classCallCheck(this, BaseProps);
24
- var _props_visible;
25
- this.visible = (_props_visible = props === null || props === void 0 ? void 0 : props.visible) !== null && _props_visible !== void 0 ? _props_visible : true;
26
- var _props_expression;
27
- this.expression = (_props_expression = props === null || props === void 0 ? void 0 : props.expression) !== null && _props_expression !== void 0 ? _props_expression : false;
24
+ var ref;
25
+ this.visible = (ref = props === null || props === void 0 ? void 0 : props.visible) !== null && ref !== void 0 ? ref : true;
26
+ var ref1;
27
+ this.expression = (ref1 = props === null || props === void 0 ? void 0 : props.expression) !== null && ref1 !== void 0 ? ref1 : false;
28
28
  }
29
29
  _createClass(BaseProps, [
30
30
  {
@@ -78,8 +78,8 @@ export var CheckboxProps = /*#__PURE__*/ function(BaseProps) {
78
78
  _classCallCheck(this, CheckboxProps);
79
79
  var _this;
80
80
  _this = _super.call(this, props);
81
- var _props_options;
82
- _this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
81
+ var ref;
82
+ _this.options = (ref = props === null || props === void 0 ? void 0 : props.options) !== null && ref !== void 0 ? ref : [];
83
83
  return _this;
84
84
  }
85
85
  return CheckboxProps;
@@ -78,12 +78,12 @@ export var InputNumberProps = /*#__PURE__*/ function(BaseProps) {
78
78
  _classCallCheck(this, InputNumberProps);
79
79
  var _this;
80
80
  _this = _super.call(this, props);
81
- var _props_max;
82
- _this.max = (_props_max = props === null || props === void 0 ? void 0 : props.max) !== null && _props_max !== void 0 ? _props_max : "";
83
- var _props_min;
84
- _this.min = (_props_min = props === null || props === void 0 ? void 0 : props.min) !== null && _props_min !== void 0 ? _props_min : "";
85
- var _props_placeholder;
86
- _this.placeholder = (_props_placeholder = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _props_placeholder !== void 0 ? _props_placeholder : "";
81
+ var ref;
82
+ _this.max = (ref = props === null || props === void 0 ? void 0 : props.max) !== null && ref !== void 0 ? ref : "";
83
+ var ref1;
84
+ _this.min = (ref1 = props === null || props === void 0 ? void 0 : props.min) !== null && ref1 !== void 0 ? ref1 : "";
85
+ var ref2;
86
+ _this.placeholder = (ref2 = props === null || props === void 0 ? void 0 : props.placeholder) !== null && ref2 !== void 0 ? ref2 : "";
87
87
  return _this;
88
88
  }
89
89
  return InputNumberProps;
@@ -78,14 +78,14 @@ export var InputProps = /*#__PURE__*/ function(BaseProps) {
78
78
  _classCallCheck(this, InputProps);
79
79
  var _this;
80
80
  _this = _super.call(this, props);
81
- var _props_maxLength;
82
- _this.maxLength = (_props_maxLength = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _props_maxLength !== void 0 ? _props_maxLength : "";
83
- var _props_minLength;
84
- _this.minLength = (_props_minLength = props === null || props === void 0 ? void 0 : props.minLength) !== null && _props_minLength !== void 0 ? _props_minLength : "";
85
- var _props_placeholder;
86
- _this.placeholder = (_props_placeholder = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _props_placeholder !== void 0 ? _props_placeholder : "";
87
- var _props_i18n;
88
- _this.i18n = (_props_i18n = props === null || props === void 0 ? void 0 : props.i18n) !== null && _props_i18n !== void 0 ? _props_i18n : false;
81
+ var ref;
82
+ _this.maxLength = (ref = props === null || props === void 0 ? void 0 : props.maxLength) !== null && ref !== void 0 ? ref : "";
83
+ var ref1;
84
+ _this.minLength = (ref1 = props === null || props === void 0 ? void 0 : props.minLength) !== null && ref1 !== void 0 ? ref1 : "";
85
+ var ref2;
86
+ _this.placeholder = (ref2 = props === null || props === void 0 ? void 0 : props.placeholder) !== null && ref2 !== void 0 ? ref2 : "";
87
+ var ref3;
88
+ _this.i18n = (ref3 = props === null || props === void 0 ? void 0 : props.i18n) !== null && ref3 !== void 0 ? ref3 : false;
89
89
  return _this;
90
90
  }
91
91
  return InputProps;
@@ -78,10 +78,10 @@ export var RadioProps = /*#__PURE__*/ function(BaseProps) {
78
78
  _classCallCheck(this, RadioProps);
79
79
  var _this;
80
80
  _this = _super.call(this, props);
81
- var _props_options;
82
- _this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
83
- var _props_showType;
84
- _this.showType = (_props_showType = props === null || props === void 0 ? void 0 : props.showType) !== null && _props_showType !== void 0 ? _props_showType : "outline";
81
+ var ref;
82
+ _this.options = (ref = props === null || props === void 0 ? void 0 : props.options) !== null && ref !== void 0 ? ref : [];
83
+ var ref1;
84
+ _this.showType = (ref1 = props === null || props === void 0 ? void 0 : props.showType) !== null && ref1 !== void 0 ? ref1 : "outline";
85
85
  return _this;
86
86
  }
87
87
  return RadioProps;
@@ -78,10 +78,10 @@ export var SelectProps = /*#__PURE__*/ function(BaseProps) {
78
78
  _classCallCheck(this, SelectProps);
79
79
  var _this;
80
80
  _this = _super.call(this, props);
81
- var _props_placeholder;
82
- _this.placeholder = (_props_placeholder = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _props_placeholder !== void 0 ? _props_placeholder : "";
83
- var _props_options;
84
- _this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
81
+ var ref;
82
+ _this.placeholder = (ref = props === null || props === void 0 ? void 0 : props.placeholder) !== null && ref !== void 0 ? ref : "";
83
+ var ref1;
84
+ _this.options = (ref1 = props === null || props === void 0 ? void 0 : props.options) !== null && ref1 !== void 0 ? ref1 : [];
85
85
  return _this;
86
86
  }
87
87
  return SelectProps;
@@ -78,12 +78,12 @@ export var SwitchProps = /*#__PURE__*/ function(BaseProps) {
78
78
  _classCallCheck(this, SwitchProps);
79
79
  var _this;
80
80
  _this = _super.call(this, props);
81
- var _props_showType;
82
- _this.showType = (_props_showType = props === null || props === void 0 ? void 0 : props.showType) !== null && _props_showType !== void 0 ? _props_showType : "switch";
83
- var _props_tips;
84
- _this.tips = (_props_tips = props === null || props === void 0 ? void 0 : props.tips) !== null && _props_tips !== void 0 ? _props_tips : "";
85
- var _props_disabled;
86
- _this.disabled = (_props_disabled = props === null || props === void 0 ? void 0 : props.disabled) !== null && _props_disabled !== void 0 ? _props_disabled : false;
81
+ var ref;
82
+ _this.showType = (ref = props === null || props === void 0 ? void 0 : props.showType) !== null && ref !== void 0 ? ref : "switch";
83
+ var ref1;
84
+ _this.tips = (ref1 = props === null || props === void 0 ? void 0 : props.tips) !== null && ref1 !== void 0 ? ref1 : "";
85
+ var ref2;
86
+ _this.disabled = (ref2 = props === null || props === void 0 ? void 0 : props.disabled) !== null && ref2 !== void 0 ? ref2 : false;
87
87
  return _this;
88
88
  }
89
89
  return SwitchProps;
@@ -78,18 +78,18 @@ export var TextareaProps = /*#__PURE__*/ function(BaseProps) {
78
78
  _classCallCheck(this, TextareaProps);
79
79
  var _this;
80
80
  _this = _super.call(this, props);
81
- var _props_maxLength;
82
- _this.maxLength = (_props_maxLength = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _props_maxLength !== void 0 ? _props_maxLength : "";
83
- var _props_minLength;
84
- _this.minLength = (_props_minLength = props === null || props === void 0 ? void 0 : props.minLength) !== null && _props_minLength !== void 0 ? _props_minLength : "";
85
- var _props_placeholder;
86
- _this.placeholder = (_props_placeholder = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _props_placeholder !== void 0 ? _props_placeholder : "";
87
- var _props_maxRows;
88
- _this.maxRows = (_props_maxRows = props === null || props === void 0 ? void 0 : props.maxRows) !== null && _props_maxRows !== void 0 ? _props_maxRows : "";
89
- var _props_minRows;
90
- _this.minRows = (_props_minRows = props === null || props === void 0 ? void 0 : props.minRows) !== null && _props_minRows !== void 0 ? _props_minRows : "";
91
- var _props_i18n;
92
- _this.i18n = (_props_i18n = props === null || props === void 0 ? void 0 : props.i18n) !== null && _props_i18n !== void 0 ? _props_i18n : false;
81
+ var ref;
82
+ _this.maxLength = (ref = props === null || props === void 0 ? void 0 : props.maxLength) !== null && ref !== void 0 ? ref : "";
83
+ var ref1;
84
+ _this.minLength = (ref1 = props === null || props === void 0 ? void 0 : props.minLength) !== null && ref1 !== void 0 ? ref1 : "";
85
+ var ref2;
86
+ _this.placeholder = (ref2 = props === null || props === void 0 ? void 0 : props.placeholder) !== null && ref2 !== void 0 ? ref2 : "";
87
+ var ref3;
88
+ _this.maxRows = (ref3 = props === null || props === void 0 ? void 0 : props.maxRows) !== null && ref3 !== void 0 ? ref3 : "";
89
+ var ref4;
90
+ _this.minRows = (ref4 = props === null || props === void 0 ? void 0 : props.minRows) !== null && ref4 !== void 0 ? ref4 : "";
91
+ var ref5;
92
+ _this.i18n = (ref5 = props === null || props === void 0 ? void 0 : props.i18n) !== null && ref5 !== void 0 ? ref5 : false;
93
93
  return _this;
94
94
  }
95
95
  return TextareaProps;
@@ -7,10 +7,10 @@ export var Group = function Group(schema) {
7
7
  "use strict";
8
8
  _classCallCheck(this, Group);
9
9
  this.type = "group";
10
- var _schema_title;
11
- this.title = (_schema_title = schema.title) !== null && _schema_title !== void 0 ? _schema_title : "";
12
- var _schema_required;
13
- this.required = (_schema_required = schema.required) !== null && _schema_required !== void 0 ? _schema_required : false;
10
+ var _title;
11
+ this.title = (_title = schema.title) !== null && _title !== void 0 ? _title : "";
12
+ var _required;
13
+ this.required = (_required = schema.required) !== null && _required !== void 0 ? _required : false;
14
14
  this.items = schema.items;
15
15
  this.tips = schema.tips;
16
16
  };
@@ -13,14 +13,14 @@ export var Setting = /*#__PURE__*/ function() {
13
13
  this.label = schema.label;
14
14
  this.key = schema.key;
15
15
  this.component = schema.component;
16
- var _schema_effect;
17
- this.effect = (_schema_effect = schema.effect) !== null && _schema_effect !== void 0 ? _schema_effect : {};
18
- var _schema_scopeEffect;
19
- this.scopeEffect = (_schema_scopeEffect = schema.scopeEffect) !== null && _schema_scopeEffect !== void 0 ? _schema_scopeEffect : noop;
16
+ var _effect;
17
+ this.effect = (_effect = schema.effect) !== null && _effect !== void 0 ? _effect : {};
18
+ var _scopeEffect;
19
+ this.scopeEffect = (_scopeEffect = schema.scopeEffect) !== null && _scopeEffect !== void 0 ? _scopeEffect : noop;
20
20
  this.defaultValue = schema.defaultValue;
21
21
  this.validator = schema.validator;
22
- var _schema_props;
23
- this.props = (_schema_props = schema.props) !== null && _schema_props !== void 0 ? _schema_props : new BaseProps();
22
+ var _props;
23
+ this.props = (_props = schema.props) !== null && _props !== void 0 ? _props : new BaseProps();
24
24
  // private init
25
25
  this.effectKeys = Object.keys(this.effect);
26
26
  }
package/dist/index.umd.js CHANGED
@@ -1,2 +1,2 @@
1
- var Ea=Object.defineProperty,Ba=Object.defineProperties;var ha=Object.getOwnPropertyDescriptors;var j=Object.getOwnPropertySymbols;var Aa=Object.prototype.hasOwnProperty,ma=Object.prototype.propertyIsEnumerable;var O=(c,B,E)=>B in c?Ea(c,B,{enumerable:!0,configurable:!0,writable:!0,value:E}):c[B]=E,I=(c,B)=>{for(var E in B||(B={}))Aa.call(B,E)&&O(c,E,B[E]);if(j)for(var E of j(B))ma.call(B,E)&&O(c,E,B[E]);return c},y=(c,B)=>Ba(c,ha(B));(function(c,B){typeof exports=="object"&&typeof module!="undefined"?B(exports):typeof define=="function"&&define.amd?define(["exports"],B):(c=typeof globalThis!="undefined"?globalThis:c||self,B(c.modelDrivenSettings={}))})(this,function(c){"use strict";function B(e){return e}class E{constructor(u){var t,n;this.visible=(t=u==null?void 0:u.visible)!=null?t:!0,this.expression=(n=u==null?void 0:u.expression)!=null?n:!1}get isAtomicComponent(){return!0}}var K="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",W="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",X="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Q="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",J="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Z="{caption}\u5FC5\u586B",Y="\u8BF7\u8F93\u5165\u6807\u9898",ee="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ue="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",te="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",ne="\u8BF7\u7ED1\u5B9A\u8868\u5355",ae="\u8BF7\u7ED1\u5B9A\u5217\u8868",re="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",ie="\u8BF7\u8F93\u5165\u663E\u793A\u503C",se="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",le="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",oe="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ce="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Ee="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Be="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",he="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Ae="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",me="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",pe="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",fe="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Fe="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",ve="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",de="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",ge="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",De="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Ce="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",be="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Se="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ie="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",ye="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Me="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",$e="\u8BF7\u9009\u62E9\u7701",we="\u8BF7\u9009\u62E9\u5E02",Re="\u8BF7\u9009\u62E9\u533A",Le="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",xe="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Ue="\u8BF7\u8F93\u5165\u5217\u5BBD",Ne="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",_e="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Te="\u8BF7\u9009\u62E9\u63A7\u4EF6",Pe="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ve="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",ke="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ge="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",He="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ze="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",qe="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",je="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Oe="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Ke="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",We="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Xe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Qe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Je="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ze="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ye="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",eu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",uu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",tu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",nu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",au="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ru={isNotNumber:K,isNotString:W,isNotObject:X,isNotArray:Q,isNotBoolean:J,runtimeRequired:Z,pleaseEnterCaption:Y,pleaseEnterCaptionTip:ee,pleaseEnterPlaceholder:ue,pleaseEnterFieldCode:te,pleaseEnterForm:ne,pleaseEnterList:ae,pleaseEnterProcess:re,pleaseEnterLabel:ie,pleaseEnterValue:se,bizKeyNotBindFiled:le,pleaseEnterNumberRange:oe,pleaseEnterAValueGreaterThanMin:ce,pleaseEnterAValueLessThanMax:Ee,numberRangeSetError:Be,stringRangeError:he,attachmentMaxSize:Ae,pleaseEnterTotalScoreSetting:me,theTotalScoreMustNotBeLessThan1:pe,scoreDefaultValueRange:fe,attachmentLimitError:Fe,PleaseReselectTheOptionalQuantity:ve,TheMaximumLengthIsGreaterThanTheMinimumLength:de,TheMinimumLengthIsGreaterThanTheMaximumLength:ge,PleaseSelectTheCorrectOptionSettings:De,optionIdIsRepeat:Ce,optionIsRequired:be,pleaseEnterDataCode:Se,pleaseEnterValueFieldCode:Ie,pleaseEnterSvcCode:ye,pleaseBindAtLeastOneDisplayValue:Me,pleaseSelectProvince:$e,pleaseSelectCity:we,pleaseSelectDistrict:Re,limitRowsCannotBeLessThan0:Le,TheNumberOfRowsCannotBeLessThanMinRows:xe,pleaseEnterColumnWidth:Ue,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ne,pleaseCompleteAllRulesAndConditions:_e,pleaseSelectControl:Te,pleaseSelectAtLeastOneColumn:Pe,pleaseSelectFillBackMode:Ve,pleaseSelectDashboard:ke,rootNodeIsRequired:Ge,theViewNameCannotBeEmpty:He,pleaseSelectOcrType:ze,pleaseSelectAtLeastOneFieldToFillIn:qe,pleaseChooseAtLeastOne:je,pleaseEnterButtonContent:Oe,pleaseEnterDataCodeInDataSetting:Ke,pleaseEnterValueFieldCodeInDataSetting:We,pleaseEnterSvcCodeInDataSetting:Xe,pleaseBindAtLeastOneDisplayValueInDataSetting:Qe,rootNodeIsRequiredInDataSetting:Je,pleaseEnterMaxHeight:Ze,pleaseEnter:Ye,pleaseEnterWatermark:eu,pleaseEnterFileName:uu,pleaseUploadAtLeastOnePrintTemplate:tu,pleaseAssignBusiness:nu,pleaseAssignExternal:au},iu="Please enter a number",su="Please enter a string",lu="Please enter an object",ou="Please enter an array",cu="Please enter a boolean",Eu="{caption} Required",Bu="Please enter the title",hu="Please enter the bubble prompt",Au="Please enter the prompt text",mu="Please bind data items",pu="Please bind the form",fu="Please bind the list",Fu="Please bind the process",vu="Please enter the displayed value",du="Please enter the stored value",gu="The document number is not bound to the data item",Du="Please enter a value greater than or equal to {min} and less than or equal to {max}",Cu="Please enter a value greater than or equal to {min}",bu="Please enter a value less than or equal to {max}",Su="The value range is set incorrectly",Iu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",yu="The attachment size must be between 0MB and 1000MB",Mu="Please fill in the total score setting",$u="The total score cannot be less than 1",wu="The default value must be between {min} and {max}",Ru="The number of attachments uploaded must be between {min} and {max}",Lu="Please re-select the optional quantity",xu="The maximum length of the control must be greater than the minimum length",Uu="The minimum length of the control must be less than the maximum length",Nu="Please select the correct option setting",_u="Option ID cannot be repeated",Tu="Please enter at least one option",Pu="Please bind the data source",Vu="Please bind the stored value",ku="Please bind the service",Gu="At least one display value must be bound",Hu="Please select a province",zu="Please select a city",qu="Please select a district",ju="The minimum number of lines to fill in cannot be less than 0",Ou="The number of rows cannot be less than {min} rows",Ku="Please enter the column width",Wu="Please set the logical relationship of all rule conditions",Xu="Please complete all rules and conditions",Qu="please select control",Ju="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Zu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Yu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",et="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ut="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",tt="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",nt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",at="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",rt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",it="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",st="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",lt="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ot="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ct="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Et="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Bt="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ht="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",At="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",mt={isNotNumber:iu,isNotString:su,isNotObject:lu,isNotArray:ou,isNotBoolean:cu,runtimeRequired:Eu,pleaseEnterCaption:Bu,pleaseEnterCaptionTip:hu,pleaseEnterPlaceholder:Au,pleaseEnterFieldCode:mu,pleaseEnterForm:pu,pleaseEnterList:fu,pleaseEnterProcess:Fu,pleaseEnterLabel:vu,pleaseEnterValue:du,bizKeyNotBindFiled:gu,pleaseEnterNumberRange:Du,pleaseEnterAValueGreaterThanMin:Cu,pleaseEnterAValueLessThanMax:bu,numberRangeSetError:Su,stringRangeError:Iu,attachmentMaxSize:yu,pleaseEnterTotalScoreSetting:Mu,theTotalScoreMustNotBeLessThan1:$u,scoreDefaultValueRange:wu,attachmentLimitError:Ru,PleaseReselectTheOptionalQuantity:Lu,TheMaximumLengthIsGreaterThanTheMinimumLength:xu,TheMinimumLengthIsGreaterThanTheMaximumLength:Uu,PleaseSelectTheCorrectOptionSettings:Nu,optionIdIsRepeat:_u,optionIsRequired:Tu,pleaseEnterDataCode:Pu,pleaseEnterValueFieldCode:Vu,pleaseEnterSvcCode:ku,pleaseBindAtLeastOneDisplayValue:Gu,pleaseSelectProvince:Hu,pleaseSelectCity:zu,pleaseSelectDistrict:qu,limitRowsCannotBeLessThan0:ju,TheNumberOfRowsCannotBeLessThanMinRows:Ou,pleaseEnterColumnWidth:Ku,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Wu,pleaseCompleteAllRulesAndConditions:Xu,pleaseSelectControl:Qu,pleaseSelectDashboard:Ju,theViewNameCannotBeEmpty:Zu,pleaseSelectOcrType:Yu,pleaseSelectAtLeastOneFieldToFillIn:et,pleaseChooseAtLeastOne:ut,pleaseEnterButtonContent:tt,pleaseEnterDataCodeInDataSetting:nt,pleaseEnterValueFieldCodeInDataSetting:at,pleaseEnterSvcCodeInDataSetting:rt,pleaseBindAtLeastOneDisplayValueInDataSetting:it,rootNodeIsRequiredInDataSetting:st,pleaseEnterMaxHeight:lt,pleaseEnter:ot,pleaseEnterWatermark:ct,pleaseEnterFileName:Et,pleaseUploadAtLeastOnePrintTemplate:Bt,pleaseAssignBusiness:ht,pleaseAssignExternal:At},pt="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ft="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ft="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vt="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",dt="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",gt="{caption}\u5FC5\u9808",Dt="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ct="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",bt="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",St="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",It="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",yt="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Mt="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",$t="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wt="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Rt="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Lt="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xt="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ut="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Nt="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",_t="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Tt="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Pt="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Vt="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",kt="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Gt="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Ht="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",zt="\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",qt="\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",jt="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ot="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Kt="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Wt="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Xt="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Qt="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Jt="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Zt="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Yt="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",en="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",un="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",tn="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",nn="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",an="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",rn="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",sn="please select control",ln="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",on="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",cn="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",En="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Bn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",hn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",An="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",mn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",pn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",fn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Fn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",vn="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",dn="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",gn="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Dn="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Cn="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",bn="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Sn="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",In={isNotNumber:pt,isNotString:ft,isNotObject:Ft,isNotArray:vt,isNotBoolean:dt,runtimeRequired:gt,pleaseEnterCaption:Dt,pleaseEnterCaptionTip:Ct,pleaseEnterPlaceholder:bt,pleaseEnterFieldCode:St,pleaseEnterForm:It,pleaseEnterList:yt,pleaseEnterProcess:Mt,pleaseEnterLabel:$t,pleaseEnterValue:wt,bizKeyNotBindFiled:Rt,pleaseEnterNumberRange:Lt,pleaseEnterAValueGreaterThanMin:xt,pleaseEnterAValueLessThanMax:Ut,numberRangeSetError:Nt,stringRangeError:_t,attachmentMaxSize:Tt,pleaseEnterTotalScoreSetting:Pt,theTotalScoreMustNotBeLessThan1:Vt,scoreDefaultValueRange:kt,attachmentLimitError:Gt,PleaseReselectTheOptionalQuantity:Ht,TheMaximumLengthIsGreaterThanTheMinimumLength:zt,TheMinimumLengthIsGreaterThanTheMaximumLength:qt,PleaseSelectTheCorrectOptionSettings:jt,optionIdIsRepeat:Ot,optionIsRequired:Kt,pleaseEnterDataCode:Wt,pleaseEnterValueFieldCode:Xt,pleaseEnterSvcCode:Qt,pleaseBindAtLeastOneDisplayValue:Jt,pleaseSelectProvince:Zt,pleaseSelectCity:Yt,pleaseSelectDistrict:en,limitRowsCannotBeLessThan0:un,TheNumberOfRowsCannotBeLessThanMinRows:tn,pleaseEnterColumnWidth:nn,pleaseSetTheLogicalRelationshipOfAllRuleConditions:an,pleaseCompleteAllRulesAndConditions:rn,pleaseSelectControl:sn,pleaseSelectDashboard:ln,theViewNameCannotBeEmpty:on,pleaseSelectOcrType:cn,pleaseSelectAtLeastOneFieldToFillIn:En,pleaseChooseAtLeastOne:Bn,pleaseEnterButtonContent:hn,pleaseEnterDataCodeInDataSetting:An,pleaseEnterValueFieldCodeInDataSetting:mn,pleaseEnterSvcCodeInDataSetting:pn,pleaseBindAtLeastOneDisplayValueInDataSetting:fn,rootNodeIsRequiredInDataSetting:Fn,pleaseEnterMaxHeight:vn,pleaseEnter:dn,pleaseEnterWatermark:gn,pleaseEnterFileName:Dn,pleaseUploadAtLeastOnePrintTemplate:Cn,pleaseAssignBusiness:bn,pleaseAssignExternal:Sn},yn={zhCN:ru,enUS:mt,jaJP:In},R;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(R||(R={}));var L;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(L||(L={}));var Mn="zh-CN",$n=function(){};function f(e,u,t){return u in e?Object.defineProperty(e,u,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[u]=t,e}var x;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(x||(x={}));var A;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(A||(A={}));var m;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(m||(m={}));var p;p={},f(p,m.ARRAY,A.ARRAY_COLUMN),f(p,m.AUTO_NUMBER,A.AUTO_NUMBER_COLUMN),f(p,m.DECIMAL,A.DECIMAL_COLUMN),f(p,m.DEPARTMENTS,A.DEPARTMENT_COLUMN),f(p,m.FILE,A.FILE_COLUMN),f(p,m.IMAGE,A.IMAGE_COLUMN),f(p,m.ADDRESS,A.LOCATION_COLUMN),f(p,m.EMPLOYEES,A.EMPLOYEE_COLUMN),f(p,m.TEXT,A.TEXT_COLUMN),f(p,m.TIMESCOPE,A.TIMESCOPE_COLUMN),f(p,m.TIMESTAMP,A.TIMESTAMP_COLUMN),f(p,m.VARCHAR,A.VARCHAR_COLUMN),f(p,m.RELATION,A.VARCHAR_COLUMN);var U;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(U||(U={}));function wn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Rn(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function Ln(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function S(e,u,t){return Ln()?S=Reflect.construct:S=function(a,o,l){var h=[null];h.push.apply(h,o);var d=Function.bind.apply(a,h),s=new d;return l&&D(s,l.prototype),s},S.apply(null,arguments)}function g(e){return g=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},g(e)}function xn(e,u){if(typeof u!="function"&&u!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(u&&u.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),u&&D(e,u)}function Un(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Nn(e,u){return u&&(_n(u)==="object"||typeof u=="function")?u:wn(e)}function D(e,u){return D=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},D(e,u)}var _n=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function M(e){var u=typeof Map=="function"?new Map:void 0;return M=function(n){if(n===null||!Un(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof u!="undefined"){if(u.has(n))return u.get(n);u.set(n,a)}function a(){return S(n,arguments,g(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),D(a,n)},M(e)}function Tn(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Pn(e){var u=Tn();return function(){var n=g(e),a;if(u){var o=g(this).constructor;a=Reflect.construct(n,arguments,o)}else a=n.apply(this,arguments);return Nn(this,a)}}function Vn(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var kn=function(e){xn(t,e);var u=Pn(t);function t(n){Rn(this,t);var a;return a=u.call(this,n),a.name="\u{1F4A5} Driven Error",a.message=n?Vn(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return t}(M(Error));function Gn(e){throw new kn(e)}var Hn=Object.prototype.toString;function N(e,u){return Hn.call(e)==="[object "+u+"]"}function zn(e){return N(e,"String")}function qn(e){return N(e,"Promise")}var jn=function(){function e(u){var t,n;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((n=(t=u.messages)!==null&&t!==void 0?t:this.getPreImport(u.locale))!==null&&n!==void 0?n:{}),u.variableRegExp&&(this.variableRegExp=u.variableRegExp),this.setLocale(u.locale)}return e.prototype.setLocale=function(u){var t=this;this.locale=u,this._messageCache.clear();var n=this.getMessageData();qn(n)?n.then(function(a){t._messageCache.clear(),t.messages[t.localeInMessageKey]=a}):this.messages[this.localeInMessageKey]=n},e.prototype.getMessageData=function(){var u=this._messages[this.localeInMessageKey];return typeof u=="function"?u():u},e.prototype.translate=function(u,t,n){var a=this.getMessage(u);return a?this.formatMessage(a,n):this.formatMessage(t,n)},e.prototype.getMessage=function(u){if(this._messageCache.has(u))return this._messageCache.get(u);var t=this.getPathArray(u),n=t.reduce(function(a,o,l,h){if(a!==void 0){var d=a[o];if(!(l===h.length-1&&!zn(d)))return d}},this.message);return this._messageCache.set(u,n),n},e.prototype.formatMessage=function(u,t){return t?u.replace(this.variableRegExp,function(n,a){var o=t[a];return o!==void 0?String(o):n}):u},e.prototype.getPreImport=function(u){var t;if(window.okI18nPreImport){var n=this.getLocaleInMessageKey(u);return window.okI18nPreImport.hasOwnProperty(n)?window.okI18nPreImport:(t={},t[n]=window.okI18nPreImport,t)}},e.prototype.getPathArray=function(u){return u.split(".")},e.prototype.getLocaleInMessageKey=function(u){return u.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var u;return(u=this.messages[this.localeInMessageKey])!==null&&u!==void 0?u:{}},enumerable:!1,configurable:!0}),e}();function On(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}var _=function(){function e(){On(this,e)}return e.getMessage=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(t,"",n)},e.resetI18n=function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Mn;return new jn({locale:t,messages:yn})},e.setLocale=function(t){return this.$i18n.setLocale(t)},e}();_.$i18n=_.resetI18n();var Kn=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Wn={exports:{}};(function(e){(function(u){var t=function(r,i,F){if(!s(i)||sa(i)||la(i)||oa(i)||d(i))return i;var v,b=0,q=0;if(C(i))for(v=[],q=i.length;b<q;b++)v.push(t(r,i[b],F));else{v={};for(var w in i)Object.prototype.hasOwnProperty.call(i,w)&&(v[r(w,F)]=t(r,i[w],F))}return v},n=function(r,i){i=i||{};var F=i.separator||"_",v=i.split||/(?=[A-Z])/;return r.split(v).join(F)},a=function(r){return ca(r)?r:(r=r.replace(/[\-_\s]+(.)?/g,function(i,F){return F?F.toUpperCase():""}),r.substr(0,1).toLowerCase()+r.substr(1))},o=function(r){var i=a(r);return i.substr(0,1).toUpperCase()+i.substr(1)},l=function(r,i){return n(r,i).toLowerCase()},h=Object.prototype.toString,d=function(r){return typeof r=="function"},s=function(r){return r===Object(r)},C=function(r){return h.call(r)=="[object Array]"},sa=function(r){return h.call(r)=="[object Date]"},la=function(r){return h.call(r)=="[object RegExp]"},oa=function(r){return h.call(r)=="[object Boolean]"},ca=function(r){return r=r-0,r===r},$=function(r,i){var F=i&&"process"in i?i.process:i;return typeof F!="function"?r:function(v,b){return F(v,r,b)}},z={camelize:a,decamelize:l,pascalize:o,depascalize:l,camelizeKeys:function(r,i){return t($(a,i),r)},decamelizeKeys:function(r,i){return t($(l,i),r,i)},pascalizeKeys:function(r,i){return t($(o,i),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=z:u.humps=z})(Kn)})(Wn);function T(e){return Object.prototype.toString.call(e)==="[object Object]"}class P{constructor(u){var t,n,a;this.type=u.type,this.label=u.label,this.key=u.key,this.component=u.component,this.effect=(t=u.effect)!=null?t:{},this.scopeEffect=(n=u.scopeEffect)!=null?n:$n,this.defaultValue=u.defaultValue,this.validator=u.validator,this.props=(a=u.props)!=null?a:new E,this.effectKeys=Object.keys(this.effect)}filterEffects(u){return u===""?Object.values(this.effect):this.effectKeys.filter(t=>new RegExp(`^${t}(\\.\\w+)*$`).test(u)).map(t=>this.effect[t])}callEffectFn(u,t){try{const n=u.apply(null,t);T(n)&&Object.assign(this.props,n)}catch(n){Gn(`effect error
2
- ${n}`)}}callEffect(u,...t){this.filterEffects(u).forEach(n=>this.callEffectFn(n,t))}callScopeEffect(...u){this.callEffectFn(this.scopeEffect,u)}}class V{constructor(u){var t,n;this.type="group",this.title=(t=u.title)!=null?t:"",this.required=(n=u.required)!=null?n:!1,this.items=u.items,this.tips=u.tips}}function k(e){return"type"in e&&e.type==="tab"}class G{constructor(u){this.type="tab",this.title=u.title,this.items=u.items}}class Xn extends E{constructor(u){super(u),T(u)&&Object.entries(u).forEach(([t,n])=>{this[t]=n})}}class Qn extends E{constructor(u){var t,n,a,o;super(u),this.maxLength=(t=u==null?void 0:u.maxLength)!=null?t:"",this.minLength=(n=u==null?void 0:u.minLength)!=null?n:"",this.placeholder=(a=u==null?void 0:u.placeholder)!=null?a:"",this.i18n=(o=u==null?void 0:u.i18n)!=null?o:!1}}class Jn extends E{constructor(u){var t,n,a;super(u),this.max=(t=u==null?void 0:u.max)!=null?t:"",this.min=(n=u==null?void 0:u.min)!=null?n:"",this.placeholder=(a=u==null?void 0:u.placeholder)!=null?a:""}}class Zn extends E{constructor(u){var t,n,a;super(u),this.showType=(t=u==null?void 0:u.showType)!=null?t:"switch",this.tips=(n=u==null?void 0:u.tips)!=null?n:"",this.disabled=(a=u==null?void 0:u.disabled)!=null?a:!1}}class Yn extends E{constructor(u){var t;super(u),this.options=(t=u==null?void 0:u.options)!=null?t:[]}}class ea extends E{constructor(u){var t,n;super(u),this.placeholder=(t=u==null?void 0:u.placeholder)!=null?t:"",this.options=(n=u==null?void 0:u.options)!=null?n:[]}}class ua extends E{constructor(u){var t,n;super(u),this.options=(t=u==null?void 0:u.options)!=null?t:[],this.showType=(n=u==null?void 0:u.showType)!=null?n:"outline"}}class ta extends E{constructor(u){var t,n,a,o,l,h;super(u),this.maxLength=(t=u==null?void 0:u.maxLength)!=null?t:"",this.minLength=(n=u==null?void 0:u.minLength)!=null?n:"",this.placeholder=(a=u==null?void 0:u.placeholder)!=null?a:"",this.maxRows=(o=u==null?void 0:u.maxRows)!=null?o:"",this.minRows=(l=u==null?void 0:u.minRows)!=null?l:"",this.i18n=(h=u==null?void 0:u.i18n)!=null?h:!1}}function na(e,u){switch(e){case"input":return new Qn(u);case"textarea":return new ta(u);case"input-number":return new Jn(u);case"switch":return new Zn(u);case"radio":return new ua(u);case"checkbox":return new Yn(u);case"select":return new ea(u);default:return new Xn(u)}}function aa(e){return function(u){const t=e.get(u);if(!!t)return new P(y(I({},t),{props:na(t.component,"props"in t?t.props:void 0)}))}}function ra(e){const u=e.fields.reduce((a,o)=>(a.set(o.key,o),a),new Map);function t(a){return new V(y(I({},a),{items:a.items.map(aa(u)).filter(Boolean)}))}function n(a){return a.map(t)}return e.groups.map(a=>k(a)?new G(y(I({},a),{items:n(a.items)})):t(a))}function H(){return[{label:"\u9690\u85CF",key:"isHide",type:"boolean",component:"switch"},{key:"superSetting",component:"super-setting"},{key:"style.width",component:"styleComponent",props:{configKey:"style.widthConfig",options:["px","%","fill","hug"]},scopeEffect(e,u){const{oldParent:t,newParent:n,instance:a}=u;if((t==null?void 0:t.type)==="advanced-container"&&n.type==="positioning-container"&&(e.setInstance(a,"style.width",""),e.setInstance(a,"style.widthConfig","fill")),n)return{visible:n.type==="advanced-container"}}},{key:"style.height",component:"styleComponent",props:{configKey:"style.heightConfig",options:["px","%","fill","hug"]},scopeEffect(e,u){const{oldParent:t,newParent:n,instance:a}=u;if((t==null?void 0:t.type)==="advanced-container"&&n.type==="positioning-container"&&(e.setInstance(a,"style.height",""),e.setInstance(a,"style.heightConfig","fill")),u.newParent)return{visible:u.newParent.type==="advanced-container"}}}]}function ia(e){return[...H(),{type:"DataBind",key:"dataBind",component:"data-bind",defaultValue:e==null?void 0:e.dataBind},{key:"caption",type:"string",component:"input",props:{maxLength:80,i18n:!0},defaultValue:e==null?void 0:e.caption,validator(u){if(!u)return"\u6807\u9898\u5FC5\u586B"}},{label:"\u9690\u85CF\u6807\u9898",key:"isHideCaption",type:"boolean",component:"switch",defaultValue:e==null?void 0:e.isHideCaption,props:{showType:"checkbox"},scopeEffect(u,t){var n,a;if(((n=t.current)==null?void 0:n.type)!==((a=t.from)==null?void 0:a.type))return t.current.type==="subtable"&&u.setInstance(t.control,"isHideCaption",!0),{visible:t.current.type!=="subtable"}}},{key:"labelPosition",type:"string",component:"radio",defaultValue:e==null?void 0:e.labelPosition,props:{showType:"solid",options:[{label:"\u4E0A\u4E0B\u5E03\u5C40",value:"top"},{label:"\u5DE6\u53F3\u5E03\u5C40",value:"left"}]}},{key:"defaultState",type:"string",component:"radio",defaultValue:e==null?void 0:e.defaultState,props:{showType:"solid",options:[{label:"\u666E\u901A",value:"default"},{label:"\u53EA\u8BFB",value:"readonly"}]}},{label:"\u5FC5\u586B",key:"required",type:"boolean",component:"switch",defaultValue:e==null?void 0:e.required},{label:"\u63D0\u793A\u6587\u5B57",key:"placeholder",type:"string",component:"input",defaultValue:e==null?void 0:e.placeholder,props:{maxLength:80,i18n:!0}}]}c.Group=V,c.Setting=P,c.Tab=G,c.createBaseFields=H,c.createFormBaseFields=ia,c.defineInstance=B,c.initSettings=ra,c.isTabSchema=k,Object.defineProperty(c,"__esModule",{value:!0})});
1
+ var Ea=Object.defineProperty,Ba=Object.defineProperties;var ha=Object.getOwnPropertyDescriptors;var q=Object.getOwnPropertySymbols;var Aa=Object.prototype.hasOwnProperty,pa=Object.prototype.propertyIsEnumerable;var j=(s,c,l)=>c in s?Ea(s,c,{enumerable:!0,configurable:!0,writable:!0,value:l}):s[c]=l,S=(s,c)=>{for(var l in c||(c={}))Aa.call(c,l)&&j(s,l,c[l]);if(q)for(var l of q(c))pa.call(c,l)&&j(s,l,c[l]);return s},I=(s,c)=>Ba(s,ha(c));(function(s,c){typeof exports=="object"&&typeof module!="undefined"?c(exports,require("regenerator-runtime")):typeof define=="function"&&define.amd?define(["exports","regenerator-runtime"],c):(s=typeof globalThis!="undefined"?globalThis:s||self,c(s.modelDrivenSettings={}))})(this,function(s){"use strict";function c(e){return e}class l{constructor(u){var t,n;this.visible=(t=u==null?void 0:u.visible)!=null?t:!0,this.expression=(n=u==null?void 0:u.expression)!=null?n:!1}get isAtomicComponent(){return!0}}var O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",K="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",W="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",X="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Q="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",J="{caption}\u5FC5\u586B",Z="\u8BF7\u8F93\u5165\u6807\u9898",Y="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ee="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",ue="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",te="\u8BF7\u7ED1\u5B9A\u8868\u5355",ne="\u8BF7\u7ED1\u5B9A\u5217\u8868",ae="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",re="\u8BF7\u8F93\u5165\u663E\u793A\u503C",ie="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",se="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",le="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",oe="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",ce="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Ee="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Be="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",he="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Ae="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",pe="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",me="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Fe="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",fe="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",ve="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",de="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",ge="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",De="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Ce="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",be="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Se="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Ie="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Me="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ye="\u8BF7\u9009\u62E9\u7701",$e="\u8BF7\u9009\u62E9\u5E02",we="\u8BF7\u9009\u62E9\u533A",Re="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Le="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",xe="\u8BF7\u8F93\u5165\u5217\u5BBD",Ue="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Ne="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Te="\u8BF7\u9009\u62E9\u63A7\u4EF6",_e="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Pe="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Ve="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ge="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",ke="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",He="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ze="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",qe="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",je="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Oe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ke="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",We="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Xe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Qe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Je="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ze="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Ye="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",eu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",uu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",tu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",nu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",au={isNotNumber:O,isNotString:K,isNotObject:W,isNotArray:X,isNotBoolean:Q,runtimeRequired:J,pleaseEnterCaption:Z,pleaseEnterCaptionTip:Y,pleaseEnterPlaceholder:ee,pleaseEnterFieldCode:ue,pleaseEnterForm:te,pleaseEnterList:ne,pleaseEnterProcess:ae,pleaseEnterLabel:re,pleaseEnterValue:ie,bizKeyNotBindFiled:se,pleaseEnterNumberRange:le,pleaseEnterAValueGreaterThanMin:oe,pleaseEnterAValueLessThanMax:ce,numberRangeSetError:Ee,stringRangeError:Be,attachmentMaxSize:he,pleaseEnterTotalScoreSetting:Ae,theTotalScoreMustNotBeLessThan1:pe,scoreDefaultValueRange:me,attachmentLimitError:Fe,PleaseReselectTheOptionalQuantity:fe,TheMaximumLengthIsGreaterThanTheMinimumLength:ve,TheMinimumLengthIsGreaterThanTheMaximumLength:de,PleaseSelectTheCorrectOptionSettings:ge,optionIdIsRepeat:De,optionIsRequired:Ce,pleaseEnterDataCode:be,pleaseEnterValueFieldCode:Se,pleaseEnterSvcCode:Ie,pleaseBindAtLeastOneDisplayValue:Me,pleaseSelectProvince:ye,pleaseSelectCity:$e,pleaseSelectDistrict:we,limitRowsCannotBeLessThan0:Re,TheNumberOfRowsCannotBeLessThanMinRows:Le,pleaseEnterColumnWidth:xe,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ue,pleaseCompleteAllRulesAndConditions:Ne,pleaseSelectControl:Te,pleaseSelectAtLeastOneColumn:_e,pleaseSelectFillBackMode:Pe,pleaseSelectDashboard:Ve,rootNodeIsRequired:Ge,theViewNameCannotBeEmpty:ke,pleaseSelectOcrType:He,pleaseSelectAtLeastOneFieldToFillIn:ze,pleaseChooseAtLeastOne:qe,pleaseEnterButtonContent:je,pleaseEnterDataCodeInDataSetting:Oe,pleaseEnterValueFieldCodeInDataSetting:Ke,pleaseEnterSvcCodeInDataSetting:We,pleaseBindAtLeastOneDisplayValueInDataSetting:Xe,rootNodeIsRequiredInDataSetting:Qe,pleaseEnterMaxHeight:Je,pleaseEnter:Ze,pleaseEnterWatermark:Ye,pleaseEnterFileName:eu,pleaseUploadAtLeastOnePrintTemplate:uu,pleaseAssignBusiness:tu,pleaseAssignExternal:nu},ru="Please enter a number",iu="Please enter a string",su="Please enter an object",lu="Please enter an array",ou="Please enter a boolean",cu="{caption} Required",Eu="Please enter the title",Bu="Please enter the bubble prompt",hu="Please enter the prompt text",Au="Please bind data items",pu="Please bind the form",mu="Please bind the list",Fu="Please bind the process",fu="Please enter the displayed value",vu="Please enter the stored value",du="The document number is not bound to the data item",gu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Du="Please enter a value greater than or equal to {min}",Cu="Please enter a value less than or equal to {max}",bu="The value range is set incorrectly",Su="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Iu="The attachment size must be between 0MB and 1000MB",Mu="Please fill in the total score setting",yu="The total score cannot be less than 1",$u="The default value must be between {min} and {max}",wu="The number of attachments uploaded must be between {min} and {max}",Ru="Please re-select the optional quantity",Lu="The maximum length of the control must be greater than the minimum length",xu="The minimum length of the control must be less than the maximum length",Uu="Please select the correct option setting",Nu="Option ID cannot be repeated",Tu="Please enter at least one option",_u="Please bind the data source",Pu="Please bind the stored value",Vu="Please bind the service",Gu="At least one display value must be bound",ku="Please select a province",Hu="Please select a city",zu="Please select a district",qu="The minimum number of lines to fill in cannot be less than 0",ju="The number of rows cannot be less than {min} rows",Ou="Please enter the column width",Ku="Please set the logical relationship of all rule conditions",Wu="Please complete all rules and conditions",Xu="please select control",Qu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ju="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Zu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Yu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",et="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ut="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",tt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",nt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",at="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",rt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",it="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",st="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",lt="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ot="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ct="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Et="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Bt="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ht="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",At={isNotNumber:ru,isNotString:iu,isNotObject:su,isNotArray:lu,isNotBoolean:ou,runtimeRequired:cu,pleaseEnterCaption:Eu,pleaseEnterCaptionTip:Bu,pleaseEnterPlaceholder:hu,pleaseEnterFieldCode:Au,pleaseEnterForm:pu,pleaseEnterList:mu,pleaseEnterProcess:Fu,pleaseEnterLabel:fu,pleaseEnterValue:vu,bizKeyNotBindFiled:du,pleaseEnterNumberRange:gu,pleaseEnterAValueGreaterThanMin:Du,pleaseEnterAValueLessThanMax:Cu,numberRangeSetError:bu,stringRangeError:Su,attachmentMaxSize:Iu,pleaseEnterTotalScoreSetting:Mu,theTotalScoreMustNotBeLessThan1:yu,scoreDefaultValueRange:$u,attachmentLimitError:wu,PleaseReselectTheOptionalQuantity:Ru,TheMaximumLengthIsGreaterThanTheMinimumLength:Lu,TheMinimumLengthIsGreaterThanTheMaximumLength:xu,PleaseSelectTheCorrectOptionSettings:Uu,optionIdIsRepeat:Nu,optionIsRequired:Tu,pleaseEnterDataCode:_u,pleaseEnterValueFieldCode:Pu,pleaseEnterSvcCode:Vu,pleaseBindAtLeastOneDisplayValue:Gu,pleaseSelectProvince:ku,pleaseSelectCity:Hu,pleaseSelectDistrict:zu,limitRowsCannotBeLessThan0:qu,TheNumberOfRowsCannotBeLessThanMinRows:ju,pleaseEnterColumnWidth:Ou,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ku,pleaseCompleteAllRulesAndConditions:Wu,pleaseSelectControl:Xu,pleaseSelectDashboard:Qu,theViewNameCannotBeEmpty:Ju,pleaseSelectOcrType:Zu,pleaseSelectAtLeastOneFieldToFillIn:Yu,pleaseChooseAtLeastOne:et,pleaseEnterButtonContent:ut,pleaseEnterDataCodeInDataSetting:tt,pleaseEnterValueFieldCodeInDataSetting:nt,pleaseEnterSvcCodeInDataSetting:at,pleaseBindAtLeastOneDisplayValueInDataSetting:rt,rootNodeIsRequiredInDataSetting:it,pleaseEnterMaxHeight:st,pleaseEnter:lt,pleaseEnterWatermark:ot,pleaseEnterFileName:ct,pleaseUploadAtLeastOnePrintTemplate:Et,pleaseAssignBusiness:Bt,pleaseAssignExternal:ht},pt="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",mt="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ft="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ft="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vt="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",dt="{caption}\u5FC5\u9808",gt="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Dt="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ct="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bt="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",St="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",It="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Mt="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",yt="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$t="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wt="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Rt="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Lt="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xt="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ut="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Nt="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Tt="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",_t="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Pt="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Vt="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Gt="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",kt="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ht="\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",zt="\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",qt="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",jt="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Ot="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Kt="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Wt="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Xt="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Qt="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Jt="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Zt="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Yt="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",en="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",un="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",tn="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",nn="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",an="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",rn="please select control",sn="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ln="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",on="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",cn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",En="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Bn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",hn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",An="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",pn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",mn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Fn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",fn="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",vn="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",dn="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",gn="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Dn="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Cn="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",bn="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Sn={isNotNumber:pt,isNotString:mt,isNotObject:Ft,isNotArray:ft,isNotBoolean:vt,runtimeRequired:dt,pleaseEnterCaption:gt,pleaseEnterCaptionTip:Dt,pleaseEnterPlaceholder:Ct,pleaseEnterFieldCode:bt,pleaseEnterForm:St,pleaseEnterList:It,pleaseEnterProcess:Mt,pleaseEnterLabel:yt,pleaseEnterValue:$t,bizKeyNotBindFiled:wt,pleaseEnterNumberRange:Rt,pleaseEnterAValueGreaterThanMin:Lt,pleaseEnterAValueLessThanMax:xt,numberRangeSetError:Ut,stringRangeError:Nt,attachmentMaxSize:Tt,pleaseEnterTotalScoreSetting:_t,theTotalScoreMustNotBeLessThan1:Pt,scoreDefaultValueRange:Vt,attachmentLimitError:Gt,PleaseReselectTheOptionalQuantity:kt,TheMaximumLengthIsGreaterThanTheMinimumLength:Ht,TheMinimumLengthIsGreaterThanTheMaximumLength:zt,PleaseSelectTheCorrectOptionSettings:qt,optionIdIsRepeat:jt,optionIsRequired:Ot,pleaseEnterDataCode:Kt,pleaseEnterValueFieldCode:Wt,pleaseEnterSvcCode:Xt,pleaseBindAtLeastOneDisplayValue:Qt,pleaseSelectProvince:Jt,pleaseSelectCity:Zt,pleaseSelectDistrict:Yt,limitRowsCannotBeLessThan0:en,TheNumberOfRowsCannotBeLessThanMinRows:un,pleaseEnterColumnWidth:tn,pleaseSetTheLogicalRelationshipOfAllRuleConditions:nn,pleaseCompleteAllRulesAndConditions:an,pleaseSelectControl:rn,pleaseSelectDashboard:sn,theViewNameCannotBeEmpty:ln,pleaseSelectOcrType:on,pleaseSelectAtLeastOneFieldToFillIn:cn,pleaseChooseAtLeastOne:En,pleaseEnterButtonContent:Bn,pleaseEnterDataCodeInDataSetting:hn,pleaseEnterValueFieldCodeInDataSetting:An,pleaseEnterSvcCodeInDataSetting:pn,pleaseBindAtLeastOneDisplayValueInDataSetting:mn,rootNodeIsRequiredInDataSetting:Fn,pleaseEnterMaxHeight:fn,pleaseEnter:vn,pleaseEnterWatermark:dn,pleaseEnterFileName:gn,pleaseUploadAtLeastOnePrintTemplate:Dn,pleaseAssignBusiness:Cn,pleaseAssignExternal:bn},In={zhCN:au,enUS:At,jaJP:Sn},w;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(w||(w={}));var R;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(R||(R={}));var Mn="zh-CN",yn=function(){};function A(e,u,t){return u in e?Object.defineProperty(e,u,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[u]=t,e}var L;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(L||(L={}));var E;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(E||(E={}));var B;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(B||(B={}));var h;h={},A(h,B.ARRAY,E.ARRAY_COLUMN),A(h,B.AUTO_NUMBER,E.AUTO_NUMBER_COLUMN),A(h,B.DECIMAL,E.DECIMAL_COLUMN),A(h,B.DEPARTMENTS,E.DEPARTMENT_COLUMN),A(h,B.FILE,E.FILE_COLUMN),A(h,B.IMAGE,E.IMAGE_COLUMN),A(h,B.ADDRESS,E.LOCATION_COLUMN),A(h,B.EMPLOYEES,E.EMPLOYEE_COLUMN),A(h,B.TEXT,E.TEXT_COLUMN),A(h,B.TIMESCOPE,E.TIMESCOPE_COLUMN),A(h,B.TIMESTAMP,E.TIMESTAMP_COLUMN),A(h,B.VARCHAR,E.VARCHAR_COLUMN),A(h,B.RELATION,E.VARCHAR_COLUMN);var x;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(x||(x={}));function $n(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function wn(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function Rn(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function C(e,u,t){return Rn()?C=Reflect.construct:C=function(a,o,m){var p=[null];p.push.apply(p,o);var v=Function.bind.apply(a,p),b=new v;return m&&g(b,m.prototype),b},C.apply(null,arguments)}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},d(e)}function Ln(e,u){if(typeof u!="function"&&u!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(u&&u.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),u&&g(e,u)}function xn(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Un(e,u){return u&&(Nn(u)==="object"||typeof u=="function")?u:$n(e)}function g(e,u){return g=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},g(e,u)}var Nn=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function M(e){var u=typeof Map=="function"?new Map:void 0;return M=function(n){if(n===null||!xn(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof u!="undefined"){if(u.has(n))return u.get(n);u.set(n,a)}function a(){return C(n,arguments,d(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),g(a,n)},M(e)}function Tn(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function _n(e){var u=Tn();return function(){var n=d(e),a;if(u){var o=d(this).constructor;a=Reflect.construct(n,arguments,o)}else a=n.apply(this,arguments);return Un(this,a)}}function Pn(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Vn=function(e){Ln(t,e);var u=_n(t);function t(n){wn(this,t);var a;return a=u.call(this,n),a.name="\u{1F4A5} Driven Error",a.message=n?Pn(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return t}(M(Error));function Gn(e){throw new Vn(e)}var kn=Object.prototype.toString;function U(e,u){return kn.call(e)==="[object "+u+"]"}function Hn(e){return U(e,"String")}function zn(e){return U(e,"Promise")}var qn=function(){function e(u){var t,n;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((n=(t=u.messages)!==null&&t!==void 0?t:this.getPreImport(u.locale))!==null&&n!==void 0?n:{}),u.variableRegExp&&(this.variableRegExp=u.variableRegExp),this.setLocale(u.locale)}return e.prototype.setLocale=function(u){var t=this;this.locale=u,this._messageCache.clear();var n=this.getMessageData();zn(n)?n.then(function(a){t._messageCache.clear(),t.messages[t.localeInMessageKey]=a}):this.messages[this.localeInMessageKey]=n},e.prototype.getMessageData=function(){var u=this._messages[this.localeInMessageKey];return typeof u=="function"?u():u},e.prototype.translate=function(u,t,n){var a=this.getMessage(u);return a?this.formatMessage(a,n):this.formatMessage(t,n)},e.prototype.getMessage=function(u){if(this._messageCache.has(u))return this._messageCache.get(u);var t=this.getPathArray(u),n=t.reduce(function(a,o,m,p){if(a!==void 0){var v=a[o];if(!(m===p.length-1&&!Hn(v)))return v}},this.message);return this._messageCache.set(u,n),n},e.prototype.formatMessage=function(u,t){return t?u.replace(this.variableRegExp,function(n,a){var o=t[a];return o!==void 0?String(o):n}):u},e.prototype.getPreImport=function(u){var t;if(window.okI18nPreImport){var n=this.getLocaleInMessageKey(u);return window.okI18nPreImport.hasOwnProperty(n)?window.okI18nPreImport:(t={},t[n]=window.okI18nPreImport,t)}},e.prototype.getPathArray=function(u){return u.split(".")},e.prototype.getLocaleInMessageKey=function(u){return u.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var u;return(u=this.messages[this.localeInMessageKey])!==null&&u!==void 0?u:{}},enumerable:!1,configurable:!0}),e}();function jn(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}var N=function(){function e(){jn(this,e)}return e.getMessage=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(t,"",n)},e.resetI18n=function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Mn;return new qn({locale:t,messages:In})},e.setLocale=function(t){return this.$i18n.setLocale(t)},e}();N.$i18n=N.resetI18n();var On=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Kn={exports:{}};(function(e){(function(u){var t=function(r,i,F){if(!b(i)||sa(i)||la(i)||oa(i)||v(i))return i;var f,D=0,z=0;if(ia(i))for(f=[],z=i.length;D<z;D++)f.push(t(r,i[D],F));else{f={};for(var $ in i)Object.prototype.hasOwnProperty.call(i,$)&&(f[r($,F)]=t(r,i[$],F))}return f},n=function(r,i){i=i||{};var F=i.separator||"_",f=i.split||/(?=[A-Z])/;return r.split(f).join(F)},a=function(r){return ca(r)?r:(r=r.replace(/[\-_\s]+(.)?/g,function(i,F){return F?F.toUpperCase():""}),r.substr(0,1).toLowerCase()+r.substr(1))},o=function(r){var i=a(r);return i.substr(0,1).toUpperCase()+i.substr(1)},m=function(r,i){return n(r,i).toLowerCase()},p=Object.prototype.toString,v=function(r){return typeof r=="function"},b=function(r){return r===Object(r)},ia=function(r){return p.call(r)=="[object Array]"},sa=function(r){return p.call(r)=="[object Date]"},la=function(r){return p.call(r)=="[object RegExp]"},oa=function(r){return p.call(r)=="[object Boolean]"},ca=function(r){return r=r-0,r===r},y=function(r,i){var F=i&&"process"in i?i.process:i;return typeof F!="function"?r:function(f,D){return F(f,r,D)}},H={camelize:a,decamelize:m,pascalize:o,depascalize:m,camelizeKeys:function(r,i){return t(y(a,i),r)},decamelizeKeys:function(r,i){return t(y(m,i),r,i)},pascalizeKeys:function(r,i){return t(y(o,i),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=H:u.humps=H})(On)})(Kn);function T(e){return Object.prototype.toString.call(e)==="[object Object]"}class _{constructor(u){var t,n,a;this.type=u.type,this.label=u.label,this.key=u.key,this.component=u.component,this.effect=(t=u.effect)!=null?t:{},this.scopeEffect=(n=u.scopeEffect)!=null?n:yn,this.defaultValue=u.defaultValue,this.validator=u.validator,this.props=(a=u.props)!=null?a:new l,this.effectKeys=Object.keys(this.effect)}filterEffects(u){return u===""?Object.values(this.effect):this.effectKeys.filter(t=>new RegExp(`^${t}(\\.\\w+)*$`).test(u)).map(t=>this.effect[t])}callEffectFn(u,t){try{const n=u.apply(null,t);T(n)&&Object.assign(this.props,n)}catch(n){Gn(`effect error
2
+ ${n}`)}}callEffect(u,...t){this.filterEffects(u).forEach(n=>this.callEffectFn(n,t))}callScopeEffect(...u){this.callEffectFn(this.scopeEffect,u)}}class P{constructor(u){var t,n;this.type="group",this.title=(t=u.title)!=null?t:"",this.required=(n=u.required)!=null?n:!1,this.items=u.items,this.tips=u.tips}}function V(e){return"type"in e&&e.type==="tab"}class G{constructor(u){this.type="tab",this.title=u.title,this.items=u.items}}class Wn extends l{constructor(u){super(u),T(u)&&Object.entries(u).forEach(([t,n])=>{this[t]=n})}}class Xn extends l{constructor(u){var t,n,a,o;super(u),this.maxLength=(t=u==null?void 0:u.maxLength)!=null?t:"",this.minLength=(n=u==null?void 0:u.minLength)!=null?n:"",this.placeholder=(a=u==null?void 0:u.placeholder)!=null?a:"",this.i18n=(o=u==null?void 0:u.i18n)!=null?o:!1}}class Qn extends l{constructor(u){var t,n,a;super(u),this.max=(t=u==null?void 0:u.max)!=null?t:"",this.min=(n=u==null?void 0:u.min)!=null?n:"",this.placeholder=(a=u==null?void 0:u.placeholder)!=null?a:""}}class Jn extends l{constructor(u){var t,n,a;super(u),this.showType=(t=u==null?void 0:u.showType)!=null?t:"switch",this.tips=(n=u==null?void 0:u.tips)!=null?n:"",this.disabled=(a=u==null?void 0:u.disabled)!=null?a:!1}}class Zn extends l{constructor(u){var t;super(u),this.options=(t=u==null?void 0:u.options)!=null?t:[]}}class Yn extends l{constructor(u){var t,n;super(u),this.placeholder=(t=u==null?void 0:u.placeholder)!=null?t:"",this.options=(n=u==null?void 0:u.options)!=null?n:[]}}class ea extends l{constructor(u){var t,n;super(u),this.options=(t=u==null?void 0:u.options)!=null?t:[],this.showType=(n=u==null?void 0:u.showType)!=null?n:"outline"}}class ua extends l{constructor(u){var t,n,a,o,m,p;super(u),this.maxLength=(t=u==null?void 0:u.maxLength)!=null?t:"",this.minLength=(n=u==null?void 0:u.minLength)!=null?n:"",this.placeholder=(a=u==null?void 0:u.placeholder)!=null?a:"",this.maxRows=(o=u==null?void 0:u.maxRows)!=null?o:"",this.minRows=(m=u==null?void 0:u.minRows)!=null?m:"",this.i18n=(p=u==null?void 0:u.i18n)!=null?p:!1}}function ta(e,u){switch(e){case"input":return new Xn(u);case"textarea":return new ua(u);case"input-number":return new Qn(u);case"switch":return new Jn(u);case"radio":return new ea(u);case"checkbox":return new Zn(u);case"select":return new Yn(u);default:return new Wn(u)}}function na(e){return function(u){const t=e.get(u);if(!!t)return new _(I(S({},t),{props:ta(t.component,"props"in t?t.props:void 0)}))}}function aa(e){const u=e.fields.reduce((a,o)=>(a.set(o.key,o),a),new Map);function t(a){return new P(I(S({},a),{items:a.items.map(na(u)).filter(Boolean)}))}function n(a){return a.map(t)}return e.groups.map(a=>V(a)?new G(I(S({},a),{items:n(a.items)})):t(a))}function k(){return[{label:"\u9690\u85CF",key:"isHide",type:"boolean",component:"switch"},{key:"superSetting",component:"super-setting"},{key:"style.width",component:"styleComponent",props:{configKey:"style.widthConfig",options:["px","%","fill","hug"]},scopeEffect(e,u){const{oldParent:t,newParent:n,instance:a}=u;if((t==null?void 0:t.type)==="advanced-container"&&n.type==="positioning-container"&&(e.setInstance(a,"style.width",""),e.setInstance(a,"style.widthConfig","fill")),n)return{visible:n.type==="advanced-container"}}},{key:"style.height",component:"styleComponent",props:{configKey:"style.heightConfig",options:["px","%","fill","hug"]},scopeEffect(e,u){const{oldParent:t,newParent:n,instance:a}=u;if((t==null?void 0:t.type)==="advanced-container"&&n.type==="positioning-container"&&(e.setInstance(a,"style.height",""),e.setInstance(a,"style.heightConfig","fill")),u.newParent)return{visible:u.newParent.type==="advanced-container"}}}]}function ra(e){return[...k(),{type:"DataBind",key:"dataBind",component:"data-bind",defaultValue:e==null?void 0:e.dataBind},{key:"caption",type:"string",component:"input",props:{maxLength:80,i18n:!0},defaultValue:e==null?void 0:e.caption,validator(u){if(!u)return"\u6807\u9898\u5FC5\u586B"}},{label:"\u9690\u85CF\u6807\u9898",key:"isHideCaption",type:"boolean",component:"switch",defaultValue:e==null?void 0:e.isHideCaption,props:{showType:"checkbox"},scopeEffect(u,t){var n,a;if(((n=t.current)==null?void 0:n.type)!==((a=t.from)==null?void 0:a.type))return t.current.type==="subtable"&&u.setInstance(t.control,"isHideCaption",!0),{visible:t.current.type!=="subtable"}}},{key:"labelPosition",type:"string",component:"radio",defaultValue:e==null?void 0:e.labelPosition,props:{showType:"solid",options:[{label:"\u4E0A\u4E0B\u5E03\u5C40",value:"top"},{label:"\u5DE6\u53F3\u5E03\u5C40",value:"left"}]}},{key:"defaultState",type:"string",component:"radio",defaultValue:e==null?void 0:e.defaultState,props:{showType:"solid",options:[{label:"\u666E\u901A",value:"default"},{label:"\u53EA\u8BFB",value:"readonly"}]}},{label:"\u5FC5\u586B",key:"required",type:"boolean",component:"switch",defaultValue:e==null?void 0:e.required},{label:"\u63D0\u793A\u6587\u5B57",key:"placeholder",type:"string",component:"input",defaultValue:e==null?void 0:e.placeholder,props:{maxLength:80,i18n:!0}}]}s.Group=P,s.Setting=_,s.Tab=G,s.createBaseFields=k,s.createFormBaseFields=ra,s.defineInstance=c,s.initSettings=aa,s.isTabSchema=V,Object.defineProperty(s,"__esModule",{value:!0})});
@@ -62,12 +62,12 @@ interface CustomSchema extends BaseSchema<CustomProps> {
62
62
  component: string;
63
63
  props?: Partial<CustomProps>;
64
64
  }
65
- export type SettingSchemas = InputSchema | InputNumberSchema | TextareaSchema | SwitchSchema | SelectSchema | CheckboxSchema | RadioSchema | CustomSchema;
65
+ export declare type SettingSchemas = InputSchema | InputNumberSchema | TextareaSchema | SwitchSchema | SelectSchema | CheckboxSchema | RadioSchema | CustomSchema;
66
66
  export interface RuntimeValidator {
67
67
  (props: any, value: unknown, i18n: string): string | boolean | void;
68
68
  }
69
- export type FieldSchema = SettingSchemas | BaseSchema<{}>;
70
- export type GroupsSchema = GroupSchema[] | TabSchema[];
69
+ export declare type FieldSchema = SettingSchemas | BaseSchema<{}>;
70
+ export declare type GroupsSchema = GroupSchema[] | TabSchema[];
71
71
  export interface DefineInstanceParams {
72
72
  fields: FieldSchema[];
73
73
  groups: GroupsSchema;
@@ -9,6 +9,6 @@ import { SelectProps } from './props/select';
9
9
  import { RadioProps } from './props/radio';
10
10
  import { TextareaProps } from './props/textarea';
11
11
  import { Tab } from './schema/tab';
12
- export type Props = CustomProps | InputProps | TextareaProps | InputNumberProps | SwitchProps | CheckboxProps | RadioProps | SelectProps;
13
- export type Settings = Group[] | Tab[];
12
+ export declare type Props = CustomProps | InputProps | TextareaProps | InputNumberProps | SwitchProps | CheckboxProps | RadioProps | SelectProps;
13
+ export declare type Settings = Group[] | Tab[];
14
14
  export declare function initSettings(params: DefineInstanceParams): Settings;
@@ -2,8 +2,8 @@ import { BaseProps } from '../props/base';
2
2
  export interface EffectFn<Props extends object> {
3
3
  (driven: any, payload: any): void | Partial<Props>;
4
4
  }
5
- export type SupportedDataTypes = 'string' | 'boolean' | 'number' | 'object' | 'array' | 'DataBind' | 'DataSourceBind';
6
- export type Validator<P extends any = any, T extends any = any> = (props: P, value: T) => boolean | string | void;
5
+ export declare type SupportedDataTypes = 'string' | 'boolean' | 'number' | 'object' | 'array' | 'DataBind' | 'DataSourceBind';
6
+ export declare type Validator<P extends any = any, T extends any = any> = (props: P, value: T) => boolean | string | void;
7
7
  export interface BaseSchema<Props extends object> {
8
8
  /**
9
9
  * 数据类型,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-settings",
3
- "version": "1.8.1-beta.2",
3
+ "version": "2.0.1",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -22,9 +22,9 @@
22
22
  "postpublish": "node ../../scripts/postpublish.js"
23
23
  },
24
24
  "dependencies": {
25
- "@byteluck-fe/model-driven-core": "1.8.1-beta.2",
26
- "@byteluck-fe/model-driven-shared": "1.8.1-beta.1",
25
+ "@byteluck-fe/model-driven-core": "2.0.1",
26
+ "@byteluck-fe/model-driven-shared": "2.0.1",
27
27
  "tslib": "^2.1.0"
28
28
  },
29
- "gitHead": "dab568d1d94fe0e0688d7bfb1ba894291d5d1c50"
29
+ "gitHead": "935fe6ee64cd5930493650e92d4eccf03c610966"
30
30
  }