@byteluck-fe/model-driven-settings 2.7.0-alpha.3 → 2.7.0-alpha.31b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -30
- 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 +6 -23
- package/dist/esm/props/checkbox.js +5 -19
- package/dist/esm/props/custom.js +4 -4
- package/dist/esm/props/input-number.js +9 -25
- package/dist/esm/props/input.js +11 -28
- package/dist/esm/props/radio.js +7 -22
- package/dist/esm/props/select.js +7 -22
- package/dist/esm/props/switch.js +9 -25
- package/dist/esm/props/textarea.js +15 -34
- package/dist/esm/schema/group.js +9 -23
- package/dist/esm/schema/index.js +3 -3
- package/dist/esm/schema/setting.js +9 -32
- package/dist/esm/schema/tab.js +2 -17
- 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 +21 -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 +19 -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/props/radio.js
CHANGED
|
@@ -9,19 +9,6 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
function _defineProperty(obj, key, value) {
|
|
13
|
-
if (key in obj) {
|
|
14
|
-
Object.defineProperty(obj, key, {
|
|
15
|
-
value: value,
|
|
16
|
-
enumerable: true,
|
|
17
|
-
configurable: true,
|
|
18
|
-
writable: true
|
|
19
|
-
});
|
|
20
|
-
} else {
|
|
21
|
-
obj[key] = value;
|
|
22
|
-
}
|
|
23
|
-
return obj;
|
|
24
|
-
}
|
|
25
12
|
function _getPrototypeOf(o) {
|
|
26
13
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
27
14
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -82,21 +69,19 @@ function _createSuper(Derived) {
|
|
|
82
69
|
return _possibleConstructorReturn(this, result);
|
|
83
70
|
};
|
|
84
71
|
}
|
|
85
|
-
import { BaseProps } from
|
|
86
|
-
export var RadioProps = /*#__PURE__*/ function(
|
|
72
|
+
import { BaseProps } from './base';
|
|
73
|
+
export var RadioProps = /*#__PURE__*/ function(BaseProps1) {
|
|
87
74
|
"use strict";
|
|
88
|
-
_inherits(RadioProps,
|
|
75
|
+
_inherits(RadioProps, BaseProps1);
|
|
89
76
|
var _super = _createSuper(RadioProps);
|
|
90
77
|
function RadioProps(props) {
|
|
91
78
|
_classCallCheck(this, RadioProps);
|
|
92
79
|
var _this;
|
|
93
80
|
_this = _super.call(this, props);
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
var
|
|
97
|
-
_this.
|
|
98
|
-
var _props_showType;
|
|
99
|
-
_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';
|
|
100
85
|
return _this;
|
|
101
86
|
}
|
|
102
87
|
return RadioProps;
|
package/dist/esm/props/select.js
CHANGED
|
@@ -9,19 +9,6 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
function _defineProperty(obj, key, value) {
|
|
13
|
-
if (key in obj) {
|
|
14
|
-
Object.defineProperty(obj, key, {
|
|
15
|
-
value: value,
|
|
16
|
-
enumerable: true,
|
|
17
|
-
configurable: true,
|
|
18
|
-
writable: true
|
|
19
|
-
});
|
|
20
|
-
} else {
|
|
21
|
-
obj[key] = value;
|
|
22
|
-
}
|
|
23
|
-
return obj;
|
|
24
|
-
}
|
|
25
12
|
function _getPrototypeOf(o) {
|
|
26
13
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
27
14
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -82,21 +69,19 @@ function _createSuper(Derived) {
|
|
|
82
69
|
return _possibleConstructorReturn(this, result);
|
|
83
70
|
};
|
|
84
71
|
}
|
|
85
|
-
import { BaseProps } from
|
|
86
|
-
export var SelectProps = /*#__PURE__*/ function(
|
|
72
|
+
import { BaseProps } from './base';
|
|
73
|
+
export var SelectProps = /*#__PURE__*/ function(BaseProps1) {
|
|
87
74
|
"use strict";
|
|
88
|
-
_inherits(SelectProps,
|
|
75
|
+
_inherits(SelectProps, BaseProps1);
|
|
89
76
|
var _super = _createSuper(SelectProps);
|
|
90
77
|
function SelectProps(props) {
|
|
91
78
|
_classCallCheck(this, SelectProps);
|
|
92
79
|
var _this;
|
|
93
80
|
_this = _super.call(this, props);
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
var
|
|
97
|
-
_this.
|
|
98
|
-
var _props_options;
|
|
99
|
-
_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 : [];
|
|
100
85
|
return _this;
|
|
101
86
|
}
|
|
102
87
|
return SelectProps;
|
package/dist/esm/props/switch.js
CHANGED
|
@@ -9,19 +9,6 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
function _defineProperty(obj, key, value) {
|
|
13
|
-
if (key in obj) {
|
|
14
|
-
Object.defineProperty(obj, key, {
|
|
15
|
-
value: value,
|
|
16
|
-
enumerable: true,
|
|
17
|
-
configurable: true,
|
|
18
|
-
writable: true
|
|
19
|
-
});
|
|
20
|
-
} else {
|
|
21
|
-
obj[key] = value;
|
|
22
|
-
}
|
|
23
|
-
return obj;
|
|
24
|
-
}
|
|
25
12
|
function _getPrototypeOf(o) {
|
|
26
13
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
27
14
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -82,24 +69,21 @@ function _createSuper(Derived) {
|
|
|
82
69
|
return _possibleConstructorReturn(this, result);
|
|
83
70
|
};
|
|
84
71
|
}
|
|
85
|
-
import { BaseProps } from
|
|
86
|
-
export var SwitchProps = /*#__PURE__*/ function(
|
|
72
|
+
import { BaseProps } from './base';
|
|
73
|
+
export var SwitchProps = /*#__PURE__*/ function(BaseProps1) {
|
|
87
74
|
"use strict";
|
|
88
|
-
_inherits(SwitchProps,
|
|
75
|
+
_inherits(SwitchProps, BaseProps1);
|
|
89
76
|
var _super = _createSuper(SwitchProps);
|
|
90
77
|
function SwitchProps(props) {
|
|
91
78
|
_classCallCheck(this, SwitchProps);
|
|
92
79
|
var _this;
|
|
93
80
|
_this = _super.call(this, props);
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
_this.tips = (_props_tips = props === null || props === void 0 ? void 0 : props.tips) !== null && _props_tips !== void 0 ? _props_tips : "";
|
|
101
|
-
var _props_disabled;
|
|
102
|
-
_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;
|
|
103
87
|
return _this;
|
|
104
88
|
}
|
|
105
89
|
return SwitchProps;
|
|
@@ -9,19 +9,6 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
function _defineProperty(obj, key, value) {
|
|
13
|
-
if (key in obj) {
|
|
14
|
-
Object.defineProperty(obj, key, {
|
|
15
|
-
value: value,
|
|
16
|
-
enumerable: true,
|
|
17
|
-
configurable: true,
|
|
18
|
-
writable: true
|
|
19
|
-
});
|
|
20
|
-
} else {
|
|
21
|
-
obj[key] = value;
|
|
22
|
-
}
|
|
23
|
-
return obj;
|
|
24
|
-
}
|
|
25
12
|
function _getPrototypeOf(o) {
|
|
26
13
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
27
14
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -82,33 +69,27 @@ function _createSuper(Derived) {
|
|
|
82
69
|
return _possibleConstructorReturn(this, result);
|
|
83
70
|
};
|
|
84
71
|
}
|
|
85
|
-
import { BaseProps } from
|
|
86
|
-
export var TextareaProps = /*#__PURE__*/ function(
|
|
72
|
+
import { BaseProps } from './base';
|
|
73
|
+
export var TextareaProps = /*#__PURE__*/ function(BaseProps1) {
|
|
87
74
|
"use strict";
|
|
88
|
-
_inherits(TextareaProps,
|
|
75
|
+
_inherits(TextareaProps, BaseProps1);
|
|
89
76
|
var _super = _createSuper(TextareaProps);
|
|
90
77
|
function TextareaProps(props) {
|
|
91
78
|
_classCallCheck(this, TextareaProps);
|
|
92
79
|
var _this;
|
|
93
80
|
_this = _super.call(this, props);
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
var
|
|
101
|
-
_this.
|
|
102
|
-
var
|
|
103
|
-
_this.
|
|
104
|
-
var
|
|
105
|
-
_this.
|
|
106
|
-
var _props_maxRows;
|
|
107
|
-
_this.maxRows = (_props_maxRows = props === null || props === void 0 ? void 0 : props.maxRows) !== null && _props_maxRows !== void 0 ? _props_maxRows : "";
|
|
108
|
-
var _props_minRows;
|
|
109
|
-
_this.minRows = (_props_minRows = props === null || props === void 0 ? void 0 : props.minRows) !== null && _props_minRows !== void 0 ? _props_minRows : "";
|
|
110
|
-
var _props_i18n;
|
|
111
|
-
_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;
|
|
112
93
|
return _this;
|
|
113
94
|
}
|
|
114
95
|
return TextareaProps;
|
package/dist/esm/schema/group.js
CHANGED
|
@@ -3,32 +3,18 @@ function _classCallCheck(instance, Constructor) {
|
|
|
3
3
|
throw new TypeError("Cannot call a class as a function");
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
|
-
function _defineProperty(obj, key, value) {
|
|
7
|
-
if (key in obj) {
|
|
8
|
-
Object.defineProperty(obj, key, {
|
|
9
|
-
value: value,
|
|
10
|
-
enumerable: true,
|
|
11
|
-
configurable: true,
|
|
12
|
-
writable: true
|
|
13
|
-
});
|
|
14
|
-
} else {
|
|
15
|
-
obj[key] = value;
|
|
16
|
-
}
|
|
17
|
-
return obj;
|
|
18
|
-
}
|
|
19
6
|
export var Group = function Group(schema) {
|
|
20
7
|
"use strict";
|
|
21
8
|
_classCallCheck(this, Group);
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
_defineProperty(this, "fromId", void 0);
|
|
28
|
-
var _schema_title;
|
|
29
|
-
this.title = (_schema_title = schema.title) !== null && _schema_title !== void 0 ? _schema_title : "";
|
|
30
|
-
var _schema_required;
|
|
31
|
-
this.required = (_schema_required = schema.required) !== null && _schema_required !== void 0 ? _schema_required : false;
|
|
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;
|
|
32
14
|
this.items = schema.items;
|
|
33
15
|
this.tips = schema.tips;
|
|
16
|
+
this.visible = schema.items.some(function(item) {
|
|
17
|
+
var ref;
|
|
18
|
+
return (ref = item.props) === null || ref === void 0 ? void 0 : ref.visible;
|
|
19
|
+
});
|
|
34
20
|
};
|
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';
|
|
@@ -17,47 +17,24 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
17
17
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
18
18
|
return Constructor;
|
|
19
19
|
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
Object.defineProperty(obj, key, {
|
|
23
|
-
value: value,
|
|
24
|
-
enumerable: true,
|
|
25
|
-
configurable: true,
|
|
26
|
-
writable: true
|
|
27
|
-
});
|
|
28
|
-
} else {
|
|
29
|
-
obj[key] = value;
|
|
30
|
-
}
|
|
31
|
-
return obj;
|
|
32
|
-
}
|
|
33
|
-
import { BaseProps } from "../props/base";
|
|
34
|
-
import { error, isPlainObject, noop } from "@byteluck-fe/model-driven-shared";
|
|
20
|
+
import { BaseProps } from '../props/base';
|
|
21
|
+
import { error, isPlainObject, noop } from '@byteluck-fe/model-driven-shared';
|
|
35
22
|
export var Setting = /*#__PURE__*/ function() {
|
|
36
23
|
"use strict";
|
|
37
24
|
function Setting(schema) {
|
|
38
25
|
_classCallCheck(this, Setting);
|
|
39
|
-
_defineProperty(this, "type", void 0);
|
|
40
|
-
_defineProperty(this, "label", void 0);
|
|
41
|
-
_defineProperty(this, "key", void 0);
|
|
42
|
-
_defineProperty(this, "component", void 0);
|
|
43
|
-
_defineProperty(this, "effect", void 0);
|
|
44
|
-
_defineProperty(this, "scopeEffect", void 0);
|
|
45
|
-
_defineProperty(this, "defaultValue", void 0);
|
|
46
|
-
_defineProperty(this, "validator", void 0);
|
|
47
|
-
_defineProperty(this, "props", void 0);
|
|
48
|
-
_defineProperty(this, "effectKeys", void 0);
|
|
49
26
|
this.type = schema.type;
|
|
50
27
|
this.label = schema.label;
|
|
51
28
|
this.key = schema.key;
|
|
52
29
|
this.component = schema.component;
|
|
53
|
-
var
|
|
54
|
-
this.effect = (
|
|
55
|
-
var
|
|
56
|
-
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;
|
|
57
34
|
this.defaultValue = schema.defaultValue;
|
|
58
35
|
this.validator = schema.validator;
|
|
59
|
-
var
|
|
60
|
-
this.props = (
|
|
36
|
+
var _props;
|
|
37
|
+
this.props = (_props = schema.props) !== null && _props !== void 0 ? _props : new BaseProps();
|
|
61
38
|
// private init
|
|
62
39
|
this.effectKeys = Object.keys(this.effect);
|
|
63
40
|
}
|
|
@@ -66,7 +43,7 @@ export var Setting = /*#__PURE__*/ function() {
|
|
|
66
43
|
key: "filterEffects",
|
|
67
44
|
value: function filterEffects(effectKey) {
|
|
68
45
|
var _this = this;
|
|
69
|
-
if (effectKey ===
|
|
46
|
+
if (effectKey === '') {
|
|
70
47
|
return Object.values(this.effect);
|
|
71
48
|
}
|
|
72
49
|
return this.effectKeys.filter(function(key) {
|
package/dist/esm/schema/tab.js
CHANGED
|
@@ -3,28 +3,13 @@ function _classCallCheck(instance, Constructor) {
|
|
|
3
3
|
throw new TypeError("Cannot call a class as a function");
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
|
-
function _defineProperty(obj, key, value) {
|
|
7
|
-
if (key in obj) {
|
|
8
|
-
Object.defineProperty(obj, key, {
|
|
9
|
-
value: value,
|
|
10
|
-
enumerable: true,
|
|
11
|
-
configurable: true,
|
|
12
|
-
writable: true
|
|
13
|
-
});
|
|
14
|
-
} else {
|
|
15
|
-
obj[key] = value;
|
|
16
|
-
}
|
|
17
|
-
return obj;
|
|
18
|
-
}
|
|
19
6
|
export function isTabSchema(schema) {
|
|
20
|
-
return
|
|
7
|
+
return 'type' in schema && schema.type === 'tab';
|
|
21
8
|
}
|
|
22
9
|
export var Tab = function Tab(schema) {
|
|
23
10
|
"use strict";
|
|
24
11
|
_classCallCheck(this, Tab);
|
|
25
|
-
|
|
26
|
-
_defineProperty(this, "title", void 0);
|
|
27
|
-
_defineProperty(this, "items", void 0);
|
|
12
|
+
this.type = 'tab';
|
|
28
13
|
this.title = schema.title;
|
|
29
14
|
this.items = schema.items;
|
|
30
15
|
};
|
package/dist/index.umd.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var Ma=Object.defineProperty,wa=Object.defineProperties;var $a=Object.getOwnPropertyDescriptors;var X=Object.getOwnPropertySymbols;var _a=Object.prototype.hasOwnProperty,Ra=Object.prototype.propertyIsEnumerable;var J=(c,B,E)=>B in c?Ma(c,B,{enumerable:!0,configurable:!0,writable:!0,value:E}):c[B]=E,S=(c,B)=>{for(var E in B||(B={}))_a.call(B,E)&&J(c,E,B[E]);if(X)for(var E of X(B))Ra.call(B,E)&&J(c,E,B[E]);return c},I=(c,B)=>wa(c,$a(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 Q="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Z="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Y="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",ee="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",ue="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",te="{caption}\u5FC5\u586B",ne="\u8BF7\u8F93\u5165\u6807\u9898",ae="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",re="\u8BF7\u8F93\u5165\u884C\u6807\u9898",ie="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",le="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",se="\u8BF7\u7ED1\u5B9A\u8868\u5355",oe="\u8BF7\u7ED1\u5B9A\u5217\u8868",ce="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Ee="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Be="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",he="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",fe="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",me="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Ae="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",pe="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Fe="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",ve="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",de="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",ge="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Ce="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",De="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",be="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",ye="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Se="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Ie="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Me="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",we="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",$e="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",_e="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Re="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Le="\u8BF7\u7ED1\u5B9A\u670D\u52A1",xe="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ue="\u8BF7\u9009\u62E9\u7701",Ne="\u8BF7\u9009\u62E9\u5E02",ke="\u8BF7\u9009\u62E9\u533A",Te="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Pe="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Ve="\u8BF7\u8F93\u5165\u5217\u5BBD",Ge="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Oe="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",He="\u8BF7\u9009\u62E9\u63A7\u4EF6",ze="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",qe="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",je="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ke="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",We="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Xe="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Je="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Qe="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ze="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Ye="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",eu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",uu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",tu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",nu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",au="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ru="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",iu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",lu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",su="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ou="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",cu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Eu={isNotNumber:Q,isNotString:Z,isNotObject:Y,isNotArray:ee,isNotBoolean:ue,runtimeRequired:te,pleaseEnterCaption:ne,pleaseEnterCaptionTip:ae,pleaseEnterRowCaption:re,pleaseEnterPlaceholder:ie,pleaseEnterFieldCode:le,pleaseEnterForm:se,pleaseEnterList:oe,pleaseEnterProcess:ce,pleaseEnterLabel:Ee,pleaseEnterValue:Be,bizKeyNotBindFiled:he,pleaseSelectOneField:fe,pleaseEnterNumberRange:me,pleaseEnterAValueGreaterThanMin:Ae,pleaseEnterAValueLessThanMax:pe,numberRangeSetError:Fe,stringRangeError:ve,attachmentMaxSize:de,pleaseEnterTotalScoreSetting:ge,theTotalScoreMustNotBeLessThan1:Ce,scoreDefaultValueRange:De,attachmentLimitError:be,PleaseReselectTheOptionalQuantity:ye,TheMaximumLengthIsGreaterThanTheMinimumLength:Se,TheMinimumLengthIsGreaterThanTheMaximumLength:Ie,PleaseSelectTheCorrectOptionSettings:Me,optionIdIsRepeat:we,optionIsRequired:$e,pleaseEnterDataCode:_e,pleaseEnterValueFieldCode:Re,pleaseEnterSvcCode:Le,pleaseBindAtLeastOneDisplayValue:xe,pleaseSelectProvince:Ue,pleaseSelectCity:Ne,pleaseSelectDistrict:ke,limitRowsCannotBeLessThan0:Te,TheNumberOfRowsCannotBeLessThanMinRows:Pe,pleaseEnterColumnWidth:Ve,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ge,pleaseCompleteAllRulesAndConditions:Oe,pleaseSelectControl:He,pleaseSelectAtLeastOneColumn:ze,pleaseSelectFillBackMode:qe,pleaseSelectDashboard:je,rootNodeIsRequired:Ke,theViewNameCannotBeEmpty:We,pleaseSelectOcrType:Xe,pleaseSelectAtLeastOneFieldToFillIn:Je,pleaseChooseAtLeastOne:Qe,pleaseEnterButtonContent:Ze,pleaseEnterDataCodeInDataSetting:Ye,pleaseEnterValueFieldCodeInDataSetting:eu,pleaseEnterSvcCodeInDataSetting:uu,pleaseBindAtLeastOneDisplayValueInDataSetting:tu,rootNodeIsRequiredInDataSetting:nu,pleaseEnterMaxHeight:au,pleaseEnter:ru,pleaseEnterWatermark:iu,pleaseEnterFileName:lu,pleaseUploadAtLeastOnePrintTemplate:su,pleaseAssignBusiness:ou,pleaseAssignExternal:cu},Bu="Please enter a number",hu="Please enter a string",fu="Please enter an object",mu="Please enter an array",Au="Please enter a boolean",pu="{caption} Required",Fu="Please enter the title",vu="Please enter the bubble prompt",du="Please enter the row title",gu="Please enter the prompt text",Cu="Please bind data items",Du="Please bind the form",bu="Please bind the list",yu="Please bind the process",Su="Please enter the displayed value",Iu="Please enter the stored value",Mu="The document number is not bound to the data item",wu="Please select at least one display field",$u="Please enter a value greater than or equal to {min} and less than or equal to {max}",_u="Please enter a value greater than or equal to {min}",Ru="Please enter a value less than or equal to {max}",Lu="The value range is set incorrectly",xu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Uu="The attachment size must be between 0MB and 1000MB",Nu="Please fill in the total score setting",ku="The total score cannot be less than 1",Tu="The default value must be between {min} and {max}",Pu="The number of attachments uploaded must be between {min} and {max}",Vu="Please re-select the optional quantity",Gu="The maximum length of the control must be greater than the minimum length",Ou="The minimum length of the control must be less than the maximum length",Hu="Please select the correct option setting",zu="Option ID cannot be repeated",qu="Please enter at least one option",ju="Please bind the data source",Ku="Please bind the stored value",Wu="Please bind the service",Xu="At least one display value must be bound",Ju="Please select a province",Qu="Please select a city",Zu="Please select a district",Yu="The minimum number of lines to fill in cannot be less than 0",et="The number of rows cannot be less than {min} rows",ut="Please enter the column width",tt="Please set the logical relationship of all rule conditions",nt="Please complete all rules and conditions",at="please select control",rt="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",it="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",lt="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",st="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ot="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ct="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Et="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Bt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ht="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ft="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",mt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",At="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",pt="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Ft="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",vt="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",dt="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",gt="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ct="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Dt={isNotNumber:Bu,isNotString:hu,isNotObject:fu,isNotArray:mu,isNotBoolean:Au,runtimeRequired:pu,pleaseEnterCaption:Fu,pleaseEnterCaptionTip:vu,pleaseEnterRowCaption:du,pleaseEnterPlaceholder:gu,pleaseEnterFieldCode:Cu,pleaseEnterForm:Du,pleaseEnterList:bu,pleaseEnterProcess:yu,pleaseEnterLabel:Su,pleaseEnterValue:Iu,bizKeyNotBindFiled:Mu,pleaseSelectOneField:wu,pleaseEnterNumberRange:$u,pleaseEnterAValueGreaterThanMin:_u,pleaseEnterAValueLessThanMax:Ru,numberRangeSetError:Lu,stringRangeError:xu,attachmentMaxSize:Uu,pleaseEnterTotalScoreSetting:Nu,theTotalScoreMustNotBeLessThan1:ku,scoreDefaultValueRange:Tu,attachmentLimitError:Pu,PleaseReselectTheOptionalQuantity:Vu,TheMaximumLengthIsGreaterThanTheMinimumLength:Gu,TheMinimumLengthIsGreaterThanTheMaximumLength:Ou,PleaseSelectTheCorrectOptionSettings:Hu,optionIdIsRepeat:zu,optionIsRequired:qu,pleaseEnterDataCode:ju,pleaseEnterValueFieldCode:Ku,pleaseEnterSvcCode:Wu,pleaseBindAtLeastOneDisplayValue:Xu,pleaseSelectProvince:Ju,pleaseSelectCity:Qu,pleaseSelectDistrict:Zu,limitRowsCannotBeLessThan0:Yu,TheNumberOfRowsCannotBeLessThanMinRows:et,pleaseEnterColumnWidth:ut,pleaseSetTheLogicalRelationshipOfAllRuleConditions:tt,pleaseCompleteAllRulesAndConditions:nt,pleaseSelectControl:at,pleaseSelectDashboard:rt,theViewNameCannotBeEmpty:it,pleaseSelectOcrType:lt,pleaseSelectAtLeastOneFieldToFillIn:st,pleaseChooseAtLeastOne:ot,pleaseEnterButtonContent:ct,pleaseEnterDataCodeInDataSetting:Et,pleaseEnterValueFieldCodeInDataSetting:Bt,pleaseEnterSvcCodeInDataSetting:ht,pleaseBindAtLeastOneDisplayValueInDataSetting:ft,rootNodeIsRequiredInDataSetting:mt,pleaseEnterMaxHeight:At,pleaseEnter:pt,pleaseEnterWatermark:Ft,pleaseEnterFileName:vt,pleaseUploadAtLeastOnePrintTemplate:dt,pleaseAssignBusiness:gt,pleaseAssignExternal:Ct},bt="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",yt="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",St="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",It="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mt="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wt="{caption}\u5FC5\u9808",$t="\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",Rt="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Lt="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xt="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ut="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Nt="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",kt="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Tt="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Pt="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Vt="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Gt="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ot="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ht="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",zt="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",qt="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",jt="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Kt="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Wt="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Xt="\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",Zt="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Yt="\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",en="\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",un="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",tn="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",nn="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",an="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",rn="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ln="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",sn="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",on="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",cn="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",En="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Bn="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",hn="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",fn="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",mn="\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",pn="please select control",Fn="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",vn="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",dn="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",gn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Cn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Dn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",bn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",yn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Sn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",In="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Mn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",wn="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",$n="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",_n="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Rn="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ln="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",xn="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Un="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Nn={isNotNumber:bt,isNotString:yt,isNotObject:St,isNotArray:It,isNotBoolean:Mt,runtimeRequired:wt,pleaseEnterCaption:$t,pleaseEnterCaptionTip:_t,pleaseEnterRowCaption:Rt,pleaseEnterPlaceholder:Lt,pleaseEnterFieldCode:xt,pleaseEnterForm:Ut,pleaseEnterList:Nt,pleaseEnterProcess:kt,pleaseEnterLabel:Tt,pleaseEnterValue:Pt,bizKeyNotBindFiled:Vt,pleaseSelectOneField:Gt,pleaseEnterNumberRange:Ot,pleaseEnterAValueGreaterThanMin:Ht,pleaseEnterAValueLessThanMax:zt,numberRangeSetError:qt,stringRangeError:jt,attachmentMaxSize:Kt,pleaseEnterTotalScoreSetting:Wt,theTotalScoreMustNotBeLessThan1:Xt,scoreDefaultValueRange:Jt,attachmentLimitError:Qt,PleaseReselectTheOptionalQuantity:Zt,TheMaximumLengthIsGreaterThanTheMinimumLength:Yt,TheMinimumLengthIsGreaterThanTheMaximumLength:en,PleaseSelectTheCorrectOptionSettings:un,optionIdIsRepeat:tn,optionIsRequired:nn,pleaseEnterDataCode:an,pleaseEnterValueFieldCode:rn,pleaseEnterSvcCode:ln,pleaseBindAtLeastOneDisplayValue:sn,pleaseSelectProvince:on,pleaseSelectCity:cn,pleaseSelectDistrict:En,limitRowsCannotBeLessThan0:Bn,TheNumberOfRowsCannotBeLessThanMinRows:hn,pleaseEnterColumnWidth:fn,pleaseSetTheLogicalRelationshipOfAllRuleConditions:mn,pleaseCompleteAllRulesAndConditions:An,pleaseSelectControl:pn,pleaseSelectDashboard:Fn,theViewNameCannotBeEmpty:vn,pleaseSelectOcrType:dn,pleaseSelectAtLeastOneFieldToFillIn:gn,pleaseChooseAtLeastOne:Cn,pleaseEnterButtonContent:Dn,pleaseEnterDataCodeInDataSetting:bn,pleaseEnterValueFieldCodeInDataSetting:yn,pleaseEnterSvcCodeInDataSetting:Sn,pleaseBindAtLeastOneDisplayValueInDataSetting:In,rootNodeIsRequiredInDataSetting:Mn,pleaseEnterMaxHeight:wn,pleaseEnter:$n,pleaseEnterWatermark:_n,pleaseEnterFileName:Rn,pleaseUploadAtLeastOnePrintTemplate:Ln,pleaseAssignBusiness:xn,pleaseAssignExternal:Un},kn={zhCN:Eu,enUS:Dt,jaJP:Nn},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 Tn="zh-CN",Pn=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 f;(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.GRID_LAYOUT_CONTAINER="grid-layout-container",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(f||(f={}));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 A;A={},p(A,m.ARRAY,f.ARRAY_COLUMN),p(A,m.AUTO_NUMBER,f.AUTO_NUMBER_COLUMN),p(A,m.DECIMAL,f.DECIMAL_COLUMN),p(A,m.DEPARTMENTS,f.DEPARTMENT_COLUMN),p(A,m.FILE,f.FILE_COLUMN),p(A,m.IMAGE,f.IMAGE_COLUMN),p(A,m.ADDRESS,f.LOCATION_COLUMN),p(A,m.EMPLOYEES,f.EMPLOYEE_COLUMN),p(A,m.TEXT,f.TEXT_COLUMN),p(A,m.TIMESCOPE,f.TIMESCOPE_COLUMN),p(A,m.TIMESTAMP,f.TIMESTAMP_COLUMN),p(A,m.VARCHAR,f.VARCHAR_COLUMN),p(A,m.RELATION,f.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 Vn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Gn(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function On(){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 y(e,u,t){return On()?y=Reflect.construct:y=function(a,o,s){var h=[null];h.push.apply(h,o);var d=Function.bind.apply(a,h),l=new d;return s&&C(l,s.prototype),l},y.apply(null,arguments)}function g(e){return g=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},g(e)}function Hn(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 zn(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function qn(e,u){return u&&(jn(u)==="object"||typeof u=="function")?u:Vn(e)}function C(e,u){return C=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},C(e,u)}var jn=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||!zn(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 y(n,arguments,g(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),C(a,n)},M(e)}function Kn(){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 Wn(e){var u=Kn();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 qn(this,a)}}function Xn(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Jn=function(e){Hn(t,e);var u=Wn(t);function t(n){Gn(this,t);var a;return a=u.call(this,n),a.name="\u{1F4A5} Driven Error",a.message=n?Xn(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 Zn=Object.prototype.toString;function N(e,u){return Zn.call(e)==="[object "+u+"]"}function Yn(e){return N(e,"String")}function ea(e){return N(e,"Promise")}var ua=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();ea(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&&!Yn(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 ta(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function k(e,u){for(var t=0;t<u.length;t++){var n=u[t];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function na(e,u,t){return u&&k(e.prototype,u),t&&k(e,t),e}function aa(e,u,t){return u in e?Object.defineProperty(e,u,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[u]=t,e}var T=function(){function e(){ta(this,e)}return na(e,null,[{key:"getMessage",value:function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(t,"",n)}},{key:"resetI18n",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Tn;return new ua({locale:t,messages:kn})}},{key:"setLocale",value:function(t){return this.$i18n.setLocale(t)}}]),e}();aa(T,"$i18n",T.resetI18n());var ra=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},ia={exports:{}};(function(e){(function(u){var t=function(r,i,F){if(!l(i)||ba(i)||ya(i)||Sa(i)||d(i))return i;var v,b=0,W=0;if(D(i))for(v=[],W=i.length;b<W;b++)v.push(t(r,i[b],F));else{v={};for(var _ in i)Object.prototype.hasOwnProperty.call(i,_)&&(v[r(_,F)]=t(r,i[_],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 Ia(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)},D=function(r){return h.call(r)=="[object Array]"},ba=function(r){return h.call(r)=="[object Date]"},ya=function(r){return h.call(r)=="[object RegExp]"},Sa=function(r){return h.call(r)=="[object Boolean]"},Ia=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)}},K={camelize:a,decamelize:s,pascalize:o,depascalize:s,camelizeKeys:function(r,i){return t($(a,i),r)},decamelizeKeys:function(r,i){return t($(s,i),r,i)},pascalizeKeys:function(r,i){return t($(o,i),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=K:u.humps=K})(ra)})(ia);var P={};Object.defineProperty(P,"__esModule",{value:!0});function w(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(u=>typeof u!="object"||u===null?u:w(u));{const u={};for(const t in e){const n=e[t];u[t]=typeof n!="object"||n===null?n:w(n)}return u}}P.default=w;function V(e){return Object.prototype.toString.call(e)==="[object Object]"}function la(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function G(e,u){for(var t=0;t<u.length;t++){var n=u[t];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function sa(e,u,t){return u&&G(e.prototype,u),t&&G(e,t),e}function oa(e,u,t){return u in e?Object.defineProperty(e,u,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[u]=t,e}var ca=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],Ea=function(){function e(){la(this,e)}return sa(e,[{key:"getEventsFromKeys",value:function(t){var n=typeof t=="string"?[t]:t;return e.events.filter(function(a){return n.includes(a.key)})}}]),e}();oa(Ea,"events",ca);class O{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:Pn,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 or=Object.defineProperty,lr=Object.defineProperties;var sr=Object.getOwnPropertyDescriptors;var Ae=Object.getOwnPropertySymbols;var cr=Object.prototype.hasOwnProperty,Er=Object.prototype.propertyIsEnumerable;var Fe=(p,m,B)=>m in p?or(p,m,{enumerable:!0,configurable:!0,writable:!0,value:B}):p[m]=B,X=(p,m)=>{for(var B in m||(m={}))cr.call(m,B)&&Fe(p,B,m[B]);if(Ae)for(var B of Ae(m))Er.call(m,B)&&Fe(p,B,m[B]);return p},J=(p,m)=>lr(p,sr(m));(function(p,m){typeof exports=="object"&&typeof module!="undefined"?m(exports):typeof define=="function"&&define.amd?define(["exports"],m):(p=typeof globalThis!="undefined"?globalThis:p||self,m(p.modelDrivenSettings={}))})(this,function(p){"use strict";function m(e){return e}class B{constructor(u){var t,a,i;this.visible=(t=u==null?void 0:u.visible)!=null?t:!0,this.expression=(a=u==null?void 0:u.expression)!=null?a:!1,this.updateParent=(i=u==null?void 0:u.updateParent)!=null?i:!1}get isAtomicComponent(){return!0}}var ge="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Ce="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",be="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",De="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Se="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",ye="{caption}\u5FC5\u586B",Ie="\u8BF7\u8F93\u5165\u6807\u9898",Me="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",we="\u8BF7\u8F93\u5165\u884C\u6807\u9898",$e="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Le="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Re="\u8BF7\u7ED1\u5B9A\u8868\u5355",Ne="\u8BF7\u7ED1\u5B9A\u5217\u8868",Ue="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",_e="\u8BF7\u8F93\u5165\u663E\u793A\u503C",xe="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Pe="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Te="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Ge="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ke="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Oe="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Ve="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",je="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",ze="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",He="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",qe="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",We="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Ke="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Xe="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Je="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Qe="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Ze="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Ye="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",eu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",uu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",tu="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",au="\u8BF7\u7ED1\u5B9A\u670D\u52A1",nu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ru="\u8BF7\u9009\u62E9\u7701",iu="\u8BF7\u9009\u62E9\u5E02",ou="\u8BF7\u9009\u62E9\u533A",lu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",su="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",cu="\u8BF7\u8F93\u5165\u5217\u5BBD",Eu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",hu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",fu="\u8BF7\u9009\u62E9\u63A7\u4EF6",pu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",vu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Bu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",mu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",du="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Au="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Fu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",gu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Cu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",bu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Du="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Su="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",yu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Iu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Mu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",wu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",$u="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Lu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ru="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Nu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Uu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",_u="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",xu="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Pu="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",Tu="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",Gu="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",ku={isNotNumber:ge,isNotString:Ce,isNotObject:be,isNotArray:De,isNotBoolean:Se,runtimeRequired:ye,pleaseEnterCaption:Ie,pleaseEnterCaptionTip:Me,pleaseEnterRowCaption:we,pleaseEnterPlaceholder:$e,pleaseEnterFieldCode:Le,pleaseEnterForm:Re,pleaseEnterList:Ne,pleaseEnterProcess:Ue,pleaseEnterLabel:_e,pleaseEnterValue:xe,bizKeyNotBindFiled:Pe,pleaseSelectOneField:Te,pleaseEnterNumberRange:Ge,pleaseEnterAValueGreaterThanMin:ke,pleaseEnterAValueLessThanMax:Oe,numberRangeSetError:Ve,stringRangeError:je,attachmentMaxSize:ze,pleaseEnterTotalScoreSetting:He,theTotalScoreMustNotBeLessThan1:qe,scoreDefaultValueRange:We,attachmentLimitError:Ke,PleaseReselectTheOptionalQuantity:Xe,TheMaximumLengthIsGreaterThanTheMinimumLength:Je,TheMinimumLengthIsGreaterThanTheMaximumLength:Qe,PleaseSelectTheCorrectOptionSettings:Ze,optionIdIsRepeat:Ye,optionIsRequired:eu,pleaseEnterDataCode:uu,pleaseEnterValueFieldCode:tu,pleaseEnterSvcCode:au,pleaseBindAtLeastOneDisplayValue:nu,pleaseSelectProvince:ru,pleaseSelectCity:iu,pleaseSelectDistrict:ou,limitRowsCannotBeLessThan0:lu,TheNumberOfRowsCannotBeLessThanMinRows:su,pleaseEnterColumnWidth:cu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Eu,pleaseCompleteAllRulesAndConditions:hu,pleaseSelectControl:fu,pleaseSelectAtLeastOneColumn:pu,pleaseSelectFillBackMode:vu,pleaseSelectDashboard:Bu,rootNodeIsRequired:mu,theViewNameCannotBeEmpty:du,pleaseSelectOcrType:Au,pleaseSelectAtLeastOneFieldToFillIn:Fu,pleaseChooseAtLeastOne:gu,pleaseEnterButtonContent:Cu,pleaseEnterDataCodeInDataSetting:bu,pleaseEnterValueFieldCodeInDataSetting:Du,pleaseEnterSvcCodeInDataSetting:Su,pleaseBindAtLeastOneDisplayValueInDataSetting:yu,rootNodeIsRequiredInDataSetting:Iu,pleaseEnterMaxHeight:Mu,pleaseEnter:wu,pleaseEnterWatermark:$u,pleaseEnterFileName:Lu,pleaseUploadAtLeastOnePrintTemplate:Ru,pleaseAssignBusiness:Nu,pleaseAssignExternal:Uu,pleaseEnterAliasCode:_u,pleaseSelectDataCode:xu,pleaseSelectSvcCode:Pu,pleaseSelectJoinFieldCode:Tu,pleaseSelectMainFieldCode:Gu},Ou="Please enter a number",Vu="Please enter a string",ju="Please enter an object",zu="Please enter an array",Hu="Please enter a boolean",qu="{caption} Required",Wu="Please enter the title",Ku="Please enter the bubble prompt",Xu="Please enter the row title",Ju="Please enter the prompt text",Qu="Please bind data items",Zu="Please bind the form",Yu="Please bind the list",et="Please bind the process",ut="Please enter the displayed value",tt="Please enter the stored value",at="The document number is not bound to the data item",nt="Please select at least one display field",rt="Please enter a value greater than or equal to {min} and less than or equal to {max}",it="Please enter a value greater than or equal to {min}",ot="Please enter a value less than or equal to {max}",lt="The value range is set incorrectly",st="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",ct="The attachment size must be between 0MB and 1000MB",Et="Please fill in the total score setting",ht="The total score cannot be less than 1",ft="The default value must be between {min} and {max}",pt="The number of attachments uploaded must be between {min} and {max}",vt="Please re-select the optional quantity",Bt="The maximum length of the control must be greater than the minimum length",mt="The minimum length of the control must be less than the maximum length",dt="Please select the correct option setting",At="Option ID cannot be repeated",Ft="Please enter at least one option",gt="Please bind the data source",Ct="Please bind the stored value",bt="Please bind the service",Dt="At least one display value must be bound",St="Please select a province",yt="Please select a city",It="Please select a district",Mt="The minimum number of lines to fill in cannot be less than 0",wt="The number of rows cannot be less than {min} rows",$t="Please enter the column width",Lt="Please set the logical relationship of all rule conditions",Rt="Please complete all rules and conditions",Nt="please select control",Ut="Please select the dashboard",_t="View name cannot be empty",xt="Please select recognition type",Pt="Please select at least one field to fill in",Tt="Please select at least one",Gt="Please enter the button title",kt="Please bind the business model in the data settings",Ot="Please bind storage values in data settings",Vt="Please bind the service in the data settings",jt="Please bind at least one display value in the data settings",zt="Please select the root node in the data settings",Ht="Please enter the maximum height",qt="The input content cannot be empty",Wt="Watermark cannot be empty",Kt="File name cannot be empty",Xt="Please upload at least one printing template!\uFF01",Jt="Please select a specific business department",Qt="Please select a specified external organization",Zt="Please enter a sub table alias",Yt="Please select the associated table to set the business model",ea="Please select the association table to set the binding service",ua="Select associated sub table fields",ta="Please select the associated main table field",aa={isNotNumber:Ou,isNotString:Vu,isNotObject:ju,isNotArray:zu,isNotBoolean:Hu,runtimeRequired:qu,pleaseEnterCaption:Wu,pleaseEnterCaptionTip:Ku,pleaseEnterRowCaption:Xu,pleaseEnterPlaceholder:Ju,pleaseEnterFieldCode:Qu,pleaseEnterForm:Zu,pleaseEnterList:Yu,pleaseEnterProcess:et,pleaseEnterLabel:ut,pleaseEnterValue:tt,bizKeyNotBindFiled:at,pleaseSelectOneField:nt,pleaseEnterNumberRange:rt,pleaseEnterAValueGreaterThanMin:it,pleaseEnterAValueLessThanMax:ot,numberRangeSetError:lt,stringRangeError:st,attachmentMaxSize:ct,pleaseEnterTotalScoreSetting:Et,theTotalScoreMustNotBeLessThan1:ht,scoreDefaultValueRange:ft,attachmentLimitError:pt,PleaseReselectTheOptionalQuantity:vt,TheMaximumLengthIsGreaterThanTheMinimumLength:Bt,TheMinimumLengthIsGreaterThanTheMaximumLength:mt,PleaseSelectTheCorrectOptionSettings:dt,optionIdIsRepeat:At,optionIsRequired:Ft,pleaseEnterDataCode:gt,pleaseEnterValueFieldCode:Ct,pleaseEnterSvcCode:bt,pleaseBindAtLeastOneDisplayValue:Dt,pleaseSelectProvince:St,pleaseSelectCity:yt,pleaseSelectDistrict:It,limitRowsCannotBeLessThan0:Mt,TheNumberOfRowsCannotBeLessThanMinRows:wt,pleaseEnterColumnWidth:$t,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Lt,pleaseCompleteAllRulesAndConditions:Rt,pleaseSelectControl:Nt,pleaseSelectDashboard:Ut,theViewNameCannotBeEmpty:_t,pleaseSelectOcrType:xt,pleaseSelectAtLeastOneFieldToFillIn:Pt,pleaseChooseAtLeastOne:Tt,pleaseEnterButtonContent:Gt,pleaseEnterDataCodeInDataSetting:kt,pleaseEnterValueFieldCodeInDataSetting:Ot,pleaseEnterSvcCodeInDataSetting:Vt,pleaseBindAtLeastOneDisplayValueInDataSetting:jt,rootNodeIsRequiredInDataSetting:zt,pleaseEnterMaxHeight:Ht,pleaseEnter:qt,pleaseEnterWatermark:Wt,pleaseEnterFileName:Kt,pleaseUploadAtLeastOnePrintTemplate:Xt,pleaseAssignBusiness:Jt,pleaseAssignExternal:Qt,pleaseEnterAliasCode:Zt,pleaseSelectDataCode:Yt,pleaseSelectSvcCode:ea,pleaseSelectJoinFieldCode:ua,pleaseSelectMainFieldCode:ta},na="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ra="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ia="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",oa="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",la="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",sa="{caption}\u5FC5\u9808",ca="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ea="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ha="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",fa="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",pa="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",va="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ba="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ma="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",da="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Aa="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fa="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",ga="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ca="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ba="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Da="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Sa="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",ya="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ia="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ma="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",wa="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",$a="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",La="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Ra="\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",Ua="\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",_a="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",xa="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Pa="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Ta="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ga="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ka="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Oa="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Va="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ja="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",za="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ha="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",qa="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Wa="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ka="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Xa="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ja="please select control",Qa="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Za="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ya="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",en="\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",un="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",tn="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",an="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",nn="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",rn="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",on="\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",ln="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",sn="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",cn="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",En="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",hn="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",fn="\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",pn="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",vn="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Bn="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",mn="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",dn="\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",An="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",Fn="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",gn={isNotNumber:na,isNotString:ra,isNotObject:ia,isNotArray:oa,isNotBoolean:la,runtimeRequired:sa,pleaseEnterCaption:ca,pleaseEnterCaptionTip:Ea,pleaseEnterRowCaption:ha,pleaseEnterPlaceholder:fa,pleaseEnterFieldCode:pa,pleaseEnterForm:va,pleaseEnterList:Ba,pleaseEnterProcess:ma,pleaseEnterLabel:da,pleaseEnterValue:Aa,bizKeyNotBindFiled:Fa,pleaseSelectOneField:ga,pleaseEnterNumberRange:Ca,pleaseEnterAValueGreaterThanMin:ba,pleaseEnterAValueLessThanMax:Da,numberRangeSetError:Sa,stringRangeError:ya,attachmentMaxSize:Ia,pleaseEnterTotalScoreSetting:Ma,theTotalScoreMustNotBeLessThan1:wa,scoreDefaultValueRange:$a,attachmentLimitError:La,PleaseReselectTheOptionalQuantity:Ra,TheMaximumLengthIsGreaterThanTheMinimumLength:Na,TheMinimumLengthIsGreaterThanTheMaximumLength:Ua,PleaseSelectTheCorrectOptionSettings:_a,optionIdIsRepeat:xa,optionIsRequired:Pa,pleaseEnterDataCode:Ta,pleaseEnterValueFieldCode:Ga,pleaseEnterSvcCode:ka,pleaseBindAtLeastOneDisplayValue:Oa,pleaseSelectProvince:Va,pleaseSelectCity:ja,pleaseSelectDistrict:za,limitRowsCannotBeLessThan0:Ha,TheNumberOfRowsCannotBeLessThanMinRows:qa,pleaseEnterColumnWidth:Wa,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ka,pleaseCompleteAllRulesAndConditions:Xa,pleaseSelectControl:Ja,pleaseSelectDashboard:Qa,theViewNameCannotBeEmpty:Za,pleaseSelectOcrType:Ya,pleaseSelectAtLeastOneFieldToFillIn:en,pleaseChooseAtLeastOne:un,pleaseEnterButtonContent:tn,pleaseEnterDataCodeInDataSetting:an,pleaseEnterValueFieldCodeInDataSetting:nn,pleaseEnterSvcCodeInDataSetting:rn,pleaseBindAtLeastOneDisplayValueInDataSetting:on,rootNodeIsRequiredInDataSetting:ln,pleaseEnterMaxHeight:sn,pleaseEnter:cn,pleaseEnterWatermark:En,pleaseEnterFileName:hn,pleaseUploadAtLeastOnePrintTemplate:fn,pleaseAssignBusiness:pn,pleaseAssignExternal:vn,pleaseEnterAliasCode:Bn,pleaseSelectDataCode:mn,pleaseSelectSvcCode:dn,pleaseSelectJoinFieldCode:An,pleaseSelectMainFieldCode:Fn},Cn={zhCN:ku,enUS:aa,jaJP:gn},ae;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(ae||(ae={}));var ne;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(ne||(ne={}));var bn="zh-CN",Dn=function(){};function I(e,u,t){return u in e?Object.defineProperty(e,u,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[u]=t,e}var re;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(re||(re={}));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.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.GRID_LAYOUT_CONTAINER="grid-layout-container",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e.GRID_LAYOUT_WRAP="grid-layout-wrap"})(A||(A={}));var F;(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"})(F||(F={}));var g;g={},I(g,F.ARRAY,A.ARRAY_COLUMN),I(g,F.AUTO_NUMBER,A.AUTO_NUMBER_COLUMN),I(g,F.DECIMAL,A.DECIMAL_COLUMN),I(g,F.DEPARTMENTS,A.DEPARTMENT_COLUMN),I(g,F.FILE,A.FILE_COLUMN),I(g,F.IMAGE,A.IMAGE_COLUMN),I(g,F.ADDRESS,A.LOCATION_COLUMN),I(g,F.EMPLOYEES,A.EMPLOYEE_COLUMN),I(g,F.TEXT,A.TEXT_COLUMN),I(g,F.TIMESCOPE,A.TIMESCOPE_COLUMN),I(g,F.TIMESTAMP,A.TIMESTAMP_COLUMN),I(g,F.VARCHAR,A.VARCHAR_COLUMN),I(g,F.RELATION,A.VARCHAR_COLUMN);var ie;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(ie||(ie={}));function Sn(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function yn(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function In(){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 z(e,u,t){return In()?z=Reflect.construct:z=function(i,h,v){var d=[null];d.push.apply(d,h);var L=Function.bind.apply(i,d),U=new L;return v&&T(U,v.prototype),U},z.apply(null,arguments)}function P(e){return P=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},P(e)}function Mn(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&&T(e,u)}function wn(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function $n(e,u){return u&&(Ln(u)==="object"||typeof u=="function")?u:Sn(e)}function T(e,u){return T=Object.setPrototypeOf||function(a,i){return a.__proto__=i,a},T(e,u)}var Ln=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Q(e){var u=typeof Map=="function"?new Map:void 0;return Q=function(a){if(a===null||!wn(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,i)}function i(){return z(a,arguments,P(this).constructor)}return i.prototype=Object.create(a.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),T(i,a)},Q(e)}function Rn(){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 Nn(e){var u=Rn();return function(){var a=P(e),i;if(u){var h=P(this).constructor;i=Reflect.construct(a,arguments,h)}else i=a.apply(this,arguments);return $n(this,i)}}function Un(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var _n=function(e){Mn(t,e);var u=Nn(t);function t(a){yn(this,t);var i;return i=u.call(this,a),i.name="\u{1F4A5} Driven Error",i.message=a?Un(a):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",i}return t}(Q(Error));function xn(e){throw new _n(e)}var Pn=Object.prototype.toString;function oe(e,u){return Pn.call(e)==="[object "+u+"]"}function Tn(e){return oe(e,"String")}function Gn(e){return oe(e,"Promise")}var kn=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();Gn(a)?a.then(function(i){t._messageCache.clear(),t.messages[t.localeInMessageKey]=i}):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 i=this.getMessage(u);return i?this.formatMessage(i,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(i,h,v,d){if(i!==void 0){var L=i[h];if(!(v===d.length-1&&!Tn(L)))return L}},this.message);return this._messageCache.set(u,a),a},e.prototype.formatMessage=function(u,t){return t?u.replace(this.variableRegExp,function(a,i){var h=t[i];return h!==void 0?String(h):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 On(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function le(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 Vn(e,u,t){return u&&le(e.prototype,u),t&&le(e,t),e}var se=function(){function e(){On(this,e)}return Vn(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]:bn;return new kn({locale:t,messages:Cn})}},{key:"setLocale",value:function(t){return this.$i18n.setLocale(t)}}]),e}();se.$i18n=se.resetI18n();var jn=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},zn={exports:{}};(function(e){(function(u){var t=function(s,c,C){if(!U(c)||w(c)||H(c)||k(c)||L(c))return c;var b,M=0,_=0;if(G(c))for(b=[],_=c.length;M<_;M++)b.push(t(s,c[M],C));else{b={};for(var R in c)Object.prototype.hasOwnProperty.call(c,R)&&(b[s(R,C)]=t(s,c[R],C))}return b},a=function(s,c){c=c||{};var C=c.separator||"_",b=c.split||/(?=[A-Z])/;return s.split(b).join(C)},i=function(s){return q(s)?s:(s=s.replace(/[\-_\s]+(.)?/g,function(c,C){return C?C.toUpperCase():""}),s.substr(0,1).toLowerCase()+s.substr(1))},h=function(s){var c=i(s);return c.substr(0,1).toUpperCase()+c.substr(1)},v=function(s,c){return a(s,c).toLowerCase()},d=Object.prototype.toString,L=function(s){return typeof s=="function"},U=function(s){return s===Object(s)},G=function(s){return d.call(s)=="[object Array]"},w=function(s){return d.call(s)=="[object Date]"},H=function(s){return d.call(s)=="[object RegExp]"},k=function(s){return d.call(s)=="[object Boolean]"},q=function(s){return s=s-0,s===s},O=function(s,c){var C=c&&"process"in c?c.process:c;return typeof C!="function"?s:function(b,M){return C(b,s,M)}},V={camelize:i,decamelize:v,pascalize:h,depascalize:v,camelizeKeys:function(s,c){return t(O(i,c),s)},decamelizeKeys:function(s,c){return t(O(v,c),s,c)},pascalizeKeys:function(s,c){return t(O(h,c),s)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=V:u.humps=V})(jn)})(zn);var ce={};Object.defineProperty(ce,"__esModule",{value:!0});function Z(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(u=>typeof u!="object"||u===null?u:Z(u));{const u={};for(const t in e){const a=e[t];u[t]=typeof a!="object"||a===null?a:Z(a)}return u}}ce.default=Z;function Ee(e){return Object.prototype.toString.call(e)==="[object Object]"}var Hn={exports:{}};(function(e){var u=function(t){var a=Object.prototype,i=a.hasOwnProperty,h=Object.defineProperty||function(r,n,o){r[n]=o.value},v,d=typeof Symbol=="function"?Symbol:{},L=d.iterator||"@@iterator",U=d.asyncIterator||"@@asyncIterator",G=d.toStringTag||"@@toStringTag";function w(r,n,o){return Object.defineProperty(r,n,{value:o,enumerable:!0,configurable:!0,writable:!0}),r[n]}try{w({},"")}catch(r){w=function(n,o,E){return n[o]=E}}function H(r,n,o,E){var l=n&&n.prototype instanceof C?n:C,f=Object.create(l.prototype),D=new ee(E||[]);return h(f,"_invoke",{value:nr(r,o,D)}),f}t.wrap=H;function k(r,n,o){try{return{type:"normal",arg:r.call(n,o)}}catch(E){return{type:"throw",arg:E}}}var q="suspendedStart",O="suspendedYield",V="executing",s="completed",c={};function C(){}function b(){}function M(){}var _={};w(_,L,function(){return this});var R=Object.getPrototypeOf,W=R&&R(R(ue([])));W&&W!==a&&i.call(W,L)&&(_=W);var x=M.prototype=C.prototype=Object.create(_);b.prototype=M,h(x,"constructor",{value:M,configurable:!0}),h(M,"constructor",{value:b,configurable:!0}),b.displayName=w(M,G,"GeneratorFunction");function me(r){["next","throw","return"].forEach(function(n){w(r,n,function(o){return this._invoke(n,o)})})}t.isGeneratorFunction=function(r){var n=typeof r=="function"&&r.constructor;return n?n===b||(n.displayName||n.name)==="GeneratorFunction":!1},t.mark=function(r){return Object.setPrototypeOf?Object.setPrototypeOf(r,M):(r.__proto__=M,w(r,G,"GeneratorFunction")),r.prototype=Object.create(x),r},t.awrap=function(r){return{__await:r}};function K(r,n){function o(f,D,S,$){var y=k(r[f],r,D);if(y.type==="throw")$(y.arg);else{var te=y.arg,j=te.value;return j&&typeof j=="object"&&i.call(j,"__await")?n.resolve(j.__await).then(function(N){o("next",N,S,$)},function(N){o("throw",N,S,$)}):n.resolve(j).then(function(N){te.value=N,S(te)},function(N){return o("throw",N,S,$)})}}var E;function l(f,D){function S(){return new n(function($,y){o(f,D,$,y)})}return E=E?E.then(S,S):S()}h(this,"_invoke",{value:l})}me(K.prototype),w(K.prototype,U,function(){return this}),t.AsyncIterator=K,t.async=function(r,n,o,E,l){l===void 0&&(l=Promise);var f=new K(H(r,n,o,E),l);return t.isGeneratorFunction(n)?f:f.next().then(function(D){return D.done?D.value:f.next()})};function nr(r,n,o){var E=q;return function(f,D){if(E===V)throw new Error("Generator is already running");if(E===s){if(f==="throw")throw D;return ir()}for(o.method=f,o.arg=D;;){var S=o.delegate;if(S){var $=de(S,o);if($){if($===c)continue;return $}}if(o.method==="next")o.sent=o._sent=o.arg;else if(o.method==="throw"){if(E===q)throw E=s,o.arg;o.dispatchException(o.arg)}else o.method==="return"&&o.abrupt("return",o.arg);E=V;var y=k(r,n,o);if(y.type==="normal"){if(E=o.done?s:O,y.arg===c)continue;return{value:y.arg,done:o.done}}else y.type==="throw"&&(E=s,o.method="throw",o.arg=y.arg)}}}function de(r,n){var o=n.method,E=r.iterator[o];if(E===v)return n.delegate=null,o==="throw"&&r.iterator.return&&(n.method="return",n.arg=v,de(r,n),n.method==="throw")||o!=="return"&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+o+"' method")),c;var l=k(E,r.iterator,n.arg);if(l.type==="throw")return n.method="throw",n.arg=l.arg,n.delegate=null,c;var f=l.arg;if(!f)return n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,c;if(f.done)n[r.resultName]=f.value,n.next=r.nextLoc,n.method!=="return"&&(n.method="next",n.arg=v);else return f;return n.delegate=null,c}me(x),w(x,G,"Generator"),w(x,L,function(){return this}),w(x,"toString",function(){return"[object Generator]"});function rr(r){var n={tryLoc:r[0]};1 in r&&(n.catchLoc=r[1]),2 in r&&(n.finallyLoc=r[2],n.afterLoc=r[3]),this.tryEntries.push(n)}function Y(r){var n=r.completion||{};n.type="normal",delete n.arg,r.completion=n}function ee(r){this.tryEntries=[{tryLoc:"root"}],r.forEach(rr,this),this.reset(!0)}t.keys=function(r){var n=Object(r),o=[];for(var E in n)o.push(E);return o.reverse(),function l(){for(;o.length;){var f=o.pop();if(f in n)return l.value=f,l.done=!1,l}return l.done=!0,l}};function ue(r){if(r||r===""){var n=r[L];if(n)return n.call(r);if(typeof r.next=="function")return r;if(!isNaN(r.length)){var o=-1,E=function l(){for(;++o<r.length;)if(i.call(r,o))return l.value=r[o],l.done=!1,l;return l.value=v,l.done=!0,l};return E.next=E}}throw new TypeError(typeof r+" is not iterable")}t.values=ue;function ir(){return{value:v,done:!0}}return ee.prototype={constructor:ee,reset:function(r){if(this.prev=0,this.next=0,this.sent=this._sent=v,this.done=!1,this.delegate=null,this.method="next",this.arg=v,this.tryEntries.forEach(Y),!r)for(var n in this)n.charAt(0)==="t"&&i.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=v)},stop:function(){this.done=!0;var r=this.tryEntries[0],n=r.completion;if(n.type==="throw")throw n.arg;return this.rval},dispatchException:function(r){if(this.done)throw r;var n=this;function o($,y){return f.type="throw",f.arg=r,n.next=$,y&&(n.method="next",n.arg=v),!!y}for(var E=this.tryEntries.length-1;E>=0;--E){var l=this.tryEntries[E],f=l.completion;if(l.tryLoc==="root")return o("end");if(l.tryLoc<=this.prev){var D=i.call(l,"catchLoc"),S=i.call(l,"finallyLoc");if(D&&S){if(this.prev<l.catchLoc)return o(l.catchLoc,!0);if(this.prev<l.finallyLoc)return o(l.finallyLoc)}else if(D){if(this.prev<l.catchLoc)return o(l.catchLoc,!0)}else if(S){if(this.prev<l.finallyLoc)return o(l.finallyLoc)}else throw new Error("try statement without catch or finally")}}},abrupt:function(r,n){for(var o=this.tryEntries.length-1;o>=0;--o){var E=this.tryEntries[o];if(E.tryLoc<=this.prev&&i.call(E,"finallyLoc")&&this.prev<E.finallyLoc){var l=E;break}}l&&(r==="break"||r==="continue")&&l.tryLoc<=n&&n<=l.finallyLoc&&(l=null);var f=l?l.completion:{};return f.type=r,f.arg=n,l?(this.method="next",this.next=l.finallyLoc,c):this.complete(f)},complete:function(r,n){if(r.type==="throw")throw r.arg;return r.type==="break"||r.type==="continue"?this.next=r.arg:r.type==="return"?(this.rval=this.arg=r.arg,this.method="return",this.next="end"):r.type==="normal"&&n&&(this.next=n),c},finish:function(r){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.finallyLoc===r)return this.complete(o.completion,o.afterLoc),Y(o),c}},catch:function(r){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc===r){var E=o.completion;if(E.type==="throw"){var l=E.arg;Y(o)}return l}}throw new Error("illegal catch attempt")},delegateYield:function(r,n,o){return this.delegate={iterator:ue(r),resultName:n,nextLoc:o},this.method==="next"&&(this.arg=v),c}},t}(e.exports);try{regeneratorRuntime=u}catch(t){typeof globalThis=="object"?globalThis.regeneratorRuntime=u:Function("r","regeneratorRuntime = r")(u)}})(Hn);class he{constructor(u){var t,a,i;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:Dn,this.defaultValue=u.defaultValue,this.validator=u.validator,this.props=(i=u.props)!=null?i:new B,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);Ee(a)&&Object.assign(this.props,a)}catch(a){xn(`effect error
|
|
2
|
+
${a}`)}}callEffect(u,...t){this.filterEffects(u).forEach(a=>this.callEffectFn(a,t))}callScopeEffect(...u){this.callEffectFn(this.scopeEffect,u)}}class fe{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,this.visible=u.items.some(i=>{var h;return(h=i.props)==null?void 0:h.visible})}}function pe(e){return"type"in e&&e.type==="tab"}class ve{constructor(u){this.type="tab",this.title=u.title,this.items=u.items}}class qn extends B{constructor(u){super(u);Ee(u)&&Object.entries(u).forEach(([t,a])=>{this[t]=a})}}class Wn extends B{constructor(u){super(u);var t,a,i,h;this.maxLength=(t=u==null?void 0:u.maxLength)!=null?t:"",this.minLength=(a=u==null?void 0:u.minLength)!=null?a:"",this.placeholder=(i=u==null?void 0:u.placeholder)!=null?i:"",this.i18n=(h=u==null?void 0:u.i18n)!=null?h:!1}}class Kn extends B{constructor(u){super(u);var t,a,i;this.max=(t=u==null?void 0:u.max)!=null?t:"",this.min=(a=u==null?void 0:u.min)!=null?a:"",this.placeholder=(i=u==null?void 0:u.placeholder)!=null?i:""}}class Xn extends B{constructor(u){super(u);var t,a,i;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=(i=u==null?void 0:u.disabled)!=null?i:!1}}class Jn extends B{constructor(u){super(u);var t;this.options=(t=u==null?void 0:u.options)!=null?t:[]}}class Qn extends B{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 Zn extends B{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 Yn extends B{constructor(u){super(u);var t,a,i,h,v,d;this.maxLength=(t=u==null?void 0:u.maxLength)!=null?t:"",this.minLength=(a=u==null?void 0:u.minLength)!=null?a:"",this.placeholder=(i=u==null?void 0:u.placeholder)!=null?i:"",this.maxRows=(h=u==null?void 0:u.maxRows)!=null?h:"",this.minRows=(v=u==null?void 0:u.minRows)!=null?v:"",this.i18n=(d=u==null?void 0:u.i18n)!=null?d:!1}}function er(e,u){switch(e){case"input":return new Wn(u);case"textarea":return new Yn(u);case"input-number":return new Kn(u);case"switch":return new Xn(u);case"radio":return new Zn(u);case"checkbox":return new Jn(u);case"select":return new Qn(u);default:return new qn(u)}}function ur(e){return function(u){const t=e.get(u);if(!!t)return new he(J(X({},t),{props:er(t.component,"props"in t?t.props:void 0)}))}}function tr(e){const u=e.fields.reduce((i,h)=>(i.set(h.key,h),i),new Map);function t(i){return new fe(J(X({},i),{items:i.items.map(ur(u)).filter(Boolean)}))}function a(i){return i.map(t)}return e.groups.map(i=>pe(i)?new ve(J(X({},i),{items:a(i.items)})):t(i))}function Be(){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:i}=u;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(e.setInstance(i,"style.width",""),e.setInstance(i,"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:i}=u;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(e.setInstance(i,"style.height",""),e.setInstance(i,"style.heightConfig","fill")),u.newParent)return{visible:u.newParent.type==="advanced-container"}}}]}function ar(e){return[...Be(),{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,i;if(((a=t.current)==null?void 0:a.type)!==((i=t.from)==null?void 0:i.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}}]}p.Group=fe,p.Setting=he,p.Tab=ve,p.createBaseFields=Be,p.createFormBaseFields=ar,p.defineInstance=m,p.initSettings=tr,p.isTabSchema=pe,Object.defineProperty(p,"__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[];
|