@byteluck-fe/model-driven-settings 2.6.0-alpha.1 → 2.6.0-alpha.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/default/createBaseFields.js +29 -29
- package/dist/esm/default/createFormBaseFields.js +45 -45
- package/dist/esm/default/index.js +2 -2
- package/dist/esm/index.js +4 -4
- package/dist/esm/initSettings.js +21 -45
- package/dist/esm/props/base.js +4 -4
- package/dist/esm/props/checkbox.js +5 -5
- package/dist/esm/props/custom.js +4 -4
- package/dist/esm/props/input-number.js +9 -9
- package/dist/esm/props/input.js +11 -11
- package/dist/esm/props/radio.js +7 -7
- package/dist/esm/props/select.js +7 -7
- package/dist/esm/props/switch.js +9 -9
- package/dist/esm/props/textarea.js +15 -15
- package/dist/esm/schema/group.js +5 -5
- package/dist/esm/schema/index.js +3 -3
- package/dist/esm/schema/setting.js +74 -47
- package/dist/esm/schema/tab.js +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/types/default/createBaseFields.d.ts +2 -2
- package/dist/types/default/createFormBaseFields.d.ts +3 -3
- package/dist/types/default/index.d.ts +2 -2
- package/dist/types/defineInstance.d.ts +79 -79
- package/dist/types/index.d.ts +4 -4
- package/dist/types/initSettings.d.ts +14 -14
- package/dist/types/props/base.d.ts +16 -16
- package/dist/types/props/checkbox.d.ts +5 -5
- package/dist/types/props/custom.d.ts +5 -5
- package/dist/types/props/input-number.d.ts +7 -7
- package/dist/types/props/input.d.ts +8 -8
- package/dist/types/props/radio.d.ts +6 -6
- package/dist/types/props/select.d.ts +6 -6
- package/dist/types/props/switch.d.ts +7 -7
- package/dist/types/props/textarea.d.ts +10 -10
- package/dist/types/schema/group.d.ts +18 -18
- package/dist/types/schema/index.d.ts +3 -3
- package/dist/types/schema/setting.d.ts +69 -69
- package/dist/types/schema/tab.d.ts +15 -15
- package/package.json +4 -4
package/dist/esm/schema/group.js
CHANGED
|
@@ -6,11 +6,11 @@ function _classCallCheck(instance, Constructor) {
|
|
|
6
6
|
export var Group = function Group(schema) {
|
|
7
7
|
"use strict";
|
|
8
8
|
_classCallCheck(this, Group);
|
|
9
|
-
this.type =
|
|
10
|
-
var
|
|
11
|
-
this.title = (
|
|
12
|
-
var
|
|
13
|
-
this.required = (
|
|
9
|
+
this.type = 'group';
|
|
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
|
};
|
package/dist/esm/schema/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
1
|
+
export * from './setting';
|
|
2
|
+
export * from './group';
|
|
3
|
+
export * from './tab';
|
|
@@ -3,8 +3,22 @@ function _classCallCheck(instance, Constructor) {
|
|
|
3
3
|
throw new TypeError("Cannot call a class as a function");
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
function _defineProperties(target, props) {
|
|
7
|
+
for(var i = 0; i < props.length; i++){
|
|
8
|
+
var descriptor = props[i];
|
|
9
|
+
descriptor.enumerable = descriptor.enumerable || false;
|
|
10
|
+
descriptor.configurable = true;
|
|
11
|
+
if ("value" in descriptor) descriptor.writable = true;
|
|
12
|
+
Object.defineProperty(target, descriptor.key, descriptor);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
function _createClass(Constructor, protoProps, staticProps) {
|
|
16
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
17
|
+
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
18
|
+
return Constructor;
|
|
19
|
+
}
|
|
20
|
+
import { BaseProps } from '../props/base';
|
|
21
|
+
import { error, isPlainObject, noop } from '@byteluck-fe/model-driven-shared';
|
|
8
22
|
export var Setting = /*#__PURE__*/ function() {
|
|
9
23
|
"use strict";
|
|
10
24
|
function Setting(schema) {
|
|
@@ -13,57 +27,70 @@ export var Setting = /*#__PURE__*/ function() {
|
|
|
13
27
|
this.label = schema.label;
|
|
14
28
|
this.key = schema.key;
|
|
15
29
|
this.component = schema.component;
|
|
16
|
-
var
|
|
17
|
-
this.effect = (
|
|
18
|
-
var
|
|
19
|
-
this.scopeEffect = (
|
|
30
|
+
var _effect;
|
|
31
|
+
this.effect = (_effect = schema.effect) !== null && _effect !== void 0 ? _effect : {};
|
|
32
|
+
var _scopeEffect;
|
|
33
|
+
this.scopeEffect = (_scopeEffect = schema.scopeEffect) !== null && _scopeEffect !== void 0 ? _scopeEffect : noop;
|
|
20
34
|
this.defaultValue = schema.defaultValue;
|
|
21
35
|
this.validator = schema.validator;
|
|
22
|
-
var
|
|
23
|
-
this.props = (
|
|
36
|
+
var _props;
|
|
37
|
+
this.props = (_props = schema.props) !== null && _props !== void 0 ? _props : new BaseProps();
|
|
24
38
|
// private init
|
|
25
39
|
this.effectKeys = Object.keys(this.effect);
|
|
26
40
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
41
|
+
_createClass(Setting, [
|
|
42
|
+
{
|
|
43
|
+
key: "filterEffects",
|
|
44
|
+
value: function filterEffects(effectKey) {
|
|
45
|
+
var _this = this;
|
|
46
|
+
if (effectKey === '') {
|
|
47
|
+
return Object.values(this.effect);
|
|
48
|
+
}
|
|
49
|
+
return this.effectKeys.filter(function(key) {
|
|
50
|
+
// 触发规则:effectKeys => effectFns
|
|
51
|
+
// dataBind => dataBind
|
|
52
|
+
// dataBind.fieldCode => dataBind、dataBind.fieldCode
|
|
53
|
+
var regexp = new RegExp("^".concat(key, "(\\.\\w+)*$"));
|
|
54
|
+
return regexp.test(effectKey);
|
|
55
|
+
}).map(function(key) {
|
|
56
|
+
return _this.effect[key];
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
key: "callEffectFn",
|
|
62
|
+
value: function callEffectFn(effectFn, args) {
|
|
63
|
+
try {
|
|
64
|
+
var result = effectFn.apply(null, args);
|
|
65
|
+
if (isPlainObject(result)) {
|
|
66
|
+
Object.assign(this.props, result);
|
|
67
|
+
}
|
|
68
|
+
} catch (e) {
|
|
69
|
+
error("effect error \n ".concat(e));
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
key: "callEffect",
|
|
75
|
+
value: function callEffect(effectKey) {
|
|
76
|
+
for(var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++){
|
|
77
|
+
args[_key - 1] = arguments[_key];
|
|
78
|
+
}
|
|
79
|
+
var _this = this;
|
|
80
|
+
this.filterEffects(effectKey).forEach(function(fn) {
|
|
81
|
+
return _this.callEffectFn(fn, args);
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
key: "callScopeEffect",
|
|
87
|
+
value: function callScopeEffect() {
|
|
88
|
+
for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){
|
|
89
|
+
args[_key] = arguments[_key];
|
|
90
|
+
}
|
|
91
|
+
this.callEffectFn(this.scopeEffect, args);
|
|
48
92
|
}
|
|
49
|
-
} catch (e) {
|
|
50
|
-
error("effect error \n ".concat(e));
|
|
51
|
-
}
|
|
52
|
-
};
|
|
53
|
-
_proto.callEffect = function callEffect(effectKey) {
|
|
54
|
-
for(var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++){
|
|
55
|
-
args[_key - 1] = arguments[_key];
|
|
56
|
-
}
|
|
57
|
-
var _this = this;
|
|
58
|
-
this.filterEffects(effectKey).forEach(function(fn) {
|
|
59
|
-
return _this.callEffectFn(fn, args);
|
|
60
|
-
});
|
|
61
|
-
};
|
|
62
|
-
_proto.callScopeEffect = function callScopeEffect() {
|
|
63
|
-
for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){
|
|
64
|
-
args[_key] = arguments[_key];
|
|
65
93
|
}
|
|
66
|
-
|
|
67
|
-
};
|
|
94
|
+
]);
|
|
68
95
|
return Setting;
|
|
69
96
|
}();
|
package/dist/esm/schema/tab.js
CHANGED
|
@@ -4,12 +4,12 @@ function _classCallCheck(instance, Constructor) {
|
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
6
|
export function isTabSchema(schema) {
|
|
7
|
-
return
|
|
7
|
+
return 'type' in schema && schema.type === 'tab';
|
|
8
8
|
}
|
|
9
9
|
export var Tab = function Tab(schema) {
|
|
10
10
|
"use strict";
|
|
11
11
|
_classCallCheck(this, Tab);
|
|
12
|
-
this.type =
|
|
12
|
+
this.type = 'tab';
|
|
13
13
|
this.title = schema.title;
|
|
14
14
|
this.items = schema.items;
|
|
15
15
|
};
|
package/dist/index.umd.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var fa=Object.defineProperty,ma=Object.defineProperties;var Fa=Object.getOwnPropertyDescriptors;var K=Object.getOwnPropertySymbols;var va=Object.prototype.hasOwnProperty,da=Object.prototype.propertyIsEnumerable;var W=(c,B,E)=>B in c?fa(c,B,{enumerable:!0,configurable:!0,writable:!0,value:E}):c[B]=E,y=(c,B)=>{for(var E in B||(B={}))va.call(B,E)&&W(c,E,B[E]);if(K)for(var E of K(B))da.call(B,E)&&W(c,E,B[E]);return c},I=(c,B)=>ma(c,Fa(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 X="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",J="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Q="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Z="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Y="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",ee="{caption}\u5FC5\u586B",ue="\u8BF7\u8F93\u5165\u6807\u9898",te="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ne="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",ae="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",re="\u8BF7\u7ED1\u5B9A\u8868\u5355",ie="\u8BF7\u7ED1\u5B9A\u5217\u8868",le="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",se="\u8BF7\u8F93\u5165\u663E\u793A\u503C",oe="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ce="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Ee="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Be="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",he="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Ae="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",pe="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",fe="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",me="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Fe="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",ve="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",de="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",ge="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",De="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Ce="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",be="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Se="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",ye="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Ie="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Me="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",$e="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",we="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Re="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Le="\u8BF7\u9009\u62E9\u7701",xe="\u8BF7\u9009\u62E9\u5E02",Ue="\u8BF7\u9009\u62E9\u533A",Ne="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",_e="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Te="\u8BF7\u8F93\u5165\u5217\u5BBD",Pe="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Ve="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",ke="\u8BF7\u9009\u62E9\u63A7\u4EF6",Ge="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",ze="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",He="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Oe="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",je="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",qe="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Ke="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",We="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Xe="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Je="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Qe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ze="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ye="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",eu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",uu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",tu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",nu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",au="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ru="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",iu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",lu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",su={isNotNumber:X,isNotString:J,isNotObject:Q,isNotArray:Z,isNotBoolean:Y,runtimeRequired:ee,pleaseEnterCaption:ue,pleaseEnterCaptionTip:te,pleaseEnterPlaceholder:ne,pleaseEnterFieldCode:ae,pleaseEnterForm:re,pleaseEnterList:ie,pleaseEnterProcess:le,pleaseEnterLabel:se,pleaseEnterValue:oe,bizKeyNotBindFiled:ce,pleaseSelectOneField:Ee,pleaseEnterNumberRange:Be,pleaseEnterAValueGreaterThanMin:he,pleaseEnterAValueLessThanMax:Ae,numberRangeSetError:pe,stringRangeError:fe,attachmentMaxSize:me,pleaseEnterTotalScoreSetting:Fe,theTotalScoreMustNotBeLessThan1:ve,scoreDefaultValueRange:de,attachmentLimitError:ge,PleaseReselectTheOptionalQuantity:De,TheMaximumLengthIsGreaterThanTheMinimumLength:Ce,TheMinimumLengthIsGreaterThanTheMaximumLength:be,PleaseSelectTheCorrectOptionSettings:Se,optionIdIsRepeat:ye,optionIsRequired:Ie,pleaseEnterDataCode:Me,pleaseEnterValueFieldCode:$e,pleaseEnterSvcCode:we,pleaseBindAtLeastOneDisplayValue:Re,pleaseSelectProvince:Le,pleaseSelectCity:xe,pleaseSelectDistrict:Ue,limitRowsCannotBeLessThan0:Ne,TheNumberOfRowsCannotBeLessThanMinRows:_e,pleaseEnterColumnWidth:Te,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Pe,pleaseCompleteAllRulesAndConditions:Ve,pleaseSelectControl:ke,pleaseSelectAtLeastOneColumn:Ge,pleaseSelectFillBackMode:ze,pleaseSelectDashboard:He,rootNodeIsRequired:Oe,theViewNameCannotBeEmpty:je,pleaseSelectOcrType:qe,pleaseSelectAtLeastOneFieldToFillIn:Ke,pleaseChooseAtLeastOne:We,pleaseEnterButtonContent:Xe,pleaseEnterDataCodeInDataSetting:Je,pleaseEnterValueFieldCodeInDataSetting:Qe,pleaseEnterSvcCodeInDataSetting:Ze,pleaseBindAtLeastOneDisplayValueInDataSetting:Ye,rootNodeIsRequiredInDataSetting:eu,pleaseEnterMaxHeight:uu,pleaseEnter:tu,pleaseEnterWatermark:nu,pleaseEnterFileName:au,pleaseUploadAtLeastOnePrintTemplate:ru,pleaseAssignBusiness:iu,pleaseAssignExternal:lu},ou="Please enter a number",cu="Please enter a string",Eu="Please enter an object",Bu="Please enter an array",hu="Please enter a boolean",Au="{caption} Required",pu="Please enter the title",fu="Please enter the bubble prompt",mu="Please enter the prompt text",Fu="Please bind data items",vu="Please bind the form",du="Please bind the list",gu="Please bind the process",Du="Please enter the displayed value",Cu="Please enter the stored value",bu="The document number is not bound to the data item",Su="Please select at least one display field",yu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Iu="Please enter a value greater than or equal to {min}",Mu="Please enter a value less than or equal to {max}",$u="The value range is set incorrectly",wu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Ru="The attachment size must be between 0MB and 1000MB",Lu="Please fill in the total score setting",xu="The total score cannot be less than 1",Uu="The default value must be between {min} and {max}",Nu="The number of attachments uploaded must be between {min} and {max}",_u="Please re-select the optional quantity",Tu="The maximum length of the control must be greater than the minimum length",Pu="The minimum length of the control must be less than the maximum length",Vu="Please select the correct option setting",ku="Option ID cannot be repeated",Gu="Please enter at least one option",zu="Please bind the data source",Hu="Please bind the stored value",Ou="Please bind the service",ju="At least one display value must be bound",qu="Please select a province",Ku="Please select a city",Wu="Please select a district",Xu="The minimum number of lines to fill in cannot be less than 0",Ju="The number of rows cannot be less than {min} rows",Qu="Please enter the column width",Zu="Please set the logical relationship of all rule conditions",Yu="Please complete all rules and conditions",et="please select control",ut="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",tt="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",nt="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",at="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",rt="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",it="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",lt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",st="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ot="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ct="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Et="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Bt="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ht="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",At="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",pt="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ft="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",mt="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ft="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",vt={isNotNumber:ou,isNotString:cu,isNotObject:Eu,isNotArray:Bu,isNotBoolean:hu,runtimeRequired:Au,pleaseEnterCaption:pu,pleaseEnterCaptionTip:fu,pleaseEnterPlaceholder:mu,pleaseEnterFieldCode:Fu,pleaseEnterForm:vu,pleaseEnterList:du,pleaseEnterProcess:gu,pleaseEnterLabel:Du,pleaseEnterValue:Cu,bizKeyNotBindFiled:bu,pleaseSelectOneField:Su,pleaseEnterNumberRange:yu,pleaseEnterAValueGreaterThanMin:Iu,pleaseEnterAValueLessThanMax:Mu,numberRangeSetError:$u,stringRangeError:wu,attachmentMaxSize:Ru,pleaseEnterTotalScoreSetting:Lu,theTotalScoreMustNotBeLessThan1:xu,scoreDefaultValueRange:Uu,attachmentLimitError:Nu,PleaseReselectTheOptionalQuantity:_u,TheMaximumLengthIsGreaterThanTheMinimumLength:Tu,TheMinimumLengthIsGreaterThanTheMaximumLength:Pu,PleaseSelectTheCorrectOptionSettings:Vu,optionIdIsRepeat:ku,optionIsRequired:Gu,pleaseEnterDataCode:zu,pleaseEnterValueFieldCode:Hu,pleaseEnterSvcCode:Ou,pleaseBindAtLeastOneDisplayValue:ju,pleaseSelectProvince:qu,pleaseSelectCity:Ku,pleaseSelectDistrict:Wu,limitRowsCannotBeLessThan0:Xu,TheNumberOfRowsCannotBeLessThanMinRows:Ju,pleaseEnterColumnWidth:Qu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Zu,pleaseCompleteAllRulesAndConditions:Yu,pleaseSelectControl:et,pleaseSelectDashboard:ut,theViewNameCannotBeEmpty:tt,pleaseSelectOcrType:nt,pleaseSelectAtLeastOneFieldToFillIn:at,pleaseChooseAtLeastOne:rt,pleaseEnterButtonContent:it,pleaseEnterDataCodeInDataSetting:lt,pleaseEnterValueFieldCodeInDataSetting:st,pleaseEnterSvcCodeInDataSetting:ot,pleaseBindAtLeastOneDisplayValueInDataSetting:ct,rootNodeIsRequiredInDataSetting:Et,pleaseEnterMaxHeight:Bt,pleaseEnter:ht,pleaseEnterWatermark:At,pleaseEnterFileName:pt,pleaseUploadAtLeastOnePrintTemplate:ft,pleaseAssignBusiness:mt,pleaseAssignExternal:Ft},dt="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",gt="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Dt="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ct="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bt="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",St="{caption}\u5FC5\u9808",yt="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",It="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Mt="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$t="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",wt="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Rt="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Lt="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",xt="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ut="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Nt="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",_t="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Tt="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Pt="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Vt="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",kt="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Gt="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",zt="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ht="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ot="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",jt="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",qt="\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",Wt="\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",Xt="\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",Qt="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Zt="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Yt="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",en="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",un="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",tn="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",nn="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",an="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",rn="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ln="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",sn="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",on="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",cn="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",En="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Bn="please select control",hn="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",An="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",pn="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",fn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",mn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Fn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",vn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",dn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",gn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Dn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Cn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",bn="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Sn="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",yn="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",In="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Mn="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",$n="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",wn="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Rn={isNotNumber:dt,isNotString:gt,isNotObject:Dt,isNotArray:Ct,isNotBoolean:bt,runtimeRequired:St,pleaseEnterCaption:yt,pleaseEnterCaptionTip:It,pleaseEnterPlaceholder:Mt,pleaseEnterFieldCode:$t,pleaseEnterForm:wt,pleaseEnterList:Rt,pleaseEnterProcess:Lt,pleaseEnterLabel:xt,pleaseEnterValue:Ut,bizKeyNotBindFiled:Nt,pleaseSelectOneField:_t,pleaseEnterNumberRange:Tt,pleaseEnterAValueGreaterThanMin:Pt,pleaseEnterAValueLessThanMax:Vt,numberRangeSetError:kt,stringRangeError:Gt,attachmentMaxSize:zt,pleaseEnterTotalScoreSetting:Ht,theTotalScoreMustNotBeLessThan1:Ot,scoreDefaultValueRange:jt,attachmentLimitError:qt,PleaseReselectTheOptionalQuantity:Kt,TheMaximumLengthIsGreaterThanTheMinimumLength:Wt,TheMinimumLengthIsGreaterThanTheMaximumLength:Xt,PleaseSelectTheCorrectOptionSettings:Jt,optionIdIsRepeat:Qt,optionIsRequired:Zt,pleaseEnterDataCode:Yt,pleaseEnterValueFieldCode:en,pleaseEnterSvcCode:un,pleaseBindAtLeastOneDisplayValue:tn,pleaseSelectProvince:nn,pleaseSelectCity:an,pleaseSelectDistrict:rn,limitRowsCannotBeLessThan0:ln,TheNumberOfRowsCannotBeLessThanMinRows:sn,pleaseEnterColumnWidth:on,pleaseSetTheLogicalRelationshipOfAllRuleConditions:cn,pleaseCompleteAllRulesAndConditions:En,pleaseSelectControl:Bn,pleaseSelectDashboard:hn,theViewNameCannotBeEmpty:An,pleaseSelectOcrType:pn,pleaseSelectAtLeastOneFieldToFillIn:fn,pleaseChooseAtLeastOne:mn,pleaseEnterButtonContent:Fn,pleaseEnterDataCodeInDataSetting:vn,pleaseEnterValueFieldCodeInDataSetting:dn,pleaseEnterSvcCodeInDataSetting:gn,pleaseBindAtLeastOneDisplayValueInDataSetting:Dn,rootNodeIsRequiredInDataSetting:Cn,pleaseEnterMaxHeight:bn,pleaseEnter:Sn,pleaseEnterWatermark:yn,pleaseEnterFileName:In,pleaseUploadAtLeastOnePrintTemplate:Mn,pleaseAssignBusiness:$n,pleaseAssignExternal:wn},Ln={zhCN:su,enUS:vt,jaJP:Rn},L;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(L||(L={}));var x;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(x||(x={}));var xn="zh-CN",Un=function(){};function m(e,u,t){return u in e?Object.defineProperty(e,u,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[u]=t,e}var U;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(U||(U={}));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.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.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.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(A||(A={}));var p;(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"})(p||(p={}));var f;f={},m(f,p.ARRAY,A.ARRAY_COLUMN),m(f,p.AUTO_NUMBER,A.AUTO_NUMBER_COLUMN),m(f,p.DECIMAL,A.DECIMAL_COLUMN),m(f,p.DEPARTMENTS,A.DEPARTMENT_COLUMN),m(f,p.FILE,A.FILE_COLUMN),m(f,p.IMAGE,A.IMAGE_COLUMN),m(f,p.ADDRESS,A.LOCATION_COLUMN),m(f,p.EMPLOYEES,A.EMPLOYEE_COLUMN),m(f,p.TEXT,A.TEXT_COLUMN),m(f,p.TIMESCOPE,A.TIMESCOPE_COLUMN),m(f,p.TIMESTAMP,A.TIMESTAMP_COLUMN),m(f,p.VARCHAR,A.VARCHAR_COLUMN),m(f,p.RELATION,A.VARCHAR_COLUMN);var N;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(N||(N={}));function Nn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function _n(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function Tn(){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 Tn()?S=Reflect.construct:S=function(a,o,s){var h=[null];h.push.apply(h,o);var d=Function.bind.apply(a,h),l=new d;return s&&D(l,s.prototype),l},S.apply(null,arguments)}function g(e){return g=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},g(e)}function Pn(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 Vn(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function kn(e,u){return u&&(Gn(u)==="object"||typeof u=="function")?u:Nn(e)}function D(e,u){return D=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},D(e,u)}var Gn=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||!Vn(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 zn(){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 Hn(e){var u=zn();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 kn(this,a)}}function On(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var jn=function(e){Pn(t,e);var u=Hn(t);function t(n){_n(this,t);var a;return a=u.call(this,n),a.name="\u{1F4A5} Driven Error",a.message=n?On(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 qn(e){throw new jn(e)}var Kn=Object.prototype.toString;function _(e,u){return Kn.call(e)==="[object "+u+"]"}function Wn(e){return _(e,"String")}function Xn(e){return _(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();Xn(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,s,h){if(a!==void 0){var d=a[o];if(!(s===h.length-1&&!Wn(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 Qn(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}var T=function(){function e(){Qn(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]:xn;return new Jn({locale:t,messages:Ln})},e.setLocale=function(t){return this.$i18n.setLocale(t)},e}();T.$i18n=T.resetI18n();var Zn=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Yn={exports:{}};(function(e){(function(u){var t=function(r,i,F){if(!l(i)||Ba(i)||ha(i)||Aa(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 R in i)Object.prototype.hasOwnProperty.call(i,R)&&(v[r(R,F)]=t(r,i[R],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 pa(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)},s=function(r,i){return n(r,i).toLowerCase()},h=Object.prototype.toString,d=function(r){return typeof r=="function"},l=function(r){return r===Object(r)},C=function(r){return h.call(r)=="[object Array]"},Ba=function(r){return h.call(r)=="[object Date]"},ha=function(r){return h.call(r)=="[object RegExp]"},Aa=function(r){return h.call(r)=="[object Boolean]"},pa=function(r){return r=r-0,r===r},w=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)}},j={camelize:a,decamelize:s,pascalize:o,depascalize:s,camelizeKeys:function(r,i){return t(w(a,i),r)},decamelizeKeys:function(r,i){return t(w(s,i),r,i)},pascalizeKeys:function(r,i){return t(w(o,i),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=j:u.humps=j})(Zn)})(Yn);var P={};Object.defineProperty(P,"__esModule",{value:!0});function $(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(u=>typeof u!="object"||u===null?u:$(u));{const u={};for(const t in e){const n=e[t];u[t]=typeof n!="object"||n===null?n:$(n)}return u}}P.default=$;function V(e){return Object.prototype.toString.call(e)==="[object Object]"}class k{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:Un,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);V(n)&&Object.assign(this.props,n)}catch(n){qn(`effect error
|
|
2
|
-
${
|
|
1
|
+
var xn=Object.defineProperty,Un=Object.defineProperties;var Nn=Object.getOwnPropertyDescriptors;var K=Object.getOwnPropertySymbols;var Pn=Object.prototype.hasOwnProperty,_n=Object.prototype.propertyIsEnumerable;var W=(l,c,s)=>c in l?xn(l,c,{enumerable:!0,configurable:!0,writable:!0,value:s}):l[c]=s,S=(l,c)=>{for(var s in c||(c={}))Pn.call(c,s)&&W(l,s,c[s]);if(K)for(var s of K(c))_n.call(c,s)&&W(l,s,c[s]);return l},I=(l,c)=>Un(l,Nn(c));(function(l,c){typeof exports=="object"&&typeof module!="undefined"?c(exports,require("regenerator-runtime")):typeof define=="function"&&define.amd?define(["exports","regenerator-runtime"],c):(l=typeof globalThis!="undefined"?globalThis:l||self,c(l.modelDrivenSettings={}))})(this,function(l){"use strict";function c(e){return e}class s{constructor(u){var t,a;this.visible=(t=u==null?void 0:u.visible)!=null?t:!0,this.expression=(a=u==null?void 0:u.expression)!=null?a:!1}get isAtomicComponent(){return!0}}var X="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",J="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Q="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Z="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Y="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",ee="{caption}\u5FC5\u586B",ue="\u8BF7\u8F93\u5165\u6807\u9898",te="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ae="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",ne="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",re="\u8BF7\u7ED1\u5B9A\u8868\u5355",ie="\u8BF7\u7ED1\u5B9A\u5217\u8868",le="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",se="\u8BF7\u8F93\u5165\u663E\u793A\u503C",oe="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ce="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Ee="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Be="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",he="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",pe="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Ae="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",me="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Fe="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",de="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",ve="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",fe="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Ce="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",ge="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",De="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",be="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Se="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Ie="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",ye="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Me="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",$e="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",we="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Re="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Le="\u8BF7\u9009\u62E9\u7701",xe="\u8BF7\u9009\u62E9\u5E02",Ue="\u8BF7\u9009\u62E9\u533A",Ne="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Pe="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",_e="\u8BF7\u8F93\u5165\u5217\u5BBD",Te="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Ve="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",ke="\u8BF7\u9009\u62E9\u63A7\u4EF6",Ge="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",ze="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",He="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",je="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Oe="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",qe="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Ke="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",We="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Xe="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Je="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Qe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ze="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ye="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",eu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",uu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",tu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",au="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",nu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ru="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",iu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",lu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",su="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",ou="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",cu="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",Eu="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",Bu="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",hu={isNotNumber:X,isNotString:J,isNotObject:Q,isNotArray:Z,isNotBoolean:Y,runtimeRequired:ee,pleaseEnterCaption:ue,pleaseEnterCaptionTip:te,pleaseEnterPlaceholder:ae,pleaseEnterFieldCode:ne,pleaseEnterForm:re,pleaseEnterList:ie,pleaseEnterProcess:le,pleaseEnterLabel:se,pleaseEnterValue:oe,bizKeyNotBindFiled:ce,pleaseSelectOneField:Ee,pleaseEnterNumberRange:Be,pleaseEnterAValueGreaterThanMin:he,pleaseEnterAValueLessThanMax:pe,numberRangeSetError:Ae,stringRangeError:me,attachmentMaxSize:Fe,pleaseEnterTotalScoreSetting:de,theTotalScoreMustNotBeLessThan1:ve,scoreDefaultValueRange:fe,attachmentLimitError:Ce,PleaseReselectTheOptionalQuantity:ge,TheMaximumLengthIsGreaterThanTheMinimumLength:De,TheMinimumLengthIsGreaterThanTheMaximumLength:be,PleaseSelectTheCorrectOptionSettings:Se,optionIdIsRepeat:Ie,optionIsRequired:ye,pleaseEnterDataCode:Me,pleaseEnterValueFieldCode:$e,pleaseEnterSvcCode:we,pleaseBindAtLeastOneDisplayValue:Re,pleaseSelectProvince:Le,pleaseSelectCity:xe,pleaseSelectDistrict:Ue,limitRowsCannotBeLessThan0:Ne,TheNumberOfRowsCannotBeLessThanMinRows:Pe,pleaseEnterColumnWidth:_e,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Te,pleaseCompleteAllRulesAndConditions:Ve,pleaseSelectControl:ke,pleaseSelectAtLeastOneColumn:Ge,pleaseSelectFillBackMode:ze,pleaseSelectDashboard:He,rootNodeIsRequired:je,theViewNameCannotBeEmpty:Oe,pleaseSelectOcrType:qe,pleaseSelectAtLeastOneFieldToFillIn:Ke,pleaseChooseAtLeastOne:We,pleaseEnterButtonContent:Xe,pleaseEnterDataCodeInDataSetting:Je,pleaseEnterValueFieldCodeInDataSetting:Qe,pleaseEnterSvcCodeInDataSetting:Ze,pleaseBindAtLeastOneDisplayValueInDataSetting:Ye,rootNodeIsRequiredInDataSetting:eu,pleaseEnterMaxHeight:uu,pleaseEnter:tu,pleaseEnterWatermark:au,pleaseEnterFileName:nu,pleaseUploadAtLeastOnePrintTemplate:ru,pleaseAssignBusiness:iu,pleaseAssignExternal:lu,pleaseEnterAliasCode:su,pleaseSelectDataCode:ou,pleaseSelectSvcCode:cu,pleaseSelectJoinFieldCode:Eu,pleaseSelectMainFieldCode:Bu},pu="Please enter a number",Au="Please enter a string",mu="Please enter an object",Fu="Please enter an array",du="Please enter a boolean",vu="{caption} Required",fu="Please enter the title",Cu="Please enter the bubble prompt",gu="Please enter the prompt text",Du="Please bind data items",bu="Please bind the form",Su="Please bind the list",Iu="Please bind the process",yu="Please enter the displayed value",Mu="Please enter the stored value",$u="The document number is not bound to the data item",wu="Please select at least one display field",Ru="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}",xu="Please enter a value less than or equal to {max}",Uu="The value range is set incorrectly",Nu="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",_u="Please fill in the total score setting",Tu="The total score cannot be less than 1",Vu="The default value must be between {min} and {max}",ku="The number of attachments uploaded must be between {min} and {max}",Gu="Please re-select the optional quantity",zu="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",ju="Please select the correct option setting",Ou="Option ID cannot be repeated",qu="Please enter at least one option",Ku="Please bind the data source",Wu="Please bind the stored value",Xu="Please bind the service",Ju="At least one display value must be bound",Qu="Please select a province",Zu="Please select a city",Yu="Please select a district",et="The minimum number of lines to fill in cannot be less than 0",ut="The number of rows cannot be less than {min} rows",tt="Please enter the column width",at="Please set the logical relationship of all rule conditions",nt="Please complete all rules and conditions",rt="please select control",it="Please select the dashboard",lt="View name cannot be empty",st="Please select recognition type",ot="Please select at least one field to fill in",ct="Please select at least one",Et="Please enter the button title",Bt="Please bind the business model in the data settings",ht="Please bind storage values in data settings",pt="Please bind the service in the data settings",At="Please bind at least one display value in the data settings",mt="Please select the root node in the data settings",Ft="Please enter the maximum height",dt="The input content cannot be empty",vt="Watermark cannot be empty",ft="File name cannot be empty",Ct="Please upload at least one printing template!\uFF01",gt="Please select a specific business department",Dt="Please select a specified external organization",bt="Please enter a sub table alias",St="Please select the associated table to set the business model",It="Please select the association table to set the binding service",yt="Select associated sub table fields",Mt="Please select the associated main table field",$t={isNotNumber:pu,isNotString:Au,isNotObject:mu,isNotArray:Fu,isNotBoolean:du,runtimeRequired:vu,pleaseEnterCaption:fu,pleaseEnterCaptionTip:Cu,pleaseEnterPlaceholder:gu,pleaseEnterFieldCode:Du,pleaseEnterForm:bu,pleaseEnterList:Su,pleaseEnterProcess:Iu,pleaseEnterLabel:yu,pleaseEnterValue:Mu,bizKeyNotBindFiled:$u,pleaseSelectOneField:wu,pleaseEnterNumberRange:Ru,pleaseEnterAValueGreaterThanMin:Lu,pleaseEnterAValueLessThanMax:xu,numberRangeSetError:Uu,stringRangeError:Nu,attachmentMaxSize:Pu,pleaseEnterTotalScoreSetting:_u,theTotalScoreMustNotBeLessThan1:Tu,scoreDefaultValueRange:Vu,attachmentLimitError:ku,PleaseReselectTheOptionalQuantity:Gu,TheMaximumLengthIsGreaterThanTheMinimumLength:zu,TheMinimumLengthIsGreaterThanTheMaximumLength:Hu,PleaseSelectTheCorrectOptionSettings:ju,optionIdIsRepeat:Ou,optionIsRequired:qu,pleaseEnterDataCode:Ku,pleaseEnterValueFieldCode:Wu,pleaseEnterSvcCode:Xu,pleaseBindAtLeastOneDisplayValue:Ju,pleaseSelectProvince:Qu,pleaseSelectCity:Zu,pleaseSelectDistrict:Yu,limitRowsCannotBeLessThan0:et,TheNumberOfRowsCannotBeLessThanMinRows:ut,pleaseEnterColumnWidth:tt,pleaseSetTheLogicalRelationshipOfAllRuleConditions:at,pleaseCompleteAllRulesAndConditions:nt,pleaseSelectControl:rt,pleaseSelectDashboard:it,theViewNameCannotBeEmpty:lt,pleaseSelectOcrType:st,pleaseSelectAtLeastOneFieldToFillIn:ot,pleaseChooseAtLeastOne:ct,pleaseEnterButtonContent:Et,pleaseEnterDataCodeInDataSetting:Bt,pleaseEnterValueFieldCodeInDataSetting:ht,pleaseEnterSvcCodeInDataSetting:pt,pleaseBindAtLeastOneDisplayValueInDataSetting:At,rootNodeIsRequiredInDataSetting:mt,pleaseEnterMaxHeight:Ft,pleaseEnter:dt,pleaseEnterWatermark:vt,pleaseEnterFileName:ft,pleaseUploadAtLeastOnePrintTemplate:Ct,pleaseAssignBusiness:gt,pleaseAssignExternal:Dt,pleaseEnterAliasCode:bt,pleaseSelectDataCode:St,pleaseSelectSvcCode:It,pleaseSelectJoinFieldCode:yt,pleaseSelectMainFieldCode:Mt},wt="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Rt="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Lt="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xt="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ut="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Nt="{caption}\u5FC5\u9808",Pt="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_t="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Tt="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Vt="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",kt="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Gt="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",zt="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ht="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",jt="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ot="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",qt="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Kt="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Wt="{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",Jt="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Qt="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Zt="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Yt="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ea="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ua="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ta="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",aa="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",na="\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",ra="\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",ia="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",la="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",sa="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",oa="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ca="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ea="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ba="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ha="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",pa="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Aa="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ma="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Fa="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",da="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",va="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",fa="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ca="please select control",ga="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Da="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ba="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Sa="\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",Ia="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ya="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ma="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",$a="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",wa="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Ra="\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",La="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",xa="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ua="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Na="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Pa="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",_a="\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",Ta="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Va="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ka="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ga="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",za="\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",Ha="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",ja="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Oa={isNotNumber:wt,isNotString:Rt,isNotObject:Lt,isNotArray:xt,isNotBoolean:Ut,runtimeRequired:Nt,pleaseEnterCaption:Pt,pleaseEnterCaptionTip:_t,pleaseEnterPlaceholder:Tt,pleaseEnterFieldCode:Vt,pleaseEnterForm:kt,pleaseEnterList:Gt,pleaseEnterProcess:zt,pleaseEnterLabel:Ht,pleaseEnterValue:jt,bizKeyNotBindFiled:Ot,pleaseSelectOneField:qt,pleaseEnterNumberRange:Kt,pleaseEnterAValueGreaterThanMin:Wt,pleaseEnterAValueLessThanMax:Xt,numberRangeSetError:Jt,stringRangeError:Qt,attachmentMaxSize:Zt,pleaseEnterTotalScoreSetting:Yt,theTotalScoreMustNotBeLessThan1:ea,scoreDefaultValueRange:ua,attachmentLimitError:ta,PleaseReselectTheOptionalQuantity:aa,TheMaximumLengthIsGreaterThanTheMinimumLength:na,TheMinimumLengthIsGreaterThanTheMaximumLength:ra,PleaseSelectTheCorrectOptionSettings:ia,optionIdIsRepeat:la,optionIsRequired:sa,pleaseEnterDataCode:oa,pleaseEnterValueFieldCode:ca,pleaseEnterSvcCode:Ea,pleaseBindAtLeastOneDisplayValue:Ba,pleaseSelectProvince:ha,pleaseSelectCity:pa,pleaseSelectDistrict:Aa,limitRowsCannotBeLessThan0:ma,TheNumberOfRowsCannotBeLessThanMinRows:Fa,pleaseEnterColumnWidth:da,pleaseSetTheLogicalRelationshipOfAllRuleConditions:va,pleaseCompleteAllRulesAndConditions:fa,pleaseSelectControl:Ca,pleaseSelectDashboard:ga,theViewNameCannotBeEmpty:Da,pleaseSelectOcrType:ba,pleaseSelectAtLeastOneFieldToFillIn:Sa,pleaseChooseAtLeastOne:Ia,pleaseEnterButtonContent:ya,pleaseEnterDataCodeInDataSetting:Ma,pleaseEnterValueFieldCodeInDataSetting:$a,pleaseEnterSvcCodeInDataSetting:wa,pleaseBindAtLeastOneDisplayValueInDataSetting:Ra,rootNodeIsRequiredInDataSetting:La,pleaseEnterMaxHeight:xa,pleaseEnter:Ua,pleaseEnterWatermark:Na,pleaseEnterFileName:Pa,pleaseUploadAtLeastOnePrintTemplate:_a,pleaseAssignBusiness:Ta,pleaseAssignExternal:Va,pleaseEnterAliasCode:ka,pleaseSelectDataCode:Ga,pleaseSelectSvcCode:za,pleaseSelectJoinFieldCode:Ha,pleaseSelectMainFieldCode:ja},qa={zhCN:hu,enUS:$t,jaJP:Oa},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 Ka="zh-CN",Wa=function(){};function p(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 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.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(E||(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={},p(h,B.ARRAY,E.ARRAY_COLUMN),p(h,B.AUTO_NUMBER,E.AUTO_NUMBER_COLUMN),p(h,B.DECIMAL,E.DECIMAL_COLUMN),p(h,B.DEPARTMENTS,E.DEPARTMENT_COLUMN),p(h,B.FILE,E.FILE_COLUMN),p(h,B.IMAGE,E.IMAGE_COLUMN),p(h,B.ADDRESS,E.LOCATION_COLUMN),p(h,B.EMPLOYEES,E.EMPLOYEE_COLUMN),p(h,B.TEXT,E.TEXT_COLUMN),p(h,B.TIMESCOPE,E.TIMESCOPE_COLUMN),p(h,B.TIMESTAMP,E.TIMESTAMP_COLUMN),p(h,B.VARCHAR,E.VARCHAR_COLUMN),p(h,B.RELATION,E.VARCHAR_COLUMN);var U;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(U||(U={}));function Xa(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ja(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function Qa(){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 D(e,u,t){return Qa()?D=Reflect.construct:D=function(n,o,m){var A=[null];A.push.apply(A,o);var v=Function.bind.apply(n,A),b=new v;return m&&C(b,m.prototype),b},D.apply(null,arguments)}function f(e){return f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},f(e)}function Za(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&&C(e,u)}function Ya(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function en(e,u){return u&&(un(u)==="object"||typeof u=="function")?u:Xa(e)}function C(e,u){return C=Object.setPrototypeOf||function(a,n){return a.__proto__=n,a},C(e,u)}var un=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function y(e){var u=typeof Map=="function"?new Map:void 0;return y=function(a){if(a===null||!Ya(a))return a;if(typeof a!="function")throw new TypeError("Super expression must either be null or a function");if(typeof u!="undefined"){if(u.has(a))return u.get(a);u.set(a,n)}function n(){return D(a,arguments,f(this).constructor)}return n.prototype=Object.create(a.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),C(n,a)},y(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 an(e){var u=tn();return function(){var a=f(e),n;if(u){var o=f(this).constructor;n=Reflect.construct(a,arguments,o)}else n=a.apply(this,arguments);return en(this,n)}}function nn(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var rn=function(e){Za(t,e);var u=an(t);function t(a){Ja(this,t);var n;return n=u.call(this,a),n.name="\u{1F4A5} Driven Error",n.message=a?nn(a):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",n}return t}(y(Error));function ln(e){throw new rn(e)}var sn=Object.prototype.toString;function N(e,u){return sn.call(e)==="[object "+u+"]"}function on(e){return N(e,"String")}function cn(e){return N(e,"Promise")}var En=function(){function e(u){var t,a;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((a=(t=u.messages)!==null&&t!==void 0?t:this.getPreImport(u.locale))!==null&&a!==void 0?a:{}),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 a=this.getMessageData();cn(a)?a.then(function(n){t._messageCache.clear(),t.messages[t.localeInMessageKey]=n}):this.messages[this.localeInMessageKey]=a},e.prototype.getMessageData=function(){var u=this._messages[this.localeInMessageKey];return typeof u=="function"?u():u},e.prototype.translate=function(u,t,a){var n=this.getMessage(u);return n?this.formatMessage(n,a):this.formatMessage(t,a)},e.prototype.getMessage=function(u){if(this._messageCache.has(u))return this._messageCache.get(u);var t=this.getPathArray(u),a=t.reduce(function(n,o,m,A){if(n!==void 0){var v=n[o];if(!(m===A.length-1&&!on(v)))return v}},this.message);return this._messageCache.set(u,a),a},e.prototype.formatMessage=function(u,t){return t?u.replace(this.variableRegExp,function(a,n){var o=t[n];return o!==void 0?String(o):a}):u},e.prototype.getPreImport=function(u){var t;if(window.okI18nPreImport){var a=this.getLocaleInMessageKey(u);return window.okI18nPreImport.hasOwnProperty(a)?window.okI18nPreImport:(t={},t[a]=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 Bn(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function P(e,u){for(var t=0;t<u.length;t++){var a=u[t];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}function hn(e,u,t){return u&&P(e.prototype,u),t&&P(e,t),e}var _=function(){function e(){Bn(this,e)}return hn(e,null,[{key:"getMessage",value:function(t){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(t,"",a)}},{key:"resetI18n",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Ka;return new En({locale:t,messages:qa})}},{key:"setLocale",value:function(t){return this.$i18n.setLocale(t)}}]),e}();_.$i18n=_.resetI18n();var pn=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},An={exports:{}};(function(e){(function(u){var t=function(r,i,F){if(!b(i)||$n(i)||wn(i)||Rn(i)||v(i))return i;var d,g=0,q=0;if(Mn(i))for(d=[],q=i.length;g<q;g++)d.push(t(r,i[g],F));else{d={};for(var w in i)Object.prototype.hasOwnProperty.call(i,w)&&(d[r(w,F)]=t(r,i[w],F))}return d},a=function(r,i){i=i||{};var F=i.separator||"_",d=i.split||/(?=[A-Z])/;return r.split(d).join(F)},n=function(r){return Ln(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=n(r);return i.substr(0,1).toUpperCase()+i.substr(1)},m=function(r,i){return a(r,i).toLowerCase()},A=Object.prototype.toString,v=function(r){return typeof r=="function"},b=function(r){return r===Object(r)},Mn=function(r){return A.call(r)=="[object Array]"},$n=function(r){return A.call(r)=="[object Date]"},wn=function(r){return A.call(r)=="[object RegExp]"},Rn=function(r){return A.call(r)=="[object Boolean]"},Ln=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(d,g){return F(d,r,g)}},O={camelize:n,decamelize:m,pascalize:o,depascalize:m,camelizeKeys:function(r,i){return t($(n,i),r)},decamelizeKeys:function(r,i){return t($(m,i),r,i)},pascalizeKeys:function(r,i){return t($(o,i),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=O:u.humps=O})(pn)})(An);var T={};Object.defineProperty(T,"__esModule",{value:!0});function M(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(u=>typeof u!="object"||u===null?u:M(u));{const u={};for(const t in e){const a=e[t];u[t]=typeof a!="object"||a===null?a:M(a)}return u}}T.default=M;function V(e){return Object.prototype.toString.call(e)==="[object Object]"}class k{constructor(u){var t,a,n;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=(a=u.scopeEffect)!=null?a:Wa,this.defaultValue=u.defaultValue,this.validator=u.validator,this.props=(n=u.props)!=null?n:new s,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 a=u.apply(null,t);V(a)&&Object.assign(this.props,a)}catch(a){ln(`effect error
|
|
2
|
+
${a}`)}}callEffect(u,...t){this.filterEffects(u).forEach(a=>this.callEffectFn(a,t))}callScopeEffect(...u){this.callEffectFn(this.scopeEffect,u)}}class G{constructor(u){var t,a;this.type="group",this.title=(t=u.title)!=null?t:"",this.required=(a=u.required)!=null?a:!1,this.items=u.items,this.tips=u.tips}}function z(e){return"type"in e&&e.type==="tab"}class H{constructor(u){this.type="tab",this.title=u.title,this.items=u.items}}class mn extends s{constructor(u){super(u);V(u)&&Object.entries(u).forEach(([t,a])=>{this[t]=a})}}class Fn extends s{constructor(u){super(u);var t,a,n,o;this.maxLength=(t=u==null?void 0:u.maxLength)!=null?t:"",this.minLength=(a=u==null?void 0:u.minLength)!=null?a:"",this.placeholder=(n=u==null?void 0:u.placeholder)!=null?n:"",this.i18n=(o=u==null?void 0:u.i18n)!=null?o:!1}}class dn extends s{constructor(u){super(u);var t,a,n;this.max=(t=u==null?void 0:u.max)!=null?t:"",this.min=(a=u==null?void 0:u.min)!=null?a:"",this.placeholder=(n=u==null?void 0:u.placeholder)!=null?n:""}}class vn extends s{constructor(u){super(u);var t,a,n;this.showType=(t=u==null?void 0:u.showType)!=null?t:"switch",this.tips=(a=u==null?void 0:u.tips)!=null?a:"",this.disabled=(n=u==null?void 0:u.disabled)!=null?n:!1}}class fn extends s{constructor(u){super(u);var t;this.options=(t=u==null?void 0:u.options)!=null?t:[]}}class Cn extends s{constructor(u){super(u);var t,a;this.placeholder=(t=u==null?void 0:u.placeholder)!=null?t:"",this.options=(a=u==null?void 0:u.options)!=null?a:[]}}class gn extends s{constructor(u){super(u);var t,a;this.options=(t=u==null?void 0:u.options)!=null?t:[],this.showType=(a=u==null?void 0:u.showType)!=null?a:"outline"}}class Dn extends s{constructor(u){super(u);var t,a,n,o,m,A;this.maxLength=(t=u==null?void 0:u.maxLength)!=null?t:"",this.minLength=(a=u==null?void 0:u.minLength)!=null?a:"",this.placeholder=(n=u==null?void 0:u.placeholder)!=null?n:"",this.maxRows=(o=u==null?void 0:u.maxRows)!=null?o:"",this.minRows=(m=u==null?void 0:u.minRows)!=null?m:"",this.i18n=(A=u==null?void 0:u.i18n)!=null?A:!1}}function bn(e,u){switch(e){case"input":return new Fn(u);case"textarea":return new Dn(u);case"input-number":return new dn(u);case"switch":return new vn(u);case"radio":return new gn(u);case"checkbox":return new fn(u);case"select":return new Cn(u);default:return new mn(u)}}function Sn(e){return function(u){const t=e.get(u);if(!!t)return new k(I(S({},t),{props:bn(t.component,"props"in t?t.props:void 0)}))}}function In(e){const u=e.fields.reduce((n,o)=>(n.set(o.key,o),n),new Map);function t(n){return new G(I(S({},n),{items:n.items.map(Sn(u)).filter(Boolean)}))}function a(n){return n.map(t)}return e.groups.map(n=>z(n)?new H(I(S({},n),{items:a(n.items)})):t(n))}function j(){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:a,instance:n}=u;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(e.setInstance(n,"style.width",""),e.setInstance(n,"style.widthConfig","fill")),a)return{visible:a.type==="advanced-container"}}},{key:"style.height",component:"styleComponent",props:{configKey:"style.heightConfig",options:["px","%","fill","hug"]},scopeEffect(e,u){const{oldParent:t,newParent:a,instance:n}=u;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(e.setInstance(n,"style.height",""),e.setInstance(n,"style.heightConfig","fill")),u.newParent)return{visible:u.newParent.type==="advanced-container"}}}]}function yn(e){return[...j(),{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 a,n;if(((a=t.current)==null?void 0:a.type)!==((n=t.from)==null?void 0:n.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}}]}l.Group=G,l.Setting=k,l.Tab=H,l.createBaseFields=j,l.createFormBaseFields=yn,l.defineInstance=c,l.initSettings=In,l.isTabSchema=z,Object.defineProperty(l,"__esModule",{value:!0})});
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { FieldSchema } from '../defineInstance';
|
|
2
|
-
export declare function createBaseFields(): FieldSchema[];
|
|
1
|
+
import { FieldSchema } from '../defineInstance';
|
|
2
|
+
export declare function createBaseFields(): FieldSchema[];
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { BaseControlProperty, DeepPartial } from '@byteluck-fe/model-driven-core';
|
|
2
|
-
import { FieldSchema } from '../defineInstance';
|
|
3
|
-
export declare function createFormBaseFields(defaultValues?: DeepPartial<BaseControlProperty>): FieldSchema[];
|
|
1
|
+
import { BaseControlProperty, DeepPartial } from '@byteluck-fe/model-driven-core';
|
|
2
|
+
import { FieldSchema } from '../defineInstance';
|
|
3
|
+
export declare function createFormBaseFields(defaultValues?: DeepPartial<BaseControlProperty>): FieldSchema[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './createBaseFields';
|
|
2
|
-
export * from './createFormBaseFields';
|
|
1
|
+
export * from './createBaseFields';
|
|
2
|
+
export * from './createFormBaseFields';
|
|
@@ -1,79 +1,79 @@
|
|
|
1
|
-
import type { BaseSchema, GroupSchema } from './schema';
|
|
2
|
-
import { InputProps } from './props/input';
|
|
3
|
-
import { InputNumberProps } from './props/input-number';
|
|
4
|
-
import { SwitchProps } from './props/switch';
|
|
5
|
-
import { SelectProps } from './props/select';
|
|
6
|
-
import { CheckboxProps } from './props/checkbox';
|
|
7
|
-
import { RadioProps } from './props/radio';
|
|
8
|
-
import { TextareaProps } from './props/textarea';
|
|
9
|
-
import { CustomProps } from './props/custom';
|
|
10
|
-
import { TabSchema } from './schema/tab';
|
|
11
|
-
import { CustomEventItem, InnerEventCode } from '@byteluck-fe/model-driven-shared';
|
|
12
|
-
interface InputSchema extends BaseSchema<InputProps> {
|
|
13
|
-
/**
|
|
14
|
-
* 输入框
|
|
15
|
-
* */
|
|
16
|
-
component: 'input';
|
|
17
|
-
props?: Partial<InputProps>;
|
|
18
|
-
}
|
|
19
|
-
interface InputNumberSchema extends BaseSchema<InputNumberProps> {
|
|
20
|
-
/**
|
|
21
|
-
* 数字输入框
|
|
22
|
-
* */
|
|
23
|
-
component: 'input-number';
|
|
24
|
-
props?: Partial<InputNumberProps>;
|
|
25
|
-
}
|
|
26
|
-
interface TextareaSchema extends BaseSchema<TextareaProps> {
|
|
27
|
-
/**
|
|
28
|
-
* 长文本输入框
|
|
29
|
-
* */
|
|
30
|
-
component: 'textarea';
|
|
31
|
-
props?: Partial<TextareaProps>;
|
|
32
|
-
}
|
|
33
|
-
interface SwitchSchema extends BaseSchema<SwitchProps> {
|
|
34
|
-
/**
|
|
35
|
-
* 切换
|
|
36
|
-
* */
|
|
37
|
-
component: 'switch';
|
|
38
|
-
props?: Partial<SwitchProps>;
|
|
39
|
-
}
|
|
40
|
-
interface SelectSchema extends BaseSchema<SelectProps> {
|
|
41
|
-
/**
|
|
42
|
-
* 下拉单选
|
|
43
|
-
* */
|
|
44
|
-
component: 'select';
|
|
45
|
-
props?: Partial<SelectProps>;
|
|
46
|
-
}
|
|
47
|
-
interface CheckboxSchema extends BaseSchema<CheckboxProps> {
|
|
48
|
-
/**
|
|
49
|
-
* 多选框
|
|
50
|
-
* */
|
|
51
|
-
component: 'checkbox';
|
|
52
|
-
props?: Partial<CheckboxProps>;
|
|
53
|
-
}
|
|
54
|
-
interface RadioSchema extends BaseSchema<RadioProps> {
|
|
55
|
-
/**
|
|
56
|
-
* 单选框
|
|
57
|
-
* */
|
|
58
|
-
component: 'radio';
|
|
59
|
-
props?: Partial<RadioProps>;
|
|
60
|
-
}
|
|
61
|
-
interface CustomSchema extends BaseSchema<CustomProps> {
|
|
62
|
-
component: string;
|
|
63
|
-
props?: Partial<CustomProps>;
|
|
64
|
-
}
|
|
65
|
-
export type SettingSchemas = InputSchema | InputNumberSchema | TextareaSchema | SwitchSchema | SelectSchema | CheckboxSchema | RadioSchema | CustomSchema;
|
|
66
|
-
export interface RuntimeValidator {
|
|
67
|
-
(props: any, value: unknown, i18n: string): string | boolean | void;
|
|
68
|
-
}
|
|
69
|
-
export type FieldSchema = SettingSchemas | BaseSchema<{}>;
|
|
70
|
-
export type GroupsSchema = GroupSchema[] | TabSchema[];
|
|
71
|
-
export interface DefineInstanceParams {
|
|
72
|
-
fields: FieldSchema[];
|
|
73
|
-
groups: GroupsSchema;
|
|
74
|
-
runtimeValidator?: RuntimeValidator;
|
|
75
|
-
events?: InnerEventCode[];
|
|
76
|
-
customEvents?: CustomEventItem[];
|
|
77
|
-
}
|
|
78
|
-
export declare function defineInstance(params: DefineInstanceParams): DefineInstanceParams;
|
|
79
|
-
export {};
|
|
1
|
+
import type { BaseSchema, GroupSchema } from './schema';
|
|
2
|
+
import { InputProps } from './props/input';
|
|
3
|
+
import { InputNumberProps } from './props/input-number';
|
|
4
|
+
import { SwitchProps } from './props/switch';
|
|
5
|
+
import { SelectProps } from './props/select';
|
|
6
|
+
import { CheckboxProps } from './props/checkbox';
|
|
7
|
+
import { RadioProps } from './props/radio';
|
|
8
|
+
import { TextareaProps } from './props/textarea';
|
|
9
|
+
import { CustomProps } from './props/custom';
|
|
10
|
+
import { TabSchema } from './schema/tab';
|
|
11
|
+
import { CustomEventItem, InnerEventCode } from '@byteluck-fe/model-driven-shared';
|
|
12
|
+
interface InputSchema extends BaseSchema<InputProps> {
|
|
13
|
+
/**
|
|
14
|
+
* 输入框
|
|
15
|
+
* */
|
|
16
|
+
component: 'input';
|
|
17
|
+
props?: Partial<InputProps>;
|
|
18
|
+
}
|
|
19
|
+
interface InputNumberSchema extends BaseSchema<InputNumberProps> {
|
|
20
|
+
/**
|
|
21
|
+
* 数字输入框
|
|
22
|
+
* */
|
|
23
|
+
component: 'input-number';
|
|
24
|
+
props?: Partial<InputNumberProps>;
|
|
25
|
+
}
|
|
26
|
+
interface TextareaSchema extends BaseSchema<TextareaProps> {
|
|
27
|
+
/**
|
|
28
|
+
* 长文本输入框
|
|
29
|
+
* */
|
|
30
|
+
component: 'textarea';
|
|
31
|
+
props?: Partial<TextareaProps>;
|
|
32
|
+
}
|
|
33
|
+
interface SwitchSchema extends BaseSchema<SwitchProps> {
|
|
34
|
+
/**
|
|
35
|
+
* 切换
|
|
36
|
+
* */
|
|
37
|
+
component: 'switch';
|
|
38
|
+
props?: Partial<SwitchProps>;
|
|
39
|
+
}
|
|
40
|
+
interface SelectSchema extends BaseSchema<SelectProps> {
|
|
41
|
+
/**
|
|
42
|
+
* 下拉单选
|
|
43
|
+
* */
|
|
44
|
+
component: 'select';
|
|
45
|
+
props?: Partial<SelectProps>;
|
|
46
|
+
}
|
|
47
|
+
interface CheckboxSchema extends BaseSchema<CheckboxProps> {
|
|
48
|
+
/**
|
|
49
|
+
* 多选框
|
|
50
|
+
* */
|
|
51
|
+
component: 'checkbox';
|
|
52
|
+
props?: Partial<CheckboxProps>;
|
|
53
|
+
}
|
|
54
|
+
interface RadioSchema extends BaseSchema<RadioProps> {
|
|
55
|
+
/**
|
|
56
|
+
* 单选框
|
|
57
|
+
* */
|
|
58
|
+
component: 'radio';
|
|
59
|
+
props?: Partial<RadioProps>;
|
|
60
|
+
}
|
|
61
|
+
interface CustomSchema extends BaseSchema<CustomProps> {
|
|
62
|
+
component: string;
|
|
63
|
+
props?: Partial<CustomProps>;
|
|
64
|
+
}
|
|
65
|
+
export declare type SettingSchemas = InputSchema | InputNumberSchema | TextareaSchema | SwitchSchema | SelectSchema | CheckboxSchema | RadioSchema | CustomSchema;
|
|
66
|
+
export interface RuntimeValidator {
|
|
67
|
+
(props: any, value: unknown, i18n: string): string | boolean | void;
|
|
68
|
+
}
|
|
69
|
+
export declare type FieldSchema = SettingSchemas | BaseSchema<{}>;
|
|
70
|
+
export declare type GroupsSchema = GroupSchema[] | TabSchema[];
|
|
71
|
+
export interface DefineInstanceParams {
|
|
72
|
+
fields: FieldSchema[];
|
|
73
|
+
groups: GroupsSchema;
|
|
74
|
+
runtimeValidator?: RuntimeValidator;
|
|
75
|
+
events?: InnerEventCode[];
|
|
76
|
+
customEvents?: CustomEventItem[];
|
|
77
|
+
}
|
|
78
|
+
export declare function defineInstance(params: DefineInstanceParams): DefineInstanceParams;
|
|
79
|
+
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './defineInstance';
|
|
2
|
-
export * from './initSettings';
|
|
3
|
-
export * from './schema';
|
|
4
|
-
export * from './default';
|
|
1
|
+
export * from './defineInstance';
|
|
2
|
+
export * from './initSettings';
|
|
3
|
+
export * from './schema';
|
|
4
|
+
export * from './default';
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { Group } from './schema';
|
|
2
|
-
import { CustomProps } from './props/custom';
|
|
3
|
-
import { InputProps } from './props/input';
|
|
4
|
-
import { InputNumberProps } from './props/input-number';
|
|
5
|
-
import { SwitchProps } from './props/switch';
|
|
6
|
-
import { DefineInstanceParams } from './defineInstance';
|
|
7
|
-
import { CheckboxProps } from './props/checkbox';
|
|
8
|
-
import { SelectProps } from './props/select';
|
|
9
|
-
import { RadioProps } from './props/radio';
|
|
10
|
-
import { TextareaProps } from './props/textarea';
|
|
11
|
-
import { Tab } from './schema/tab';
|
|
12
|
-
export type Props = CustomProps | InputProps | TextareaProps | InputNumberProps | SwitchProps | CheckboxProps | RadioProps | SelectProps;
|
|
13
|
-
export type Settings = Group[] | Tab[];
|
|
14
|
-
export declare function initSettings(params: DefineInstanceParams): Settings;
|
|
1
|
+
import { Group } from './schema';
|
|
2
|
+
import { CustomProps } from './props/custom';
|
|
3
|
+
import { InputProps } from './props/input';
|
|
4
|
+
import { InputNumberProps } from './props/input-number';
|
|
5
|
+
import { SwitchProps } from './props/switch';
|
|
6
|
+
import { DefineInstanceParams } from './defineInstance';
|
|
7
|
+
import { CheckboxProps } from './props/checkbox';
|
|
8
|
+
import { SelectProps } from './props/select';
|
|
9
|
+
import { RadioProps } from './props/radio';
|
|
10
|
+
import { TextareaProps } from './props/textarea';
|
|
11
|
+
import { Tab } from './schema/tab';
|
|
12
|
+
export declare type Props = CustomProps | InputProps | TextareaProps | InputNumberProps | SwitchProps | CheckboxProps | RadioProps | SelectProps;
|
|
13
|
+
export declare type Settings = Group[] | Tab[];
|
|
14
|
+
export declare function initSettings(params: DefineInstanceParams): Settings;
|