@byteluck-fe/model-driven-settings 6.2.0-beta.9 → 6.2.0-cyj.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/default/createFormBaseFields.js +4 -2
- package/dist/esm/initSettings.js +3 -6
- package/dist/esm/props/base.js +7 -13
- package/dist/esm/props/checkbox.js +14 -22
- package/dist/esm/props/custom.js +12 -18
- package/dist/esm/props/input-number.js +16 -26
- package/dist/esm/props/input.js +17 -28
- package/dist/esm/props/radio.js +15 -24
- package/dist/esm/props/select.js +15 -24
- package/dist/esm/props/switch.js +16 -26
- package/dist/esm/props/textarea.js +19 -32
- package/dist/esm/schema/group.js +3 -8
- package/dist/esm/schema/setting.js +3 -9
- package/dist/esm/schema/tab.js +2 -6
- package/dist/index.umd.js +2 -2
- package/package.json +4 -4
|
@@ -7,10 +7,12 @@ function _array_without_holes(arr) {
|
|
|
7
7
|
if (Array.isArray(arr)) return _array_like_to_array(arr);
|
|
8
8
|
}
|
|
9
9
|
function _iterable_to_array(iter) {
|
|
10
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
10
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
11
|
+
return Array.from(iter);
|
|
12
|
+
}
|
|
11
13
|
}
|
|
12
14
|
function _non_iterable_spread() {
|
|
13
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
15
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
14
16
|
}
|
|
15
17
|
function _to_consumable_array(arr) {
|
|
16
18
|
return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
|
package/dist/esm/initSettings.js
CHANGED
|
@@ -6,9 +6,7 @@ function _define_property(obj, key, value) {
|
|
|
6
6
|
configurable: true,
|
|
7
7
|
writable: true
|
|
8
8
|
});
|
|
9
|
-
} else
|
|
10
|
-
obj[key] = value;
|
|
11
|
-
}
|
|
9
|
+
} else obj[key] = value;
|
|
12
10
|
return obj;
|
|
13
11
|
}
|
|
14
12
|
function _object_spread(target) {
|
|
@@ -41,9 +39,8 @@ function ownKeys(object, enumerableOnly) {
|
|
|
41
39
|
}
|
|
42
40
|
function _object_spread_props(target, source) {
|
|
43
41
|
source = source != null ? source : {};
|
|
44
|
-
if (Object.getOwnPropertyDescriptors)
|
|
45
|
-
|
|
46
|
-
} else {
|
|
42
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
43
|
+
else {
|
|
47
44
|
ownKeys(Object(source)).forEach(function(key) {
|
|
48
45
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
49
46
|
});
|
package/dist/esm/props/base.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _class_call_check(instance, Constructor) {
|
|
2
|
-
if (!(instance instanceof Constructor))
|
|
3
|
-
throw new TypeError("Cannot call a class as a function");
|
|
4
|
-
}
|
|
2
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
5
3
|
}
|
|
6
4
|
function _defineProperties(target, props) {
|
|
7
5
|
for(var i = 0; i < props.length; i++){
|
|
@@ -25,31 +23,27 @@ function _define_property(obj, key, value) {
|
|
|
25
23
|
configurable: true,
|
|
26
24
|
writable: true
|
|
27
25
|
});
|
|
28
|
-
} else
|
|
29
|
-
obj[key] = value;
|
|
30
|
-
}
|
|
26
|
+
} else obj[key] = value;
|
|
31
27
|
return obj;
|
|
32
28
|
}
|
|
33
29
|
export var BaseProps = /*#__PURE__*/ function() {
|
|
34
30
|
"use strict";
|
|
35
31
|
function BaseProps(props) {
|
|
36
32
|
_class_call_check(this, BaseProps);
|
|
33
|
+
var _ref, _ref1, _ref2;
|
|
37
34
|
/**
|
|
38
35
|
* 显示隐藏
|
|
39
36
|
* */ _define_property(this, "visible", void 0);
|
|
40
37
|
/**
|
|
41
|
-
* 开启表达式
|
|
38
|
+
* 开启表达式
|
|
42
39
|
* */ _define_property(this, "expression", void 0);
|
|
43
40
|
/**
|
|
44
41
|
*
|
|
45
42
|
* 是否改变父属性
|
|
46
43
|
*/ _define_property(this, "updateParent", void 0);
|
|
47
|
-
|
|
48
|
-
this.
|
|
49
|
-
|
|
50
|
-
this.expression = (_props_expression = props === null || props === void 0 ? void 0 : props.expression) !== null && _props_expression !== void 0 ? _props_expression : false;
|
|
51
|
-
var _props_updateParent;
|
|
52
|
-
this.updateParent = (_props_updateParent = props === null || props === void 0 ? void 0 : props.updateParent) !== null && _props_updateParent !== void 0 ? _props_updateParent : false;
|
|
44
|
+
this.visible = (_ref = props === null || props === void 0 ? void 0 : props.visible) !== null && _ref !== void 0 ? _ref : true;
|
|
45
|
+
this.expression = (_ref1 = props === null || props === void 0 ? void 0 : props.expression) !== null && _ref1 !== void 0 ? _ref1 : false;
|
|
46
|
+
this.updateParent = (_ref2 = props === null || props === void 0 ? void 0 : props.updateParent) !== null && _ref2 !== void 0 ? _ref2 : false;
|
|
53
47
|
}
|
|
54
48
|
_create_class(BaseProps, [
|
|
55
49
|
{
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _assert_this_initialized(self) {
|
|
2
|
-
if (self === void 0)
|
|
3
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
4
|
-
}
|
|
2
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
5
3
|
return self;
|
|
6
4
|
}
|
|
7
5
|
function _call_super(_this, derived, args) {
|
|
@@ -9,9 +7,7 @@ function _call_super(_this, derived, args) {
|
|
|
9
7
|
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
8
|
}
|
|
11
9
|
function _class_call_check(instance, Constructor) {
|
|
12
|
-
if (!(instance instanceof Constructor))
|
|
13
|
-
throw new TypeError("Cannot call a class as a function");
|
|
14
|
-
}
|
|
10
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
15
11
|
}
|
|
16
12
|
function _define_property(obj, key, value) {
|
|
17
13
|
if (key in obj) {
|
|
@@ -21,9 +17,7 @@ function _define_property(obj, key, value) {
|
|
|
21
17
|
configurable: true,
|
|
22
18
|
writable: true
|
|
23
19
|
});
|
|
24
|
-
} else
|
|
25
|
-
obj[key] = value;
|
|
26
|
-
}
|
|
20
|
+
} else obj[key] = value;
|
|
27
21
|
return obj;
|
|
28
22
|
}
|
|
29
23
|
function _get_prototype_of(o) {
|
|
@@ -45,10 +39,16 @@ function _inherits(subClass, superClass) {
|
|
|
45
39
|
});
|
|
46
40
|
if (superClass) _set_prototype_of(subClass, superClass);
|
|
47
41
|
}
|
|
42
|
+
function _is_native_reflect_construct() {
|
|
43
|
+
try {
|
|
44
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
45
|
+
} catch (_) {}
|
|
46
|
+
return (_is_native_reflect_construct = function() {
|
|
47
|
+
return !!result;
|
|
48
|
+
})();
|
|
49
|
+
}
|
|
48
50
|
function _possible_constructor_return(self, call) {
|
|
49
|
-
if (call && (_type_of(call) === "object" || typeof call === "function"))
|
|
50
|
-
return call;
|
|
51
|
-
}
|
|
51
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) return call;
|
|
52
52
|
return _assert_this_initialized(self);
|
|
53
53
|
}
|
|
54
54
|
function _set_prototype_of(o, p) {
|
|
@@ -62,14 +62,6 @@ function _type_of(obj) {
|
|
|
62
62
|
"@swc/helpers - typeof";
|
|
63
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
64
|
}
|
|
65
|
-
function _is_native_reflect_construct() {
|
|
66
|
-
try {
|
|
67
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
-
} catch (_) {}
|
|
69
|
-
return (_is_native_reflect_construct = function() {
|
|
70
|
-
return !!result;
|
|
71
|
-
})();
|
|
72
|
-
}
|
|
73
65
|
import { BaseProps } from './base';
|
|
74
66
|
export var CheckboxProps = /*#__PURE__*/ function(BaseProps) {
|
|
75
67
|
"use strict";
|
|
@@ -77,11 +69,11 @@ export var CheckboxProps = /*#__PURE__*/ function(BaseProps) {
|
|
|
77
69
|
function CheckboxProps(props) {
|
|
78
70
|
_class_call_check(this, CheckboxProps);
|
|
79
71
|
var _this;
|
|
72
|
+
var _ref;
|
|
80
73
|
_this = _call_super(this, CheckboxProps, [
|
|
81
74
|
props
|
|
82
75
|
]), _define_property(_this, "options", void 0);
|
|
83
|
-
|
|
84
|
-
_this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
|
|
76
|
+
_this.options = (_ref = props === null || props === void 0 ? void 0 : props.options) !== null && _ref !== void 0 ? _ref : [];
|
|
85
77
|
return _this;
|
|
86
78
|
}
|
|
87
79
|
return CheckboxProps;
|
package/dist/esm/props/custom.js
CHANGED
|
@@ -7,9 +7,7 @@ function _array_with_holes(arr) {
|
|
|
7
7
|
if (Array.isArray(arr)) return arr;
|
|
8
8
|
}
|
|
9
9
|
function _assert_this_initialized(self) {
|
|
10
|
-
if (self === void 0)
|
|
11
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
12
|
-
}
|
|
10
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
13
11
|
return self;
|
|
14
12
|
}
|
|
15
13
|
function _call_super(_this, derived, args) {
|
|
@@ -17,9 +15,7 @@ function _call_super(_this, derived, args) {
|
|
|
17
15
|
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
18
16
|
}
|
|
19
17
|
function _class_call_check(instance, Constructor) {
|
|
20
|
-
if (!(instance instanceof Constructor))
|
|
21
|
-
throw new TypeError("Cannot call a class as a function");
|
|
22
|
-
}
|
|
18
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
23
19
|
}
|
|
24
20
|
function _get_prototype_of(o) {
|
|
25
21
|
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
@@ -40,6 +36,14 @@ function _inherits(subClass, superClass) {
|
|
|
40
36
|
});
|
|
41
37
|
if (superClass) _set_prototype_of(subClass, superClass);
|
|
42
38
|
}
|
|
39
|
+
function _is_native_reflect_construct() {
|
|
40
|
+
try {
|
|
41
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
42
|
+
} catch (_) {}
|
|
43
|
+
return (_is_native_reflect_construct = function() {
|
|
44
|
+
return !!result;
|
|
45
|
+
})();
|
|
46
|
+
}
|
|
43
47
|
function _iterable_to_array_limit(arr, i) {
|
|
44
48
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
45
49
|
if (_i == null) return;
|
|
@@ -65,12 +69,10 @@ function _iterable_to_array_limit(arr, i) {
|
|
|
65
69
|
return _arr;
|
|
66
70
|
}
|
|
67
71
|
function _non_iterable_rest() {
|
|
68
|
-
throw new TypeError("Invalid attempt to destructure non-iterable instance
|
|
72
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
69
73
|
}
|
|
70
74
|
function _possible_constructor_return(self, call) {
|
|
71
|
-
if (call && (_type_of(call) === "object" || typeof call === "function"))
|
|
72
|
-
return call;
|
|
73
|
-
}
|
|
75
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) return call;
|
|
74
76
|
return _assert_this_initialized(self);
|
|
75
77
|
}
|
|
76
78
|
function _set_prototype_of(o, p) {
|
|
@@ -95,14 +97,6 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
95
97
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
96
98
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
97
99
|
}
|
|
98
|
-
function _is_native_reflect_construct() {
|
|
99
|
-
try {
|
|
100
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
101
|
-
} catch (_) {}
|
|
102
|
-
return (_is_native_reflect_construct = function() {
|
|
103
|
-
return !!result;
|
|
104
|
-
})();
|
|
105
|
-
}
|
|
106
100
|
import { isPlainObject } from '@byteluck-fe/model-driven-shared';
|
|
107
101
|
import { BaseProps } from './base';
|
|
108
102
|
export var CustomProps = /*#__PURE__*/ function(BaseProps) {
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _assert_this_initialized(self) {
|
|
2
|
-
if (self === void 0)
|
|
3
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
4
|
-
}
|
|
2
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
5
3
|
return self;
|
|
6
4
|
}
|
|
7
5
|
function _call_super(_this, derived, args) {
|
|
@@ -9,9 +7,7 @@ function _call_super(_this, derived, args) {
|
|
|
9
7
|
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
8
|
}
|
|
11
9
|
function _class_call_check(instance, Constructor) {
|
|
12
|
-
if (!(instance instanceof Constructor))
|
|
13
|
-
throw new TypeError("Cannot call a class as a function");
|
|
14
|
-
}
|
|
10
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
15
11
|
}
|
|
16
12
|
function _define_property(obj, key, value) {
|
|
17
13
|
if (key in obj) {
|
|
@@ -21,9 +17,7 @@ function _define_property(obj, key, value) {
|
|
|
21
17
|
configurable: true,
|
|
22
18
|
writable: true
|
|
23
19
|
});
|
|
24
|
-
} else
|
|
25
|
-
obj[key] = value;
|
|
26
|
-
}
|
|
20
|
+
} else obj[key] = value;
|
|
27
21
|
return obj;
|
|
28
22
|
}
|
|
29
23
|
function _get_prototype_of(o) {
|
|
@@ -45,10 +39,16 @@ function _inherits(subClass, superClass) {
|
|
|
45
39
|
});
|
|
46
40
|
if (superClass) _set_prototype_of(subClass, superClass);
|
|
47
41
|
}
|
|
42
|
+
function _is_native_reflect_construct() {
|
|
43
|
+
try {
|
|
44
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
45
|
+
} catch (_) {}
|
|
46
|
+
return (_is_native_reflect_construct = function() {
|
|
47
|
+
return !!result;
|
|
48
|
+
})();
|
|
49
|
+
}
|
|
48
50
|
function _possible_constructor_return(self, call) {
|
|
49
|
-
if (call && (_type_of(call) === "object" || typeof call === "function"))
|
|
50
|
-
return call;
|
|
51
|
-
}
|
|
51
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) return call;
|
|
52
52
|
return _assert_this_initialized(self);
|
|
53
53
|
}
|
|
54
54
|
function _set_prototype_of(o, p) {
|
|
@@ -62,14 +62,6 @@ function _type_of(obj) {
|
|
|
62
62
|
"@swc/helpers - typeof";
|
|
63
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
64
|
}
|
|
65
|
-
function _is_native_reflect_construct() {
|
|
66
|
-
try {
|
|
67
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
-
} catch (_) {}
|
|
69
|
-
return (_is_native_reflect_construct = function() {
|
|
70
|
-
return !!result;
|
|
71
|
-
})();
|
|
72
|
-
}
|
|
73
65
|
import { BaseProps } from './base';
|
|
74
66
|
export var InputNumberProps = /*#__PURE__*/ function(BaseProps) {
|
|
75
67
|
"use strict";
|
|
@@ -77,15 +69,13 @@ export var InputNumberProps = /*#__PURE__*/ function(BaseProps) {
|
|
|
77
69
|
function InputNumberProps(props) {
|
|
78
70
|
_class_call_check(this, InputNumberProps);
|
|
79
71
|
var _this;
|
|
72
|
+
var _ref, _ref1, _ref2;
|
|
80
73
|
_this = _call_super(this, InputNumberProps, [
|
|
81
74
|
props
|
|
82
75
|
]), _define_property(_this, "max", void 0), _define_property(_this, "min", void 0), _define_property(_this, "placeholder", void 0);
|
|
83
|
-
|
|
84
|
-
_this.
|
|
85
|
-
|
|
86
|
-
_this.min = (_props_min = props === null || props === void 0 ? void 0 : props.min) !== null && _props_min !== void 0 ? _props_min : '';
|
|
87
|
-
var _props_placeholder;
|
|
88
|
-
_this.placeholder = (_props_placeholder = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _props_placeholder !== void 0 ? _props_placeholder : '';
|
|
76
|
+
_this.max = (_ref = props === null || props === void 0 ? void 0 : props.max) !== null && _ref !== void 0 ? _ref : '';
|
|
77
|
+
_this.min = (_ref1 = props === null || props === void 0 ? void 0 : props.min) !== null && _ref1 !== void 0 ? _ref1 : '';
|
|
78
|
+
_this.placeholder = (_ref2 = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _ref2 !== void 0 ? _ref2 : '';
|
|
89
79
|
return _this;
|
|
90
80
|
}
|
|
91
81
|
return InputNumberProps;
|
package/dist/esm/props/input.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _assert_this_initialized(self) {
|
|
2
|
-
if (self === void 0)
|
|
3
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
4
|
-
}
|
|
2
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
5
3
|
return self;
|
|
6
4
|
}
|
|
7
5
|
function _call_super(_this, derived, args) {
|
|
@@ -9,9 +7,7 @@ function _call_super(_this, derived, args) {
|
|
|
9
7
|
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
8
|
}
|
|
11
9
|
function _class_call_check(instance, Constructor) {
|
|
12
|
-
if (!(instance instanceof Constructor))
|
|
13
|
-
throw new TypeError("Cannot call a class as a function");
|
|
14
|
-
}
|
|
10
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
15
11
|
}
|
|
16
12
|
function _define_property(obj, key, value) {
|
|
17
13
|
if (key in obj) {
|
|
@@ -21,9 +17,7 @@ function _define_property(obj, key, value) {
|
|
|
21
17
|
configurable: true,
|
|
22
18
|
writable: true
|
|
23
19
|
});
|
|
24
|
-
} else
|
|
25
|
-
obj[key] = value;
|
|
26
|
-
}
|
|
20
|
+
} else obj[key] = value;
|
|
27
21
|
return obj;
|
|
28
22
|
}
|
|
29
23
|
function _get_prototype_of(o) {
|
|
@@ -45,10 +39,16 @@ function _inherits(subClass, superClass) {
|
|
|
45
39
|
});
|
|
46
40
|
if (superClass) _set_prototype_of(subClass, superClass);
|
|
47
41
|
}
|
|
42
|
+
function _is_native_reflect_construct() {
|
|
43
|
+
try {
|
|
44
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
45
|
+
} catch (_) {}
|
|
46
|
+
return (_is_native_reflect_construct = function() {
|
|
47
|
+
return !!result;
|
|
48
|
+
})();
|
|
49
|
+
}
|
|
48
50
|
function _possible_constructor_return(self, call) {
|
|
49
|
-
if (call && (_type_of(call) === "object" || typeof call === "function"))
|
|
50
|
-
return call;
|
|
51
|
-
}
|
|
51
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) return call;
|
|
52
52
|
return _assert_this_initialized(self);
|
|
53
53
|
}
|
|
54
54
|
function _set_prototype_of(o, p) {
|
|
@@ -62,14 +62,6 @@ function _type_of(obj) {
|
|
|
62
62
|
"@swc/helpers - typeof";
|
|
63
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
64
|
}
|
|
65
|
-
function _is_native_reflect_construct() {
|
|
66
|
-
try {
|
|
67
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
-
} catch (_) {}
|
|
69
|
-
return (_is_native_reflect_construct = function() {
|
|
70
|
-
return !!result;
|
|
71
|
-
})();
|
|
72
|
-
}
|
|
73
65
|
import { BaseProps } from './base';
|
|
74
66
|
export var InputProps = /*#__PURE__*/ function(BaseProps) {
|
|
75
67
|
"use strict";
|
|
@@ -77,17 +69,14 @@ export var InputProps = /*#__PURE__*/ function(BaseProps) {
|
|
|
77
69
|
function InputProps(props) {
|
|
78
70
|
_class_call_check(this, InputProps);
|
|
79
71
|
var _this;
|
|
72
|
+
var _ref, _ref1, _ref2, _ref3;
|
|
80
73
|
_this = _call_super(this, InputProps, [
|
|
81
74
|
props
|
|
82
75
|
]), _define_property(_this, "maxLength", void 0), _define_property(_this, "minLength", void 0), _define_property(_this, "placeholder", void 0), _define_property(_this, "i18n", void 0);
|
|
83
|
-
|
|
84
|
-
_this.
|
|
85
|
-
|
|
86
|
-
_this.
|
|
87
|
-
var _props_placeholder;
|
|
88
|
-
_this.placeholder = (_props_placeholder = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _props_placeholder !== void 0 ? _props_placeholder : '';
|
|
89
|
-
var _props_i18n;
|
|
90
|
-
_this.i18n = (_props_i18n = props === null || props === void 0 ? void 0 : props.i18n) !== null && _props_i18n !== void 0 ? _props_i18n : false;
|
|
76
|
+
_this.maxLength = (_ref = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _ref !== void 0 ? _ref : '';
|
|
77
|
+
_this.minLength = (_ref1 = props === null || props === void 0 ? void 0 : props.minLength) !== null && _ref1 !== void 0 ? _ref1 : '';
|
|
78
|
+
_this.placeholder = (_ref2 = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _ref2 !== void 0 ? _ref2 : '';
|
|
79
|
+
_this.i18n = (_ref3 = props === null || props === void 0 ? void 0 : props.i18n) !== null && _ref3 !== void 0 ? _ref3 : false;
|
|
91
80
|
return _this;
|
|
92
81
|
}
|
|
93
82
|
return InputProps;
|
package/dist/esm/props/radio.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _assert_this_initialized(self) {
|
|
2
|
-
if (self === void 0)
|
|
3
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
4
|
-
}
|
|
2
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
5
3
|
return self;
|
|
6
4
|
}
|
|
7
5
|
function _call_super(_this, derived, args) {
|
|
@@ -9,9 +7,7 @@ function _call_super(_this, derived, args) {
|
|
|
9
7
|
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
8
|
}
|
|
11
9
|
function _class_call_check(instance, Constructor) {
|
|
12
|
-
if (!(instance instanceof Constructor))
|
|
13
|
-
throw new TypeError("Cannot call a class as a function");
|
|
14
|
-
}
|
|
10
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
15
11
|
}
|
|
16
12
|
function _define_property(obj, key, value) {
|
|
17
13
|
if (key in obj) {
|
|
@@ -21,9 +17,7 @@ function _define_property(obj, key, value) {
|
|
|
21
17
|
configurable: true,
|
|
22
18
|
writable: true
|
|
23
19
|
});
|
|
24
|
-
} else
|
|
25
|
-
obj[key] = value;
|
|
26
|
-
}
|
|
20
|
+
} else obj[key] = value;
|
|
27
21
|
return obj;
|
|
28
22
|
}
|
|
29
23
|
function _get_prototype_of(o) {
|
|
@@ -45,10 +39,16 @@ function _inherits(subClass, superClass) {
|
|
|
45
39
|
});
|
|
46
40
|
if (superClass) _set_prototype_of(subClass, superClass);
|
|
47
41
|
}
|
|
42
|
+
function _is_native_reflect_construct() {
|
|
43
|
+
try {
|
|
44
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
45
|
+
} catch (_) {}
|
|
46
|
+
return (_is_native_reflect_construct = function() {
|
|
47
|
+
return !!result;
|
|
48
|
+
})();
|
|
49
|
+
}
|
|
48
50
|
function _possible_constructor_return(self, call) {
|
|
49
|
-
if (call && (_type_of(call) === "object" || typeof call === "function"))
|
|
50
|
-
return call;
|
|
51
|
-
}
|
|
51
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) return call;
|
|
52
52
|
return _assert_this_initialized(self);
|
|
53
53
|
}
|
|
54
54
|
function _set_prototype_of(o, p) {
|
|
@@ -62,14 +62,6 @@ function _type_of(obj) {
|
|
|
62
62
|
"@swc/helpers - typeof";
|
|
63
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
64
|
}
|
|
65
|
-
function _is_native_reflect_construct() {
|
|
66
|
-
try {
|
|
67
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
-
} catch (_) {}
|
|
69
|
-
return (_is_native_reflect_construct = function() {
|
|
70
|
-
return !!result;
|
|
71
|
-
})();
|
|
72
|
-
}
|
|
73
65
|
import { BaseProps } from './base';
|
|
74
66
|
export var RadioProps = /*#__PURE__*/ function(BaseProps) {
|
|
75
67
|
"use strict";
|
|
@@ -77,13 +69,12 @@ export var RadioProps = /*#__PURE__*/ function(BaseProps) {
|
|
|
77
69
|
function RadioProps(props) {
|
|
78
70
|
_class_call_check(this, RadioProps);
|
|
79
71
|
var _this;
|
|
72
|
+
var _ref, _ref1;
|
|
80
73
|
_this = _call_super(this, RadioProps, [
|
|
81
74
|
props
|
|
82
75
|
]), _define_property(_this, "options", void 0), _define_property(_this, "showType", void 0);
|
|
83
|
-
|
|
84
|
-
_this.
|
|
85
|
-
var _props_showType;
|
|
86
|
-
_this.showType = (_props_showType = props === null || props === void 0 ? void 0 : props.showType) !== null && _props_showType !== void 0 ? _props_showType : 'outline';
|
|
76
|
+
_this.options = (_ref = props === null || props === void 0 ? void 0 : props.options) !== null && _ref !== void 0 ? _ref : [];
|
|
77
|
+
_this.showType = (_ref1 = props === null || props === void 0 ? void 0 : props.showType) !== null && _ref1 !== void 0 ? _ref1 : 'outline';
|
|
87
78
|
return _this;
|
|
88
79
|
}
|
|
89
80
|
return RadioProps;
|
package/dist/esm/props/select.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _assert_this_initialized(self) {
|
|
2
|
-
if (self === void 0)
|
|
3
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
4
|
-
}
|
|
2
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
5
3
|
return self;
|
|
6
4
|
}
|
|
7
5
|
function _call_super(_this, derived, args) {
|
|
@@ -9,9 +7,7 @@ function _call_super(_this, derived, args) {
|
|
|
9
7
|
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
8
|
}
|
|
11
9
|
function _class_call_check(instance, Constructor) {
|
|
12
|
-
if (!(instance instanceof Constructor))
|
|
13
|
-
throw new TypeError("Cannot call a class as a function");
|
|
14
|
-
}
|
|
10
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
15
11
|
}
|
|
16
12
|
function _define_property(obj, key, value) {
|
|
17
13
|
if (key in obj) {
|
|
@@ -21,9 +17,7 @@ function _define_property(obj, key, value) {
|
|
|
21
17
|
configurable: true,
|
|
22
18
|
writable: true
|
|
23
19
|
});
|
|
24
|
-
} else
|
|
25
|
-
obj[key] = value;
|
|
26
|
-
}
|
|
20
|
+
} else obj[key] = value;
|
|
27
21
|
return obj;
|
|
28
22
|
}
|
|
29
23
|
function _get_prototype_of(o) {
|
|
@@ -45,10 +39,16 @@ function _inherits(subClass, superClass) {
|
|
|
45
39
|
});
|
|
46
40
|
if (superClass) _set_prototype_of(subClass, superClass);
|
|
47
41
|
}
|
|
42
|
+
function _is_native_reflect_construct() {
|
|
43
|
+
try {
|
|
44
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
45
|
+
} catch (_) {}
|
|
46
|
+
return (_is_native_reflect_construct = function() {
|
|
47
|
+
return !!result;
|
|
48
|
+
})();
|
|
49
|
+
}
|
|
48
50
|
function _possible_constructor_return(self, call) {
|
|
49
|
-
if (call && (_type_of(call) === "object" || typeof call === "function"))
|
|
50
|
-
return call;
|
|
51
|
-
}
|
|
51
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) return call;
|
|
52
52
|
return _assert_this_initialized(self);
|
|
53
53
|
}
|
|
54
54
|
function _set_prototype_of(o, p) {
|
|
@@ -62,14 +62,6 @@ function _type_of(obj) {
|
|
|
62
62
|
"@swc/helpers - typeof";
|
|
63
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
64
|
}
|
|
65
|
-
function _is_native_reflect_construct() {
|
|
66
|
-
try {
|
|
67
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
-
} catch (_) {}
|
|
69
|
-
return (_is_native_reflect_construct = function() {
|
|
70
|
-
return !!result;
|
|
71
|
-
})();
|
|
72
|
-
}
|
|
73
65
|
import { BaseProps } from './base';
|
|
74
66
|
export var SelectProps = /*#__PURE__*/ function(BaseProps) {
|
|
75
67
|
"use strict";
|
|
@@ -77,13 +69,12 @@ export var SelectProps = /*#__PURE__*/ function(BaseProps) {
|
|
|
77
69
|
function SelectProps(props) {
|
|
78
70
|
_class_call_check(this, SelectProps);
|
|
79
71
|
var _this;
|
|
72
|
+
var _ref, _ref1;
|
|
80
73
|
_this = _call_super(this, SelectProps, [
|
|
81
74
|
props
|
|
82
75
|
]), _define_property(_this, "placeholder", void 0), _define_property(_this, "options", void 0);
|
|
83
|
-
|
|
84
|
-
_this.
|
|
85
|
-
var _props_options;
|
|
86
|
-
_this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
|
|
76
|
+
_this.placeholder = (_ref = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _ref !== void 0 ? _ref : '';
|
|
77
|
+
_this.options = (_ref1 = props === null || props === void 0 ? void 0 : props.options) !== null && _ref1 !== void 0 ? _ref1 : [];
|
|
87
78
|
return _this;
|
|
88
79
|
}
|
|
89
80
|
return SelectProps;
|
package/dist/esm/props/switch.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _assert_this_initialized(self) {
|
|
2
|
-
if (self === void 0)
|
|
3
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
4
|
-
}
|
|
2
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
5
3
|
return self;
|
|
6
4
|
}
|
|
7
5
|
function _call_super(_this, derived, args) {
|
|
@@ -9,9 +7,7 @@ function _call_super(_this, derived, args) {
|
|
|
9
7
|
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
8
|
}
|
|
11
9
|
function _class_call_check(instance, Constructor) {
|
|
12
|
-
if (!(instance instanceof Constructor))
|
|
13
|
-
throw new TypeError("Cannot call a class as a function");
|
|
14
|
-
}
|
|
10
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
15
11
|
}
|
|
16
12
|
function _define_property(obj, key, value) {
|
|
17
13
|
if (key in obj) {
|
|
@@ -21,9 +17,7 @@ function _define_property(obj, key, value) {
|
|
|
21
17
|
configurable: true,
|
|
22
18
|
writable: true
|
|
23
19
|
});
|
|
24
|
-
} else
|
|
25
|
-
obj[key] = value;
|
|
26
|
-
}
|
|
20
|
+
} else obj[key] = value;
|
|
27
21
|
return obj;
|
|
28
22
|
}
|
|
29
23
|
function _get_prototype_of(o) {
|
|
@@ -45,10 +39,16 @@ function _inherits(subClass, superClass) {
|
|
|
45
39
|
});
|
|
46
40
|
if (superClass) _set_prototype_of(subClass, superClass);
|
|
47
41
|
}
|
|
42
|
+
function _is_native_reflect_construct() {
|
|
43
|
+
try {
|
|
44
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
45
|
+
} catch (_) {}
|
|
46
|
+
return (_is_native_reflect_construct = function() {
|
|
47
|
+
return !!result;
|
|
48
|
+
})();
|
|
49
|
+
}
|
|
48
50
|
function _possible_constructor_return(self, call) {
|
|
49
|
-
if (call && (_type_of(call) === "object" || typeof call === "function"))
|
|
50
|
-
return call;
|
|
51
|
-
}
|
|
51
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) return call;
|
|
52
52
|
return _assert_this_initialized(self);
|
|
53
53
|
}
|
|
54
54
|
function _set_prototype_of(o, p) {
|
|
@@ -62,14 +62,6 @@ function _type_of(obj) {
|
|
|
62
62
|
"@swc/helpers - typeof";
|
|
63
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
64
|
}
|
|
65
|
-
function _is_native_reflect_construct() {
|
|
66
|
-
try {
|
|
67
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
-
} catch (_) {}
|
|
69
|
-
return (_is_native_reflect_construct = function() {
|
|
70
|
-
return !!result;
|
|
71
|
-
})();
|
|
72
|
-
}
|
|
73
65
|
import { BaseProps } from './base';
|
|
74
66
|
export var SwitchProps = /*#__PURE__*/ function(BaseProps) {
|
|
75
67
|
"use strict";
|
|
@@ -77,15 +69,13 @@ export var SwitchProps = /*#__PURE__*/ function(BaseProps) {
|
|
|
77
69
|
function SwitchProps(props) {
|
|
78
70
|
_class_call_check(this, SwitchProps);
|
|
79
71
|
var _this;
|
|
72
|
+
var _ref, _ref1, _ref2;
|
|
80
73
|
_this = _call_super(this, SwitchProps, [
|
|
81
74
|
props
|
|
82
75
|
]), _define_property(_this, "showType", void 0), _define_property(_this, "tips", void 0), _define_property(_this, "disabled", void 0);
|
|
83
|
-
|
|
84
|
-
_this.
|
|
85
|
-
|
|
86
|
-
_this.tips = (_props_tips = props === null || props === void 0 ? void 0 : props.tips) !== null && _props_tips !== void 0 ? _props_tips : '';
|
|
87
|
-
var _props_disabled;
|
|
88
|
-
_this.disabled = (_props_disabled = props === null || props === void 0 ? void 0 : props.disabled) !== null && _props_disabled !== void 0 ? _props_disabled : false;
|
|
76
|
+
_this.showType = (_ref = props === null || props === void 0 ? void 0 : props.showType) !== null && _ref !== void 0 ? _ref : 'switch';
|
|
77
|
+
_this.tips = (_ref1 = props === null || props === void 0 ? void 0 : props.tips) !== null && _ref1 !== void 0 ? _ref1 : '';
|
|
78
|
+
_this.disabled = (_ref2 = props === null || props === void 0 ? void 0 : props.disabled) !== null && _ref2 !== void 0 ? _ref2 : false;
|
|
89
79
|
return _this;
|
|
90
80
|
}
|
|
91
81
|
return SwitchProps;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _assert_this_initialized(self) {
|
|
2
|
-
if (self === void 0)
|
|
3
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
4
|
-
}
|
|
2
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
5
3
|
return self;
|
|
6
4
|
}
|
|
7
5
|
function _call_super(_this, derived, args) {
|
|
@@ -9,9 +7,7 @@ function _call_super(_this, derived, args) {
|
|
|
9
7
|
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
8
|
}
|
|
11
9
|
function _class_call_check(instance, Constructor) {
|
|
12
|
-
if (!(instance instanceof Constructor))
|
|
13
|
-
throw new TypeError("Cannot call a class as a function");
|
|
14
|
-
}
|
|
10
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
15
11
|
}
|
|
16
12
|
function _define_property(obj, key, value) {
|
|
17
13
|
if (key in obj) {
|
|
@@ -21,9 +17,7 @@ function _define_property(obj, key, value) {
|
|
|
21
17
|
configurable: true,
|
|
22
18
|
writable: true
|
|
23
19
|
});
|
|
24
|
-
} else
|
|
25
|
-
obj[key] = value;
|
|
26
|
-
}
|
|
20
|
+
} else obj[key] = value;
|
|
27
21
|
return obj;
|
|
28
22
|
}
|
|
29
23
|
function _get_prototype_of(o) {
|
|
@@ -45,10 +39,16 @@ function _inherits(subClass, superClass) {
|
|
|
45
39
|
});
|
|
46
40
|
if (superClass) _set_prototype_of(subClass, superClass);
|
|
47
41
|
}
|
|
42
|
+
function _is_native_reflect_construct() {
|
|
43
|
+
try {
|
|
44
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
45
|
+
} catch (_) {}
|
|
46
|
+
return (_is_native_reflect_construct = function() {
|
|
47
|
+
return !!result;
|
|
48
|
+
})();
|
|
49
|
+
}
|
|
48
50
|
function _possible_constructor_return(self, call) {
|
|
49
|
-
if (call && (_type_of(call) === "object" || typeof call === "function"))
|
|
50
|
-
return call;
|
|
51
|
-
}
|
|
51
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) return call;
|
|
52
52
|
return _assert_this_initialized(self);
|
|
53
53
|
}
|
|
54
54
|
function _set_prototype_of(o, p) {
|
|
@@ -62,14 +62,6 @@ function _type_of(obj) {
|
|
|
62
62
|
"@swc/helpers - typeof";
|
|
63
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
64
|
}
|
|
65
|
-
function _is_native_reflect_construct() {
|
|
66
|
-
try {
|
|
67
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
-
} catch (_) {}
|
|
69
|
-
return (_is_native_reflect_construct = function() {
|
|
70
|
-
return !!result;
|
|
71
|
-
})();
|
|
72
|
-
}
|
|
73
65
|
import { BaseProps } from './base';
|
|
74
66
|
export var TextareaProps = /*#__PURE__*/ function(BaseProps) {
|
|
75
67
|
"use strict";
|
|
@@ -77,21 +69,16 @@ export var TextareaProps = /*#__PURE__*/ function(BaseProps) {
|
|
|
77
69
|
function TextareaProps(props) {
|
|
78
70
|
_class_call_check(this, TextareaProps);
|
|
79
71
|
var _this;
|
|
72
|
+
var _ref, _ref1, _ref2, _ref3, _ref4, _ref5;
|
|
80
73
|
_this = _call_super(this, TextareaProps, [
|
|
81
74
|
props
|
|
82
75
|
]), _define_property(_this, "maxLength", void 0), _define_property(_this, "minLength", void 0), _define_property(_this, "placeholder", void 0), _define_property(_this, "i18n", void 0), _define_property(_this, "maxRows", void 0), _define_property(_this, "minRows", void 0);
|
|
83
|
-
|
|
84
|
-
_this.
|
|
85
|
-
|
|
86
|
-
_this.
|
|
87
|
-
|
|
88
|
-
_this.
|
|
89
|
-
var _props_maxRows;
|
|
90
|
-
_this.maxRows = (_props_maxRows = props === null || props === void 0 ? void 0 : props.maxRows) !== null && _props_maxRows !== void 0 ? _props_maxRows : '';
|
|
91
|
-
var _props_minRows;
|
|
92
|
-
_this.minRows = (_props_minRows = props === null || props === void 0 ? void 0 : props.minRows) !== null && _props_minRows !== void 0 ? _props_minRows : '';
|
|
93
|
-
var _props_i18n;
|
|
94
|
-
_this.i18n = (_props_i18n = props === null || props === void 0 ? void 0 : props.i18n) !== null && _props_i18n !== void 0 ? _props_i18n : false;
|
|
76
|
+
_this.maxLength = (_ref = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _ref !== void 0 ? _ref : '';
|
|
77
|
+
_this.minLength = (_ref1 = props === null || props === void 0 ? void 0 : props.minLength) !== null && _ref1 !== void 0 ? _ref1 : '';
|
|
78
|
+
_this.placeholder = (_ref2 = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _ref2 !== void 0 ? _ref2 : '';
|
|
79
|
+
_this.maxRows = (_ref3 = props === null || props === void 0 ? void 0 : props.maxRows) !== null && _ref3 !== void 0 ? _ref3 : '';
|
|
80
|
+
_this.minRows = (_ref4 = props === null || props === void 0 ? void 0 : props.minRows) !== null && _ref4 !== void 0 ? _ref4 : '';
|
|
81
|
+
_this.i18n = (_ref5 = props === null || props === void 0 ? void 0 : props.i18n) !== null && _ref5 !== void 0 ? _ref5 : false;
|
|
95
82
|
return _this;
|
|
96
83
|
}
|
|
97
84
|
return TextareaProps;
|
package/dist/esm/schema/group.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _class_call_check(instance, Constructor) {
|
|
2
|
-
if (!(instance instanceof Constructor))
|
|
3
|
-
throw new TypeError("Cannot call a class as a function");
|
|
4
|
-
}
|
|
2
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
5
3
|
}
|
|
6
4
|
function _define_property(obj, key, value) {
|
|
7
5
|
if (key in obj) {
|
|
@@ -11,14 +9,13 @@ function _define_property(obj, key, value) {
|
|
|
11
9
|
configurable: true,
|
|
12
10
|
writable: true
|
|
13
11
|
});
|
|
14
|
-
} else
|
|
15
|
-
obj[key] = value;
|
|
16
|
-
}
|
|
12
|
+
} else obj[key] = value;
|
|
17
13
|
return obj;
|
|
18
14
|
}
|
|
19
15
|
export var Group = function Group(schema) {
|
|
20
16
|
"use strict";
|
|
21
17
|
_class_call_check(this, Group);
|
|
18
|
+
var _schema_title, _schema_required;
|
|
22
19
|
_define_property(this, "type", 'group');
|
|
23
20
|
_define_property(this, "title", void 0);
|
|
24
21
|
_define_property(this, "required", void 0);
|
|
@@ -26,9 +23,7 @@ export var Group = function Group(schema) {
|
|
|
26
23
|
_define_property(this, "tips", void 0);
|
|
27
24
|
_define_property(this, "fromId", void 0);
|
|
28
25
|
_define_property(this, "visible", void 0);
|
|
29
|
-
var _schema_title;
|
|
30
26
|
this.title = (_schema_title = schema.title) !== null && _schema_title !== void 0 ? _schema_title : '';
|
|
31
|
-
var _schema_required;
|
|
32
27
|
this.required = (_schema_required = schema.required) !== null && _schema_required !== void 0 ? _schema_required : false;
|
|
33
28
|
this.items = schema.items;
|
|
34
29
|
this.tips = schema.tips;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _class_call_check(instance, Constructor) {
|
|
2
|
-
if (!(instance instanceof Constructor))
|
|
3
|
-
throw new TypeError("Cannot call a class as a function");
|
|
4
|
-
}
|
|
2
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
5
3
|
}
|
|
6
4
|
function _defineProperties(target, props) {
|
|
7
5
|
for(var i = 0; i < props.length; i++){
|
|
@@ -25,9 +23,7 @@ function _define_property(obj, key, value) {
|
|
|
25
23
|
configurable: true,
|
|
26
24
|
writable: true
|
|
27
25
|
});
|
|
28
|
-
} else
|
|
29
|
-
obj[key] = value;
|
|
30
|
-
}
|
|
26
|
+
} else obj[key] = value;
|
|
31
27
|
return obj;
|
|
32
28
|
}
|
|
33
29
|
import { BaseProps } from '../props/base';
|
|
@@ -36,6 +32,7 @@ export var Setting = /*#__PURE__*/ function() {
|
|
|
36
32
|
"use strict";
|
|
37
33
|
function Setting(schema) {
|
|
38
34
|
_class_call_check(this, Setting);
|
|
35
|
+
var _schema_effect, _schema_scopeEffect, _schema_props;
|
|
39
36
|
_define_property(this, "type", void 0);
|
|
40
37
|
_define_property(this, "label", void 0);
|
|
41
38
|
_define_property(this, "key", void 0);
|
|
@@ -50,13 +47,10 @@ export var Setting = /*#__PURE__*/ function() {
|
|
|
50
47
|
this.label = schema.label;
|
|
51
48
|
this.key = schema.key;
|
|
52
49
|
this.component = schema.component;
|
|
53
|
-
var _schema_effect;
|
|
54
50
|
this.effect = (_schema_effect = schema.effect) !== null && _schema_effect !== void 0 ? _schema_effect : {};
|
|
55
|
-
var _schema_scopeEffect;
|
|
56
51
|
this.scopeEffect = (_schema_scopeEffect = schema.scopeEffect) !== null && _schema_scopeEffect !== void 0 ? _schema_scopeEffect : noop;
|
|
57
52
|
this.defaultValue = schema.defaultValue;
|
|
58
53
|
this.validator = schema.validator;
|
|
59
|
-
var _schema_props;
|
|
60
54
|
this.props = (_schema_props = schema.props) !== null && _schema_props !== void 0 ? _schema_props : new BaseProps();
|
|
61
55
|
// private init
|
|
62
56
|
this.effectKeys = Object.keys(this.effect);
|
package/dist/esm/schema/tab.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
function _class_call_check(instance, Constructor) {
|
|
2
|
-
if (!(instance instanceof Constructor))
|
|
3
|
-
throw new TypeError("Cannot call a class as a function");
|
|
4
|
-
}
|
|
2
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
5
3
|
}
|
|
6
4
|
function _define_property(obj, key, value) {
|
|
7
5
|
if (key in obj) {
|
|
@@ -11,9 +9,7 @@ function _define_property(obj, key, value) {
|
|
|
11
9
|
configurable: true,
|
|
12
10
|
writable: true
|
|
13
11
|
});
|
|
14
|
-
} else
|
|
15
|
-
obj[key] = value;
|
|
16
|
-
}
|
|
12
|
+
} else obj[key] = value;
|
|
17
13
|
return obj;
|
|
18
14
|
}
|
|
19
15
|
export function isTabSchema(schema) {
|
package/dist/index.umd.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var Go=Object.defineProperty,Ko=Object.defineProperties;var Uo=Object.getOwnPropertyDescriptors;var W=Object.getOwnPropertySymbols;var Ho=Object.prototype.hasOwnProperty,Jo=Object.prototype.propertyIsEnumerable;var j=(s,v,c)=>v in s?Go(s,v,{enumerable:!0,configurable:!0,writable:!0,value:c}):s[v]=c,f=(s,v)=>{for(var c in v||(v={}))Ho.call(v,c)&&j(s,c,v[c]);if(W)for(var c of W(v))Jo.call(v,c)&&j(s,c,v[c]);return s},g=(s,v)=>Ko(s,Uo(v));(function(s,v){typeof exports=="object"&&typeof module!="undefined"?v(exports):typeof define=="function"&&define.amd?define(["exports"],v):(s=typeof globalThis!="undefined"?globalThis:s||self,v(s.modelDrivenSettings={}))})(this,function(s){"use strict";function v(e){return e}class c{constructor(u){var t,a,n;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=(n=u==null?void 0:u.updateParent)!=null?n:!1}get isAtomicComponent(){return!0}}var G="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",K="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",U="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",H="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",J="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Q="{caption}\u5FC5\u586B",Z="\u8BF7\u8F93\u5165\u6807\u9898",X="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",Y="\u8BF7\u8F93\u5165\u884C\u6807\u9898",uu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",eu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",tu="\u8BF7\u7ED1\u5B9A\u8868\u5355",au="\u8BF7\u7ED1\u5B9A\u5217\u8868",nu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",ru="\u8BF7\u8F93\u5165\u663E\u793A\u503C",iu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",lu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ou="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",su="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",cu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Eu="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Bu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",vu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Fu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Cu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",pu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",du="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",hu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",mu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Au="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Du="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",fu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",gu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",$u="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",bu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Su="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",yu="\u8BF7\u7ED1\u5B9A\u670D\u52A1",wu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Tu="\u8BF7\u9009\u62E9\u7701",Lu="\u8BF7\u9009\u62E9\u5E02",Ru="\u8BF7\u9009\u62E9\u533A",Pu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",_u="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",xu="\u8BF7\u8F93\u5165\u5217\u5BBD",Mu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Ou="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",ku="\u8BF7\u9009\u62E9\u63A7\u4EF6",Iu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Nu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Vu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",zu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",qu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Wu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ju="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Gu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ku="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Uu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Hu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ju="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Qu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Zu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Xu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Yu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ue="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ee="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",te="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ae="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ne="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",re="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",ie="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",le="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",oe="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",se="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",ce="\u6279\u91CF\u5220\u9664",Ee="\u6279\u91CF\u6253\u5370",Be="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",ve="\u6309\u94AE",Fe="\u521B\u5EFA\u5355\u636E",Ce="\u4EEA\u8868\u76D8",pe="\u5206\u5272\u7EBF",de="\u5BFC\u51FA",he="\u8868\u5355\u64CD\u4F5C",me="\u5BFC\u5165",Ae="\u53D1\u7968\u8BC6\u522B",De="\u94FE\u63A5",fe="\u5217\u8868\u9009\u62E9",ge="\u5217\u8868\u89C6\u56FE",$e="\u64CD\u4F5C\u6309\u94AE",be="\u5206\u9875",Se="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",ye="\u8BF4\u660E\u6587\u5B57",we="\u6587\u5B57\u8BC6\u522B",Te="\u6807\u9898\u7EC4\u4EF6",Le="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Re="\u6570\u7EC4",Pe="\u81EA\u52A8\u7F16\u53F7",_e="\u81EA\u5B9A\u4E49",xe="\u6570\u503C",Me="\u90E8\u95E8",Oe="\u4EBA\u5458",ke="\u9644\u4EF6",Ie="\u56FE\u7247",Ne="\u5730\u5740",Ve="\u64CD\u4F5C",ze="\u5E8F\u53F7",qe="\u4EBA\u5458",We="\u957F\u6587\u672C",je="\u65E5\u671F\u533A\u95F4",Ge="\u65E5\u671F",Ke="\u77ED\u6587\u672C",Ue="\u6362\u884C\u5BB9\u5668Wrap",He="\u8868\u683C",Je="\u660E\u7EC6\u5B50\u8868",Qe="\u5730\u5740",Ze="\u91D1\u989D",Xe="\u8BA1\u7B97\u516C\u5F0F",Ye="\u591A\u9009",ut="\u7535\u5B50\u7B7E\u7AE0",et="\u5355\u884C\u6587\u672C",tt="\u6570\u5B57",at="\u4E1A\u52A1\u7EC4\u7EC7",nt="\u5355\u9009",rt="\u5BCC\u6587\u672C",it="\u8BC4\u5206",lt="\u6570\u5B57\u533A\u95F4",ot="\u4E0B\u62C9\u5355\u9009",st="\u4E0B\u62C9\u591A\u9009",ct="\u5173\u8054\u5355\u9009",Et="\u591A\u884C\u6587\u672C",Bt="\u6811",vt="Vue\u5BB9\u5668",Ft="Vue\u9875\u9762",Ct="\u5728\u7EBF\u6587\u6863",pt="\u6309\u94AE\u64CD\u4F5C\u680F",dt="\u9AD8\u7EA7\u5BB9\u5668",ht="\u5206\u7EC4",mt="\u6805\u683C\u5217",At="\u6570\u636E\u5BB9\u5668",Dt="\u753B\u5E03",ft="\u6362\u884C\u5BB9\u5668",gt="\u6805\u683C\u7B49\u5206\u884C",$t="\u5217\u8868\u5BB9\u5668",bt="\u81EA\u7531\u9875\u9762",St="\u5B9A\u4F4D\u5B50\u5BB9\u5668",yt="\u5B9A\u4F4D\u5BB9\u5668",wt="\u6805\u683C\u5E03\u5C40",Tt="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Lt="\u660E\u7EC6\u5B50\u8868\u884C",Rt="\u6807\u7B7E\u9875",Pt="\u6807\u7B7E\u5355\u5143",_t="\u5DE5\u5177\u680F",xt="\u6279\u91CF\u63D0\u4EA4",Mt="\u5BFC\u51FA\u8BB0\u5F55",Ot="\u5217\u8868\u89C6\u56FE",kt="\u7ED3\u675F\u65F6\u95F4",It="\u5F00\u59CB\u65F6\u95F4",Nt="\u5355\u4F4D",Vt="\u7ED3\u679C",zt="\u5E01\u79CD",qt="\u7ED3\u675F\u65E5\u671F",Wt="\u5F00\u59CB\u65E5\u671F",jt="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",Gt="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",Kt="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",Ut="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",Ht="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",Jt="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",Qt="\u8BF7\u9009\u62E9",Zt="\u8BF7\u9009\u62E9\u7EC4\u7EC7",Xt="\u8BF7\u9009\u62E9\u90E8\u95E8",Yt="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",ua="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",ea="\u8BF7\u9009\u62E9\u5730\u5740",ta="\u5F39\u7A97\u786E\u8BA4\u65F6",aa="\u6807\u7B7E\u9875\u5207\u6362\u65F6",na="\u884C\u9009\u4E2D\u65F6",ra="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",ia="\u884C\u5220\u9664\u524D",la="\u884C\u70B9\u51FB\u65F6",oa="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",sa="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",ca="\u91CD\u547D\u540D\u65F6",Ea="\u4FDD\u5B58\u6587\u4EF6\u65F6",Ba="\u6253\u5F00\u6587\u4EF6\u65F6",va="\u83B7\u53D6\u7126\u70B9\u65F6",Fa="\u5931\u53BB\u7126\u70B9\u65F6",Ca="\u7528\u6237\u8F93\u5165\u65F6",pa="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",da="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",ha="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",ma="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",Aa="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Da="\u641C\u7D22\u65F6",fa="\u503C\u53D1\u751F\u53D8\u5316\u65F6",ga="\u6267\u884C\u5B8C\u6210\u65F6",$a="\u70B9\u51FB\u65F6",ba="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",Sa="\u8BF7\u8F93\u5165\u65E5\u671F",ya="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",wa="\u8BF7\u8F93\u5165",Ta="\u9ED8\u8BA4\u6A21\u7248",La="\u5DE6\u53F3\u5E03\u5C40",Ra="\u4E0A\u4E0B\u5E03\u5C40",Pa="\u53EA\u8BFB",_a="\u5FC5\u586B",xa="\u63D0\u793A\u6587\u5B57",Ma="\u9690\u85CF\u6807\u9898",Oa="\u6807\u9898\u5FC5\u586B",ka="\u7EC4\u7EC7\u5F62\u6001",Ia="\u4E1A\u52A1\u7C7B\u578B",Na="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Va="\u9690\u85CF",za="\u6D41\u7A0B\u72B6\u6001",qa="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Wa="\u5220\u9664",ja="\u7F16\u8F91",Ga="\u67E5\u770B",Ka="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",Ua="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",Ha="\u5145\u6EE1\u6574\u884C",Ja="\u6700\u5C0F\u503C",Qa="\u6700\u5927\u503C",Za="\u65B0\u5EFA\u6587\u6863",Xa="\u91CD\u7F6E",Ya="\u67E5\u8BE2",un="\u660E\u7EC6",en="\u6253\u5370",tn="\u4FDD\u5B58\u8349\u7A3F",an="\u4FDD\u5B58",nn="\u53D6\u6D88",rn="\u4E0A\u4F20\u56FE\u7247",ln="\u53D1\u8D77\u7B7E\u7F72",on="\u4E0A\u4F20\u9644\u4EF6",sn="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",cn="\u5F15\u7528\u5217\u8868",En="\u9009\u9879\u4E00",Bn="\u9009\u9879\u4E8C",vn="\u9009\u9879\u4E09",Fn={isNotNumber:G,isNotString:K,isNotObject:U,isNotArray:H,isNotBoolean:J,runtimeRequired:Q,pleaseEnterCaption:Z,pleaseEnterCaptionTip:X,pleaseEnterRowCaption:Y,pleaseEnterPlaceholder:uu,pleaseEnterFieldCode:eu,pleaseEnterForm:tu,pleaseEnterList:au,pleaseEnterProcess:nu,pleaseEnterLabel:ru,pleaseEnterValue:iu,bizKeyNotBindFiled:lu,pleaseSelectOneField:ou,pleaseEnterNumberRange:su,pleaseEnterAValueGreaterThanMin:cu,pleaseEnterAValueLessThanMax:Eu,numberRangeSetError:Bu,stringRangeError:vu,attachmentMaxSize:Fu,pleaseEnterTotalScoreSetting:Cu,theTotalScoreMustNotBeLessThan1:pu,scoreDefaultValueRange:du,attachmentLimitError:hu,PleaseReselectTheOptionalQuantity:mu,TheMaximumLengthIsGreaterThanTheMinimumLength:Au,TheMinimumLengthIsGreaterThanTheMaximumLength:Du,PleaseSelectTheCorrectOptionSettings:fu,optionIdIsRepeat:gu,optionIsRequired:$u,pleaseEnterDataCode:bu,pleaseEnterValueFieldCode:Su,pleaseEnterSvcCode:yu,pleaseBindAtLeastOneDisplayValue:wu,pleaseSelectProvince:Tu,pleaseSelectCity:Lu,pleaseSelectDistrict:Ru,limitRowsCannotBeLessThan0:Pu,TheNumberOfRowsCannotBeLessThanMinRows:_u,pleaseEnterColumnWidth:xu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Mu,pleaseCompleteAllRulesAndConditions:Ou,pleaseSelectControl:ku,pleaseSelectAtLeastOneColumn:Iu,pleaseSelectFillBackMode:Nu,pleaseSelectDashboard:Vu,rootNodeIsRequired:zu,theViewNameCannotBeEmpty:qu,pleaseSelectOcrType:Wu,pleaseSelectAtLeastOneFieldToFillIn:ju,pleaseChooseAtLeastOne:Gu,pleaseEnterButtonContent:Ku,pleaseEnterDataCodeInDataSetting:Uu,pleaseEnterValueFieldCodeInDataSetting:Hu,pleaseEnterSvcCodeInDataSetting:Ju,pleaseBindAtLeastOneDisplayValueInDataSetting:Qu,rootNodeIsRequiredInDataSetting:Zu,pleaseEnterMaxHeight:Xu,pleaseEnterWatermark:Yu,pleaseEnterFileName:ue,pleaseUploadAtLeastOnePrintTemplate:ee,pleaseAssignBusiness:te,pleaseAssignExternal:ae,pleaseEnterAliasCode:ne,pleaseSelectDataCode:re,pleaseSelectSvcCode:ie,pleaseSelectJoinFieldCode:le,pleaseSelectMainFieldCode:oe,pleaseSelectSortFieldCode:se,batchDeleteButton:ce,batchPrintListButton:Ee,batchPrintRecordList:Be,button:ve,createFormListButton:Fe,dashboard:Ce,divider:pe,exportListButton:de,formSelectButton:he,importRecordListButton:me,invoiceCheckButton:Ae,link:De,listSelectButton:fe,ListViewSelect:ge,operationButton:$e,pagination:be,submissionRecordListButton:Se,text:ye,textOcrButton:we,title:Te,approvalStatusColumn:Le,array:Re,autoNumber:Pe,custom:_e,decimal:xe,department:Me,employee:Oe,file:ke,image:Ie,location:Ne,operation:Ve,order:ze,people:qe,long:We,timescope:je,timestamp:Ge,varchar:Ke,gridLayoutWrap:Ue,gridTable:He,subTable:Je,address:Qe,amount:Ze,calc:Xe,checkBox:Ye,electronicSignature:ut,input:et,number:tt,organizationSelection:at,radio:nt,richText:rt,score:it,searchNumberRange:lt,select:ot,selectMultiple:st,selectRelation:ct,textarea:Et,tree:Bt,vueFormItem:vt,vuePage:Ft,WPS:Ct,actionBar:pt,advancedContainer:dt,cardGroup:ht,col:mt,dataView:At,grid:Dt,gridLayoutContainer:ft,gridRow:gt,listView:$t,page:bt,position:St,positioningContainer:yt,row:wt,subtableColumn:Tt,subtableRow:Lt,tab:Rt,tabPane:Pt,toolbox:_t,batchSubmissionListButton:xt,exportRecordListButton:Mt,listViewSelect:Ot,endTime:kt,startTime:It,unit:Nt,result:Vt,currency:zt,endDate:qt,startDate:Wt,pleaseSelectCompanyName:jt,pleaseSelectPhoneOrEmail:Gt,pleaseSelectSignType:Kt,pleaseSelectSigner:Ut,pleaseSelectOnlyOne:Ht,pleaseSelectSignFile:Jt,pleaseSelect:Qt,pleaseSelectOrg:Zt,pleaseSelectDept:Xt,pleaseSelectEndDate:Yt,pleaseSelectStartDate:ua,pleaseChooseAddress:ea,modalConfirm:ta,tabChange:aa,rowSelected:na,listDataImport:ra,rowDelete:ia,rowClick:la,cellRender:oa,onClickBtn:sa,rename:ca,onSaveFile:Ea,onOpenFile:Ba,onFocus:va,onBlur:Fa,onInput:Ca,listDataAdd:pa,listDataDelete:da,listDataBack:ha,listDataCreate:ma,listDataChange:Aa,search:Da,valueChange:fa,finished:ga,click:$a,pleaseEnterNameorEmail:ba,pleaseEnterDate:Sa,pleaseEnterAutonumber:ya,pleaseEnter:wa,defaultTemplate:Ta,left:La,top:Ra,default:"\u666E\u901A",readonly:Pa,required:_a,textTip:xa,hideCaption:Ma,titleRequired:Oa,organizationalForm:ka,businessType:Ia,deleteConfirm:Na,hide:Va,processStatus:za,approvedDocuments:qa,delete:Wa,edit:ja,view:Ga,loadCtrlErrorTip:Ka,loadCtrlError:Ua,fullLine:Ha,min:Ja,max:Qa,createWPS:Za,reset:Xa,query:Ya,detailed:un,print:en,draft:tn,save:an,cancel:nn,uploadImg:rn,signature:ln,uploadFile:on,linkContent:sn,referenceList:cn,optionOne:En,optionTwo:Bn,optionThird:vn},Cn="Please enter a number",pn="Please enter a string",dn="Please enter an object",hn="Please enter an array",mn="Please enter a boolean",An="{caption} Required",Dn="Please enter the title",fn="Please enter the bubble prompt",gn="Please enter the row title",$n="Please enter the prompt text",bn="Please bind data items",Sn="Please bind the form",yn="Please bind the list",wn="Please bind the process",Tn="Please enter the displayed value",Ln="Please enter the stored value",Rn="The document number is not bound to the data item",Pn="Please select at least one display field",_n="Please enter a value greater than or equal to {min} and less than or equal to {max}",xn="Please enter a value greater than or equal to {min}",Mn="Please enter a value less than or equal to {max}",On="The value range is set incorrectly",kn="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",In="The attachment size must be between 0MB and 1000MB",Nn="Please fill in the total score setting",Vn="The total score cannot be less than 1",zn="The default value must be between {min} and {max}",qn="The number of attachment uploads exceeds the limit",Wn="Please re-select the optional quantity",jn="The maximum length of the control must be greater than the minimum length",Gn="The minimum length of the control must be less than the maximum length",Kn="Please select the correct option setting",Un="Option ID cannot be repeated",Hn="Please enter at least one option",Jn="Please bind the data source",Qn="Please bind the stored value",Zn="Please bind the service",Xn="At least one display value must be bound",Yn="Please select a province",ur="Please select a city",er="Please select a district",tr="The minimum number of lines to fill in cannot be less than 0",ar="The number of rows cannot be less than {min} rows",nr="Please enter the column width",rr="Please set the logical relationship of all rule conditions",ir="Please complete all rules and conditions",lr="please select control",or="Please select the dashboard",sr="View name cannot be empty",cr="Please select recognition type",Er="Please select at least one field to fill in",Br="Please select at least one",vr="Please enter the button title",Fr="Please bind the business model in the data settings",Cr="Please bind storage values in data settings",pr="Please bind the service in the data settings",dr="Please bind at least one display value in the data settings",hr="Please select the root node in the data settings",mr="Please enter the maximum height",Ar="The input content cannot be empty",Dr="Watermark cannot be empty",fr="File name cannot be empty",gr="Please upload at least one printing template!\uFF01",$r="Please select a specific business department",br="Please select a specified external organization",Sr="Please enter a sub table alias",yr="Please select the associated table to set the business model",wr="Please select the association table to set the binding service",Tr="Select associated sub table fields",Lr="Please select the associated main table field",Rr="Please select the sort field",Pr="\u6279\u91CF\u5220\u9664",_r="\u6279\u91CF\u6253\u5370",xr="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Mr="\u6309\u94AE",Or="\u521B\u5EFA\u5355\u636E",kr="\u4EEA\u8868\u76D8",Ir="\u5206\u5272\u7EBF",Nr="\u5BFC\u51FA",Vr="\u8868\u5355\u64CD\u4F5C",zr="\u5BFC\u5165",qr="\u53D1\u7968\u8BC6\u522B",Wr="\u94FE\u63A5",jr="\u5217\u8868\u9009\u62E9",Gr="\u5217\u8868\u89C6\u56FE",Kr="\u64CD\u4F5C\u6309\u94AE",Ur="\u5206\u9875",Hr="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Jr="\u8BF4\u660E\u6587\u5B57",Qr="\u6587\u5B57\u8BC6\u522B",Zr="\u6807\u9898\u7EC4\u4EF6",Xr="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Yr="\u6570\u7EC4",u0="\u81EA\u52A8\u7F16\u53F7",e0="\u81EA\u5B9A\u4E49",t0="\u6570\u503C",a0="\u90E8\u95E8",n0="\u4EBA\u5458",r0="\u9644\u4EF6",i0="\u56FE\u7247",l0="\u5730\u5740",o0="\u64CD\u4F5C",s0="\u5E8F\u53F7",c0="\u4EBA\u5458",E0="\u957F\u6587\u672C",B0="\u65E5\u671F\u533A\u95F4",v0="\u65E5\u671F",F0="\u77ED\u6587\u672C",C0="\u6362\u884C\u5BB9\u5668Wrap",p0="\u8868\u683C",d0="\u660E\u7EC6\u5B50\u8868",h0="\u5730\u5740",m0="\u91D1\u989D",A0="\u8BA1\u7B97\u516C\u5F0F",D0="\u591A\u9009",f0="\u7535\u5B50\u7B7E\u7AE0",g0="\u5355\u884C\u6587\u672C",$0="\u6570\u5B57",b0="\u4E1A\u52A1\u7EC4\u7EC7",S0="\u5355\u9009",y0="\u5BCC\u6587\u672C",w0="\u8BC4\u5206",T0="\u6570\u5B57\u533A\u95F4",L0="\u4E0B\u62C9\u5355\u9009",R0="\u4E0B\u62C9\u591A\u9009",P0="\u5173\u8054\u5355\u9009",_0="\u591A\u884C\u6587\u672C",x0="\u6811",M0="Vue\u5BB9\u5668",O0="Vue\u9875\u9762",k0="\u5728\u7EBF\u6587\u6863",I0="\u6309\u94AE\u64CD\u4F5C\u680F",N0="\u9AD8\u7EA7\u5BB9\u5668",V0="\u5206\u7EC4",z0="\u6805\u683C\u5217",q0="\u6570\u636E\u5BB9\u5668",W0="\u753B\u5E03",j0="\u6362\u884C\u5BB9\u5668",G0="\u6805\u683C\u7B49\u5206\u884C",K0="\u5217\u8868\u5BB9\u5668",U0="\u81EA\u7531\u9875\u9762",H0="\u5B9A\u4F4D\u5B50\u5BB9\u5668",J0="\u5B9A\u4F4D\u5BB9\u5668",Q0="\u6805\u683C\u5E03\u5C40",Z0="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",X0="\u660E\u7EC6\u5B50\u8868\u884C",Y0="\u6807\u7B7E\u9875",ui="\u6807\u7B7E\u5355\u5143",ei="\u5DE5\u5177\u680F",ti="\u6279\u91CF\u63D0\u4EA4",ai="\u5BFC\u51FA\u8BB0\u5F55",ni="\u5217\u8868\u89C6\u56FE",ri="\u5F15\u7528\u5217\u8868",ii="\u9009\u9879\u4E00",li="\u9009\u9879\u4E8C",oi="\u9009\u9879\u4E09",si={isNotNumber:Cn,isNotString:pn,isNotObject:dn,isNotArray:hn,isNotBoolean:mn,runtimeRequired:An,pleaseEnterCaption:Dn,pleaseEnterCaptionTip:fn,pleaseEnterRowCaption:gn,pleaseEnterPlaceholder:$n,pleaseEnterFieldCode:bn,pleaseEnterForm:Sn,pleaseEnterList:yn,pleaseEnterProcess:wn,pleaseEnterLabel:Tn,pleaseEnterValue:Ln,bizKeyNotBindFiled:Rn,pleaseSelectOneField:Pn,pleaseEnterNumberRange:_n,pleaseEnterAValueGreaterThanMin:xn,pleaseEnterAValueLessThanMax:Mn,numberRangeSetError:On,stringRangeError:kn,attachmentMaxSize:In,pleaseEnterTotalScoreSetting:Nn,theTotalScoreMustNotBeLessThan1:Vn,scoreDefaultValueRange:zn,attachmentLimitError:qn,PleaseReselectTheOptionalQuantity:Wn,TheMaximumLengthIsGreaterThanTheMinimumLength:jn,TheMinimumLengthIsGreaterThanTheMaximumLength:Gn,PleaseSelectTheCorrectOptionSettings:Kn,optionIdIsRepeat:Un,optionIsRequired:Hn,pleaseEnterDataCode:Jn,pleaseEnterValueFieldCode:Qn,pleaseEnterSvcCode:Zn,pleaseBindAtLeastOneDisplayValue:Xn,pleaseSelectProvince:Yn,pleaseSelectCity:ur,pleaseSelectDistrict:er,limitRowsCannotBeLessThan0:tr,TheNumberOfRowsCannotBeLessThanMinRows:ar,pleaseEnterColumnWidth:nr,pleaseSetTheLogicalRelationshipOfAllRuleConditions:rr,pleaseCompleteAllRulesAndConditions:ir,pleaseSelectControl:lr,pleaseSelectDashboard:or,theViewNameCannotBeEmpty:sr,pleaseSelectOcrType:cr,pleaseSelectAtLeastOneFieldToFillIn:Er,pleaseChooseAtLeastOne:Br,pleaseEnterButtonContent:vr,pleaseEnterDataCodeInDataSetting:Fr,pleaseEnterValueFieldCodeInDataSetting:Cr,pleaseEnterSvcCodeInDataSetting:pr,pleaseBindAtLeastOneDisplayValueInDataSetting:dr,rootNodeIsRequiredInDataSetting:hr,pleaseEnterMaxHeight:mr,pleaseEnter:Ar,pleaseEnterWatermark:Dr,pleaseEnterFileName:fr,pleaseUploadAtLeastOnePrintTemplate:gr,pleaseAssignBusiness:$r,pleaseAssignExternal:br,pleaseEnterAliasCode:Sr,pleaseSelectDataCode:yr,pleaseSelectSvcCode:wr,pleaseSelectJoinFieldCode:Tr,pleaseSelectMainFieldCode:Lr,pleaseSelectSortFieldCode:Rr,batchDeleteButton:Pr,batchPrintListButton:_r,batchPrintRecordList:xr,button:Mr,createFormListButton:Or,dashboard:kr,divider:Ir,exportListButton:Nr,formSelectButton:Vr,importRecordListButton:zr,invoiceCheckButton:qr,link:Wr,listSelectButton:jr,ListViewSelect:Gr,operationButton:Kr,pagination:Ur,submissionRecordListButton:Hr,text:Jr,textOcrButton:Qr,title:Zr,approvalStatusColumn:Xr,array:Yr,autoNumber:u0,custom:e0,decimal:t0,department:a0,employee:n0,file:r0,image:i0,location:l0,operation:o0,order:s0,people:c0,long:E0,timescope:B0,timestamp:v0,varchar:F0,gridLayoutWrap:C0,gridTable:p0,subTable:d0,address:h0,amount:m0,calc:A0,checkBox:D0,electronicSignature:f0,input:g0,number:$0,organizationSelection:b0,radio:S0,richText:y0,score:w0,searchNumberRange:T0,select:L0,selectMultiple:R0,selectRelation:P0,textarea:_0,tree:x0,vueFormItem:M0,vuePage:O0,WPS:k0,actionBar:I0,advancedContainer:N0,cardGroup:V0,col:z0,dataView:q0,grid:W0,gridLayoutContainer:j0,gridRow:G0,listView:K0,page:U0,position:H0,positioningContainer:J0,row:Q0,subtableColumn:Z0,subtableRow:X0,tab:Y0,tabPane:ui,toolbox:ei,batchSubmissionListButton:ti,exportRecordListButton:ai,listViewSelect:ni,referenceList:ri,optionOne:ii,optionTwo:li,optionThird:oi},ci="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ei="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Bi="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vi="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fi="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ci="{caption}\u5FC5\u9808",pi="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",di="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",hi="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",mi="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ai="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Di="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",fi="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",gi="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",$i="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bi="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Si="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",yi="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",wi="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ti="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Li="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ri="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Pi="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",_i="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",xi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Mi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Oi="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ki="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",Ii="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ni="\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",Vi="\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",zi="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",qi="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Wi="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ji="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Gi="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ki="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ui="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Hi="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ji="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Qi="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Zi="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Xi="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Yi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",u5="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",e5="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",t5="please select control",a5="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",n5="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",r5="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",i5="\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",l5="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",o5="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",s5="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",c5="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",E5="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",B5="\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",v5="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",F5="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",C5="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",p5="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",d5="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",h5="\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",m5="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",A5="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",D5="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",f5="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",g5="\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",$5="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",b5="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",S5="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",y5="\u6279\u91CF\u5220\u9664",w5="\u6279\u91CF\u6253\u5370",T5="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",L5="\u6309\u94AE",R5="\u521B\u5EFA\u5355\u636E",P5="\u4EEA\u8868\u76D8",_5="\u5206\u5272\u7EBF",x5="\u5BFC\u51FA",M5="\u8868\u5355\u64CD\u4F5C",O5="\u5BFC\u5165",k5="\u53D1\u7968\u8BC6\u522B",I5="\u94FE\u63A5",N5="\u5217\u8868\u9009\u62E9",V5="\u5217\u8868\u89C6\u56FE",z5="\u64CD\u4F5C\u6309\u94AE",q5="\u5206\u9875",W5="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",j5="\u8BF4\u660E\u6587\u5B57",G5="\u6587\u5B57\u8BC6\u522B",K5="\u6807\u9898\u7EC4\u4EF6",U5="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",H5="\u6570\u7EC4",J5="\u81EA\u52A8\u7F16\u53F7",Q5="\u81EA\u5B9A\u4E49",Z5="\u6570\u503C",X5="\u90E8\u95E8",Y5="\u4EBA\u5458",ul="\u9644\u4EF6",el="\u56FE\u7247",tl="\u5730\u5740",al="\u64CD\u4F5C",nl="\u5E8F\u53F7",rl="\u4EBA\u5458",il="\u957F\u6587\u672C",ll="\u65E5\u671F\u533A\u95F4",ol="\u65E5\u671F",sl="\u77ED\u6587\u672C",cl="\u6362\u884C\u5BB9\u5668Wrap",El="\u8868\u683C",Bl="\u660E\u7EC6\u5B50\u8868",vl="\u5730\u5740",Fl="\u91D1\u989D",Cl="\u8BA1\u7B97\u516C\u5F0F",pl="\u591A\u9009",dl="\u7535\u5B50\u7B7E\u7AE0",hl="\u5355\u884C\u6587\u672C",ml="\u6570\u5B57",Al="\u4E1A\u52A1\u7EC4\u7EC7",Dl="\u5355\u9009",fl="\u5BCC\u6587\u672C",gl="\u8BC4\u5206",$l="\u6570\u5B57\u533A\u95F4",bl="\u4E0B\u62C9\u5355\u9009",Sl="\u4E0B\u62C9\u591A\u9009",yl="\u5173\u8054\u5355\u9009",wl="\u591A\u884C\u6587\u672C",Tl="\u6811",Ll="Vue\u5BB9\u5668",Rl="Vue\u9875\u9762",Pl="\u5728\u7EBF\u6587\u6863",_l="\u6309\u94AE\u64CD\u4F5C\u680F",xl="\u9AD8\u7EA7\u5BB9\u5668",Ml="\u5206\u7EC4",Ol="\u6805\u683C\u5217",kl="\u6570\u636E\u5BB9\u5668",Il="\u753B\u5E03",Nl="\u6362\u884C\u5BB9\u5668",Vl="\u6805\u683C\u7B49\u5206\u884C",zl="\u5217\u8868\u5BB9\u5668",ql="\u81EA\u7531\u9875\u9762",Wl="\u5B9A\u4F4D\u5B50\u5BB9\u5668",jl="\u5B9A\u4F4D\u5BB9\u5668",Gl="\u6805\u683C\u5E03\u5C40",Kl="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Ul="\u660E\u7EC6\u5B50\u8868\u884C",Hl="\u6807\u7B7E\u9875",Jl="\u6807\u7B7E\u5355\u5143",Ql="\u5DE5\u5177\u680F",Zl="\u6279\u91CF\u63D0\u4EA4",Xl="\u5BFC\u51FA\u8BB0\u5F55",Yl="\u5217\u8868\u89C6\u56FE",uo="\u5F15\u7528\u5217\u8868",eo="\u9009\u9879\u4E00",to="\u9009\u9879\u4E8C",ao="\u9009\u9879\u4E09",no={isNotNumber:ci,isNotString:Ei,isNotObject:Bi,isNotArray:vi,isNotBoolean:Fi,runtimeRequired:Ci,pleaseEnterCaption:pi,pleaseEnterCaptionTip:di,pleaseEnterRowCaption:hi,pleaseEnterPlaceholder:mi,pleaseEnterFieldCode:Ai,pleaseEnterForm:Di,pleaseEnterList:fi,pleaseEnterProcess:gi,pleaseEnterLabel:$i,pleaseEnterValue:bi,bizKeyNotBindFiled:Si,pleaseSelectOneField:yi,pleaseEnterNumberRange:wi,pleaseEnterAValueGreaterThanMin:Ti,pleaseEnterAValueLessThanMax:Li,numberRangeSetError:Ri,stringRangeError:Pi,attachmentMaxSize:_i,pleaseEnterTotalScoreSetting:xi,theTotalScoreMustNotBeLessThan1:Mi,scoreDefaultValueRange:Oi,attachmentLimitError:ki,PleaseReselectTheOptionalQuantity:Ii,TheMaximumLengthIsGreaterThanTheMinimumLength:Ni,TheMinimumLengthIsGreaterThanTheMaximumLength:Vi,PleaseSelectTheCorrectOptionSettings:zi,optionIdIsRepeat:qi,optionIsRequired:Wi,pleaseEnterDataCode:ji,pleaseEnterValueFieldCode:Gi,pleaseEnterSvcCode:Ki,pleaseBindAtLeastOneDisplayValue:Ui,pleaseSelectProvince:Hi,pleaseSelectCity:Ji,pleaseSelectDistrict:Qi,limitRowsCannotBeLessThan0:Zi,TheNumberOfRowsCannotBeLessThanMinRows:Xi,pleaseEnterColumnWidth:Yi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:u5,pleaseCompleteAllRulesAndConditions:e5,pleaseSelectControl:t5,pleaseSelectDashboard:a5,theViewNameCannotBeEmpty:n5,pleaseSelectOcrType:r5,pleaseSelectAtLeastOneFieldToFillIn:i5,pleaseChooseAtLeastOne:l5,pleaseEnterButtonContent:o5,pleaseEnterDataCodeInDataSetting:s5,pleaseEnterValueFieldCodeInDataSetting:c5,pleaseEnterSvcCodeInDataSetting:E5,pleaseBindAtLeastOneDisplayValueInDataSetting:B5,rootNodeIsRequiredInDataSetting:v5,pleaseEnterMaxHeight:F5,pleaseEnter:C5,pleaseEnterWatermark:p5,pleaseEnterFileName:d5,pleaseUploadAtLeastOnePrintTemplate:h5,pleaseAssignBusiness:m5,pleaseAssignExternal:A5,pleaseEnterAliasCode:D5,pleaseSelectDataCode:f5,pleaseSelectSvcCode:g5,pleaseSelectJoinFieldCode:$5,pleaseSelectMainFieldCode:b5,pleaseSelectSortFieldCode:S5,batchDeleteButton:y5,batchPrintListButton:w5,batchPrintRecordList:T5,button:L5,createFormListButton:R5,dashboard:P5,divider:_5,exportListButton:x5,formSelectButton:M5,importRecordListButton:O5,invoiceCheckButton:k5,link:I5,listSelectButton:N5,ListViewSelect:V5,operationButton:z5,pagination:q5,submissionRecordListButton:W5,text:j5,textOcrButton:G5,title:K5,approvalStatusColumn:U5,array:H5,autoNumber:J5,custom:Q5,decimal:Z5,department:X5,employee:Y5,file:ul,image:el,location:tl,operation:al,order:nl,people:rl,long:il,timescope:ll,timestamp:ol,varchar:sl,gridLayoutWrap:cl,gridTable:El,subTable:Bl,address:vl,amount:Fl,calc:Cl,checkBox:pl,electronicSignature:dl,input:hl,number:ml,organizationSelection:Al,radio:Dl,richText:fl,score:gl,searchNumberRange:$l,select:bl,selectMultiple:Sl,selectRelation:yl,textarea:wl,tree:Tl,vueFormItem:Ll,vuePage:Rl,WPS:Pl,actionBar:_l,advancedContainer:xl,cardGroup:Ml,col:Ol,dataView:kl,grid:Il,gridLayoutContainer:Nl,gridRow:Vl,listView:zl,page:ql,position:Wl,positioningContainer:jl,row:Gl,subtableColumn:Kl,subtableRow:Ul,tab:Hl,tabPane:Jl,toolbox:Ql,batchSubmissionListButton:Zl,exportRecordListButton:Xl,listViewSelect:Yl,referenceList:uo,optionOne:eo,optionTwo:to,optionThird:ao},$={zhCN:Fn,enUS:si,jaJP:no},b,ro=(b=window.localStorage.getItem("locale"))!==null&&b!==void 0?b:"zh-CN",io=function(){};function lo(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function oo(e,u,t){return u=d(u),Bo(e,y()?Reflect.construct(u,t||[],d(e).constructor):u.apply(e,t))}function so(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function A(e,u,t){return y()?A=Reflect.construct:A=function(n,E,o){var B=[null];B.push.apply(B,E);var p=Function.bind.apply(n,B),D=new p;return o&&h(D,o.prototype),D},A.apply(null,arguments)}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},d(e)}function co(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&&h(e,u)}function Eo(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Bo(e,u){return u&&(vo(u)==="object"||typeof u=="function")?u:lo(e)}function h(e,u){return h=Object.setPrototypeOf||function(a,n){return a.__proto__=n,a},h(e,u)}function vo(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function S(e){var u=typeof Map=="function"?new Map:void 0;return S=function(a){if(a===null||!Eo(a))return a;if(typeof a!="function")throw new TypeError("Super expression must either be null or a function");if(typeof u!="undefined"){if(u.has(a))return u.get(a);u.set(a,n)}function n(){return A(a,arguments,d(this).constructor)}return n.prototype=Object.create(a.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),h(n,a)},S(e)}function y(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(u){}return(y=function(){return!!e})()}function Fo(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Co=function(e){co(u,e);function u(t){so(this,u);var a;return a=oo(this,u,[t]),a.name="\u{1F4A5} Driven Error",a.message=t?Fo(t):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return u}(S(Error));function po(e){throw new Co(e)}const i=(e,u,t)=>{if(!e)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const a=e.split(".");let n;const E=(window.baitedaWorkers||{}).languageMessages||{};a.forEach((B,p)=>{p===0?n=E[B]:n&&(n=n[B])});let o="";return n&&(o=n),u&&Object.keys(u).forEach(B=>{const p=u[B];o=o.replace(new RegExp(`\\{\\s*${B}\\s*\\}`,"g"),p)}),o||(t?o=t:o=e),o};function ho(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function R(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 mo(e,u,t){return u&&R(e.prototype,u),t&&R(e,t),e}function Ao(e,u,t){return u in e?Object.defineProperty(e,u,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[u]=t,e}var P=function(){function e(){ho(this,e)}return mo(e,null,[{key:"getMessage",value:function(t){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n;return i("CMD."+t,a,$==null||(n=$[ro.split("-").join("")])===null||n===void 0?void 0:n[t])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(t,a){}}]),e}();Ao(P,"$i18n",P.resetI18n());var Do=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},fo={exports:{}};(function(e){(function(u){var t=function(r,l,F){if(!D(l)||zo(l)||qo(l)||Wo(l)||p(l))return l;var C,m=0,q=0;if(Vo(l))for(C=[],q=l.length;m<q;m++)C.push(t(r,l[m],F));else{C={};for(var L in l)Object.prototype.hasOwnProperty.call(l,L)&&(C[r(L,F)]=t(r,l[L],F))}return C},a=function(r,l){l=l||{};var F=l.separator||"_",C=l.split||/(?=[A-Z])/;return r.split(C).join(F)},n=function(r){return jo(r)?r:(r=r.replace(/[\-_\s]+(.)?/g,function(l,F){return F?F.toUpperCase():""}),r.substr(0,1).toLowerCase()+r.substr(1))},E=function(r){var l=n(r);return l.substr(0,1).toUpperCase()+l.substr(1)},o=function(r,l){return a(r,l).toLowerCase()},B=Object.prototype.toString,p=function(r){return typeof r=="function"},D=function(r){return r===Object(r)},Vo=function(r){return B.call(r)=="[object Array]"},zo=function(r){return B.call(r)=="[object Date]"},qo=function(r){return B.call(r)=="[object RegExp]"},Wo=function(r){return B.call(r)=="[object Boolean]"},jo=function(r){return r=r-0,r===r},T=function(r,l){var F=l&&"process"in l?l.process:l;return typeof F!="function"?r:function(C,m){return F(C,r,m)}},z={camelize:n,decamelize:o,pascalize:E,depascalize:o,camelizeKeys:function(r,l){return t(T(n,l),r)},decamelizeKeys:function(r,l){return t(T(o,l),r,l)},pascalizeKeys:function(r,l){return t(T(E,l),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=z:u.humps=z})(Do)})(fo);var _={};Object.defineProperty(_,"__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 a=e[t];u[t]=typeof a!="object"||a===null?a:w(a)}return u}}_.default=w;function x(e){return Object.prototype.toString.call(e)==="[object Object]"}function go(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function M(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 $o(e,u,t){return u&&M(e.prototype,u),t&&M(e,t),e}function bo(e,u,t){return u in e?Object.defineProperty(e,u,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[u]=t,e}var So=[{key:"on_click",name:i("CMD.click",null,"\u70B9\u51FB\u65F6"),code:"click"},{key:"on_click_finish",name:i("CMD.finished",null,"\u6267\u884C\u5B8C\u6210\u65F6"),code:"click-finish"},{key:"on_change",name:i("CMD.valueChange",null,"\u503C\u53D1\u751F\u53D8\u5316\u65F6"),code:"change"},{key:"on_search",name:i("CMD.search",null,"\u641C\u7D22\u65F6"),code:"search"},{key:"on_file_actions",name:i("CMD.onClickFileBtn",null,"\u70B9\u51FB\u6587\u4EF6\u6309\u94AE\u65F6"),code:"file-actions"},{key:"on_list_change",name:i("CMD.listDataChange",null,"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6"),code:"list-change"},{key:"on_list_search",name:i("CMD.listDataCreate",null,"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6"),code:"list-search"},{key:"on_list_mounted",name:i("CMD.listDataBack",null,"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6"),code:"list-mounted"},{key:"on_list_delete",name:i("CMD.listDataDelete",null,"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6"),code:"list-delete"},{key:"on_list_before_insert",name:i("CMD.listDataAdd",null,"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D"),code:"list-before-insert"},{key:"on_input",name:i("CMD.onInput",null,"\u7528\u6237\u8F93\u5165\u65F6"),code:"input"},{key:"on_blur",name:i("CMD.onBlur",null,"\u5931\u53BB\u7126\u70B9\u65F6"),code:"blur"},{key:"on_focus",name:i("CMD.onFocus",null,"\u83B7\u53D6\u7126\u70B9\u65F6"),code:"focus"},{key:"on_wps_open",name:i("CMD.onOpenFile",null,"\u6253\u5F00\u6587\u4EF6\u65F6"),code:"wps-open"},{key:"on_wps_save",name:i("CMD.onSaveFile",null,"\u4FDD\u5B58\u6587\u4EF6\u65F6"),code:"wps-save"},{key:"on_wps_rename",name:i("CMD.rename",null,"\u91CD\u547D\u540D\u65F6"),code:"wps-rename"},{key:"on_list_actions",name:i("CMD.onClickBtn",null,"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6"),code:"list-actions"},{key:"on_list_render_operation",name:i("CMD.cellRender",null,"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6"),code:"list-render-operation"},{key:"on_list_rowclick",name:i("CMD.rowClick",null,"\u884C\u70B9\u51FB\u65F6"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:i("CMD.rowDelete",null,"\u884C\u5220\u9664\u524D"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:i("CMD.listDataImport",null,"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D"),code:"list-before-import"},{key:"on_list_rows_checked",name:i("CMD.rowSelected",null,"\u884C\u9009\u4E2D\u65F6"),code:"list-rows-checked"},{key:"on_change_tab",name:i("CMD.tabChange",null,"\u6807\u7B7E\u9875\u5207\u6362\u65F6"),code:"change-tab"},{key:"on_modal_ok",name:i("CMD.modalConfirm",null,"\u5F39\u7A97\u786E\u8BA4\u65F6"),code:"modal-ok"},{key:"on_change_steps",name:i("CMD.stepsChange",null,"\u6B65\u9AA4\u5207\u6362\u65F6"),code:"change-steps"},{key:"on_option_selected",name:i("CMD.optionSelected",null,"DOM\u70B9\u51FBoption\u4E8B\u4EF6"),code:"option_selected"}],yo=function(){function e(){go(this,e)}return $o(e,null,[{key:"getEventsFromKeys",value:function(t){var a=typeof t=="string"?[t]:t;return e.events.filter(function(n){return a.includes(n.key)})}},{key:"getEventsFromControl",value:function(t){var a=[],n=t.eventKeys;a=a.concat(e.events.filter(function(o){return n.includes(o.key)}));var E=t.customEvents.map(function(o){var B=o.key;return o.namespace!==void 0&&o.namespace!==null&&o.namespace!==""&&(B=o.namespace+":"+o.key),{key:B,code:o.key,name:o.name}});return a=a.concat(E),a}}]),e}();bo(yo,"events",So);class O{constructor(u){var t,a,n;this.type=u.type,this.label=u.label,this.key=u.key,this.component=u.component,this.effect=(t=u.effect)!=null?t:{},this.scopeEffect=(a=u.scopeEffect)!=null?a:io,this.defaultValue=u.defaultValue,this.validator=u.validator,this.props=(n=u.props)!=null?n:new c,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);x(a)&&Object.assign(this.props,a)}catch(a){po(`effect error
|
|
2
|
-
${a}`)}}callEffect(u,...t){this.filterEffects(u).forEach(a=>this.callEffectFn(a,t))}callScopeEffect(...u){this.callEffectFn(this.scopeEffect,u)}}class k{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(n=>{var E;return(E=n.props)==null?void 0:E.visible})}}function I(e){return"type"in e&&e.type==="tab"}class N{constructor(u){this.type="tab",this.title=u.title,this.items=u.items}}class
|
|
1
|
+
var Go=Object.defineProperty,Ko=Object.defineProperties;var Uo=Object.getOwnPropertyDescriptors;var W=Object.getOwnPropertySymbols;var Ho=Object.prototype.hasOwnProperty,Jo=Object.prototype.propertyIsEnumerable;var j=(s,v,c)=>v in s?Go(s,v,{enumerable:!0,configurable:!0,writable:!0,value:c}):s[v]=c,f=(s,v)=>{for(var c in v||(v={}))Ho.call(v,c)&&j(s,c,v[c]);if(W)for(var c of W(v))Jo.call(v,c)&&j(s,c,v[c]);return s},g=(s,v)=>Ko(s,Uo(v));(function(s,v){typeof exports=="object"&&typeof module!="undefined"?v(exports):typeof define=="function"&&define.amd?define(["exports"],v):(s=typeof globalThis!="undefined"?globalThis:s||self,v(s.modelDrivenSettings={}))})(this,function(s){"use strict";function v(e){return e}class c{constructor(u){var t,a,n;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=(n=u==null?void 0:u.updateParent)!=null?n:!1}get isAtomicComponent(){return!0}}var G="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",K="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",U="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",H="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",J="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Q="{caption}\u5FC5\u586B",Z="\u8BF7\u8F93\u5165\u6807\u9898",X="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",Y="\u8BF7\u8F93\u5165\u884C\u6807\u9898",uu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",eu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",tu="\u8BF7\u7ED1\u5B9A\u8868\u5355",au="\u8BF7\u7ED1\u5B9A\u5217\u8868",nu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",ru="\u8BF7\u8F93\u5165\u663E\u793A\u503C",iu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",lu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ou="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",su="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",cu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Eu="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Bu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",vu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Fu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Cu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",pu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",du="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",hu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",mu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Au="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Du="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",fu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",gu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",$u="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",bu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Su="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",yu="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Tu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",wu="\u8BF7\u9009\u62E9\u7701",Lu="\u8BF7\u9009\u62E9\u5E02",Ru="\u8BF7\u9009\u62E9\u533A",_u="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Pu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",xu="\u8BF7\u8F93\u5165\u5217\u5BBD",Mu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Ou="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",ku="\u8BF7\u9009\u62E9\u63A7\u4EF6",Iu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Nu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Vu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",zu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",qu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Wu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ju="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Gu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ku="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Uu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Hu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ju="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Qu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Zu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Xu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Yu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ue="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ee="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",te="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ae="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ne="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",re="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",ie="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",le="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",oe="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",se="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",ce="\u6279\u91CF\u5220\u9664",Ee="\u6279\u91CF\u6253\u5370",Be="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",ve="\u6309\u94AE",Fe="\u521B\u5EFA\u5355\u636E",Ce="\u4EEA\u8868\u76D8",pe="\u5206\u5272\u7EBF",de="\u5BFC\u51FA",he="\u8868\u5355\u64CD\u4F5C",me="\u5BFC\u5165",Ae="\u53D1\u7968\u8BC6\u522B",De="\u94FE\u63A5",fe="\u5217\u8868\u9009\u62E9",ge="\u5217\u8868\u89C6\u56FE",$e="\u64CD\u4F5C\u6309\u94AE",be="\u5206\u9875",Se="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",ye="\u8BF4\u660E\u6587\u5B57",Te="\u6587\u5B57\u8BC6\u522B",we="\u6807\u9898\u7EC4\u4EF6",Le="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Re="\u6570\u7EC4",_e="\u81EA\u52A8\u7F16\u53F7",Pe="\u81EA\u5B9A\u4E49",xe="\u6570\u503C",Me="\u90E8\u95E8",Oe="\u4EBA\u5458",ke="\u9644\u4EF6",Ie="\u56FE\u7247",Ne="\u5730\u5740",Ve="\u64CD\u4F5C",ze="\u5E8F\u53F7",qe="\u4EBA\u5458",We="\u957F\u6587\u672C",je="\u65E5\u671F\u533A\u95F4",Ge="\u65E5\u671F",Ke="\u77ED\u6587\u672C",Ue="\u6362\u884C\u5BB9\u5668Wrap",He="\u8868\u683C",Je="\u660E\u7EC6\u5B50\u8868",Qe="\u5730\u5740",Ze="\u91D1\u989D",Xe="\u8BA1\u7B97\u516C\u5F0F",Ye="\u591A\u9009",ut="\u7535\u5B50\u7B7E\u7AE0",et="\u5355\u884C\u6587\u672C",tt="\u6570\u5B57",at="\u4E1A\u52A1\u7EC4\u7EC7",nt="\u5355\u9009",rt="\u5BCC\u6587\u672C",it="\u8BC4\u5206",lt="\u6570\u5B57\u533A\u95F4",ot="\u4E0B\u62C9\u5355\u9009",st="\u4E0B\u62C9\u591A\u9009",ct="\u5173\u8054\u5355\u9009",Et="\u591A\u884C\u6587\u672C",Bt="\u6811",vt="Vue\u5BB9\u5668",Ft="Vue\u9875\u9762",Ct="\u5728\u7EBF\u6587\u6863",pt="\u6309\u94AE\u64CD\u4F5C\u680F",dt="\u9AD8\u7EA7\u5BB9\u5668",ht="\u5206\u7EC4",mt="\u6805\u683C\u5217",At="\u6570\u636E\u5BB9\u5668",Dt="\u753B\u5E03",ft="\u6362\u884C\u5BB9\u5668",gt="\u6805\u683C\u7B49\u5206\u884C",$t="\u5217\u8868\u5BB9\u5668",bt="\u81EA\u7531\u9875\u9762",St="\u5B9A\u4F4D\u5B50\u5BB9\u5668",yt="\u5B9A\u4F4D\u5BB9\u5668",Tt="\u6805\u683C\u5E03\u5C40",wt="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Lt="\u660E\u7EC6\u5B50\u8868\u884C",Rt="\u6807\u7B7E\u9875",_t="\u6807\u7B7E\u5355\u5143",Pt="\u5DE5\u5177\u680F",xt="\u6279\u91CF\u63D0\u4EA4",Mt="\u5BFC\u51FA\u8BB0\u5F55",Ot="\u5217\u8868\u89C6\u56FE",kt="\u7ED3\u675F\u65F6\u95F4",It="\u5F00\u59CB\u65F6\u95F4",Nt="\u5355\u4F4D",Vt="\u7ED3\u679C",zt="\u5E01\u79CD",qt="\u7ED3\u675F\u65E5\u671F",Wt="\u5F00\u59CB\u65E5\u671F",jt="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",Gt="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",Kt="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",Ut="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",Ht="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",Jt="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",Qt="\u8BF7\u9009\u62E9",Zt="\u8BF7\u9009\u62E9\u7EC4\u7EC7",Xt="\u8BF7\u9009\u62E9\u90E8\u95E8",Yt="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",ua="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",ea="\u8BF7\u9009\u62E9\u5730\u5740",ta="\u5F39\u7A97\u786E\u8BA4\u65F6",aa="\u6807\u7B7E\u9875\u5207\u6362\u65F6",na="\u884C\u9009\u4E2D\u65F6",ra="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",ia="\u884C\u5220\u9664\u524D",la="\u884C\u70B9\u51FB\u65F6",oa="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",sa="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",ca="\u91CD\u547D\u540D\u65F6",Ea="\u4FDD\u5B58\u6587\u4EF6\u65F6",Ba="\u6253\u5F00\u6587\u4EF6\u65F6",va="\u83B7\u53D6\u7126\u70B9\u65F6",Fa="\u5931\u53BB\u7126\u70B9\u65F6",Ca="\u7528\u6237\u8F93\u5165\u65F6",pa="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",da="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",ha="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",ma="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",Aa="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Da="\u641C\u7D22\u65F6",fa="\u503C\u53D1\u751F\u53D8\u5316\u65F6",ga="\u6267\u884C\u5B8C\u6210\u65F6",$a="\u70B9\u51FB\u65F6",ba="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",Sa="\u8BF7\u8F93\u5165\u65E5\u671F",ya="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Ta="\u8BF7\u8F93\u5165",wa="\u9ED8\u8BA4\u6A21\u7248",La="\u5DE6\u53F3\u5E03\u5C40",Ra="\u4E0A\u4E0B\u5E03\u5C40",_a="\u53EA\u8BFB",Pa="\u5FC5\u586B",xa="\u63D0\u793A\u6587\u5B57",Ma="\u9690\u85CF\u6807\u9898",Oa="\u6807\u9898\u5FC5\u586B",ka="\u7EC4\u7EC7\u5F62\u6001",Ia="\u4E1A\u52A1\u7C7B\u578B",Na="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Va="\u9690\u85CF",za="\u6D41\u7A0B\u72B6\u6001",qa="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Wa="\u5220\u9664",ja="\u7F16\u8F91",Ga="\u67E5\u770B",Ka="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",Ua="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",Ha="\u5145\u6EE1\u6574\u884C",Ja="\u6700\u5C0F\u503C",Qa="\u6700\u5927\u503C",Za="\u65B0\u5EFA\u6587\u6863",Xa="\u91CD\u7F6E",Ya="\u67E5\u8BE2",un="\u660E\u7EC6",en="\u6253\u5370",tn="\u4FDD\u5B58\u8349\u7A3F",an="\u4FDD\u5B58",nn="\u53D6\u6D88",rn="\u4E0A\u4F20\u56FE\u7247",ln="\u53D1\u8D77\u7B7E\u7F72",on="\u4E0A\u4F20\u9644\u4EF6",sn="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",cn="\u5F15\u7528\u5217\u8868",En="\u9009\u9879\u4E00",Bn="\u9009\u9879\u4E8C",vn="\u9009\u9879\u4E09",Fn={isNotNumber:G,isNotString:K,isNotObject:U,isNotArray:H,isNotBoolean:J,runtimeRequired:Q,pleaseEnterCaption:Z,pleaseEnterCaptionTip:X,pleaseEnterRowCaption:Y,pleaseEnterPlaceholder:uu,pleaseEnterFieldCode:eu,pleaseEnterForm:tu,pleaseEnterList:au,pleaseEnterProcess:nu,pleaseEnterLabel:ru,pleaseEnterValue:iu,bizKeyNotBindFiled:lu,pleaseSelectOneField:ou,pleaseEnterNumberRange:su,pleaseEnterAValueGreaterThanMin:cu,pleaseEnterAValueLessThanMax:Eu,numberRangeSetError:Bu,stringRangeError:vu,attachmentMaxSize:Fu,pleaseEnterTotalScoreSetting:Cu,theTotalScoreMustNotBeLessThan1:pu,scoreDefaultValueRange:du,attachmentLimitError:hu,PleaseReselectTheOptionalQuantity:mu,TheMaximumLengthIsGreaterThanTheMinimumLength:Au,TheMinimumLengthIsGreaterThanTheMaximumLength:Du,PleaseSelectTheCorrectOptionSettings:fu,optionIdIsRepeat:gu,optionIsRequired:$u,pleaseEnterDataCode:bu,pleaseEnterValueFieldCode:Su,pleaseEnterSvcCode:yu,pleaseBindAtLeastOneDisplayValue:Tu,pleaseSelectProvince:wu,pleaseSelectCity:Lu,pleaseSelectDistrict:Ru,limitRowsCannotBeLessThan0:_u,TheNumberOfRowsCannotBeLessThanMinRows:Pu,pleaseEnterColumnWidth:xu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Mu,pleaseCompleteAllRulesAndConditions:Ou,pleaseSelectControl:ku,pleaseSelectAtLeastOneColumn:Iu,pleaseSelectFillBackMode:Nu,pleaseSelectDashboard:Vu,rootNodeIsRequired:zu,theViewNameCannotBeEmpty:qu,pleaseSelectOcrType:Wu,pleaseSelectAtLeastOneFieldToFillIn:ju,pleaseChooseAtLeastOne:Gu,pleaseEnterButtonContent:Ku,pleaseEnterDataCodeInDataSetting:Uu,pleaseEnterValueFieldCodeInDataSetting:Hu,pleaseEnterSvcCodeInDataSetting:Ju,pleaseBindAtLeastOneDisplayValueInDataSetting:Qu,rootNodeIsRequiredInDataSetting:Zu,pleaseEnterMaxHeight:Xu,pleaseEnterWatermark:Yu,pleaseEnterFileName:ue,pleaseUploadAtLeastOnePrintTemplate:ee,pleaseAssignBusiness:te,pleaseAssignExternal:ae,pleaseEnterAliasCode:ne,pleaseSelectDataCode:re,pleaseSelectSvcCode:ie,pleaseSelectJoinFieldCode:le,pleaseSelectMainFieldCode:oe,pleaseSelectSortFieldCode:se,batchDeleteButton:ce,batchPrintListButton:Ee,batchPrintRecordList:Be,button:ve,createFormListButton:Fe,dashboard:Ce,divider:pe,exportListButton:de,formSelectButton:he,importRecordListButton:me,invoiceCheckButton:Ae,link:De,listSelectButton:fe,ListViewSelect:ge,operationButton:$e,pagination:be,submissionRecordListButton:Se,text:ye,textOcrButton:Te,title:we,approvalStatusColumn:Le,array:Re,autoNumber:_e,custom:Pe,decimal:xe,department:Me,employee:Oe,file:ke,image:Ie,location:Ne,operation:Ve,order:ze,people:qe,long:We,timescope:je,timestamp:Ge,varchar:Ke,gridLayoutWrap:Ue,gridTable:He,subTable:Je,address:Qe,amount:Ze,calc:Xe,checkBox:Ye,electronicSignature:ut,input:et,number:tt,organizationSelection:at,radio:nt,richText:rt,score:it,searchNumberRange:lt,select:ot,selectMultiple:st,selectRelation:ct,textarea:Et,tree:Bt,vueFormItem:vt,vuePage:Ft,WPS:Ct,actionBar:pt,advancedContainer:dt,cardGroup:ht,col:mt,dataView:At,grid:Dt,gridLayoutContainer:ft,gridRow:gt,listView:$t,page:bt,position:St,positioningContainer:yt,row:Tt,subtableColumn:wt,subtableRow:Lt,tab:Rt,tabPane:_t,toolbox:Pt,batchSubmissionListButton:xt,exportRecordListButton:Mt,listViewSelect:Ot,endTime:kt,startTime:It,unit:Nt,result:Vt,currency:zt,endDate:qt,startDate:Wt,pleaseSelectCompanyName:jt,pleaseSelectPhoneOrEmail:Gt,pleaseSelectSignType:Kt,pleaseSelectSigner:Ut,pleaseSelectOnlyOne:Ht,pleaseSelectSignFile:Jt,pleaseSelect:Qt,pleaseSelectOrg:Zt,pleaseSelectDept:Xt,pleaseSelectEndDate:Yt,pleaseSelectStartDate:ua,pleaseChooseAddress:ea,modalConfirm:ta,tabChange:aa,rowSelected:na,listDataImport:ra,rowDelete:ia,rowClick:la,cellRender:oa,onClickBtn:sa,rename:ca,onSaveFile:Ea,onOpenFile:Ba,onFocus:va,onBlur:Fa,onInput:Ca,listDataAdd:pa,listDataDelete:da,listDataBack:ha,listDataCreate:ma,listDataChange:Aa,search:Da,valueChange:fa,finished:ga,click:$a,pleaseEnterNameorEmail:ba,pleaseEnterDate:Sa,pleaseEnterAutonumber:ya,pleaseEnter:Ta,defaultTemplate:wa,left:La,top:Ra,default:"\u666E\u901A",readonly:_a,required:Pa,textTip:xa,hideCaption:Ma,titleRequired:Oa,organizationalForm:ka,businessType:Ia,deleteConfirm:Na,hide:Va,processStatus:za,approvedDocuments:qa,delete:Wa,edit:ja,view:Ga,loadCtrlErrorTip:Ka,loadCtrlError:Ua,fullLine:Ha,min:Ja,max:Qa,createWPS:Za,reset:Xa,query:Ya,detailed:un,print:en,draft:tn,save:an,cancel:nn,uploadImg:rn,signature:ln,uploadFile:on,linkContent:sn,referenceList:cn,optionOne:En,optionTwo:Bn,optionThird:vn},Cn="Please enter a number",pn="Please enter a string",dn="Please enter an object",hn="Please enter an array",mn="Please enter a boolean",An="{caption} Required",Dn="Please enter the title",fn="Please enter the bubble prompt",gn="Please enter the row title",$n="Please enter the prompt text",bn="Please bind data items",Sn="Please bind the form",yn="Please bind the list",Tn="Please bind the process",wn="Please enter the displayed value",Ln="Please enter the stored value",Rn="The document number is not bound to the data item",_n="Please select at least one display field",Pn="Please enter a value greater than or equal to {min} and less than or equal to {max}",xn="Please enter a value greater than or equal to {min}",Mn="Please enter a value less than or equal to {max}",On="The value range is set incorrectly",kn="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",In="The attachment size must be between 0MB and 1000MB",Nn="Please fill in the total score setting",Vn="The total score cannot be less than 1",zn="The default value must be between {min} and {max}",qn="The number of attachment uploads exceeds the limit",Wn="Please re-select the optional quantity",jn="The maximum length of the control must be greater than the minimum length",Gn="The minimum length of the control must be less than the maximum length",Kn="Please select the correct option setting",Un="Option ID cannot be repeated",Hn="Please enter at least one option",Jn="Please bind the data source",Qn="Please bind the stored value",Zn="Please bind the service",Xn="At least one display value must be bound",Yn="Please select a province",ur="Please select a city",er="Please select a district",tr="The minimum number of lines to fill in cannot be less than 0",ar="The number of rows cannot be less than {min} rows",nr="Please enter the column width",rr="Please set the logical relationship of all rule conditions",ir="Please complete all rules and conditions",lr="please select control",or="Please select the dashboard",sr="View name cannot be empty",cr="Please select recognition type",Er="Please select at least one field to fill in",Br="Please select at least one",vr="Please enter the button title",Fr="Please bind the business model in the data settings",Cr="Please bind storage values in data settings",pr="Please bind the service in the data settings",dr="Please bind at least one display value in the data settings",hr="Please select the root node in the data settings",mr="Please enter the maximum height",Ar="The input content cannot be empty",Dr="Watermark cannot be empty",fr="File name cannot be empty",gr="Please upload at least one printing template!\uFF01",$r="Please select a specific business department",br="Please select a specified external organization",Sr="Please enter a sub table alias",yr="Please select the associated table to set the business model",Tr="Please select the association table to set the binding service",wr="Select associated sub table fields",Lr="Please select the associated main table field",Rr="Please select the sort field",_r="\u6279\u91CF\u5220\u9664",Pr="\u6279\u91CF\u6253\u5370",xr="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Mr="\u6309\u94AE",Or="\u521B\u5EFA\u5355\u636E",kr="\u4EEA\u8868\u76D8",Ir="\u5206\u5272\u7EBF",Nr="\u5BFC\u51FA",Vr="\u8868\u5355\u64CD\u4F5C",zr="\u5BFC\u5165",qr="\u53D1\u7968\u8BC6\u522B",Wr="\u94FE\u63A5",jr="\u5217\u8868\u9009\u62E9",Gr="\u5217\u8868\u89C6\u56FE",Kr="\u64CD\u4F5C\u6309\u94AE",Ur="\u5206\u9875",Hr="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Jr="\u8BF4\u660E\u6587\u5B57",Qr="\u6587\u5B57\u8BC6\u522B",Zr="\u6807\u9898\u7EC4\u4EF6",Xr="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Yr="\u6570\u7EC4",u0="\u81EA\u52A8\u7F16\u53F7",e0="\u81EA\u5B9A\u4E49",t0="\u6570\u503C",a0="\u90E8\u95E8",n0="\u4EBA\u5458",r0="\u9644\u4EF6",i0="\u56FE\u7247",l0="\u5730\u5740",o0="\u64CD\u4F5C",s0="\u5E8F\u53F7",c0="\u4EBA\u5458",E0="\u957F\u6587\u672C",B0="\u65E5\u671F\u533A\u95F4",v0="\u65E5\u671F",F0="\u77ED\u6587\u672C",C0="\u6362\u884C\u5BB9\u5668Wrap",p0="\u8868\u683C",d0="\u660E\u7EC6\u5B50\u8868",h0="\u5730\u5740",m0="\u91D1\u989D",A0="\u8BA1\u7B97\u516C\u5F0F",D0="\u591A\u9009",f0="\u7535\u5B50\u7B7E\u7AE0",g0="\u5355\u884C\u6587\u672C",$0="\u6570\u5B57",b0="\u4E1A\u52A1\u7EC4\u7EC7",S0="\u5355\u9009",y0="\u5BCC\u6587\u672C",T0="\u8BC4\u5206",w0="\u6570\u5B57\u533A\u95F4",L0="\u4E0B\u62C9\u5355\u9009",R0="\u4E0B\u62C9\u591A\u9009",_0="\u5173\u8054\u5355\u9009",P0="\u591A\u884C\u6587\u672C",x0="\u6811",M0="Vue\u5BB9\u5668",O0="Vue\u9875\u9762",k0="\u5728\u7EBF\u6587\u6863",I0="\u6309\u94AE\u64CD\u4F5C\u680F",N0="\u9AD8\u7EA7\u5BB9\u5668",V0="\u5206\u7EC4",z0="\u6805\u683C\u5217",q0="\u6570\u636E\u5BB9\u5668",W0="\u753B\u5E03",j0="\u6362\u884C\u5BB9\u5668",G0="\u6805\u683C\u7B49\u5206\u884C",K0="\u5217\u8868\u5BB9\u5668",U0="\u81EA\u7531\u9875\u9762",H0="\u5B9A\u4F4D\u5B50\u5BB9\u5668",J0="\u5B9A\u4F4D\u5BB9\u5668",Q0="\u6805\u683C\u5E03\u5C40",Z0="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",X0="\u660E\u7EC6\u5B50\u8868\u884C",Y0="\u6807\u7B7E\u9875",ui="\u6807\u7B7E\u5355\u5143",ei="\u5DE5\u5177\u680F",ti="\u6279\u91CF\u63D0\u4EA4",ai="\u5BFC\u51FA\u8BB0\u5F55",ni="\u5217\u8868\u89C6\u56FE",ri="\u5F15\u7528\u5217\u8868",ii="\u9009\u9879\u4E00",li="\u9009\u9879\u4E8C",oi="\u9009\u9879\u4E09",si={isNotNumber:Cn,isNotString:pn,isNotObject:dn,isNotArray:hn,isNotBoolean:mn,runtimeRequired:An,pleaseEnterCaption:Dn,pleaseEnterCaptionTip:fn,pleaseEnterRowCaption:gn,pleaseEnterPlaceholder:$n,pleaseEnterFieldCode:bn,pleaseEnterForm:Sn,pleaseEnterList:yn,pleaseEnterProcess:Tn,pleaseEnterLabel:wn,pleaseEnterValue:Ln,bizKeyNotBindFiled:Rn,pleaseSelectOneField:_n,pleaseEnterNumberRange:Pn,pleaseEnterAValueGreaterThanMin:xn,pleaseEnterAValueLessThanMax:Mn,numberRangeSetError:On,stringRangeError:kn,attachmentMaxSize:In,pleaseEnterTotalScoreSetting:Nn,theTotalScoreMustNotBeLessThan1:Vn,scoreDefaultValueRange:zn,attachmentLimitError:qn,PleaseReselectTheOptionalQuantity:Wn,TheMaximumLengthIsGreaterThanTheMinimumLength:jn,TheMinimumLengthIsGreaterThanTheMaximumLength:Gn,PleaseSelectTheCorrectOptionSettings:Kn,optionIdIsRepeat:Un,optionIsRequired:Hn,pleaseEnterDataCode:Jn,pleaseEnterValueFieldCode:Qn,pleaseEnterSvcCode:Zn,pleaseBindAtLeastOneDisplayValue:Xn,pleaseSelectProvince:Yn,pleaseSelectCity:ur,pleaseSelectDistrict:er,limitRowsCannotBeLessThan0:tr,TheNumberOfRowsCannotBeLessThanMinRows:ar,pleaseEnterColumnWidth:nr,pleaseSetTheLogicalRelationshipOfAllRuleConditions:rr,pleaseCompleteAllRulesAndConditions:ir,pleaseSelectControl:lr,pleaseSelectDashboard:or,theViewNameCannotBeEmpty:sr,pleaseSelectOcrType:cr,pleaseSelectAtLeastOneFieldToFillIn:Er,pleaseChooseAtLeastOne:Br,pleaseEnterButtonContent:vr,pleaseEnterDataCodeInDataSetting:Fr,pleaseEnterValueFieldCodeInDataSetting:Cr,pleaseEnterSvcCodeInDataSetting:pr,pleaseBindAtLeastOneDisplayValueInDataSetting:dr,rootNodeIsRequiredInDataSetting:hr,pleaseEnterMaxHeight:mr,pleaseEnter:Ar,pleaseEnterWatermark:Dr,pleaseEnterFileName:fr,pleaseUploadAtLeastOnePrintTemplate:gr,pleaseAssignBusiness:$r,pleaseAssignExternal:br,pleaseEnterAliasCode:Sr,pleaseSelectDataCode:yr,pleaseSelectSvcCode:Tr,pleaseSelectJoinFieldCode:wr,pleaseSelectMainFieldCode:Lr,pleaseSelectSortFieldCode:Rr,batchDeleteButton:_r,batchPrintListButton:Pr,batchPrintRecordList:xr,button:Mr,createFormListButton:Or,dashboard:kr,divider:Ir,exportListButton:Nr,formSelectButton:Vr,importRecordListButton:zr,invoiceCheckButton:qr,link:Wr,listSelectButton:jr,ListViewSelect:Gr,operationButton:Kr,pagination:Ur,submissionRecordListButton:Hr,text:Jr,textOcrButton:Qr,title:Zr,approvalStatusColumn:Xr,array:Yr,autoNumber:u0,custom:e0,decimal:t0,department:a0,employee:n0,file:r0,image:i0,location:l0,operation:o0,order:s0,people:c0,long:E0,timescope:B0,timestamp:v0,varchar:F0,gridLayoutWrap:C0,gridTable:p0,subTable:d0,address:h0,amount:m0,calc:A0,checkBox:D0,electronicSignature:f0,input:g0,number:$0,organizationSelection:b0,radio:S0,richText:y0,score:T0,searchNumberRange:w0,select:L0,selectMultiple:R0,selectRelation:_0,textarea:P0,tree:x0,vueFormItem:M0,vuePage:O0,WPS:k0,actionBar:I0,advancedContainer:N0,cardGroup:V0,col:z0,dataView:q0,grid:W0,gridLayoutContainer:j0,gridRow:G0,listView:K0,page:U0,position:H0,positioningContainer:J0,row:Q0,subtableColumn:Z0,subtableRow:X0,tab:Y0,tabPane:ui,toolbox:ei,batchSubmissionListButton:ti,exportRecordListButton:ai,listViewSelect:ni,referenceList:ri,optionOne:ii,optionTwo:li,optionThird:oi},ci="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ei="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Bi="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vi="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fi="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ci="{caption}\u5FC5\u9808",pi="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",di="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",hi="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",mi="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ai="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Di="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",fi="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",gi="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",$i="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bi="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Si="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",yi="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ti="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wi="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Li="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ri="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",_i="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Pi="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",xi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Mi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Oi="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ki="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",Ii="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ni="\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",Vi="\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",zi="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",qi="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Wi="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ji="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Gi="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ki="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ui="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Hi="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ji="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Qi="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Zi="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Xi="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Yi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",u5="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",e5="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",t5="please select control",a5="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",n5="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",r5="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",i5="\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",l5="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",o5="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",s5="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",c5="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",E5="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",B5="\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",v5="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",F5="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",C5="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",p5="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",d5="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",h5="\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",m5="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",A5="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",D5="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",f5="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",g5="\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",$5="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",b5="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",S5="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",y5="\u6279\u91CF\u5220\u9664",T5="\u6279\u91CF\u6253\u5370",w5="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",L5="\u6309\u94AE",R5="\u521B\u5EFA\u5355\u636E",_5="\u4EEA\u8868\u76D8",P5="\u5206\u5272\u7EBF",x5="\u5BFC\u51FA",M5="\u8868\u5355\u64CD\u4F5C",O5="\u5BFC\u5165",k5="\u53D1\u7968\u8BC6\u522B",I5="\u94FE\u63A5",N5="\u5217\u8868\u9009\u62E9",V5="\u5217\u8868\u89C6\u56FE",z5="\u64CD\u4F5C\u6309\u94AE",q5="\u5206\u9875",W5="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",j5="\u8BF4\u660E\u6587\u5B57",G5="\u6587\u5B57\u8BC6\u522B",K5="\u6807\u9898\u7EC4\u4EF6",U5="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",H5="\u6570\u7EC4",J5="\u81EA\u52A8\u7F16\u53F7",Q5="\u81EA\u5B9A\u4E49",Z5="\u6570\u503C",X5="\u90E8\u95E8",Y5="\u4EBA\u5458",ul="\u9644\u4EF6",el="\u56FE\u7247",tl="\u5730\u5740",al="\u64CD\u4F5C",nl="\u5E8F\u53F7",rl="\u4EBA\u5458",il="\u957F\u6587\u672C",ll="\u65E5\u671F\u533A\u95F4",ol="\u65E5\u671F",sl="\u77ED\u6587\u672C",cl="\u6362\u884C\u5BB9\u5668Wrap",El="\u8868\u683C",Bl="\u660E\u7EC6\u5B50\u8868",vl="\u5730\u5740",Fl="\u91D1\u989D",Cl="\u8BA1\u7B97\u516C\u5F0F",pl="\u591A\u9009",dl="\u7535\u5B50\u7B7E\u7AE0",hl="\u5355\u884C\u6587\u672C",ml="\u6570\u5B57",Al="\u4E1A\u52A1\u7EC4\u7EC7",Dl="\u5355\u9009",fl="\u5BCC\u6587\u672C",gl="\u8BC4\u5206",$l="\u6570\u5B57\u533A\u95F4",bl="\u4E0B\u62C9\u5355\u9009",Sl="\u4E0B\u62C9\u591A\u9009",yl="\u5173\u8054\u5355\u9009",Tl="\u591A\u884C\u6587\u672C",wl="\u6811",Ll="Vue\u5BB9\u5668",Rl="Vue\u9875\u9762",_l="\u5728\u7EBF\u6587\u6863",Pl="\u6309\u94AE\u64CD\u4F5C\u680F",xl="\u9AD8\u7EA7\u5BB9\u5668",Ml="\u5206\u7EC4",Ol="\u6805\u683C\u5217",kl="\u6570\u636E\u5BB9\u5668",Il="\u753B\u5E03",Nl="\u6362\u884C\u5BB9\u5668",Vl="\u6805\u683C\u7B49\u5206\u884C",zl="\u5217\u8868\u5BB9\u5668",ql="\u81EA\u7531\u9875\u9762",Wl="\u5B9A\u4F4D\u5B50\u5BB9\u5668",jl="\u5B9A\u4F4D\u5BB9\u5668",Gl="\u6805\u683C\u5E03\u5C40",Kl="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Ul="\u660E\u7EC6\u5B50\u8868\u884C",Hl="\u6807\u7B7E\u9875",Jl="\u6807\u7B7E\u5355\u5143",Ql="\u5DE5\u5177\u680F",Zl="\u6279\u91CF\u63D0\u4EA4",Xl="\u5BFC\u51FA\u8BB0\u5F55",Yl="\u5217\u8868\u89C6\u56FE",uo="\u5F15\u7528\u5217\u8868",eo="\u9009\u9879\u4E00",to="\u9009\u9879\u4E8C",ao="\u9009\u9879\u4E09",no={isNotNumber:ci,isNotString:Ei,isNotObject:Bi,isNotArray:vi,isNotBoolean:Fi,runtimeRequired:Ci,pleaseEnterCaption:pi,pleaseEnterCaptionTip:di,pleaseEnterRowCaption:hi,pleaseEnterPlaceholder:mi,pleaseEnterFieldCode:Ai,pleaseEnterForm:Di,pleaseEnterList:fi,pleaseEnterProcess:gi,pleaseEnterLabel:$i,pleaseEnterValue:bi,bizKeyNotBindFiled:Si,pleaseSelectOneField:yi,pleaseEnterNumberRange:Ti,pleaseEnterAValueGreaterThanMin:wi,pleaseEnterAValueLessThanMax:Li,numberRangeSetError:Ri,stringRangeError:_i,attachmentMaxSize:Pi,pleaseEnterTotalScoreSetting:xi,theTotalScoreMustNotBeLessThan1:Mi,scoreDefaultValueRange:Oi,attachmentLimitError:ki,PleaseReselectTheOptionalQuantity:Ii,TheMaximumLengthIsGreaterThanTheMinimumLength:Ni,TheMinimumLengthIsGreaterThanTheMaximumLength:Vi,PleaseSelectTheCorrectOptionSettings:zi,optionIdIsRepeat:qi,optionIsRequired:Wi,pleaseEnterDataCode:ji,pleaseEnterValueFieldCode:Gi,pleaseEnterSvcCode:Ki,pleaseBindAtLeastOneDisplayValue:Ui,pleaseSelectProvince:Hi,pleaseSelectCity:Ji,pleaseSelectDistrict:Qi,limitRowsCannotBeLessThan0:Zi,TheNumberOfRowsCannotBeLessThanMinRows:Xi,pleaseEnterColumnWidth:Yi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:u5,pleaseCompleteAllRulesAndConditions:e5,pleaseSelectControl:t5,pleaseSelectDashboard:a5,theViewNameCannotBeEmpty:n5,pleaseSelectOcrType:r5,pleaseSelectAtLeastOneFieldToFillIn:i5,pleaseChooseAtLeastOne:l5,pleaseEnterButtonContent:o5,pleaseEnterDataCodeInDataSetting:s5,pleaseEnterValueFieldCodeInDataSetting:c5,pleaseEnterSvcCodeInDataSetting:E5,pleaseBindAtLeastOneDisplayValueInDataSetting:B5,rootNodeIsRequiredInDataSetting:v5,pleaseEnterMaxHeight:F5,pleaseEnter:C5,pleaseEnterWatermark:p5,pleaseEnterFileName:d5,pleaseUploadAtLeastOnePrintTemplate:h5,pleaseAssignBusiness:m5,pleaseAssignExternal:A5,pleaseEnterAliasCode:D5,pleaseSelectDataCode:f5,pleaseSelectSvcCode:g5,pleaseSelectJoinFieldCode:$5,pleaseSelectMainFieldCode:b5,pleaseSelectSortFieldCode:S5,batchDeleteButton:y5,batchPrintListButton:T5,batchPrintRecordList:w5,button:L5,createFormListButton:R5,dashboard:_5,divider:P5,exportListButton:x5,formSelectButton:M5,importRecordListButton:O5,invoiceCheckButton:k5,link:I5,listSelectButton:N5,ListViewSelect:V5,operationButton:z5,pagination:q5,submissionRecordListButton:W5,text:j5,textOcrButton:G5,title:K5,approvalStatusColumn:U5,array:H5,autoNumber:J5,custom:Q5,decimal:Z5,department:X5,employee:Y5,file:ul,image:el,location:tl,operation:al,order:nl,people:rl,long:il,timescope:ll,timestamp:ol,varchar:sl,gridLayoutWrap:cl,gridTable:El,subTable:Bl,address:vl,amount:Fl,calc:Cl,checkBox:pl,electronicSignature:dl,input:hl,number:ml,organizationSelection:Al,radio:Dl,richText:fl,score:gl,searchNumberRange:$l,select:bl,selectMultiple:Sl,selectRelation:yl,textarea:Tl,tree:wl,vueFormItem:Ll,vuePage:Rl,WPS:_l,actionBar:Pl,advancedContainer:xl,cardGroup:Ml,col:Ol,dataView:kl,grid:Il,gridLayoutContainer:Nl,gridRow:Vl,listView:zl,page:ql,position:Wl,positioningContainer:jl,row:Gl,subtableColumn:Kl,subtableRow:Ul,tab:Hl,tabPane:Jl,toolbox:Ql,batchSubmissionListButton:Zl,exportRecordListButton:Xl,listViewSelect:Yl,referenceList:uo,optionOne:eo,optionTwo:to,optionThird:ao},$={zhCN:Fn,enUS:si,jaJP:no},b,ro=(b=window.localStorage.getItem("locale"))!==null&&b!==void 0?b:"zh-CN",io=function(){};function lo(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function oo(e,u,t){return u=d(u),Bo(e,S()?Reflect.construct(u,t||[],d(e).constructor):u.apply(e,t))}function so(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function A(e,u,t){return S()?A=Reflect.construct:A=function(n,E,o){var B=[null];B.push.apply(B,E);var p=Function.bind.apply(n,B),D=new p;return o&&h(D,o.prototype),D},A.apply(null,arguments)}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},d(e)}function co(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&&h(e,u)}function Eo(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function S(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(u){}return(S=function(){return!!e})()}function Bo(e,u){return u&&(vo(u)==="object"||typeof u=="function")?u:lo(e)}function h(e,u){return h=Object.setPrototypeOf||function(a,n){return a.__proto__=n,a},h(e,u)}function vo(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function y(e){var u=typeof Map=="function"?new Map:void 0;return y=function(t){if(t===null||!Eo(t))return t;if(typeof t!="function")throw new TypeError("Super expression must either be null or a function");if(typeof u!="undefined"){if(u.has(t))return u.get(t);u.set(t,a)}function a(){return A(t,arguments,d(this).constructor)}return a.prototype=Object.create(t.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),h(a,t)},y(e)}function Fo(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Co=function(e){co(u,e);function u(t){so(this,u);var a;return a=oo(this,u,[t]),a.name="\u{1F4A5} Driven Error",a.message=t?Fo(t):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return u}(y(Error));function po(e){throw new Co(e)}const i=(e,u,t)=>{if(!e)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const a=e.split(".");let n;const E=(window.baitedaWorkers||{}).languageMessages||{};a.forEach((B,p)=>{p===0?n=E[B]:n&&(n=n[B])});let o="";return n&&(o=n),u&&Object.keys(u).forEach(B=>{const p=u[B];o=o.replace(new RegExp(`\\{\\s*${B}\\s*\\}`,"g"),p)}),o||(t?o=t:o=e),o};function ho(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function R(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 mo(e,u,t){return u&&R(e.prototype,u),t&&R(e,t),e}function Ao(e,u,t){return u in e?Object.defineProperty(e,u,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[u]=t,e}var _=function(){function e(){ho(this,e)}return mo(e,null,[{key:"getMessage",value:function(t){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n;return i("CMD."+t,a,$==null||(n=$[ro.split("-").join("")])===null||n===void 0?void 0:n[t])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(t,a){}}]),e}();Ao(_,"$i18n",_.resetI18n());var Do=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},fo={exports:{}};(function(e){(function(u){var t=function(r,l,F){if(!D(l)||zo(l)||qo(l)||Wo(l)||p(l))return l;var C,m=0,q=0;if(Vo(l))for(C=[],q=l.length;m<q;m++)C.push(t(r,l[m],F));else{C={};for(var L in l)Object.prototype.hasOwnProperty.call(l,L)&&(C[r(L,F)]=t(r,l[L],F))}return C},a=function(r,l){l=l||{};var F=l.separator||"_",C=l.split||/(?=[A-Z])/;return r.split(C).join(F)},n=function(r){return jo(r)?r:(r=r.replace(/[\-_\s]+(.)?/g,function(l,F){return F?F.toUpperCase():""}),r.substr(0,1).toLowerCase()+r.substr(1))},E=function(r){var l=n(r);return l.substr(0,1).toUpperCase()+l.substr(1)},o=function(r,l){return a(r,l).toLowerCase()},B=Object.prototype.toString,p=function(r){return typeof r=="function"},D=function(r){return r===Object(r)},Vo=function(r){return B.call(r)=="[object Array]"},zo=function(r){return B.call(r)=="[object Date]"},qo=function(r){return B.call(r)=="[object RegExp]"},Wo=function(r){return B.call(r)=="[object Boolean]"},jo=function(r){return r=r-0,r===r},w=function(r,l){var F=l&&"process"in l?l.process:l;return typeof F!="function"?r:function(C,m){return F(C,r,m)}},z={camelize:n,decamelize:o,pascalize:E,depascalize:o,camelizeKeys:function(r,l){return t(w(n,l),r)},decamelizeKeys:function(r,l){return t(w(o,l),r,l)},pascalizeKeys:function(r,l){return t(w(E,l),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=z:u.humps=z})(Do)})(fo);var P={};Object.defineProperty(P,"__esModule",{value:!0});function T(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(u=>typeof u!="object"||u===null?u:T(u));{const u={};for(const t in e){const a=e[t];u[t]=typeof a!="object"||a===null?a:T(a)}return u}}P.default=T;function x(e){return Object.prototype.toString.call(e)==="[object Object]"}function go(e,u){if(!(e instanceof u))throw new TypeError("Cannot call a class as a function")}function M(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 $o(e,u,t){return u&&M(e.prototype,u),t&&M(e,t),e}function bo(e,u,t){return u in e?Object.defineProperty(e,u,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[u]=t,e}var So=[{key:"on_click",name:i("CMD.click",null,"\u70B9\u51FB\u65F6"),code:"click"},{key:"on_click_finish",name:i("CMD.finished",null,"\u6267\u884C\u5B8C\u6210\u65F6"),code:"click-finish"},{key:"on_change",name:i("CMD.valueChange",null,"\u503C\u53D1\u751F\u53D8\u5316\u65F6"),code:"change"},{key:"on_search",name:i("CMD.search",null,"\u641C\u7D22\u65F6"),code:"search"},{key:"on_file_actions",name:i("CMD.onClickFileBtn",null,"\u70B9\u51FB\u6587\u4EF6\u6309\u94AE\u65F6"),code:"file-actions"},{key:"on_tree_search",name:i("CMD.treeDataCreate",null,"\u6811\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6"),code:"tree-search"},{key:"on_list_change",name:i("CMD.listDataChange",null,"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6"),code:"list-change"},{key:"on_list_search",name:i("CMD.listDataCreate",null,"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6"),code:"list-search"},{key:"on_list_mounted",name:i("CMD.listDataBack",null,"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6"),code:"list-mounted"},{key:"on_list_delete",name:i("CMD.listDataDelete",null,"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6"),code:"list-delete"},{key:"on_list_before_insert",name:i("CMD.listDataAdd",null,"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D"),code:"list-before-insert"},{key:"on_input",name:i("CMD.onInput",null,"\u7528\u6237\u8F93\u5165\u65F6"),code:"input"},{key:"on_blur",name:i("CMD.onBlur",null,"\u5931\u53BB\u7126\u70B9\u65F6"),code:"blur"},{key:"on_focus",name:i("CMD.onFocus",null,"\u83B7\u53D6\u7126\u70B9\u65F6"),code:"focus"},{key:"on_wps_open",name:i("CMD.onOpenFile",null,"\u6253\u5F00\u6587\u4EF6\u65F6"),code:"wps-open"},{key:"on_wps_save",name:i("CMD.onSaveFile",null,"\u4FDD\u5B58\u6587\u4EF6\u65F6"),code:"wps-save"},{key:"on_wps_rename",name:i("CMD.rename",null,"\u91CD\u547D\u540D\u65F6"),code:"wps-rename"},{key:"on_list_actions",name:i("CMD.onClickBtn",null,"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6"),code:"list-actions"},{key:"on_list_render_operation",name:i("CMD.cellRender",null,"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6"),code:"list-render-operation"},{key:"on_list_rowclick",name:i("CMD.rowClick",null,"\u884C\u70B9\u51FB\u65F6"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:i("CMD.rowDelete",null,"\u884C\u5220\u9664\u524D"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:i("CMD.listDataImport",null,"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D"),code:"list-before-import"},{key:"on_list_rows_checked",name:i("CMD.rowSelected",null,"\u884C\u9009\u4E2D\u65F6"),code:"list-rows-checked"},{key:"on_change_tab",name:i("CMD.tabChange",null,"\u6807\u7B7E\u9875\u5207\u6362\u65F6"),code:"change-tab"},{key:"on_modal_ok",name:i("CMD.modalConfirm",null,"\u5F39\u7A97\u786E\u8BA4\u65F6"),code:"modal-ok"},{key:"on_change_steps",name:i("CMD.stepsChange",null,"\u6B65\u9AA4\u5207\u6362\u65F6"),code:"change-steps"},{key:"on_option_selected",name:i("CMD.optionSelected",null,"DOM\u70B9\u51FBoption\u4E8B\u4EF6"),code:"option_selected"}],yo=function(){function e(){go(this,e)}return $o(e,null,[{key:"getEventsFromKeys",value:function(t){var a=typeof t=="string"?[t]:t;return e.events.filter(function(n){return a.includes(n.key)})}},{key:"getEventsFromControl",value:function(t){var a=[],n=t.eventKeys;a=a.concat(e.events.filter(function(o){return n.includes(o.key)}));var E=t.customEvents.map(function(o){var B=o.key;return o.namespace!==void 0&&o.namespace!==null&&o.namespace!==""&&(B=o.namespace+":"+o.key),{key:B,code:o.key,name:o.name}});return a=a.concat(E),a}}]),e}();bo(yo,"events",So);class O{constructor(u){var t,a,n;this.type=u.type,this.label=u.label,this.key=u.key,this.component=u.component,this.effect=(t=u.effect)!=null?t:{},this.scopeEffect=(a=u.scopeEffect)!=null?a:io,this.defaultValue=u.defaultValue,this.validator=u.validator,this.props=(n=u.props)!=null?n:new c,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);x(a)&&Object.assign(this.props,a)}catch(a){po(`effect error
|
|
2
|
+
${a}`)}}callEffect(u,...t){this.filterEffects(u).forEach(a=>this.callEffectFn(a,t))}callScopeEffect(...u){this.callEffectFn(this.scopeEffect,u)}}class k{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(n=>{var E;return(E=n.props)==null?void 0:E.visible})}}function I(e){return"type"in e&&e.type==="tab"}class N{constructor(u){this.type="tab",this.title=u.title,this.items=u.items}}class To extends c{constructor(u){super(u),x(u)&&Object.entries(u).forEach(([t,a])=>{this[t]=a})}}class wo extends c{constructor(u){var t,a,n,E;super(u),this.maxLength=(t=u==null?void 0:u.maxLength)!=null?t:"",this.minLength=(a=u==null?void 0:u.minLength)!=null?a:"",this.placeholder=(n=u==null?void 0:u.placeholder)!=null?n:"",this.i18n=(E=u==null?void 0:u.i18n)!=null?E:!1}}class Lo extends c{constructor(u){var t,a,n;super(u),this.max=(t=u==null?void 0:u.max)!=null?t:"",this.min=(a=u==null?void 0:u.min)!=null?a:"",this.placeholder=(n=u==null?void 0:u.placeholder)!=null?n:""}}class Ro extends c{constructor(u){var t,a,n;super(u),this.showType=(t=u==null?void 0:u.showType)!=null?t:"switch",this.tips=(a=u==null?void 0:u.tips)!=null?a:"",this.disabled=(n=u==null?void 0:u.disabled)!=null?n:!1}}class _o extends c{constructor(u){var t;super(u),this.options=(t=u==null?void 0:u.options)!=null?t:[]}}class Po extends c{constructor(u){var t,a;super(u),this.placeholder=(t=u==null?void 0:u.placeholder)!=null?t:"",this.options=(a=u==null?void 0:u.options)!=null?a:[]}}class xo extends c{constructor(u){var t,a;super(u),this.options=(t=u==null?void 0:u.options)!=null?t:[],this.showType=(a=u==null?void 0:u.showType)!=null?a:"outline"}}class Mo extends c{constructor(u){var t,a,n,E,o,B;super(u),this.maxLength=(t=u==null?void 0:u.maxLength)!=null?t:"",this.minLength=(a=u==null?void 0:u.minLength)!=null?a:"",this.placeholder=(n=u==null?void 0:u.placeholder)!=null?n:"",this.maxRows=(E=u==null?void 0:u.maxRows)!=null?E:"",this.minRows=(o=u==null?void 0:u.minRows)!=null?o:"",this.i18n=(B=u==null?void 0:u.i18n)!=null?B:!1}}function Oo(e,u){switch(e){case"input":return new wo(u);case"textarea":return new Mo(u);case"input-number":return new Lo(u);case"switch":return new Ro(u);case"radio":return new xo(u);case"checkbox":return new _o(u);case"select":return new Po(u);default:return new To(u)}}function ko(e){return function(u){const t=e.get(u);if(!!t)return new O(g(f({},t),{props:Oo(t.component,"props"in t?t.props:void 0)}))}}function Io(e){const u=e.fields.reduce((n,E)=>(n.set(E.key,E),n),new Map);function t(n){return new k(g(f({},n),{items:n.items.map(ko(u)).filter(Boolean)}))}function a(n){return n.map(t)}return e.groups.map(n=>I(n)?new N(g(f({},n),{items:a(n.items)})):t(n))}function V(){return[{label:i("CMD.hide",null,"\u9690\u85CF"),key:"isHide",type:"boolean",component:"switch"},{key:"superSetting",component:"super-setting"},{key:"style.width",component:"styleComponent",props:{configKey:"style.widthConfig",options:["px","%","fill","hug"]},scopeEffect(e,u){const{oldParent:t,newParent:a,instance:n}=u;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(e.setInstance(n,"style.width",""),e.setInstance(n,"style.widthConfig","fill")),a)return{visible:a.type==="advanced-container"}}},{key:"style.height",component:"styleComponent",props:{configKey:"style.heightConfig",options:["px","%","fill","hug"]},scopeEffect(e,u){const{oldParent:t,newParent:a,instance:n}=u;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(e.setInstance(n,"style.height",""),e.setInstance(n,"style.heightConfig","fill")),u.newParent)return{visible:u.newParent.type==="advanced-container"}}}]}function No(e){return[...V(),{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 i("CMD.titleRequired",null,"\u6807\u9898\u5FC5\u586B")}},{label:i("CMD.hideCaption",null,"\u9690\u85CF\u6807\u9898"),key:"isHideCaption",type:"boolean",component:"switch",defaultValue:e==null?void 0:e.isHideCaption,props:{showType:"checkbox"},scopeEffect(u,t){var a,n;if(((a=t.current)==null?void 0:a.type)!==((n=t.from)==null?void 0:n.type))return t.current.type==="subtable"&&u.setInstance(t.control,"isHideCaption",!0),{visible:t.current.type!=="subtable"}}},{key:"labelPosition",type:"string",component:"radio",defaultValue:e==null?void 0:e.labelPosition,props:{showType:"solid",options:[{label:i("CMD.top",null,"\u4E0A\u4E0B\u5E03\u5C40"),value:"top"},{label:i("CMD.left",null,"\u5DE6\u53F3\u5E03\u5C40"),value:"left"}]}},{key:"defaultState",type:"string",component:"radio",defaultValue:e==null?void 0:e.defaultState,props:{showType:"solid",options:[{label:i("CMD.default",null,"\u666E\u901A"),value:"default"},{label:i("CMD.readonly",null,"\u53EA\u8BFB"),value:"readonly"}]}},{label:i("CMD.required",null,"\u5FC5\u586B"),key:"required",type:"boolean",component:"switch",defaultValue:e==null?void 0:e.required},{label:i("CMD.textTip",null,"\u63D0\u793A\u6587\u5B57"),key:"placeholder",type:"string",component:"input",defaultValue:e==null?void 0:e.placeholder,props:{maxLength:80,i18n:!0}}]}s.Group=k,s.Setting=O,s.Tab=N,s.createBaseFields=V,s.createFormBaseFields=No,s.defineInstance=v,s.initSettings=Io,s.isTabSchema=I,Object.defineProperty(s,"__esModule",{value:!0})});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-settings",
|
|
3
|
-
"version": "6.2.0-
|
|
3
|
+
"version": "6.2.0-cyj.1",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@byteluck-fe/locale-message": "^1.0.8",
|
|
30
|
-
"@byteluck-fe/model-driven-core": "6.2.0-
|
|
31
|
-
"@byteluck-fe/model-driven-shared": "6.2.0-
|
|
30
|
+
"@byteluck-fe/model-driven-core": "6.2.0-cyj.1",
|
|
31
|
+
"@byteluck-fe/model-driven-shared": "6.2.0-cyj.1",
|
|
32
32
|
"tslib": "^2.1.0"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "7823c660b7e662c4b5a34dfa1609b1024b2c2be0"
|
|
35
35
|
}
|