@byteluck-fe/model-driven-settings 2.22.2-beta.15 → 2.22.2-beta.17

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.
@@ -1,8 +1,8 @@
1
- import { $t } from '@byteluck/locale-message';
1
+ import { getLocaleText } from '@byteluck-fe/locale-message';
2
2
  export function createBaseFields() {
3
3
  return [
4
4
  {
5
- label: $t('engine.hide'),
5
+ label: getLocaleText('CMD.hide', null, '隐藏'),
6
6
  key: 'isHide',
7
7
  type: 'boolean',
8
8
  component: 'switch'
@@ -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
- return true;
68
- } catch (e) {
69
- return false;
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 = _super.call(this, props);
94
- _define_property(_assert_this_initialized(_this), "options", void 0);
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;
@@ -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
- return true;
101
- } catch (e) {
102
- return false;
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 = _super.call(this, props);
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
- return true;
68
- } catch (e) {
69
- return false;
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 = _super.call(this, props);
94
- _define_property(_assert_this_initialized(_this), "max", void 0);
95
- _define_property(_assert_this_initialized(_this), "min", void 0);
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;
@@ -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
- return true;
68
- } catch (e) {
69
- return false;
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 = _super.call(this, props);
94
- _define_property(_assert_this_initialized(_this), "maxLength", void 0);
95
- _define_property(_assert_this_initialized(_this), "minLength", void 0);
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;
@@ -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
- return true;
68
- } catch (e) {
69
- return false;
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 = _super.call(this, props);
94
- _define_property(_assert_this_initialized(_this), "options", void 0);
95
- _define_property(_assert_this_initialized(_this), "showType", void 0);
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;
@@ -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
- return true;
68
- } catch (e) {
69
- return false;
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 = _super.call(this, props);
94
- _define_property(_assert_this_initialized(_this), "placeholder", void 0);
95
- _define_property(_assert_this_initialized(_this), "options", void 0);
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;
@@ -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
- return true;
68
- } catch (e) {
69
- return false;
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 = _super.call(this, props);
94
- _define_property(_assert_this_initialized(_this), "showType", void 0);
95
- _define_property(_assert_this_initialized(_this), "tips", void 0);
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
- return true;
68
- } catch (e) {
69
- return false;
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 = _super.call(this, props);
94
- _define_property(_assert_this_initialized(_this), "maxLength", void 0);
95
- _define_property(_assert_this_initialized(_this), "minLength", void 0);
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 B5=Object.defineProperty,O5=Object.defineProperties;var T5=Object.getOwnPropertyDescriptors;var Hs=Object.getOwnPropertySymbols;var L5=Object.prototype.hasOwnProperty,y5=Object.prototype.propertyIsEnumerable;var Gs=(z,ne,Q)=>ne in z?B5(z,ne,{enumerable:!0,configurable:!0,writable:!0,value:Q}):z[ne]=Q,yt=(z,ne)=>{for(var Q in ne||(ne={}))L5.call(ne,Q)&&Gs(z,Q,ne[Q]);if(Hs)for(var Q of Hs(ne))y5.call(ne,Q)&&Gs(z,Q,ne[Q]);return z},Rt=(z,ne)=>O5(z,T5(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",js="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",Ks="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Xs="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",qs="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Js="\u8BF7\u7ED1\u5B9A\u8868\u5355",zs="\u8BF7\u7ED1\u5B9A\u5217\u8868",Qs="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Zs="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Ys="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",eo="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",to="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",no="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",uo="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",ro="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ao="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",so="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",oo="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",io="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",lo="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",co="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",fo="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",Eo="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",_o="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",mo="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",po="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",ho="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",vo="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",go="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",bo="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Co="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Fo="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ao="\u8BF7\u9009\u62E9\u7701",No="\u8BF7\u9009\u62E9\u5E02",Do="\u8BF7\u9009\u62E9\u533A",Io="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",So="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Bo="\u8BF7\u8F93\u5165\u5217\u5BBD",Oo="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",To="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Lo="\u8BF7\u9009\u62E9\u63A7\u4EF6",yo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ro="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",wo="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Mo="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",$o="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Po="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ko="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Vo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Uo="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",xo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Wo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ho="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Go="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",jo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ko="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Xo="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",qo="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Jo="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",zo="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Qo="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Zo="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Yo="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",ei="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",ti="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",ni="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",ui="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",ri="\u6279\u91CF\u5220\u9664",ai="\u6279\u91CF\u6253\u5370",si="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",oi="\u6309\u94AE",ii="\u521B\u5EFA\u5355\u636E",li="\u4EEA\u8868\u76D8",ci="\u5206\u5272\u7EBF",fi="\u5BFC\u51FA",di="\u8868\u5355\u64CD\u4F5C",Ei="\u5BFC\u5165",_i="\u53D1\u7968\u8BC6\u522B",mi="\u94FE\u63A5",pi="\u5217\u8868\u9009\u62E9",hi="\u5217\u8868\u89C6\u56FE",vi="\u64CD\u4F5C\u6309\u94AE",gi="\u5206\u9875",bi="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Ci="\u8BF4\u660E\u6587\u5B57",Fi="\u6587\u5B57\u8BC6\u522B",Ai="\u6807\u9898\u7EC4\u4EF6",Ni="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Di="\u6570\u7EC4",Ii="\u81EA\u52A8\u7F16\u53F7",Si="\u81EA\u5B9A\u4E49",Bi="\u6570\u503C",Oi="\u90E8\u95E8",Ti="\u4EBA\u5458",Li="\u9644\u4EF6",yi="\u56FE\u7247",Ri="\u5730\u5740",wi="\u64CD\u4F5C",Mi="\u5E8F\u53F7",$i="\u4EBA\u5458",Pi="\u957F\u6587\u672C",ki="\u65E5\u671F\u533A\u95F4",Vi="\u65E5\u671F",Ui="\u77ED\u6587\u672C",xi="\u6362\u884C\u5BB9\u5668Wrap",Wi="\u8868\u683C",Hi="\u660E\u7EC6\u5B50\u8868",Gi="\u5730\u5740",ji="\u91D1\u989D",Ki="\u8BA1\u7B97\u516C\u5F0F",Xi="\u591A\u9009",qi="\u7535\u5B50\u7B7E\u7AE0",Ji="\u5355\u884C\u6587\u672C",zi="\u6570\u5B57",Qi="\u4E1A\u52A1\u7EC4\u7EC7",Zi="\u5355\u9009",Yi="\u5BCC\u6587\u672C",el="\u8BC4\u5206",tl="\u6570\u5B57\u533A\u95F4",nl="\u4E0B\u62C9\u5355\u9009",ul="\u4E0B\u62C9\u591A\u9009",rl="\u5173\u8054\u5355\u9009",al="\u591A\u884C\u6587\u672C",sl="\u6811",ol="Vue\u5BB9\u5668",il="Vue\u9875\u9762",ll="\u5728\u7EBF\u6587\u6863",cl="\u6309\u94AE\u64CD\u4F5C\u680F",fl="\u9AD8\u7EA7\u5BB9\u5668",dl="\u5206\u7EC4",El="\u6805\u683C\u5217",_l="\u6570\u636E\u5BB9\u5668",ml="\u753B\u5E03",pl="\u6362\u884C\u5BB9\u5668",hl="\u6805\u683C\u7B49\u5206\u884C",vl="\u5217\u8868\u5BB9\u5668",gl="\u81EA\u7531\u9875\u9762",bl="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Cl="\u5B9A\u4F4D\u5BB9\u5668",Fl="\u6805\u683C\u5E03\u5C40",Al="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Nl="\u660E\u7EC6\u5B50\u8868\u884C",Dl="\u6807\u7B7E\u9875",Il="\u6807\u7B7E\u5355\u5143",Sl="\u5DE5\u5177\u680F",Bl="\u6279\u91CF\u63D0\u4EA4",Ol="\u5BFC\u51FA\u8BB0\u5F55",Tl="\u5217\u8868\u89C6\u56FE",Ll="\u7ED3\u675F\u65F6\u95F4",yl="\u5F00\u59CB\u65F6\u95F4",Rl="\u5355\u4F4D",wl="\u7ED3\u679C",Ml="\u5E01\u79CD",$l="\u7ED3\u675F\u65E5\u671F",Pl="\u5F00\u59CB\u65E5\u671F",kl="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",Vl="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",Ul="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",xl="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",Wl="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",Hl="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",Gl="\u8BF7\u9009\u62E9",jl="\u8BF7\u9009\u62E9\u7EC4\u7EC7",Kl="\u8BF7\u9009\u62E9\u90E8\u95E8",Xl="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",ql="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",Jl="\u8BF7\u9009\u62E9\u5730\u5740",zl="\u5F39\u7A97\u786E\u8BA4\u65F6",Ql="\u6807\u7B7E\u9875\u5207\u6362\u65F6",Zl="\u884C\u9009\u4E2D\u65F6",Yl="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",ec="\u884C\u5220\u9664\u524D",tc="\u884C\u70B9\u51FB\u65F6",nc="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",uc="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",rc="\u91CD\u547D\u540D\u65F6",ac="\u4FDD\u5B58\u6587\u4EF6\u65F6",sc="\u6253\u5F00\u6587\u4EF6\u65F6",oc="\u83B7\u53D6\u7126\u70B9\u65F6",ic="\u5931\u53BB\u7126\u70B9\u65F6",lc="\u7528\u6237\u8F93\u5165\u65F6",cc="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",fc="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",dc="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",Ec="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",_c="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",mc="\u641C\u7D22\u65F6",pc="\u503C\u53D1\u751F\u53D8\u5316\u65F6",hc="\u6267\u884C\u5B8C\u6210\u65F6",vc="\u70B9\u51FB\u65F6",gc="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",bc="\u8BF7\u8F93\u5165\u65E5\u671F",Cc="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Fc="\u8BF7\u8F93\u5165",Ac="\u9ED8\u8BA4\u6A21\u7248",Nc="\u5DE6\u53F3\u5E03\u5C40",Dc="\u4E0A\u4E0B\u5E03\u5C40",Ic="\u53EA\u8BFB",Sc="\u5FC5\u586B",Bc="\u63D0\u793A\u6587\u5B57",Oc="\u9690\u85CF\u6807\u9898",Tc="\u6807\u9898\u5FC5\u586B",Lc="\u7EC4\u7EC7\u5F62\u6001",yc="\u4E1A\u52A1\u7C7B\u578B",Rc="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",wc="\u9690\u85CF",Mc="\u6D41\u7A0B\u72B6\u6001",$c="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Pc="\u5220\u9664",kc="\u7F16\u8F91",Vc="\u67E5\u770B",Uc="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",xc="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",Wc="\u5145\u6EE1\u6574\u884C",Hc="\u6700\u5C0F\u503C",Gc="\u6700\u5927\u503C",jc="\u65B0\u5EFA\u6587\u6863",Kc="\u91CD\u7F6E",Xc="\u67E5\u8BE2",qc="\u660E\u7EC6",Jc="\u6253\u5370",zc="\u4FDD\u5B58\u8349\u7A3F",Qc="\u4FDD\u5B58",Zc="\u53D6\u6D88",Yc="\u4E0A\u4F20\u56FE\u7247",ef="\u53D1\u8D77\u7B7E\u7F72",tf="\u4E0A\u4F20\u9644\u4EF6",nf="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",uf={isNotNumber:zn,isNotString:pn,isNotObject:Qn,isNotArray:Zn,isNotBoolean:wt,runtimeRequired:Me,pleaseEnterCaption:Mt,pleaseEnterCaptionTip:js,pleaseEnterRowCaption:Ks,pleaseEnterPlaceholder:Xs,pleaseEnterFieldCode:qs,pleaseEnterForm:Js,pleaseEnterList:zs,pleaseEnterProcess:Qs,pleaseEnterLabel:Zs,pleaseEnterValue:Ys,bizKeyNotBindFiled:eo,pleaseSelectOneField:to,pleaseEnterNumberRange:no,pleaseEnterAValueGreaterThanMin:uo,pleaseEnterAValueLessThanMax:ro,numberRangeSetError:ao,stringRangeError:so,attachmentMaxSize:oo,pleaseEnterTotalScoreSetting:io,theTotalScoreMustNotBeLessThan1:lo,scoreDefaultValueRange:co,attachmentLimitError:fo,PleaseReselectTheOptionalQuantity:Eo,TheMaximumLengthIsGreaterThanTheMinimumLength:_o,TheMinimumLengthIsGreaterThanTheMaximumLength:mo,PleaseSelectTheCorrectOptionSettings:po,optionIdIsRepeat:ho,optionIsRequired:vo,pleaseEnterDataCode:go,pleaseEnterValueFieldCode:bo,pleaseEnterSvcCode:Co,pleaseBindAtLeastOneDisplayValue:Fo,pleaseSelectProvince:Ao,pleaseSelectCity:No,pleaseSelectDistrict:Do,limitRowsCannotBeLessThan0:Io,TheNumberOfRowsCannotBeLessThanMinRows:So,pleaseEnterColumnWidth:Bo,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Oo,pleaseCompleteAllRulesAndConditions:To,pleaseSelectControl:Lo,pleaseSelectAtLeastOneColumn:yo,pleaseSelectFillBackMode:Ro,pleaseSelectDashboard:wo,rootNodeIsRequired:Mo,theViewNameCannotBeEmpty:$o,pleaseSelectOcrType:Po,pleaseSelectAtLeastOneFieldToFillIn:ko,pleaseChooseAtLeastOne:Vo,pleaseEnterButtonContent:Uo,pleaseEnterDataCodeInDataSetting:xo,pleaseEnterValueFieldCodeInDataSetting:Wo,pleaseEnterSvcCodeInDataSetting:Ho,pleaseBindAtLeastOneDisplayValueInDataSetting:Go,rootNodeIsRequiredInDataSetting:jo,pleaseEnterMaxHeight:Ko,pleaseEnterWatermark:Xo,pleaseEnterFileName:qo,pleaseUploadAtLeastOnePrintTemplate:Jo,pleaseAssignBusiness:zo,pleaseAssignExternal:Qo,pleaseEnterAliasCode:Zo,pleaseSelectDataCode:Yo,pleaseSelectSvcCode:ei,pleaseSelectJoinFieldCode:ti,pleaseSelectMainFieldCode:ni,pleaseSelectSortFieldCode:ui,batchDeleteButton:ri,batchPrintListButton:ai,batchPrintRecordList:si,button:oi,createFormListButton:ii,dashboard:li,divider:ci,exportListButton:fi,formSelectButton:di,importRecordListButton:Ei,invoiceCheckButton:_i,link:mi,listSelectButton:pi,ListViewSelect:hi,operationButton:vi,pagination:gi,submissionRecordListButton:bi,text:Ci,textOcrButton:Fi,title:Ai,approvalStatusColumn:Ni,array:Di,autoNumber:Ii,custom:Si,decimal:Bi,department:Oi,employee:Ti,file:Li,image:yi,location:Ri,operation:wi,order:Mi,people:$i,long:Pi,timescope:ki,timestamp:Vi,varchar:Ui,gridLayoutWrap:xi,gridTable:Wi,subTable:Hi,address:Gi,amount:ji,calc:Ki,checkBox:Xi,electronicSignature:qi,input:Ji,number:zi,organizationSelection:Qi,radio:Zi,richText:Yi,score:el,searchNumberRange:tl,select:nl,selectMultiple:ul,selectRelation:rl,textarea:al,tree:sl,vueFormItem:ol,vuePage:il,WPS:ll,actionBar:cl,advancedContainer:fl,cardGroup:dl,col:El,dataView:_l,grid:ml,gridLayoutContainer:pl,gridRow:hl,listView:vl,page:gl,position:bl,positioningContainer:Cl,row:Fl,subtableColumn:Al,subtableRow:Nl,tab:Dl,tabPane:Il,toolbox:Sl,batchSubmissionListButton:Bl,exportRecordListButton:Ol,listViewSelect:Tl,endTime:Ll,startTime:yl,unit:Rl,result:wl,currency:Ml,endDate:$l,startDate:Pl,pleaseSelectCompanyName:kl,pleaseSelectPhoneOrEmail:Vl,pleaseSelectSignType:Ul,pleaseSelectSigner:xl,pleaseSelectOnlyOne:Wl,pleaseSelectSignFile:Hl,pleaseSelect:Gl,pleaseSelectOrg:jl,pleaseSelectDept:Kl,pleaseSelectEndDate:Xl,pleaseSelectStartDate:ql,pleaseChooseAddress:Jl,modalConfirm:zl,tabChange:Ql,rowSelected:Zl,listDataImport:Yl,rowDelete:ec,rowClick:tc,cellRender:nc,onClickBtn:uc,rename:rc,onSaveFile:ac,onOpenFile:sc,onFocus:oc,onBlur:ic,onInput:lc,listDataAdd:cc,listDataDelete:fc,listDataBack:dc,listDataCreate:Ec,listDataChange:_c,search:mc,valueChange:pc,finished:hc,click:vc,pleaseEnterNameorEmail:gc,pleaseEnterDate:bc,pleaseEnterAutonumber:Cc,pleaseEnter:Fc,defaultTemplate:Ac,left:Nc,top:Dc,default:"\u666E\u901A",readonly:Ic,required:Sc,textTip:Bc,hideCaption:Oc,titleRequired:Tc,organizationalForm:Lc,businessType:yc,deleteConfirm:Rc,hide:wc,processStatus:Mc,approvedDocuments:$c,delete:Pc,edit:kc,view:Vc,loadCtrlErrorTip:Uc,loadCtrlError:xc,fullLine:Wc,min:Hc,max:Gc,createWPS:jc,reset:Kc,query:Xc,detailed:qc,print:Jc,draft:zc,save:Qc,cancel:Zc,uploadImg:Yc,signature:ef,uploadFile:tf,linkContent:nf},rf="Please enter a number",af="Please enter a string",sf="Please enter an object",of="Please enter an array",lf="Please enter a boolean",cf="{caption} Required",ff="Please enter the title",df="Please enter the bubble prompt",Ef="Please enter the row title",_f="Please enter the prompt text",mf="Please bind data items",pf="Please bind the form",hf="Please bind the list",vf="Please bind the process",gf="Please enter the displayed value",bf="Please enter the stored value",Cf="The document number is not bound to the data item",Ff="Please select at least one display field",Af="Please enter a value greater than or equal to {min} and less than or equal to {max}",Nf="Please enter a value greater than or equal to {min}",Df="Please enter a value less than or equal to {max}",If="The value range is set incorrectly",Sf="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Bf="The attachment size must be between 0MB and 1000MB",Of="Please fill in the total score setting",Tf="The total score cannot be less than 1",Lf="The default value must be between {min} and {max}",yf="The number of attachment uploads exceeds the limit",Rf="Please re-select the optional quantity",wf="The maximum length of the control must be greater than the minimum length",Mf="The minimum length of the control must be less than the maximum length",$f="Please select the correct option setting",Pf="Option ID cannot be repeated",kf="Please enter at least one option",Vf="Please bind the data source",Uf="Please bind the stored value",xf="Please bind the service",Wf="At least one display value must be bound",Hf="Please select a province",Gf="Please select a city",jf="Please select a district",Kf="The minimum number of lines to fill in cannot be less than 0",Xf="The number of rows cannot be less than {min} rows",qf="Please enter the column width",Jf="Please set the logical relationship of all rule conditions",zf="Please complete all rules and conditions",Qf="please select control",Zf="Please select the dashboard",Yf="View name cannot be empty",ed="Please select recognition type",td="Please select at least one field to fill in",nd="Please select at least one",ud="Please enter the button title",rd="Please bind the business model in the data settings",ad="Please bind storage values in data settings",sd="Please bind the service in the data settings",od="Please bind at least one display value in the data settings",id="Please select the root node in the data settings",ld="Please enter the maximum height",cd="The input content cannot be empty",fd="Watermark cannot be empty",dd="File name cannot be empty",Ed="Please upload at least one printing template!\uFF01",_d="Please select a specific business department",md="Please select a specified external organization",pd="Please enter a sub table alias",hd="Please select the associated table to set the business model",vd="Please select the association table to set the binding service",gd="Select associated sub table fields",bd="Please select the associated main table field",Cd="Please select the sort field",Fd="\u6279\u91CF\u5220\u9664",Ad="\u6279\u91CF\u6253\u5370",Nd="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Dd="\u6309\u94AE",Id="\u521B\u5EFA\u5355\u636E",Sd="\u4EEA\u8868\u76D8",Bd="\u5206\u5272\u7EBF",Od="\u5BFC\u51FA",Td="\u8868\u5355\u64CD\u4F5C",Ld="\u5BFC\u5165",yd="\u53D1\u7968\u8BC6\u522B",Rd="\u94FE\u63A5",wd="\u5217\u8868\u9009\u62E9",Md="\u5217\u8868\u89C6\u56FE",$d="\u64CD\u4F5C\u6309\u94AE",Pd="\u5206\u9875",kd="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Vd="\u8BF4\u660E\u6587\u5B57",Ud="\u6587\u5B57\u8BC6\u522B",xd="\u6807\u9898\u7EC4\u4EF6",Wd="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Hd="\u6570\u7EC4",Gd="\u81EA\u52A8\u7F16\u53F7",jd="\u81EA\u5B9A\u4E49",Kd="\u6570\u503C",Xd="\u90E8\u95E8",qd="\u4EBA\u5458",Jd="\u9644\u4EF6",zd="\u56FE\u7247",Qd="\u5730\u5740",Zd="\u64CD\u4F5C",Yd="\u5E8F\u53F7",eE="\u4EBA\u5458",tE="\u957F\u6587\u672C",nE="\u65E5\u671F\u533A\u95F4",uE="\u65E5\u671F",rE="\u77ED\u6587\u672C",aE="\u6362\u884C\u5BB9\u5668Wrap",sE="\u8868\u683C",oE="\u660E\u7EC6\u5B50\u8868",iE="\u5730\u5740",lE="\u91D1\u989D",cE="\u8BA1\u7B97\u516C\u5F0F",fE="\u591A\u9009",dE="\u7535\u5B50\u7B7E\u7AE0",EE="\u5355\u884C\u6587\u672C",_E="\u6570\u5B57",mE="\u4E1A\u52A1\u7EC4\u7EC7",pE="\u5355\u9009",hE="\u5BCC\u6587\u672C",vE="\u8BC4\u5206",gE="\u6570\u5B57\u533A\u95F4",bE="\u4E0B\u62C9\u5355\u9009",CE="\u4E0B\u62C9\u591A\u9009",FE="\u5173\u8054\u5355\u9009",AE="\u591A\u884C\u6587\u672C",NE="\u6811",DE="Vue\u5BB9\u5668",IE="Vue\u9875\u9762",SE="\u5728\u7EBF\u6587\u6863",BE="\u6309\u94AE\u64CD\u4F5C\u680F",OE="\u9AD8\u7EA7\u5BB9\u5668",TE="\u5206\u7EC4",LE="\u6805\u683C\u5217",yE="\u6570\u636E\u5BB9\u5668",RE="\u753B\u5E03",wE="\u6362\u884C\u5BB9\u5668",ME="\u6805\u683C\u7B49\u5206\u884C",$E="\u5217\u8868\u5BB9\u5668",PE="\u81EA\u7531\u9875\u9762",kE="\u5B9A\u4F4D\u5B50\u5BB9\u5668",VE="\u5B9A\u4F4D\u5BB9\u5668",UE="\u6805\u683C\u5E03\u5C40",xE="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",WE="\u660E\u7EC6\u5B50\u8868\u884C",HE="\u6807\u7B7E\u9875",GE="\u6807\u7B7E\u5355\u5143",jE="\u5DE5\u5177\u680F",KE="\u6279\u91CF\u63D0\u4EA4",XE="\u5BFC\u51FA\u8BB0\u5F55",qE="\u5217\u8868\u89C6\u56FE",JE={isNotNumber:rf,isNotString:af,isNotObject:sf,isNotArray:of,isNotBoolean:lf,runtimeRequired:cf,pleaseEnterCaption:ff,pleaseEnterCaptionTip:df,pleaseEnterRowCaption:Ef,pleaseEnterPlaceholder:_f,pleaseEnterFieldCode:mf,pleaseEnterForm:pf,pleaseEnterList:hf,pleaseEnterProcess:vf,pleaseEnterLabel:gf,pleaseEnterValue:bf,bizKeyNotBindFiled:Cf,pleaseSelectOneField:Ff,pleaseEnterNumberRange:Af,pleaseEnterAValueGreaterThanMin:Nf,pleaseEnterAValueLessThanMax:Df,numberRangeSetError:If,stringRangeError:Sf,attachmentMaxSize:Bf,pleaseEnterTotalScoreSetting:Of,theTotalScoreMustNotBeLessThan1:Tf,scoreDefaultValueRange:Lf,attachmentLimitError:yf,PleaseReselectTheOptionalQuantity:Rf,TheMaximumLengthIsGreaterThanTheMinimumLength:wf,TheMinimumLengthIsGreaterThanTheMaximumLength:Mf,PleaseSelectTheCorrectOptionSettings:$f,optionIdIsRepeat:Pf,optionIsRequired:kf,pleaseEnterDataCode:Vf,pleaseEnterValueFieldCode:Uf,pleaseEnterSvcCode:xf,pleaseBindAtLeastOneDisplayValue:Wf,pleaseSelectProvince:Hf,pleaseSelectCity:Gf,pleaseSelectDistrict:jf,limitRowsCannotBeLessThan0:Kf,TheNumberOfRowsCannotBeLessThanMinRows:Xf,pleaseEnterColumnWidth:qf,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Jf,pleaseCompleteAllRulesAndConditions:zf,pleaseSelectControl:Qf,pleaseSelectDashboard:Zf,theViewNameCannotBeEmpty:Yf,pleaseSelectOcrType:ed,pleaseSelectAtLeastOneFieldToFillIn:td,pleaseChooseAtLeastOne:nd,pleaseEnterButtonContent:ud,pleaseEnterDataCodeInDataSetting:rd,pleaseEnterValueFieldCodeInDataSetting:ad,pleaseEnterSvcCodeInDataSetting:sd,pleaseBindAtLeastOneDisplayValueInDataSetting:od,rootNodeIsRequiredInDataSetting:id,pleaseEnterMaxHeight:ld,pleaseEnter:cd,pleaseEnterWatermark:fd,pleaseEnterFileName:dd,pleaseUploadAtLeastOnePrintTemplate:Ed,pleaseAssignBusiness:_d,pleaseAssignExternal:md,pleaseEnterAliasCode:pd,pleaseSelectDataCode:hd,pleaseSelectSvcCode:vd,pleaseSelectJoinFieldCode:gd,pleaseSelectMainFieldCode:bd,pleaseSelectSortFieldCode:Cd,batchDeleteButton:Fd,batchPrintListButton:Ad,batchPrintRecordList:Nd,button:Dd,createFormListButton:Id,dashboard:Sd,divider:Bd,exportListButton:Od,formSelectButton:Td,importRecordListButton:Ld,invoiceCheckButton:yd,link:Rd,listSelectButton:wd,ListViewSelect:Md,operationButton:$d,pagination:Pd,submissionRecordListButton:kd,text:Vd,textOcrButton:Ud,title:xd,approvalStatusColumn:Wd,array:Hd,autoNumber:Gd,custom:jd,decimal:Kd,department:Xd,employee:qd,file:Jd,image:zd,location:Qd,operation:Zd,order:Yd,people:eE,long:tE,timescope:nE,timestamp:uE,varchar:rE,gridLayoutWrap:aE,gridTable:sE,subTable:oE,address:iE,amount:lE,calc:cE,checkBox:fE,electronicSignature:dE,input:EE,number:_E,organizationSelection:mE,radio:pE,richText:hE,score:vE,searchNumberRange:gE,select:bE,selectMultiple:CE,selectRelation:FE,textarea:AE,tree:NE,vueFormItem:DE,vuePage:IE,WPS:SE,actionBar:BE,advancedContainer:OE,cardGroup:TE,col:LE,dataView:yE,grid:RE,gridLayoutContainer:wE,gridRow:ME,listView:$E,page:PE,position:kE,positioningContainer:VE,row:UE,subtableColumn:xE,subtableRow:WE,tab:HE,tabPane:GE,toolbox:jE,batchSubmissionListButton:KE,exportRecordListButton:XE,listViewSelect:qE},zE="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",QE="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ZE="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",YE="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",e_="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",t_="{caption}\u5FC5\u9808",n_="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",u_="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",r_="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",a_="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",s_="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",o_="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",i_="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",l_="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",c_="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",f_="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",d_="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",E_="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",__="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",m_="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",p_="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",h_="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",v_="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",g_="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",b_="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",C_="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",F_="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",A_="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",N_="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",D_="\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",I_="\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",S_="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",B_="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",O_="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",T_="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",L_="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",y_="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",R_="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",w_="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",M_="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",$_="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",P_="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",k_="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",V_="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",U_="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",x_="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",W_="please select control",H_="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",G_="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",j_="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",K_="\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",X_="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",q_="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",J_="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",z_="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Q_="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Z_="\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",Y_="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",em="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",tm="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",nm="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",um="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",rm="\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",am="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",sm="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",om="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",im="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",lm="\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",cm="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",fm="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",dm="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Em="\u6279\u91CF\u5220\u9664",_m="\u6279\u91CF\u6253\u5370",mm="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",pm="\u6309\u94AE",hm="\u521B\u5EFA\u5355\u636E",vm="\u4EEA\u8868\u76D8",gm="\u5206\u5272\u7EBF",bm="\u5BFC\u51FA",Cm="\u8868\u5355\u64CD\u4F5C",Fm="\u5BFC\u5165",Am="\u53D1\u7968\u8BC6\u522B",Nm="\u94FE\u63A5",Dm="\u5217\u8868\u9009\u62E9",Im="\u5217\u8868\u89C6\u56FE",Sm="\u64CD\u4F5C\u6309\u94AE",Bm="\u5206\u9875",Om="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Tm="\u8BF4\u660E\u6587\u5B57",Lm="\u6587\u5B57\u8BC6\u522B",ym="\u6807\u9898\u7EC4\u4EF6",Rm="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",wm="\u6570\u7EC4",Mm="\u81EA\u52A8\u7F16\u53F7",$m="\u81EA\u5B9A\u4E49",Pm="\u6570\u503C",km="\u90E8\u95E8",Vm="\u4EBA\u5458",Um="\u9644\u4EF6",xm="\u56FE\u7247",Wm="\u5730\u5740",Hm="\u64CD\u4F5C",Gm="\u5E8F\u53F7",jm="\u4EBA\u5458",Km="\u957F\u6587\u672C",Xm="\u65E5\u671F\u533A\u95F4",qm="\u65E5\u671F",Jm="\u77ED\u6587\u672C",zm="\u6362\u884C\u5BB9\u5668Wrap",Qm="\u8868\u683C",Zm="\u660E\u7EC6\u5B50\u8868",Ym="\u5730\u5740",ep="\u91D1\u989D",tp="\u8BA1\u7B97\u516C\u5F0F",np="\u591A\u9009",up="\u7535\u5B50\u7B7E\u7AE0",rp="\u5355\u884C\u6587\u672C",ap="\u6570\u5B57",sp="\u4E1A\u52A1\u7EC4\u7EC7",op="\u5355\u9009",ip="\u5BCC\u6587\u672C",lp="\u8BC4\u5206",cp="\u6570\u5B57\u533A\u95F4",fp="\u4E0B\u62C9\u5355\u9009",dp="\u4E0B\u62C9\u591A\u9009",Ep="\u5173\u8054\u5355\u9009",_p="\u591A\u884C\u6587\u672C",mp="\u6811",pp="Vue\u5BB9\u5668",hp="Vue\u9875\u9762",vp="\u5728\u7EBF\u6587\u6863",gp="\u6309\u94AE\u64CD\u4F5C\u680F",bp="\u9AD8\u7EA7\u5BB9\u5668",Cp="\u5206\u7EC4",Fp="\u6805\u683C\u5217",Ap="\u6570\u636E\u5BB9\u5668",Np="\u753B\u5E03",Dp="\u6362\u884C\u5BB9\u5668",Ip="\u6805\u683C\u7B49\u5206\u884C",Sp="\u5217\u8868\u5BB9\u5668",Bp="\u81EA\u7531\u9875\u9762",Op="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Tp="\u5B9A\u4F4D\u5BB9\u5668",Lp="\u6805\u683C\u5E03\u5C40",yp="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Rp="\u660E\u7EC6\u5B50\u8868\u884C",wp="\u6807\u7B7E\u9875",Mp="\u6807\u7B7E\u5355\u5143",$p="\u5DE5\u5177\u680F",Pp="\u6279\u91CF\u63D0\u4EA4",kp="\u5BFC\u51FA\u8BB0\u5F55",Vp="\u5217\u8868\u89C6\u56FE",Up={isNotNumber:zE,isNotString:QE,isNotObject:ZE,isNotArray:YE,isNotBoolean:e_,runtimeRequired:t_,pleaseEnterCaption:n_,pleaseEnterCaptionTip:u_,pleaseEnterRowCaption:r_,pleaseEnterPlaceholder:a_,pleaseEnterFieldCode:s_,pleaseEnterForm:o_,pleaseEnterList:i_,pleaseEnterProcess:l_,pleaseEnterLabel:c_,pleaseEnterValue:f_,bizKeyNotBindFiled:d_,pleaseSelectOneField:E_,pleaseEnterNumberRange:__,pleaseEnterAValueGreaterThanMin:m_,pleaseEnterAValueLessThanMax:p_,numberRangeSetError:h_,stringRangeError:v_,attachmentMaxSize:g_,pleaseEnterTotalScoreSetting:b_,theTotalScoreMustNotBeLessThan1:C_,scoreDefaultValueRange:F_,attachmentLimitError:A_,PleaseReselectTheOptionalQuantity:N_,TheMaximumLengthIsGreaterThanTheMinimumLength:D_,TheMinimumLengthIsGreaterThanTheMaximumLength:I_,PleaseSelectTheCorrectOptionSettings:S_,optionIdIsRepeat:B_,optionIsRequired:O_,pleaseEnterDataCode:T_,pleaseEnterValueFieldCode:L_,pleaseEnterSvcCode:y_,pleaseBindAtLeastOneDisplayValue:R_,pleaseSelectProvince:w_,pleaseSelectCity:M_,pleaseSelectDistrict:$_,limitRowsCannotBeLessThan0:P_,TheNumberOfRowsCannotBeLessThanMinRows:k_,pleaseEnterColumnWidth:V_,pleaseSetTheLogicalRelationshipOfAllRuleConditions:U_,pleaseCompleteAllRulesAndConditions:x_,pleaseSelectControl:W_,pleaseSelectDashboard:H_,theViewNameCannotBeEmpty:G_,pleaseSelectOcrType:j_,pleaseSelectAtLeastOneFieldToFillIn:K_,pleaseChooseAtLeastOne:X_,pleaseEnterButtonContent:q_,pleaseEnterDataCodeInDataSetting:J_,pleaseEnterValueFieldCodeInDataSetting:z_,pleaseEnterSvcCodeInDataSetting:Q_,pleaseBindAtLeastOneDisplayValueInDataSetting:Z_,rootNodeIsRequiredInDataSetting:Y_,pleaseEnterMaxHeight:em,pleaseEnter:tm,pleaseEnterWatermark:nm,pleaseEnterFileName:um,pleaseUploadAtLeastOnePrintTemplate:rm,pleaseAssignBusiness:am,pleaseAssignExternal:sm,pleaseEnterAliasCode:om,pleaseSelectDataCode:im,pleaseSelectSvcCode:lm,pleaseSelectJoinFieldCode:cm,pleaseSelectMainFieldCode:fm,pleaseSelectSortFieldCode:dm,batchDeleteButton:Em,batchPrintListButton:_m,batchPrintRecordList:mm,button:pm,createFormListButton:hm,dashboard:vm,divider:gm,exportListButton:bm,formSelectButton:Cm,importRecordListButton:Fm,invoiceCheckButton:Am,link:Nm,listSelectButton:Dm,ListViewSelect:Im,operationButton:Sm,pagination:Bm,submissionRecordListButton:Om,text:Tm,textOcrButton:Lm,title:ym,approvalStatusColumn:Rm,array:wm,autoNumber:Mm,custom:$m,decimal:Pm,department:km,employee:Vm,file:Um,image:xm,location:Wm,operation:Hm,order:Gm,people:jm,long:Km,timescope:Xm,timestamp:qm,varchar:Jm,gridLayoutWrap:zm,gridTable:Qm,subTable:Zm,address:Ym,amount:ep,calc:tp,checkBox:np,electronicSignature:up,input:rp,number:ap,organizationSelection:sp,radio:op,richText:ip,score:lp,searchNumberRange:cp,select:fp,selectMultiple:dp,selectRelation:Ep,textarea:_p,tree:mp,vueFormItem:pp,vuePage:hp,WPS:vp,actionBar:gp,advancedContainer:bp,cardGroup:Cp,col:Fp,dataView:Ap,grid:Np,gridLayoutContainer:Dp,gridRow:Ip,listView:Sp,page:Bp,position:Op,positioningContainer:Tp,row:Lp,subtableColumn:yp,subtableRow:Rp,tab:wp,tabPane:Mp,toolbox:$p,batchSubmissionListButton:Pp,exportRecordListButton:kp,listViewSelect:Vp},xp={zhCN:uf,enUS:JE,jaJP:Up},rr;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(rr||(rr={}));var ar;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(ar||(ar={}));var Yn,Wp=(Yn=window.localStorage.getItem("locale"))!==null&&Yn!==void 0?Yn:"zh-CN",Hp=function(){},sr;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(sr||(sr={}));var or;(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"})(or||(or={}));var ir;(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"})(ir||(ir={}));var lr;(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"})(lr||(lr={}));var cr;(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"})(cr||(cr={}));var fr;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(fr||(fr={}));function Gp(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function jp(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function hn(e,t,n){return dr()?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 Kp(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 Xp(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function qp(e,t){return t&&(Jp(t)==="object"||typeof t=="function")?t:Gp(e)}function Pt(e,t){return Pt=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},Pt(e,t)}function Jp(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||!Xp(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 dr(){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 zp(e){var t=dr();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 qp(this,a)}}function Qp(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Zp=function(e){Kp(n,e);var t=zp(n);function n(u){jp(this,n);var a;return a=t.call(this,u),a.name="\u{1F4A5} Driven Error",a.message=u?Qp(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 Yp(e){throw new Zp(e)}/*!
2
- * shared v9.14.0
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 e0=/\{([0-9a-zA-Z]+)\}/g;function kt(e,...t){return t.length===1&&U(t[0])&&(t=t[0]),(!t||!t.hasOwnProperty)&&(t={}),e.replace(e0,(n,u)=>t.hasOwnProperty(u)?t[u]:"")}const De=(e,t=!1)=>t?Symbol.for(e):Symbol(e),t0=(e,t,n)=>n0({l:e,k:t,s:n}),n0=e=>JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029").replace(/\u0027/g,"\\u0027"),ae=e=>typeof e=="number"&&isFinite(e),u0=e=>pr(e)==="[object Date]",xe=e=>pr(e)==="[object RegExp]",vn=e=>M(e)&&Object.keys(e).length===0,se=Object.assign;let Er;const $e=()=>Er||(Er=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});function _r(e){return e.replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&apos;")}const r0=Object.prototype.hasOwnProperty;function gn(e,t){return r0.call(e,t)}const X=Array.isArray,j=e=>typeof e=="function",O=e=>typeof e=="string",$=e=>typeof e=="boolean",U=e=>e!==null&&typeof e=="object",a0=e=>U(e)&&j(e.then)&&j(e.catch),mr=Object.prototype.toString,pr=e=>mr.call(e),M=e=>{if(!U(e))return!1;const t=Object.getPrototypeOf(e);return t===null||t.constructor===Object},s0=e=>e==null?"":X(e)||M(e)&&e.toString===mr?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 hr=2;function o0(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-hr;o<=s+hr||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 vr={};function gr(e){vr[e]||(vr[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=>!U(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.14.0
8
- * (c) 2024 kazuya kawaguchi
9
- * Released under the MIT License.
10
- */function i0(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},l0={[Nn.USE_MODULO_SYNTAX]:"Use modulo before '{{0}}'."};function c0(e,t,...n){const u=process.env.NODE_ENV!=="production"?kt(l0[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},f0={[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 _t(e,t,n={}){const{domain:u,messages:a,args:r}=n,s=process.env.NODE_ENV!=="production"?kt((a||f0)[e]||"",...r||[]):e,o=new SyntaxError(String(s));return o.code=e,t&&(o.location=t),o.domain=u,o}function d0(e){throw e}const E0=/<\/?[\w\s="/.':;#-\/]+>/,_0=e=>E0.test(e),Pe=" ",m0="\r",de=`
11
- `,p0=String.fromCharCode(8232),h0=String.fromCharCode(8233);function v0(e){const t=e;let n=0,u=1,a=1,r=0;const s=v=>t[v]===m0&&t[v+1]===de,o=v=>t[v]===de,i=v=>t[v]===h0,d=v=>t[v]===p0,p=v=>s(v)||o(v)||i(v)||d(v),f=()=>n,E=()=>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 _(){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:E,column:N,peekOffset:S,charAt:L,currentChar:y,currentPeek:b,next:C,peek:_,reset:m,resetPeek:A,skipToPeek:g}}const We=void 0,g0=".",br="'",b0="tokenizer";function C0(e,t={}){const n=t.location!==!1,u=v0(e),a=()=>u.index(),r=()=>i0(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=_t(l,K,{domain:b0,args:R});p(G)}}function E(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=>E(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 _(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()===br;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()):V(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 V(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(V(l))c+=F,l.next();else break;else if(F===Pe||F===de)if(V(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!==br&&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 En(l,c){let F=null;switch(l.currentChar()){case"{":return c.braceNest>=1&&f(w.NOT_ALLOW_NEST_PLACEHOLDER,r(),0),l.next(),F=E(c,2,"{"),y(l),c.braceNest++,F;case"}":return c.braceNest>0&&c.currentType===2&&f(w.EMPTY_PLACEHOLDER,r(),0),l.next(),F=E(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=E(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,_n(l,c);if(ee=_(l,c))return F=E(c,5,an(l)),y(l),F;if(K=m(l,c))return F=E(c,6,sn(l)),y(l),F;if(G=A(l,c))return F=E(c,7,qn(l)),y(l),F;if(!ee&&!K&&!G)return F=E(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=E(c,8,"@"),c.inLinked=!0,R;case".":return y(l),l.next(),E(c,9,".");case":":return y(l),l.next(),E(c,10,":");default:return J(l)?(R=E(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),E(c,12,dn(l))):I(l,c)?(y(l),ee==="{"?En(l,c)||R:E(c,11,B(l))):(F===8&&f(w.INVALID_LINKED_FORMAT,r(),0),c.braceNest=0,c.inLinked=!1,_n(l,c))}}function _n(l,c){let F={type:14};if(c.braceNest>0)return En(l,c)||N(c);if(c.inLinked)return dt(l,c)||N(c);switch(l.currentChar()){case"{":return En(l,c)||N(c);case"}":return f(w.UNBALANCED_CLOSING_BRACE,r(),0),l.next(),E(c,3,"}");case"@":return dt(l,c)||N(c);default:{if(J(l))return F=E(c,1,W(l)),c.braceNest=0,c.inLinked=!1,F;const{isModulo:ee,hasSpace:K}=be(l);if(ee)return K?E(c,0,Ot(l)):E(c,4,Bt(l));if(V(l))return E(c,0,Ot(l));break}}return F}function ur(){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?E(i,14):_n(u,i)}return{nextToken:ur,currentOffset:a,currentPosition:r,context:d}}const F0="parser",A0=/(?:\\\\|\\'|\\u([0-9a-fA-F]{4})|\\U([0-9a-fA-F]{6}))/g;function N0(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 D0(e={}){const t=e.location!==!1,{onError:n,onWarn:u}=e;function a(_,m,A,g,...v){const T=_.currentPosition();if(T.offset+=g,T.column+=g,n){const I=t?An(A,T):null,J=_t(m,I,{domain:F0,args:v});n(J)}}function r(_,m,A,g,...v){const T=_.currentPosition();if(T.offset+=g,T.column+=g,u){const I=t?An(A,T):null;u(c0(m,I,v))}}function s(_,m,A){const g={type:_};return t&&(g.start=m,g.end=m,g.loc={start:A,end:A}),g}function o(_,m,A,g){g&&(_.type=g),t&&(_.end=m,_.loc&&(_.loc.end=A))}function i(_,m){const A=_.context(),g=s(3,A.offset,A.startLoc);return g.value=m,o(g,_.currentOffset(),_.currentPosition()),g}function d(_,m){const A=_.context(),{lastOffset:g,lastStartLoc:v}=A,T=s(5,g,v);return T.index=parseInt(m,10),_.nextToken(),o(T,_.currentOffset(),_.currentPosition()),T}function p(_,m,A){const g=_.context(),{lastOffset:v,lastStartLoc:T}=g,I=s(4,v,T);return I.key=m,A===!0&&(I.modulo=!0),_.nextToken(),o(I,_.currentOffset(),_.currentPosition()),I}function f(_,m){const A=_.context(),{lastOffset:g,lastStartLoc:v}=A,T=s(9,g,v);return T.value=m.replace(A0,N0),_.nextToken(),o(T,_.currentOffset(),_.currentPosition()),T}function E(_){const m=_.nextToken(),A=_.context(),{lastOffset:g,lastStartLoc:v}=A,T=s(8,g,v);return m.type!==12?(a(_,w.UNEXPECTED_EMPTY_LINKED_MODIFIER,A.lastStartLoc,0),T.value="",o(T,g,v),{nextConsumeToken:m,node:T}):(m.value==null&&a(_,w.UNEXPECTED_LEXICAL_ANALYSIS,A.lastStartLoc,0,Ie(m)),T.value=m.value||"",o(T,_.currentOffset(),_.currentPosition()),{node:T})}function N(_,m){const A=_.context(),g=s(7,A.offset,A.startLoc);return g.value=m,o(g,_.currentOffset(),_.currentPosition()),g}function S(_){const m=_.context(),A=s(6,m.offset,m.startLoc);let g=_.nextToken();if(g.type===9){const v=E(_);A.modifier=v.node,g=v.nextConsumeToken||_.nextToken()}switch(g.type!==10&&a(_,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(g)),g=_.nextToken(),g.type===2&&(g=_.nextToken()),g.type){case 11:g.value==null&&a(_,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(g)),A.key=N(_,g.value||"");break;case 5:g.value==null&&a(_,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(g)),A.key=p(_,g.value||"");break;case 6:g.value==null&&a(_,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(g)),A.key=d(_,g.value||"");break;case 7:g.value==null&&a(_,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(g)),A.key=f(_,g.value||"");break;default:{a(_,w.UNEXPECTED_EMPTY_LINKED_KEY,m.lastStartLoc,0);const v=_.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,_.currentOffset(),_.currentPosition()),{node:A}}function L(_){const m=_.context(),A=m.currentType===1?_.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 V=T||_.nextToken();switch(T=null,V.type){case 0:V.value==null&&a(_,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(V)),v.items.push(i(_,V.value||""));break;case 6:V.value==null&&a(_,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(V)),v.items.push(d(_,V.value||""));break;case 4:I=!0;break;case 5:V.value==null&&a(_,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(V)),v.items.push(p(_,V.value||"",!!I)),I&&(r(_,Nn.USE_MODULO_SYNTAX,m.lastStartLoc,0,Ie(V)),I=null);break;case 7:V.value==null&&a(_,w.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,Ie(V)),v.items.push(f(_,V.value||""));break;case 8:{const fe=S(_);v.items.push(fe.node),T=fe.nextConsumeToken||null;break}}}while(m.currentType!==14&&m.currentType!==1);const J=m.currentType===1?m.lastOffset:_.currentOffset(),be=m.currentType===1?m.lastEndLoc:_.currentPosition();return o(v,J,be),v}function y(_,m,A,g){const v=_.context();let T=g.items.length===0;const I=s(1,m,A);I.cases=[],I.cases.push(g);do{const J=L(_);T||(T=J.items.length===0),I.cases.push(J)}while(v.currentType!==14);return T&&a(_,w.MUST_HAVE_MESSAGES_IN_PLURAL,A,0),o(I,_.currentOffset(),_.currentPosition()),I}function b(_){const m=_.context(),{offset:A,startLoc:g}=m,v=L(_);return m.currentType===14?v:y(_,A,g,v)}function C(_){const m=C0(_,se({},e)),A=m.context(),g=s(0,A.offset,A.startLoc);return t&&g.loc&&(g.loc.source=_),g.body=b(m),e.onCacheKey&&(g.cacheKey=e.onCacheKey(_)),A.currentType!==14&&a(m,w.UNEXPECTED_LEXICAL_ANALYSIS,A.lastStartLoc,0,_[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 I0(e,t={}){const n={ast:e,helpers:new Set};return{context:()=>n,helper:r=>(n.helpers.add(r),r)}}function Cr(e,t){for(let n=0;n<e.length;n++)uu(e[n],t)}function uu(e,t){switch(e.type){case 1:Cr(e.cases,t),t.helper("plural");break;case 2:Cr(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 S0(e,t={}){const n=I0(e);n.helper("normalize"),e.body&&uu(e.body,n);const u=n.context();e.helpers=Array.from(u.helpers)}function B0(e){const t=e.body;return t.type===2?Fr(t):t.cases.forEach(n=>Fr(n)),e}function Fr(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 O0="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 _t(w.UNHANDLED_MINIFIER_NODE_TYPE,null,{domain:O0,args:[e.type]})}delete e.type}const T0="parser";function L0(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 E(y=!0){const b=--o.indentLevel;y&&p(b)}function N(){p(o.indentLevel)}return{context:i,push:d,indent:f,deindent:E,newline:N,helper:y=>`_${y}`,needIndent:()=>o.needIndent}}function y0(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 R0(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 w0(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 M0(e,t){t.body?pt(e,t.body):e.push("null")}function pt(e,t){const{helper:n}=e;switch(t.type){case 0:M0(e,t);break;case 1:w0(e,t);break;case 2:R0(e,t);break;case 6:y0(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 _t(w.UNHANDLED_CODEGEN_NODE_TYPE,null,{domain:T0,args:[t.type]})}}const $0=(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=L0(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 P0(e,t={}){const n=se({},t),u=!!n.jit,a=!!n.minify,r=n.optimize==null?!0:n.optimize,o=D0(n).parse(e);return u?(r&&B0(o),a&&mt(o),{ast:o,code:""}):(S0(o,n),$0(o,n))}/*!
13
- * core-base v9.14.0
14
- * (c) 2024 kazuya kawaguchi
15
- * Released under the MIT License.
16
- */function k0(){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 V0=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function U0(e){return V0.test(e)}function x0(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 W0(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 H0(e){const t=e.trim();return e.charAt(0)==="0"&&isNaN(parseInt(e))?!1:U0(t)?x0(t):"*"+t}function G0(e){const t=[];let n=-1,u=0,a=0,r,s,o,i,d,p,f;const E=[];E[0]=()=>{s===void 0?s=o:s+=o},E[1]=()=>{s!==void 0&&(t.push(s),s=void 0)},E[2]=()=>{E[0](),a++},E[3]=()=>{if(a>0)a--,u=4,E[0]();else{if(a=0,s===void 0||(s=H0(s),s===!1))return!1;E[1]()}};function N(){const S=e[n+1];if(u===5&&S==="'"||u===6&&S==='"')return n++,o="\\"+S,E[0](),!0}for(;u!==null;)if(n++,r=e[n],!(r==="\\"&&N())){if(i=W0(r),f=He[u],d=f[i]||f.l||8,d===8||(u=d[0],d[1]!==void 0&&(p=E[d[1]],p&&(o=r,p()===!1))))return;if(u===7)return t}}const Ar=new Map;function j0(e,t){return U(e)?e[t]:null}function K0(e,t){if(!U(e))return null;let n=Ar.get(t);if(n||(n=G0(t),n&&Ar.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 X0=e=>e,q0=e=>"",J0="text",z0=e=>e.length===0?"":tu(e),Q0=s0;function Nr(e,t){return e=Math.abs(e),t===2?e?e>1?1:0:1:e?Math.min(e,2):0}function Z0(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 Y0(e,t){t.count||(t.count=e),t.n||(t.n=e)}function eh(e={}){const t=e.locale,n=Z0(e),u=U(e.pluralRules)&&O(t)&&j(e.pluralRules[t])?e.pluralRules[t]:Nr,a=U(e.pluralRules)&&O(t)&&j(e.pluralRules[t])?Nr:void 0,r=b=>b[u(n,b.length,a)],s=e.list||[],o=b=>s[b],i=e.named||{};ae(e.pluralIndex)&&Y0(n,i);const d=b=>i[b];function p(b){const C=j(e.messages)?e.messages(b):U(e.messages)?e.messages[b]:!1;return C||(e.parent?e.parent.message(b):q0)}const f=b=>e.modifiers?e.modifiers[b]:X0,E=M(e.processor)&&j(e.processor.normalize)?e.processor.normalize:z0,N=M(e.processor)&&j(e.processor.interpolate)?e.processor.interpolate:Q0,S=M(e.processor)&&O(e.processor.type)?e.processor.type:J0,y={list:o,named:d,plural:r,linked:(b,...C)=>{const[_,m]=C;let A="text",g="";C.length===1?U(_)?(g=_.modifier||g,A=_.type||A):O(_)&&(g=_||g):C.length===2&&(O(_)&&(g=_||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:E,values:se({},s,i)};return y}let Vt=null;function th(e){Vt=e}function nh(e,t,n){Vt&&Vt.emit("i18n:init",{timestamp:Date.now(),i18n:e,version:t,meta:n})}const uh=rh("function:translate");function rh(e){return t=>Vt&&Vt.emit(e,t)}const Dr=Nn.__EXTEND_POINT__,tt=bn(Dr),Ee={NOT_FOUND_KEY:Dr,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()},ah={[Ee.NOT_FOUND_KEY]:"Not found '{key}' key in '{locale}' locale messages.",[Ee.FALLBACK_TO_TRANSLATE]:"Fall back to translate '{key}' key with '{target}' locale.",[Ee.CANNOT_FORMAT_NUMBER]:"Cannot format a number value due to not supported Intl.NumberFormat.",[Ee.FALLBACK_TO_NUMBER_FORMAT]:"Fall back to number format '{key}' key with '{target}' locale.",[Ee.CANNOT_FORMAT_DATE]:"Cannot format a date value due to not supported Intl.DateTimeFormat.",[Ee.FALLBACK_TO_DATE_FORMAT]:"Fall back to datetime format '{key}' key with '{target}' locale.",[Ee.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(ah[e],...t)}const Ir=w.__EXTEND_POINT__,ut=bn(Ir),le={INVALID_ARGUMENT:Ir,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 _t(e,null,process.env.NODE_ENV!=="production"?{messages:sh}:void 0)}const sh={[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?Sr(t.locale):Sr(e.locale)}let au;function Sr(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(a0(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 oh(e,t,n){return[...new Set([n,...X(t)?t:U(t)?Object.keys(t):O(t)?[t]:[n]])]}function Br(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=Or(r,s,t);const o=X(t)||!M(t)?t:t.default?t.default:null;s=O(o)?[o]:o,X(s)&&Or(r,s,!1),a.__localeChainCache.set(u,r)}return r}function Or(e,t,n){let u=!0;for(let a=0;a<t.length&&$(u);a++){const r=t[a];O(r)&&(u=ih(e,t[a],n))}return u}function ih(e,t,n){let u;const a=t.split("-");do{const r=a.join("-");u=lh(e,r,n),a.splice(-1,1)}while(a.length&&u===!0);return u}function lh(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 ch="9.14.0",Dn=-1,ht="en-US",In="",Tr=e=>`${e.charAt(0).toLocaleUpperCase()}${e.substr(1)}`;function fh(){return{upper:(e,t)=>t==="text"&&O(e)?e.toUpperCase():t==="vnode"&&U(e)&&"__v_isVNode"in e?e.children.toUpperCase():e,lower:(e,t)=>t==="text"&&O(e)?e.toLowerCase():t==="vnode"&&U(e)&&"__v_isVNode"in e?e.children.toLowerCase():e,capitalize:(e,t)=>t==="text"&&O(e)?Tr(e):t==="vnode"&&U(e)&&"__v_isVNode"in e?Tr(e.children):e}}let Lr;function yr(e){Lr=e}let Rr;function dh(e){Rr=e}let wr;function Eh(e){wr=e}let Mr=null;const $r=e=>{Mr=e},_h=()=>Mr;let Pr=null;const kr=e=>{Pr=e},mh=()=>Pr;let Vr=0;function ph(e={}){const t=j(e.onWarn)?e.onWarn:oe,n=O(e.version)?e.version:ch,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||{},fh()),p=e.pluralRules||{},f=j(e.missing)?e.missing:null,E=$(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.escapeParameter,m=j(e.messageCompiler)?e.messageCompiler:Lr;process.env.NODE_ENV!=="production"&&!0&&!0&&j(e.messageCompiler)&&gr(nt(Ee.EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER));const A=j(e.messageResolver)?e.messageResolver:Rr||j0,g=j(e.localeFallbacker)?e.localeFallbacker:wr||oh,v=U(e.fallbackContext)?e.fallbackContext:void 0,T=e,I=U(T.__datetimeFormatters)?T.__datetimeFormatters:new Map,J=U(T.__numberFormatters)?T.__numberFormatters:new Map,be=U(T.__meta)?T.__meta:{};Vr++;const V={version:n,cid:Vr,locale:u,fallbackLocale:r,messages:s,modifiers:d,pluralRules:p,missing:f,missingWarn:E,fallbackWarn:N,fallbackFormat:S,unresolving:L,postTranslation:y,processor:b,warnHtmlMessage:C,escapeParameter:_,messageCompiler:m,messageResolver:A,localeFallbacker:g,fallbackContext:v,onWarn:t,__meta:be};return V.datetimeFormats=o,V.numberFormats=i,V.__datetimeFormatters=I,V.__numberFormatters=J,process.env.NODE_ENV!=="production"&&(V.__v_emitter=T.__v_emitter!=null?T.__v_emitter:void 0),(process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__)&&nh(V,n,be),V}function Sn(e,t){return e instanceof RegExp?e.test(t):e}function Ur(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"&&Ur(u,t)&&s(nt(Ee.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 xr(e,t){return e===t?!1:e.split("-")[0]===t.split("-")[0]}function hh(e,t){const n=t.indexOf(e);if(n===-1)return!1;for(let u=n+1;u<t.length;u++)if(xr(e,t[u]))return!0;return!1}function ou(e){return n=>vh(n,e)}function vh(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,Wr(e,s)],[]))}else return Wr(e,n)}function Wr(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 gh="Detected HTML in '{source}' message. Recommend not using HTML messages to avoid XSS.";function Hr(e,t){t&&_0(e)&&oe(kt(gh,{source:e}))}const Gr=e=>e;let vt=Object.create(null);function jr(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=>U(e)&&(e.t===0||e.type===0)&&("b"in e||"body"in e);function Kr(e,t={}){let n=!1;const u=t.onError||d0;return t.onError=a=>{n=!0,u(a)},Rt(yt({},P0(e,t)),{detectError:n})}const bh=(e,t)=>{if(!O(e))throw Te(le.NOT_SUPPORT_NON_STRING_MESSAGE);process.env.NODE_ENV!=="production"&&(t.onWarn=jr);{const n=$(t.warnHtmlMessage)?t.warnHtmlMessage:!0;process.env.NODE_ENV!=="production"&&Hr(e,n);const a=(t.onCacheKey||Gr)(e),r=vt[a];if(r)return r;const{code:s,detectError:o}=Kr(e,t),i=new Function(`return ${s}`)();return o?i:vt[a]=i}};function Ch(e,t){if(process.env.NODE_ENV!=="production"&&(t.onWarn=jr),__INTLIFY_JIT_COMPILATION__&&!__INTLIFY_DROP_MESSAGE_COMPILER__&&O(e)){const n=$(t.warnHtmlMessage)?t.warnHtmlMessage:!0;process.env.NODE_ENV!=="production"&&Hr(e,n);const a=(t.onCacheKey||Gr)(e),r=vt[a];if(r)return r;const{ast:s,detectError:o}=Kr(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 Xr=()=>"",Ce=e=>j(e);function qr(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,E=$(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);E&&Fh(d);let[b,C,_]=N?[i,y,o[y]||{}]:Jr(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:zr(e,i,C,m,A,v);if(g)return m;const I=Ih(e,C,_,d),J=eh(I),be=Ah(e,T,J),V=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:V};fe.meta=se({},e.__meta,_h()||{}),uh(fe)}return V}function Fh(e){X(e.list)?e.list=e.list.map(t=>O(t)?_r(t):t):U(e.named)&&Object.keys(e.named).forEach(t=>{O(e.named[t])&&(e.named[t]=_r(e.named[t]))})}function Jr(e,t,n,u,a,r){const{messages:s,onWarn:o,messageResolver:i,localeFallbacker:d}=e,p=d(e,u,n);let f={},E,N=null,S=n,L=null;const y="translate";for(let b=0;b<p.length;b++){if(E=L=p[b],process.env.NODE_ENV!=="production"&&n!==E&&!xr(n,E)&&Sn(a,t)&&o(nt(Ee.FALLBACK_TO_TRANSLATE,{key:t,target:E})),process.env.NODE_ENV!=="production"&&n!==E){const A=e.__v_emitter;A&&A.emit("fallback",{type:y,key:t,from:S,to:L,groupId:`${y}:${t}`})}f=s[E]||{};let C=null,_,m;if(process.env.NODE_ENV!=="production"&&Ne&&(C=window.performance.now(),_="intlify-message-resolve-start",m="intlify-message-resolve-end",ge&&ge(_)),(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}`}),_&&m&&ge&&et&&(ge(m),et("intlify message resolve",_,m))}if(O(N)||Ge(N)||Ce(N))break;if(!hh(E,p)){const A=su(e,t,E,r,y);A!==t&&(N=A)}S=L}return[N,E,f]}function zr(e,t,n,u,a,r){const{messageCompiler:s,warnHtmlMessage:o}=e;if(Ce(u)){const E=u;return E.locale=E.locale||n,E.key=E.key||t,E}if(s==null){const E=()=>u;return E.locale=n,E.key=t,E}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,Nh(e,n,a,u,o,r));if(process.env.NODE_ENV!=="production"&&Ne){const E=window.performance.now(),N=e.__v_emitter;N&&i&&N.emit("message-compilation",{type:"message-compilation",message:u,time:E-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 Ah(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 Nh(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=Dh(u),i=`Message compilation error: ${s.message}`,d=s.location&&o&&o0(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=>t0(t,n,s)}}function Dh(e){if(O(e))return e;if(e.loc&&e.loc.source)return e.loc.source}function Ih(e,t,n,u){const{modifiers:a,pluralRules:r,messageResolver:s,fallbackLocale:o,fallbackWarn:i,missingWarn:d,fallbackContext:p}=e,E={locale:t,modifiers:a,pluralRules:r,messages:N=>{let S=s(n,N);if(S==null&&p){const[,,L]=Jr(p,N,t,o,i,d);S=s(L,N)}if(O(S)||Ge(S)){let L=!1;const b=zr(e,N,t,S,N,()=>{L=!0});return L?Xr:b}else return Ce(S)?S:Xr}};return e.processor&&(E.processor=e.processor),u.list&&(E.list=u.list),u.named&&(E.named=u.named),ae(u.plural)&&(E.pluralIndex=u.plural),E}const Qr=typeof Intl!="undefined",Zr={dateTimeFormat:Qr&&typeof Intl.DateTimeFormat!="undefined",numberFormat:Qr&&typeof Intl.NumberFormat!="undefined"};function Yr(e,...t){const{datetimeFormats:n,unresolving:u,fallbackLocale:a,onWarn:r,localeFallbacker:s}=e,{__datetimeFormatters:o}=e;if(process.env.NODE_ENV!=="production"&&!Zr.dateTimeFormat)return r(nt(Ee.CANNOT_FORMAT_DATE)),In;const[i,d,p,f]=cu(...t),E=$(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,_=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(Ee.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]||{},_=b[i],M(_))break;su(e,i,C,E,g),m=A}if(!M(_)||!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({},_,f)),o.set(v,T)),S?T.formatToParts(d):T.format(d)}const ea=["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(u0(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=>{ea.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 ta(e,t,n){const u=e;for(const a in n){const r=`${t}__${a}`;!u.__datetimeFormatters.has(r)||u.__datetimeFormatters.delete(r)}}function na(e,...t){const{numberFormats:n,unresolving:u,fallbackLocale:a,onWarn:r,localeFallbacker:s}=e,{__numberFormatters:o}=e;if(process.env.NODE_ENV!=="production"&&!Zr.numberFormat)return r(nt(Ee.CANNOT_FORMAT_NUMBER)),In;const[i,d,p,f]=fu(...t),E=$(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,_=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(Ee.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]||{},_=b[i],M(_))break;su(e,i,C,E,g),m=A}if(!M(_)||!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({},_,f)),o.set(v,T)),S?T.formatToParts(d):T.format(d)}const ua=["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=>{ua.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 ra(e,t,n){const u=e;for(const a in n){const r=`${t}__${a}`;!u.__numberFormatters.has(r)||u.__numberFormatters.delete(r)}}k0();/**
20
- * @vue/shared v3.4.38
21
- * (c) 2018-present Yuxi (Evan) You and Vue contributors
22
- * @license MIT
23
- **//*! #__NO_SIDE_EFFECTS__ */function Sh(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=()=>{},Bh=()=>!1,Oh=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Fe=Object.assign,Th=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Lh=Object.prototype.hasOwnProperty,ue=(e,t)=>Lh.call(e,t),q=Array.isArray,gt=e=>Bn(e)==="[object Map]",yh=e=>Bn(e)==="[object Set]",re=e=>typeof e=="function",Se=e=>typeof e=="string",xt=e=>typeof e=="symbol",_e=e=>e!==null&&typeof e=="object",Rh=e=>(_e(e)||re(e))&&re(e.then)&&re(e.catch),wh=Object.prototype.toString,Bn=e=>wh.call(e),aa=e=>Bn(e).slice(8,-1),Mh=e=>Bn(e)==="[object Object]",du=e=>Se(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,sa=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},oa=sa(e=>e.charAt(0).toUpperCase()+e.slice(1)),$h=sa(e=>e?`on${oa(e)}`:""),Ke=(e,t)=>!Object.is(e,t),Ph=(e,t,n,u=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:u,value:n})};let ia;const la=()=>ia||(ia=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});function Eu(e){if(q(e)){const t={};for(let n=0;n<e.length;n++){const u=e[n],a=Se(u)?xh(u):Eu(u);if(a)for(const r in a)t[r]=a[r]}return t}else if(Se(e)||_e(e))return e}const kh=/;(?![^(]*\))/g,Vh=/:([^]+)/,Uh=/\/\*[^]*?\*\//g;function xh(e){const t={};return e.replace(Uh,"").split(kh).forEach(n=>{if(n){const u=n.split(Vh);u.length>1&&(t[u[0].trim()]=u[1].trim())}}),t}function _u(e){let t="";if(Se(e))t=e;else if(q(e))for(let n=0;n<e.length;n++){const u=_u(e[n]);u&&(t+=u+" ")}else if(_e(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}/**
24
- * @vue/reactivity v3.4.38
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 Wh{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 Hh(e){return new Wh(e)}function Gh(e,t=Be){t&&t.active&&t.effects.push(e)}function jh(){return Be}let rt;class ca{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,Gh(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&&(Kh(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++,fa(this),this.fn()}finally{da(this),this._runnings--,rt=n,qe=t}}stop(){this.active&&(fa(this),da(this),this.onStop&&this.onStop(),this.active=!1)}}function Kh(e){return e.value}function fa(e){e._trackId++,e._depsLength=0}function da(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t<e.deps.length;t++)Ea(e.deps[t],e);e.deps.length=e._depsLength}}function Ea(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 ma(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&&Ea(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 pa(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 ha=(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=ha(()=>u.delete(n))),ma(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&&pa(i,4,process.env.NODE_ENV!=="production"?{target:e,type:t,key:n,newValue:u,oldValue:a,oldTarget:r}:void 0);hu()}const Xh=Sh("__proto__,__v_isRef,__isVue"),va=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(xt)),ga=qh();function qh(){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 Jh(e){xt(e)||(e=String(e));const t=P(this);return ce(t,"has",e),t.hasOwnProperty(e)}class ba{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?Oa:Ba:r?iv:Sa).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(u)?t:void 0;const s=q(t);if(!a){if(s&&ue(ga,n))return Reflect.get(ga,n,u);if(n==="hasOwnProperty")return Jh}const o=Reflect.get(t,n,u);return(xt(n)?va.has(n):Xh(n))||(a||ce(t,"get",n),r)?o:pe(o)?s&&du(n)?o:o.value:_e(o)?a?La(o):Ta(o):o}}class zh extends ba{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)||!va.has(n))&&ce(t,"has",n),u}ownKeys(t){return ce(t,"iterate",q(t)?"length":at),Reflect.ownKeys(t)}}class Ca extends ba{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 Qh=new zh,Zh=new Ca,Yh=new Ca(!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 Fa(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 Aa(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"&&Ia(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 Na(e){const t=P(this),{has:n,get:u}=On(t);let a=n.call(t,e);a?process.env.NODE_ENV!=="production"&&Ia(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 Da(){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:E}=d.next();return E?{value:f,done:E}:{value:o?[p(f[0]),p(f[1])]:p(f),done:E}},[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(`${oa(e)} operation ${n}failed: target is readonly.`,P(this))}return e==="delete"?!1:e==="clear"?void 0:this}}function ev(){const e={get(r){return Tn(this,r)},get size(){return yn(this)},has:Ln,add:Fa,set:Aa,delete:Na,clear:Da,forEach:Rn(!1,!1)},t={get(r){return Tn(this,r,!1,!0)},get size(){return yn(this)},has:Ln,add(r){return Fa.call(this,r,!0)},set(r,s){return Aa.call(this,r,s,!0)},delete:Na,clear:Da,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[tv,nv,uv,rv]=ev();function Fu(e,t){const n=t?e?rv:uv:e?nv:tv;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 av={get:Fu(!1,!1)},sv={get:Fu(!0,!1)},ov={get:Fu(!0,!0)};function Ia(e,t,n){const u=P(n);if(u!==n&&t.call(e,u)){const a=aa(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 Sa=new WeakMap,iv=new WeakMap,Ba=new WeakMap,Oa=new WeakMap;function lv(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function cv(e){return e.__v_skip||!Object.isExtensible(e)?0:lv(aa(e))}function Ta(e){return ke(e)?e:Au(e,!1,Qh,av,Sa)}function La(e){return Au(e,!0,Zh,sv,Ba)}function Mn(e){return Au(e,!0,Yh,ov,Oa)}function Au(e,t,n,u,a){if(!_e(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=cv(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 fv(e){return Object.isExtensible(e)&&Ph(e,"__v_skip",!0),e}const Gt=e=>_e(e)?Ta(e):e,Du=e=>_e(e)?La(e):e,dv="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 ya{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 ca(()=>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),Ra(t),t.effect._dirtyLevel>=2&&(process.env.NODE_ENV!=="production"&&this._warnRecursive&&Xe(dv,`
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 Ev(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 ya(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 Ra(e){var t;qe&&rt&&(e=P(e),ma(rt,(t=e.dep)!=null?t:e.dep=ha(()=>e.dep=void 0,e instanceof ya?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&&pa(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 Ma(e,!1)}function wa(e){return Ma(e,!0)}function Ma(e,t){return pe(e)?e:new _v(e,t)}class _v{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 Ra(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 mv(e){return pe(e)?e.value:e}const pv={get:(e,t,n)=>mv(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 hv(e){return bt(e)?e:new Proxy(e,pv)}/**
30
- * @vue/runtime-core v3.4.38
31
- * (c) 2018-present Yuxi (Evan) You and Vue contributors
32
- * @license MIT
33
- **/const st=[];function vv(e){st.push(e)}function gv(){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=bv();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
- `,...Cv(a)),console.warn(...r)}Ht(),Iu=!1}function bv(){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 Cv(e){const t=[];return e.forEach((n,u)=>{t.push(...u===0?[]:[`
36
- `],...Fv(n))}),t}function Fv({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,...Av(e.props),r]:[a+r]}function Av(e){const t=[],n=Object.keys(e);return n.slice(0,3).forEach(u=>{t.push(...$a(u,e[u]))}),n.length>3&&t.push(" ..."),t}function $a(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=$a(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&&Rh(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}}Nv(e,n,a,u)}function Nv(e,t,n,u=!0){if(process.env.NODE_ENV!=="production"){const a=Su[t];if(n&&vv(n),Z(`Unhandled error${a?` during execution of ${a}`:""}`),n&&gv(),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 Pa=Promise.resolve();let Tu=null;const Dv=100;function Iv(e){const t=Tu||Pa;return e?t.then(this?e.bind(this):e):t}function Sv(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(Sv(e.id),0,e),ka())}function ka(){!Pn&&!Ou&&(Ou=!0,Tu=Pa.then(Ua))}function Va(e){q(e)?Ft.push(...e):(!Ze||!Ze.includes(e,e.allowRecurse?it+1:it))&&Ft.push(e),ka()}function Bv(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"&&xa(e,n)||n.active!==!1&&n()}Ze=null,it=0}}const Kt=e=>e.id==null?1/0:e.id,Ov=(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 Ua(e){Ou=!1,Pn=!0,process.env.NODE_ENV!=="production"&&(e=e||new Map),Oe.sort(Ov);const t=process.env.NODE_ENV!=="production"?n=>xa(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,Bv(e),Pn=!1,Tu=null,(Oe.length||Ft.length)&&Ua(e)}}function xa(e,t){if(!e.has(t))e.set(t,1);else{const n=e.get(t);if(n>Dv){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"&&(la().__VUE_HMR_RUNTIME__={createRecord:Ru(Tv),rerender:Ru(Lv),reload:Ru(yv)});const kn=new Map;function Tv(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 Lv(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 yv(e,t){const n=kn.get(e);if(!n)return;t=Vn(t),Wa(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&&Wa(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.")}Va(()=>{yu.clear()})}function Wa(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 Ha(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=>{Ha(r,t)}),setTimeout(()=>{At||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,Un=[])},3e3)):Un=[]}let ye=null,Rv=null;function Ga(e,t){e.shapeFlag&6&&e.component?Ga(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 wv(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=$h(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")&&wv(e,(...u)=>t(...u),n)},Mv=Mu("bm"),$v=Mu("m"),Pv=Mu("um"),kv=Symbol.for("v-ndc"),$u=e=>e?og(e)?ig(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__?Wv(e):e.type,$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,Lu(e.update)}),$nextTick:e=>e.n||(e.n=Iv.bind(e.proxy)),$watch:e=>__VUE_OPTIONS_API__?Qv.bind(e):je}),Vv=e=>e==="_"||e==="$",Pu=(e,t)=>e!==Le&&!e.__isScriptSetup&&ue(e,t),Uv={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__||xv)&&(s[t]=0)}}const p=Xt[t];let f,E;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(E=i.config.globalProperties,ue(E,t))return E[t];process.env.NODE_ENV!=="production"&&ye&&(!Se(t)||t.indexOf("__v")!==0)&&(a!==Le&&Vv(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"&&(Uv.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 ja(e){return q(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let xv=!0;function Wv(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)),_e(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=Hv[s]||n&&n[s];e[s]=o?o(e[s],t[s]):t[s]}return e}const Hv={data:Ka,props:qa,emits:qa,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:jv,provide:Ka,inject:Gv};function Ka(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 Gv(e,t){return qt(Xa(e),Xa(t))}function Xa(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 qa(e,t){return e?q(e)&&q(t)?[...new Set([...e,...t])]:Fe(Object.create(null),ja(e),ja(t!=null?t:{})):t}function jv(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 Kv(){return{app:null,config:{isNativeTag:Bh,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 ku=null;function Ja(e,t,n=!1){const u=ct||ye;if(u||ku){const a=ku?ku._context.provides:u?u.parent==null?u.vnode.appContext&&u.vnode.appContext.provides:u.parent.provides:void 0;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 Xv={},za=e=>Object.getPrototypeOf(e)===Xv,qv=e=>e.__isTeleport,Qa=eg,Jv=Symbol.for("v-scx"),zv=()=>{{const e=Ja(Jv);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 Vu(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,E=!1,N=!1;if(pe(e)?(f=()=>e.value,E=Ve(e)):bt(e)?(f=()=>p(e),E=!0):q(e)?(N=!0,E=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=zv();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||E||(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 _;a==="sync"?_=C:a==="post"?_=()=>Qa(C,d&&d.suspense):(C.pre=!0,d&&(C.id=d.uid),_=()=>Lu(C));const m=new ca(f,je,_),A=jh(),g=()=>{m.stop(),A&&Th(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 Qv(e,t,n){const u=this.proxy,a=Se(e)?e.includes(".")?Zv(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 Zv(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||!_e(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(yh(e)||gt(e))e.forEach(u=>{lt(u,t,n)});else if(Mh(e)){for(const u in e)lt(e[u],t,n);for(const u of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,u)&&lt(e[u],t,n)}return e}function R5(){}const Yv=e=>e.__isSuspense;function eg(e,t){t&&t.pendingBranch?q(e)?t.effects.push(...e):t.effects.push(e):Va(e)}const Hn=Symbol.for("v-fgt"),Ya=Symbol.for("v-txt"),tg=Symbol.for("v-cmt");let Nt=null;function Uu(e){return e?e.__v_isVNode===!0:!1}const ng=(...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 ug(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:Rv,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?(xu(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"?ng:ts;function ts(e,t=null,n=null,u=0,a=null,r=!1){if((!e||e===kv)&&(process.env.NODE_ENV!=="production"&&!e&&Z(`Invalid vnode type when creating vnode: ${e}.`),e=tg),Uu(e)){const o=jn(e,t,!0);return n&&xu(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=rg(t);let{class:o,style:i}=t;o&&!Se(o)&&(t.class=_u(o)),_e(i)&&(Nu(i)&&!q(i)&&(i=Fe({},i)),t.style=Eu(i))}const s=Se(e)?1:Yv(e)?128:qv(e)?64:_e(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)),ug(e,t,n,u,a,s,r,!0)}function rg(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?sg(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&&Ga(p,i.clone(p)),p}function ns(e){const t=jn(e);return q(e.children)&&(t.children=e.children.map(ns)),t}function ag(e=" ",t=0){return Dt(Ya,null,e,t)}function xu(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),xu(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=[ag(t)]):n=8);e.children=t,e.shapeFlag|=n}function sg(...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=_u([t.class,u.class]));else if(a==="style")t.style=Eu([t.style,u.style]);else if(Oh(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}Kv();let ct=null;const It=()=>ct||ye;let Wu;{const e=la(),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)}};Wu=t("__VUE_INSTANCE_SETTERS__",n=>ct=n),t("__VUE_SSR_SETTERS__",n=>Kn=n)}const us=e=>{const t=ct;return Wu(e),e.scope.on(),()=>{e.scope.off(),Wu(t)}};function og(e){return e.vnode.shapeFlag&4}let Kn=!1;process.env.NODE_ENV;function ig(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(hv(fv(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 lg=/(?:^|[-_])(\w)/g,cg=e=>e.replace(lg,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?cg(u):n?"App":"Anonymous"}function ss(e){return re(e)&&"__vccOpts"in e}const Re=(e,t)=>{const n=Ev(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?_e(t)&&!q(t)?Uu(t)?Dt(e,null,[t]):Dt(e,t):Dt(e,null,t):(u>3?n=Array.prototype.slice.call(arguments,2):u===3&&Uu(n)&&(n=[n]),Dt(e,t,n))}function fg(){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 _e(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 E=[];f.type.props&&f.props&&E.push(s("props",P(f.props))),f.setupState!==Le&&E.push(s("setup",f.setupState)),f.data!==Le&&E.push(s("data",P(f.data)));const N=i(f,"computed");N&&E.push(s("computed",N));const S=i(f,"inject");return S&&E.push(s("injected",S)),E.push(["div",{},["span",{style:u.style+";opacity:0.66"},"$ (internal): "],["object",{object:f}]]),E}function s(f,E){return E=Fe({},E),Object.keys(E).length?["div",{style:"line-height:1.25em;margin-bottom:0.6em"},["div",{style:"color:#476582"},f],["div",{style:"padding-left:1.25em"},...Object.keys(E).map(N=>["div",{},["span",u,N+": "],o(E[N],!1)])]]:["span",{}]}function o(f,E=!0){return typeof f=="number"?["span",t,f]:typeof f=="string"?["span",n,JSON.stringify(f)]:typeof f=="boolean"?["span",u,f]:_e(f)?["object",{object:E?P(f):f}]:["span",n,String(f)]}function i(f,E){const N=f.type;if(re(N))return;const S={};for(const L in f.ctx)d(N,L,E)&&(S[L]=f.ctx[L]);return S}function d(f,E,N){const S=f[N];if(q(S)&&S.includes(E)||_e(S)&&E in S||f.extends&&d(f.extends,E,N)||f.mixins&&f.mixins.some(L=>d(L,E,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.38
39
- * (c) 2018-present Yuxi (Evan) You and Vue contributors
40
- * @license MIT
41
- **/function dg(){fg()}process.env.NODE_ENV!=="production"&&dg();function Eg(){return is().__VUE_DEVTOOLS_GLOBAL_HOOK__}function is(){return typeof navigator!="undefined"&&typeof window!="undefined"?window:typeof globalThis!="undefined"?globalThis:{}}const _g=typeof Proxy=="function",mg="devtools-plugin:setup",pg="plugin:settings:set";let St,Hu;function hg(){var e;return St!==void 0||(typeof window!="undefined"&&window.performance?(St=!0,Hu=window.performance):typeof globalThis!="undefined"&&((e=globalThis.perf_hooks)===null||e===void 0?void 0:e.performance)?(St=!0,Hu=globalThis.perf_hooks.performance):St=!1),St}function vg(){return hg()?Hu.now():Date.now()}class gg{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 vg()}},n&&n.on(pg,(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 bg(e,t){const n=e,u=is(),a=Eg(),r=_g&&n.enableEarlyProxy;if(a&&(u.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__||!r))a.emit(mg,e,t);else{const s=r?new gg(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.14.0
43
- * (c) 2024 kazuya kawaguchi
44
- * Released under the MIT License.
45
- */const Cg="9.14.0";function Fg(){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=Ee.__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()},Ag={[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(Ag[e],...t)}const cs=le.__EXTEND_POINT__,ve=bn(cs),k={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 _t(e,null,process.env.NODE_ENV!=="production"?{messages:Ng,args:t}:void 0)}const Ng={[k.UNEXPECTED_RETURN_TYPE]:"Unexpected return type in composer",[k.INVALID_ARGUMENT]:"Invalid argument",[k.MUST_BE_CALL_SETUP_TOP]:"Must be called at the top of a `setup` function",[k.NOT_INSTALLED]:"Need to install with `app.use` function",[k.UNEXPECTED_ERROR]:"Unexpected error",[k.NOT_AVAILABLE_IN_LEGACY_MODE]:"Not available in legacy mode",[k.REQUIRED_VALUE]:"Required in value: {0}",[k.INVALID_VALUE]:"Invalid value",[k.CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN]:"Cannot setup vue-devtools plugin",[k.NOT_INSTALLED_WITH_PROVIDE]:"Need to install with `provide` function",[k.NOT_COMPATIBLE_LEGACY_VUE_I18N]:"Not compatible legacy VueI18n.",[k.BRIDGE_SUPPORT_VUE_2_ONLY]:"vue-i18n-bridge support Vue 2.x only",[k.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",[k.NOT_AVAILABLE_COMPOSITION_IN_LEGACY]:"Not available Compostion API in Legacy API mode. Please make sure that the legacy API mode is working properly"},Gu=De("__translateVNode"),ju=De("__datetimeParts"),Ku=De("__numberParts"),ft=De("__enableEmitter"),Jt=De("__disableEmitter"),fs=De("__setPluralRules");De("__intlifyMeta");const ds=De("__injectWithOption"),Xu=De("__dispose");function zt(e){if(!U(e))return e;for(const t in e)if(!!gn(e,t))if(!t.includes("."))U(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]]={}),!U(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]),U(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 Es(e){return e.type}function _s(e,t,n){let u=U(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(U(t.datetimeFormats)){const r=Object.keys(t.datetimeFormats);r.length&&r.forEach(s=>{e.mergeDateTimeFormat(s,t.datetimeFormats[s])})}if(U(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=()=>[],Dg=()=>!1;let vs=0;function gs(e){return(t,n,u,a)=>e(n,u,It()||void 0,a)}const Ig=()=>{const e=It();let t=null;return e&&(t=Es(e)[ps])?{[ps]:t}:null};function qu(e={},t){const{__root:n,__injectWithOption:u}=e,a=n===void 0,r=e.flatJson,s=Ne?Ct:wa,o=!!e.translateExistCompatible;process.env.NODE_ENV!=="production"&&o&&gr(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)),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,_=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&&kr(null);const h={version:Cg,locale:d.value,fallbackLocale:p.value,messages:f.value,modifiers:v,pluralRules:T,missing:_===null?void 0:_,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=E.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=ph(h);return a&&kr(D),D})(),Ut(I,d.value,p.value);function be(){return[d.value,p.value,f.value,E.value,N.value]}const V=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(()=>E.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&&(_=gs(h)),C=h,I.missing=_}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__)&&$r(Ig()),a||(I.fallbackContext=n?mh():void 0),Lt=h(I)}finally{(process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__)&&$r(null),a||(I.fallbackContext=void 0)}if(H!=="translate exists"&&ae(Lt)&&Lt===Dn||H==="translate exists"&&!Lt){const[Et,S5]=D();if(process.env.NODE_ENV!=="production"&&n&&O(Et)&&rn(H,S5)&&(y&&(Sn(L,Et)||Ur(S,Et))&&oe(he(Y.FALLBACK_TO_ROOT,{key:Et,type:H})),process.env.NODE_ENV!=="production")){const{__v_emitter:Ws}=I;Ws&&y&&Ws.emit("fallback",{type:H,key:Et,to:"global",groupId:`${H}:${Et}`})}return n&&y?te(n):Ye(Et)}else{if(Jn(Lt))return Lt;throw ie(k.UNEXPECTED_RETURN_TYPE)}};function Bt(...h){return Ae(D=>Reflect.apply(qr,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&&!U(te))throw ie(k.INVALID_ARGUMENT);return Bt(D,H,se({resolvedMessage:!0},te||{}))}function an(...h){return Ae(D=>Reflect.apply(Yr,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(na,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(qr,null,[te,...h])}finally{te.processor=null}return H},()=>lu(...h),"translate",D=>D[Gu](...h),D=>[ms(D)],D=>X(D))}function cn(...h){return Ae(D=>Reflect.apply(na,null,[D,...h]),()=>fu(...h),"number format",D=>D[Ku](...h),hs,D=>O(D)||X(D))}function fn(...h){return Ae(D=>Reflect.apply(Yr,null,[D,...h]),()=>cu(...h),"datetime format",D=>D[ju](...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]),Dg,H=>$(H))}function W(h){let D=null;const H=Br(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 En(h){const D=W(h);return D!=null?D:n?n.tm(h)||{}:{}}function dt(h){return f.value[h]||{}}function _n(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 ur(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 E.value[h]||{}}function c(h,D){E.value[h]=D,I.datetimeFormats=E.value,ta(I,h,D)}function F(h,D){E.value[h]=se(E.value[h]||{},D),I.datetimeFormats=E.value,ta(I,h,D)}function R(h){return N.value[h]||{}}function ee(h,D){N.value[h]=D,I.numberFormats=N.value,ra(I,h,D)}function K(h,D){N.value[h]=se(N.value[h]||{},D),I.numberFormats=N.value,ra(I,h,D)}vs++,n&&Ne&&(Vu(n.locale,h=>{i&&(d.value=h,I.locale=h,Ut(I,d.value,p.value))}),Vu(n.fallbackLocale,h=>{i&&(p.value=h,I.fallbackLocale=h,Ut(I,d.value,p.value))}));const G={id:vs,locale:V,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:_n,mergeLocaleMessage:ur,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=En,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[Gu]=Tt,G[ju]=fn,G[Ku]=cn,process.env.NODE_ENV!=="production"&&(G[ft]=h=>{I.__v_emitter=h},G[Jt]=()=>{I.__v_emitter=void 0}),G}function Sg(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=!!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.numberFormats,m=e.flatJson,A=e.translateExistCompatible;return{locale:t,fallbackLocale:n,messages:S,flatJson:m,datetimeFormats:C,numberFormats:_,missing:u,missingWarn:a,fallbackWarn:r,fallbackRoot:s,fallbackFormat:o,modifiers:i,pluralRules:d,postTranslation:p,warnHtmlMessage:f,escapeParameter:E,messageResolver:e.messageResolver,inheritLocale:N,translateExistCompatible:A,__i18n:L,__root:y,__injectWithOption:b}}function Ju(e={},t){{const n=qu(Sg(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(k.INVALID_ARGUMENT);const E=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,[E,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(k.INVALID_ARGUMENT);const E=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,[E,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 zu={tag:{type:[String,Object]},locale:{type:String},scope:{type:String,validator:e=>e==="parent"||e==="global",default:"parent"},i18n:{type:Object}};function Bg({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 Qu=wu({name:"i18n-t",props:se({keypath:{type:String,required:!0},plural:{type:[Number,String],validator:e=>ae(e)||!isNaN(e)}},zu),setup(e,t){const{slots:n,attrs:u}=t,a=e.i18n||tr({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=Bg(t,r),i=a[Gu](e.keypath,o,s),d=se({},u),p=O(e.tag)||U(e.tag)?e.tag:bs();return os(p,d,i)}}});function Og(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:U(e.format)&&(O(e.format.key)&&(s.key=e.format.key),o=Object.keys(e.format).reduce((E,N)=>n.includes(N)?se({},E,{[N]:e.format[N]}):E,{}));const i=u(e.value,s,o);let d=[s.key];X(i)?d=i.map((E,N)=>{const S=a[E.type],L=S?S({[E.type]:E.value,index:N,parts:i}):[E.value];return Og(L)&&(L[0].key=`${E.type}-${N}`),L}):O(i)&&(d=[i]);const p=se({},r),f=O(e.tag)||U(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]}},zu),setup(e,t){const n=e.i18n||tr({useScope:e.scope,__useComponent:!0});return Cs(e,t,ua,(...u)=>n[Ku](...u))}}),As=wu({name:"i18n-d",props:se({value:{type:[Number,Date],required:!0},format:{type:[String,Object]}},zu),setup(e,t){const n=e.i18n||tr({useScope:e.scope,__useComponent:!0});return Cs(e,t,ea,(...u)=>n[ju](...u))}});function Tg(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 Lg(e){const t=s=>{const{instance:o,modifiers:i,value:d}=s;if(!o||!o.$)throw ie(k.UNEXPECTED_ERROR);const p=Tg(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=Vu(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(k.REQUIRED_VALUE,"path");return e}else throw ie(k.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 yg(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:Qu.name})),r&&([a?"i18n":Qu.name,"I18nT"].forEach(s=>e.component(s,Qu)),[Fs.name,"I18nN"].forEach(s=>e.component(s,Fs)),[As.name,"I18nD"].forEach(s=>e.component(s,As))),e.directive("t",Lg(t))}const Zu={["vue-devtools-plugin-vue-i18n"]:"Vue I18n devtools",["vue-i18n-resource-inspector"]:"I18n Resources",["vue-i18n-timeline"]:"Vue I18n"},Rg={["vue-i18n-resource-inspector"]:"Search for scopes ..."},wg={["vue-i18n-timeline"]:16764185},Is="vue-i18n: composer properties";let Yu;function Mg(e,t){return mn(this,null,function*(){return new Promise((n,u)=>{try{bg({id:"vue-devtools-plugin-vue-i18n",label:Zu["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=>{Yu=a,a.on.visitComponentTree(({componentInstance:s,treeNode:o})=>{$g(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:Zu["vue-i18n-resource-inspector"],icon:"language",treeFilterPlaceholder:Rg["vue-i18n-resource-inspector"]}),a.on.getInspectorTree(s=>{s.app===e&&s.inspectorId==="vue-i18n-resource-inspector"&&xg(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(),Hg(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=Wg(s.nodeId,t);o&&a.highlightElement(o)}})),a.on.editInspectorState(s=>{s.app===e&&s.inspectorId==="vue-i18n-resource-inspector"&&jg(s,t)}),a.addTimelineLayer({id:"vue-i18n-timeline",label:Zu["vue-i18n-timeline"],color:wg["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 $g(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:er(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 er(e){const t={};return Object.keys(e).forEach(n=>{const u=e[n];j(u)&&"source"in u?t[n]=Ug(u):Ge(u)&&u.loc&&u.loc.source?t[n]=u.loc.source:U(u)?t[n]=er(u):t[n]=u}),t}const Pg={"<":"&lt;",">":"&gt;",'"':"&quot;","&":"&amp;"};function kg(e){return e.replace(/[<>"&]/g,Vg)}function Vg(e){return Pg[e]||e}function Ug(e){const t=e.source?`("${kg(e.source)}")`:"(?)";return{_custom:{type:"function",display:`<span>\u0192</span> ${t}`}}}function xg(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 Wg(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 Hg(e,t){const n=Os(e.nodeId,t);return n&&(e.state=Gg(n)),null}function Gg(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:er(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(Yu){let n;t&&"groupId"in t&&(n=t.groupId,delete t.groupId),Yu.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 jg(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)||U(e.state.value))?n.fallbackLocale.value=e.state.value:u==="inheritLocale"&&$(e.state.value)&&(n.inheritLocale=e.state.value)}}function Kg(e,t,n){return{beforeCreate(){const u=It();if(!u)throw ie(k.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=Ju(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=Ju({__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&&_s(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(k.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 Xg=De("global-vue-i18n");function qg(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]=Jg(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(E){return r.get(E)||null}function p(E,N){r.set(E,N)}function f(E){r.delete(E)}{let N;const E={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__=E),S.__VUE_I18N_SYMBOL__=i,S.provide(S.__VUE_I18N_SYMBOL__,E),M(L[0])){const C=L[0];E.__composerExtend=C.__composerExtend,E.__vueI18nExtend=C.__vueI18nExtend}let y=null;!n&&u&&(y=r5(S,E.global)),__VUE_I18N_FULL_INSTALL__&&yg(S,E,...L),__VUE_I18N_LEGACY_API__&&n&&S.mixin(Kg(o,o.__composer,E));const b=S.unmount;if(S.unmount=()=>{y&&y(),E.dispose(),b()},process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__){if(!(yield Mg(S,E)))throw ie(k.CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN);const _=nu();if(n){const m=o;m.__enableEmitter&&m.__enableEmitter(_)}else{const m=o;m[ft]&&m[ft](_)}_.on("*",Qt)}})},get global(){return o},dispose(){s.stop()},__instances:r,__getInstance:d,__setInstance:p,__deleteInstance:f};return E}}function tr(e={}){const t=It();if(t==null)throw ie(k.MUST_BE_CALL_SETUP_TOP);if(!t.isCE&&t.appContext.app!=null&&!t.appContext.app.__VUE_I18N_SYMBOL__)throw ie(k.NOT_INSTALLED);const n=zg(t),u=Zg(n),a=Es(t),r=Qg(e,a);if(__VUE_I18N_LEGACY_API__&&n.mode==="legacy"&&!e.__useComponent){if(!n.allowComposition)throw ie(k.NOT_AVAILABLE_IN_LEGACY_MODE);return n5(t,r,u,e)}if(r==="global")return _s(u,e,a),u;if(r==="parent"){let i=Yg(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=qu(i),s.__composerExtend&&(o[Xu]=s.__composerExtend(o)),t5(s,t,o),s.__setInstance(t,o)}return o}function Jg(e,t,n){const u=Hh();{const a=__VUE_I18N_LEGACY_API__&&t?u.run(()=>Ju(e)):u.run(()=>qu(e));if(a==null)throw ie(k.UNEXPECTED_ERROR);return[u,a]}}function zg(e){{const t=Ja(e.isCE?Xg:e.appContext.app.__VUE_I18N_SYMBOL__);if(!t)throw ie(e.isCE?k.NOT_INSTALLED_WITH_PROVIDE:k.UNEXPECTED_ERROR);return t}}function Qg(e,t){return vn(e)?"__i18n"in t?"local":"global":e.useScope?e.useScope:"local"}function Zg(e){return e.mode==="composition"?e.global:e.global.__composer}function Yg(e,t,n=!1){let u=null;const a=t.root;let r=e5(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 e5(e,t=!1){return e==null?null:t&&e.vnode.ctx||e.parent}function t5(e,t,n){let u=null;$v(()=>{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),Pv(()=>{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[Xu];r&&(r(),delete a[Xu])},t)}function n5(e,t,n,u={}){const a=t==="local",r=wa(null);if(a&&e.proxy&&!(e.proxy.$options.i18n||e.proxy.$options.__i18n))throw ie(k.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]:{}}),E=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,_=!!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 V(){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:E},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:_},set escapeParameter(B){r.value&&(r.value.escapeParameter=B)},t:en,getPostTranslationHandler:V,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=_,B.fallbackFormat=L,B.fallbackRoot=S,B.fallbackWarn=N,B.missingWarn=E,B.warnHtmlMessage=C}return Mv(()=>{if(e.proxy==null||e.proxy.$i18n==null)throw ie(k.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 u5=["locale","fallbackLocale","availableLocales"],Ls=["t","rt","d","n","tm","te"];function r5(e,t){const n=Object.create(null);return u5.forEach(a=>{const r=Object.getOwnPropertyDescriptor(t,a);if(!r)throw ie(k.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(k.UNEXPECTED_ERROR);Object.defineProperty(e.config.globalProperties,`$${a}`,r)}),()=>{delete e.config.globalProperties.$i18n,Ls.forEach(a=>{delete e.config.globalProperties[`$${a}`]})}}if(Fg(),__INTLIFY_JIT_COMPILATION__?yr(Ch):yr(bh),dh(K0),Eh(Br),process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__){const e=$e();e.__INTLIFY__=!0,th(e.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__)}process.env.NODE_ENV;const ys=(e,t)=>{var s;const n=e.split(".");let u;const a=((s=window.baitedaWorkers)==null?void 0:s.languageMessages)||{};n.forEach((o,i)=>{i===0?u=a[o]:u&&(u=u[o])});let r="";return u&&(r=u),t&&Object.keys(t).forEach(o=>{const i=t[o];r=r.replace(new RegExp(`\\{\\s*${o}\\s*\\}`),i)}),r||(r=e),r};function a5(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Rs(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 s5(e,t,n){return t&&Rs(e.prototype,t),n&&Rs(e,n),e}function o5(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var x=function(){function e(){a5(this,e)}return s5(e,null,[{key:"getMessage",value:function(n){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a;return(a=ys("engine."+n))!==null&&a!==void 0?a:this.$i18n.global.t(n,u)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Wp;return qg({locale:n,globalInjection:!0,silentFallbackWarn:!0,missingWarn:!1,fallbackWarn:!1,silentTranslationWarn:!0})}},{key:"setLocale",value:function(n,u){var a=u;u||(a=xp.zhCN),this.$i18n.global.setLocaleMessage(n,a)}}]),e}();o5(x,"$i18n",x.resetI18n());var i5=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},l5={exports:{}};(function(e){(function(t){var n=function(b,C,_){if(!d(C)||f(C)||E(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],_));else{m={};for(var v in C)Object.prototype.hasOwnProperty.call(C,v)&&(m[b(v,_)]=n(b,C[v],_))}return m},u=function(b,C){C=C||{};var _=C.separator||"_",m=C.split||/(?=[A-Z])/;return b.split(m).join(_)},a=function(b){return S(b)?b:(b=b.replace(/[\-_\s]+(.)?/g,function(C,_){return _?_.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]"},E=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 _=C&&"process"in C?C.process:C;return typeof _!="function"?b:function(m,A){return _(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})(i5)})(l5);var ws={};Object.defineProperty(ws,"__esModule",{value:!0});function nr(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:nr(t));{const t={};for(const n in e){const u=e[n];t[n]=typeof u!="object"||u===null?u:nr(u)}return t}}ws.default=nr;function Ms(e){return Object.prototype.toString.call(e)==="[object Object]"}function c5(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $s(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 f5(e,t,n){return t&&$s(e.prototype,t),n&&$s(e,n),e}function d5(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var E5=[{key:"on_click",name:x.getMessage("click"),code:"click"},{key:"on_click_finish",name:x.getMessage("finished"),code:"click-finish"},{key:"on_change",name:x.getMessage("valueChange"),code:"change"},{key:"on_search",name:x.getMessage("search"),code:"search"},{key:"on_list_change",name:x.getMessage("listDataChange"),code:"list-change"},{key:"on_list_search",name:x.getMessage("listDataCreate"),code:"list-search"},{key:"on_list_mounted",name:x.getMessage("listDataBack"),code:"list-mounted"},{key:"on_list_delete",name:x.getMessage("listDataDelete"),code:"list-delete"},{key:"on_list_before_insert",name:x.getMessage("listDataAdd"),code:"list-before-insert"},{key:"on_input",name:x.getMessage("onInput"),code:"input"},{key:"on_blur",name:x.getMessage("onBlur"),code:"blur"},{key:"on_focus",name:x.getMessage("onFocus"),code:"focus"},{key:"on_wps_open",name:x.getMessage("onOpenFile"),code:"wps-open"},{key:"on_wps_save",name:x.getMessage("onSaveFile"),code:"wps-save"},{key:"on_wps_rename",name:x.getMessage("rename"),code:"wps-rename"},{key:"on_list_actions",name:x.getMessage("onClickBtn"),code:"list-actions"},{key:"on_list_render_operation",name:x.getMessage("cellRender"),code:"list-render-operation"},{key:"on_list_rowclick",name:x.getMessage("rowClick"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:x.getMessage("rowDelete"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:x.getMessage("listDataImport"),code:"list-before-import"},{key:"on_list_rows_checked",name:x.getMessage("rowSelected"),code:"list-rows-checked"},{key:"on_change_tab",name:x.getMessage("tabChange"),code:"change-tab"},{key:"on_modal_ok",name:x.getMessage("modalConfirm"),code:"modal-ok"}],_5=function(){function e(){c5(this,e)}return f5(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}();d5(_5,"events",E5);class Ps{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:Hp,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);Ms(u)&&Object.assign(this.props,u)}catch(u){Yp(`effect error
46
- ${u}`)}}callEffect(t,...n){this.filterEffects(t).forEach(u=>this.callEffectFn(u,n))}callScopeEffect(...t){this.callEffectFn(this.scopeEffect,t)}}class ks{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 Vs(e){return"type"in e&&e.type==="tab"}class Us{constructor(t){this.type="tab",this.title=t.title,this.items=t.items}}class m5 extends Q{constructor(t){super(t),Ms(t)&&Object.entries(t).forEach(([n,u])=>{this[n]=u})}}class p5 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 h5 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 v5 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 g5 extends Q{constructor(t){var n;super(t),this.options=(n=t==null?void 0:t.options)!=null?n:[]}}class b5 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 C5 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 F5 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 A5(e,t){switch(e){case"input":return new p5(t);case"textarea":return new F5(t);case"input-number":return new h5(t);case"switch":return new v5(t);case"radio":return new C5(t);case"checkbox":return new g5(t);case"select":return new b5(t);default:return new m5(t)}}function N5(e){return function(t){const n=e.get(t);if(!!n)return new Ps(Rt(yt({},n),{props:A5(n.component,"props"in n?n.props:void 0)}))}}function D5(e){const t=e.fields.reduce((a,r)=>(a.set(r.key,r),a),new Map);function n(a){return new ks(Rt(yt({},a),{items:a.items.map(N5(t)).filter(Boolean)}))}function u(a){return a.map(n)}return e.groups.map(a=>Vs(a)?new Us(Rt(yt({},a),{items:u(a.items)})):n(a))}function xs(){return[{label:ys("engine.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 I5(e){return[...xs(),{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 x.getMessage("titleRequired")}},{label:x.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:x.getMessage("top"),value:"top"},{label:x.getMessage("left"),value:"left"}]}},{key:"defaultState",type:"string",component:"radio",defaultValue:e==null?void 0:e.defaultState,props:{showType:"solid",options:[{label:x.getMessage("default"),value:"default"},{label:x.getMessage("readonly"),value:"readonly"}]}},{label:x.getMessage("required"),key:"required",type:"boolean",component:"switch",defaultValue:e==null?void 0:e.required},{label:x.getMessage("textTip"),key:"placeholder",type:"string",component:"input",defaultValue:e==null?void 0:e.placeholder,props:{maxLength:80,i18n:!0}}]}z.Group=ks,z.Setting=Ps,z.Tab=Us,z.createBaseFields=xs,z.createFormBaseFields=I5,z.defineInstance=ne,z.initSettings=D5,z.isTabSchema=Vs,Object.defineProperty(z,"__esModule",{value:!0})});
1
+ var G5=Object.defineProperty,W5=Object.defineProperties;var z5=Object.getOwnPropertyDescriptors;var Z=Object.getOwnPropertySymbols;var q5=Object.prototype.hasOwnProperty,H5=Object.prototype.propertyIsEnumerable;var O=(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)&&O(s,c,v[c]);if(Z)for(var c of Z(v))H5.call(v,c)&&O(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 Y="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",uu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",eu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",tu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",au="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",nu="{caption}\u5FC5\u586B",ru="\u8BF7\u8F93\u5165\u6807\u9898",iu="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ou="\u8BF7\u8F93\u5165\u884C\u6807\u9898",lu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",su="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",cu="\u8BF7\u7ED1\u5B9A\u8868\u5355",Eu="\u8BF7\u7ED1\u5B9A\u5217\u8868",Bu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",vu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Fu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",du="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",pu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Cu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",mu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Au="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",hu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",gu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Du="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",bu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",fu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",$u="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Su="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",yu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Mu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Iu="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",wu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Lu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",xu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Ru="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ku="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",_u="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Uu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Vu="\u8BF7\u9009\u62E9\u7701",Nu="\u8BF7\u9009\u62E9\u5E02",Tu="\u8BF7\u9009\u62E9\u533A",Pu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Gu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Wu="\u8BF7\u8F93\u5165\u5217\u5BBD",zu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",qu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Hu="\u8BF7\u9009\u62E9\u63A7\u4EF6",ju="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ku="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Xu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ju="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Qu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Zu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Ou="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Yu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ue="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ee="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",te="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ae="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ne="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",re="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ie="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",oe="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",le="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",se="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ce="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ee="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Be="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",ve="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Fe="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",de="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",pe="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",Ce="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",me="\u6279\u91CF\u5220\u9664",Ae="\u6279\u91CF\u6253\u5370",he="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",ge="\u6309\u94AE",De="\u521B\u5EFA\u5355\u636E",be="\u4EEA\u8868\u76D8",fe="\u5206\u5272\u7EBF",$e="\u5BFC\u51FA",Se="\u8868\u5355\u64CD\u4F5C",ye="\u5BFC\u5165",Me="\u53D1\u7968\u8BC6\u522B",Ie="\u94FE\u63A5",we="\u5217\u8868\u9009\u62E9",Le="\u5217\u8868\u89C6\u56FE",xe="\u64CD\u4F5C\u6309\u94AE",Re="\u5206\u9875",ke="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",_e="\u8BF4\u660E\u6587\u5B57",Ue="\u6587\u5B57\u8BC6\u522B",Ve="\u6807\u9898\u7EC4\u4EF6",Ne="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Te="\u6570\u7EC4",Pe="\u81EA\u52A8\u7F16\u53F7",Ge="\u81EA\u5B9A\u4E49",We="\u6570\u503C",ze="\u90E8\u95E8",qe="\u4EBA\u5458",He="\u9644\u4EF6",je="\u56FE\u7247",Ke="\u5730\u5740",Xe="\u64CD\u4F5C",Je="\u5E8F\u53F7",Qe="\u4EBA\u5458",Ze="\u957F\u6587\u672C",Oe="\u65E5\u671F\u533A\u95F4",Ye="\u65E5\u671F",ut="\u77ED\u6587\u672C",et="\u6362\u884C\u5BB9\u5668Wrap",tt="\u8868\u683C",at="\u660E\u7EC6\u5B50\u8868",nt="\u5730\u5740",rt="\u91D1\u989D",it="\u8BA1\u7B97\u516C\u5F0F",ot="\u591A\u9009",lt="\u7535\u5B50\u7B7E\u7AE0",st="\u5355\u884C\u6587\u672C",ct="\u6570\u5B57",Et="\u4E1A\u52A1\u7EC4\u7EC7",Bt="\u5355\u9009",vt="\u5BCC\u6587\u672C",Ft="\u8BC4\u5206",dt="\u6570\u5B57\u533A\u95F4",pt="\u4E0B\u62C9\u5355\u9009",Ct="\u4E0B\u62C9\u591A\u9009",mt="\u5173\u8054\u5355\u9009",At="\u591A\u884C\u6587\u672C",ht="\u6811",gt="Vue\u5BB9\u5668",Dt="Vue\u9875\u9762",bt="\u5728\u7EBF\u6587\u6863",ft="\u6309\u94AE\u64CD\u4F5C\u680F",$t="\u9AD8\u7EA7\u5BB9\u5668",St="\u5206\u7EC4",yt="\u6805\u683C\u5217",Mt="\u6570\u636E\u5BB9\u5668",It="\u753B\u5E03",wt="\u6362\u884C\u5BB9\u5668",Lt="\u6805\u683C\u7B49\u5206\u884C",xt="\u5217\u8868\u5BB9\u5668",Rt="\u81EA\u7531\u9875\u9762",kt="\u5B9A\u4F4D\u5B50\u5BB9\u5668",_t="\u5B9A\u4F4D\u5BB9\u5668",Ut="\u6805\u683C\u5E03\u5C40",Vt="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Nt="\u660E\u7EC6\u5B50\u8868\u884C",Tt="\u6807\u7B7E\u9875",Pt="\u6807\u7B7E\u5355\u5143",Gt="\u5DE5\u5177\u680F",Wt="\u6279\u91CF\u63D0\u4EA4",zt="\u5BFC\u51FA\u8BB0\u5F55",qt="\u5217\u8868\u89C6\u56FE",Ht="\u7ED3\u675F\u65F6\u95F4",jt="\u5F00\u59CB\u65F6\u95F4",Kt="\u5355\u4F4D",Xt="\u7ED3\u679C",Jt="\u5E01\u79CD",Qt="\u7ED3\u675F\u65E5\u671F",Zt="\u5F00\u59CB\u65E5\u671F",Ot="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",Yt="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",ua="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",ea="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",ta="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",aa="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",na="\u8BF7\u9009\u62E9",ra="\u8BF7\u9009\u62E9\u7EC4\u7EC7",ia="\u8BF7\u9009\u62E9\u90E8\u95E8",oa="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",la="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",sa="\u8BF7\u9009\u62E9\u5730\u5740",ca="\u5F39\u7A97\u786E\u8BA4\u65F6",Ea="\u6807\u7B7E\u9875\u5207\u6362\u65F6",Ba="\u884C\u9009\u4E2D\u65F6",va="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",Fa="\u884C\u5220\u9664\u524D",da="\u884C\u70B9\u51FB\u65F6",pa="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",Ca="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",ma="\u91CD\u547D\u540D\u65F6",Aa="\u4FDD\u5B58\u6587\u4EF6\u65F6",ha="\u6253\u5F00\u6587\u4EF6\u65F6",ga="\u83B7\u53D6\u7126\u70B9\u65F6",Da="\u5931\u53BB\u7126\u70B9\u65F6",ba="\u7528\u6237\u8F93\u5165\u65F6",fa="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",$a="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",Sa="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",ya="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",Ma="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Ia="\u641C\u7D22\u65F6",wa="\u503C\u53D1\u751F\u53D8\u5316\u65F6",La="\u6267\u884C\u5B8C\u6210\u65F6",xa="\u70B9\u51FB\u65F6",Ra="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",ka="\u8BF7\u8F93\u5165\u65E5\u671F",_a="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Ua="\u8BF7\u8F93\u5165",Va="\u9ED8\u8BA4\u6A21\u7248",Na="\u5DE6\u53F3\u5E03\u5C40",Ta="\u4E0A\u4E0B\u5E03\u5C40",Pa="\u53EA\u8BFB",Ga="\u5FC5\u586B",Wa="\u63D0\u793A\u6587\u5B57",za="\u9690\u85CF\u6807\u9898",qa="\u6807\u9898\u5FC5\u586B",Ha="\u7EC4\u7EC7\u5F62\u6001",ja="\u4E1A\u52A1\u7C7B\u578B",Ka="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Xa="\u9690\u85CF",Ja="\u6D41\u7A0B\u72B6\u6001",Qa="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Za="\u5220\u9664",Oa="\u7F16\u8F91",Ya="\u67E5\u770B",un="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",en="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",tn="\u5145\u6EE1\u6574\u884C",an="\u6700\u5C0F\u503C",nn="\u6700\u5927\u503C",rn="\u65B0\u5EFA\u6587\u6863",on="\u91CD\u7F6E",ln="\u67E5\u8BE2",sn="\u660E\u7EC6",cn="\u6253\u5370",En="\u4FDD\u5B58\u8349\u7A3F",Bn="\u4FDD\u5B58",vn="\u53D6\u6D88",Fn="\u4E0A\u4F20\u56FE\u7247",dn="\u53D1\u8D77\u7B7E\u7F72",pn="\u4E0A\u4F20\u9644\u4EF6",Cn="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",mn={isNotNumber:Y,isNotString:uu,isNotObject:eu,isNotArray:tu,isNotBoolean:au,runtimeRequired:nu,pleaseEnterCaption:ru,pleaseEnterCaptionTip:iu,pleaseEnterRowCaption:ou,pleaseEnterPlaceholder:lu,pleaseEnterFieldCode:su,pleaseEnterForm:cu,pleaseEnterList:Eu,pleaseEnterProcess:Bu,pleaseEnterLabel:vu,pleaseEnterValue:Fu,bizKeyNotBindFiled:du,pleaseSelectOneField:pu,pleaseEnterNumberRange:Cu,pleaseEnterAValueGreaterThanMin:mu,pleaseEnterAValueLessThanMax:Au,numberRangeSetError:hu,stringRangeError:gu,attachmentMaxSize:Du,pleaseEnterTotalScoreSetting:bu,theTotalScoreMustNotBeLessThan1:fu,scoreDefaultValueRange:$u,attachmentLimitError:Su,PleaseReselectTheOptionalQuantity:yu,TheMaximumLengthIsGreaterThanTheMinimumLength:Mu,TheMinimumLengthIsGreaterThanTheMaximumLength:Iu,PleaseSelectTheCorrectOptionSettings:wu,optionIdIsRepeat:Lu,optionIsRequired:xu,pleaseEnterDataCode:Ru,pleaseEnterValueFieldCode:ku,pleaseEnterSvcCode:_u,pleaseBindAtLeastOneDisplayValue:Uu,pleaseSelectProvince:Vu,pleaseSelectCity:Nu,pleaseSelectDistrict:Tu,limitRowsCannotBeLessThan0:Pu,TheNumberOfRowsCannotBeLessThanMinRows:Gu,pleaseEnterColumnWidth:Wu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:zu,pleaseCompleteAllRulesAndConditions:qu,pleaseSelectControl:Hu,pleaseSelectAtLeastOneColumn:ju,pleaseSelectFillBackMode:Ku,pleaseSelectDashboard:Xu,rootNodeIsRequired:Ju,theViewNameCannotBeEmpty:Qu,pleaseSelectOcrType:Zu,pleaseSelectAtLeastOneFieldToFillIn:Ou,pleaseChooseAtLeastOne:Yu,pleaseEnterButtonContent:ue,pleaseEnterDataCodeInDataSetting:ee,pleaseEnterValueFieldCodeInDataSetting:te,pleaseEnterSvcCodeInDataSetting:ae,pleaseBindAtLeastOneDisplayValueInDataSetting:ne,rootNodeIsRequiredInDataSetting:re,pleaseEnterMaxHeight:ie,pleaseEnterWatermark:oe,pleaseEnterFileName:le,pleaseUploadAtLeastOnePrintTemplate:se,pleaseAssignBusiness:ce,pleaseAssignExternal:Ee,pleaseEnterAliasCode:Be,pleaseSelectDataCode:ve,pleaseSelectSvcCode:Fe,pleaseSelectJoinFieldCode:de,pleaseSelectMainFieldCode:pe,pleaseSelectSortFieldCode:Ce,batchDeleteButton:me,batchPrintListButton:Ae,batchPrintRecordList:he,button:ge,createFormListButton:De,dashboard:be,divider:fe,exportListButton:$e,formSelectButton:Se,importRecordListButton:ye,invoiceCheckButton:Me,link:Ie,listSelectButton:we,ListViewSelect:Le,operationButton:xe,pagination:Re,submissionRecordListButton:ke,text:_e,textOcrButton:Ue,title:Ve,approvalStatusColumn:Ne,array:Te,autoNumber:Pe,custom:Ge,decimal:We,department:ze,employee:qe,file:He,image:je,location:Ke,operation:Xe,order:Je,people:Qe,long:Ze,timescope:Oe,timestamp:Ye,varchar:ut,gridLayoutWrap:et,gridTable:tt,subTable:at,address:nt,amount:rt,calc:it,checkBox:ot,electronicSignature:lt,input:st,number:ct,organizationSelection:Et,radio:Bt,richText:vt,score:Ft,searchNumberRange:dt,select:pt,selectMultiple:Ct,selectRelation:mt,textarea:At,tree:ht,vueFormItem:gt,vuePage:Dt,WPS:bt,actionBar:ft,advancedContainer:$t,cardGroup:St,col:yt,dataView:Mt,grid:It,gridLayoutContainer:wt,gridRow:Lt,listView:xt,page:Rt,position:kt,positioningContainer:_t,row:Ut,subtableColumn:Vt,subtableRow:Nt,tab:Tt,tabPane:Pt,toolbox:Gt,batchSubmissionListButton:Wt,exportRecordListButton:zt,listViewSelect:qt,endTime:Ht,startTime:jt,unit:Kt,result:Xt,currency:Jt,endDate:Qt,startDate:Zt,pleaseSelectCompanyName:Ot,pleaseSelectPhoneOrEmail:Yt,pleaseSelectSignType:ua,pleaseSelectSigner:ea,pleaseSelectOnlyOne:ta,pleaseSelectSignFile:aa,pleaseSelect:na,pleaseSelectOrg:ra,pleaseSelectDept:ia,pleaseSelectEndDate:oa,pleaseSelectStartDate:la,pleaseChooseAddress:sa,modalConfirm:ca,tabChange:Ea,rowSelected:Ba,listDataImport:va,rowDelete:Fa,rowClick:da,cellRender:pa,onClickBtn:Ca,rename:ma,onSaveFile:Aa,onOpenFile:ha,onFocus:ga,onBlur:Da,onInput:ba,listDataAdd:fa,listDataDelete:$a,listDataBack:Sa,listDataCreate:ya,listDataChange:Ma,search:Ia,valueChange:wa,finished:La,click:xa,pleaseEnterNameorEmail:Ra,pleaseEnterDate:ka,pleaseEnterAutonumber:_a,pleaseEnter:Ua,defaultTemplate:Va,left:Na,top:Ta,default:"\u666E\u901A",readonly:Pa,required:Ga,textTip:Wa,hideCaption:za,titleRequired:qa,organizationalForm:Ha,businessType:ja,deleteConfirm:Ka,hide:Xa,processStatus:Ja,approvedDocuments:Qa,delete:Za,edit:Oa,view:Ya,loadCtrlErrorTip:un,loadCtrlError:en,fullLine:tn,min:an,max:nn,createWPS:rn,reset:on,query:ln,detailed:sn,print:cn,draft:En,save:Bn,cancel:vn,uploadImg:Fn,signature:dn,uploadFile:pn,linkContent:Cn},An="Please enter a number",hn="Please enter a string",gn="Please enter an object",Dn="Please enter an array",bn="Please enter a boolean",fn="{caption} Required",$n="Please enter the title",Sn="Please enter the bubble prompt",yn="Please enter the row title",Mn="Please enter the prompt text",In="Please bind data items",wn="Please bind the form",Ln="Please bind the list",xn="Please bind the process",Rn="Please enter the displayed value",kn="Please enter the stored value",_n="The document number is not bound to the data item",Un="Please select at least one display field",Vn="Please enter a value greater than or equal to {min} and less than or equal to {max}",Nn="Please enter a value greater than or equal to {min}",Tn="Please enter a value less than or equal to {max}",Pn="The value range is set incorrectly",Gn="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Wn="The attachment size must be between 0MB and 1000MB",zn="Please fill in the total score setting",qn="The total score cannot be less than 1",Hn="The default value must be between {min} and {max}",jn="The number of attachment uploads exceeds the limit",Kn="Please re-select the optional quantity",Xn="The maximum length of the control must be greater than the minimum length",Jn="The minimum length of the control must be less than the maximum length",Qn="Please select the correct option setting",Zn="Option ID cannot be repeated",On="Please enter at least one option",Yn="Please bind the data source",ur="Please bind the stored value",er="Please bind the service",tr="At least one display value must be bound",ar="Please select a province",nr="Please select a city",rr="Please select a district",ir="The minimum number of lines to fill in cannot be less than 0",or="The number of rows cannot be less than {min} rows",lr="Please enter the column width",sr="Please set the logical relationship of all rule conditions",cr="Please complete all rules and conditions",Er="please select control",Br="Please select the dashboard",vr="View name cannot be empty",Fr="Please select recognition type",dr="Please select at least one field to fill in",pr="Please select at least one",Cr="Please enter the button title",mr="Please bind the business model in the data settings",Ar="Please bind storage values in data settings",hr="Please bind the service in the data settings",gr="Please bind at least one display value in the data settings",Dr="Please select the root node in the data settings",br="Please enter the maximum height",fr="The input content cannot be empty",$r="Watermark cannot be empty",Sr="File name cannot be empty",yr="Please upload at least one printing template!\uFF01",Mr="Please select a specific business department",Ir="Please select a specified external organization",wr="Please enter a sub table alias",Lr="Please select the associated table to set the business model",xr="Please select the association table to set the binding service",Rr="Select associated sub table fields",kr="Please select the associated main table field",_r="Please select the sort field",Ur="\u6279\u91CF\u5220\u9664",Vr="\u6279\u91CF\u6253\u5370",Nr="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Tr="\u6309\u94AE",Pr="\u521B\u5EFA\u5355\u636E",Gr="\u4EEA\u8868\u76D8",Wr="\u5206\u5272\u7EBF",zr="\u5BFC\u51FA",qr="\u8868\u5355\u64CD\u4F5C",Hr="\u5BFC\u5165",jr="\u53D1\u7968\u8BC6\u522B",Kr="\u94FE\u63A5",Xr="\u5217\u8868\u9009\u62E9",Jr="\u5217\u8868\u89C6\u56FE",Qr="\u64CD\u4F5C\u6309\u94AE",Zr="\u5206\u9875",Or="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Yr="\u8BF4\u660E\u6587\u5B57",u0="\u6587\u5B57\u8BC6\u522B",e0="\u6807\u9898\u7EC4\u4EF6",t0="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",a0="\u6570\u7EC4",n0="\u81EA\u52A8\u7F16\u53F7",r0="\u81EA\u5B9A\u4E49",i0="\u6570\u503C",o0="\u90E8\u95E8",l0="\u4EBA\u5458",s0="\u9644\u4EF6",c0="\u56FE\u7247",E0="\u5730\u5740",B0="\u64CD\u4F5C",v0="\u5E8F\u53F7",F0="\u4EBA\u5458",d0="\u957F\u6587\u672C",p0="\u65E5\u671F\u533A\u95F4",C0="\u65E5\u671F",m0="\u77ED\u6587\u672C",A0="\u6362\u884C\u5BB9\u5668Wrap",h0="\u8868\u683C",g0="\u660E\u7EC6\u5B50\u8868",D0="\u5730\u5740",b0="\u91D1\u989D",f0="\u8BA1\u7B97\u516C\u5F0F",$0="\u591A\u9009",S0="\u7535\u5B50\u7B7E\u7AE0",y0="\u5355\u884C\u6587\u672C",M0="\u6570\u5B57",I0="\u4E1A\u52A1\u7EC4\u7EC7",w0="\u5355\u9009",L0="\u5BCC\u6587\u672C",x0="\u8BC4\u5206",R0="\u6570\u5B57\u533A\u95F4",k0="\u4E0B\u62C9\u5355\u9009",_0="\u4E0B\u62C9\u591A\u9009",U0="\u5173\u8054\u5355\u9009",V0="\u591A\u884C\u6587\u672C",N0="\u6811",T0="Vue\u5BB9\u5668",P0="Vue\u9875\u9762",G0="\u5728\u7EBF\u6587\u6863",W0="\u6309\u94AE\u64CD\u4F5C\u680F",z0="\u9AD8\u7EA7\u5BB9\u5668",q0="\u5206\u7EC4",H0="\u6805\u683C\u5217",j0="\u6570\u636E\u5BB9\u5668",K0="\u753B\u5E03",X0="\u6362\u884C\u5BB9\u5668",J0="\u6805\u683C\u7B49\u5206\u884C",Q0="\u5217\u8868\u5BB9\u5668",Z0="\u81EA\u7531\u9875\u9762",O0="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Y0="\u5B9A\u4F4D\u5BB9\u5668",ui="\u6805\u683C\u5E03\u5C40",ei="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",ti="\u660E\u7EC6\u5B50\u8868\u884C",ai="\u6807\u7B7E\u9875",ni="\u6807\u7B7E\u5355\u5143",ri="\u5DE5\u5177\u680F",ii="\u6279\u91CF\u63D0\u4EA4",oi="\u5BFC\u51FA\u8BB0\u5F55",li="\u5217\u8868\u89C6\u56FE",si={isNotNumber:An,isNotString:hn,isNotObject:gn,isNotArray:Dn,isNotBoolean:bn,runtimeRequired:fn,pleaseEnterCaption:$n,pleaseEnterCaptionTip:Sn,pleaseEnterRowCaption:yn,pleaseEnterPlaceholder:Mn,pleaseEnterFieldCode:In,pleaseEnterForm:wn,pleaseEnterList:Ln,pleaseEnterProcess:xn,pleaseEnterLabel:Rn,pleaseEnterValue:kn,bizKeyNotBindFiled:_n,pleaseSelectOneField:Un,pleaseEnterNumberRange:Vn,pleaseEnterAValueGreaterThanMin:Nn,pleaseEnterAValueLessThanMax:Tn,numberRangeSetError:Pn,stringRangeError:Gn,attachmentMaxSize:Wn,pleaseEnterTotalScoreSetting:zn,theTotalScoreMustNotBeLessThan1:qn,scoreDefaultValueRange:Hn,attachmentLimitError:jn,PleaseReselectTheOptionalQuantity:Kn,TheMaximumLengthIsGreaterThanTheMinimumLength:Xn,TheMinimumLengthIsGreaterThanTheMaximumLength:Jn,PleaseSelectTheCorrectOptionSettings:Qn,optionIdIsRepeat:Zn,optionIsRequired:On,pleaseEnterDataCode:Yn,pleaseEnterValueFieldCode:ur,pleaseEnterSvcCode:er,pleaseBindAtLeastOneDisplayValue:tr,pleaseSelectProvince:ar,pleaseSelectCity:nr,pleaseSelectDistrict:rr,limitRowsCannotBeLessThan0:ir,TheNumberOfRowsCannotBeLessThanMinRows:or,pleaseEnterColumnWidth:lr,pleaseSetTheLogicalRelationshipOfAllRuleConditions:sr,pleaseCompleteAllRulesAndConditions:cr,pleaseSelectControl:Er,pleaseSelectDashboard:Br,theViewNameCannotBeEmpty:vr,pleaseSelectOcrType:Fr,pleaseSelectAtLeastOneFieldToFillIn:dr,pleaseChooseAtLeastOne:pr,pleaseEnterButtonContent:Cr,pleaseEnterDataCodeInDataSetting:mr,pleaseEnterValueFieldCodeInDataSetting:Ar,pleaseEnterSvcCodeInDataSetting:hr,pleaseBindAtLeastOneDisplayValueInDataSetting:gr,rootNodeIsRequiredInDataSetting:Dr,pleaseEnterMaxHeight:br,pleaseEnter:fr,pleaseEnterWatermark:$r,pleaseEnterFileName:Sr,pleaseUploadAtLeastOnePrintTemplate:yr,pleaseAssignBusiness:Mr,pleaseAssignExternal:Ir,pleaseEnterAliasCode:wr,pleaseSelectDataCode:Lr,pleaseSelectSvcCode:xr,pleaseSelectJoinFieldCode:Rr,pleaseSelectMainFieldCode:kr,pleaseSelectSortFieldCode:_r,batchDeleteButton:Ur,batchPrintListButton:Vr,batchPrintRecordList:Nr,button:Tr,createFormListButton:Pr,dashboard:Gr,divider:Wr,exportListButton:zr,formSelectButton:qr,importRecordListButton:Hr,invoiceCheckButton:jr,link:Kr,listSelectButton:Xr,ListViewSelect:Jr,operationButton:Qr,pagination:Zr,submissionRecordListButton:Or,text:Yr,textOcrButton:u0,title:e0,approvalStatusColumn:t0,array:a0,autoNumber:n0,custom:r0,decimal:i0,department:o0,employee:l0,file:s0,image:c0,location:E0,operation:B0,order:v0,people:F0,long:d0,timescope:p0,timestamp:C0,varchar:m0,gridLayoutWrap:A0,gridTable:h0,subTable:g0,address:D0,amount:b0,calc:f0,checkBox:$0,electronicSignature:S0,input:y0,number:M0,organizationSelection:I0,radio:w0,richText:L0,score:x0,searchNumberRange:R0,select:k0,selectMultiple:_0,selectRelation:U0,textarea:V0,tree:N0,vueFormItem:T0,vuePage:P0,WPS:G0,actionBar:W0,advancedContainer:z0,cardGroup:q0,col:H0,dataView:j0,grid:K0,gridLayoutContainer:X0,gridRow:J0,listView:Q0,page:Z0,position:O0,positioningContainer:Y0,row:ui,subtableColumn:ei,subtableRow:ti,tab:ai,tabPane:ni,toolbox:ri,batchSubmissionListButton:ii,exportRecordListButton:oi,listViewSelect:li},ci="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ei="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Bi="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vi="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fi="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",di="{caption}\u5FC5\u9808",pi="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ci="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",mi="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ai="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",hi="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",gi="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Di="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",bi="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",fi="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$i="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Si="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",yi="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Mi="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ii="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wi="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Li="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",xi="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ri="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ki="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",_i="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ui="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Vi="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",Ni="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ti="\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",Pi="\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",Gi="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Wi="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",zi="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",qi="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Hi="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ji="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ki="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Xi="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ji="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Qi="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Zi="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Oi="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Yi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",uo="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",eo="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",to="please select control",ao="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",no="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ro="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",io="\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",oo="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",lo="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",so="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",co="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Eo="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Bo="\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",vo="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fo="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",po="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Co="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",mo="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ao="\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",ho="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",go="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Do="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",bo="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",fo="\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",$o="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",So="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",yo="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Mo="\u6279\u91CF\u5220\u9664",Io="\u6279\u91CF\u6253\u5370",wo="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Lo="\u6309\u94AE",xo="\u521B\u5EFA\u5355\u636E",Ro="\u4EEA\u8868\u76D8",ko="\u5206\u5272\u7EBF",_o="\u5BFC\u51FA",Uo="\u8868\u5355\u64CD\u4F5C",Vo="\u5BFC\u5165",No="\u53D1\u7968\u8BC6\u522B",To="\u94FE\u63A5",Po="\u5217\u8868\u9009\u62E9",Go="\u5217\u8868\u89C6\u56FE",Wo="\u64CD\u4F5C\u6309\u94AE",zo="\u5206\u9875",qo="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Ho="\u8BF4\u660E\u6587\u5B57",jo="\u6587\u5B57\u8BC6\u522B",Ko="\u6807\u9898\u7EC4\u4EF6",Xo="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Jo="\u6570\u7EC4",Qo="\u81EA\u52A8\u7F16\u53F7",Zo="\u81EA\u5B9A\u4E49",Oo="\u6570\u503C",Yo="\u90E8\u95E8",ul="\u4EBA\u5458",el="\u9644\u4EF6",tl="\u56FE\u7247",al="\u5730\u5740",nl="\u64CD\u4F5C",rl="\u5E8F\u53F7",il="\u4EBA\u5458",ol="\u957F\u6587\u672C",ll="\u65E5\u671F\u533A\u95F4",sl="\u65E5\u671F",cl="\u77ED\u6587\u672C",El="\u6362\u884C\u5BB9\u5668Wrap",Bl="\u8868\u683C",vl="\u660E\u7EC6\u5B50\u8868",Fl="\u5730\u5740",dl="\u91D1\u989D",pl="\u8BA1\u7B97\u516C\u5F0F",Cl="\u591A\u9009",ml="\u7535\u5B50\u7B7E\u7AE0",Al="\u5355\u884C\u6587\u672C",hl="\u6570\u5B57",gl="\u4E1A\u52A1\u7EC4\u7EC7",Dl="\u5355\u9009",bl="\u5BCC\u6587\u672C",fl="\u8BC4\u5206",$l="\u6570\u5B57\u533A\u95F4",Sl="\u4E0B\u62C9\u5355\u9009",yl="\u4E0B\u62C9\u591A\u9009",Ml="\u5173\u8054\u5355\u9009",Il="\u591A\u884C\u6587\u672C",wl="\u6811",Ll="Vue\u5BB9\u5668",xl="Vue\u9875\u9762",Rl="\u5728\u7EBF\u6587\u6863",kl="\u6309\u94AE\u64CD\u4F5C\u680F",_l="\u9AD8\u7EA7\u5BB9\u5668",Ul="\u5206\u7EC4",Vl="\u6805\u683C\u5217",Nl="\u6570\u636E\u5BB9\u5668",Tl="\u753B\u5E03",Pl="\u6362\u884C\u5BB9\u5668",Gl="\u6805\u683C\u7B49\u5206\u884C",Wl="\u5217\u8868\u5BB9\u5668",zl="\u81EA\u7531\u9875\u9762",ql="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Hl="\u5B9A\u4F4D\u5BB9\u5668",jl="\u6805\u683C\u5E03\u5C40",Kl="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Xl="\u660E\u7EC6\u5B50\u8868\u884C",Jl="\u6807\u7B7E\u9875",Ql="\u6807\u7B7E\u5355\u5143",Zl="\u5DE5\u5177\u680F",Ol="\u6279\u91CF\u63D0\u4EA4",Yl="\u5BFC\u51FA\u8BB0\u5F55",u5="\u5217\u8868\u89C6\u56FE",e5={isNotNumber:ci,isNotString:Ei,isNotObject:Bi,isNotArray:vi,isNotBoolean:Fi,runtimeRequired:di,pleaseEnterCaption:pi,pleaseEnterCaptionTip:Ci,pleaseEnterRowCaption:mi,pleaseEnterPlaceholder:Ai,pleaseEnterFieldCode:hi,pleaseEnterForm:gi,pleaseEnterList:Di,pleaseEnterProcess:bi,pleaseEnterLabel:fi,pleaseEnterValue:$i,bizKeyNotBindFiled:Si,pleaseSelectOneField:yi,pleaseEnterNumberRange:Mi,pleaseEnterAValueGreaterThanMin:Ii,pleaseEnterAValueLessThanMax:wi,numberRangeSetError:Li,stringRangeError:xi,attachmentMaxSize:Ri,pleaseEnterTotalScoreSetting:ki,theTotalScoreMustNotBeLessThan1:_i,scoreDefaultValueRange:Ui,attachmentLimitError:Vi,PleaseReselectTheOptionalQuantity:Ni,TheMaximumLengthIsGreaterThanTheMinimumLength:Ti,TheMinimumLengthIsGreaterThanTheMaximumLength:Pi,PleaseSelectTheCorrectOptionSettings:Gi,optionIdIsRepeat:Wi,optionIsRequired:zi,pleaseEnterDataCode:qi,pleaseEnterValueFieldCode:Hi,pleaseEnterSvcCode:ji,pleaseBindAtLeastOneDisplayValue:Ki,pleaseSelectProvince:Xi,pleaseSelectCity:Ji,pleaseSelectDistrict:Qi,limitRowsCannotBeLessThan0:Zi,TheNumberOfRowsCannotBeLessThanMinRows:Oi,pleaseEnterColumnWidth:Yi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:uo,pleaseCompleteAllRulesAndConditions:eo,pleaseSelectControl:to,pleaseSelectDashboard:ao,theViewNameCannotBeEmpty:no,pleaseSelectOcrType:ro,pleaseSelectAtLeastOneFieldToFillIn:io,pleaseChooseAtLeastOne:oo,pleaseEnterButtonContent:lo,pleaseEnterDataCodeInDataSetting:so,pleaseEnterValueFieldCodeInDataSetting:co,pleaseEnterSvcCodeInDataSetting:Eo,pleaseBindAtLeastOneDisplayValueInDataSetting:Bo,rootNodeIsRequiredInDataSetting:vo,pleaseEnterMaxHeight:Fo,pleaseEnter:po,pleaseEnterWatermark:Co,pleaseEnterFileName:mo,pleaseUploadAtLeastOnePrintTemplate:Ao,pleaseAssignBusiness:ho,pleaseAssignExternal:go,pleaseEnterAliasCode:Do,pleaseSelectDataCode:bo,pleaseSelectSvcCode:fo,pleaseSelectJoinFieldCode:$o,pleaseSelectMainFieldCode:So,pleaseSelectSortFieldCode:yo,batchDeleteButton:Mo,batchPrintListButton:Io,batchPrintRecordList:wo,button:Lo,createFormListButton:xo,dashboard:Ro,divider:ko,exportListButton:_o,formSelectButton:Uo,importRecordListButton:Vo,invoiceCheckButton:No,link:To,listSelectButton:Po,ListViewSelect:Go,operationButton:Wo,pagination:zo,submissionRecordListButton:qo,text:Ho,textOcrButton:jo,title:Ko,approvalStatusColumn:Xo,array:Jo,autoNumber:Qo,custom:Zo,decimal:Oo,department:Yo,employee:ul,file:el,image:tl,location:al,operation:nl,order:rl,people:il,long:ol,timescope:ll,timestamp:sl,varchar:cl,gridLayoutWrap:El,gridTable:Bl,subTable:vl,address:Fl,amount:dl,calc:pl,checkBox:Cl,electronicSignature:ml,input:Al,number:hl,organizationSelection:gl,radio:Dl,richText:bl,score:fl,searchNumberRange:$l,select:Sl,selectMultiple:yl,selectRelation:Ml,textarea:Il,tree:wl,vueFormItem:Ll,vuePage:xl,WPS:Rl,actionBar:kl,advancedContainer:_l,cardGroup:Ul,col:Vl,dataView:Nl,grid:Tl,gridLayoutContainer:Pl,gridRow:Gl,listView:Wl,page:zl,position:ql,positioningContainer:Hl,row:jl,subtableColumn:Kl,subtableRow:Xl,tab:Jl,tabPane:Ql,toolbox:Zl,batchSubmissionListButton:Ol,exportRecordListButton:Yl,listViewSelect:u5},f={zhCN:mn,enUS:si,jaJP:e5},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 $,t5=($=window.localStorage.getItem("locale"))!==null&&$!==void 0?$:"zh-CN",a5=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 n5(u){if(u===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return u}function r5(u,e,t){return e=C(e),s5(u,y()?Reflect.construct(e,t||[],C(u).constructor):e.apply(u,t))}function i5(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 o5(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 l5(u){return Function.toString.call(u).indexOf("[native code]")!==-1}function s5(u,e){return e&&(c5(e)==="object"||typeof e=="function")?e:n5(u)}function m(u,e){return m=Object.setPrototypeOf||function(a,n){return a.__proto__=n,a},m(u,e)}function c5(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||!l5(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 E5(u){return u+" \u{1F41B}\u{1F41B}\u{1F41B}"}var B5=function(u){o5(e,u);function e(t){i5(this,e);var a;return a=r5(this,e,[t]),a.name="\u{1F4A5} Driven Error",a.message=t?E5(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 v5(u){throw new B5(u)}const T=(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 P(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&&P(u.prototype,e),t&&P(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 T("CMD."+t,a,f==null||(n=f[t5.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,Q=0;if(U5(i))for(d=[],Q=i.length;A<Q;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)}},J={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=J:e.humps=J})(C5)})(m5);var G={};Object.defineProperty(G,"__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}}G.default=M;function W(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 z(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&&z(u.prototype,e),t&&z(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 q{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:a5,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);W(a)&&Object.assign(this.props,a)}catch(a){v5(`effect error
2
+ ${a}`)}}callEffect(e,...t){this.filterEffects(e).forEach(a=>this.callEffectFn(a,t))}callScopeEffect(...e){this.callEffectFn(this.scopeEffect,e)}}class H{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 j(u){return"type"in u&&u.type==="tab"}class K{constructor(e){this.type="tab",this.title=e.title,this.items=e.items}}class f5 extends c{constructor(e){super(e),W(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 q(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 H(b(D({},n),{items:n.items.map(R5(e)).filter(Boolean)}))}function a(n){return n.map(t)}return u.groups.map(n=>j(n)?new K(b(D({},n),{items:a(n.items)})):t(n))}function X(){return[{label:T("CMD.hide",null,"\u9690\u85CF"),key:"isHide",type:"boolean",component:"switch"},{key:"superSetting",component:"super-setting"},{key:"style.width",component:"styleComponent",props:{configKey:"style.widthConfig",options:["px","%","fill","hug"]},scopeEffect(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[...X(),{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=H,s.Setting=q,s.Tab=K,s.createBaseFields=X,s.createFormBaseFields=_5,s.defineInstance=v,s.initSettings=k5,s.isTabSchema=j,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.22.2-beta.15",
3
+ "version": "2.22.2-beta.17",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -26,10 +26,10 @@
26
26
  "postpublish": "node ../../scripts/postpublish.js"
27
27
  },
28
28
  "dependencies": {
29
- "@byteluck-fe/model-driven-core": "2.22.2-beta.14",
30
- "@byteluck-fe/model-driven-shared": "2.22.2-beta.14",
31
- "@byteluck/locale-message": "^1.0.1",
29
+ "@byteluck-fe/locale-message": "^1.0.14",
30
+ "@byteluck-fe/model-driven-core": "2.22.2-beta.16",
31
+ "@byteluck-fe/model-driven-shared": "2.22.2-beta.16",
32
32
  "tslib": "^2.1.0"
33
33
  },
34
- "gitHead": "97c79c3184c4c507374213922ee6ff63cc8418ca"
34
+ "gitHead": "eccb1d8983db6a3b2e33cb9240c15614a1b64479"
35
35
  }