@byteluck-fe/model-driven-settings 2.22.2-beta.7 → 2.23.0-beta.10
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/props/checkbox.js +12 -24
- package/dist/esm/props/custom.js +12 -23
- package/dist/esm/props/input-number.js +12 -26
- package/dist/esm/props/input.js +12 -27
- package/dist/esm/props/radio.js +12 -25
- package/dist/esm/props/select.js +12 -25
- package/dist/esm/props/switch.js +12 -26
- package/dist/esm/props/textarea.js +12 -29
- package/dist/index.umd.js +2 -46
- package/package.json +4 -4
|
@@ -4,6 +4,10 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
+
function _call_super(_this, derived, args) {
|
|
8
|
+
derived = _get_prototype_of(derived);
|
|
9
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
+
}
|
|
7
11
|
function _class_call_check(instance, Constructor) {
|
|
8
12
|
if (!(instance instanceof Constructor)) {
|
|
9
13
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -59,39 +63,23 @@ function _type_of(obj) {
|
|
|
59
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
60
64
|
}
|
|
61
65
|
function _is_native_reflect_construct() {
|
|
62
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
-
if (Reflect.construct.sham) return false;
|
|
64
|
-
if (typeof Proxy === "function") return true;
|
|
65
66
|
try {
|
|
66
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
return
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
function _create_super(Derived) {
|
|
73
|
-
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
-
return function _createSuperInternal() {
|
|
75
|
-
var Super = _get_prototype_of(Derived), result;
|
|
76
|
-
if (hasNativeReflectConstruct) {
|
|
77
|
-
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
-
} else {
|
|
80
|
-
result = Super.apply(this, arguments);
|
|
81
|
-
}
|
|
82
|
-
return _possible_constructor_return(this, result);
|
|
83
|
-
};
|
|
67
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
+
} catch (_) {}
|
|
69
|
+
return (_is_native_reflect_construct = function() {
|
|
70
|
+
return !!result;
|
|
71
|
+
})();
|
|
84
72
|
}
|
|
85
73
|
import { BaseProps } from './base';
|
|
86
74
|
export var CheckboxProps = /*#__PURE__*/ function(BaseProps) {
|
|
87
75
|
"use strict";
|
|
88
76
|
_inherits(CheckboxProps, BaseProps);
|
|
89
|
-
var _super = _create_super(CheckboxProps);
|
|
90
77
|
function CheckboxProps(props) {
|
|
91
78
|
_class_call_check(this, CheckboxProps);
|
|
92
79
|
var _this;
|
|
93
|
-
_this =
|
|
94
|
-
|
|
80
|
+
_this = _call_super(this, CheckboxProps, [
|
|
81
|
+
props
|
|
82
|
+
]), _define_property(_this, "options", void 0);
|
|
95
83
|
var _props_options;
|
|
96
84
|
_this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
|
|
97
85
|
return _this;
|
package/dist/esm/props/custom.js
CHANGED
|
@@ -12,6 +12,10 @@ function _assert_this_initialized(self) {
|
|
|
12
12
|
}
|
|
13
13
|
return self;
|
|
14
14
|
}
|
|
15
|
+
function _call_super(_this, derived, args) {
|
|
16
|
+
derived = _get_prototype_of(derived);
|
|
17
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
18
|
+
}
|
|
15
19
|
function _class_call_check(instance, Constructor) {
|
|
16
20
|
if (!(instance instanceof Constructor)) {
|
|
17
21
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -92,39 +96,24 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
92
96
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
93
97
|
}
|
|
94
98
|
function _is_native_reflect_construct() {
|
|
95
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
96
|
-
if (Reflect.construct.sham) return false;
|
|
97
|
-
if (typeof Proxy === "function") return true;
|
|
98
99
|
try {
|
|
99
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
return
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
function _create_super(Derived) {
|
|
106
|
-
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
107
|
-
return function _createSuperInternal() {
|
|
108
|
-
var Super = _get_prototype_of(Derived), result;
|
|
109
|
-
if (hasNativeReflectConstruct) {
|
|
110
|
-
var NewTarget = _get_prototype_of(this).constructor;
|
|
111
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
112
|
-
} else {
|
|
113
|
-
result = Super.apply(this, arguments);
|
|
114
|
-
}
|
|
115
|
-
return _possible_constructor_return(this, result);
|
|
116
|
-
};
|
|
100
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
101
|
+
} catch (_) {}
|
|
102
|
+
return (_is_native_reflect_construct = function() {
|
|
103
|
+
return !!result;
|
|
104
|
+
})();
|
|
117
105
|
}
|
|
118
106
|
import { isPlainObject } from '@byteluck-fe/model-driven-shared';
|
|
119
107
|
import { BaseProps } from './base';
|
|
120
108
|
export var CustomProps = /*#__PURE__*/ function(BaseProps) {
|
|
121
109
|
"use strict";
|
|
122
110
|
_inherits(CustomProps, BaseProps);
|
|
123
|
-
var _super = _create_super(CustomProps);
|
|
124
111
|
function CustomProps(props) {
|
|
125
112
|
_class_call_check(this, CustomProps);
|
|
126
113
|
var _this;
|
|
127
|
-
_this =
|
|
114
|
+
_this = _call_super(this, CustomProps, [
|
|
115
|
+
props
|
|
116
|
+
]);
|
|
128
117
|
if (isPlainObject(props)) {
|
|
129
118
|
Object.entries(props).forEach(function(param) {
|
|
130
119
|
var _param = _sliced_to_array(param, 2), key = _param[0], value = _param[1];
|
|
@@ -4,6 +4,10 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
+
function _call_super(_this, derived, args) {
|
|
8
|
+
derived = _get_prototype_of(derived);
|
|
9
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
+
}
|
|
7
11
|
function _class_call_check(instance, Constructor) {
|
|
8
12
|
if (!(instance instanceof Constructor)) {
|
|
9
13
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -59,41 +63,23 @@ function _type_of(obj) {
|
|
|
59
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
60
64
|
}
|
|
61
65
|
function _is_native_reflect_construct() {
|
|
62
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
-
if (Reflect.construct.sham) return false;
|
|
64
|
-
if (typeof Proxy === "function") return true;
|
|
65
66
|
try {
|
|
66
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
return
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
function _create_super(Derived) {
|
|
73
|
-
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
-
return function _createSuperInternal() {
|
|
75
|
-
var Super = _get_prototype_of(Derived), result;
|
|
76
|
-
if (hasNativeReflectConstruct) {
|
|
77
|
-
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
-
} else {
|
|
80
|
-
result = Super.apply(this, arguments);
|
|
81
|
-
}
|
|
82
|
-
return _possible_constructor_return(this, result);
|
|
83
|
-
};
|
|
67
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
+
} catch (_) {}
|
|
69
|
+
return (_is_native_reflect_construct = function() {
|
|
70
|
+
return !!result;
|
|
71
|
+
})();
|
|
84
72
|
}
|
|
85
73
|
import { BaseProps } from './base';
|
|
86
74
|
export var InputNumberProps = /*#__PURE__*/ function(BaseProps) {
|
|
87
75
|
"use strict";
|
|
88
76
|
_inherits(InputNumberProps, BaseProps);
|
|
89
|
-
var _super = _create_super(InputNumberProps);
|
|
90
77
|
function InputNumberProps(props) {
|
|
91
78
|
_class_call_check(this, InputNumberProps);
|
|
92
79
|
var _this;
|
|
93
|
-
_this =
|
|
94
|
-
|
|
95
|
-
_define_property(
|
|
96
|
-
_define_property(_assert_this_initialized(_this), "placeholder", void 0);
|
|
80
|
+
_this = _call_super(this, InputNumberProps, [
|
|
81
|
+
props
|
|
82
|
+
]), _define_property(_this, "max", void 0), _define_property(_this, "min", void 0), _define_property(_this, "placeholder", void 0);
|
|
97
83
|
var _props_max;
|
|
98
84
|
_this.max = (_props_max = props === null || props === void 0 ? void 0 : props.max) !== null && _props_max !== void 0 ? _props_max : '';
|
|
99
85
|
var _props_min;
|
package/dist/esm/props/input.js
CHANGED
|
@@ -4,6 +4,10 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
+
function _call_super(_this, derived, args) {
|
|
8
|
+
derived = _get_prototype_of(derived);
|
|
9
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
+
}
|
|
7
11
|
function _class_call_check(instance, Constructor) {
|
|
8
12
|
if (!(instance instanceof Constructor)) {
|
|
9
13
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -59,42 +63,23 @@ function _type_of(obj) {
|
|
|
59
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
60
64
|
}
|
|
61
65
|
function _is_native_reflect_construct() {
|
|
62
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
-
if (Reflect.construct.sham) return false;
|
|
64
|
-
if (typeof Proxy === "function") return true;
|
|
65
66
|
try {
|
|
66
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
return
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
function _create_super(Derived) {
|
|
73
|
-
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
-
return function _createSuperInternal() {
|
|
75
|
-
var Super = _get_prototype_of(Derived), result;
|
|
76
|
-
if (hasNativeReflectConstruct) {
|
|
77
|
-
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
-
} else {
|
|
80
|
-
result = Super.apply(this, arguments);
|
|
81
|
-
}
|
|
82
|
-
return _possible_constructor_return(this, result);
|
|
83
|
-
};
|
|
67
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
+
} catch (_) {}
|
|
69
|
+
return (_is_native_reflect_construct = function() {
|
|
70
|
+
return !!result;
|
|
71
|
+
})();
|
|
84
72
|
}
|
|
85
73
|
import { BaseProps } from './base';
|
|
86
74
|
export var InputProps = /*#__PURE__*/ function(BaseProps) {
|
|
87
75
|
"use strict";
|
|
88
76
|
_inherits(InputProps, BaseProps);
|
|
89
|
-
var _super = _create_super(InputProps);
|
|
90
77
|
function InputProps(props) {
|
|
91
78
|
_class_call_check(this, InputProps);
|
|
92
79
|
var _this;
|
|
93
|
-
_this =
|
|
94
|
-
|
|
95
|
-
_define_property(
|
|
96
|
-
_define_property(_assert_this_initialized(_this), "placeholder", void 0);
|
|
97
|
-
_define_property(_assert_this_initialized(_this), "i18n", void 0);
|
|
80
|
+
_this = _call_super(this, InputProps, [
|
|
81
|
+
props
|
|
82
|
+
]), _define_property(_this, "maxLength", void 0), _define_property(_this, "minLength", void 0), _define_property(_this, "placeholder", void 0), _define_property(_this, "i18n", void 0);
|
|
98
83
|
var _props_maxLength;
|
|
99
84
|
_this.maxLength = (_props_maxLength = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _props_maxLength !== void 0 ? _props_maxLength : '';
|
|
100
85
|
var _props_minLength;
|
package/dist/esm/props/radio.js
CHANGED
|
@@ -4,6 +4,10 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
+
function _call_super(_this, derived, args) {
|
|
8
|
+
derived = _get_prototype_of(derived);
|
|
9
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
+
}
|
|
7
11
|
function _class_call_check(instance, Constructor) {
|
|
8
12
|
if (!(instance instanceof Constructor)) {
|
|
9
13
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -59,40 +63,23 @@ function _type_of(obj) {
|
|
|
59
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
60
64
|
}
|
|
61
65
|
function _is_native_reflect_construct() {
|
|
62
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
-
if (Reflect.construct.sham) return false;
|
|
64
|
-
if (typeof Proxy === "function") return true;
|
|
65
66
|
try {
|
|
66
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
return
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
function _create_super(Derived) {
|
|
73
|
-
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
-
return function _createSuperInternal() {
|
|
75
|
-
var Super = _get_prototype_of(Derived), result;
|
|
76
|
-
if (hasNativeReflectConstruct) {
|
|
77
|
-
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
-
} else {
|
|
80
|
-
result = Super.apply(this, arguments);
|
|
81
|
-
}
|
|
82
|
-
return _possible_constructor_return(this, result);
|
|
83
|
-
};
|
|
67
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
+
} catch (_) {}
|
|
69
|
+
return (_is_native_reflect_construct = function() {
|
|
70
|
+
return !!result;
|
|
71
|
+
})();
|
|
84
72
|
}
|
|
85
73
|
import { BaseProps } from './base';
|
|
86
74
|
export var RadioProps = /*#__PURE__*/ function(BaseProps) {
|
|
87
75
|
"use strict";
|
|
88
76
|
_inherits(RadioProps, BaseProps);
|
|
89
|
-
var _super = _create_super(RadioProps);
|
|
90
77
|
function RadioProps(props) {
|
|
91
78
|
_class_call_check(this, RadioProps);
|
|
92
79
|
var _this;
|
|
93
|
-
_this =
|
|
94
|
-
|
|
95
|
-
_define_property(
|
|
80
|
+
_this = _call_super(this, RadioProps, [
|
|
81
|
+
props
|
|
82
|
+
]), _define_property(_this, "options", void 0), _define_property(_this, "showType", void 0);
|
|
96
83
|
var _props_options;
|
|
97
84
|
_this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
|
|
98
85
|
var _props_showType;
|
package/dist/esm/props/select.js
CHANGED
|
@@ -4,6 +4,10 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
+
function _call_super(_this, derived, args) {
|
|
8
|
+
derived = _get_prototype_of(derived);
|
|
9
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
+
}
|
|
7
11
|
function _class_call_check(instance, Constructor) {
|
|
8
12
|
if (!(instance instanceof Constructor)) {
|
|
9
13
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -59,40 +63,23 @@ function _type_of(obj) {
|
|
|
59
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
60
64
|
}
|
|
61
65
|
function _is_native_reflect_construct() {
|
|
62
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
-
if (Reflect.construct.sham) return false;
|
|
64
|
-
if (typeof Proxy === "function") return true;
|
|
65
66
|
try {
|
|
66
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
return
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
function _create_super(Derived) {
|
|
73
|
-
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
-
return function _createSuperInternal() {
|
|
75
|
-
var Super = _get_prototype_of(Derived), result;
|
|
76
|
-
if (hasNativeReflectConstruct) {
|
|
77
|
-
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
-
} else {
|
|
80
|
-
result = Super.apply(this, arguments);
|
|
81
|
-
}
|
|
82
|
-
return _possible_constructor_return(this, result);
|
|
83
|
-
};
|
|
67
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
+
} catch (_) {}
|
|
69
|
+
return (_is_native_reflect_construct = function() {
|
|
70
|
+
return !!result;
|
|
71
|
+
})();
|
|
84
72
|
}
|
|
85
73
|
import { BaseProps } from './base';
|
|
86
74
|
export var SelectProps = /*#__PURE__*/ function(BaseProps) {
|
|
87
75
|
"use strict";
|
|
88
76
|
_inherits(SelectProps, BaseProps);
|
|
89
|
-
var _super = _create_super(SelectProps);
|
|
90
77
|
function SelectProps(props) {
|
|
91
78
|
_class_call_check(this, SelectProps);
|
|
92
79
|
var _this;
|
|
93
|
-
_this =
|
|
94
|
-
|
|
95
|
-
_define_property(
|
|
80
|
+
_this = _call_super(this, SelectProps, [
|
|
81
|
+
props
|
|
82
|
+
]), _define_property(_this, "placeholder", void 0), _define_property(_this, "options", void 0);
|
|
96
83
|
var _props_placeholder;
|
|
97
84
|
_this.placeholder = (_props_placeholder = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _props_placeholder !== void 0 ? _props_placeholder : '';
|
|
98
85
|
var _props_options;
|
package/dist/esm/props/switch.js
CHANGED
|
@@ -4,6 +4,10 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
+
function _call_super(_this, derived, args) {
|
|
8
|
+
derived = _get_prototype_of(derived);
|
|
9
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
+
}
|
|
7
11
|
function _class_call_check(instance, Constructor) {
|
|
8
12
|
if (!(instance instanceof Constructor)) {
|
|
9
13
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -59,41 +63,23 @@ function _type_of(obj) {
|
|
|
59
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
60
64
|
}
|
|
61
65
|
function _is_native_reflect_construct() {
|
|
62
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
-
if (Reflect.construct.sham) return false;
|
|
64
|
-
if (typeof Proxy === "function") return true;
|
|
65
66
|
try {
|
|
66
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
return
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
function _create_super(Derived) {
|
|
73
|
-
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
-
return function _createSuperInternal() {
|
|
75
|
-
var Super = _get_prototype_of(Derived), result;
|
|
76
|
-
if (hasNativeReflectConstruct) {
|
|
77
|
-
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
-
} else {
|
|
80
|
-
result = Super.apply(this, arguments);
|
|
81
|
-
}
|
|
82
|
-
return _possible_constructor_return(this, result);
|
|
83
|
-
};
|
|
67
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
+
} catch (_) {}
|
|
69
|
+
return (_is_native_reflect_construct = function() {
|
|
70
|
+
return !!result;
|
|
71
|
+
})();
|
|
84
72
|
}
|
|
85
73
|
import { BaseProps } from './base';
|
|
86
74
|
export var SwitchProps = /*#__PURE__*/ function(BaseProps) {
|
|
87
75
|
"use strict";
|
|
88
76
|
_inherits(SwitchProps, BaseProps);
|
|
89
|
-
var _super = _create_super(SwitchProps);
|
|
90
77
|
function SwitchProps(props) {
|
|
91
78
|
_class_call_check(this, SwitchProps);
|
|
92
79
|
var _this;
|
|
93
|
-
_this =
|
|
94
|
-
|
|
95
|
-
_define_property(
|
|
96
|
-
_define_property(_assert_this_initialized(_this), "disabled", void 0);
|
|
80
|
+
_this = _call_super(this, SwitchProps, [
|
|
81
|
+
props
|
|
82
|
+
]), _define_property(_this, "showType", void 0), _define_property(_this, "tips", void 0), _define_property(_this, "disabled", void 0);
|
|
97
83
|
var _props_showType;
|
|
98
84
|
_this.showType = (_props_showType = props === null || props === void 0 ? void 0 : props.showType) !== null && _props_showType !== void 0 ? _props_showType : 'switch';
|
|
99
85
|
var _props_tips;
|
|
@@ -4,6 +4,10 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
+
function _call_super(_this, derived, args) {
|
|
8
|
+
derived = _get_prototype_of(derived);
|
|
9
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
+
}
|
|
7
11
|
function _class_call_check(instance, Constructor) {
|
|
8
12
|
if (!(instance instanceof Constructor)) {
|
|
9
13
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -59,44 +63,23 @@ function _type_of(obj) {
|
|
|
59
63
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
60
64
|
}
|
|
61
65
|
function _is_native_reflect_construct() {
|
|
62
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
-
if (Reflect.construct.sham) return false;
|
|
64
|
-
if (typeof Proxy === "function") return true;
|
|
65
66
|
try {
|
|
66
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
return
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
function _create_super(Derived) {
|
|
73
|
-
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
-
return function _createSuperInternal() {
|
|
75
|
-
var Super = _get_prototype_of(Derived), result;
|
|
76
|
-
if (hasNativeReflectConstruct) {
|
|
77
|
-
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
-
} else {
|
|
80
|
-
result = Super.apply(this, arguments);
|
|
81
|
-
}
|
|
82
|
-
return _possible_constructor_return(this, result);
|
|
83
|
-
};
|
|
67
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
68
|
+
} catch (_) {}
|
|
69
|
+
return (_is_native_reflect_construct = function() {
|
|
70
|
+
return !!result;
|
|
71
|
+
})();
|
|
84
72
|
}
|
|
85
73
|
import { BaseProps } from './base';
|
|
86
74
|
export var TextareaProps = /*#__PURE__*/ function(BaseProps) {
|
|
87
75
|
"use strict";
|
|
88
76
|
_inherits(TextareaProps, BaseProps);
|
|
89
|
-
var _super = _create_super(TextareaProps);
|
|
90
77
|
function TextareaProps(props) {
|
|
91
78
|
_class_call_check(this, TextareaProps);
|
|
92
79
|
var _this;
|
|
93
|
-
_this =
|
|
94
|
-
|
|
95
|
-
_define_property(
|
|
96
|
-
_define_property(_assert_this_initialized(_this), "placeholder", void 0);
|
|
97
|
-
_define_property(_assert_this_initialized(_this), "i18n", void 0);
|
|
98
|
-
_define_property(_assert_this_initialized(_this), "maxRows", void 0);
|
|
99
|
-
_define_property(_assert_this_initialized(_this), "minRows", void 0);
|
|
80
|
+
_this = _call_super(this, TextareaProps, [
|
|
81
|
+
props
|
|
82
|
+
]), _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);
|
|
100
83
|
var _props_maxLength;
|
|
101
84
|
_this.maxLength = (_props_maxLength = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _props_maxLength !== void 0 ? _props_maxLength : '';
|
|
102
85
|
var _props_minLength;
|
package/dist/index.umd.js
CHANGED
|
@@ -1,46 +1,2 @@
|
|
|
1
|
-
var _5=Object.defineProperty,E5=Object.defineProperties;var m5=Object.getOwnPropertyDescriptors;var Ws=Object.getOwnPropertySymbols;var p5=Object.prototype.hasOwnProperty,h5=Object.prototype.propertyIsEnumerable;var Hs=(z,ne,Q)=>ne in z?_5(z,ne,{enumerable:!0,configurable:!0,writable:!0,value:Q}):z[ne]=Q,yt=(z,ne)=>{for(var Q in ne||(ne={}))p5.call(ne,Q)&&Hs(z,Q,ne[Q]);if(Ws)for(var Q of Ws(ne))h5.call(ne,Q)&&Hs(z,Q,ne[Q]);return z},Rt=(z,ne)=>E5(z,m5(ne));var mn=(z,ne,Q)=>new Promise((zn,pn)=>{var Qn=Me=>{try{wt(Q.next(Me))}catch(Mt){pn(Mt)}},Zn=Me=>{try{wt(Q.throw(Me))}catch(Mt){pn(Mt)}},wt=Me=>Me.done?zn(Me.value):Promise.resolve(Me.value).then(Qn,Zn);wt((Q=Q.apply(z,ne)).next())});(function(z,ne){typeof exports=="object"&&typeof module!="undefined"?ne(exports):typeof define=="function"&&define.amd?define(["exports"],ne):(z=typeof globalThis!="undefined"?globalThis:z||self,ne(z.modelDrivenSettings={}))})(this,function(z){"use strict";function ne(e){return e}class Q{constructor(t){var n,u,a;this.visible=(n=t==null?void 0:t.visible)!=null?n:!0,this.expression=(u=t==null?void 0:t.expression)!=null?u:!1,this.updateParent=(a=t==null?void 0:t.updateParent)!=null?a:!1}get isAtomicComponent(){return!0}}var zn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",pn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Qn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Zn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",wt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Me="{caption}\u5FC5\u586B",Mt="\u8BF7\u8F93\u5165\u6807\u9898",Gs="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",js="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Ks="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Xs="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",qs="\u8BF7\u7ED1\u5B9A\u8868\u5355",Js="\u8BF7\u7ED1\u5B9A\u5217\u8868",zs="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Qs="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Zs="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Ys="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",eo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",to="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",no="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",uo="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ro="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",ao="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",so="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",oo="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",io="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",lo="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",co="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",fo="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",_o="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Eo="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",mo="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",po="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",ho="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",vo="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",go="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",bo="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Co="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Fo="\u8BF7\u9009\u62E9\u7701",Ao="\u8BF7\u9009\u62E9\u5E02",No="\u8BF7\u9009\u62E9\u533A",Do="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Io="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",So="\u8BF7\u8F93\u5165\u5217\u5BBD",Bo="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Oo="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",To="\u8BF7\u9009\u62E9\u63A7\u4EF6",Lo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",yo="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Ro="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",wo="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Mo="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",$o="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Po="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ko="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Vo="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Uo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",xo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Wo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ho="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Go="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",jo="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ko="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Xo="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",qo="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Jo="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",zo="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Qo="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Zo="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Yo="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",ei="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",ti="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",ni="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",ui="\u6279\u91CF\u5220\u9664",ri="\u6279\u91CF\u6253\u5370",ai="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",si="\u6309\u94AE",oi="\u521B\u5EFA\u5355\u636E",ii="\u4EEA\u8868\u76D8",li="\u5206\u5272\u7EBF",ci="\u5BFC\u51FA",fi="\u8868\u5355\u64CD\u4F5C",di="\u5BFC\u5165",_i="\u53D1\u7968\u8BC6\u522B",Ei="\u94FE\u63A5",mi="\u5217\u8868\u9009\u62E9",pi="\u5217\u8868\u89C6\u56FE",hi="\u64CD\u4F5C\u6309\u94AE",vi="\u5206\u9875",gi="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",bi="\u8BF4\u660E\u6587\u5B57",Ci="\u6587\u5B57\u8BC6\u522B",Fi="\u6807\u9898\u7EC4\u4EF6",Ai="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Ni="\u6570\u7EC4",Di="\u81EA\u52A8\u7F16\u53F7",Ii="\u81EA\u5B9A\u4E49",Si="\u6570\u503C",Bi="\u90E8\u95E8",Oi="\u4EBA\u5458",Ti="\u9644\u4EF6",Li="\u56FE\u7247",yi="\u5730\u5740",Ri="\u64CD\u4F5C",wi="\u5E8F\u53F7",Mi="\u4EBA\u5458",$i="\u957F\u6587\u672C",Pi="\u65E5\u671F\u533A\u95F4",ki="\u65E5\u671F",Vi="\u77ED\u6587\u672C",Ui="\u6362\u884C\u5BB9\u5668Wrap",xi="\u8868\u683C",Wi="\u660E\u7EC6\u5B50\u8868",Hi="\u5730\u5740",Gi="\u91D1\u989D",ji="\u8BA1\u7B97\u516C\u5F0F",Ki="\u591A\u9009",Xi="\u7535\u5B50\u7B7E\u7AE0",qi="\u5355\u884C\u6587\u672C",Ji="\u6570\u5B57",zi="\u4E1A\u52A1\u7EC4\u7EC7",Qi="\u5355\u9009",Zi="\u5BCC\u6587\u672C",Yi="\u8BC4\u5206",el="\u6570\u5B57\u533A\u95F4",tl="\u4E0B\u62C9\u5355\u9009",nl="\u4E0B\u62C9\u591A\u9009",ul="\u5173\u8054\u5355\u9009",rl="\u591A\u884C\u6587\u672C",al="\u6811",sl="Vue\u5BB9\u5668",ol="Vue\u9875\u9762",il="\u5728\u7EBF\u6587\u6863",ll="\u6309\u94AE\u64CD\u4F5C\u680F",cl="\u9AD8\u7EA7\u5BB9\u5668",fl="\u5206\u7EC4",dl="\u6805\u683C\u5217",_l="\u6570\u636E\u5BB9\u5668",El="\u753B\u5E03",ml="\u6362\u884C\u5BB9\u5668",pl="\u6805\u683C\u7B49\u5206\u884C",hl="\u5217\u8868\u5BB9\u5668",vl="\u81EA\u7531\u9875\u9762",gl="\u5B9A\u4F4D\u5B50\u5BB9\u5668",bl="\u5B9A\u4F4D\u5BB9\u5668",Cl="\u6805\u683C\u5E03\u5C40",Fl="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Al="\u660E\u7EC6\u5B50\u8868\u884C",Nl="\u6807\u7B7E\u9875",Dl="\u6807\u7B7E\u5355\u5143",Il="\u5DE5\u5177\u680F",Sl="\u6279\u91CF\u63D0\u4EA4",Bl="\u5BFC\u51FA\u8BB0\u5F55",Ol="\u5217\u8868\u89C6\u56FE",Tl="\u7ED3\u675F\u65F6\u95F4",Ll="\u5F00\u59CB\u65F6\u95F4",yl="\u5355\u4F4D",Rl="\u7ED3\u679C",wl="\u5E01\u79CD",Ml="\u7ED3\u675F\u65E5\u671F",$l="\u5F00\u59CB\u65E5\u671F",Pl="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",kl="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",Vl="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",Ul="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",xl="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",Wl="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",Hl="\u8BF7\u9009\u62E9",Gl="\u8BF7\u9009\u62E9\u7EC4\u7EC7",jl="\u8BF7\u9009\u62E9\u90E8\u95E8",Kl="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",Xl="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",ql="\u8BF7\u9009\u62E9\u5730\u5740",Jl="\u5F39\u7A97\u786E\u8BA4\u65F6",zl="\u6807\u7B7E\u9875\u5207\u6362\u65F6",Ql="\u884C\u9009\u4E2D\u65F6",Zl="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",Yl="\u884C\u5220\u9664\u524D",ec="\u884C\u70B9\u51FB\u65F6",tc="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",nc="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",uc="\u91CD\u547D\u540D\u65F6",rc="\u4FDD\u5B58\u6587\u4EF6\u65F6",ac="\u6253\u5F00\u6587\u4EF6\u65F6",sc="\u83B7\u53D6\u7126\u70B9\u65F6",oc="\u5931\u53BB\u7126\u70B9\u65F6",ic="\u7528\u6237\u8F93\u5165\u65F6",lc="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",cc="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",fc="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",dc="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",_c="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Ec="\u641C\u7D22\u65F6",mc="\u503C\u53D1\u751F\u53D8\u5316\u65F6",pc="\u6267\u884C\u5B8C\u6210\u65F6",hc="\u70B9\u51FB\u65F6",vc="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",gc="\u8BF7\u8F93\u5165\u65E5\u671F",bc="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Cc="\u8BF7\u8F93\u5165",Fc="\u9ED8\u8BA4\u6A21\u7248",Ac="\u5DE6\u53F3\u5E03\u5C40",Nc="\u4E0A\u4E0B\u5E03\u5C40",Dc="\u53EA\u8BFB",Ic="\u5FC5\u586B",Sc="\u63D0\u793A\u6587\u5B57",Bc="\u9690\u85CF\u6807\u9898",Oc="\u6807\u9898\u5FC5\u586B",Tc="\u7EC4\u7EC7\u5F62\u6001",Lc="\u4E1A\u52A1\u7C7B\u578B",yc="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Rc="\u9690\u85CF",wc="\u6D41\u7A0B\u72B6\u6001",Mc="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",$c="\u5220\u9664",Pc="\u7F16\u8F91",kc="\u67E5\u770B",Vc="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",Uc="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",xc="\u5145\u6EE1\u6574\u884C",Wc={isNotNumber:zn,isNotString:pn,isNotObject:Qn,isNotArray:Zn,isNotBoolean:wt,runtimeRequired:Me,pleaseEnterCaption:Mt,pleaseEnterCaptionTip:Gs,pleaseEnterRowCaption:js,pleaseEnterPlaceholder:Ks,pleaseEnterFieldCode:Xs,pleaseEnterForm:qs,pleaseEnterList:Js,pleaseEnterProcess:zs,pleaseEnterLabel:Qs,pleaseEnterValue:Zs,bizKeyNotBindFiled:Ys,pleaseSelectOneField:eo,pleaseEnterNumberRange:to,pleaseEnterAValueGreaterThanMin:no,pleaseEnterAValueLessThanMax:uo,numberRangeSetError:ro,stringRangeError:ao,attachmentMaxSize:so,pleaseEnterTotalScoreSetting:oo,theTotalScoreMustNotBeLessThan1:io,scoreDefaultValueRange:lo,attachmentLimitError:co,PleaseReselectTheOptionalQuantity:fo,TheMaximumLengthIsGreaterThanTheMinimumLength:_o,TheMinimumLengthIsGreaterThanTheMaximumLength:Eo,PleaseSelectTheCorrectOptionSettings:mo,optionIdIsRepeat:po,optionIsRequired:ho,pleaseEnterDataCode:vo,pleaseEnterValueFieldCode:go,pleaseEnterSvcCode:bo,pleaseBindAtLeastOneDisplayValue:Co,pleaseSelectProvince:Fo,pleaseSelectCity:Ao,pleaseSelectDistrict:No,limitRowsCannotBeLessThan0:Do,TheNumberOfRowsCannotBeLessThanMinRows:Io,pleaseEnterColumnWidth:So,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Bo,pleaseCompleteAllRulesAndConditions:Oo,pleaseSelectControl:To,pleaseSelectAtLeastOneColumn:Lo,pleaseSelectFillBackMode:yo,pleaseSelectDashboard:Ro,rootNodeIsRequired:wo,theViewNameCannotBeEmpty:Mo,pleaseSelectOcrType:$o,pleaseSelectAtLeastOneFieldToFillIn:Po,pleaseChooseAtLeastOne:ko,pleaseEnterButtonContent:Vo,pleaseEnterDataCodeInDataSetting:Uo,pleaseEnterValueFieldCodeInDataSetting:xo,pleaseEnterSvcCodeInDataSetting:Wo,pleaseBindAtLeastOneDisplayValueInDataSetting:Ho,rootNodeIsRequiredInDataSetting:Go,pleaseEnterMaxHeight:jo,pleaseEnterWatermark:Ko,pleaseEnterFileName:Xo,pleaseUploadAtLeastOnePrintTemplate:qo,pleaseAssignBusiness:Jo,pleaseAssignExternal:zo,pleaseEnterAliasCode:Qo,pleaseSelectDataCode:Zo,pleaseSelectSvcCode:Yo,pleaseSelectJoinFieldCode:ei,pleaseSelectMainFieldCode:ti,pleaseSelectSortFieldCode:ni,batchDeleteButton:ui,batchPrintListButton:ri,batchPrintRecordList:ai,button:si,createFormListButton:oi,dashboard:ii,divider:li,exportListButton:ci,formSelectButton:fi,importRecordListButton:di,invoiceCheckButton:_i,link:Ei,listSelectButton:mi,ListViewSelect:pi,operationButton:hi,pagination:vi,submissionRecordListButton:gi,text:bi,textOcrButton:Ci,title:Fi,approvalStatusColumn:Ai,array:Ni,autoNumber:Di,custom:Ii,decimal:Si,department:Bi,employee:Oi,file:Ti,image:Li,location:yi,operation:Ri,order:wi,people:Mi,long:$i,timescope:Pi,timestamp:ki,varchar:Vi,gridLayoutWrap:Ui,gridTable:xi,subTable:Wi,address:Hi,amount:Gi,calc:ji,checkBox:Ki,electronicSignature:Xi,input:qi,number:Ji,organizationSelection:zi,radio:Qi,richText:Zi,score:Yi,searchNumberRange:el,select:tl,selectMultiple:nl,selectRelation:ul,textarea:rl,tree:al,vueFormItem:sl,vuePage:ol,WPS:il,actionBar:ll,advancedContainer:cl,cardGroup:fl,col:dl,dataView:_l,grid:El,gridLayoutContainer:ml,gridRow:pl,listView:hl,page:vl,position:gl,positioningContainer:bl,row:Cl,subtableColumn:Fl,subtableRow:Al,tab:Nl,tabPane:Dl,toolbox:Il,batchSubmissionListButton:Sl,exportRecordListButton:Bl,listViewSelect:Ol,endTime:Tl,startTime:Ll,unit:yl,result:Rl,currency:wl,endDate:Ml,startDate:$l,pleaseSelectCompanyName:Pl,pleaseSelectPhoneOrEmail:kl,pleaseSelectSignType:Vl,pleaseSelectSigner:Ul,pleaseSelectOnlyOne:xl,pleaseSelectSignFile:Wl,pleaseSelect:Hl,pleaseSelectOrg:Gl,pleaseSelectDept:jl,pleaseSelectEndDate:Kl,pleaseSelectStartDate:Xl,pleaseChooseAddress:ql,modalConfirm:Jl,tabChange:zl,rowSelected:Ql,listDataImport:Zl,rowDelete:Yl,rowClick:ec,cellRender:tc,onClickBtn:nc,rename:uc,onSaveFile:rc,onOpenFile:ac,onFocus:sc,onBlur:oc,onInput:ic,listDataAdd:lc,listDataDelete:cc,listDataBack:fc,listDataCreate:dc,listDataChange:_c,search:Ec,valueChange:mc,fibished:pc,click:hc,pleaseEnterNameorEmail:vc,pleaseEnterDate:gc,pleaseEnterAutonumber:bc,pleaseEnter:Cc,defaultTemplate:Fc,left:Ac,top:Nc,default:"\u666E\u901A",readonly:Dc,required:Ic,textTip:Sc,hideCaption:Bc,titleRequired:Oc,organizationalForm:Tc,businessType:Lc,deleteConfirm:yc,hide:Rc,processStatus:wc,approvedDocuments:Mc,delete:$c,edit:Pc,view:kc,loadCtrlErrorTip:Vc,loadCtrlError:Uc,fullLine:xc},Hc="Please enter a number",Gc="Please enter a string",jc="Please enter an object",Kc="Please enter an array",Xc="Please enter a boolean",qc="{caption} Required",Jc="Please enter the title",zc="Please enter the bubble prompt",Qc="Please enter the row title",Zc="Please enter the prompt text",Yc="Please bind data items",ef="Please bind the form",tf="Please bind the list",nf="Please bind the process",uf="Please enter the displayed value",rf="Please enter the stored value",af="The document number is not bound to the data item",sf="Please select at least one display field",of="Please enter a value greater than or equal to {min} and less than or equal to {max}",lf="Please enter a value greater than or equal to {min}",cf="Please enter a value less than or equal to {max}",ff="The value range is set incorrectly",df="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",_f="The attachment size must be between 0MB and 1000MB",Ef="Please fill in the total score setting",mf="The total score cannot be less than 1",pf="The default value must be between {min} and {max}",hf="The number of attachment uploads exceeds the limit",vf="Please re-select the optional quantity",gf="The maximum length of the control must be greater than the minimum length",bf="The minimum length of the control must be less than the maximum length",Cf="Please select the correct option setting",Ff="Option ID cannot be repeated",Af="Please enter at least one option",Nf="Please bind the data source",Df="Please bind the stored value",If="Please bind the service",Sf="At least one display value must be bound",Bf="Please select a province",Of="Please select a city",Tf="Please select a district",Lf="The minimum number of lines to fill in cannot be less than 0",yf="The number of rows cannot be less than {min} rows",Rf="Please enter the column width",wf="Please set the logical relationship of all rule conditions",Mf="Please complete all rules and conditions",$f="please select control",Pf="Please select the dashboard",kf="View name cannot be empty",Vf="Please select recognition type",Uf="Please select at least one field to fill in",xf="Please select at least one",Wf="Please enter the button title",Hf="Please bind the business model in the data settings",Gf="Please bind storage values in data settings",jf="Please bind the service in the data settings",Kf="Please bind at least one display value in the data settings",Xf="Please select the root node in the data settings",qf="Please enter the maximum height",Jf="The input content cannot be empty",zf="Watermark cannot be empty",Qf="File name cannot be empty",Zf="Please upload at least one printing template!\uFF01",Yf="Please select a specific business department",ed="Please select a specified external organization",td="Please enter a sub table alias",nd="Please select the associated table to set the business model",ud="Please select the association table to set the binding service",rd="Select associated sub table fields",ad="Please select the associated main table field",sd="Please select the sort field",od="\u6279\u91CF\u5220\u9664",id="\u6279\u91CF\u6253\u5370",ld="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",cd="\u6309\u94AE",fd="\u521B\u5EFA\u5355\u636E",dd="\u4EEA\u8868\u76D8",_d="\u5206\u5272\u7EBF",Ed="\u5BFC\u51FA",md="\u8868\u5355\u64CD\u4F5C",pd="\u5BFC\u5165",hd="\u53D1\u7968\u8BC6\u522B",vd="\u94FE\u63A5",gd="\u5217\u8868\u9009\u62E9",bd="\u5217\u8868\u89C6\u56FE",Cd="\u64CD\u4F5C\u6309\u94AE",Fd="\u5206\u9875",Ad="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Nd="\u8BF4\u660E\u6587\u5B57",Dd="\u6587\u5B57\u8BC6\u522B",Id="\u6807\u9898\u7EC4\u4EF6",Sd="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Bd="\u6570\u7EC4",Od="\u81EA\u52A8\u7F16\u53F7",Td="\u81EA\u5B9A\u4E49",Ld="\u6570\u503C",yd="\u90E8\u95E8",Rd="\u4EBA\u5458",wd="\u9644\u4EF6",Md="\u56FE\u7247",$d="\u5730\u5740",Pd="\u64CD\u4F5C",kd="\u5E8F\u53F7",Vd="\u4EBA\u5458",Ud="\u957F\u6587\u672C",xd="\u65E5\u671F\u533A\u95F4",Wd="\u65E5\u671F",Hd="\u77ED\u6587\u672C",Gd="\u6362\u884C\u5BB9\u5668Wrap",jd="\u8868\u683C",Kd="\u660E\u7EC6\u5B50\u8868",Xd="\u5730\u5740",qd="\u91D1\u989D",Jd="\u8BA1\u7B97\u516C\u5F0F",zd="\u591A\u9009",Qd="\u7535\u5B50\u7B7E\u7AE0",Zd="\u5355\u884C\u6587\u672C",Yd="\u6570\u5B57",e_="\u4E1A\u52A1\u7EC4\u7EC7",t_="\u5355\u9009",n_="\u5BCC\u6587\u672C",u_="\u8BC4\u5206",r_="\u6570\u5B57\u533A\u95F4",a_="\u4E0B\u62C9\u5355\u9009",s_="\u4E0B\u62C9\u591A\u9009",o_="\u5173\u8054\u5355\u9009",i_="\u591A\u884C\u6587\u672C",l_="\u6811",c_="Vue\u5BB9\u5668",f_="Vue\u9875\u9762",d_="\u5728\u7EBF\u6587\u6863",__="\u6309\u94AE\u64CD\u4F5C\u680F",E_="\u9AD8\u7EA7\u5BB9\u5668",m_="\u5206\u7EC4",p_="\u6805\u683C\u5217",h_="\u6570\u636E\u5BB9\u5668",v_="\u753B\u5E03",g_="\u6362\u884C\u5BB9\u5668",b_="\u6805\u683C\u7B49\u5206\u884C",C_="\u5217\u8868\u5BB9\u5668",F_="\u81EA\u7531\u9875\u9762",A_="\u5B9A\u4F4D\u5B50\u5BB9\u5668",N_="\u5B9A\u4F4D\u5BB9\u5668",D_="\u6805\u683C\u5E03\u5C40",I_="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",S_="\u660E\u7EC6\u5B50\u8868\u884C",B_="\u6807\u7B7E\u9875",O_="\u6807\u7B7E\u5355\u5143",T_="\u5DE5\u5177\u680F",L_="\u6279\u91CF\u63D0\u4EA4",y_="\u5BFC\u51FA\u8BB0\u5F55",R_="\u5217\u8868\u89C6\u56FE",w_={isNotNumber:Hc,isNotString:Gc,isNotObject:jc,isNotArray:Kc,isNotBoolean:Xc,runtimeRequired:qc,pleaseEnterCaption:Jc,pleaseEnterCaptionTip:zc,pleaseEnterRowCaption:Qc,pleaseEnterPlaceholder:Zc,pleaseEnterFieldCode:Yc,pleaseEnterForm:ef,pleaseEnterList:tf,pleaseEnterProcess:nf,pleaseEnterLabel:uf,pleaseEnterValue:rf,bizKeyNotBindFiled:af,pleaseSelectOneField:sf,pleaseEnterNumberRange:of,pleaseEnterAValueGreaterThanMin:lf,pleaseEnterAValueLessThanMax:cf,numberRangeSetError:ff,stringRangeError:df,attachmentMaxSize:_f,pleaseEnterTotalScoreSetting:Ef,theTotalScoreMustNotBeLessThan1:mf,scoreDefaultValueRange:pf,attachmentLimitError:hf,PleaseReselectTheOptionalQuantity:vf,TheMaximumLengthIsGreaterThanTheMinimumLength:gf,TheMinimumLengthIsGreaterThanTheMaximumLength:bf,PleaseSelectTheCorrectOptionSettings:Cf,optionIdIsRepeat:Ff,optionIsRequired:Af,pleaseEnterDataCode:Nf,pleaseEnterValueFieldCode:Df,pleaseEnterSvcCode:If,pleaseBindAtLeastOneDisplayValue:Sf,pleaseSelectProvince:Bf,pleaseSelectCity:Of,pleaseSelectDistrict:Tf,limitRowsCannotBeLessThan0:Lf,TheNumberOfRowsCannotBeLessThanMinRows:yf,pleaseEnterColumnWidth:Rf,pleaseSetTheLogicalRelationshipOfAllRuleConditions:wf,pleaseCompleteAllRulesAndConditions:Mf,pleaseSelectControl:$f,pleaseSelectDashboard:Pf,theViewNameCannotBeEmpty:kf,pleaseSelectOcrType:Vf,pleaseSelectAtLeastOneFieldToFillIn:Uf,pleaseChooseAtLeastOne:xf,pleaseEnterButtonContent:Wf,pleaseEnterDataCodeInDataSetting:Hf,pleaseEnterValueFieldCodeInDataSetting:Gf,pleaseEnterSvcCodeInDataSetting:jf,pleaseBindAtLeastOneDisplayValueInDataSetting:Kf,rootNodeIsRequiredInDataSetting:Xf,pleaseEnterMaxHeight:qf,pleaseEnter:Jf,pleaseEnterWatermark:zf,pleaseEnterFileName:Qf,pleaseUploadAtLeastOnePrintTemplate:Zf,pleaseAssignBusiness:Yf,pleaseAssignExternal:ed,pleaseEnterAliasCode:td,pleaseSelectDataCode:nd,pleaseSelectSvcCode:ud,pleaseSelectJoinFieldCode:rd,pleaseSelectMainFieldCode:ad,pleaseSelectSortFieldCode:sd,batchDeleteButton:od,batchPrintListButton:id,batchPrintRecordList:ld,button:cd,createFormListButton:fd,dashboard:dd,divider:_d,exportListButton:Ed,formSelectButton:md,importRecordListButton:pd,invoiceCheckButton:hd,link:vd,listSelectButton:gd,ListViewSelect:bd,operationButton:Cd,pagination:Fd,submissionRecordListButton:Ad,text:Nd,textOcrButton:Dd,title:Id,approvalStatusColumn:Sd,array:Bd,autoNumber:Od,custom:Td,decimal:Ld,department:yd,employee:Rd,file:wd,image:Md,location:$d,operation:Pd,order:kd,people:Vd,long:Ud,timescope:xd,timestamp:Wd,varchar:Hd,gridLayoutWrap:Gd,gridTable:jd,subTable:Kd,address:Xd,amount:qd,calc:Jd,checkBox:zd,electronicSignature:Qd,input:Zd,number:Yd,organizationSelection:e_,radio:t_,richText:n_,score:u_,searchNumberRange:r_,select:a_,selectMultiple:s_,selectRelation:o_,textarea:i_,tree:l_,vueFormItem:c_,vuePage:f_,WPS:d_,actionBar:__,advancedContainer:E_,cardGroup:m_,col:p_,dataView:h_,grid:v_,gridLayoutContainer:g_,gridRow:b_,listView:C_,page:F_,position:A_,positioningContainer:N_,row:D_,subtableColumn:I_,subtableRow:S_,tab:B_,tabPane:O_,toolbox:T_,batchSubmissionListButton:L_,exportRecordListButton:y_,listViewSelect:R_},M_="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$_="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",P_="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",k_="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",V_="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",U_="{caption}\u5FC5\u9808",x_="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",W_="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",H_="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",G_="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",j_="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",K_="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",X_="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",q_="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",J_="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",z_="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Q_="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Z_="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Y_="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",eE="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",tE="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",nE="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",uE="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",rE="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",aE="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",sE="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",oE="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",iE="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",lE="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",cE="\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",fE="\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",dE="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",_E="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",EE="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",mE="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",pE="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",hE="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",vE="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",gE="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",bE="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",CE="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",FE="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",AE="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",NE="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",DE="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",IE="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",SE="please select control",BE="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",OE="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",TE="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",LE="\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",yE="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",RE="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wE="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ME="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",$E="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",PE="\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",kE="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",VE="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",UE="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",xE="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",WE="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",HE="\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",GE="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",jE="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",KE="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",XE="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",qE="\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",JE="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",zE="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",QE="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ZE="\u6279\u91CF\u5220\u9664",YE="\u6279\u91CF\u6253\u5370",em="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",tm="\u6309\u94AE",nm="\u521B\u5EFA\u5355\u636E",um="\u4EEA\u8868\u76D8",rm="\u5206\u5272\u7EBF",am="\u5BFC\u51FA",sm="\u8868\u5355\u64CD\u4F5C",om="\u5BFC\u5165",im="\u53D1\u7968\u8BC6\u522B",lm="\u94FE\u63A5",cm="\u5217\u8868\u9009\u62E9",fm="\u5217\u8868\u89C6\u56FE",dm="\u64CD\u4F5C\u6309\u94AE",_m="\u5206\u9875",Em="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",mm="\u8BF4\u660E\u6587\u5B57",pm="\u6587\u5B57\u8BC6\u522B",hm="\u6807\u9898\u7EC4\u4EF6",vm="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",gm="\u6570\u7EC4",bm="\u81EA\u52A8\u7F16\u53F7",Cm="\u81EA\u5B9A\u4E49",Fm="\u6570\u503C",Am="\u90E8\u95E8",Nm="\u4EBA\u5458",Dm="\u9644\u4EF6",Im="\u56FE\u7247",Sm="\u5730\u5740",Bm="\u64CD\u4F5C",Om="\u5E8F\u53F7",Tm="\u4EBA\u5458",Lm="\u957F\u6587\u672C",ym="\u65E5\u671F\u533A\u95F4",Rm="\u65E5\u671F",wm="\u77ED\u6587\u672C",Mm="\u6362\u884C\u5BB9\u5668Wrap",$m="\u8868\u683C",Pm="\u660E\u7EC6\u5B50\u8868",km="\u5730\u5740",Vm="\u91D1\u989D",Um="\u8BA1\u7B97\u516C\u5F0F",xm="\u591A\u9009",Wm="\u7535\u5B50\u7B7E\u7AE0",Hm="\u5355\u884C\u6587\u672C",Gm="\u6570\u5B57",jm="\u4E1A\u52A1\u7EC4\u7EC7",Km="\u5355\u9009",Xm="\u5BCC\u6587\u672C",qm="\u8BC4\u5206",Jm="\u6570\u5B57\u533A\u95F4",zm="\u4E0B\u62C9\u5355\u9009",Qm="\u4E0B\u62C9\u591A\u9009",Zm="\u5173\u8054\u5355\u9009",Ym="\u591A\u884C\u6587\u672C",ep="\u6811",tp="Vue\u5BB9\u5668",np="Vue\u9875\u9762",up="\u5728\u7EBF\u6587\u6863",rp="\u6309\u94AE\u64CD\u4F5C\u680F",ap="\u9AD8\u7EA7\u5BB9\u5668",sp="\u5206\u7EC4",op="\u6805\u683C\u5217",ip="\u6570\u636E\u5BB9\u5668",lp="\u753B\u5E03",cp="\u6362\u884C\u5BB9\u5668",fp="\u6805\u683C\u7B49\u5206\u884C",dp="\u5217\u8868\u5BB9\u5668",_p="\u81EA\u7531\u9875\u9762",Ep="\u5B9A\u4F4D\u5B50\u5BB9\u5668",mp="\u5B9A\u4F4D\u5BB9\u5668",pp="\u6805\u683C\u5E03\u5C40",hp="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",vp="\u660E\u7EC6\u5B50\u8868\u884C",gp="\u6807\u7B7E\u9875",bp="\u6807\u7B7E\u5355\u5143",Cp="\u5DE5\u5177\u680F",Fp="\u6279\u91CF\u63D0\u4EA4",Ap="\u5BFC\u51FA\u8BB0\u5F55",Np="\u5217\u8868\u89C6\u56FE",Dp={isNotNumber:M_,isNotString:$_,isNotObject:P_,isNotArray:k_,isNotBoolean:V_,runtimeRequired:U_,pleaseEnterCaption:x_,pleaseEnterCaptionTip:W_,pleaseEnterRowCaption:H_,pleaseEnterPlaceholder:G_,pleaseEnterFieldCode:j_,pleaseEnterForm:K_,pleaseEnterList:X_,pleaseEnterProcess:q_,pleaseEnterLabel:J_,pleaseEnterValue:z_,bizKeyNotBindFiled:Q_,pleaseSelectOneField:Z_,pleaseEnterNumberRange:Y_,pleaseEnterAValueGreaterThanMin:eE,pleaseEnterAValueLessThanMax:tE,numberRangeSetError:nE,stringRangeError:uE,attachmentMaxSize:rE,pleaseEnterTotalScoreSetting:aE,theTotalScoreMustNotBeLessThan1:sE,scoreDefaultValueRange:oE,attachmentLimitError:iE,PleaseReselectTheOptionalQuantity:lE,TheMaximumLengthIsGreaterThanTheMinimumLength:cE,TheMinimumLengthIsGreaterThanTheMaximumLength:fE,PleaseSelectTheCorrectOptionSettings:dE,optionIdIsRepeat:_E,optionIsRequired:EE,pleaseEnterDataCode:mE,pleaseEnterValueFieldCode:pE,pleaseEnterSvcCode:hE,pleaseBindAtLeastOneDisplayValue:vE,pleaseSelectProvince:gE,pleaseSelectCity:bE,pleaseSelectDistrict:CE,limitRowsCannotBeLessThan0:FE,TheNumberOfRowsCannotBeLessThanMinRows:AE,pleaseEnterColumnWidth:NE,pleaseSetTheLogicalRelationshipOfAllRuleConditions:DE,pleaseCompleteAllRulesAndConditions:IE,pleaseSelectControl:SE,pleaseSelectDashboard:BE,theViewNameCannotBeEmpty:OE,pleaseSelectOcrType:TE,pleaseSelectAtLeastOneFieldToFillIn:LE,pleaseChooseAtLeastOne:yE,pleaseEnterButtonContent:RE,pleaseEnterDataCodeInDataSetting:wE,pleaseEnterValueFieldCodeInDataSetting:ME,pleaseEnterSvcCodeInDataSetting:$E,pleaseBindAtLeastOneDisplayValueInDataSetting:PE,rootNodeIsRequiredInDataSetting:kE,pleaseEnterMaxHeight:VE,pleaseEnter:UE,pleaseEnterWatermark:xE,pleaseEnterFileName:WE,pleaseUploadAtLeastOnePrintTemplate:HE,pleaseAssignBusiness:GE,pleaseAssignExternal:jE,pleaseEnterAliasCode:KE,pleaseSelectDataCode:XE,pleaseSelectSvcCode:qE,pleaseSelectJoinFieldCode:JE,pleaseSelectMainFieldCode:zE,pleaseSelectSortFieldCode:QE,batchDeleteButton:ZE,batchPrintListButton:YE,batchPrintRecordList:em,button:tm,createFormListButton:nm,dashboard:um,divider:rm,exportListButton:am,formSelectButton:sm,importRecordListButton:om,invoiceCheckButton:im,link:lm,listSelectButton:cm,ListViewSelect:fm,operationButton:dm,pagination:_m,submissionRecordListButton:Em,text:mm,textOcrButton:pm,title:hm,approvalStatusColumn:vm,array:gm,autoNumber:bm,custom:Cm,decimal:Fm,department:Am,employee:Nm,file:Dm,image:Im,location:Sm,operation:Bm,order:Om,people:Tm,long:Lm,timescope:ym,timestamp:Rm,varchar:wm,gridLayoutWrap:Mm,gridTable:$m,subTable:Pm,address:km,amount:Vm,calc:Um,checkBox:xm,electronicSignature:Wm,input:Hm,number:Gm,organizationSelection:jm,radio:Km,richText:Xm,score:qm,searchNumberRange:Jm,select:zm,selectMultiple:Qm,selectRelation:Zm,textarea:Ym,tree:ep,vueFormItem:tp,vuePage:np,WPS:up,actionBar:rp,advancedContainer:ap,cardGroup:sp,col:op,dataView:ip,grid:lp,gridLayoutContainer:cp,gridRow:fp,listView:dp,page:_p,position:Ep,positioningContainer:mp,row:pp,subtableColumn:hp,subtableRow:vp,tab:gp,tabPane:bp,toolbox:Cp,batchSubmissionListButton:Fp,exportRecordListButton:Ap,listViewSelect:Np},Ip={zhCN:Wc,enUS:w_,jaJP:Dp},ur;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(ur||(ur={}));var rr;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(rr||(rr={}));var Yn,Sp=(Yn=window.localStorage.getItem("locale"))!==null&&Yn!==void 0?Yn:"zh-CN",Bp=function(){},ar;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(ar||(ar={}));var sr;(function(e){e[e.FORM=0]="FORM",e[e.LIST=1]="LIST",e[e.REPORT=2]="REPORT",e[e.DASHBOARD=3]="DASHBOARD",e[e.VUE=4]="VUE",e[e.FREE_PAGE=5]="FREE_PAGE"})(sr||(sr={}));var or;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.OPERATION_BUTTON="operation-button",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.GRID_LAYOUT_CONTAINER="grid-layout-container",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e.GRID_LAYOUT_WRAP="grid-layout-wrap",e.VUE_PAGE="vue-page"})(or||(or={}));var ir;(function(e){e.SAVE="save",e.DRAFT="draft",e.UNSUBMIT="unsubmit",e.AUDIT="audit",e.UNAUDIT="unaudit",e.CANCEL="cancel",e.FORM_SUBMIT="form_submit"})(ir||(ir={}));var lr;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.LIST="list",e.JSON="json",e.ANY="ANY"})(lr||(lr={}));var cr;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(cr||(cr={}));function Op(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Tp(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function hn(e,t,n){return fr()?hn=Reflect.construct:hn=function(a,r,s){var o=[null];o.push.apply(o,r);var i=Function.bind.apply(a,o),d=new i;return s&&Pt(d,s.prototype),d},hn.apply(null,arguments)}function $t(e){return $t=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},$t(e)}function Lp(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Pt(e,t)}function yp(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Rp(e,t){return t&&(wp(t)==="object"||typeof t=="function")?t:Op(e)}function Pt(e,t){return Pt=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},Pt(e,t)}function wp(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function eu(e){var t=typeof Map=="function"?new Map:void 0;return eu=function(u){if(u===null||!yp(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(u))return t.get(u);t.set(u,a)}function a(){return hn(u,arguments,$t(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Pt(a,u)},eu(e)}function fr(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Mp(e){var t=fr();return function(){var u=$t(e),a;if(t){var r=$t(this).constructor;a=Reflect.construct(u,arguments,r)}else a=u.apply(this,arguments);return Rp(this,a)}}function $p(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Pp=function(e){Lp(n,e);var t=Mp(n);function n(u){Tp(this,n);var a;return a=t.call(this,u),a.name="\u{1F4A5} Driven Error",a.message=u?$p(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return n}(eu(Error));function kp(e){throw new Pp(e)}/*!
|
|
2
|
-
|
|
3
|
-
* (c) 2024 kazuya kawaguchi
|
|
4
|
-
* Released under the MIT License.
|
|
5
|
-
*/const Ne=typeof window!="undefined";let ge,et;if(process.env.NODE_ENV!=="production"){const e=Ne&&window.performance;e&&e.mark&&e.measure&&e.clearMarks&&e.clearMeasures&&(ge=t=>{e.mark(t)},et=(t,n,u)=>{e.measure(t,n,u),e.clearMarks(n),e.clearMarks(u)})}const Vp=/\{([0-9a-zA-Z]+)\}/g;function kt(e,...t){return t.length===1&&x(t[0])&&(t=t[0]),(!t||!t.hasOwnProperty)&&(t={}),e.replace(Vp,(n,u)=>t.hasOwnProperty(u)?t[u]:"")}const De=(e,t=!1)=>t?Symbol.for(e):Symbol(e),Up=(e,t,n)=>xp({l:e,k:t,s:n}),xp=e=>JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029").replace(/\u0027/g,"\\u0027"),ae=e=>typeof e=="number"&&isFinite(e),Wp=e=>mr(e)==="[object Date]",xe=e=>mr(e)==="[object RegExp]",vn=e=>M(e)&&Object.keys(e).length===0,se=Object.assign;let dr;const $e=()=>dr||(dr=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});function _r(e){return e.replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}const Hp=Object.prototype.hasOwnProperty;function gn(e,t){return Hp.call(e,t)}const X=Array.isArray,j=e=>typeof e=="function",O=e=>typeof e=="string",$=e=>typeof e=="boolean",x=e=>e!==null&&typeof e=="object",Gp=e=>x(e)&&j(e.then)&&j(e.catch),Er=Object.prototype.toString,mr=e=>Er.call(e),M=e=>{if(!x(e))return!1;const t=Object.getPrototypeOf(e);return t===null||t.constructor===Object},jp=e=>e==null?"":X(e)||M(e)&&e.toString===Er?JSON.stringify(e,null,2):String(e);function tu(e,t=""){return e.reduce((n,u,a)=>a===0?n+u:n+t+u,"")}const pr=2;function Kp(e,t=0,n=e.length){const u=e.split(/\r?\n/);let a=0;const r=[];for(let s=0;s<u.length;s++)if(a+=u[s].length+1,a>=t){for(let o=s-pr;o<=s+pr||n>a;o++){if(o<0||o>=u.length)continue;const i=o+1;r.push(`${i}${" ".repeat(3-String(i).length)}| ${u[o]}`);const d=u[o].length;if(o===s){const p=t-(a-d)+1,f=Math.max(1,n>a?d-p:n-t);r.push(" | "+" ".repeat(p)+"^".repeat(f))}else if(o>s){if(n>a){const p=Math.max(Math.min(n-a,d),1);r.push(" | "+"^".repeat(p))}a+=d+1}}break}return r.join(`
|
|
6
|
-
`)}function bn(e){let t=e;return()=>++t}function oe(e,t){typeof console!="undefined"&&(console.warn("[intlify] "+e),t&&console.warn(t.stack))}const hr={};function vr(e){hr[e]||(hr[e]=!0,oe(e))}function nu(){const e=new Map;return{events:e,on(n,u){const a=e.get(n);a&&a.push(u)||e.set(n,[u])},off(n,u){const a=e.get(n);a&&a.splice(a.indexOf(u)>>>0,1)},emit(n,u){(e.get(n)||[]).slice().map(a=>a(u)),(e.get("*")||[]).slice().map(a=>a(n,u))}}}const Cn=e=>!x(e)||X(e);function Fn(e,t){if(Cn(e)||Cn(t))throw new Error("Invalid value");const n=[{src:e,des:t}];for(;n.length;){const{src:u,des:a}=n.pop();Object.keys(u).forEach(r=>{Cn(u[r])||Cn(a[r])?a[r]=u[r]:n.push({src:u[r],des:a[r]})})}}/*!
|
|
7
|
-
* message-compiler v9.13.1
|
|
8
|
-
* (c) 2024 kazuya kawaguchi
|
|
9
|
-
* Released under the MIT License.
|
|
10
|
-
*/function Xp(e,t,n){return{line:e,column:t,offset:n}}function An(e,t,n){const u={start:e,end:t};return n!=null&&(u.source=n),u}const Nn={USE_MODULO_SYNTAX:1,__EXTEND_POINT__:2},qp={[Nn.USE_MODULO_SYNTAX]:"Use modulo before '{{0}}'."};function Jp(e,t,...n){const u=process.env.NODE_ENV!=="production"?kt(qp[e]||"",...n||[]):e,a={message:String(u),code:e};return t&&(a.location=t),a}const w={EXPECTED_TOKEN:1,INVALID_TOKEN_IN_PLACEHOLDER:2,UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER:3,UNKNOWN_ESCAPE_SEQUENCE:4,INVALID_UNICODE_ESCAPE_SEQUENCE:5,UNBALANCED_CLOSING_BRACE:6,UNTERMINATED_CLOSING_BRACE:7,EMPTY_PLACEHOLDER:8,NOT_ALLOW_NEST_PLACEHOLDER:9,INVALID_LINKED_FORMAT:10,MUST_HAVE_MESSAGES_IN_PLURAL:11,UNEXPECTED_EMPTY_LINKED_MODIFIER:12,UNEXPECTED_EMPTY_LINKED_KEY:13,UNEXPECTED_LEXICAL_ANALYSIS:14,UNHANDLED_CODEGEN_NODE_TYPE:15,UNHANDLED_MINIFIER_NODE_TYPE:16,__EXTEND_POINT__:17},zp={[w.EXPECTED_TOKEN]:"Expected token: '{0}'",[w.INVALID_TOKEN_IN_PLACEHOLDER]:"Invalid token in placeholder: '{0}'",[w.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER]:"Unterminated single quote in placeholder",[w.UNKNOWN_ESCAPE_SEQUENCE]:"Unknown escape sequence: \\{0}",[w.INVALID_UNICODE_ESCAPE_SEQUENCE]:"Invalid unicode escape sequence: {0}",[w.UNBALANCED_CLOSING_BRACE]:"Unbalanced closing brace",[w.UNTERMINATED_CLOSING_BRACE]:"Unterminated closing brace",[w.EMPTY_PLACEHOLDER]:"Empty placeholder",[w.NOT_ALLOW_NEST_PLACEHOLDER]:"Not allowed nest placeholder",[w.INVALID_LINKED_FORMAT]:"Invalid linked format",[w.MUST_HAVE_MESSAGES_IN_PLURAL]:"Plural must have messages",[w.UNEXPECTED_EMPTY_LINKED_MODIFIER]:"Unexpected empty linked modifier",[w.UNEXPECTED_EMPTY_LINKED_KEY]:"Unexpected empty linked key",[w.UNEXPECTED_LEXICAL_ANALYSIS]:"Unexpected lexical analysis in token: '{0}'",[w.UNHANDLED_CODEGEN_NODE_TYPE]:"unhandled codegen node type: '{0}'",[w.UNHANDLED_MINIFIER_NODE_TYPE]:"unhandled mimifier node type: '{0}'"};function Et(e,t,n={}){const{domain:u,messages:a,args:r}=n,s=process.env.NODE_ENV!=="production"?kt((a||zp)[e]||"",...r||[]):e,o=new SyntaxError(String(s));return o.code=e,t&&(o.location=t),o.domain=u,o}function Qp(e){throw e}const Zp=/<\/?[\w\s="/.':;#-\/]+>/,Yp=e=>Zp.test(e),Pe=" ",e0="\r",de=`
|
|
11
|
-
`,t0=String.fromCharCode(8232),n0=String.fromCharCode(8233);function u0(e){const t=e;let n=0,u=1,a=1,r=0;const s=v=>t[v]===e0&&t[v+1]===de,o=v=>t[v]===de,i=v=>t[v]===n0,d=v=>t[v]===t0,p=v=>s(v)||o(v)||i(v)||d(v),f=()=>n,_=()=>u,N=()=>a,S=()=>r,L=v=>s(v)||i(v)||d(v)?de:t[v],y=()=>L(n),b=()=>L(n+r);function C(){return r=0,p(n)&&(u++,a=0),s(n)&&n++,n++,a++,t[n]}function E(){return s(n+r)&&r++,r++,t[n+r]}function m(){n=0,u=1,a=1,r=0}function A(v=0){r=v}function g(){const v=n+r;for(;v!==n;)C();r=0}return{index:f,line:_,column:N,peekOffset:S,charAt:L,currentChar:y,currentPeek:b,next:C,peek:E,reset:m,resetPeek:A,skipToPeek:g}}const We=void 0,r0=".",gr="'",a0="tokenizer";function s0(e,t={}){const n=t.location!==!1,u=u0(e),a=()=>u.index(),r=()=>Xp(u.line(),u.column(),u.index()),s=r(),o=a(),i={currentType:14,offset:o,startLoc:s,endLoc:s,lastType:14,lastOffset:o,lastStartLoc:s,lastEndLoc:s,braceNest:0,inLinked:!1,text:""},d=()=>i,{onError:p}=t;function f(l,c,F,...R){const ee=d();if(c.column+=F,c.offset+=F,p){const K=n?An(ee.startLoc,c):null,G=Et(l,K,{domain:a0,args:R});p(G)}}function _(l,c,F){l.endLoc=r(),l.currentType=c;const R={type:c};return n&&(R.loc=An(l.startLoc,l.endLoc)),F!=null&&(R.value=F),R}const N=l=>_(l,14);function S(l,c){return l.currentChar()===c?(l.next(),c):(f(w.EXPECTED_TOKEN,r(),0,c),"")}function L(l){let c="";for(;l.currentPeek()===Pe||l.currentPeek()===de;)c+=l.currentPeek(),l.peek();return c}function y(l){const c=L(l);return l.skipToPeek(),c}function b(l){if(l===We)return!1;const c=l.charCodeAt(0);return c>=97&&c<=122||c>=65&&c<=90||c===95}function C(l){if(l===We)return!1;const c=l.charCodeAt(0);return c>=48&&c<=57}function E(l,c){const{currentType:F}=c;if(F!==2)return!1;L(l);const R=b(l.currentPeek());return l.resetPeek(),R}function m(l,c){const{currentType:F}=c;if(F!==2)return!1;L(l);const R=l.currentPeek()==="-"?l.peek():l.currentPeek(),ee=C(R);return l.resetPeek(),ee}function A(l,c){const{currentType:F}=c;if(F!==2)return!1;L(l);const R=l.currentPeek()===gr;return l.resetPeek(),R}function g(l,c){const{currentType:F}=c;if(F!==8)return!1;L(l);const R=l.currentPeek()===".";return l.resetPeek(),R}function v(l,c){const{currentType:F}=c;if(F!==9)return!1;L(l);const R=b(l.currentPeek());return l.resetPeek(),R}function T(l,c){const{currentType:F}=c;if(!(F===8||F===12))return!1;L(l);const R=l.currentPeek()===":";return l.resetPeek(),R}function I(l,c){const{currentType:F}=c;if(F!==10)return!1;const R=()=>{const K=l.currentPeek();return K==="{"?b(l.peek()):K==="@"||K==="%"||K==="|"||K===":"||K==="."||K===Pe||!K?!1:K===de?(l.peek(),R()):U(l,!1)},ee=R();return l.resetPeek(),ee}function J(l){L(l);const c=l.currentPeek()==="|";return l.resetPeek(),c}function be(l){const c=L(l),F=l.currentPeek()==="%"&&l.peek()==="{";return l.resetPeek(),{isModulo:F,hasSpace:c.length>0}}function U(l,c=!0){const F=(ee=!1,K="",G=!1)=>{const h=l.currentPeek();return h==="{"?K==="%"?!1:ee:h==="@"||!h?K==="%"?!0:ee:h==="%"?(l.peek(),F(ee,"%",!0)):h==="|"?K==="%"||G?!0:!(K===Pe||K===de):h===Pe?(l.peek(),F(!0,Pe,G)):h===de?(l.peek(),F(!0,de,G)):!0},R=F();return c&&l.resetPeek(),R}function fe(l,c){const F=l.currentChar();return F===We?We:c(F)?(l.next(),F):null}function Zt(l){const c=l.charCodeAt(0);return c>=97&&c<=122||c>=65&&c<=90||c>=48&&c<=57||c===95||c===36}function Yt(l){return fe(l,Zt)}function we(l){const c=l.charCodeAt(0);return c>=97&&c<=122||c>=65&&c<=90||c>=48&&c<=57||c===95||c===36||c===45}function en(l){return fe(l,we)}function tn(l){const c=l.charCodeAt(0);return c>=48&&c<=57}function nn(l){return fe(l,tn)}function un(l){const c=l.charCodeAt(0);return c>=48&&c<=57||c>=65&&c<=70||c>=97&&c<=102}function rn(l){return fe(l,un)}function Ae(l){let c="",F="";for(;c=nn(l);)F+=c;return F}function Bt(l){y(l);const c=l.currentChar();return c!=="%"&&f(w.EXPECTED_TOKEN,r(),0,c),l.next(),"%"}function Ot(l){let c="";for(;;){const F=l.currentChar();if(F==="{"||F==="}"||F==="@"||F==="|"||!F)break;if(F==="%")if(U(l))c+=F,l.next();else break;else if(F===Pe||F===de)if(U(l))c+=F,l.next();else{if(J(l))break;c+=F,l.next()}else c+=F,l.next()}return c}function an(l){y(l);let c="",F="";for(;c=en(l);)F+=c;return l.currentChar()===We&&f(w.UNTERMINATED_CLOSING_BRACE,r(),0),F}function sn(l){y(l);let c="";return l.currentChar()==="-"?(l.next(),c+=`-${Ae(l)}`):c+=Ae(l),l.currentChar()===We&&f(w.UNTERMINATED_CLOSING_BRACE,r(),0),c}function on(l){return l!==gr&&l!==de}function qn(l){y(l),S(l,"'");let c="",F="";for(;c=fe(l,on);)c==="\\"?F+=ln(l):F+=c;const R=l.currentChar();return R===de||R===We?(f(w.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER,r(),0),R===de&&(l.next(),S(l,"'")),F):(S(l,"'"),F)}function ln(l){const c=l.currentChar();switch(c){case"\\":case"'":return l.next(),`\\${c}`;case"u":return Tt(l,c,4);case"U":return Tt(l,c,6);default:return f(w.UNKNOWN_ESCAPE_SEQUENCE,r(),0,c),""}}function Tt(l,c,F){S(l,c);let R="";for(let ee=0;ee<F;ee++){const K=rn(l);if(!K){f(w.INVALID_UNICODE_ESCAPE_SEQUENCE,r(),0,`\\${c}${R}${l.currentChar()}`);break}R+=K}return`\\${c}${R}`}function cn(l){return l!=="{"&&l!=="}"&&l!==Pe&&l!==de}function fn(l){y(l);let c="",F="";for(;c=fe(l,cn);)F+=c;return F}function dn(l){let c="",F="";for(;c=Yt(l);)F+=c;return F}function B(l){const c=F=>{const R=l.currentChar();return R==="{"||R==="%"||R==="@"||R==="|"||R==="("||R===")"||!R||R===Pe?F:(F+=R,l.next(),c(F))};return c("")}function W(l){y(l);const c=S(l,"|");return y(l),c}function _n(l,c){let F=null;switch(l.currentChar()){case"{":return c.braceNest>=1&&f(w.NOT_ALLOW_NEST_PLACEHOLDER,r(),0),l.next(),F=_(c,2,"{"),y(l),c.braceNest++,F;case"}":return c.braceNest>0&&c.currentType===2&&f(w.EMPTY_PLACEHOLDER,r(),0),l.next(),F=_(c,3,"}"),c.braceNest--,c.braceNest>0&&y(l),c.inLinked&&c.braceNest===0&&(c.inLinked=!1),F;case"@":return c.braceNest>0&&f(w.UNTERMINATED_CLOSING_BRACE,r(),0),F=dt(l,c)||N(c),c.braceNest=0,F;default:{let ee=!0,K=!0,G=!0;if(J(l))return c.braceNest>0&&f(w.UNTERMINATED_CLOSING_BRACE,r(),0),F=_(c,1,W(l)),c.braceNest=0,c.inLinked=!1,F;if(c.braceNest>0&&(c.currentType===5||c.currentType===6||c.currentType===7))return f(w.UNTERMINATED_CLOSING_BRACE,r(),0),c.braceNest=0,En(l,c);if(ee=E(l,c))return F=_(c,5,an(l)),y(l),F;if(K=m(l,c))return F=_(c,6,sn(l)),y(l),F;if(G=A(l,c))return F=_(c,7,qn(l)),y(l),F;if(!ee&&!K&&!G)return F=_(c,13,fn(l)),f(w.INVALID_TOKEN_IN_PLACEHOLDER,r(),0,F.value),y(l),F;break}}return F}function dt(l,c){const{currentType:F}=c;let R=null;const ee=l.currentChar();switch((F===8||F===9||F===12||F===10)&&(ee===de||ee===Pe)&&f(w.INVALID_LINKED_FORMAT,r(),0),ee){case"@":return l.next(),R=_(c,8,"@"),c.inLinked=!0,R;case".":return y(l),l.next(),_(c,9,".");case":":return y(l),l.next(),_(c,10,":");default:return J(l)?(R=_(c,1,W(l)),c.braceNest=0,c.inLinked=!1,R):g(l,c)||T(l,c)?(y(l),dt(l,c)):v(l,c)?(y(l),_(c,12,dn(l))):I(l,c)?(y(l),ee==="{"?_n(l,c)||R:_(c,11,B(l))):(F===8&&f(w.INVALID_LINKED_FORMAT,r(),0),c.braceNest=0,c.inLinked=!1,En(l,c))}}function En(l,c){let F={type:14};if(c.braceNest>0)return _n(l,c)||N(c);if(c.inLinked)return dt(l,c)||N(c);switch(l.currentChar()){case"{":return _n(l,c)||N(c);case"}":return f(w.UNBALANCED_CLOSING_BRACE,r(),0),l.next(),_(c,3,"}");case"@":return dt(l,c)||N(c);default:{if(J(l))return F=_(c,1,W(l)),c.braceNest=0,c.inLinked=!1,F;const{isModulo:ee,hasSpace:K}=be(l);if(ee)return K?_(c,0,Ot(l)):_(c,4,Bt(l));if(U(l))return _(c,0,Ot(l));break}}return F}function nr(){const{currentType:l,offset:c,startLoc:F,endLoc:R}=i;return i.lastType=l,i.lastOffset=c,i.lastStartLoc=F,i.lastEndLoc=R,i.offset=a(),i.startLoc=r(),u.currentChar()===We?_(i,14):En(u,i)}return{nextToken:nr,currentOffset:a,currentPosition:r,context:d}}const o0="parser",i0=/(?:\\\\|\\'|\\u([0-9a-fA-F]{4})|\\U([0-9a-fA-F]{6}))/g;function l0(e,t,n){switch(e){case"\\\\":return"\\";case"\\'":return"'";default:{const u=parseInt(t||n,16);return u<=55295||u>=57344?String.fromCodePoint(u):"\uFFFD"}}}function c0(e={}){const t=e.location!==!1,{onError:n,onWarn:u}=e;function a(E,m,A,g,...v){const T=E.currentPosition();if(T.offset+=g,T.column+=g,n){const I=t?An(A,T):null,J=Et(m,I,{domain:o0,args:v});n(J)}}function r(E,m,A,g,...v){const T=E.currentPosition();if(T.offset+=g,T.column+=g,u){const I=t?An(A,T):null;u(Jp(m,I,v))}}function s(E,m,A){const g={type:E};return t&&(g.start=m,g.end=m,g.loc={start:A,end:A}),g}function o(E,m,A,g){g&&(E.type=g),t&&(E.end=m,E.loc&&(E.loc.end=A))}function i(E,m){const A=E.context(),g=s(3,A.offset,A.startLoc);return g.value=m,o(g,E.currentOffset(),E.currentPosition()),g}function d(E,m){const A=E.context(),{lastOffset:g,lastStartLoc:v}=A,T=s(5,g,v);return T.index=parseInt(m,10),E.nextToken(),o(T,E.currentOffset(),E.currentPosition()),T}function p(E,m,A){const g=E.context(),{lastOffset:v,lastStartLoc:T}=g,I=s(4,v,T);return I.key=m,A===!0&&(I.modulo=!0),E.nextToken(),o(I,E.currentOffset(),E.currentPosition()),I}function f(E,m){const A=E.context(),{lastOffset:g,lastStartLoc:v}=A,T=s(9,g,v);return T.value=m.replace(i0,l0),E.nextToken(),o(T,E.currentOffset(),E.currentPosition()),T}function _(E){const m=E.nextToken(),A=E.context(),{lastOffset:g,lastStartLoc:v}=A,T=s(8,g,v);return m.type!==12?(a(E,w.UNEXPECTED_EMPTY_LINKED_MODIFIER,A.lastStartLoc,0),T.value="",o(T,g,v),{nextConsumeToken:m,node:T}):(m.value==null&&a(E,w.UNEXPECTED_LEXICAL_ANALYSIS,A.lastStartLoc,0,Ie(m)),T.value=m.value||"",o(T,E.currentOffset(),E.currentPosition()),{node:T})}function N(E,m){const A=E.context(),g=s(7,A.offset,A.startLoc);return g.value=m,o(g,E.currentOffset(),E.currentPosition()),g}function S(E){const m=E.context(),A=s(6,m.offset,m.startLoc);let g=E.nextToken();if(g.type===9){const v=_(E);A.modifier=v.node,g=v.nextConsumeToken||E.nextToken()}switch(g.type!==10&&a(E,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(g)),g=E.nextToken(),g.type===2&&(g=E.nextToken()),g.type){case 11:g.value==null&&a(E,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(g)),A.key=N(E,g.value||"");break;case 5:g.value==null&&a(E,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(g)),A.key=p(E,g.value||"");break;case 6:g.value==null&&a(E,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(g)),A.key=d(E,g.value||"");break;case 7:g.value==null&&a(E,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(g)),A.key=f(E,g.value||"");break;default:{a(E,w.UNEXPECTED_EMPTY_LINKED_KEY,m.lastStartLoc,0);const v=E.context(),T=s(7,v.offset,v.startLoc);return T.value="",o(T,v.offset,v.startLoc),A.key=T,o(A,v.offset,v.startLoc),{nextConsumeToken:g,node:A}}}return o(A,E.currentOffset(),E.currentPosition()),{node:A}}function L(E){const m=E.context(),A=m.currentType===1?E.currentOffset():m.offset,g=m.currentType===1?m.endLoc:m.startLoc,v=s(2,A,g);v.items=[];let T=null,I=null;do{const U=T||E.nextToken();switch(T=null,U.type){case 0:U.value==null&&a(E,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(U)),v.items.push(i(E,U.value||""));break;case 6:U.value==null&&a(E,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(U)),v.items.push(d(E,U.value||""));break;case 4:I=!0;break;case 5:U.value==null&&a(E,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(U)),v.items.push(p(E,U.value||"",!!I)),I&&(r(E,Nn.USE_MODULO_SYNTAX,m.lastStartLoc,0,Ie(U)),I=null);break;case 7:U.value==null&&a(E,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(U)),v.items.push(f(E,U.value||""));break;case 8:{const fe=S(E);v.items.push(fe.node),T=fe.nextConsumeToken||null;break}}}while(m.currentType!==14&&m.currentType!==1);const J=m.currentType===1?m.lastOffset:E.currentOffset(),be=m.currentType===1?m.lastEndLoc:E.currentPosition();return o(v,J,be),v}function y(E,m,A,g){const v=E.context();let T=g.items.length===0;const I=s(1,m,A);I.cases=[],I.cases.push(g);do{const J=L(E);T||(T=J.items.length===0),I.cases.push(J)}while(v.currentType!==14);return T&&a(E,w.MUST_HAVE_MESSAGES_IN_PLURAL,A,0),o(I,E.currentOffset(),E.currentPosition()),I}function b(E){const m=E.context(),{offset:A,startLoc:g}=m,v=L(E);return m.currentType===14?v:y(E,A,g,v)}function C(E){const m=s0(E,se({},e)),A=m.context(),g=s(0,A.offset,A.startLoc);return t&&g.loc&&(g.loc.source=E),g.body=b(m),e.onCacheKey&&(g.cacheKey=e.onCacheKey(E)),A.currentType!==14&&a(m,w.UNEXPECTED_LEXICAL_ANALYSIS,A.lastStartLoc,0,E[A.offset]||""),o(g,m.currentOffset(),m.currentPosition()),g}return{parse:C}}function Ie(e){if(e.type===14)return"EOF";const t=(e.value||"").replace(/\r?\n/gu,"\\n");return t.length>10?t.slice(0,9)+"\u2026":t}function f0(e,t={}){const n={ast:e,helpers:new Set};return{context:()=>n,helper:r=>(n.helpers.add(r),r)}}function br(e,t){for(let n=0;n<e.length;n++)uu(e[n],t)}function uu(e,t){switch(e.type){case 1:br(e.cases,t),t.helper("plural");break;case 2:br(e.items,t);break;case 6:{uu(e.key,t),t.helper("linked"),t.helper("type");break}case 5:t.helper("interpolate"),t.helper("list");break;case 4:t.helper("interpolate"),t.helper("named");break}}function d0(e,t={}){const n=f0(e);n.helper("normalize"),e.body&&uu(e.body,n);const u=n.context();e.helpers=Array.from(u.helpers)}function _0(e){const t=e.body;return t.type===2?Cr(t):t.cases.forEach(n=>Cr(n)),e}function Cr(e){if(e.items.length===1){const t=e.items[0];(t.type===3||t.type===9)&&(e.static=t.value,delete t.value)}else{const t=[];for(let n=0;n<e.items.length;n++){const u=e.items[n];if(!(u.type===3||u.type===9)||u.value==null)break;t.push(u.value)}if(t.length===e.items.length){e.static=tu(t);for(let n=0;n<e.items.length;n++){const u=e.items[n];(u.type===3||u.type===9)&&delete u.value}}}}const E0="minifier";function mt(e){switch(e.t=e.type,e.type){case 0:{const t=e;mt(t.body),t.b=t.body,delete t.body;break}case 1:{const t=e,n=t.cases;for(let u=0;u<n.length;u++)mt(n[u]);t.c=n,delete t.cases;break}case 2:{const t=e,n=t.items;for(let u=0;u<n.length;u++)mt(n[u]);t.i=n,delete t.items,t.static&&(t.s=t.static,delete t.static);break}case 3:case 9:case 8:case 7:{const t=e;t.value&&(t.v=t.value,delete t.value);break}case 6:{const t=e;mt(t.key),t.k=t.key,delete t.key,t.modifier&&(mt(t.modifier),t.m=t.modifier,delete t.modifier);break}case 5:{const t=e;t.i=t.index,delete t.index;break}case 4:{const t=e;t.k=t.key,delete t.key;break}default:if(process.env.NODE_ENV!=="production")throw Et(w.UNHANDLED_MINIFIER_NODE_TYPE,null,{domain:E0,args:[e.type]})}delete e.type}const m0="parser";function p0(e,t){const{sourceMap:n,filename:u,breakLineCode:a,needIndent:r}=t,s=t.location!==!1,o={filename:u,code:"",column:1,line:1,offset:0,map:void 0,breakLineCode:a,needIndent:r,indentLevel:0};s&&e.loc&&(o.source=e.loc.source);const i=()=>o;function d(y,b){o.code+=y}function p(y,b=!0){const C=b?a:"";d(r?C+" ".repeat(y):C)}function f(y=!0){const b=++o.indentLevel;y&&p(b)}function _(y=!0){const b=--o.indentLevel;y&&p(b)}function N(){p(o.indentLevel)}return{context:i,push:d,indent:f,deindent:_,newline:N,helper:y=>`_${y}`,needIndent:()=>o.needIndent}}function h0(e,t){const{helper:n}=e;e.push(`${n("linked")}(`),pt(e,t.key),t.modifier?(e.push(", "),pt(e,t.modifier),e.push(", _type")):e.push(", undefined, _type"),e.push(")")}function v0(e,t){const{helper:n,needIndent:u}=e;e.push(`${n("normalize")}([`),e.indent(u());const a=t.items.length;for(let r=0;r<a&&(pt(e,t.items[r]),r!==a-1);r++)e.push(", ");e.deindent(u()),e.push("])")}function g0(e,t){const{helper:n,needIndent:u}=e;if(t.cases.length>1){e.push(`${n("plural")}([`),e.indent(u());const a=t.cases.length;for(let r=0;r<a&&(pt(e,t.cases[r]),r!==a-1);r++)e.push(", ");e.deindent(u()),e.push("])")}}function b0(e,t){t.body?pt(e,t.body):e.push("null")}function pt(e,t){const{helper:n}=e;switch(t.type){case 0:b0(e,t);break;case 1:g0(e,t);break;case 2:v0(e,t);break;case 6:h0(e,t);break;case 8:e.push(JSON.stringify(t.value),t);break;case 7:e.push(JSON.stringify(t.value),t);break;case 5:e.push(`${n("interpolate")}(${n("list")}(${t.index}))`,t);break;case 4:e.push(`${n("interpolate")}(${n("named")}(${JSON.stringify(t.key)}))`,t);break;case 9:e.push(JSON.stringify(t.value),t);break;case 3:e.push(JSON.stringify(t.value),t);break;default:if(process.env.NODE_ENV!=="production")throw Et(w.UNHANDLED_CODEGEN_NODE_TYPE,null,{domain:m0,args:[t.type]})}}const C0=(e,t={})=>{const n=O(t.mode)?t.mode:"normal",u=O(t.filename)?t.filename:"message.intl",a=!!t.sourceMap,r=t.breakLineCode!=null?t.breakLineCode:n==="arrow"?";":`
|
|
12
|
-
`,s=t.needIndent?t.needIndent:n!=="arrow",o=e.helpers||[],i=p0(e,{mode:n,filename:u,sourceMap:a,breakLineCode:r,needIndent:s});i.push(n==="normal"?"function __msg__ (ctx) {":"(ctx) => {"),i.indent(s),o.length>0&&(i.push(`const { ${tu(o.map(f=>`${f}: _${f}`),", ")} } = ctx`),i.newline()),i.push("return "),pt(i,e),i.deindent(s),i.push("}"),delete e.helpers;const{code:d,map:p}=i.context();return{ast:e,code:d,map:p?p.toJSON():void 0}};function F0(e,t={}){const n=se({},t),u=!!n.jit,a=!!n.minify,r=n.optimize==null?!0:n.optimize,o=c0(n).parse(e);return u?(r&&_0(o),a&&mt(o),{ast:o,code:""}):(d0(o,n),C0(o,n))}/*!
|
|
13
|
-
* core-base v9.13.1
|
|
14
|
-
* (c) 2024 kazuya kawaguchi
|
|
15
|
-
* Released under the MIT License.
|
|
16
|
-
*/function A0(){typeof __INTLIFY_PROD_DEVTOOLS__!="boolean"&&($e().__INTLIFY_PROD_DEVTOOLS__=!1),typeof __INTLIFY_JIT_COMPILATION__!="boolean"&&($e().__INTLIFY_JIT_COMPILATION__=!1),typeof __INTLIFY_DROP_MESSAGE_COMPILER__!="boolean"&&($e().__INTLIFY_DROP_MESSAGE_COMPILER__=!1)}const He=[];He[0]={w:[0],i:[3,0],["["]:[4],o:[7]},He[1]={w:[1],["."]:[2],["["]:[4],o:[7]},He[2]={w:[2],i:[3,0],[0]:[3,0]},He[3]={i:[3,0],[0]:[3,0],w:[1,1],["."]:[2,1],["["]:[4,1],o:[7,1]},He[4]={["'"]:[5,0],['"']:[6,0],["["]:[4,2],["]"]:[1,3],o:8,l:[4,0]},He[5]={["'"]:[4,0],o:8,l:[5,0]},He[6]={['"']:[4,0],o:8,l:[6,0]};const N0=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function D0(e){return N0.test(e)}function I0(e){const t=e.charCodeAt(0),n=e.charCodeAt(e.length-1);return t===n&&(t===34||t===39)?e.slice(1,-1):e}function S0(e){if(e==null)return"o";switch(e.charCodeAt(0)){case 91:case 93:case 46:case 34:case 39:return e;case 95:case 36:case 45:return"i";case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"w"}return"i"}function B0(e){const t=e.trim();return e.charAt(0)==="0"&&isNaN(parseInt(e))?!1:D0(t)?I0(t):"*"+t}function O0(e){const t=[];let n=-1,u=0,a=0,r,s,o,i,d,p,f;const _=[];_[0]=()=>{s===void 0?s=o:s+=o},_[1]=()=>{s!==void 0&&(t.push(s),s=void 0)},_[2]=()=>{_[0](),a++},_[3]=()=>{if(a>0)a--,u=4,_[0]();else{if(a=0,s===void 0||(s=B0(s),s===!1))return!1;_[1]()}};function N(){const S=e[n+1];if(u===5&&S==="'"||u===6&&S==='"')return n++,o="\\"+S,_[0](),!0}for(;u!==null;)if(n++,r=e[n],!(r==="\\"&&N())){if(i=S0(r),f=He[u],d=f[i]||f.l||8,d===8||(u=d[0],d[1]!==void 0&&(p=_[d[1]],p&&(o=r,p()===!1))))return;if(u===7)return t}}const Fr=new Map;function T0(e,t){return x(e)?e[t]:null}function L0(e,t){if(!x(e))return null;let n=Fr.get(t);if(n||(n=O0(t),n&&Fr.set(t,n)),!n)return null;const u=n.length;let a=e,r=0;for(;r<u;){const s=a[n[r]];if(s===void 0||j(a))return null;a=s,r++}return a}const y0=e=>e,R0=e=>"",w0="text",M0=e=>e.length===0?"":tu(e),$0=jp;function Ar(e,t){return e=Math.abs(e),t===2?e?e>1?1:0:1:e?Math.min(e,2):0}function P0(e){const t=ae(e.pluralIndex)?e.pluralIndex:-1;return e.named&&(ae(e.named.count)||ae(e.named.n))?ae(e.named.count)?e.named.count:ae(e.named.n)?e.named.n:t:t}function k0(e,t){t.count||(t.count=e),t.n||(t.n=e)}function V0(e={}){const t=e.locale,n=P0(e),u=x(e.pluralRules)&&O(t)&&j(e.pluralRules[t])?e.pluralRules[t]:Ar,a=x(e.pluralRules)&&O(t)&&j(e.pluralRules[t])?Ar:void 0,r=b=>b[u(n,b.length,a)],s=e.list||[],o=b=>s[b],i=e.named||{};ae(e.pluralIndex)&&k0(n,i);const d=b=>i[b];function p(b){const C=j(e.messages)?e.messages(b):x(e.messages)?e.messages[b]:!1;return C||(e.parent?e.parent.message(b):R0)}const f=b=>e.modifiers?e.modifiers[b]:y0,_=M(e.processor)&&j(e.processor.normalize)?e.processor.normalize:M0,N=M(e.processor)&&j(e.processor.interpolate)?e.processor.interpolate:$0,S=M(e.processor)&&O(e.processor.type)?e.processor.type:w0,y={list:o,named:d,plural:r,linked:(b,...C)=>{const[E,m]=C;let A="text",g="";C.length===1?x(E)?(g=E.modifier||g,A=E.type||A):O(E)&&(g=E||g):C.length===2&&(O(E)&&(g=E||g),O(m)&&(A=m||A));const v=p(b)(y),T=A==="vnode"&&X(v)&&g?v[0]:v;return g?f(g)(T,A):T},message:p,type:S,interpolate:N,normalize:_,values:se({},s,i)};return y}let Vt=null;function U0(e){Vt=e}function x0(e,t,n){Vt&&Vt.emit("i18n:init",{timestamp:Date.now(),i18n:e,version:t,meta:n})}const W0=H0("function:translate");function H0(e){return t=>Vt&&Vt.emit(e,t)}const Nr=Nn.__EXTEND_POINT__,tt=bn(Nr),_e={NOT_FOUND_KEY:Nr,FALLBACK_TO_TRANSLATE:tt(),CANNOT_FORMAT_NUMBER:tt(),FALLBACK_TO_NUMBER_FORMAT:tt(),CANNOT_FORMAT_DATE:tt(),FALLBACK_TO_DATE_FORMAT:tt(),EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER:tt(),__EXTEND_POINT__:tt()},G0={[_e.NOT_FOUND_KEY]:"Not found '{key}' key in '{locale}' locale messages.",[_e.FALLBACK_TO_TRANSLATE]:"Fall back to translate '{key}' key with '{target}' locale.",[_e.CANNOT_FORMAT_NUMBER]:"Cannot format a number value due to not supported Intl.NumberFormat.",[_e.FALLBACK_TO_NUMBER_FORMAT]:"Fall back to number format '{key}' key with '{target}' locale.",[_e.CANNOT_FORMAT_DATE]:"Cannot format a date value due to not supported Intl.DateTimeFormat.",[_e.FALLBACK_TO_DATE_FORMAT]:"Fall back to datetime format '{key}' key with '{target}' locale.",[_e.EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER]:"This project is using Custom Message Compiler, which is an experimental feature. It may receive breaking changes or be removed in the future."};function nt(e,...t){return kt(G0[e],...t)}const Dr=w.__EXTEND_POINT__,ut=bn(Dr),le={INVALID_ARGUMENT:Dr,INVALID_DATE_ARGUMENT:ut(),INVALID_ISO_DATE_ARGUMENT:ut(),NOT_SUPPORT_NON_STRING_MESSAGE:ut(),NOT_SUPPORT_LOCALE_PROMISE_VALUE:ut(),NOT_SUPPORT_LOCALE_ASYNC_FUNCTION:ut(),NOT_SUPPORT_LOCALE_TYPE:ut(),__EXTEND_POINT__:ut()};function Te(e){return Et(e,null,process.env.NODE_ENV!=="production"?{messages:j0}:void 0)}const j0={[le.INVALID_ARGUMENT]:"Invalid arguments",[le.INVALID_DATE_ARGUMENT]:"The date provided is an invalid Date object.Make sure your Date represents a valid date.",[le.INVALID_ISO_DATE_ARGUMENT]:"The argument provided is not a valid ISO date string",[le.NOT_SUPPORT_NON_STRING_MESSAGE]:"Not support non-string message",[le.NOT_SUPPORT_LOCALE_PROMISE_VALUE]:"cannot support promise value",[le.NOT_SUPPORT_LOCALE_ASYNC_FUNCTION]:"cannot support async function",[le.NOT_SUPPORT_LOCALE_TYPE]:"cannot support locale type"};function ru(e,t){return t.locale!=null?Ir(t.locale):Ir(e.locale)}let au;function Ir(e){if(O(e))return e;if(j(e)){if(e.resolvedOnce&&au!=null)return au;if(e.constructor.name==="Function"){const t=e();if(Gp(t))throw Te(le.NOT_SUPPORT_LOCALE_PROMISE_VALUE);return au=t}else throw Te(le.NOT_SUPPORT_LOCALE_ASYNC_FUNCTION)}else throw Te(le.NOT_SUPPORT_LOCALE_TYPE)}function K0(e,t,n){return[...new Set([n,...X(t)?t:x(t)?Object.keys(t):O(t)?[t]:[n]])]}function Sr(e,t,n){const u=O(n)?n:ht,a=e;a.__localeChainCache||(a.__localeChainCache=new Map);let r=a.__localeChainCache.get(u);if(!r){r=[];let s=[n];for(;X(s);)s=Br(r,s,t);const o=X(t)||!M(t)?t:t.default?t.default:null;s=O(o)?[o]:o,X(s)&&Br(r,s,!1),a.__localeChainCache.set(u,r)}return r}function Br(e,t,n){let u=!0;for(let a=0;a<t.length&&$(u);a++){const r=t[a];O(r)&&(u=X0(e,t[a],n))}return u}function X0(e,t,n){let u;const a=t.split("-");do{const r=a.join("-");u=q0(e,r,n),a.splice(-1,1)}while(a.length&&u===!0);return u}function q0(e,t,n){let u=!1;if(!e.includes(t)&&(u=!0,t)){u=t[t.length-1]!=="!";const a=t.replace(/!/g,"");e.push(a),(X(n)||M(n))&&n[a]&&(u=n[a])}return u}const J0="9.13.1",Dn=-1,ht="en-US",In="",Or=e=>`${e.charAt(0).toLocaleUpperCase()}${e.substr(1)}`;function z0(){return{upper:(e,t)=>t==="text"&&O(e)?e.toUpperCase():t==="vnode"&&x(e)&&"__v_isVNode"in e?e.children.toUpperCase():e,lower:(e,t)=>t==="text"&&O(e)?e.toLowerCase():t==="vnode"&&x(e)&&"__v_isVNode"in e?e.children.toLowerCase():e,capitalize:(e,t)=>t==="text"&&O(e)?Or(e):t==="vnode"&&x(e)&&"__v_isVNode"in e?Or(e.children):e}}let Tr;function Lr(e){Tr=e}let yr;function Q0(e){yr=e}let Rr;function Z0(e){Rr=e}let wr=null;const Mr=e=>{wr=e},Y0=()=>wr;let $r=null;const Pr=e=>{$r=e},eh=()=>$r;let kr=0;function th(e={}){const t=j(e.onWarn)?e.onWarn:oe,n=O(e.version)?e.version:J0,u=O(e.locale)||j(e.locale)?e.locale:ht,a=j(u)?ht:u,r=X(e.fallbackLocale)||M(e.fallbackLocale)||O(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:a,s=M(e.messages)?e.messages:{[a]:{}},o=M(e.datetimeFormats)?e.datetimeFormats:{[a]:{}},i=M(e.numberFormats)?e.numberFormats:{[a]:{}},d=se({},e.modifiers||{},z0()),p=e.pluralRules||{},f=j(e.missing)?e.missing:null,_=$(e.missingWarn)||xe(e.missingWarn)?e.missingWarn:!0,N=$(e.fallbackWarn)||xe(e.fallbackWarn)?e.fallbackWarn:!0,S=!!e.fallbackFormat,L=!!e.unresolving,y=j(e.postTranslation)?e.postTranslation:null,b=M(e.processor)?e.processor:null,C=$(e.warnHtmlMessage)?e.warnHtmlMessage:!0,E=!!e.escapeParameter,m=j(e.messageCompiler)?e.messageCompiler:Tr;process.env.NODE_ENV!=="production"&&!0&&!0&&j(e.messageCompiler)&&vr(nt(_e.EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER));const A=j(e.messageResolver)?e.messageResolver:yr||T0,g=j(e.localeFallbacker)?e.localeFallbacker:Rr||K0,v=x(e.fallbackContext)?e.fallbackContext:void 0,T=e,I=x(T.__datetimeFormatters)?T.__datetimeFormatters:new Map,J=x(T.__numberFormatters)?T.__numberFormatters:new Map,be=x(T.__meta)?T.__meta:{};kr++;const U={version:n,cid:kr,locale:u,fallbackLocale:r,messages:s,modifiers:d,pluralRules:p,missing:f,missingWarn:_,fallbackWarn:N,fallbackFormat:S,unresolving:L,postTranslation:y,processor:b,warnHtmlMessage:C,escapeParameter:E,messageCompiler:m,messageResolver:A,localeFallbacker:g,fallbackContext:v,onWarn:t,__meta:be};return U.datetimeFormats=o,U.numberFormats=i,U.__datetimeFormatters=I,U.__numberFormatters=J,process.env.NODE_ENV!=="production"&&(U.__v_emitter=T.__v_emitter!=null?T.__v_emitter:void 0),(process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__)&&x0(U,n,be),U}function Sn(e,t){return e instanceof RegExp?e.test(t):e}function Vr(e,t){return e instanceof RegExp?e.test(t):e}function su(e,t,n,u,a){const{missing:r,onWarn:s}=e;if(process.env.NODE_ENV!=="production"){const o=e.__v_emitter;o&&o.emit("missing",{locale:n,key:t,type:a,groupId:`${a}:${t}`})}if(r!==null){const o=r(e,n,t,a);return O(o)?o:t}else return process.env.NODE_ENV!=="production"&&Vr(u,t)&&s(nt(_e.NOT_FOUND_KEY,{key:t,locale:n})),t}function Ut(e,t,n){const u=e;u.__localeChainCache=new Map,e.localeFallbacker(e,n,t)}function Ur(e,t){return e===t?!1:e.split("-")[0]===t.split("-")[0]}function nh(e,t){const n=t.indexOf(e);if(n===-1)return!1;for(let u=n+1;u<t.length;u++)if(Ur(e,t[u]))return!0;return!1}function ou(e){return n=>uh(n,e)}function uh(e,t){const n=t.b||t.body;if((n.t||n.type)===1){const u=n,a=u.c||u.cases;return e.plural(a.reduce((r,s)=>[...r,xr(e,s)],[]))}else return xr(e,n)}function xr(e,t){const n=t.s||t.static;if(n)return e.type==="text"?n:e.normalize([n]);{const u=(t.i||t.items).reduce((a,r)=>[...a,iu(e,r)],[]);return e.normalize(u)}}function iu(e,t){const n=t.t||t.type;switch(n){case 3:{const u=t;return u.v||u.value}case 9:{const u=t;return u.v||u.value}case 4:{const u=t;return e.interpolate(e.named(u.k||u.key))}case 5:{const u=t;return e.interpolate(e.list(u.i!=null?u.i:u.index))}case 6:{const u=t,a=u.m||u.modifier;return e.linked(iu(e,u.k||u.key),a?iu(e,a):void 0,e.type)}case 7:{const u=t;return u.v||u.value}case 8:{const u=t;return u.v||u.value}default:throw new Error(`unhandled node type on format message part: ${n}`)}}const rh="Detected HTML in '{source}' message. Recommend not using HTML messages to avoid XSS.";function Wr(e,t){t&&Yp(e)&&oe(kt(rh,{source:e}))}const Hr=e=>e;let vt=Object.create(null);function Gr(e){e.code===Nn.USE_MODULO_SYNTAX&&oe(`The use of named interpolation with modulo syntax is deprecated. It will be removed in v10.
|
|
17
|
-
reference: https://vue-i18n.intlify.dev/guide/essentials/syntax#rails-i18n-format
|
|
18
|
-
(message compiler warning message: ${e.message})`)}const Ge=e=>x(e)&&(e.t===0||e.type===0)&&("b"in e||"body"in e);function jr(e,t={}){let n=!1;const u=t.onError||Qp;return t.onError=a=>{n=!0,u(a)},Rt(yt({},F0(e,t)),{detectError:n})}const ah=(e,t)=>{if(!O(e))throw Te(le.NOT_SUPPORT_NON_STRING_MESSAGE);process.env.NODE_ENV!=="production"&&(t.onWarn=Gr);{const n=$(t.warnHtmlMessage)?t.warnHtmlMessage:!0;process.env.NODE_ENV!=="production"&&Wr(e,n);const a=(t.onCacheKey||Hr)(e),r=vt[a];if(r)return r;const{code:s,detectError:o}=jr(e,t),i=new Function(`return ${s}`)();return o?i:vt[a]=i}};function sh(e,t){if(process.env.NODE_ENV!=="production"&&(t.onWarn=Gr),__INTLIFY_JIT_COMPILATION__&&!__INTLIFY_DROP_MESSAGE_COMPILER__&&O(e)){const n=$(t.warnHtmlMessage)?t.warnHtmlMessage:!0;process.env.NODE_ENV!=="production"&&Wr(e,n);const a=(t.onCacheKey||Hr)(e),r=vt[a];if(r)return r;const{ast:s,detectError:o}=jr(e,Rt(yt({},t),{location:process.env.NODE_ENV!=="production",jit:!0})),i=ou(s);return o?i:vt[a]=i}else{if(process.env.NODE_ENV!=="production"&&!Ge(e))return oe(`the message that is resolve with key '${t.key}' is not supported for jit compilation`),()=>e;const n=e.cacheKey;if(n){const u=vt[n];return u||(vt[n]=ou(e))}else return ou(e)}}const Kr=()=>"",Ce=e=>j(e);function Xr(e,...t){const{fallbackFormat:n,postTranslation:u,unresolving:a,messageCompiler:r,fallbackLocale:s,messages:o}=e,[i,d]=lu(...t),p=$(d.missingWarn)?d.missingWarn:e.missingWarn,f=$(d.fallbackWarn)?d.fallbackWarn:e.fallbackWarn,_=$(d.escapeParameter)?d.escapeParameter:e.escapeParameter,N=!!d.resolvedMessage,S=O(d.default)||$(d.default)?$(d.default)?r?i:()=>i:d.default:n?r?i:()=>i:"",L=n||S!=="",y=ru(e,d);_&&oh(d);let[b,C,E]=N?[i,y,o[y]||{}]:qr(e,i,y,s,f,p),m=b,A=i;if(!N&&!(O(m)||Ge(m)||Ce(m))&&L&&(m=S,A=m),!N&&(!(O(m)||Ge(m)||Ce(m))||!O(C)))return a?Dn:i;if(process.env.NODE_ENV!=="production"&&O(m)&&e.messageCompiler==null)return oe(`The message format compilation is not supported in this build. Because message compiler isn't included. You need to pre-compilation all message format. So translate function return '${i}'.`),i;let g=!1;const v=()=>{g=!0},T=Ce(m)?m:Jr(e,i,C,m,A,v);if(g)return m;const I=fh(e,C,E,d),J=V0(I),be=ih(e,T,J),U=u?u(be,i):be;if(process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__){const fe={timestamp:Date.now(),key:O(i)?i:Ce(m)?m.key:"",locale:C||(Ce(m)?m.locale:""),format:O(m)?m:Ce(m)?m.source:"",message:U};fe.meta=se({},e.__meta,Y0()||{}),W0(fe)}return U}function oh(e){X(e.list)?e.list=e.list.map(t=>O(t)?_r(t):t):x(e.named)&&Object.keys(e.named).forEach(t=>{O(e.named[t])&&(e.named[t]=_r(e.named[t]))})}function qr(e,t,n,u,a,r){const{messages:s,onWarn:o,messageResolver:i,localeFallbacker:d}=e,p=d(e,u,n);let f={},_,N=null,S=n,L=null;const y="translate";for(let b=0;b<p.length;b++){if(_=L=p[b],process.env.NODE_ENV!=="production"&&n!==_&&!Ur(n,_)&&Sn(a,t)&&o(nt(_e.FALLBACK_TO_TRANSLATE,{key:t,target:_})),process.env.NODE_ENV!=="production"&&n!==_){const A=e.__v_emitter;A&&A.emit("fallback",{type:y,key:t,from:S,to:L,groupId:`${y}:${t}`})}f=s[_]||{};let C=null,E,m;if(process.env.NODE_ENV!=="production"&&Ne&&(C=window.performance.now(),E="intlify-message-resolve-start",m="intlify-message-resolve-end",ge&&ge(E)),(N=i(f,t))===null&&(N=f[t]),process.env.NODE_ENV!=="production"&&Ne){const A=window.performance.now(),g=e.__v_emitter;g&&C&&N&&g.emit("message-resolve",{type:"message-resolve",key:t,message:N,time:A-C,groupId:`${y}:${t}`}),E&&m&&ge&&et&&(ge(m),et("intlify message resolve",E,m))}if(O(N)||Ge(N)||Ce(N))break;if(!nh(_,p)){const A=su(e,t,_,r,y);A!==t&&(N=A)}S=L}return[N,_,f]}function Jr(e,t,n,u,a,r){const{messageCompiler:s,warnHtmlMessage:o}=e;if(Ce(u)){const _=u;return _.locale=_.locale||n,_.key=_.key||t,_}if(s==null){const _=()=>u;return _.locale=n,_.key=t,_}let i=null,d,p;process.env.NODE_ENV!=="production"&&Ne&&(i=window.performance.now(),d="intlify-message-compilation-start",p="intlify-message-compilation-end",ge&&ge(d));const f=s(u,lh(e,n,a,u,o,r));if(process.env.NODE_ENV!=="production"&&Ne){const _=window.performance.now(),N=e.__v_emitter;N&&i&&N.emit("message-compilation",{type:"message-compilation",message:u,time:_-i,groupId:`translate:${t}`}),d&&p&&ge&&et&&(ge(p),et("intlify message compilation",d,p))}return f.locale=n,f.key=t,f.source=u,f}function ih(e,t,n){let u=null,a,r;process.env.NODE_ENV!=="production"&&Ne&&(u=window.performance.now(),a="intlify-message-evaluation-start",r="intlify-message-evaluation-end",ge&&ge(a));const s=t(n);if(process.env.NODE_ENV!=="production"&&Ne){const o=window.performance.now(),i=e.__v_emitter;i&&u&&i.emit("message-evaluation",{type:"message-evaluation",value:s,time:o-u,groupId:`translate:${t.key}`}),a&&r&&ge&&et&&(ge(r),et("intlify message evaluation",a,r))}return s}function lu(...e){const[t,n,u]=e,a={};if(!O(t)&&!ae(t)&&!Ce(t)&&!Ge(t))throw Te(le.INVALID_ARGUMENT);const r=ae(t)?String(t):(Ce(t),t);return ae(n)?a.plural=n:O(n)?a.default=n:M(n)&&!vn(n)?a.named=n:X(n)&&(a.list=n),ae(u)?a.plural=u:O(u)?a.default=u:M(u)&&se(a,u),[r,a]}function lh(e,t,n,u,a,r){return{locale:t,key:n,warnHtmlMessage:a,onError:s=>{if(r&&r(s),process.env.NODE_ENV!=="production"){const o=ch(u),i=`Message compilation error: ${s.message}`,d=s.location&&o&&Kp(o,s.location.start.offset,s.location.end.offset),p=e.__v_emitter;p&&o&&p.emit("compile-error",{message:o,error:s.message,start:s.location&&s.location.start.offset,end:s.location&&s.location.end.offset,groupId:`translate:${n}`}),console.error(d?`${i}
|
|
19
|
-
${d}`:i)}else throw s},onCacheKey:s=>Up(t,n,s)}}function ch(e){if(O(e))return e;if(e.loc&&e.loc.source)return e.loc.source}function fh(e,t,n,u){const{modifiers:a,pluralRules:r,messageResolver:s,fallbackLocale:o,fallbackWarn:i,missingWarn:d,fallbackContext:p}=e,_={locale:t,modifiers:a,pluralRules:r,messages:N=>{let S=s(n,N);if(S==null&&p){const[,,L]=qr(p,N,t,o,i,d);S=s(L,N)}if(O(S)||Ge(S)){let L=!1;const b=Jr(e,N,t,S,N,()=>{L=!0});return L?Kr:b}else return Ce(S)?S:Kr}};return e.processor&&(_.processor=e.processor),u.list&&(_.list=u.list),u.named&&(_.named=u.named),ae(u.plural)&&(_.pluralIndex=u.plural),_}const zr=typeof Intl!="undefined",Qr={dateTimeFormat:zr&&typeof Intl.DateTimeFormat!="undefined",numberFormat:zr&&typeof Intl.NumberFormat!="undefined"};function Zr(e,...t){const{datetimeFormats:n,unresolving:u,fallbackLocale:a,onWarn:r,localeFallbacker:s}=e,{__datetimeFormatters:o}=e;if(process.env.NODE_ENV!=="production"&&!Qr.dateTimeFormat)return r(nt(_e.CANNOT_FORMAT_DATE)),In;const[i,d,p,f]=cu(...t),_=$(p.missingWarn)?p.missingWarn:e.missingWarn,N=$(p.fallbackWarn)?p.fallbackWarn:e.fallbackWarn,S=!!p.part,L=ru(e,p),y=s(e,a,L);if(!O(i)||i==="")return new Intl.DateTimeFormat(L,f).format(d);let b={},C,E=null,m=L,A=null;const g="datetime format";for(let I=0;I<y.length;I++){if(C=A=y[I],process.env.NODE_ENV!=="production"&&L!==C&&Sn(N,i)&&r(nt(_e.FALLBACK_TO_DATE_FORMAT,{key:i,target:C})),process.env.NODE_ENV!=="production"&&L!==C){const J=e.__v_emitter;J&&J.emit("fallback",{type:g,key:i,from:m,to:A,groupId:`${g}:${i}`})}if(b=n[C]||{},E=b[i],M(E))break;su(e,i,C,_,g),m=A}if(!M(E)||!O(C))return u?Dn:i;let v=`${C}__${i}`;vn(f)||(v=`${v}__${JSON.stringify(f)}`);let T=o.get(v);return T||(T=new Intl.DateTimeFormat(C,se({},E,f)),o.set(v,T)),S?T.formatToParts(d):T.format(d)}const Yr=["localeMatcher","weekday","era","year","month","day","hour","minute","second","timeZoneName","formatMatcher","hour12","timeZone","dateStyle","timeStyle","calendar","dayPeriod","numberingSystem","hourCycle","fractionalSecondDigits"];function cu(...e){const[t,n,u,a]=e,r={};let s={},o;if(O(t)){const i=t.match(/(\d{4}-\d{2}-\d{2})(T|\s)?(.*)/);if(!i)throw Te(le.INVALID_ISO_DATE_ARGUMENT);const d=i[3]?i[3].trim().startsWith("T")?`${i[1].trim()}${i[3].trim()}`:`${i[1].trim()}T${i[3].trim()}`:i[1].trim();o=new Date(d);try{o.toISOString()}catch(p){throw Te(le.INVALID_ISO_DATE_ARGUMENT)}}else if(Wp(t)){if(isNaN(t.getTime()))throw Te(le.INVALID_DATE_ARGUMENT);o=t}else if(ae(t))o=t;else throw Te(le.INVALID_ARGUMENT);return O(n)?r.key=n:M(n)&&Object.keys(n).forEach(i=>{Yr.includes(i)?s[i]=n[i]:r[i]=n[i]}),O(u)?r.locale=u:M(u)&&(s=u),M(a)&&(s=a),[r.key||"",o,r,s]}function ea(e,t,n){const u=e;for(const a in n){const r=`${t}__${a}`;!u.__datetimeFormatters.has(r)||u.__datetimeFormatters.delete(r)}}function ta(e,...t){const{numberFormats:n,unresolving:u,fallbackLocale:a,onWarn:r,localeFallbacker:s}=e,{__numberFormatters:o}=e;if(process.env.NODE_ENV!=="production"&&!Qr.numberFormat)return r(nt(_e.CANNOT_FORMAT_NUMBER)),In;const[i,d,p,f]=fu(...t),_=$(p.missingWarn)?p.missingWarn:e.missingWarn,N=$(p.fallbackWarn)?p.fallbackWarn:e.fallbackWarn,S=!!p.part,L=ru(e,p),y=s(e,a,L);if(!O(i)||i==="")return new Intl.NumberFormat(L,f).format(d);let b={},C,E=null,m=L,A=null;const g="number format";for(let I=0;I<y.length;I++){if(C=A=y[I],process.env.NODE_ENV!=="production"&&L!==C&&Sn(N,i)&&r(nt(_e.FALLBACK_TO_NUMBER_FORMAT,{key:i,target:C})),process.env.NODE_ENV!=="production"&&L!==C){const J=e.__v_emitter;J&&J.emit("fallback",{type:g,key:i,from:m,to:A,groupId:`${g}:${i}`})}if(b=n[C]||{},E=b[i],M(E))break;su(e,i,C,_,g),m=A}if(!M(E)||!O(C))return u?Dn:i;let v=`${C}__${i}`;vn(f)||(v=`${v}__${JSON.stringify(f)}`);let T=o.get(v);return T||(T=new Intl.NumberFormat(C,se({},E,f)),o.set(v,T)),S?T.formatToParts(d):T.format(d)}const na=["localeMatcher","style","currency","currencyDisplay","currencySign","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","compactDisplay","notation","signDisplay","unit","unitDisplay","roundingMode","roundingPriority","roundingIncrement","trailingZeroDisplay"];function fu(...e){const[t,n,u,a]=e,r={};let s={};if(!ae(t))throw Te(le.INVALID_ARGUMENT);const o=t;return O(n)?r.key=n:M(n)&&Object.keys(n).forEach(i=>{na.includes(i)?s[i]=n[i]:r[i]=n[i]}),O(u)?r.locale=u:M(u)&&(s=u),M(a)&&(s=a),[r.key||"",o,r,s]}function ua(e,t,n){const u=e;for(const a in n){const r=`${t}__${a}`;!u.__numberFormatters.has(r)||u.__numberFormatters.delete(r)}}A0();/**
|
|
20
|
-
* @vue/shared v3.4.35
|
|
21
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
22
|
-
* @license MIT
|
|
23
|
-
**//*! #__NO_SIDE_EFFECTS__ */function dh(e,t){const n=new Set(e.split(","));return t?u=>n.has(u.toLowerCase()):u=>n.has(u)}const Le=process.env.NODE_ENV!=="production"?Object.freeze({}):{};process.env.NODE_ENV!=="production"&&Object.freeze([]);const je=()=>{},_h=()=>!1,Eh=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Fe=Object.assign,mh=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},ph=Object.prototype.hasOwnProperty,ue=(e,t)=>ph.call(e,t),q=Array.isArray,gt=e=>Bn(e)==="[object Map]",hh=e=>Bn(e)==="[object Set]",re=e=>typeof e=="function",Se=e=>typeof e=="string",xt=e=>typeof e=="symbol",Ee=e=>e!==null&&typeof e=="object",vh=e=>(Ee(e)||re(e))&&re(e.then)&&re(e.catch),gh=Object.prototype.toString,Bn=e=>gh.call(e),ra=e=>Bn(e).slice(8,-1),bh=e=>Bn(e)==="[object Object]",du=e=>Se(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,aa=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},sa=aa(e=>e.charAt(0).toUpperCase()+e.slice(1)),Ch=aa(e=>e?`on${sa(e)}`:""),Ke=(e,t)=>!Object.is(e,t),Fh=(e,t,n,u=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:u,value:n})};let oa;const ia=()=>oa||(oa=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});function _u(e){if(q(e)){const t={};for(let n=0;n<e.length;n++){const u=e[n],a=Se(u)?Ih(u):_u(u);if(a)for(const r in a)t[r]=a[r]}return t}else if(Se(e)||Ee(e))return e}const Ah=/;(?![^(]*\))/g,Nh=/:([^]+)/,Dh=/\/\*[^]*?\*\//g;function Ih(e){const t={};return e.replace(Dh,"").split(Ah).forEach(n=>{if(n){const u=n.split(Nh);u.length>1&&(t[u[0].trim()]=u[1].trim())}}),t}function Eu(e){let t="";if(Se(e))t=e;else if(q(e))for(let n=0;n<e.length;n++){const u=Eu(e[n]);u&&(t+=u+" ")}else if(Ee(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}/**
|
|
24
|
-
* @vue/reactivity v3.4.35
|
|
25
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
26
|
-
* @license MIT
|
|
27
|
-
**/function Xe(e,...t){console.warn(`[Vue warn] ${e}`,...t)}let Be;class Sh{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Be,!t&&Be&&(this.index=(Be.scopes||(Be.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=Be;try{return Be=this,t()}finally{Be=n}}else process.env.NODE_ENV!=="production"&&Xe("cannot run an inactive effect scope.")}on(){Be=this}off(){Be=this.parent}stop(t){if(this._active){let n,u;for(n=0,u=this.effects.length;n<u;n++)this.effects[n].stop();for(n=0,u=this.cleanups.length;n<u;n++)this.cleanups[n]();if(this.scopes)for(n=0,u=this.scopes.length;n<u;n++)this.scopes[n].stop(!0);if(!this.detached&&this.parent&&!t){const a=this.parent.scopes.pop();a&&a!==this&&(this.parent.scopes[this.index]=a,a.index=this.index)}this.parent=void 0,this._active=!1}}}function Bh(e){return new Sh(e)}function Oh(e,t=Be){t&&t.active&&t.effects.push(e)}function Th(){return Be}let rt;class la{constructor(t,n,u,a){this.fn=t,this.trigger=n,this.scheduler=u,this.active=!0,this.deps=[],this._dirtyLevel=4,this._trackId=0,this._runnings=0,this._shouldSchedule=!1,this._depsLength=0,Oh(this,a)}get dirty(){if(this._dirtyLevel===2||this._dirtyLevel===3){this._dirtyLevel=1,Wt();for(let t=0;t<this._depsLength;t++){const n=this.deps[t];if(n.computed&&(Lh(n.computed),this._dirtyLevel>=4))break}this._dirtyLevel===1&&(this._dirtyLevel=0),Ht()}return this._dirtyLevel>=4}set dirty(t){this._dirtyLevel=t?4:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=qe,n=rt;try{return qe=!0,rt=this,this._runnings++,ca(this),this.fn()}finally{fa(this),this._runnings--,rt=n,qe=t}}stop(){this.active&&(ca(this),fa(this),this.onStop&&this.onStop(),this.active=!1)}}function Lh(e){return e.value}function ca(e){e._trackId++,e._depsLength=0}function fa(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t<e.deps.length;t++)da(e.deps[t],e);e.deps.length=e._depsLength}}function da(e,t){const n=e.get(t);n!==void 0&&t._trackId!==n&&(e.delete(t),e.size===0&&e.cleanup())}let qe=!0,mu=0;const _a=[];function Wt(){_a.push(qe),qe=!1}function Ht(){const e=_a.pop();qe=e===void 0?!0:e}function pu(){mu++}function hu(){for(mu--;!mu&&vu.length;)vu.shift()()}function Ea(e,t,n){var u;if(t.get(e)!==e._trackId){t.set(e,e._trackId);const a=e.deps[e._depsLength];a!==t?(a&&da(a,e),e.deps[e._depsLength++]=t):e._depsLength++,process.env.NODE_ENV!=="production"&&((u=e.onTrack)==null||u.call(e,Fe({effect:e},n)))}}const vu=[];function ma(e,t,n){var u;pu();for(const a of e.keys()){let r;a._dirtyLevel<t&&(r!=null?r:r=e.get(a)===a._trackId)&&(a._shouldSchedule||(a._shouldSchedule=a._dirtyLevel===0),a._dirtyLevel=t),a._shouldSchedule&&(r!=null?r:r=e.get(a)===a._trackId)&&(process.env.NODE_ENV!=="production"&&((u=a.onTrigger)==null||u.call(a,Fe({effect:a},n))),a.trigger(),(!a._runnings||a.allowRecurse)&&a._dirtyLevel!==2&&(a._shouldSchedule=!1,a.scheduler&&vu.push(a.scheduler)))}hu()}const pa=(e,t)=>{const n=new Map;return n.cleanup=e,n.computed=t,n},gu=new WeakMap,at=Symbol(process.env.NODE_ENV!=="production"?"iterate":""),bu=Symbol(process.env.NODE_ENV!=="production"?"Map key iterate":"");function ce(e,t,n){if(qe&&rt){let u=gu.get(e);u||gu.set(e,u=new Map);let a=u.get(n);a||u.set(n,a=pa(()=>u.delete(n))),Ea(rt,a,process.env.NODE_ENV!=="production"?{target:e,type:t,key:n}:void 0)}}function Je(e,t,n,u,a,r){const s=gu.get(e);if(!s)return;let o=[];if(t==="clear")o=[...s.values()];else if(n==="length"&&q(e)){const i=Number(u);s.forEach((d,p)=>{(p==="length"||!xt(p)&&p>=i)&&o.push(d)})}else switch(n!==void 0&&o.push(s.get(n)),t){case"add":q(e)?du(n)&&o.push(s.get("length")):(o.push(s.get(at)),gt(e)&&o.push(s.get(bu)));break;case"delete":q(e)||(o.push(s.get(at)),gt(e)&&o.push(s.get(bu)));break;case"set":gt(e)&&o.push(s.get(at));break}pu();for(const i of o)i&&ma(i,4,process.env.NODE_ENV!=="production"?{target:e,type:t,key:n,newValue:u,oldValue:a,oldTarget:r}:void 0);hu()}const yh=dh("__proto__,__v_isRef,__isVue"),ha=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(xt)),va=Rh();function Rh(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const u=P(this);for(let r=0,s=this.length;r<s;r++)ce(u,"get",r+"");const a=u[t](...n);return a===-1||a===!1?u[t](...n.map(P)):a}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){Wt(),pu();const u=P(this)[t].apply(this,n);return hu(),Ht(),u}}),e}function wh(e){xt(e)||(e=String(e));const t=P(this);return ce(t,"has",e),t.hasOwnProperty(e)}class ga{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,u){const a=this._isReadonly,r=this._isShallow;if(n==="__v_isReactive")return!a;if(n==="__v_isReadonly")return a;if(n==="__v_isShallow")return r;if(n==="__v_raw")return u===(a?r?Ba:Sa:r?Xh:Ia).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(u)?t:void 0;const s=q(t);if(!a){if(s&&ue(va,n))return Reflect.get(va,n,u);if(n==="hasOwnProperty")return wh}const o=Reflect.get(t,n,u);return(xt(n)?ha.has(n):yh(n))||(a||ce(t,"get",n),r)?o:pe(o)?s&&du(n)?o:o.value:Ee(o)?a?Ta(o):Oa(o):o}}class Mh extends ga{constructor(t=!1){super(!1,t)}set(t,n,u,a){let r=t[n];if(!this._isShallow){const i=ke(r);if(!Ve(u)&&!ke(u)&&(r=P(r),u=P(u)),!q(t)&&pe(r)&&!pe(u))return i?!1:(r.value=u,!0)}const s=q(t)&&du(n)?Number(n)<t.length:ue(t,n),o=Reflect.set(t,n,u,a);return t===P(a)&&(s?Ke(u,r)&&Je(t,"set",n,u,r):Je(t,"add",n,u)),o}deleteProperty(t,n){const u=ue(t,n),a=t[n],r=Reflect.deleteProperty(t,n);return r&&u&&Je(t,"delete",n,void 0,a),r}has(t,n){const u=Reflect.has(t,n);return(!xt(n)||!ha.has(n))&&ce(t,"has",n),u}ownKeys(t){return ce(t,"iterate",q(t)?"length":at),Reflect.ownKeys(t)}}class ba extends ga{constructor(t=!1){super(!0,t)}set(t,n){return process.env.NODE_ENV!=="production"&&Xe(`Set operation on key "${String(n)}" failed: target is readonly.`,t),!0}deleteProperty(t,n){return process.env.NODE_ENV!=="production"&&Xe(`Delete operation on key "${String(n)}" failed: target is readonly.`,t),!0}}const $h=new Mh,Ph=new ba,kh=new ba(!0),Cu=e=>e,On=e=>Reflect.getPrototypeOf(e);function Tn(e,t,n=!1,u=!1){e=e.__v_raw;const a=P(e),r=P(t);n||(Ke(t,r)&&ce(a,"get",t),ce(a,"get",r));const{has:s}=On(a),o=u?Cu:n?Du:Gt;if(s.call(a,t))return o(e.get(t));if(s.call(a,r))return o(e.get(r));e!==a&&e.get(t)}function Ln(e,t=!1){const n=this.__v_raw,u=P(n),a=P(e);return t||(Ke(e,a)&&ce(u,"has",e),ce(u,"has",a)),e===a?n.has(e):n.has(e)||n.has(a)}function yn(e,t=!1){return e=e.__v_raw,!t&&ce(P(e),"iterate",at),Reflect.get(e,"size",e)}function Ca(e,t=!1){!t&&!Ve(e)&&!ke(e)&&(e=P(e));const n=P(this);return On(n).has.call(n,e)||(n.add(e),Je(n,"add",e,e)),this}function Fa(e,t,n=!1){!n&&!Ve(t)&&!ke(t)&&(t=P(t));const u=P(this),{has:a,get:r}=On(u);let s=a.call(u,e);s?process.env.NODE_ENV!=="production"&&Da(u,a,e):(e=P(e),s=a.call(u,e));const o=r.call(u,e);return u.set(e,t),s?Ke(t,o)&&Je(u,"set",e,t,o):Je(u,"add",e,t),this}function Aa(e){const t=P(this),{has:n,get:u}=On(t);let a=n.call(t,e);a?process.env.NODE_ENV!=="production"&&Da(t,n,e):(e=P(e),a=n.call(t,e));const r=u?u.call(t,e):void 0,s=t.delete(e);return a&&Je(t,"delete",e,void 0,r),s}function Na(){const e=P(this),t=e.size!==0,n=process.env.NODE_ENV!=="production"?gt(e)?new Map(e):new Set(e):void 0,u=e.clear();return t&&Je(e,"clear",void 0,void 0,n),u}function Rn(e,t){return function(u,a){const r=this,s=r.__v_raw,o=P(s),i=t?Cu:e?Du:Gt;return!e&&ce(o,"iterate",at),s.forEach((d,p)=>u.call(a,i(d),i(p),r))}}function wn(e,t,n){return function(...u){const a=this.__v_raw,r=P(a),s=gt(r),o=e==="entries"||e===Symbol.iterator&&s,i=e==="keys"&&s,d=a[e](...u),p=n?Cu:t?Du:Gt;return!t&&ce(r,"iterate",i?bu:at),{next(){const{value:f,done:_}=d.next();return _?{value:f,done:_}:{value:o?[p(f[0]),p(f[1])]:p(f),done:_}},[Symbol.iterator](){return this}}}}function ze(e){return function(...t){if(process.env.NODE_ENV!=="production"){const n=t[0]?`on key "${t[0]}" `:"";Xe(`${sa(e)} operation ${n}failed: target is readonly.`,P(this))}return e==="delete"?!1:e==="clear"?void 0:this}}function Vh(){const e={get(r){return Tn(this,r)},get size(){return yn(this)},has:Ln,add:Ca,set:Fa,delete:Aa,clear:Na,forEach:Rn(!1,!1)},t={get(r){return Tn(this,r,!1,!0)},get size(){return yn(this)},has:Ln,add(r){return Ca.call(this,r,!0)},set(r,s){return Fa.call(this,r,s,!0)},delete:Aa,clear:Na,forEach:Rn(!1,!0)},n={get(r){return Tn(this,r,!0)},get size(){return yn(this,!0)},has(r){return Ln.call(this,r,!0)},add:ze("add"),set:ze("set"),delete:ze("delete"),clear:ze("clear"),forEach:Rn(!0,!1)},u={get(r){return Tn(this,r,!0,!0)},get size(){return yn(this,!0)},has(r){return Ln.call(this,r,!0)},add:ze("add"),set:ze("set"),delete:ze("delete"),clear:ze("clear"),forEach:Rn(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(r=>{e[r]=wn(r,!1,!1),n[r]=wn(r,!0,!1),t[r]=wn(r,!1,!0),u[r]=wn(r,!0,!0)}),[e,n,t,u]}const[Uh,xh,Wh,Hh]=Vh();function Fu(e,t){const n=t?e?Hh:Wh:e?xh:Uh;return(u,a,r)=>a==="__v_isReactive"?!e:a==="__v_isReadonly"?e:a==="__v_raw"?u:Reflect.get(ue(n,a)&&a in u?n:u,a,r)}const Gh={get:Fu(!1,!1)},jh={get:Fu(!0,!1)},Kh={get:Fu(!0,!0)};function Da(e,t,n){const u=P(n);if(u!==n&&t.call(e,u)){const a=ra(e);Xe(`Reactive ${a} contains both the raw and reactive versions of the same object${a==="Map"?" as keys":""}, which can lead to inconsistencies. Avoid differentiating between the raw and reactive versions of an object and only use the reactive version if possible.`)}}const Ia=new WeakMap,Xh=new WeakMap,Sa=new WeakMap,Ba=new WeakMap;function qh(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Jh(e){return e.__v_skip||!Object.isExtensible(e)?0:qh(ra(e))}function Oa(e){return ke(e)?e:Au(e,!1,$h,Gh,Ia)}function Ta(e){return Au(e,!0,Ph,jh,Sa)}function Mn(e){return Au(e,!0,kh,Kh,Ba)}function Au(e,t,n,u,a){if(!Ee(e))return process.env.NODE_ENV!=="production"&&Xe(`value cannot be made ${t?"readonly":"reactive"}: ${String(e)}`),e;if(e.__v_raw&&!(t&&e.__v_isReactive))return e;const r=a.get(e);if(r)return r;const s=Jh(e);if(s===0)return e;const o=new Proxy(e,s===2?u:n);return a.set(e,o),o}function bt(e){return ke(e)?bt(e.__v_raw):!!(e&&e.__v_isReactive)}function ke(e){return!!(e&&e.__v_isReadonly)}function Ve(e){return!!(e&&e.__v_isShallow)}function Nu(e){return e?!!e.__v_raw:!1}function P(e){const t=e&&e.__v_raw;return t?P(t):e}function zh(e){return Object.isExtensible(e)&&Fh(e,"__v_skip",!0),e}const Gt=e=>Ee(e)?Oa(e):e,Du=e=>Ee(e)?Ta(e):e,Qh="Computed is still dirty after getter evaluation, likely because a computed is mutating its own dependency in its getter. State mutations in computed getters should be avoided. Check the docs for more details: https://vuejs.org/guide/essentials/computed.html#getters-should-be-side-effect-free";class La{constructor(t,n,u,a){this.getter=t,this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new la(()=>t(this._value),()=>$n(this,this.effect._dirtyLevel===2?2:3)),this.effect.computed=this,this.effect.active=this._cacheable=!a,this.__v_isReadonly=u}get value(){const t=P(this);return(!t._cacheable||t.effect.dirty)&&Ke(t._value,t._value=t.effect.run())&&$n(t,4),ya(t),t.effect._dirtyLevel>=2&&(process.env.NODE_ENV!=="production"&&this._warnRecursive&&Xe(Qh,`
|
|
28
|
-
|
|
29
|
-
getter: `,this.getter),$n(t,2)),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function Zh(e,t,n=!1){let u,a;const r=re(e);r?(u=e,a=process.env.NODE_ENV!=="production"?()=>{Xe("Write operation failed: computed value is readonly")}:je):(u=e.get,a=e.set);const s=new La(u,a,r||!a,n);return process.env.NODE_ENV!=="production"&&t&&!n&&(s.effect.onTrack=t.onTrack,s.effect.onTrigger=t.onTrigger),s}function ya(e){var t;qe&&rt&&(e=P(e),Ea(rt,(t=e.dep)!=null?t:e.dep=pa(()=>e.dep=void 0,e instanceof La?e:void 0),process.env.NODE_ENV!=="production"?{target:e,type:"get",key:"value"}:void 0))}function $n(e,t=4,n,u){e=P(e);const a=e.dep;a&&ma(a,t,process.env.NODE_ENV!=="production"?{target:e,type:"set",key:"value",newValue:n,oldValue:u}:void 0)}function pe(e){return!!(e&&e.__v_isRef===!0)}function Ct(e){return wa(e,!1)}function Ra(e){return wa(e,!0)}function wa(e,t){return pe(e)?e:new Yh(e,t)}class Yh{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:P(t),this._value=n?t:Gt(t)}get value(){return ya(this),this._value}set value(t){const n=this.__v_isShallow||Ve(t)||ke(t);if(t=n?t:P(t),Ke(t,this._rawValue)){const u=this._rawValue;this._rawValue=t,this._value=n?t:Gt(t),$n(this,4,t,u)}}}function ev(e){return pe(e)?e.value:e}const tv={get:(e,t,n)=>ev(Reflect.get(e,t,n)),set:(e,t,n,u)=>{const a=e[t];return pe(a)&&!pe(n)?(a.value=n,!0):Reflect.set(e,t,n,u)}};function nv(e){return bt(e)?e:new Proxy(e,tv)}/**
|
|
30
|
-
* @vue/runtime-core v3.4.35
|
|
31
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
32
|
-
* @license MIT
|
|
33
|
-
**/const st=[];function uv(e){st.push(e)}function rv(){st.pop()}let Iu=!1;function Z(e,...t){if(Iu)return;Iu=!0,Wt();const n=st.length?st[st.length-1].component:null,u=n&&n.appContext.config.warnHandler,a=av();if(u)ot(u,n,11,[e+t.map(r=>{var s,o;return(o=(s=r.toString)==null?void 0:s.call(r))!=null?o:JSON.stringify(r)}).join(""),n&&n.proxy,a.map(({vnode:r})=>`at <${as(n,r.type)}>`).join(`
|
|
34
|
-
`),a]);else{const r=[`[Vue warn]: ${e}`,...t];a.length&&r.push(`
|
|
35
|
-
`,...sv(a)),console.warn(...r)}Ht(),Iu=!1}function av(){let e=st[st.length-1];if(!e)return[];const t=[];for(;e;){const n=t[0];n&&n.vnode===e?n.recurseCount++:t.push({vnode:e,recurseCount:0});const u=e.component&&e.component.parent;e=u&&u.vnode}return t}function sv(e){const t=[];return e.forEach((n,u)=>{t.push(...u===0?[]:[`
|
|
36
|
-
`],...ov(n))}),t}function ov({vnode:e,recurseCount:t}){const n=t>0?`... (${t} recursive calls)`:"",u=e.component?e.component.parent==null:!1,a=` at <${as(e.component,e.type,u)}`,r=">"+n;return e.props?[a,...iv(e.props),r]:[a+r]}function iv(e){const t=[],n=Object.keys(e);return n.slice(0,3).forEach(u=>{t.push(...Ma(u,e[u]))}),n.length>3&&t.push(" ..."),t}function Ma(e,t,n){return Se(t)?(t=JSON.stringify(t),n?t:[`${e}=${t}`]):typeof t=="number"||typeof t=="boolean"||t==null?n?t:[`${e}=${t}`]:pe(t)?(t=Ma(e,P(t.value),!0),n?t:[`${e}=Ref<`,t,">"]):re(t)?[`${e}=fn${t.name?`<${t.name}>`:""}`]:(t=P(t),n?t:[`${e}=`,t])}const Su={sp:"serverPrefetch hook",bc:"beforeCreate hook",c:"created hook",bm:"beforeMount hook",m:"mounted hook",bu:"beforeUpdate hook",u:"updated",bum:"beforeUnmount hook",um:"unmounted hook",a:"activated hook",da:"deactivated hook",ec:"errorCaptured hook",rtc:"renderTracked hook",rtg:"renderTriggered hook",[0]:"setup function",[1]:"render function",[2]:"watcher getter",[3]:"watcher callback",[4]:"watcher cleanup function",[5]:"native event handler",[6]:"component event handler",[7]:"vnode hook",[8]:"directive hook",[9]:"transition hook",[10]:"app errorHandler",[11]:"app warnHandler",[12]:"ref function",[13]:"async component loader",[14]:"scheduler flush",[15]:"component update"};function ot(e,t,n,u){try{return u?e(...u):e()}catch(a){Bu(a,t,n)}}function jt(e,t,n,u){if(re(e)){const a=ot(e,t,n,u);return a&&vh(a)&&a.catch(r=>{Bu(r,t,n)}),a}if(q(e)){const a=[];for(let r=0;r<e.length;r++)a.push(jt(e[r],t,n,u));return a}else process.env.NODE_ENV!=="production"&&Z(`Invalid value type passed to callWithAsyncErrorHandling(): ${typeof e}`)}function Bu(e,t,n,u=!0){const a=t?t.vnode:null;if(t){let r=t.parent;const s=t.proxy,o=process.env.NODE_ENV!=="production"?Su[n]:`https://vuejs.org/error-reference/#runtime-${n}`;for(;r;){const d=r.ec;if(d){for(let p=0;p<d.length;p++)if(d[p](e,s,o)===!1)return}r=r.parent}const i=t.appContext.config.errorHandler;if(i){Wt(),ot(i,null,10,[e,s,o]),Ht();return}}lv(e,n,a,u)}function lv(e,t,n,u=!0){if(process.env.NODE_ENV!=="production"){const a=Su[t];if(n&&uv(n),Z(`Unhandled error${a?` during execution of ${a}`:""}`),n&&rv(),u)throw e;console.error(e)}else console.error(e)}let Pn=!1,Ou=!1;const Oe=[];let Qe=0;const Ft=[];let Ze=null,it=0;const $a=Promise.resolve();let Tu=null;const cv=100;function fv(e){const t=Tu||$a;return e?t.then(this?e.bind(this):e):t}function dv(e){let t=Qe+1,n=Oe.length;for(;t<n;){const u=t+n>>>1,a=Oe[u],r=Kt(a);r<e||r===e&&a.pre?t=u+1:n=u}return t}function Lu(e){(!Oe.length||!Oe.includes(e,Pn&&e.allowRecurse?Qe+1:Qe))&&(e.id==null?Oe.push(e):Oe.splice(dv(e.id),0,e),Pa())}function Pa(){!Pn&&!Ou&&(Ou=!0,Tu=$a.then(Va))}function ka(e){q(e)?Ft.push(...e):(!Ze||!Ze.includes(e,e.allowRecurse?it+1:it))&&Ft.push(e),Pa()}function _v(e){if(Ft.length){const t=[...new Set(Ft)].sort((n,u)=>Kt(n)-Kt(u));if(Ft.length=0,Ze){Ze.push(...t);return}for(Ze=t,process.env.NODE_ENV!=="production"&&(e=e||new Map),it=0;it<Ze.length;it++){const n=Ze[it];process.env.NODE_ENV!=="production"&&Ua(e,n)||n.active!==!1&&n()}Ze=null,it=0}}const Kt=e=>e.id==null?1/0:e.id,Ev=(e,t)=>{const n=Kt(e)-Kt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Va(e){Ou=!1,Pn=!0,process.env.NODE_ENV!=="production"&&(e=e||new Map),Oe.sort(Ev);const t=process.env.NODE_ENV!=="production"?n=>Ua(e,n):je;try{for(Qe=0;Qe<Oe.length;Qe++){const n=Oe[Qe];if(n&&n.active!==!1){if(process.env.NODE_ENV!=="production"&&t(n))continue;ot(n,n.i,n.i?15:14)}}}finally{Qe=0,Oe.length=0,_v(e),Pn=!1,Tu=null,(Oe.length||Ft.length)&&Va(e)}}function Ua(e,t){if(!e.has(t))e.set(t,1);else{const n=e.get(t);if(n>cv){const u=t.i,a=u&&rs(u.type);return Bu(`Maximum recursive updates exceeded${a?` in component <${a}>`:""}. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function.`,null,10),!0}else e.set(t,n+1)}}const yu=new Map;process.env.NODE_ENV!=="production"&&(ia().__VUE_HMR_RUNTIME__={createRecord:Ru(mv),rerender:Ru(pv),reload:Ru(hv)});const kn=new Map;function mv(e,t){return kn.has(e)?!1:(kn.set(e,{initialDef:Vn(t),instances:new Set}),!0)}function Vn(e){return ss(e)?e.__vccOpts:e}function pv(e,t){const n=kn.get(e);!n||(n.initialDef.render=t,[...n.instances].forEach(u=>{t&&(u.render=t,Vn(u.type).render=t),u.renderCache=[],u.effect.dirty=!0,u.update()}))}function hv(e,t){const n=kn.get(e);if(!n)return;t=Vn(t),xa(n.initialDef,t);const u=[...n.instances];for(let a=0;a<u.length;a++){const r=u[a],s=Vn(r.type);let o=yu.get(s);o||(s!==n.initialDef&&xa(s,t),yu.set(s,o=new Set)),o.add(r),r.appContext.propsCache.delete(r.type),r.appContext.emitsCache.delete(r.type),r.appContext.optionsCache.delete(r.type),r.ceReload?(o.add(r),r.ceReload(t.styles),o.delete(r)):r.parent?(r.parent.effect.dirty=!0,Lu(()=>{r.parent.update(),o.delete(r)})):r.appContext.reload?r.appContext.reload():typeof window!="undefined"?window.location.reload():console.warn("[HMR] Root or manually mounted instance modified. Full reload required.")}ka(()=>{yu.clear()})}function xa(e,t){Fe(e,t);for(const n in e)n!=="__file"&&!(n in t)&&delete e[n]}function Ru(e){return(t,n)=>{try{return e(t,n)}catch(u){console.error(u),console.warn("[HMR] Something went wrong during Vue component hot-reload. Full reload required.")}}}let At,Un=[];function Wa(e,t){var n,u;At=e,At?(At.enabled=!0,Un.forEach(({event:a,args:r})=>At.emit(a,...r)),Un=[]):typeof window!="undefined"&&window.HTMLElement&&!((u=(n=window.navigator)==null?void 0:n.userAgent)!=null&&u.includes("jsdom"))?((t.__VUE_DEVTOOLS_HOOK_REPLAY__=t.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(r=>{Wa(r,t)}),setTimeout(()=>{At||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,Un=[])},3e3)):Un=[]}let ye=null,vv=null;function Ha(e,t){e.shapeFlag&6&&e.component?Ha(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}/*! #__NO_SIDE_EFFECTS__ */function wu(e,t){return re(e)?(()=>Fe({name:e.name},t,{setup:e}))():e}function gv(e,t,n=ct,u=!1){if(n){const a=n[e]||(n[e]=[]),r=t.__weh||(t.__weh=(...s)=>{Wt();const o=us(n),i=jt(t,n,e,s);return o(),Ht(),i});return u?a.unshift(r):a.push(r),r}else if(process.env.NODE_ENV!=="production"){const a=Ch(Su[e].replace(/ hook$/,""));Z(`${a} is called when there is no active component instance to be associated with. Lifecycle injection APIs can only be used during execution of setup(). If you are using async setup(), make sure to register lifecycle hooks before the first await statement.`)}}const Mu=e=>(t,n=ct)=>{(!Kn||e==="sp")&&gv(e,(...u)=>t(...u),n)},bv=Mu("bm"),Cv=Mu("m"),Fv=Mu("um"),Av=Symbol.for("v-ndc"),$u=e=>e?Kv(e)?Xv(e):$u(e.parent):null,Xt=Fe(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>process.env.NODE_ENV!=="production"?Mn(e.props):e.props,$attrs:e=>process.env.NODE_ENV!=="production"?Mn(e.attrs):e.attrs,$slots:e=>process.env.NODE_ENV!=="production"?Mn(e.slots):e.slots,$refs:e=>process.env.NODE_ENV!=="production"?Mn(e.refs):e.refs,$parent:e=>$u(e.parent),$root:e=>$u(e.root),$emit:e=>e.emit,$options:e=>__VUE_OPTIONS_API__?Sv(e):e.type,$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,Lu(e.update)}),$nextTick:e=>e.n||(e.n=fv.bind(e.proxy)),$watch:e=>__VUE_OPTIONS_API__?$v.bind(e):je}),Nv=e=>e==="_"||e==="$",Pu=(e,t)=>e!==Le&&!e.__isScriptSetup&&ue(e,t),Dv={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:u,data:a,props:r,accessCache:s,type:o,appContext:i}=e;if(process.env.NODE_ENV!=="production"&&t==="__isVue")return!0;let d;if(t[0]!=="$"){const N=s[t];if(N!==void 0)switch(N){case 1:return u[t];case 2:return a[t];case 4:return n[t];case 3:return r[t]}else{if(Pu(u,t))return s[t]=1,u[t];if(a!==Le&&ue(a,t))return s[t]=2,a[t];if((d=e.propsOptions[0])&&ue(d,t))return s[t]=3,r[t];if(n!==Le&&ue(n,t))return s[t]=4,n[t];(!__VUE_OPTIONS_API__||Iv)&&(s[t]=0)}}const p=Xt[t];let f,_;if(p)return t==="$attrs"?(ce(e.attrs,"get",""),process.env.NODE_ENV!=="production"&&void 0):process.env.NODE_ENV!=="production"&&t==="$slots"&&ce(e,"get",t),p(e);if((f=o.__cssModules)&&(f=f[t]))return f;if(n!==Le&&ue(n,t))return s[t]=4,n[t];if(_=i.config.globalProperties,ue(_,t))return _[t];process.env.NODE_ENV!=="production"&&ye&&(!Se(t)||t.indexOf("__v")!==0)&&(a!==Le&&Nv(t[0])&&ue(a,t)?Z(`Property ${JSON.stringify(t)} must be accessed via $data because it starts with a reserved character ("$" or "_") and is not proxied on the render context.`):e===ye&&Z(`Property ${JSON.stringify(t)} was accessed during render but is not defined on instance.`))},set({_:e},t,n){const{data:u,setupState:a,ctx:r}=e;return Pu(a,t)?(a[t]=n,!0):process.env.NODE_ENV!=="production"&&a.__isScriptSetup&&ue(a,t)?(Z(`Cannot mutate <script setup> binding "${t}" from Options API.`),!1):u!==Le&&ue(u,t)?(u[t]=n,!0):ue(e.props,t)?(process.env.NODE_ENV!=="production"&&Z(`Attempting to mutate prop "${t}". Props are readonly.`),!1):t[0]==="$"&&t.slice(1)in e?(process.env.NODE_ENV!=="production"&&Z(`Attempting to mutate public property "${t}". Properties starting with $ are reserved and readonly.`),!1):(process.env.NODE_ENV!=="production"&&t in e.appContext.config.globalProperties?Object.defineProperty(r,t,{enumerable:!0,configurable:!0,value:n}):r[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:u,appContext:a,propsOptions:r}},s){let o;return!!n[s]||e!==Le&&ue(e,s)||Pu(t,s)||(o=r[0])&&ue(o,s)||ue(u,s)||ue(Xt,s)||ue(a.config.globalProperties,s)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:ue(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};process.env.NODE_ENV!=="production"&&(Dv.ownKeys=e=>(Z("Avoid app logic that relies on enumerating keys on a component instance. The keys will be empty in production mode to avoid performance overhead."),Reflect.ownKeys(e)));function Ga(e){return q(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Iv=!0;function Sv(e){const t=e.type,{mixins:n,extends:u}=t,{mixins:a,optionsCache:r,config:{optionMergeStrategies:s}}=e.appContext,o=r.get(t);let i;return o?i=o:!a.length&&!n&&!u?i=t:(i={},a.length&&a.forEach(d=>xn(i,d,s,!0)),xn(i,t,s)),Ee(t)&&r.set(t,i),i}function xn(e,t,n,u=!1){const{mixins:a,extends:r}=t;r&&xn(e,r,n,!0),a&&a.forEach(s=>xn(e,s,n,!0));for(const s in t)if(u&&s==="expose")process.env.NODE_ENV!=="production"&&Z('"expose" option is ignored when declared in mixins or extends. It should only be declared in the base component itself.');else{const o=Bv[s]||n&&n[s];e[s]=o?o(e[s],t[s]):t[s]}return e}const Bv={data:ja,props:Xa,emits:Xa,methods:qt,computed:qt,beforeCreate:me,created:me,beforeMount:me,mounted:me,beforeUpdate:me,updated:me,beforeDestroy:me,beforeUnmount:me,destroyed:me,unmounted:me,activated:me,deactivated:me,errorCaptured:me,serverPrefetch:me,components:qt,directives:qt,watch:Tv,provide:ja,inject:Ov};function ja(e,t){return t?e?function(){return Fe(re(e)?e.call(this,this):e,re(t)?t.call(this,this):t)}:t:e}function Ov(e,t){return qt(Ka(e),Ka(t))}function Ka(e){if(q(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function me(e,t){return e?[...new Set([].concat(e,t))]:t}function qt(e,t){return e?Fe(Object.create(null),e,t):t}function Xa(e,t){return e?q(e)&&q(t)?[...new Set([...e,...t])]:Fe(Object.create(null),Ga(e),Ga(t!=null?t:{})):t}function Tv(e,t){if(!e)return t;if(!t)return e;const n=Fe(Object.create(null),e);for(const u in t)n[u]=me(e[u],t[u]);return n}function Lv(){return{app:null,config:{isNativeTag:_h,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let qa=null;function Ja(e,t,n=!1){const u=ct||ye;if(u||qa){const a=u?u.parent==null?u.vnode.appContext&&u.vnode.appContext.provides:u.parent.provides:qa._context.provides;if(a&&e in a)return a[e];if(arguments.length>1)return n&&re(t)?t.call(u&&u.proxy):t;process.env.NODE_ENV!=="production"&&Z(`injection "${String(e)}" not found.`)}else process.env.NODE_ENV!=="production"&&Z("inject() can only be used inside setup() or functional components.")}const yv={},za=e=>Object.getPrototypeOf(e)===yv,Rv=e=>e.__isTeleport,Qa=Vv,wv=Symbol.for("v-scx"),Mv=()=>{{const e=Ja(wv);return e||process.env.NODE_ENV!=="production"&&Z("Server rendering context not provided. Make sure to only call useSSRContext() conditionally in the server build."),e}},Wn={};function ku(e,t,n){return process.env.NODE_ENV!=="production"&&!re(t)&&Z("`watch(fn, options?)` signature has been moved to a separate API. Use `watchEffect(fn, options?)` instead. `watch` now only supports `watch(source, cb, options?) signature."),Za(e,t,n)}function Za(e,t,{immediate:n,deep:u,flush:a,once:r,onTrack:s,onTrigger:o}=Le){if(t&&r){const v=t;t=(...T)=>{v(...T),g()}}process.env.NODE_ENV!=="production"&&u!==void 0&&typeof u=="number"&&Z('watch() "deep" option with number value will be used as watch depth in future versions. Please use a boolean instead to avoid potential breakage.'),process.env.NODE_ENV!=="production"&&!t&&(n!==void 0&&Z('watch() "immediate" option is only respected when using the watch(source, callback, options?) signature.'),u!==void 0&&Z('watch() "deep" option is only respected when using the watch(source, callback, options?) signature.'),r!==void 0&&Z('watch() "once" option is only respected when using the watch(source, callback, options?) signature.'));const i=v=>{Z("Invalid watch source: ",v,"A watch source can only be a getter/effect function, a ref, a reactive object, or an array of these types.")},d=ct,p=v=>u===!0?v:lt(v,u===!1?1:void 0);let f,_=!1,N=!1;if(pe(e)?(f=()=>e.value,_=Ve(e)):bt(e)?(f=()=>p(e),_=!0):q(e)?(N=!0,_=e.some(v=>bt(v)||Ve(v)),f=()=>e.map(v=>{if(pe(v))return v.value;if(bt(v))return p(v);if(re(v))return ot(v,d,2);process.env.NODE_ENV!=="production"&&i(v)})):re(e)?t?f=()=>ot(e,d,2):f=()=>(S&&S(),jt(e,d,3,[L])):(f=je,process.env.NODE_ENV!=="production"&&i(e)),t&&u){const v=f;f=()=>lt(v())}let S,L=v=>{S=m.onStop=()=>{ot(v,d,4),S=m.onStop=void 0}},y;if(Kn)if(L=je,t?n&&jt(t,d,3,[f(),N?[]:void 0,L]):f(),a==="sync"){const v=Mv();y=v.__watcherHandles||(v.__watcherHandles=[])}else return je;let b=N?new Array(e.length).fill(Wn):Wn;const C=()=>{if(!(!m.active||!m.dirty))if(t){const v=m.run();(u||_||(N?v.some((T,I)=>Ke(T,b[I])):Ke(v,b)))&&(S&&S(),jt(t,d,3,[v,b===Wn?void 0:N&&b[0]===Wn?[]:b,L]),b=v)}else m.run()};C.allowRecurse=!!t;let E;a==="sync"?E=C:a==="post"?E=()=>Qa(C,d&&d.suspense):(C.pre=!0,d&&(C.id=d.uid),E=()=>Lu(C));const m=new la(f,je,E),A=Th(),g=()=>{m.stop(),A&&mh(A.effects,m)};return process.env.NODE_ENV!=="production"&&(m.onTrack=s,m.onTrigger=o),t?n?C():b=m.run():a==="post"?Qa(m.run.bind(m),d&&d.suspense):m.run(),y&&y.push(g),g}function $v(e,t,n){const u=this.proxy,a=Se(e)?e.includes(".")?Pv(u,e):()=>u[e]:e.bind(u,u);let r;re(t)?r=t:(r=t.handler,n=t);const s=us(this),o=Za(a,r.bind(u),n);return s(),o}function Pv(e,t){const n=t.split(".");return()=>{let u=e;for(let a=0;a<n.length&&u;a++)u=u[n[a]];return u}}function lt(e,t=1/0,n){if(t<=0||!Ee(e)||e.__v_skip||(n=n||new Set,n.has(e)))return e;if(n.add(e),t--,pe(e))lt(e.value,t,n);else if(q(e))for(let u=0;u<e.length;u++)lt(e[u],t,n);else if(hh(e)||gt(e))e.forEach(u=>{lt(u,t,n)});else if(bh(e)){for(const u in e)lt(e[u],t,n);for(const u of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,u)&<(e[u],t,n)}return e}function v5(){}const kv=e=>e.__isSuspense;function Vv(e,t){t&&t.pendingBranch?q(e)?t.effects.push(...e):t.effects.push(e):ka(e)}const Hn=Symbol.for("v-fgt"),Ya=Symbol.for("v-txt"),Uv=Symbol.for("v-cmt");let Nt=null;function Vu(e){return e?e.__v_isVNode===!0:!1}const xv=(...e)=>ts(...e),es=({key:e})=>e!=null?e:null,Gn=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?Se(e)||pe(e)||re(e)?{i:ye,r:e,k:t,f:!!n}:e:null);function Wv(e,t=null,n=null,u=0,a=null,r=e===Hn?0:1,s=!1,o=!1){const i={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&es(t),ref:t&&Gn(t),scopeId:vv,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:r,patchFlag:u,dynamicProps:a,dynamicChildren:null,appContext:null,ctx:ye};return o?(Uu(i,n),r&128&&e.normalize(i)):n&&(i.shapeFlag|=Se(n)?8:16),process.env.NODE_ENV!=="production"&&i.key!==i.key&&Z("VNode created with invalid key (NaN). VNode type:",i.type),!s&&Nt&&(i.patchFlag>0||r&6)&&i.patchFlag!==32&&Nt.push(i),i}const Dt=process.env.NODE_ENV!=="production"?xv:ts;function ts(e,t=null,n=null,u=0,a=null,r=!1){if((!e||e===Av)&&(process.env.NODE_ENV!=="production"&&!e&&Z(`Invalid vnode type when creating vnode: ${e}.`),e=Uv),Vu(e)){const o=jn(e,t,!0);return n&&Uu(o,n),!r&&Nt&&(o.shapeFlag&6?Nt[Nt.indexOf(e)]=o:Nt.push(o)),o.patchFlag=-2,o}if(ss(e)&&(e=e.__vccOpts),t){t=Hv(t);let{class:o,style:i}=t;o&&!Se(o)&&(t.class=Eu(o)),Ee(i)&&(Nu(i)&&!q(i)&&(i=Fe({},i)),t.style=_u(i))}const s=Se(e)?1:kv(e)?128:Rv(e)?64:Ee(e)?4:re(e)?2:0;return process.env.NODE_ENV!=="production"&&s&4&&Nu(e)&&(e=P(e),Z("Vue received a Component that was made a reactive object. This can lead to unnecessary performance overhead and should be avoided by marking the component with `markRaw` or using `shallowRef` instead of `ref`.",`
|
|
37
|
-
Component that was made reactive: `,e)),Wv(e,t,n,u,a,s,r,!0)}function Hv(e){return e?Nu(e)||za(e)?Fe({},e):e:null}function jn(e,t,n=!1,u=!1){const{props:a,ref:r,patchFlag:s,children:o,transition:i}=e,d=t?jv(a||{},t):a,p={__v_isVNode:!0,__v_skip:!0,type:e.type,props:d,key:d&&es(d),ref:t&&t.ref?n&&r?q(r)?r.concat(Gn(t)):[r,Gn(t)]:Gn(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:process.env.NODE_ENV!=="production"&&s===-1&&q(o)?o.map(ns):o,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Hn?s===-1?16:s|16:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:i,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&jn(e.ssContent),ssFallback:e.ssFallback&&jn(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return i&&u&&Ha(p,i.clone(p)),p}function ns(e){const t=jn(e);return q(e.children)&&(t.children=e.children.map(ns)),t}function Gv(e=" ",t=0){return Dt(Ya,null,e,t)}function Uu(e,t){let n=0;const{shapeFlag:u}=e;if(t==null)t=null;else if(q(t))n=16;else if(typeof t=="object")if(u&65){const a=t.default;a&&(a._c&&(a._d=!1),Uu(e,a()),a._c&&(a._d=!0));return}else{n=32;const a=t._;!a&&!za(t)?t._ctx=ye:a===3&&ye&&(ye.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else re(t)?(t={default:t,_ctx:ye},n=32):(t=String(t),u&64?(n=16,t=[Gv(t)]):n=8);e.children=t,e.shapeFlag|=n}function jv(...e){const t={};for(let n=0;n<e.length;n++){const u=e[n];for(const a in u)if(a==="class")t.class!==u.class&&(t.class=Eu([t.class,u.class]));else if(a==="style")t.style=_u([t.style,u.style]);else if(Eh(a)){const r=t[a],s=u[a];s&&r!==s&&!(q(r)&&r.includes(s))&&(t[a]=r?[].concat(r,s):s)}else a!==""&&(t[a]=u[a])}return t}Lv();let ct=null;const It=()=>ct||ye;let xu;{const e=ia(),t=(n,u)=>{let a;return(a=e[n])||(a=e[n]=[]),a.push(u),r=>{a.length>1?a.forEach(s=>s(r)):a[0](r)}};xu=t("__VUE_INSTANCE_SETTERS__",n=>ct=n),t("__VUE_SSR_SETTERS__",n=>Kn=n)}const us=e=>{const t=ct;return xu(e),e.scope.on(),()=>{e.scope.off(),xu(t)}};function Kv(e){return e.vnode.shapeFlag&4}let Kn=!1;process.env.NODE_ENV;function Xv(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(nv(zh(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Xt)return Xt[n](e)},has(t,n){return n in t||n in Xt}})):e.proxy}const qv=/(?:^|[-_])(\w)/g,Jv=e=>e.replace(qv,t=>t.toUpperCase()).replace(/[-_]/g,"");function rs(e,t=!0){return re(e)?e.displayName||e.name:e.name||t&&e.__name}function as(e,t,n=!1){let u=rs(t);if(!u&&t.__file){const a=t.__file.match(/([^/\\]+)\.\w+$/);a&&(u=a[1])}if(!u&&e&&e.parent){const a=r=>{for(const s in r)if(r[s]===t)return s};u=a(e.components||e.parent.type.components)||a(e.appContext.components)}return u?Jv(u):n?"App":"Anonymous"}function ss(e){return re(e)&&"__vccOpts"in e}const Re=(e,t)=>{const n=Zh(e,t,Kn);if(process.env.NODE_ENV!=="production"){const u=It();u&&u.appContext.config.warnRecursiveComputed&&(n._warnRecursive=!0)}return n};function os(e,t,n){const u=arguments.length;return u===2?Ee(t)&&!q(t)?Vu(t)?Dt(e,null,[t]):Dt(e,t):Dt(e,null,t):(u>3?n=Array.prototype.slice.call(arguments,2):u===3&&Vu(n)&&(n=[n]),Dt(e,t,n))}function zv(){if(process.env.NODE_ENV==="production"||typeof window=="undefined")return;const e={style:"color:#3ba776"},t={style:"color:#1677ff"},n={style:"color:#f5222d"},u={style:"color:#eb2f96"},a={__vue_custom_formatter:!0,header(f){return Ee(f)?f.__isVue?["div",e,"VueInstance"]:pe(f)?["div",{},["span",e,p(f)],"<",o(f.value),">"]:bt(f)?["div",{},["span",e,Ve(f)?"ShallowReactive":"Reactive"],"<",o(f),`>${ke(f)?" (readonly)":""}`]:ke(f)?["div",{},["span",e,Ve(f)?"ShallowReadonly":"Readonly"],"<",o(f),">"]:null:null},hasBody(f){return f&&f.__isVue},body(f){if(f&&f.__isVue)return["div",{},...r(f.$)]}};function r(f){const _=[];f.type.props&&f.props&&_.push(s("props",P(f.props))),f.setupState!==Le&&_.push(s("setup",f.setupState)),f.data!==Le&&_.push(s("data",P(f.data)));const N=i(f,"computed");N&&_.push(s("computed",N));const S=i(f,"inject");return S&&_.push(s("injected",S)),_.push(["div",{},["span",{style:u.style+";opacity:0.66"},"$ (internal): "],["object",{object:f}]]),_}function s(f,_){return _=Fe({},_),Object.keys(_).length?["div",{style:"line-height:1.25em;margin-bottom:0.6em"},["div",{style:"color:#476582"},f],["div",{style:"padding-left:1.25em"},...Object.keys(_).map(N=>["div",{},["span",u,N+": "],o(_[N],!1)])]]:["span",{}]}function o(f,_=!0){return typeof f=="number"?["span",t,f]:typeof f=="string"?["span",n,JSON.stringify(f)]:typeof f=="boolean"?["span",u,f]:Ee(f)?["object",{object:_?P(f):f}]:["span",n,String(f)]}function i(f,_){const N=f.type;if(re(N))return;const S={};for(const L in f.ctx)d(N,L,_)&&(S[L]=f.ctx[L]);return S}function d(f,_,N){const S=f[N];if(q(S)&&S.includes(_)||Ee(S)&&_ in S||f.extends&&d(f.extends,_,N)||f.mixins&&f.mixins.some(L=>d(L,_,N)))return!0}function p(f){return Ve(f)?"ShallowRef":f.effect?"ComputedRef":"Ref"}window.devtoolsFormatters?window.devtoolsFormatters.push(a):window.devtoolsFormatters=[a]}process.env.NODE_ENV,process.env.NODE_ENV,process.env.NODE_ENV;/**
|
|
38
|
-
* vue v3.4.35
|
|
39
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
40
|
-
* @license MIT
|
|
41
|
-
**/function Qv(){zv()}process.env.NODE_ENV!=="production"&&Qv();function Zv(){return is().__VUE_DEVTOOLS_GLOBAL_HOOK__}function is(){return typeof navigator!="undefined"&&typeof window!="undefined"?window:typeof globalThis!="undefined"?globalThis:{}}const Yv=typeof Proxy=="function",eg="devtools-plugin:setup",tg="plugin:settings:set";let St,Wu;function ng(){var e;return St!==void 0||(typeof window!="undefined"&&window.performance?(St=!0,Wu=window.performance):typeof globalThis!="undefined"&&((e=globalThis.perf_hooks)===null||e===void 0?void 0:e.performance)?(St=!0,Wu=globalThis.perf_hooks.performance):St=!1),St}function ug(){return ng()?Wu.now():Date.now()}class rg{constructor(t,n){this.target=null,this.targetQueue=[],this.onQueue=[],this.plugin=t,this.hook=n;const u={};if(t.settings)for(const s in t.settings){const o=t.settings[s];u[s]=o.defaultValue}const a=`__vue-devtools-plugin-settings__${t.id}`;let r=Object.assign({},u);try{const s=localStorage.getItem(a),o=JSON.parse(s);Object.assign(r,o)}catch(s){}this.fallbacks={getSettings(){return r},setSettings(s){try{localStorage.setItem(a,JSON.stringify(s))}catch(o){}r=s},now(){return ug()}},n&&n.on(tg,(s,o)=>{s===this.plugin.id&&this.fallbacks.setSettings(o)}),this.proxiedOn=new Proxy({},{get:(s,o)=>this.target?this.target.on[o]:(...i)=>{this.onQueue.push({method:o,args:i})}}),this.proxiedTarget=new Proxy({},{get:(s,o)=>this.target?this.target[o]:o==="on"?this.proxiedOn:Object.keys(this.fallbacks).includes(o)?(...i)=>(this.targetQueue.push({method:o,args:i,resolve:()=>{}}),this.fallbacks[o](...i)):(...i)=>new Promise(d=>{this.targetQueue.push({method:o,args:i,resolve:d})})})}setRealTarget(t){return mn(this,null,function*(){this.target=t;for(const n of this.onQueue)this.target.on[n.method](...n.args);for(const n of this.targetQueue)n.resolve(yield this.target[n.method](...n.args))})}}function ag(e,t){const n=e,u=is(),a=Zv(),r=Yv&&n.enableEarlyProxy;if(a&&(u.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__||!r))a.emit(eg,e,t);else{const s=r?new rg(n,a):null;(u.__VUE_DEVTOOLS_PLUGINS__=u.__VUE_DEVTOOLS_PLUGINS__||[]).push({pluginDescriptor:n,setupFn:t,proxy:s}),s&&t(s.proxiedTarget)}}/*!
|
|
42
|
-
* vue-i18n v9.13.1
|
|
43
|
-
* (c) 2024 kazuya kawaguchi
|
|
44
|
-
* Released under the MIT License.
|
|
45
|
-
*/const sg="9.13.1";function og(){typeof __VUE_I18N_FULL_INSTALL__!="boolean"&&($e().__VUE_I18N_FULL_INSTALL__=!0),typeof __VUE_I18N_LEGACY_API__!="boolean"&&($e().__VUE_I18N_LEGACY_API__=!0),typeof __INTLIFY_JIT_COMPILATION__!="boolean"&&($e().__INTLIFY_JIT_COMPILATION__=!1),typeof __INTLIFY_DROP_MESSAGE_COMPILER__!="boolean"&&($e().__INTLIFY_DROP_MESSAGE_COMPILER__=!1),typeof __INTLIFY_PROD_DEVTOOLS__!="boolean"&&($e().__INTLIFY_PROD_DEVTOOLS__=!1)}const ls=_e.__EXTEND_POINT__,Ue=bn(ls),Y={FALLBACK_TO_ROOT:ls,NOT_SUPPORTED_PRESERVE:Ue(),NOT_SUPPORTED_FORMATTER:Ue(),NOT_SUPPORTED_PRESERVE_DIRECTIVE:Ue(),NOT_SUPPORTED_GET_CHOICE_INDEX:Ue(),COMPONENT_NAME_LEGACY_COMPATIBLE:Ue(),NOT_FOUND_PARENT_SCOPE:Ue(),IGNORE_OBJ_FLATTEN:Ue(),NOTICE_DROP_ALLOW_COMPOSITION:Ue(),NOTICE_DROP_TRANSLATE_EXIST_COMPATIBLE_FLAG:Ue()},ig={[Y.FALLBACK_TO_ROOT]:"Fall back to {type} '{key}' with root locale.",[Y.NOT_SUPPORTED_PRESERVE]:"Not supported 'preserve'.",[Y.NOT_SUPPORTED_FORMATTER]:"Not supported 'formatter'.",[Y.NOT_SUPPORTED_PRESERVE_DIRECTIVE]:"Not supported 'preserveDirectiveContent'.",[Y.NOT_SUPPORTED_GET_CHOICE_INDEX]:"Not supported 'getChoiceIndex'.",[Y.COMPONENT_NAME_LEGACY_COMPATIBLE]:"Component name legacy compatible: '{name}' -> 'i18n'",[Y.NOT_FOUND_PARENT_SCOPE]:"Not found parent scope. use the global scope.",[Y.IGNORE_OBJ_FLATTEN]:"Ignore object flatten: '{key}' key has an string value",[Y.NOTICE_DROP_ALLOW_COMPOSITION]:"'allowComposition' option will be dropped in the next major version. For more information, please see \u{1F449} https://tinyurl.com/2p97mcze",[Y.NOTICE_DROP_TRANSLATE_EXIST_COMPATIBLE_FLAG]:"'translateExistCompatible' option will be dropped in the next major version."};function he(e,...t){return kt(ig[e],...t)}const cs=le.__EXTEND_POINT__,ve=bn(cs),V={UNEXPECTED_RETURN_TYPE:cs,INVALID_ARGUMENT:ve(),MUST_BE_CALL_SETUP_TOP:ve(),NOT_INSTALLED:ve(),NOT_AVAILABLE_IN_LEGACY_MODE:ve(),REQUIRED_VALUE:ve(),INVALID_VALUE:ve(),CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN:ve(),NOT_INSTALLED_WITH_PROVIDE:ve(),UNEXPECTED_ERROR:ve(),NOT_COMPATIBLE_LEGACY_VUE_I18N:ve(),BRIDGE_SUPPORT_VUE_2_ONLY:ve(),MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION:ve(),NOT_AVAILABLE_COMPOSITION_IN_LEGACY:ve(),__EXTEND_POINT__:ve()};function ie(e,...t){return Et(e,null,process.env.NODE_ENV!=="production"?{messages:lg,args:t}:void 0)}const lg={[V.UNEXPECTED_RETURN_TYPE]:"Unexpected return type in composer",[V.INVALID_ARGUMENT]:"Invalid argument",[V.MUST_BE_CALL_SETUP_TOP]:"Must be called at the top of a `setup` function",[V.NOT_INSTALLED]:"Need to install with `app.use` function",[V.UNEXPECTED_ERROR]:"Unexpected error",[V.NOT_AVAILABLE_IN_LEGACY_MODE]:"Not available in legacy mode",[V.REQUIRED_VALUE]:"Required in value: {0}",[V.INVALID_VALUE]:"Invalid value",[V.CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN]:"Cannot setup vue-devtools plugin",[V.NOT_INSTALLED_WITH_PROVIDE]:"Need to install with `provide` function",[V.NOT_COMPATIBLE_LEGACY_VUE_I18N]:"Not compatible legacy VueI18n.",[V.BRIDGE_SUPPORT_VUE_2_ONLY]:"vue-i18n-bridge support Vue 2.x only",[V.MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION]:"Must define \u2018i18n\u2019 option or custom block in Composition API with using local scope in Legacy API mode",[V.NOT_AVAILABLE_COMPOSITION_IN_LEGACY]:"Not available Compostion API in Legacy API mode. Please make sure that the legacy API mode is working properly"},Hu=De("__translateVNode"),Gu=De("__datetimeParts"),ju=De("__numberParts"),ft=De("__enableEmitter"),Jt=De("__disableEmitter"),fs=De("__setPluralRules");De("__intlifyMeta");const ds=De("__injectWithOption"),Ku=De("__dispose");function zt(e){if(!x(e))return e;for(const t in e)if(!!gn(e,t))if(!t.includes("."))x(e[t])&&zt(e[t]);else{const n=t.split("."),u=n.length-1;let a=e,r=!1;for(let s=0;s<u;s++){if(n[s]in a||(a[n[s]]={}),!x(a[n[s]])){process.env.NODE_ENV!=="production"&&oe(he(Y.IGNORE_OBJ_FLATTEN,{key:n[s]})),r=!0;break}a=a[n[s]]}r||(a[n[u]]=e[t],delete e[t]),x(a[n[u]])&&zt(a[n[u]])}return e}function Xn(e,t){const{messages:n,__i18n:u,messageResolver:a,flatJson:r}=t,s=M(n)?n:X(u)?{}:{[e]:{}};if(X(u)&&u.forEach(o=>{if("locale"in o&&"resource"in o){const{locale:i,resource:d}=o;i?(s[i]=s[i]||{},Fn(d,s[i])):Fn(d,s)}else O(o)&&Fn(JSON.parse(o),s)}),a==null&&r)for(const o in s)gn(s,o)&&zt(s[o]);return s}function _s(e){return e.type}function Es(e,t,n){let u=x(t.messages)?t.messages:{};"__i18nGlobal"in n&&(u=Xn(e.locale.value,{messages:u,__i18n:n.__i18nGlobal}));const a=Object.keys(u);a.length&&a.forEach(r=>{e.mergeLocaleMessage(r,u[r])});{if(x(t.datetimeFormats)){const r=Object.keys(t.datetimeFormats);r.length&&r.forEach(s=>{e.mergeDateTimeFormat(s,t.datetimeFormats[s])})}if(x(t.numberFormats)){const r=Object.keys(t.numberFormats);r.length&&r.forEach(s=>{e.mergeNumberFormat(s,t.numberFormats[s])})}}}function ms(e){return Dt(Ya,null,e,0)}const ps="__INTLIFY_META__",hs=()=>[],cg=()=>!1;let vs=0;function gs(e){return(t,n,u,a)=>e(n,u,It()||void 0,a)}const fg=()=>{const e=It();let t=null;return e&&(t=_s(e)[ps])?{[ps]:t}:null};function Xu(e={},t){const{__root:n,__injectWithOption:u}=e,a=n===void 0,r=e.flatJson,s=Ne?Ct:Ra,o=!!e.translateExistCompatible;process.env.NODE_ENV!=="production"&&o&&vr(he(Y.NOTICE_DROP_TRANSLATE_EXIST_COMPATIBLE_FLAG));let i=$(e.inheritLocale)?e.inheritLocale:!0;const d=s(n&&i?n.locale.value:O(e.locale)?e.locale:ht),p=s(n&&i?n.fallbackLocale.value:O(e.fallbackLocale)||X(e.fallbackLocale)||M(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:d.value),f=s(Xn(d.value,e)),_=s(M(e.datetimeFormats)?e.datetimeFormats:{[d.value]:{}}),N=s(M(e.numberFormats)?e.numberFormats:{[d.value]:{}});let S=n?n.missingWarn:$(e.missingWarn)||xe(e.missingWarn)?e.missingWarn:!0,L=n?n.fallbackWarn:$(e.fallbackWarn)||xe(e.fallbackWarn)?e.fallbackWarn:!0,y=n?n.fallbackRoot:$(e.fallbackRoot)?e.fallbackRoot:!0,b=!!e.fallbackFormat,C=j(e.missing)?e.missing:null,E=j(e.missing)?gs(e.missing):null,m=j(e.postTranslation)?e.postTranslation:null,A=n?n.warnHtmlMessage:$(e.warnHtmlMessage)?e.warnHtmlMessage:!0,g=!!e.escapeParameter;const v=n?n.modifiers:M(e.modifiers)?e.modifiers:{};let T=e.pluralRules||n&&n.pluralRules,I;I=(()=>{a&&Pr(null);const h={version:sg,locale:d.value,fallbackLocale:p.value,messages:f.value,modifiers:v,pluralRules:T,missing:E===null?void 0:E,missingWarn:S,fallbackWarn:L,fallbackFormat:b,unresolving:!0,postTranslation:m===null?void 0:m,warnHtmlMessage:A,escapeParameter:g,messageResolver:e.messageResolver,messageCompiler:e.messageCompiler,__meta:{framework:"vue"}};h.datetimeFormats=_.value,h.numberFormats=N.value,h.__datetimeFormatters=M(I)?I.__datetimeFormatters:void 0,h.__numberFormatters=M(I)?I.__numberFormatters:void 0,process.env.NODE_ENV!=="production"&&(h.__v_emitter=M(I)?I.__v_emitter:void 0);const D=th(h);return a&&Pr(D),D})(),Ut(I,d.value,p.value);function be(){return[d.value,p.value,f.value,_.value,N.value]}const U=Re({get:()=>d.value,set:h=>{d.value=h,I.locale=d.value}}),fe=Re({get:()=>p.value,set:h=>{p.value=h,I.fallbackLocale=p.value,Ut(I,d.value,h)}}),Zt=Re(()=>f.value),Yt=Re(()=>_.value),we=Re(()=>N.value);function en(){return j(m)?m:null}function tn(h){m=h,I.postTranslation=h}function nn(){return C}function un(h){h!==null&&(E=gs(h)),C=h,I.missing=E}function rn(h,D){return h!=="translate"||!D.resolvedMessage}const Ae=(h,D,H,te,Ye,Jn)=>{be();let Lt;try{(process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__)&&Mr(fg()),a||(I.fallbackContext=n?eh():void 0),Lt=h(I)}finally{(process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__)&&Mr(null),a||(I.fallbackContext=void 0)}if(H!=="translate exists"&&ae(Lt)&&Lt===Dn||H==="translate exists"&&!Lt){const[_t,d5]=D();if(process.env.NODE_ENV!=="production"&&n&&O(_t)&&rn(H,d5)&&(y&&(Sn(L,_t)||Vr(S,_t))&&oe(he(Y.FALLBACK_TO_ROOT,{key:_t,type:H})),process.env.NODE_ENV!=="production")){const{__v_emitter:xs}=I;xs&&y&&xs.emit("fallback",{type:H,key:_t,to:"global",groupId:`${H}:${_t}`})}return n&&y?te(n):Ye(_t)}else{if(Jn(Lt))return Lt;throw ie(V.UNEXPECTED_RETURN_TYPE)}};function Bt(...h){return Ae(D=>Reflect.apply(Xr,null,[D,...h]),()=>lu(...h),"translate",D=>Reflect.apply(D.t,D,[...h]),D=>D,D=>O(D))}function Ot(...h){const[D,H,te]=h;if(te&&!x(te))throw ie(V.INVALID_ARGUMENT);return Bt(D,H,se({resolvedMessage:!0},te||{}))}function an(...h){return Ae(D=>Reflect.apply(Zr,null,[D,...h]),()=>cu(...h),"datetime format",D=>Reflect.apply(D.d,D,[...h]),()=>In,D=>O(D))}function sn(...h){return Ae(D=>Reflect.apply(ta,null,[D,...h]),()=>fu(...h),"number format",D=>Reflect.apply(D.n,D,[...h]),()=>In,D=>O(D))}function on(h){return h.map(D=>O(D)||ae(D)||$(D)?ms(String(D)):D)}const ln={normalize:on,interpolate:h=>h,type:"vnode"};function Tt(...h){return Ae(D=>{let H;const te=D;try{te.processor=ln,H=Reflect.apply(Xr,null,[te,...h])}finally{te.processor=null}return H},()=>lu(...h),"translate",D=>D[Hu](...h),D=>[ms(D)],D=>X(D))}function cn(...h){return Ae(D=>Reflect.apply(ta,null,[D,...h]),()=>fu(...h),"number format",D=>D[ju](...h),hs,D=>O(D)||X(D))}function fn(...h){return Ae(D=>Reflect.apply(Zr,null,[D,...h]),()=>cu(...h),"datetime format",D=>D[Gu](...h),hs,D=>O(D)||X(D))}function dn(h){T=h,I.pluralRules=T}function B(h,D){return Ae(()=>{if(!h)return!1;const H=O(D)?D:d.value,te=dt(H),Ye=I.messageResolver(te,h);return o?Ye!=null:Ge(Ye)||Ce(Ye)||O(Ye)},()=>[h],"translate exists",H=>Reflect.apply(H.te,H,[h,D]),cg,H=>$(H))}function W(h){let D=null;const H=Sr(I,p.value,d.value);for(let te=0;te<H.length;te++){const Ye=f.value[H[te]]||{},Jn=I.messageResolver(Ye,h);if(Jn!=null){D=Jn;break}}return D}function _n(h){const D=W(h);return D!=null?D:n?n.tm(h)||{}:{}}function dt(h){return f.value[h]||{}}function En(h,D){if(r){const H={[h]:D};for(const te in H)gn(H,te)&&zt(H[te]);D=H[h]}f.value[h]=D,I.messages=f.value}function nr(h,D){f.value[h]=f.value[h]||{};const H={[h]:D};if(r)for(const te in H)gn(H,te)&&zt(H[te]);D=H[h],Fn(D,f.value[h]),I.messages=f.value}function l(h){return _.value[h]||{}}function c(h,D){_.value[h]=D,I.datetimeFormats=_.value,ea(I,h,D)}function F(h,D){_.value[h]=se(_.value[h]||{},D),I.datetimeFormats=_.value,ea(I,h,D)}function R(h){return N.value[h]||{}}function ee(h,D){N.value[h]=D,I.numberFormats=N.value,ua(I,h,D)}function K(h,D){N.value[h]=se(N.value[h]||{},D),I.numberFormats=N.value,ua(I,h,D)}vs++,n&&Ne&&(ku(n.locale,h=>{i&&(d.value=h,I.locale=h,Ut(I,d.value,p.value))}),ku(n.fallbackLocale,h=>{i&&(p.value=h,I.fallbackLocale=h,Ut(I,d.value,p.value))}));const G={id:vs,locale:U,fallbackLocale:fe,get inheritLocale(){return i},set inheritLocale(h){i=h,h&&n&&(d.value=n.locale.value,p.value=n.fallbackLocale.value,Ut(I,d.value,p.value))},get availableLocales(){return Object.keys(f.value).sort()},messages:Zt,get modifiers(){return v},get pluralRules(){return T||{}},get isGlobal(){return a},get missingWarn(){return S},set missingWarn(h){S=h,I.missingWarn=S},get fallbackWarn(){return L},set fallbackWarn(h){L=h,I.fallbackWarn=L},get fallbackRoot(){return y},set fallbackRoot(h){y=h},get fallbackFormat(){return b},set fallbackFormat(h){b=h,I.fallbackFormat=b},get warnHtmlMessage(){return A},set warnHtmlMessage(h){A=h,I.warnHtmlMessage=h},get escapeParameter(){return g},set escapeParameter(h){g=h,I.escapeParameter=h},t:Bt,getLocaleMessage:dt,setLocaleMessage:En,mergeLocaleMessage:nr,getPostTranslationHandler:en,setPostTranslationHandler:tn,getMissingHandler:nn,setMissingHandler:un,[fs]:dn};return G.datetimeFormats=Yt,G.numberFormats=we,G.rt=Ot,G.te=B,G.tm=_n,G.d=an,G.n=sn,G.getDateTimeFormat=l,G.setDateTimeFormat=c,G.mergeDateTimeFormat=F,G.getNumberFormat=R,G.setNumberFormat=ee,G.mergeNumberFormat=K,G[ds]=u,G[Hu]=Tt,G[Gu]=fn,G[ju]=cn,process.env.NODE_ENV!=="production"&&(G[ft]=h=>{I.__v_emitter=h},G[Jt]=()=>{I.__v_emitter=void 0}),G}function dg(e){const t=O(e.locale)?e.locale:ht,n=O(e.fallbackLocale)||X(e.fallbackLocale)||M(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:t,u=j(e.missing)?e.missing:void 0,a=$(e.silentTranslationWarn)||xe(e.silentTranslationWarn)?!e.silentTranslationWarn:!0,r=$(e.silentFallbackWarn)||xe(e.silentFallbackWarn)?!e.silentFallbackWarn:!0,s=$(e.fallbackRoot)?e.fallbackRoot:!0,o=!!e.formatFallbackMessages,i=M(e.modifiers)?e.modifiers:{},d=e.pluralizationRules,p=j(e.postTranslation)?e.postTranslation:void 0,f=O(e.warnHtmlInMessage)?e.warnHtmlInMessage!=="off":!0,_=!!e.escapeParameterHtml,N=$(e.sync)?e.sync:!0;process.env.NODE_ENV!=="production"&&e.formatter&&oe(he(Y.NOT_SUPPORTED_FORMATTER)),process.env.NODE_ENV!=="production"&&e.preserveDirectiveContent&&oe(he(Y.NOT_SUPPORTED_PRESERVE_DIRECTIVE));let S=e.messages;if(M(e.sharedMessages)){const g=e.sharedMessages;S=Object.keys(g).reduce((T,I)=>{const J=T[I]||(T[I]={});return se(J,g[I]),T},S||{})}const{__i18n:L,__root:y,__injectWithOption:b}=e,C=e.datetimeFormats,E=e.numberFormats,m=e.flatJson,A=e.translateExistCompatible;return{locale:t,fallbackLocale:n,messages:S,flatJson:m,datetimeFormats:C,numberFormats:E,missing:u,missingWarn:a,fallbackWarn:r,fallbackRoot:s,fallbackFormat:o,modifiers:i,pluralRules:d,postTranslation:p,warnHtmlMessage:f,escapeParameter:_,messageResolver:e.messageResolver,inheritLocale:N,translateExistCompatible:A,__i18n:L,__root:y,__injectWithOption:b}}function qu(e={},t){{const n=Xu(dg(e)),{__extender:u}=e,a={id:n.id,get locale(){return n.locale.value},set locale(r){n.locale.value=r},get fallbackLocale(){return n.fallbackLocale.value},set fallbackLocale(r){n.fallbackLocale.value=r},get messages(){return n.messages.value},get datetimeFormats(){return n.datetimeFormats.value},get numberFormats(){return n.numberFormats.value},get availableLocales(){return n.availableLocales},get formatter(){return process.env.NODE_ENV!=="production"&&oe(he(Y.NOT_SUPPORTED_FORMATTER)),{interpolate(){return[]}}},set formatter(r){process.env.NODE_ENV!=="production"&&oe(he(Y.NOT_SUPPORTED_FORMATTER))},get missing(){return n.getMissingHandler()},set missing(r){n.setMissingHandler(r)},get silentTranslationWarn(){return $(n.missingWarn)?!n.missingWarn:n.missingWarn},set silentTranslationWarn(r){n.missingWarn=$(r)?!r:r},get silentFallbackWarn(){return $(n.fallbackWarn)?!n.fallbackWarn:n.fallbackWarn},set silentFallbackWarn(r){n.fallbackWarn=$(r)?!r:r},get modifiers(){return n.modifiers},get formatFallbackMessages(){return n.fallbackFormat},set formatFallbackMessages(r){n.fallbackFormat=r},get postTranslation(){return n.getPostTranslationHandler()},set postTranslation(r){n.setPostTranslationHandler(r)},get sync(){return n.inheritLocale},set sync(r){n.inheritLocale=r},get warnHtmlInMessage(){return n.warnHtmlMessage?"warn":"off"},set warnHtmlInMessage(r){n.warnHtmlMessage=r!=="off"},get escapeParameterHtml(){return n.escapeParameter},set escapeParameterHtml(r){n.escapeParameter=r},get preserveDirectiveContent(){return process.env.NODE_ENV!=="production"&&oe(he(Y.NOT_SUPPORTED_PRESERVE_DIRECTIVE)),!0},set preserveDirectiveContent(r){process.env.NODE_ENV!=="production"&&oe(he(Y.NOT_SUPPORTED_PRESERVE_DIRECTIVE))},get pluralizationRules(){return n.pluralRules||{}},__composer:n,t(...r){const[s,o,i]=r,d={};let p=null,f=null;if(!O(s))throw ie(V.INVALID_ARGUMENT);const _=s;return O(o)?d.locale=o:X(o)?p=o:M(o)&&(f=o),X(i)?p=i:M(i)&&(f=i),Reflect.apply(n.t,n,[_,p||f||{},d])},rt(...r){return Reflect.apply(n.rt,n,[...r])},tc(...r){const[s,o,i]=r,d={plural:1};let p=null,f=null;if(!O(s))throw ie(V.INVALID_ARGUMENT);const _=s;return O(o)?d.locale=o:ae(o)?d.plural=o:X(o)?p=o:M(o)&&(f=o),O(i)?d.locale=i:X(i)?p=i:M(i)&&(f=i),Reflect.apply(n.t,n,[_,p||f||{},d])},te(r,s){return n.te(r,s)},tm(r){return n.tm(r)},getLocaleMessage(r){return n.getLocaleMessage(r)},setLocaleMessage(r,s){n.setLocaleMessage(r,s)},mergeLocaleMessage(r,s){n.mergeLocaleMessage(r,s)},d(...r){return Reflect.apply(n.d,n,[...r])},getDateTimeFormat(r){return n.getDateTimeFormat(r)},setDateTimeFormat(r,s){n.setDateTimeFormat(r,s)},mergeDateTimeFormat(r,s){n.mergeDateTimeFormat(r,s)},n(...r){return Reflect.apply(n.n,n,[...r])},getNumberFormat(r){return n.getNumberFormat(r)},setNumberFormat(r,s){n.setNumberFormat(r,s)},mergeNumberFormat(r,s){n.mergeNumberFormat(r,s)},getChoiceIndex(r,s){return process.env.NODE_ENV!=="production"&&oe(he(Y.NOT_SUPPORTED_GET_CHOICE_INDEX)),-1}};return a.__extender=u,process.env.NODE_ENV!=="production"&&(a.__enableEmitter=r=>{const s=n;s[ft]&&s[ft](r)},a.__disableEmitter=()=>{const r=n;r[Jt]&&r[Jt]()}),a}}const Ju={tag:{type:[String,Object]},locale:{type:String},scope:{type:String,validator:e=>e==="parent"||e==="global",default:"parent"},i18n:{type:Object}};function _g({slots:e},t){return t.length===1&&t[0]==="default"?(e.default?e.default():[]).reduce((u,a)=>[...u,...a.type===Hn?a.children:[a]],[]):t.reduce((n,u)=>{const a=e[u];return a&&(n[u]=a()),n},{})}function bs(e){return Hn}const zu=wu({name:"i18n-t",props:se({keypath:{type:String,required:!0},plural:{type:[Number,String],validator:e=>ae(e)||!isNaN(e)}},Ju),setup(e,t){const{slots:n,attrs:u}=t,a=e.i18n||er({useScope:e.scope,__useComponent:!0});return()=>{const r=Object.keys(n).filter(f=>f!=="_"),s={};e.locale&&(s.locale=e.locale),e.plural!==void 0&&(s.plural=O(e.plural)?+e.plural:e.plural);const o=_g(t,r),i=a[Hu](e.keypath,o,s),d=se({},u),p=O(e.tag)||x(e.tag)?e.tag:bs();return os(p,d,i)}}});function Eg(e){return X(e)&&!O(e[0])}function Cs(e,t,n,u){const{slots:a,attrs:r}=t;return()=>{const s={part:!0};let o={};e.locale&&(s.locale=e.locale),O(e.format)?s.key=e.format:x(e.format)&&(O(e.format.key)&&(s.key=e.format.key),o=Object.keys(e.format).reduce((_,N)=>n.includes(N)?se({},_,{[N]:e.format[N]}):_,{}));const i=u(e.value,s,o);let d=[s.key];X(i)?d=i.map((_,N)=>{const S=a[_.type],L=S?S({[_.type]:_.value,index:N,parts:i}):[_.value];return Eg(L)&&(L[0].key=`${_.type}-${N}`),L}):O(i)&&(d=[i]);const p=se({},r),f=O(e.tag)||x(e.tag)?e.tag:bs();return os(f,p,d)}}const Fs=wu({name:"i18n-n",props:se({value:{type:Number,required:!0},format:{type:[String,Object]}},Ju),setup(e,t){const n=e.i18n||er({useScope:e.scope,__useComponent:!0});return Cs(e,t,na,(...u)=>n[ju](...u))}}),As=wu({name:"i18n-d",props:se({value:{type:[Number,Date],required:!0},format:{type:[String,Object]}},Ju),setup(e,t){const n=e.i18n||er({useScope:e.scope,__useComponent:!0});return Cs(e,t,Yr,(...u)=>n[Gu](...u))}});function mg(e,t){const n=e;if(e.mode==="composition")return n.__getInstance(t)||e.global;{const u=n.__getInstance(t);return u!=null?u.__composer:e.global.__composer}}function pg(e){const t=s=>{const{instance:o,modifiers:i,value:d}=s;if(!o||!o.$)throw ie(V.UNEXPECTED_ERROR);const p=mg(e,o.$);process.env.NODE_ENV!=="production"&&i.preserve&&oe(he(Y.NOT_SUPPORTED_PRESERVE));const f=Ns(d);return[Reflect.apply(p.t,p,[...Ds(f)]),p]};return{created:(s,o)=>{const[i,d]=t(o);Ne&&e.global===d&&(s.__i18nWatcher=ku(d.locale,()=>{o.instance&&o.instance.$forceUpdate()})),s.__composer=d,s.textContent=i},unmounted:s=>{Ne&&s.__i18nWatcher&&(s.__i18nWatcher(),s.__i18nWatcher=void 0,delete s.__i18nWatcher),s.__composer&&(s.__composer=void 0,delete s.__composer)},beforeUpdate:(s,{value:o})=>{if(s.__composer){const i=s.__composer,d=Ns(o);s.textContent=Reflect.apply(i.t,i,[...Ds(d)])}},getSSRProps:s=>{const[o]=t(s);return{textContent:o}}}}function Ns(e){if(O(e))return{path:e};if(M(e)){if(!("path"in e))throw ie(V.REQUIRED_VALUE,"path");return e}else throw ie(V.INVALID_VALUE)}function Ds(e){const{path:t,locale:n,args:u,choice:a,plural:r}=e,s={},o=u||{};return O(n)&&(s.locale=n),ae(a)&&(s.plural=a),ae(r)&&(s.plural=r),[t,o,s]}function hg(e,t,...n){const u=M(n[0])?n[0]:{},a=!!u.useI18nComponentName,r=$(u.globalInstall)?u.globalInstall:!0;process.env.NODE_ENV!=="production"&&r&&a&&oe(he(Y.COMPONENT_NAME_LEGACY_COMPATIBLE,{name:zu.name})),r&&([a?"i18n":zu.name,"I18nT"].forEach(s=>e.component(s,zu)),[Fs.name,"I18nN"].forEach(s=>e.component(s,Fs)),[As.name,"I18nD"].forEach(s=>e.component(s,As))),e.directive("t",pg(t))}const Qu={["vue-devtools-plugin-vue-i18n"]:"Vue I18n devtools",["vue-i18n-resource-inspector"]:"I18n Resources",["vue-i18n-timeline"]:"Vue I18n"},vg={["vue-i18n-resource-inspector"]:"Search for scopes ..."},gg={["vue-i18n-timeline"]:16764185},Is="vue-i18n: composer properties";let Zu;function bg(e,t){return mn(this,null,function*(){return new Promise((n,u)=>{try{ag({id:"vue-devtools-plugin-vue-i18n",label:Qu["vue-devtools-plugin-vue-i18n"],packageName:"vue-i18n",homepage:"https://vue-i18n.intlify.dev",logo:"https://vue-i18n.intlify.dev/vue-i18n-devtools-logo.png",componentStateTypes:[Is],app:e},a=>{Zu=a,a.on.visitComponentTree(({componentInstance:s,treeNode:o})=>{Cg(s,o,t)}),a.on.inspectComponent(({componentInstance:s,instanceData:o})=>{s.vnode.el&&s.vnode.el.__VUE_I18N__&&o&&(t.mode==="legacy"?s.vnode.el.__VUE_I18N__!==t.global.__composer&&Bs(o,s.vnode.el.__VUE_I18N__):Bs(o,s.vnode.el.__VUE_I18N__))}),a.addInspector({id:"vue-i18n-resource-inspector",label:Qu["vue-i18n-resource-inspector"],icon:"language",treeFilterPlaceholder:vg["vue-i18n-resource-inspector"]}),a.on.getInspectorTree(s=>{s.app===e&&s.inspectorId==="vue-i18n-resource-inspector"&&Ig(s,t)});const r=new Map;a.on.getInspectorState(s=>mn(this,null,function*(){if(s.app===e&&s.inspectorId==="vue-i18n-resource-inspector")if(a.unhighlightElement(),Bg(s,t),s.nodeId==="global"){if(!r.has(s.app)){const[o]=yield a.getComponentInstances(s.app);r.set(s.app,o)}a.highlightElement(r.get(s.app))}else{const o=Sg(s.nodeId,t);o&&a.highlightElement(o)}})),a.on.editInspectorState(s=>{s.app===e&&s.inspectorId==="vue-i18n-resource-inspector"&&Tg(s,t)}),a.addTimelineLayer({id:"vue-i18n-timeline",label:Qu["vue-i18n-timeline"],color:gg["vue-i18n-timeline"]}),n(!0)})}catch(a){console.error(a),u(!1)}})})}function Ss(e){return e.type.name||e.type.displayName||e.type.__file||"Anonymous"}function Cg(e,t,n){const u=n.mode==="composition"?n.global:n.global.__composer;if(e&&e.vnode.el&&e.vnode.el.__VUE_I18N__&&e.vnode.el.__VUE_I18N__!==u){const a={label:`i18n (${Ss(e)} Scope)`,textColor:0,backgroundColor:16764185};t.tags.push(a)}}function Bs(e,t){const n=Is;e.state.push({type:n,key:"locale",editable:!0,value:t.locale.value}),e.state.push({type:n,key:"availableLocales",editable:!1,value:t.availableLocales}),e.state.push({type:n,key:"fallbackLocale",editable:!0,value:t.fallbackLocale.value}),e.state.push({type:n,key:"inheritLocale",editable:!0,value:t.inheritLocale}),e.state.push({type:n,key:"messages",editable:!1,value:Yu(t.messages.value)}),e.state.push({type:n,key:"datetimeFormats",editable:!1,value:t.datetimeFormats.value}),e.state.push({type:n,key:"numberFormats",editable:!1,value:t.numberFormats.value})}function Yu(e){const t={};return Object.keys(e).forEach(n=>{const u=e[n];j(u)&&"source"in u?t[n]=Dg(u):Ge(u)&&u.loc&&u.loc.source?t[n]=u.loc.source:x(u)?t[n]=Yu(u):t[n]=u}),t}const Fg={"<":"<",">":">",'"':""","&":"&"};function Ag(e){return e.replace(/[<>"&]/g,Ng)}function Ng(e){return Fg[e]||e}function Dg(e){const t=e.source?`("${Ag(e.source)}")`:"(?)";return{_custom:{type:"function",display:`<span>\u0192</span> ${t}`}}}function Ig(e,t){e.rootNodes.push({id:"global",label:"Global Scope"});const n=t.mode==="composition"?t.global:t.global.__composer;for(const[u,a]of t.__instances){const r=t.mode==="composition"?a:a.__composer;n!==r&&e.rootNodes.push({id:r.id.toString(),label:`${Ss(u)} Scope`})}}function Sg(e,t){let n=null;if(e!=="global"){for(const[u,a]of t.__instances.entries())if(a.id.toString()===e){n=u;break}}return n}function Os(e,t){if(e==="global")return t.mode==="composition"?t.global:t.global.__composer;{const n=Array.from(t.__instances.values()).find(u=>u.id.toString()===e);return n?t.mode==="composition"?n:n.__composer:null}}function Bg(e,t){const n=Os(e.nodeId,t);return n&&(e.state=Og(n)),null}function Og(e){const t={},n="Locale related info",u=[{type:n,key:"locale",editable:!0,value:e.locale.value},{type:n,key:"fallbackLocale",editable:!0,value:e.fallbackLocale.value},{type:n,key:"availableLocales",editable:!1,value:e.availableLocales},{type:n,key:"inheritLocale",editable:!0,value:e.inheritLocale}];t[n]=u;const a="Locale messages info",r=[{type:a,key:"messages",editable:!1,value:Yu(e.messages.value)}];t[a]=r;{const s="Datetime formats info",o=[{type:s,key:"datetimeFormats",editable:!1,value:e.datetimeFormats.value}];t[s]=o;const i="Datetime formats info",d=[{type:i,key:"numberFormats",editable:!1,value:e.numberFormats.value}];t[i]=d}return t}function Qt(e,t){if(Zu){let n;t&&"groupId"in t&&(n=t.groupId,delete t.groupId),Zu.addTimelineEvent({layerId:"vue-i18n-timeline",event:{title:e,groupId:n,time:Date.now(),meta:{},data:t||{},logType:e==="compile-error"?"error":e==="fallback"||e==="missing"?"warning":"default"}})}}function Tg(e,t){const n=Os(e.nodeId,t);if(n){const[u]=e.path;u==="locale"&&O(e.state.value)?n.locale.value=e.state.value:u==="fallbackLocale"&&(O(e.state.value)||X(e.state.value)||x(e.state.value))?n.fallbackLocale.value=e.state.value:u==="inheritLocale"&&$(e.state.value)&&(n.inheritLocale=e.state.value)}}function Lg(e,t,n){return{beforeCreate(){const u=It();if(!u)throw ie(V.UNEXPECTED_ERROR);const a=this.$options;if(a.i18n){const r=a.i18n;if(a.__i18n&&(r.__i18n=a.__i18n),r.__root=t,this===this.$root)this.$i18n=Ts(e,r);else{r.__injectWithOption=!0,r.__extender=n.__vueI18nExtend,this.$i18n=qu(r);const s=this.$i18n;s.__extender&&(s.__disposer=s.__extender(this.$i18n))}}else if(a.__i18n)if(this===this.$root)this.$i18n=Ts(e,a);else{this.$i18n=qu({__i18n:a.__i18n,__injectWithOption:!0,__extender:n.__vueI18nExtend,__root:t});const r=this.$i18n;r.__extender&&(r.__disposer=r.__extender(this.$i18n))}else this.$i18n=e;a.__i18nGlobal&&Es(t,a,a),this.$t=(...r)=>this.$i18n.t(...r),this.$rt=(...r)=>this.$i18n.rt(...r),this.$tc=(...r)=>this.$i18n.tc(...r),this.$te=(r,s)=>this.$i18n.te(r,s),this.$d=(...r)=>this.$i18n.d(...r),this.$n=(...r)=>this.$i18n.n(...r),this.$tm=r=>this.$i18n.tm(r),n.__setInstance(u,this.$i18n)},mounted(){if((process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__)&&!0&&this.$el&&this.$i18n){const u=this.$i18n;this.$el.__VUE_I18N__=u.__composer;const a=this.__v_emitter=nu();u.__enableEmitter&&u.__enableEmitter(a),a.on("*",Qt)}},unmounted(){const u=It();if(!u)throw ie(V.UNEXPECTED_ERROR);const a=this.$i18n;(process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__)&&!0&&this.$el&&this.$el.__VUE_I18N__&&(this.__v_emitter&&(this.__v_emitter.off("*",Qt),delete this.__v_emitter),this.$i18n&&(a.__disableEmitter&&a.__disableEmitter(),delete this.$el.__VUE_I18N__)),delete this.$t,delete this.$rt,delete this.$tc,delete this.$te,delete this.$d,delete this.$n,delete this.$tm,a.__disposer&&(a.__disposer(),delete a.__disposer,delete a.__extender),n.__deleteInstance(u),delete this.$i18n}}}function Ts(e,t){e.locale=t.locale||e.locale,e.fallbackLocale=t.fallbackLocale||e.fallbackLocale,e.missing=t.missing||e.missing,e.silentTranslationWarn=t.silentTranslationWarn||e.silentFallbackWarn,e.silentFallbackWarn=t.silentFallbackWarn||e.silentFallbackWarn,e.formatFallbackMessages=t.formatFallbackMessages||e.formatFallbackMessages,e.postTranslation=t.postTranslation||e.postTranslation,e.warnHtmlInMessage=t.warnHtmlInMessage||e.warnHtmlInMessage,e.escapeParameterHtml=t.escapeParameterHtml||e.escapeParameterHtml,e.sync=t.sync||e.sync,e.__composer[fs](t.pluralizationRules||e.pluralizationRules);const n=Xn(e.locale,{messages:t.messages,__i18n:t.__i18n});return Object.keys(n).forEach(u=>e.mergeLocaleMessage(u,n[u])),t.datetimeFormats&&Object.keys(t.datetimeFormats).forEach(u=>e.mergeDateTimeFormat(u,t.datetimeFormats[u])),t.numberFormats&&Object.keys(t.numberFormats).forEach(u=>e.mergeNumberFormat(u,t.numberFormats[u])),e}const yg=De("global-vue-i18n");function Rg(e={},t){const n=__VUE_I18N_LEGACY_API__&&$(e.legacy)?e.legacy:__VUE_I18N_LEGACY_API__,u=$(e.globalInjection)?e.globalInjection:!0,a=__VUE_I18N_LEGACY_API__&&n?!!e.allowComposition:!0,r=new Map,[s,o]=wg(e,n),i=De(process.env.NODE_ENV!=="production"?"vue-i18n":"");process.env.NODE_ENV!=="production"&&n&&a&&oe(he(Y.NOTICE_DROP_ALLOW_COMPOSITION));function d(_){return r.get(_)||null}function p(_,N){r.set(_,N)}function f(_){r.delete(_)}{let N;const _={get mode(){return __VUE_I18N_LEGACY_API__&&n?"legacy":"composition"},get allowComposition(){return a},install(S,...L){return mn(this,null,function*(){if((process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__)&&(S.__VUE_I18N__=_),S.__VUE_I18N_SYMBOL__=i,S.provide(S.__VUE_I18N_SYMBOL__,_),M(L[0])){const C=L[0];_.__composerExtend=C.__composerExtend,_.__vueI18nExtend=C.__vueI18nExtend}let y=null;!n&&u&&(y=Hg(S,_.global)),__VUE_I18N_FULL_INSTALL__&&hg(S,_,...L),__VUE_I18N_LEGACY_API__&&n&&S.mixin(Lg(o,o.__composer,_));const b=S.unmount;if(S.unmount=()=>{y&&y(),_.dispose(),b()},process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__){if(!(yield bg(S,_)))throw ie(V.CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN);const E=nu();if(n){const m=o;m.__enableEmitter&&m.__enableEmitter(E)}else{const m=o;m[ft]&&m[ft](E)}E.on("*",Qt)}})},get global(){return o},dispose(){s.stop()},__instances:r,__getInstance:d,__setInstance:p,__deleteInstance:f};return _}}function er(e={}){const t=It();if(t==null)throw ie(V.MUST_BE_CALL_SETUP_TOP);if(!t.isCE&&t.appContext.app!=null&&!t.appContext.app.__VUE_I18N_SYMBOL__)throw ie(V.NOT_INSTALLED);const n=Mg(t),u=Pg(n),a=_s(t),r=$g(e,a);if(__VUE_I18N_LEGACY_API__&&n.mode==="legacy"&&!e.__useComponent){if(!n.allowComposition)throw ie(V.NOT_AVAILABLE_IN_LEGACY_MODE);return xg(t,r,u,e)}if(r==="global")return Es(u,e,a),u;if(r==="parent"){let i=kg(n,t,e.__useComponent);return i==null&&(process.env.NODE_ENV!=="production"&&oe(he(Y.NOT_FOUND_PARENT_SCOPE)),i=u),i}const s=n;let o=s.__getInstance(t);if(o==null){const i=se({},e);"__i18n"in a&&(i.__i18n=a.__i18n),u&&(i.__root=u),o=Xu(i),s.__composerExtend&&(o[Ku]=s.__composerExtend(o)),Ug(s,t,o),s.__setInstance(t,o)}return o}function wg(e,t,n){const u=Bh();{const a=__VUE_I18N_LEGACY_API__&&t?u.run(()=>qu(e)):u.run(()=>Xu(e));if(a==null)throw ie(V.UNEXPECTED_ERROR);return[u,a]}}function Mg(e){{const t=Ja(e.isCE?yg:e.appContext.app.__VUE_I18N_SYMBOL__);if(!t)throw ie(e.isCE?V.NOT_INSTALLED_WITH_PROVIDE:V.UNEXPECTED_ERROR);return t}}function $g(e,t){return vn(e)?"__i18n"in t?"local":"global":e.useScope?e.useScope:"local"}function Pg(e){return e.mode==="composition"?e.global:e.global.__composer}function kg(e,t,n=!1){let u=null;const a=t.root;let r=Vg(t,n);for(;r!=null;){const s=e;if(e.mode==="composition")u=s.__getInstance(r);else if(__VUE_I18N_LEGACY_API__){const o=s.__getInstance(r);o!=null&&(u=o.__composer,n&&u&&!u[ds]&&(u=null))}if(u!=null||a===r)break;r=r.parent}return u}function Vg(e,t=!1){return e==null?null:t&&e.vnode.ctx||e.parent}function Ug(e,t,n){let u=null;Cv(()=>{if((process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__)&&!0&&t.vnode.el){t.vnode.el.__VUE_I18N__=n,u=nu();const a=n;a[ft]&&a[ft](u),u.on("*",Qt)}},t),Fv(()=>{const a=n;(process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__)&&!0&&t.vnode.el&&t.vnode.el.__VUE_I18N__&&(u&&u.off("*",Qt),a[Jt]&&a[Jt](),delete t.vnode.el.__VUE_I18N__),e.__deleteInstance(t);const r=a[Ku];r&&(r(),delete a[Ku])},t)}function xg(e,t,n,u={}){const a=t==="local",r=Ra(null);if(a&&e.proxy&&!(e.proxy.$options.i18n||e.proxy.$options.__i18n))throw ie(V.MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION);const s=$(u.inheritLocale)?u.inheritLocale:!O(u.locale),o=Ct(!a||s?n.locale.value:O(u.locale)?u.locale:ht),i=Ct(!a||s?n.fallbackLocale.value:O(u.fallbackLocale)||X(u.fallbackLocale)||M(u.fallbackLocale)||u.fallbackLocale===!1?u.fallbackLocale:o.value),d=Ct(Xn(o.value,u)),p=Ct(M(u.datetimeFormats)?u.datetimeFormats:{[o.value]:{}}),f=Ct(M(u.numberFormats)?u.numberFormats:{[o.value]:{}}),_=a?n.missingWarn:$(u.missingWarn)||xe(u.missingWarn)?u.missingWarn:!0,N=a?n.fallbackWarn:$(u.fallbackWarn)||xe(u.fallbackWarn)?u.fallbackWarn:!0,S=a?n.fallbackRoot:$(u.fallbackRoot)?u.fallbackRoot:!0,L=!!u.fallbackFormat,y=j(u.missing)?u.missing:null,b=j(u.postTranslation)?u.postTranslation:null,C=a?n.warnHtmlMessage:$(u.warnHtmlMessage)?u.warnHtmlMessage:!0,E=!!u.escapeParameter,m=a?n.modifiers:M(u.modifiers)?u.modifiers:{},A=u.pluralRules||a&&n.pluralRules;function g(){return[o.value,i.value,d.value,p.value,f.value]}const v=Re({get:()=>r.value?r.value.locale.value:o.value,set:B=>{r.value&&(r.value.locale.value=B),o.value=B}}),T=Re({get:()=>r.value?r.value.fallbackLocale.value:i.value,set:B=>{r.value&&(r.value.fallbackLocale.value=B),i.value=B}}),I=Re(()=>r.value?r.value.messages.value:d.value),J=Re(()=>p.value),be=Re(()=>f.value);function U(){return r.value?r.value.getPostTranslationHandler():b}function fe(B){r.value&&r.value.setPostTranslationHandler(B)}function Zt(){return r.value?r.value.getMissingHandler():y}function Yt(B){r.value&&r.value.setMissingHandler(B)}function we(B){return g(),B()}function en(...B){return r.value?we(()=>Reflect.apply(r.value.t,null,[...B])):we(()=>"")}function tn(...B){return r.value?Reflect.apply(r.value.rt,null,[...B]):""}function nn(...B){return r.value?we(()=>Reflect.apply(r.value.d,null,[...B])):we(()=>"")}function un(...B){return r.value?we(()=>Reflect.apply(r.value.n,null,[...B])):we(()=>"")}function rn(B){return r.value?r.value.tm(B):{}}function Ae(B,W){return r.value?r.value.te(B,W):!1}function Bt(B){return r.value?r.value.getLocaleMessage(B):{}}function Ot(B,W){r.value&&(r.value.setLocaleMessage(B,W),d.value[B]=W)}function an(B,W){r.value&&r.value.mergeLocaleMessage(B,W)}function sn(B){return r.value?r.value.getDateTimeFormat(B):{}}function on(B,W){r.value&&(r.value.setDateTimeFormat(B,W),p.value[B]=W)}function qn(B,W){r.value&&r.value.mergeDateTimeFormat(B,W)}function ln(B){return r.value?r.value.getNumberFormat(B):{}}function Tt(B,W){r.value&&(r.value.setNumberFormat(B,W),f.value[B]=W)}function cn(B,W){r.value&&r.value.mergeNumberFormat(B,W)}const fn={get id(){return r.value?r.value.id:-1},locale:v,fallbackLocale:T,messages:I,datetimeFormats:J,numberFormats:be,get inheritLocale(){return r.value?r.value.inheritLocale:s},set inheritLocale(B){r.value&&(r.value.inheritLocale=B)},get availableLocales(){return r.value?r.value.availableLocales:Object.keys(d.value)},get modifiers(){return r.value?r.value.modifiers:m},get pluralRules(){return r.value?r.value.pluralRules:A},get isGlobal(){return r.value?r.value.isGlobal:!1},get missingWarn(){return r.value?r.value.missingWarn:_},set missingWarn(B){r.value&&(r.value.missingWarn=B)},get fallbackWarn(){return r.value?r.value.fallbackWarn:N},set fallbackWarn(B){r.value&&(r.value.missingWarn=B)},get fallbackRoot(){return r.value?r.value.fallbackRoot:S},set fallbackRoot(B){r.value&&(r.value.fallbackRoot=B)},get fallbackFormat(){return r.value?r.value.fallbackFormat:L},set fallbackFormat(B){r.value&&(r.value.fallbackFormat=B)},get warnHtmlMessage(){return r.value?r.value.warnHtmlMessage:C},set warnHtmlMessage(B){r.value&&(r.value.warnHtmlMessage=B)},get escapeParameter(){return r.value?r.value.escapeParameter:E},set escapeParameter(B){r.value&&(r.value.escapeParameter=B)},t:en,getPostTranslationHandler:U,setPostTranslationHandler:fe,getMissingHandler:Zt,setMissingHandler:Yt,rt:tn,d:nn,n:un,tm:rn,te:Ae,getLocaleMessage:Bt,setLocaleMessage:Ot,mergeLocaleMessage:an,getDateTimeFormat:sn,setDateTimeFormat:on,mergeDateTimeFormat:qn,getNumberFormat:ln,setNumberFormat:Tt,mergeNumberFormat:cn};function dn(B){B.locale.value=o.value,B.fallbackLocale.value=i.value,Object.keys(d.value).forEach(W=>{B.mergeLocaleMessage(W,d.value[W])}),Object.keys(p.value).forEach(W=>{B.mergeDateTimeFormat(W,p.value[W])}),Object.keys(f.value).forEach(W=>{B.mergeNumberFormat(W,f.value[W])}),B.escapeParameter=E,B.fallbackFormat=L,B.fallbackRoot=S,B.fallbackWarn=N,B.missingWarn=_,B.warnHtmlMessage=C}return bv(()=>{if(e.proxy==null||e.proxy.$i18n==null)throw ie(V.NOT_AVAILABLE_COMPOSITION_IN_LEGACY);const B=r.value=e.proxy.$i18n.__composer;t==="global"?(o.value=B.locale.value,i.value=B.fallbackLocale.value,d.value=B.messages.value,p.value=B.datetimeFormats.value,f.value=B.numberFormats.value):a&&dn(B)}),fn}const Wg=["locale","fallbackLocale","availableLocales"],Ls=["t","rt","d","n","tm","te"];function Hg(e,t){const n=Object.create(null);return Wg.forEach(a=>{const r=Object.getOwnPropertyDescriptor(t,a);if(!r)throw ie(V.UNEXPECTED_ERROR);const s=pe(r.value)?{get(){return r.value.value},set(o){r.value.value=o}}:{get(){return r.get&&r.get()}};Object.defineProperty(n,a,s)}),e.config.globalProperties.$i18n=n,Ls.forEach(a=>{const r=Object.getOwnPropertyDescriptor(t,a);if(!r||!r.value)throw ie(V.UNEXPECTED_ERROR);Object.defineProperty(e.config.globalProperties,`$${a}`,r)}),()=>{delete e.config.globalProperties.$i18n,Ls.forEach(a=>{delete e.config.globalProperties[`$${a}`]})}}if(og(),__INTLIFY_JIT_COMPILATION__?Lr(sh):Lr(ah),Q0(L0),Z0(Sr),process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__){const e=$e();e.__INTLIFY__=!0,U0(e.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__)}process.env.NODE_ENV;function Gg(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ys(e,t){for(var n=0;n<t.length;n++){var u=t[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(e,u.key,u)}}function jg(e,t,n){return t&&ys(e.prototype,t),n&&ys(e,n),e}function Kg(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var k=function(){function e(){Gg(this,e)}return jg(e,null,[{key:"getMessage",value:function(n){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.global.t(n,u)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Sp;return Rg({locale:n,globalInjection:!0,silentFallbackWarn:!0,missingWarn:!1,fallbackWarn:!1,silentTranslationWarn:!0})}},{key:"setLocale",value:function(n,u){var a=u;u||(a=Ip.zhCN),this.$i18n.global.setLocaleMessage(n,a)}}]),e}();Kg(k,"$i18n",k.resetI18n());var Xg=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},qg={exports:{}};(function(e){(function(t){var n=function(b,C,E){if(!d(C)||f(C)||_(C)||N(C)||i(C))return C;var m,A=0,g=0;if(p(C))for(m=[],g=C.length;A<g;A++)m.push(n(b,C[A],E));else{m={};for(var v in C)Object.prototype.hasOwnProperty.call(C,v)&&(m[b(v,E)]=n(b,C[v],E))}return m},u=function(b,C){C=C||{};var E=C.separator||"_",m=C.split||/(?=[A-Z])/;return b.split(m).join(E)},a=function(b){return S(b)?b:(b=b.replace(/[\-_\s]+(.)?/g,function(C,E){return E?E.toUpperCase():""}),b.substr(0,1).toLowerCase()+b.substr(1))},r=function(b){var C=a(b);return C.substr(0,1).toUpperCase()+C.substr(1)},s=function(b,C){return u(b,C).toLowerCase()},o=Object.prototype.toString,i=function(b){return typeof b=="function"},d=function(b){return b===Object(b)},p=function(b){return o.call(b)=="[object Array]"},f=function(b){return o.call(b)=="[object Date]"},_=function(b){return o.call(b)=="[object RegExp]"},N=function(b){return o.call(b)=="[object Boolean]"},S=function(b){return b=b-0,b===b},L=function(b,C){var E=C&&"process"in C?C.process:C;return typeof E!="function"?b:function(m,A){return E(m,b,A)}},y={camelize:a,decamelize:s,pascalize:r,depascalize:s,camelizeKeys:function(b,C){return n(L(a,C),b)},decamelizeKeys:function(b,C){return n(L(s,C),b,C)},pascalizeKeys:function(b,C){return n(L(r,C),b)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=y:t.humps=y})(Xg)})(qg);var Rs={};Object.defineProperty(Rs,"__esModule",{value:!0});function tr(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:tr(t));{const t={};for(const n in e){const u=e[n];t[n]=typeof u!="object"||u===null?u:tr(u)}return t}}Rs.default=tr;function ws(e){return Object.prototype.toString.call(e)==="[object Object]"}function Jg(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ms(e,t){for(var n=0;n<t.length;n++){var u=t[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(e,u.key,u)}}function zg(e,t,n){return t&&Ms(e.prototype,t),n&&Ms(e,n),e}function Qg(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Zg=function(){return[{key:"on_click",name:k.getMessage("click"),code:"click"},{key:"on_click_finish",name:k.getMessage("fibished"),code:"click-finish"},{key:"on_change",name:k.getMessage("valueChange"),code:"change"},{key:"on_search",name:k.getMessage("search"),code:"search"},{key:"on_list_change",name:k.getMessage("listDataChange"),code:"list-change"},{key:"on_list_search",name:k.getMessage("listDataCreate"),code:"list-search"},{key:"on_list_mounted",name:k.getMessage("listDataBack"),code:"list-mounted"},{key:"on_list_delete",name:k.getMessage("listDataDelete"),code:"list-delete"},{key:"on_list_before_insert",name:k.getMessage("listDataAdd"),code:"list-before-insert"},{key:"on_input",name:k.getMessage("onInput"),code:"input"},{key:"on_blur",name:k.getMessage("onBlur"),code:"blur"},{key:"on_focus",name:k.getMessage("onFocus"),code:"focus"},{key:"on_wps_open",name:k.getMessage("onOpenFile"),code:"wps-open"},{key:"on_wps_save",name:k.getMessage("onSaveFile"),code:"wps-save"},{key:"on_wps_rename",name:k.getMessage("rename"),code:"wps-rename"},{key:"on_list_actions",name:k.getMessage("onClickBtn"),code:"list-actions"},{key:"on_list_render_operation",name:k.getMessage("cellRender"),code:"list-render-operation"},{key:"on_list_rowclick",name:k.getMessage("rowClick"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:k.getMessage("rowDelete"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:k.getMessage("listDataImport"),code:"list-before-import"},{key:"on_list_rows_checked",name:k.getMessage("rowSelected"),code:"list-rows-checked"},{key:"on_change_tab",name:k.getMessage("tabChange"),code:"change-tab"},{key:"on_modal_ok",name:k.getMessage("modalConfirm"),code:"modal-ok"}]};k.getMessage("modalConfirm");var Yg=function(){function e(){Jg(this,e)}return zg(e,null,[{key:"getEventsFromKeys",value:function(n){var u=typeof n=="string"?[n]:n;return e.events.filter(function(a){return u.includes(a.key)})}},{key:"getEventsFromControl",value:function(n){var u=[],a=n.eventKeys;u=u.concat(e.events.filter(function(s){return a.includes(s.key)}));var r=n.customEvents.map(function(s){var o=s.key;return s.namespace!==void 0&&s.namespace!==null&&s.namespace!==""&&(o=s.namespace+":"+s.key),{key:o,code:s.key,name:s.name}});return u=u.concat(r),u}}]),e}();Qg(Yg,"events",Zg());class $s{constructor(t){var n,u,a;this.type=t.type,this.label=t.label,this.key=t.key,this.component=t.component,this.effect=(n=t.effect)!=null?n:{},this.scopeEffect=(u=t.scopeEffect)!=null?u:Bp,this.defaultValue=t.defaultValue,this.validator=t.validator,this.props=(a=t.props)!=null?a:new Q,this.effectKeys=Object.keys(this.effect)}filterEffects(t){return t===""?Object.values(this.effect):this.effectKeys.filter(n=>new RegExp(`^${n}(\\.\\w+)*$`).test(t)).map(n=>this.effect[n])}callEffectFn(t,n){try{const u=t.apply(null,n);ws(u)&&Object.assign(this.props,u)}catch(u){kp(`effect error
|
|
46
|
-
${u}`)}}callEffect(t,...n){this.filterEffects(t).forEach(u=>this.callEffectFn(u,n))}callScopeEffect(...t){this.callEffectFn(this.scopeEffect,t)}}class Ps{constructor(t){var n,u;this.type="group",this.title=(n=t.title)!=null?n:"",this.required=(u=t.required)!=null?u:!1,this.items=t.items,this.tips=t.tips,this.visible=t.items.some(a=>{var r;return(r=a.props)==null?void 0:r.visible})}}function ks(e){return"type"in e&&e.type==="tab"}class Vs{constructor(t){this.type="tab",this.title=t.title,this.items=t.items}}class e5 extends Q{constructor(t){super(t),ws(t)&&Object.entries(t).forEach(([n,u])=>{this[n]=u})}}class t5 extends Q{constructor(t){var n,u,a,r;super(t),this.maxLength=(n=t==null?void 0:t.maxLength)!=null?n:"",this.minLength=(u=t==null?void 0:t.minLength)!=null?u:"",this.placeholder=(a=t==null?void 0:t.placeholder)!=null?a:"",this.i18n=(r=t==null?void 0:t.i18n)!=null?r:!1}}class n5 extends Q{constructor(t){var n,u,a;super(t),this.max=(n=t==null?void 0:t.max)!=null?n:"",this.min=(u=t==null?void 0:t.min)!=null?u:"",this.placeholder=(a=t==null?void 0:t.placeholder)!=null?a:""}}class u5 extends Q{constructor(t){var n,u,a;super(t),this.showType=(n=t==null?void 0:t.showType)!=null?n:"switch",this.tips=(u=t==null?void 0:t.tips)!=null?u:"",this.disabled=(a=t==null?void 0:t.disabled)!=null?a:!1}}class r5 extends Q{constructor(t){var n;super(t),this.options=(n=t==null?void 0:t.options)!=null?n:[]}}class a5 extends Q{constructor(t){var n,u;super(t),this.placeholder=(n=t==null?void 0:t.placeholder)!=null?n:"",this.options=(u=t==null?void 0:t.options)!=null?u:[]}}class s5 extends Q{constructor(t){var n,u;super(t),this.options=(n=t==null?void 0:t.options)!=null?n:[],this.showType=(u=t==null?void 0:t.showType)!=null?u:"outline"}}class o5 extends Q{constructor(t){var n,u,a,r,s,o;super(t),this.maxLength=(n=t==null?void 0:t.maxLength)!=null?n:"",this.minLength=(u=t==null?void 0:t.minLength)!=null?u:"",this.placeholder=(a=t==null?void 0:t.placeholder)!=null?a:"",this.maxRows=(r=t==null?void 0:t.maxRows)!=null?r:"",this.minRows=(s=t==null?void 0:t.minRows)!=null?s:"",this.i18n=(o=t==null?void 0:t.i18n)!=null?o:!1}}function i5(e,t){switch(e){case"input":return new t5(t);case"textarea":return new o5(t);case"input-number":return new n5(t);case"switch":return new u5(t);case"radio":return new s5(t);case"checkbox":return new r5(t);case"select":return new a5(t);default:return new e5(t)}}function l5(e){return function(t){const n=e.get(t);if(!!n)return new $s(Rt(yt({},n),{props:i5(n.component,"props"in n?n.props:void 0)}))}}function c5(e){const t=e.fields.reduce((a,r)=>(a.set(r.key,r),a),new Map);function n(a){return new Ps(Rt(yt({},a),{items:a.items.map(l5(t)).filter(Boolean)}))}function u(a){return a.map(n)}return e.groups.map(a=>ks(a)?new Vs(Rt(yt({},a),{items:u(a.items)})):n(a))}function Us(){return[{label:k.getMessage("hide"),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,t){const{oldParent:n,newParent:u,instance:a}=t;if((n==null?void 0:n.type)==="advanced-container"&&u.type==="positioning-container"&&(e.setInstance(a,"style.width",""),e.setInstance(a,"style.widthConfig","fill")),u)return{visible:u.type==="advanced-container"}}},{key:"style.height",component:"styleComponent",props:{configKey:"style.heightConfig",options:["px","%","fill","hug"]},scopeEffect(e,t){const{oldParent:n,newParent:u,instance:a}=t;if((n==null?void 0:n.type)==="advanced-container"&&u.type==="positioning-container"&&(e.setInstance(a,"style.height",""),e.setInstance(a,"style.heightConfig","fill")),t.newParent)return{visible:t.newParent.type==="advanced-container"}}}]}function f5(e){return[...Us(),{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(t){if(!t)return k.getMessage("titleRequired")}},{label:k.getMessage("hideCaption"),key:"isHideCaption",type:"boolean",component:"switch",defaultValue:e==null?void 0:e.isHideCaption,props:{showType:"checkbox"},scopeEffect(t,n){var u,a;if(((u=n.current)==null?void 0:u.type)!==((a=n.from)==null?void 0:a.type))return n.current.type==="subtable"&&t.setInstance(n.control,"isHideCaption",!0),{visible:n.current.type!=="subtable"}}},{key:"labelPosition",type:"string",component:"radio",defaultValue:e==null?void 0:e.labelPosition,props:{showType:"solid",options:[{label:k.getMessage("top"),value:"top"},{label:k.getMessage("left"),value:"left"}]}},{key:"defaultState",type:"string",component:"radio",defaultValue:e==null?void 0:e.defaultState,props:{showType:"solid",options:[{label:k.getMessage("default"),value:"default"},{label:k.getMessage("readonly"),value:"readonly"}]}},{label:k.getMessage("required"),key:"required",type:"boolean",component:"switch",defaultValue:e==null?void 0:e.required},{label:k.getMessage("textTip"),key:"placeholder",type:"string",component:"input",defaultValue:e==null?void 0:e.placeholder,props:{maxLength:80,i18n:!0}}]}z.Group=Ps,z.Setting=$s,z.Tab=Vs,z.createBaseFields=Us,z.createFormBaseFields=f5,z.defineInstance=ne,z.initSettings=c5,z.isTabSchema=ks,Object.defineProperty(z,"__esModule",{value:!0})});
|
|
1
|
+
var G5=Object.defineProperty,W5=Object.defineProperties;var z5=Object.getOwnPropertyDescriptors;var Q=Object.getOwnPropertySymbols;var q5=Object.prototype.hasOwnProperty,H5=Object.prototype.propertyIsEnumerable;var Z=(s,v,c)=>v in s?G5(s,v,{enumerable:!0,configurable:!0,writable:!0,value:c}):s[v]=c,D=(s,v)=>{for(var c in v||(v={}))q5.call(v,c)&&Z(s,c,v[c]);if(Q)for(var c of Q(v))H5.call(v,c)&&Z(s,c,v[c]);return s},b=(s,v)=>W5(s,z5(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(u){return u}class c{constructor(e){var t,a,n;this.visible=(t=e==null?void 0:e.visible)!=null?t:!0,this.expression=(a=e==null?void 0:e.expression)!=null?a:!1,this.updateParent=(n=e==null?void 0:e.updateParent)!=null?n:!1}get isAtomicComponent(){return!0}}var O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Y="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",uu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",eu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",tu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",au="{caption}\u5FC5\u586B",nu="\u8BF7\u8F93\u5165\u6807\u9898",ru="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",iu="\u8BF7\u8F93\u5165\u884C\u6807\u9898",ou="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",lu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",su="\u8BF7\u7ED1\u5B9A\u8868\u5355",cu="\u8BF7\u7ED1\u5B9A\u5217\u8868",Eu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Bu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",vu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Fu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",du="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",pu="\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",mu="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Au="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",hu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",gu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Du="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",bu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",fu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",$u="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",Su="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",yu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Mu="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Iu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",wu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Lu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",xu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ru="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",ku="\u8BF7\u7ED1\u5B9A\u670D\u52A1",_u="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Uu="\u8BF7\u9009\u62E9\u7701",Vu="\u8BF7\u9009\u62E9\u5E02",Nu="\u8BF7\u9009\u62E9\u533A",Tu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Pu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Gu="\u8BF7\u8F93\u5165\u5217\u5BBD",Wu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",zu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",qu="\u8BF7\u9009\u62E9\u63A7\u4EF6",Hu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",ju="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Ku="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Xu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Ju="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Qu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Zu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ou="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Yu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ue="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ee="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",te="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ae="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ne="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",re="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ie="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",oe="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",le="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",se="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ce="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ee="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Be="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",ve="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",Fe="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",de="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",pe="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",Ce="\u6279\u91CF\u5220\u9664",me="\u6279\u91CF\u6253\u5370",Ae="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",he="\u6309\u94AE",ge="\u521B\u5EFA\u5355\u636E",De="\u4EEA\u8868\u76D8",be="\u5206\u5272\u7EBF",fe="\u5BFC\u51FA",$e="\u8868\u5355\u64CD\u4F5C",Se="\u5BFC\u5165",ye="\u53D1\u7968\u8BC6\u522B",Me="\u94FE\u63A5",Ie="\u5217\u8868\u9009\u62E9",we="\u5217\u8868\u89C6\u56FE",Le="\u64CD\u4F5C\u6309\u94AE",xe="\u5206\u9875",Re="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",ke="\u8BF4\u660E\u6587\u5B57",_e="\u6587\u5B57\u8BC6\u522B",Ue="\u6807\u9898\u7EC4\u4EF6",Ve="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Ne="\u6570\u7EC4",Te="\u81EA\u52A8\u7F16\u53F7",Pe="\u81EA\u5B9A\u4E49",Ge="\u6570\u503C",We="\u90E8\u95E8",ze="\u4EBA\u5458",qe="\u9644\u4EF6",He="\u56FE\u7247",je="\u5730\u5740",Ke="\u64CD\u4F5C",Xe="\u5E8F\u53F7",Je="\u4EBA\u5458",Qe="\u957F\u6587\u672C",Ze="\u65E5\u671F\u533A\u95F4",Oe="\u65E5\u671F",Ye="\u77ED\u6587\u672C",ut="\u6362\u884C\u5BB9\u5668Wrap",et="\u8868\u683C",tt="\u660E\u7EC6\u5B50\u8868",at="\u5730\u5740",nt="\u91D1\u989D",rt="\u8BA1\u7B97\u516C\u5F0F",it="\u591A\u9009",ot="\u7535\u5B50\u7B7E\u7AE0",lt="\u5355\u884C\u6587\u672C",st="\u6570\u5B57",ct="\u4E1A\u52A1\u7EC4\u7EC7",Et="\u5355\u9009",Bt="\u5BCC\u6587\u672C",vt="\u8BC4\u5206",Ft="\u6570\u5B57\u533A\u95F4",dt="\u4E0B\u62C9\u5355\u9009",pt="\u4E0B\u62C9\u591A\u9009",Ct="\u5173\u8054\u5355\u9009",mt="\u591A\u884C\u6587\u672C",At="\u6811",ht="Vue\u5BB9\u5668",gt="Vue\u9875\u9762",Dt="\u5728\u7EBF\u6587\u6863",bt="\u6309\u94AE\u64CD\u4F5C\u680F",ft="\u9AD8\u7EA7\u5BB9\u5668",$t="\u5206\u7EC4",St="\u6805\u683C\u5217",yt="\u6570\u636E\u5BB9\u5668",Mt="\u753B\u5E03",It="\u6362\u884C\u5BB9\u5668",wt="\u6805\u683C\u7B49\u5206\u884C",Lt="\u5217\u8868\u5BB9\u5668",xt="\u81EA\u7531\u9875\u9762",Rt="\u5B9A\u4F4D\u5B50\u5BB9\u5668",kt="\u5B9A\u4F4D\u5BB9\u5668",_t="\u6805\u683C\u5E03\u5C40",Ut="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Vt="\u660E\u7EC6\u5B50\u8868\u884C",Nt="\u6807\u7B7E\u9875",Tt="\u6807\u7B7E\u5355\u5143",Pt="\u5DE5\u5177\u680F",Gt="\u6279\u91CF\u63D0\u4EA4",Wt="\u5BFC\u51FA\u8BB0\u5F55",zt="\u5217\u8868\u89C6\u56FE",qt="\u7ED3\u675F\u65F6\u95F4",Ht="\u5F00\u59CB\u65F6\u95F4",jt="\u5355\u4F4D",Kt="\u7ED3\u679C",Xt="\u5E01\u79CD",Jt="\u7ED3\u675F\u65E5\u671F",Qt="\u5F00\u59CB\u65E5\u671F",Zt="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",Ot="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",Yt="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",ua="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",ea="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",ta="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",aa="\u8BF7\u9009\u62E9",na="\u8BF7\u9009\u62E9\u7EC4\u7EC7",ra="\u8BF7\u9009\u62E9\u90E8\u95E8",ia="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",oa="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",la="\u8BF7\u9009\u62E9\u5730\u5740",sa="\u5F39\u7A97\u786E\u8BA4\u65F6",ca="\u6807\u7B7E\u9875\u5207\u6362\u65F6",Ea="\u884C\u9009\u4E2D\u65F6",Ba="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",va="\u884C\u5220\u9664\u524D",Fa="\u884C\u70B9\u51FB\u65F6",da="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",pa="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",Ca="\u91CD\u547D\u540D\u65F6",ma="\u4FDD\u5B58\u6587\u4EF6\u65F6",Aa="\u6253\u5F00\u6587\u4EF6\u65F6",ha="\u83B7\u53D6\u7126\u70B9\u65F6",ga="\u5931\u53BB\u7126\u70B9\u65F6",Da="\u7528\u6237\u8F93\u5165\u65F6",ba="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",fa="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",$a="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",Sa="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",ya="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Ma="\u641C\u7D22\u65F6",Ia="\u503C\u53D1\u751F\u53D8\u5316\u65F6",wa="\u6267\u884C\u5B8C\u6210\u65F6",La="\u70B9\u51FB\u65F6",xa="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",Ra="\u8BF7\u8F93\u5165\u65E5\u671F",ka="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",_a="\u8BF7\u8F93\u5165",Ua="\u9ED8\u8BA4\u6A21\u7248",Va="\u5DE6\u53F3\u5E03\u5C40",Na="\u4E0A\u4E0B\u5E03\u5C40",Ta="\u53EA\u8BFB",Pa="\u5FC5\u586B",Ga="\u63D0\u793A\u6587\u5B57",Wa="\u9690\u85CF\u6807\u9898",za="\u6807\u9898\u5FC5\u586B",qa="\u7EC4\u7EC7\u5F62\u6001",Ha="\u4E1A\u52A1\u7C7B\u578B",ja="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Ka="\u9690\u85CF",Xa="\u6D41\u7A0B\u72B6\u6001",Ja="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Qa="\u5220\u9664",Za="\u7F16\u8F91",Oa="\u67E5\u770B",Ya="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",un="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",en="\u5145\u6EE1\u6574\u884C",tn="\u6700\u5C0F\u503C",an="\u6700\u5927\u503C",nn="\u65B0\u5EFA\u6587\u6863",rn="\u91CD\u7F6E",on="\u67E5\u8BE2",ln="\u660E\u7EC6",sn="\u6253\u5370",cn="\u4FDD\u5B58\u8349\u7A3F",En="\u4FDD\u5B58",Bn="\u53D6\u6D88",vn="\u4E0A\u4F20\u56FE\u7247",Fn="\u53D1\u8D77\u7B7E\u7F72",dn="\u4E0A\u4F20\u9644\u4EF6",pn="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",Cn={isNotNumber:O,isNotString:Y,isNotObject:uu,isNotArray:eu,isNotBoolean:tu,runtimeRequired:au,pleaseEnterCaption:nu,pleaseEnterCaptionTip:ru,pleaseEnterRowCaption:iu,pleaseEnterPlaceholder:ou,pleaseEnterFieldCode:lu,pleaseEnterForm:su,pleaseEnterList:cu,pleaseEnterProcess:Eu,pleaseEnterLabel:Bu,pleaseEnterValue:vu,bizKeyNotBindFiled:Fu,pleaseSelectOneField:du,pleaseEnterNumberRange:pu,pleaseEnterAValueGreaterThanMin:Cu,pleaseEnterAValueLessThanMax:mu,numberRangeSetError:Au,stringRangeError:hu,attachmentMaxSize:gu,pleaseEnterTotalScoreSetting:Du,theTotalScoreMustNotBeLessThan1:bu,scoreDefaultValueRange:fu,attachmentLimitError:$u,PleaseReselectTheOptionalQuantity:Su,TheMaximumLengthIsGreaterThanTheMinimumLength:yu,TheMinimumLengthIsGreaterThanTheMaximumLength:Mu,PleaseSelectTheCorrectOptionSettings:Iu,optionIdIsRepeat:wu,optionIsRequired:Lu,pleaseEnterDataCode:xu,pleaseEnterValueFieldCode:Ru,pleaseEnterSvcCode:ku,pleaseBindAtLeastOneDisplayValue:_u,pleaseSelectProvince:Uu,pleaseSelectCity:Vu,pleaseSelectDistrict:Nu,limitRowsCannotBeLessThan0:Tu,TheNumberOfRowsCannotBeLessThanMinRows:Pu,pleaseEnterColumnWidth:Gu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Wu,pleaseCompleteAllRulesAndConditions:zu,pleaseSelectControl:qu,pleaseSelectAtLeastOneColumn:Hu,pleaseSelectFillBackMode:ju,pleaseSelectDashboard:Ku,rootNodeIsRequired:Xu,theViewNameCannotBeEmpty:Ju,pleaseSelectOcrType:Qu,pleaseSelectAtLeastOneFieldToFillIn:Zu,pleaseChooseAtLeastOne:Ou,pleaseEnterButtonContent:Yu,pleaseEnterDataCodeInDataSetting:ue,pleaseEnterValueFieldCodeInDataSetting:ee,pleaseEnterSvcCodeInDataSetting:te,pleaseBindAtLeastOneDisplayValueInDataSetting:ae,rootNodeIsRequiredInDataSetting:ne,pleaseEnterMaxHeight:re,pleaseEnterWatermark:ie,pleaseEnterFileName:oe,pleaseUploadAtLeastOnePrintTemplate:le,pleaseAssignBusiness:se,pleaseAssignExternal:ce,pleaseEnterAliasCode:Ee,pleaseSelectDataCode:Be,pleaseSelectSvcCode:ve,pleaseSelectJoinFieldCode:Fe,pleaseSelectMainFieldCode:de,pleaseSelectSortFieldCode:pe,batchDeleteButton:Ce,batchPrintListButton:me,batchPrintRecordList:Ae,button:he,createFormListButton:ge,dashboard:De,divider:be,exportListButton:fe,formSelectButton:$e,importRecordListButton:Se,invoiceCheckButton:ye,link:Me,listSelectButton:Ie,ListViewSelect:we,operationButton:Le,pagination:xe,submissionRecordListButton:Re,text:ke,textOcrButton:_e,title:Ue,approvalStatusColumn:Ve,array:Ne,autoNumber:Te,custom:Pe,decimal:Ge,department:We,employee:ze,file:qe,image:He,location:je,operation:Ke,order:Xe,people:Je,long:Qe,timescope:Ze,timestamp:Oe,varchar:Ye,gridLayoutWrap:ut,gridTable:et,subTable:tt,address:at,amount:nt,calc:rt,checkBox:it,electronicSignature:ot,input:lt,number:st,organizationSelection:ct,radio:Et,richText:Bt,score:vt,searchNumberRange:Ft,select:dt,selectMultiple:pt,selectRelation:Ct,textarea:mt,tree:At,vueFormItem:ht,vuePage:gt,WPS:Dt,actionBar:bt,advancedContainer:ft,cardGroup:$t,col:St,dataView:yt,grid:Mt,gridLayoutContainer:It,gridRow:wt,listView:Lt,page:xt,position:Rt,positioningContainer:kt,row:_t,subtableColumn:Ut,subtableRow:Vt,tab:Nt,tabPane:Tt,toolbox:Pt,batchSubmissionListButton:Gt,exportRecordListButton:Wt,listViewSelect:zt,endTime:qt,startTime:Ht,unit:jt,result:Kt,currency:Xt,endDate:Jt,startDate:Qt,pleaseSelectCompanyName:Zt,pleaseSelectPhoneOrEmail:Ot,pleaseSelectSignType:Yt,pleaseSelectSigner:ua,pleaseSelectOnlyOne:ea,pleaseSelectSignFile:ta,pleaseSelect:aa,pleaseSelectOrg:na,pleaseSelectDept:ra,pleaseSelectEndDate:ia,pleaseSelectStartDate:oa,pleaseChooseAddress:la,modalConfirm:sa,tabChange:ca,rowSelected:Ea,listDataImport:Ba,rowDelete:va,rowClick:Fa,cellRender:da,onClickBtn:pa,rename:Ca,onSaveFile:ma,onOpenFile:Aa,onFocus:ha,onBlur:ga,onInput:Da,listDataAdd:ba,listDataDelete:fa,listDataBack:$a,listDataCreate:Sa,listDataChange:ya,search:Ma,valueChange:Ia,finished:wa,click:La,pleaseEnterNameorEmail:xa,pleaseEnterDate:Ra,pleaseEnterAutonumber:ka,pleaseEnter:_a,defaultTemplate:Ua,left:Va,top:Na,default:"\u666E\u901A",readonly:Ta,required:Pa,textTip:Ga,hideCaption:Wa,titleRequired:za,organizationalForm:qa,businessType:Ha,deleteConfirm:ja,hide:Ka,processStatus:Xa,approvedDocuments:Ja,delete:Qa,edit:Za,view:Oa,loadCtrlErrorTip:Ya,loadCtrlError:un,fullLine:en,min:tn,max:an,createWPS:nn,reset:rn,query:on,detailed:ln,print:sn,draft:cn,save:En,cancel:Bn,uploadImg:vn,signature:Fn,uploadFile:dn,linkContent:pn},mn="Please enter a number",An="Please enter a string",hn="Please enter an object",gn="Please enter an array",Dn="Please enter a boolean",bn="{caption} Required",fn="Please enter the title",$n="Please enter the bubble prompt",Sn="Please enter the row title",yn="Please enter the prompt text",Mn="Please bind data items",In="Please bind the form",wn="Please bind the list",Ln="Please bind the process",xn="Please enter the displayed value",Rn="Please enter the stored value",kn="The document number is not bound to the data item",_n="Please select at least one display field",Un="Please enter a value greater than or equal to {min} and less than or equal to {max}",Vn="Please enter a value greater than or equal to {min}",Nn="Please enter a value less than or equal to {max}",Tn="The value range is set incorrectly",Pn="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Gn="The attachment size must be between 0MB and 1000MB",Wn="Please fill in the total score setting",zn="The total score cannot be less than 1",qn="The default value must be between {min} and {max}",Hn="The number of attachment uploads exceeds the limit",jn="Please re-select the optional quantity",Kn="The maximum length of the control must be greater than the minimum length",Xn="The minimum length of the control must be less than the maximum length",Jn="Please select the correct option setting",Qn="Option ID cannot be repeated",Zn="Please enter at least one option",On="Please bind the data source",Yn="Please bind the stored value",ur="Please bind the service",er="At least one display value must be bound",tr="Please select a province",ar="Please select a city",nr="Please select a district",rr="The minimum number of lines to fill in cannot be less than 0",ir="The number of rows cannot be less than {min} rows",or="Please enter the column width",lr="Please set the logical relationship of all rule conditions",sr="Please complete all rules and conditions",cr="please select control",Er="Please select the dashboard",Br="View name cannot be empty",vr="Please select recognition type",Fr="Please select at least one field to fill in",dr="Please select at least one",pr="Please enter the button title",Cr="Please bind the business model in the data settings",mr="Please bind storage values in data settings",Ar="Please bind the service in the data settings",hr="Please bind at least one display value in the data settings",gr="Please select the root node in the data settings",Dr="Please enter the maximum height",br="The input content cannot be empty",fr="Watermark cannot be empty",$r="File name cannot be empty",Sr="Please upload at least one printing template!\uFF01",yr="Please select a specific business department",Mr="Please select a specified external organization",Ir="Please enter a sub table alias",wr="Please select the associated table to set the business model",Lr="Please select the association table to set the binding service",xr="Select associated sub table fields",Rr="Please select the associated main table field",kr="Please select the sort field",_r="\u6279\u91CF\u5220\u9664",Ur="\u6279\u91CF\u6253\u5370",Vr="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Nr="\u6309\u94AE",Tr="\u521B\u5EFA\u5355\u636E",Pr="\u4EEA\u8868\u76D8",Gr="\u5206\u5272\u7EBF",Wr="\u5BFC\u51FA",zr="\u8868\u5355\u64CD\u4F5C",qr="\u5BFC\u5165",Hr="\u53D1\u7968\u8BC6\u522B",jr="\u94FE\u63A5",Kr="\u5217\u8868\u9009\u62E9",Xr="\u5217\u8868\u89C6\u56FE",Jr="\u64CD\u4F5C\u6309\u94AE",Qr="\u5206\u9875",Zr="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Or="\u8BF4\u660E\u6587\u5B57",Yr="\u6587\u5B57\u8BC6\u522B",u0="\u6807\u9898\u7EC4\u4EF6",e0="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",t0="\u6570\u7EC4",a0="\u81EA\u52A8\u7F16\u53F7",n0="\u81EA\u5B9A\u4E49",r0="\u6570\u503C",i0="\u90E8\u95E8",o0="\u4EBA\u5458",l0="\u9644\u4EF6",s0="\u56FE\u7247",c0="\u5730\u5740",E0="\u64CD\u4F5C",B0="\u5E8F\u53F7",v0="\u4EBA\u5458",F0="\u957F\u6587\u672C",d0="\u65E5\u671F\u533A\u95F4",p0="\u65E5\u671F",C0="\u77ED\u6587\u672C",m0="\u6362\u884C\u5BB9\u5668Wrap",A0="\u8868\u683C",h0="\u660E\u7EC6\u5B50\u8868",g0="\u5730\u5740",D0="\u91D1\u989D",b0="\u8BA1\u7B97\u516C\u5F0F",f0="\u591A\u9009",$0="\u7535\u5B50\u7B7E\u7AE0",S0="\u5355\u884C\u6587\u672C",y0="\u6570\u5B57",M0="\u4E1A\u52A1\u7EC4\u7EC7",I0="\u5355\u9009",w0="\u5BCC\u6587\u672C",L0="\u8BC4\u5206",x0="\u6570\u5B57\u533A\u95F4",R0="\u4E0B\u62C9\u5355\u9009",k0="\u4E0B\u62C9\u591A\u9009",_0="\u5173\u8054\u5355\u9009",U0="\u591A\u884C\u6587\u672C",V0="\u6811",N0="Vue\u5BB9\u5668",T0="Vue\u9875\u9762",P0="\u5728\u7EBF\u6587\u6863",G0="\u6309\u94AE\u64CD\u4F5C\u680F",W0="\u9AD8\u7EA7\u5BB9\u5668",z0="\u5206\u7EC4",q0="\u6805\u683C\u5217",H0="\u6570\u636E\u5BB9\u5668",j0="\u753B\u5E03",K0="\u6362\u884C\u5BB9\u5668",X0="\u6805\u683C\u7B49\u5206\u884C",J0="\u5217\u8868\u5BB9\u5668",Q0="\u81EA\u7531\u9875\u9762",Z0="\u5B9A\u4F4D\u5B50\u5BB9\u5668",O0="\u5B9A\u4F4D\u5BB9\u5668",Y0="\u6805\u683C\u5E03\u5C40",ui="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",ei="\u660E\u7EC6\u5B50\u8868\u884C",ti="\u6807\u7B7E\u9875",ai="\u6807\u7B7E\u5355\u5143",ni="\u5DE5\u5177\u680F",ri="\u6279\u91CF\u63D0\u4EA4",ii="\u5BFC\u51FA\u8BB0\u5F55",oi="\u5217\u8868\u89C6\u56FE",li={isNotNumber:mn,isNotString:An,isNotObject:hn,isNotArray:gn,isNotBoolean:Dn,runtimeRequired:bn,pleaseEnterCaption:fn,pleaseEnterCaptionTip:$n,pleaseEnterRowCaption:Sn,pleaseEnterPlaceholder:yn,pleaseEnterFieldCode:Mn,pleaseEnterForm:In,pleaseEnterList:wn,pleaseEnterProcess:Ln,pleaseEnterLabel:xn,pleaseEnterValue:Rn,bizKeyNotBindFiled:kn,pleaseSelectOneField:_n,pleaseEnterNumberRange:Un,pleaseEnterAValueGreaterThanMin:Vn,pleaseEnterAValueLessThanMax:Nn,numberRangeSetError:Tn,stringRangeError:Pn,attachmentMaxSize:Gn,pleaseEnterTotalScoreSetting:Wn,theTotalScoreMustNotBeLessThan1:zn,scoreDefaultValueRange:qn,attachmentLimitError:Hn,PleaseReselectTheOptionalQuantity:jn,TheMaximumLengthIsGreaterThanTheMinimumLength:Kn,TheMinimumLengthIsGreaterThanTheMaximumLength:Xn,PleaseSelectTheCorrectOptionSettings:Jn,optionIdIsRepeat:Qn,optionIsRequired:Zn,pleaseEnterDataCode:On,pleaseEnterValueFieldCode:Yn,pleaseEnterSvcCode:ur,pleaseBindAtLeastOneDisplayValue:er,pleaseSelectProvince:tr,pleaseSelectCity:ar,pleaseSelectDistrict:nr,limitRowsCannotBeLessThan0:rr,TheNumberOfRowsCannotBeLessThanMinRows:ir,pleaseEnterColumnWidth:or,pleaseSetTheLogicalRelationshipOfAllRuleConditions:lr,pleaseCompleteAllRulesAndConditions:sr,pleaseSelectControl:cr,pleaseSelectDashboard:Er,theViewNameCannotBeEmpty:Br,pleaseSelectOcrType:vr,pleaseSelectAtLeastOneFieldToFillIn:Fr,pleaseChooseAtLeastOne:dr,pleaseEnterButtonContent:pr,pleaseEnterDataCodeInDataSetting:Cr,pleaseEnterValueFieldCodeInDataSetting:mr,pleaseEnterSvcCodeInDataSetting:Ar,pleaseBindAtLeastOneDisplayValueInDataSetting:hr,rootNodeIsRequiredInDataSetting:gr,pleaseEnterMaxHeight:Dr,pleaseEnter:br,pleaseEnterWatermark:fr,pleaseEnterFileName:$r,pleaseUploadAtLeastOnePrintTemplate:Sr,pleaseAssignBusiness:yr,pleaseAssignExternal:Mr,pleaseEnterAliasCode:Ir,pleaseSelectDataCode:wr,pleaseSelectSvcCode:Lr,pleaseSelectJoinFieldCode:xr,pleaseSelectMainFieldCode:Rr,pleaseSelectSortFieldCode:kr,batchDeleteButton:_r,batchPrintListButton:Ur,batchPrintRecordList:Vr,button:Nr,createFormListButton:Tr,dashboard:Pr,divider:Gr,exportListButton:Wr,formSelectButton:zr,importRecordListButton:qr,invoiceCheckButton:Hr,link:jr,listSelectButton:Kr,ListViewSelect:Xr,operationButton:Jr,pagination:Qr,submissionRecordListButton:Zr,text:Or,textOcrButton:Yr,title:u0,approvalStatusColumn:e0,array:t0,autoNumber:a0,custom:n0,decimal:r0,department:i0,employee:o0,file:l0,image:s0,location:c0,operation:E0,order:B0,people:v0,long:F0,timescope:d0,timestamp:p0,varchar:C0,gridLayoutWrap:m0,gridTable:A0,subTable:h0,address:g0,amount:D0,calc:b0,checkBox:f0,electronicSignature:$0,input:S0,number:y0,organizationSelection:M0,radio:I0,richText:w0,score:L0,searchNumberRange:x0,select:R0,selectMultiple:k0,selectRelation:_0,textarea:U0,tree:V0,vueFormItem:N0,vuePage:T0,WPS:P0,actionBar:G0,advancedContainer:W0,cardGroup:z0,col:q0,dataView:H0,grid:j0,gridLayoutContainer:K0,gridRow:X0,listView:J0,page:Q0,position:Z0,positioningContainer:O0,row:Y0,subtableColumn:ui,subtableRow:ei,tab:ti,tabPane:ai,toolbox:ni,batchSubmissionListButton:ri,exportRecordListButton:ii,listViewSelect:oi},si="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ci="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ei="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Bi="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vi="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fi="{caption}\u5FC5\u9808",di="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",pi="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ci="\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",hi="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",gi="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Di="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",bi="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",fi="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$i="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Si="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",yi="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Mi="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ii="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wi="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Li="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xi="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ri="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ki="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",_i="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ui="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",Vi="\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",Ti="\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",Pi="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Gi="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",zi="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qi="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Hi="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ji="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Ki="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Xi="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ji="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Qi="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Zi="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Oi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Yi="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",uo="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",eo="please select control",to="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ao="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",no="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ro="\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",io="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",oo="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",lo="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",so="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",co="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Eo="\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",Bo="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",vo="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Fo="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",po="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Co="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",mo="\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",Ao="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ho="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",go="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Do="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",bo="\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",fo="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",$o="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",So="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",yo="\u6279\u91CF\u5220\u9664",Mo="\u6279\u91CF\u6253\u5370",Io="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",wo="\u6309\u94AE",Lo="\u521B\u5EFA\u5355\u636E",xo="\u4EEA\u8868\u76D8",Ro="\u5206\u5272\u7EBF",ko="\u5BFC\u51FA",_o="\u8868\u5355\u64CD\u4F5C",Uo="\u5BFC\u5165",Vo="\u53D1\u7968\u8BC6\u522B",No="\u94FE\u63A5",To="\u5217\u8868\u9009\u62E9",Po="\u5217\u8868\u89C6\u56FE",Go="\u64CD\u4F5C\u6309\u94AE",Wo="\u5206\u9875",zo="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",qo="\u8BF4\u660E\u6587\u5B57",Ho="\u6587\u5B57\u8BC6\u522B",jo="\u6807\u9898\u7EC4\u4EF6",Ko="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Xo="\u6570\u7EC4",Jo="\u81EA\u52A8\u7F16\u53F7",Qo="\u81EA\u5B9A\u4E49",Zo="\u6570\u503C",Oo="\u90E8\u95E8",Yo="\u4EBA\u5458",ul="\u9644\u4EF6",el="\u56FE\u7247",tl="\u5730\u5740",al="\u64CD\u4F5C",nl="\u5E8F\u53F7",rl="\u4EBA\u5458",il="\u957F\u6587\u672C",ol="\u65E5\u671F\u533A\u95F4",ll="\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",dl="\u8BA1\u7B97\u516C\u5F0F",pl="\u591A\u9009",Cl="\u7535\u5B50\u7B7E\u7AE0",ml="\u5355\u884C\u6587\u672C",Al="\u6570\u5B57",hl="\u4E1A\u52A1\u7EC4\u7EC7",gl="\u5355\u9009",Dl="\u5BCC\u6587\u672C",bl="\u8BC4\u5206",fl="\u6570\u5B57\u533A\u95F4",$l="\u4E0B\u62C9\u5355\u9009",Sl="\u4E0B\u62C9\u591A\u9009",yl="\u5173\u8054\u5355\u9009",Ml="\u591A\u884C\u6587\u672C",Il="\u6811",wl="Vue\u5BB9\u5668",Ll="Vue\u9875\u9762",xl="\u5728\u7EBF\u6587\u6863",Rl="\u6309\u94AE\u64CD\u4F5C\u680F",kl="\u9AD8\u7EA7\u5BB9\u5668",_l="\u5206\u7EC4",Ul="\u6805\u683C\u5217",Vl="\u6570\u636E\u5BB9\u5668",Nl="\u753B\u5E03",Tl="\u6362\u884C\u5BB9\u5668",Pl="\u6805\u683C\u7B49\u5206\u884C",Gl="\u5217\u8868\u5BB9\u5668",Wl="\u81EA\u7531\u9875\u9762",zl="\u5B9A\u4F4D\u5B50\u5BB9\u5668",ql="\u5B9A\u4F4D\u5BB9\u5668",Hl="\u6805\u683C\u5E03\u5C40",jl="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Kl="\u660E\u7EC6\u5B50\u8868\u884C",Xl="\u6807\u7B7E\u9875",Jl="\u6807\u7B7E\u5355\u5143",Ql="\u5DE5\u5177\u680F",Zl="\u6279\u91CF\u63D0\u4EA4",Ol="\u5BFC\u51FA\u8BB0\u5F55",Yl="\u5217\u8868\u89C6\u56FE",u5={isNotNumber:si,isNotString:ci,isNotObject:Ei,isNotArray:Bi,isNotBoolean:vi,runtimeRequired:Fi,pleaseEnterCaption:di,pleaseEnterCaptionTip:pi,pleaseEnterRowCaption:Ci,pleaseEnterPlaceholder:mi,pleaseEnterFieldCode:Ai,pleaseEnterForm:hi,pleaseEnterList:gi,pleaseEnterProcess:Di,pleaseEnterLabel:bi,pleaseEnterValue:fi,bizKeyNotBindFiled:$i,pleaseSelectOneField:Si,pleaseEnterNumberRange:yi,pleaseEnterAValueGreaterThanMin:Mi,pleaseEnterAValueLessThanMax:Ii,numberRangeSetError:wi,stringRangeError:Li,attachmentMaxSize:xi,pleaseEnterTotalScoreSetting:Ri,theTotalScoreMustNotBeLessThan1:ki,scoreDefaultValueRange:_i,attachmentLimitError:Ui,PleaseReselectTheOptionalQuantity:Vi,TheMaximumLengthIsGreaterThanTheMinimumLength:Ni,TheMinimumLengthIsGreaterThanTheMaximumLength:Ti,PleaseSelectTheCorrectOptionSettings:Pi,optionIdIsRepeat:Gi,optionIsRequired:Wi,pleaseEnterDataCode:zi,pleaseEnterValueFieldCode:qi,pleaseEnterSvcCode:Hi,pleaseBindAtLeastOneDisplayValue:ji,pleaseSelectProvince:Ki,pleaseSelectCity:Xi,pleaseSelectDistrict:Ji,limitRowsCannotBeLessThan0:Qi,TheNumberOfRowsCannotBeLessThanMinRows:Zi,pleaseEnterColumnWidth:Oi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Yi,pleaseCompleteAllRulesAndConditions:uo,pleaseSelectControl:eo,pleaseSelectDashboard:to,theViewNameCannotBeEmpty:ao,pleaseSelectOcrType:no,pleaseSelectAtLeastOneFieldToFillIn:ro,pleaseChooseAtLeastOne:io,pleaseEnterButtonContent:oo,pleaseEnterDataCodeInDataSetting:lo,pleaseEnterValueFieldCodeInDataSetting:so,pleaseEnterSvcCodeInDataSetting:co,pleaseBindAtLeastOneDisplayValueInDataSetting:Eo,rootNodeIsRequiredInDataSetting:Bo,pleaseEnterMaxHeight:vo,pleaseEnter:Fo,pleaseEnterWatermark:po,pleaseEnterFileName:Co,pleaseUploadAtLeastOnePrintTemplate:mo,pleaseAssignBusiness:Ao,pleaseAssignExternal:ho,pleaseEnterAliasCode:go,pleaseSelectDataCode:Do,pleaseSelectSvcCode:bo,pleaseSelectJoinFieldCode:fo,pleaseSelectMainFieldCode:$o,pleaseSelectSortFieldCode:So,batchDeleteButton:yo,batchPrintListButton:Mo,batchPrintRecordList:Io,button:wo,createFormListButton:Lo,dashboard:xo,divider:Ro,exportListButton:ko,formSelectButton:_o,importRecordListButton:Uo,invoiceCheckButton:Vo,link:No,listSelectButton:To,ListViewSelect:Po,operationButton:Go,pagination:Wo,submissionRecordListButton:zo,text:qo,textOcrButton:Ho,title:jo,approvalStatusColumn:Ko,array:Xo,autoNumber:Jo,custom:Qo,decimal:Zo,department:Oo,employee:Yo,file:ul,image:el,location:tl,operation:al,order:nl,people:rl,long:il,timescope:ol,timestamp:ll,varchar:sl,gridLayoutWrap:cl,gridTable:El,subTable:Bl,address:vl,amount:Fl,calc:dl,checkBox:pl,electronicSignature:Cl,input:ml,number:Al,organizationSelection:hl,radio:gl,richText:Dl,score:bl,searchNumberRange:fl,select:$l,selectMultiple:Sl,selectRelation:yl,textarea:Ml,tree:Il,vueFormItem:wl,vuePage:Ll,WPS:xl,actionBar:Rl,advancedContainer:kl,cardGroup:_l,col:Ul,dataView:Vl,grid:Nl,gridLayoutContainer:Tl,gridRow:Pl,listView:Gl,page:Wl,position:zl,positioningContainer:ql,row:Hl,subtableColumn:jl,subtableRow:Kl,tab:Xl,tabPane:Jl,toolbox:Ql,batchSubmissionListButton:Zl,exportRecordListButton:Ol,listViewSelect:Yl},f={zhCN:Cn,enUS:li,jaJP:u5},L;(function(u){u.Number="Number",u.Operator="Operator",u.VariableInMainTable="VariableInMainTable",u.VariableInCurrentSubTable="VariableInCurrentSubTable",u.VariableInOtherSubTable="VariableInOtherSubTable",u.UndefinedVariable="UndefinedVariable"})(L||(L={}));var x;(function(u){u.SUM="SUM",u.AVG="AVG",u.MAX="MAX",u.MIN="MIN"})(x||(x={}));var $,e5=($=window.localStorage.getItem("locale"))!==null&&$!==void 0?$:"zh-CN",t5=function(){},R;(function(u){u.BASE="base",u.FORM="form",u.LAYOUT="layout",u.WRAP="wrap",u.COLUMN="column",u.LIST="list",u.SEARCH="search"})(R||(R={}));var k;(function(u){u[u.FORM=0]="FORM",u[u.LIST=1]="LIST",u[u.REPORT=2]="REPORT",u[u.DASHBOARD=3]="DASHBOARD",u[u.VUE=4]="VUE",u[u.FREE_PAGE=5]="FREE_PAGE"})(k||(k={}));var _;(function(u){u.TITLE="title",u.LINK="link",u.BUTTON="button",u.DIVIDER="divider",u.TEXT="text",u.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",u.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",u.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",u.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",u.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",u.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",u.EXPORT_LIST_BUTTON="list-page-btn-export-list",u.LIST_SELECT_BUTTON="list-select-button",u.ORGANIZATION_SELECTION="organization-selection",u.FORM_SELECT_BUTTON="form-select-button",u.LIST_VIEW_SELECT="list-view-select",u.TEXT_OCR_BUTTON="text-ocr-button",u.INVOICE_CHECK_BUTTON="invoice-check-button",u.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",u.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",u.VARCHAR_COLUMN="varchar-column",u.TEXT_COLUMN="text-column",u.DECIMAL_COLUMN="decimal-column",u.TIMESCOPE_COLUMN="timescope-column",u.TIMESTAMP_COLUMN="timestamp-column",u.ARRAY_COLUMN="array-column",u.DEPARTMENT_COLUMN="department-column",u.AUTO_NUMBER_COLUMN="auto-number-column",u.FILE_COLUMN="file-column",u.IMAGE_COLUMN="image-column",u.PEOPLE_COLUMN="people-column",u.LOCATION_COLUMN="location-column",u.CUSTOM_COLUMN="custom-column",u.ORDER_COLUMN="order-column",u.OPERATION_COLUMN="operation-column",u.OPERATION_BUTTON="operation-button",u.EMPLOYEE_COLUMN="employee-column",u.Approval_Status_Column="approval-status-column",u.ADDRESS="address",u.AMOUNT="amount",u.ATTACHMENT="attachment",u.AUTO_NUMBER="auto-number",u.CALC="calc",u.CHECKBOX="checkbox",u.DATE_PICKER="date-picker",u.DATE_RANGE="date-range",u.DEPARTMENT="department",u.EMPLOYEE="employee",u.IMAGE="image",u.INPUT="input",u.NUMBER="number",u.RADIO="radio",u.RICH_TEXT="rich-text",u.SCORE="score",u.SEARCH_DATE_RANGE="search-date-range",u.SEARCH_NUMBER_RANGE="search-number-range",u.SEARCH_INPUT="search-input",u.SELECT="select",u.SELECT_MULTIPLE="select-multiple",u.SELECT_RELATION="select-relation",u.VUE_FORM_ITEM="vue-form-item",u.TEXTAREA="textarea",u.EMAIL="email",u.FOOTER="footer",u.HEADER="header",u.ID_CARD="id-card",u.MOBILE="mobile",u.PHONE="phone",u.RADIO_IMAGE="radio-image",u.ELECTRONIC_SIGNATURE="electronic-signature",u.WPS="wps",u.CARD_GROUP="card-group",u.COL="col",u.GRID="grid",u.GRID_ROW="grid-row",u.GRID_TABLE_COLUMN="grid-table-column",u.GRID_LAYOUT_CONTAINER="grid-layout-container",u.ROW="row",u.TWO_COLUMNS="two-columns",u.SUBTABLE_COLUMN="subtable-column",u.SUBTABLE_ROW="subtable-row",u.TAB="tab",u.TAB_PANE="tab-pane",u.TOOLBOX="toolbox",u.DATA_VIEW="data-view",u.LIST_VIEW="list-view",u.ACTION_BAR="action-bar",u.SUBTABLE="subtable",u.GRID_TABLE="grid-table",u.SIMPLE_SEARCH="simple-search",u.PAGINATION="pagination",u.CHECKBOX_IMAGE="checkbox-image",u.DASHBOARD="dashboard",u.TREE="tree",u.EMPLOYEE2="employee2",u.DEPARTMENT2="department2",u.GRID_LAYOUT_WRAP="grid-layout-wrap",u.VUE_PAGE="vue-page"})(_||(_={}));var U;(function(u){u.SAVE="save",u.DRAFT="draft",u.UNSUBMIT="unsubmit",u.AUDIT="audit",u.UNAUDIT="unaudit",u.CANCEL="cancel",u.FORM_SUBMIT="form_submit"})(U||(U={}));var V;(function(u){u.VARCHAR="varchar",u.TEXT="text",u.ARRAY="array",u.ADDRESS="location",u.DECIMAL="decimal",u.DECIMAL_RANGE="decimal_range",u.TIMESTAMP="timestamp",u.EMPLOYEES="people",u.DEPARTMENTS="department",u.MONEY="money",u.TIMESCOPE="timescope",u.FILE="file",u.IMAGE="image",u.AUTO_NUMBER="auto_number",u.CALC="calc",u.LIST="list",u.JSON="json",u.ANY="ANY"})(V||(V={}));var N;(function(u){u.YEAR="year",u.MONTH="month",u.DATE="date",u.DATEHOUR="datehour",u.DATEMIN="datemin",u.DATETIME="datetime"})(N||(N={}));function a5(u){if(u===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return u}function n5(u,e,t){return e=C(e),l5(u,y()?Reflect.construct(e,t||[],C(u).constructor):e.apply(u,t))}function r5(u,e){if(!(u instanceof e))throw new TypeError("Cannot call a class as a function")}function h(u,e,t){return y()?h=Reflect.construct:h=function(n,E,l){var B=[null];B.push.apply(B,E);var p=Function.bind.apply(n,B),g=new p;return l&&m(g,l.prototype),g},h.apply(null,arguments)}function C(u){return C=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},C(u)}function i5(u,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");u.prototype=Object.create(e&&e.prototype,{constructor:{value:u,writable:!0,configurable:!0}}),e&&m(u,e)}function o5(u){return Function.toString.call(u).indexOf("[native code]")!==-1}function l5(u,e){return e&&(s5(e)==="object"||typeof e=="function")?e:a5(u)}function m(u,e){return m=Object.setPrototypeOf||function(a,n){return a.__proto__=n,a},m(u,e)}function s5(u){return u&&typeof Symbol!="undefined"&&u.constructor===Symbol?"symbol":typeof u}function S(u){var e=typeof Map=="function"?new Map:void 0;return S=function(a){if(a===null||!o5(a))return a;if(typeof a!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(a))return e.get(a);e.set(a,n)}function n(){return h(a,arguments,C(this).constructor)}return n.prototype=Object.create(a.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),m(n,a)},S(u)}function y(){try{var u=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(y=function(){return!!u})()}function c5(u){return u+" \u{1F41B}\u{1F41B}\u{1F41B}"}var E5=function(u){i5(e,u);function e(t){r5(this,e);var a;return a=n5(this,e,[t]),a.name="\u{1F4A5} Driven Error",a.message=t?c5(t):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return e}(S(Error));function B5(u){throw new E5(u)}const v5=(u,e,t)=>{if(!u)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const a=u.split(".");let n;const E=(window.baitedaWorkers||{}).languageMessages||{};a.forEach((B,p)=>{p===0?n=E[B]:n&&(n=n[B])});let l="";return n&&(l=n),e&&Object.keys(e).forEach(B=>{const p=e[B];l=l.replace(new RegExp(`\\{\\s*${B}\\s*\\}`,"g"),p)}),l||(t?l=t:l=u),l};function F5(u,e){if(!(u instanceof e))throw new TypeError("Cannot call a class as a function")}function T(u,e){for(var t=0;t<e.length;t++){var a=e[t];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(u,a.key,a)}}function d5(u,e,t){return e&&T(u.prototype,e),t&&T(u,t),u}function p5(u,e,t){return e in u?Object.defineProperty(u,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):u[e]=t,u}var o=function(){function u(){F5(this,u)}return d5(u,null,[{key:"getMessage",value:function(t){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n;return v5("CMD."+t,a,f==null||(n=f[e5.split("-").join("")])===null||n===void 0?void 0:n[t])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(t,a){}}]),u}();p5(o,"$i18n",o.resetI18n());var C5=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},m5={exports:{}};(function(u){(function(e){var t=function(r,i,F){if(!g(i)||V5(i)||N5(i)||T5(i)||p(i))return i;var d,A=0,J=0;if(U5(i))for(d=[],J=i.length;A<J;A++)d.push(t(r,i[A],F));else{d={};for(var w in i)Object.prototype.hasOwnProperty.call(i,w)&&(d[r(w,F)]=t(r,i[w],F))}return d},a=function(r,i){i=i||{};var F=i.separator||"_",d=i.split||/(?=[A-Z])/;return r.split(d).join(F)},n=function(r){return P5(r)?r:(r=r.replace(/[\-_\s]+(.)?/g,function(i,F){return F?F.toUpperCase():""}),r.substr(0,1).toLowerCase()+r.substr(1))},E=function(r){var i=n(r);return i.substr(0,1).toUpperCase()+i.substr(1)},l=function(r,i){return a(r,i).toLowerCase()},B=Object.prototype.toString,p=function(r){return typeof r=="function"},g=function(r){return r===Object(r)},U5=function(r){return B.call(r)=="[object Array]"},V5=function(r){return B.call(r)=="[object Date]"},N5=function(r){return B.call(r)=="[object RegExp]"},T5=function(r){return B.call(r)=="[object Boolean]"},P5=function(r){return r=r-0,r===r},I=function(r,i){var F=i&&"process"in i?i.process:i;return typeof F!="function"?r:function(d,A){return F(d,r,A)}},X={camelize:n,decamelize:l,pascalize:E,depascalize:l,camelizeKeys:function(r,i){return t(I(n,i),r)},decamelizeKeys:function(r,i){return t(I(l,i),r,i)},pascalizeKeys:function(r,i){return t(I(E,i),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};u.exports?u.exports=X:e.humps=X})(C5)})(m5);var P={};Object.defineProperty(P,"__esModule",{value:!0});function M(u){if(typeof u!="object"||u===null)return u;if(Array.isArray(u))return u.map(e=>typeof e!="object"||e===null?e:M(e));{const e={};for(const t in u){const a=u[t];e[t]=typeof a!="object"||a===null?a:M(a)}return e}}P.default=M;function G(u){return Object.prototype.toString.call(u)==="[object Object]"}function A5(u,e){if(!(u instanceof e))throw new TypeError("Cannot call a class as a function")}function W(u,e){for(var t=0;t<e.length;t++){var a=e[t];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(u,a.key,a)}}function h5(u,e,t){return e&&W(u.prototype,e),t&&W(u,t),u}function g5(u,e,t){return e in u?Object.defineProperty(u,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):u[e]=t,u}var D5=[{key:"on_click",name:o.getMessage("click"),code:"click"},{key:"on_click_finish",name:o.getMessage("finished"),code:"click-finish"},{key:"on_change",name:o.getMessage("valueChange"),code:"change"},{key:"on_search",name:o.getMessage("search"),code:"search"},{key:"on_list_change",name:o.getMessage("listDataChange"),code:"list-change"},{key:"on_list_search",name:o.getMessage("listDataCreate"),code:"list-search"},{key:"on_list_mounted",name:o.getMessage("listDataBack"),code:"list-mounted"},{key:"on_list_delete",name:o.getMessage("listDataDelete"),code:"list-delete"},{key:"on_list_before_insert",name:o.getMessage("listDataAdd"),code:"list-before-insert"},{key:"on_input",name:o.getMessage("onInput"),code:"input"},{key:"on_blur",name:o.getMessage("onBlur"),code:"blur"},{key:"on_focus",name:o.getMessage("onFocus"),code:"focus"},{key:"on_wps_open",name:o.getMessage("onOpenFile"),code:"wps-open"},{key:"on_wps_save",name:o.getMessage("onSaveFile"),code:"wps-save"},{key:"on_wps_rename",name:o.getMessage("rename"),code:"wps-rename"},{key:"on_list_actions",name:o.getMessage("onClickBtn"),code:"list-actions"},{key:"on_list_render_operation",name:o.getMessage("cellRender"),code:"list-render-operation"},{key:"on_list_rowclick",name:o.getMessage("rowClick"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:o.getMessage("rowDelete"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:o.getMessage("listDataImport"),code:"list-before-import"},{key:"on_list_rows_checked",name:o.getMessage("rowSelected"),code:"list-rows-checked"},{key:"on_change_tab",name:o.getMessage("tabChange"),code:"change-tab"},{key:"on_modal_ok",name:o.getMessage("modalConfirm"),code:"modal-ok"}],b5=function(){function u(){A5(this,u)}return h5(u,null,[{key:"getEventsFromKeys",value:function(t){var a=typeof t=="string"?[t]:t;return u.events.filter(function(n){return a.includes(n.key)})}},{key:"getEventsFromControl",value:function(t){var a=[],n=t.eventKeys;a=a.concat(u.events.filter(function(l){return n.includes(l.key)}));var E=t.customEvents.map(function(l){var B=l.key;return l.namespace!==void 0&&l.namespace!==null&&l.namespace!==""&&(B=l.namespace+":"+l.key),{key:B,code:l.key,name:l.name}});return a=a.concat(E),a}}]),u}();g5(b5,"events",D5);class z{constructor(e){var t,a,n;this.type=e.type,this.label=e.label,this.key=e.key,this.component=e.component,this.effect=(t=e.effect)!=null?t:{},this.scopeEffect=(a=e.scopeEffect)!=null?a:t5,this.defaultValue=e.defaultValue,this.validator=e.validator,this.props=(n=e.props)!=null?n:new c,this.effectKeys=Object.keys(this.effect)}filterEffects(e){return e===""?Object.values(this.effect):this.effectKeys.filter(t=>new RegExp(`^${t}(\\.\\w+)*$`).test(e)).map(t=>this.effect[t])}callEffectFn(e,t){try{const a=e.apply(null,t);G(a)&&Object.assign(this.props,a)}catch(a){B5(`effect error
|
|
2
|
+
${a}`)}}callEffect(e,...t){this.filterEffects(e).forEach(a=>this.callEffectFn(a,t))}callScopeEffect(...e){this.callEffectFn(this.scopeEffect,e)}}class q{constructor(e){var t,a;this.type="group",this.title=(t=e.title)!=null?t:"",this.required=(a=e.required)!=null?a:!1,this.items=e.items,this.tips=e.tips,this.visible=e.items.some(n=>{var E;return(E=n.props)==null?void 0:E.visible})}}function H(u){return"type"in u&&u.type==="tab"}class j{constructor(e){this.type="tab",this.title=e.title,this.items=e.items}}class f5 extends c{constructor(e){super(e),G(e)&&Object.entries(e).forEach(([t,a])=>{this[t]=a})}}class $5 extends c{constructor(e){var t,a,n,E;super(e),this.maxLength=(t=e==null?void 0:e.maxLength)!=null?t:"",this.minLength=(a=e==null?void 0:e.minLength)!=null?a:"",this.placeholder=(n=e==null?void 0:e.placeholder)!=null?n:"",this.i18n=(E=e==null?void 0:e.i18n)!=null?E:!1}}class S5 extends c{constructor(e){var t,a,n;super(e),this.max=(t=e==null?void 0:e.max)!=null?t:"",this.min=(a=e==null?void 0:e.min)!=null?a:"",this.placeholder=(n=e==null?void 0:e.placeholder)!=null?n:""}}class y5 extends c{constructor(e){var t,a,n;super(e),this.showType=(t=e==null?void 0:e.showType)!=null?t:"switch",this.tips=(a=e==null?void 0:e.tips)!=null?a:"",this.disabled=(n=e==null?void 0:e.disabled)!=null?n:!1}}class M5 extends c{constructor(e){var t;super(e),this.options=(t=e==null?void 0:e.options)!=null?t:[]}}class I5 extends c{constructor(e){var t,a;super(e),this.placeholder=(t=e==null?void 0:e.placeholder)!=null?t:"",this.options=(a=e==null?void 0:e.options)!=null?a:[]}}class w5 extends c{constructor(e){var t,a;super(e),this.options=(t=e==null?void 0:e.options)!=null?t:[],this.showType=(a=e==null?void 0:e.showType)!=null?a:"outline"}}class L5 extends c{constructor(e){var t,a,n,E,l,B;super(e),this.maxLength=(t=e==null?void 0:e.maxLength)!=null?t:"",this.minLength=(a=e==null?void 0:e.minLength)!=null?a:"",this.placeholder=(n=e==null?void 0:e.placeholder)!=null?n:"",this.maxRows=(E=e==null?void 0:e.maxRows)!=null?E:"",this.minRows=(l=e==null?void 0:e.minRows)!=null?l:"",this.i18n=(B=e==null?void 0:e.i18n)!=null?B:!1}}function x5(u,e){switch(u){case"input":return new $5(e);case"textarea":return new L5(e);case"input-number":return new S5(e);case"switch":return new y5(e);case"radio":return new w5(e);case"checkbox":return new M5(e);case"select":return new I5(e);default:return new f5(e)}}function R5(u){return function(e){const t=u.get(e);if(!!t)return new z(b(D({},t),{props:x5(t.component,"props"in t?t.props:void 0)}))}}function k5(u){const e=u.fields.reduce((n,E)=>(n.set(E.key,E),n),new Map);function t(n){return new q(b(D({},n),{items:n.items.map(R5(e)).filter(Boolean)}))}function a(n){return n.map(t)}return u.groups.map(n=>H(n)?new j(b(D({},n),{items:a(n.items)})):t(n))}function K(){return[{label:o.getMessage("hide"),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(u,e){const{oldParent:t,newParent:a,instance:n}=e;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(u.setInstance(n,"style.width",""),u.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(u,e){const{oldParent:t,newParent:a,instance:n}=e;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(u.setInstance(n,"style.height",""),u.setInstance(n,"style.heightConfig","fill")),e.newParent)return{visible:e.newParent.type==="advanced-container"}}}]}function _5(u){return[...K(),{type:"DataBind",key:"dataBind",component:"data-bind",defaultValue:u==null?void 0:u.dataBind},{key:"caption",type:"string",component:"input",props:{maxLength:80,i18n:!0},defaultValue:u==null?void 0:u.caption,validator(e){if(!e)return o.getMessage("titleRequired")}},{label:o.getMessage("hideCaption"),key:"isHideCaption",type:"boolean",component:"switch",defaultValue:u==null?void 0:u.isHideCaption,props:{showType:"checkbox"},scopeEffect(e,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"&&e.setInstance(t.control,"isHideCaption",!0),{visible:t.current.type!=="subtable"}}},{key:"labelPosition",type:"string",component:"radio",defaultValue:u==null?void 0:u.labelPosition,props:{showType:"solid",options:[{label:o.getMessage("top"),value:"top"},{label:o.getMessage("left"),value:"left"}]}},{key:"defaultState",type:"string",component:"radio",defaultValue:u==null?void 0:u.defaultState,props:{showType:"solid",options:[{label:o.getMessage("default"),value:"default"},{label:o.getMessage("readonly"),value:"readonly"}]}},{label:o.getMessage("required"),key:"required",type:"boolean",component:"switch",defaultValue:u==null?void 0:u.required},{label:o.getMessage("textTip"),key:"placeholder",type:"string",component:"input",defaultValue:u==null?void 0:u.placeholder,props:{maxLength:80,i18n:!0}}]}s.Group=q,s.Setting=z,s.Tab=j,s.createBaseFields=K,s.createFormBaseFields=_5,s.defineInstance=v,s.initSettings=k5,s.isTabSchema=H,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": "2.
|
|
3
|
+
"version": "2.23.0-beta.10",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-core": "2.
|
|
30
|
-
"@byteluck-fe/model-driven-shared": "2.
|
|
29
|
+
"@byteluck-fe/model-driven-core": "2.23.0-beta.10",
|
|
30
|
+
"@byteluck-fe/model-driven-shared": "2.23.0-beta.10",
|
|
31
31
|
"tslib": "^2.1.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "296f200cd62a6fc67551721f2fdc39bb9eb2ebb0"
|
|
34
34
|
}
|