@byteluck-fe/model-driven-shared 2.23.0-beta.2 → 2.23.0-beta.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/EventLogic.js +24 -24
- package/dist/esm/RulesMessage.js +17 -18
- package/dist/esm/enum.js +1 -0
- package/dist/esm/locales/en-US.json +5 -1
- package/dist/esm/locales/ja-JP.json +5 -1
- package/dist/esm/locales/zh-CN.json +5 -1
- package/dist/esm/log.js +15 -25
- package/dist/index.umd.js +1 -43
- package/dist/types/RulesMessage.d.ts +2 -2
- package/dist/types/enum.d.ts +2 -1
- package/dist/types/locales/index.d.ts +12 -0
- package/package.json +5 -3
package/dist/esm/EventLogic.js
CHANGED
|
@@ -30,122 +30,122 @@ function _define_property(obj, key, value) {
|
|
|
30
30
|
}
|
|
31
31
|
return obj;
|
|
32
32
|
}
|
|
33
|
-
import {
|
|
33
|
+
import { getLocaleText } from '@byteluck-fe/locale-message';
|
|
34
34
|
// type InnerEventCode = 'click' | 'click-finish' | 'change'
|
|
35
35
|
var eventMap = [
|
|
36
36
|
{
|
|
37
37
|
key: 'on_click',
|
|
38
|
-
name:
|
|
38
|
+
name: getLocaleText('CMD.click', null, '点击时'),
|
|
39
39
|
code: 'click'
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
key: 'on_click_finish',
|
|
43
|
-
name:
|
|
43
|
+
name: getLocaleText('CMD.finished', null, '执行完成时'),
|
|
44
44
|
code: 'click-finish'
|
|
45
45
|
},
|
|
46
46
|
{
|
|
47
47
|
key: 'on_change',
|
|
48
|
-
name:
|
|
48
|
+
name: getLocaleText('CMD.valueChange', null, '值发生变化时'),
|
|
49
49
|
code: 'change'
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
52
|
key: 'on_search',
|
|
53
|
-
name:
|
|
53
|
+
name: getLocaleText('CMD.search', null, '搜索时'),
|
|
54
54
|
code: 'search'
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
key: 'on_list_change',
|
|
58
|
-
name:
|
|
58
|
+
name: getLocaleText('CMD.listDataChange', null, '列表数据变化时'),
|
|
59
59
|
code: 'list-change'
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
key: 'on_list_search',
|
|
63
|
-
name:
|
|
63
|
+
name: getLocaleText('CMD.listDataCreate', null, '列表数据查询构建时'),
|
|
64
64
|
code: 'list-search'
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
67
|
key: 'on_list_mounted',
|
|
68
|
-
name:
|
|
68
|
+
name: getLocaleText('CMD.listDataBack', null, '列表数据返回时'),
|
|
69
69
|
code: 'list-mounted'
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
key: 'on_list_delete',
|
|
73
|
-
name:
|
|
73
|
+
name: getLocaleText('CMD.listDataDelete', null, '列表数据删除时'),
|
|
74
74
|
code: 'list-delete'
|
|
75
75
|
},
|
|
76
76
|
{
|
|
77
77
|
key: 'on_list_before_insert',
|
|
78
|
-
name:
|
|
78
|
+
name: getLocaleText('CMD.listDataAdd', null, '列表数据插入前'),
|
|
79
79
|
code: 'list-before-insert'
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
key: 'on_input',
|
|
83
|
-
name:
|
|
83
|
+
name: getLocaleText('CMD.onInput', null, '用户输入时'),
|
|
84
84
|
code: 'input'
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
87
|
key: 'on_blur',
|
|
88
|
-
name:
|
|
88
|
+
name: getLocaleText('CMD.onBlur', null, '失去焦点时'),
|
|
89
89
|
code: 'blur'
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
key: 'on_focus',
|
|
93
|
-
name:
|
|
93
|
+
name: getLocaleText('CMD.onFocus', null, '获取焦点时'),
|
|
94
94
|
code: 'focus'
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
key: 'on_wps_open',
|
|
98
|
-
name:
|
|
98
|
+
name: getLocaleText('CMD.onOpenFile', null, '打开文件时'),
|
|
99
99
|
code: 'wps-open'
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
102
|
key: 'on_wps_save',
|
|
103
|
-
name:
|
|
103
|
+
name: getLocaleText('CMD.onSaveFile', null, '保存文件时'),
|
|
104
104
|
code: 'wps-save'
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
107
|
key: 'on_wps_rename',
|
|
108
|
-
name:
|
|
108
|
+
name: getLocaleText('CMD.rename', null, '重命名时'),
|
|
109
109
|
code: 'wps-rename'
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
112
|
key: 'on_list_actions',
|
|
113
|
-
name:
|
|
113
|
+
name: getLocaleText('CMD.onClickBtn', null, '点击操作按钮时'),
|
|
114
114
|
code: 'list-actions'
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
key: 'on_list_render_operation',
|
|
118
|
-
name:
|
|
118
|
+
name: getLocaleText('CMD.cellRender', null, '操作列渲染时'),
|
|
119
119
|
code: 'list-render-operation'
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
122
|
key: 'on_list_rowclick',
|
|
123
|
-
name:
|
|
123
|
+
name: getLocaleText('CMD.rowClick', null, '行点击时'),
|
|
124
124
|
code: 'list-rowclick'
|
|
125
125
|
},
|
|
126
126
|
{
|
|
127
127
|
key: 'on_list_before_rowdelete',
|
|
128
|
-
name:
|
|
128
|
+
name: getLocaleText('CMD.rowDelete', null, '行删除前'),
|
|
129
129
|
code: 'list-before-rowdelete'
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
132
|
key: 'on_list_before_import',
|
|
133
|
-
name:
|
|
133
|
+
name: getLocaleText('CMD.listDataImport', null, '列表数据导入前'),
|
|
134
134
|
code: 'list-before-import'
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
137
|
key: 'on_list_rows_checked',
|
|
138
|
-
name:
|
|
138
|
+
name: getLocaleText('CMD.rowSelected', null, '行选中时'),
|
|
139
139
|
code: 'list-rows-checked'
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
142
|
key: 'on_change_tab',
|
|
143
|
-
name:
|
|
143
|
+
name: getLocaleText('CMD.tabChange', null, '标签页切换时'),
|
|
144
144
|
code: 'change-tab'
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
147
|
key: 'on_modal_ok',
|
|
148
|
-
name:
|
|
148
|
+
name: getLocaleText('CMD.modalConfirm', null, '弹窗确认时'),
|
|
149
149
|
code: 'modal-ok'
|
|
150
150
|
}
|
|
151
151
|
];
|
package/dist/esm/RulesMessage.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// import { createI18n } from 'vue-i18n'
|
|
1
2
|
function _class_call_check(instance, Constructor) {
|
|
2
3
|
if (!(instance instanceof Constructor)) {
|
|
3
4
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -30,10 +31,9 @@ function _define_property(obj, key, value) {
|
|
|
30
31
|
}
|
|
31
32
|
return obj;
|
|
32
33
|
}
|
|
33
|
-
import { createI18n } from 'vue-i18n';
|
|
34
34
|
import messages from './locales';
|
|
35
35
|
import { DEFAULT_LOCALE } from './constant';
|
|
36
|
-
import {
|
|
36
|
+
import { getLocaleText } from '@byteluck-fe/locale-message';
|
|
37
37
|
export var RulesMessage = /*#__PURE__*/ function() {
|
|
38
38
|
"use strict";
|
|
39
39
|
function RulesMessage() {
|
|
@@ -44,33 +44,32 @@ export var RulesMessage = /*#__PURE__*/ function() {
|
|
|
44
44
|
key: "getMessage",
|
|
45
45
|
value: function getMessage(messageKey) {
|
|
46
46
|
var variable = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
47
|
-
var
|
|
48
|
-
return (
|
|
47
|
+
var _messages_DEFAULT_LOCALE_split_join;
|
|
48
|
+
return getLocaleText('CMD.' + messageKey, variable, messages === null || messages === void 0 ? void 0 : (_messages_DEFAULT_LOCALE_split_join = messages[DEFAULT_LOCALE.split('-').join('')]) === null || _messages_DEFAULT_LOCALE_split_join === void 0 ? void 0 : _messages_DEFAULT_LOCALE_split_join[messageKey]);
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
52
|
key: "resetI18n",
|
|
53
53
|
value: function resetI18n() {
|
|
54
54
|
var locale = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : DEFAULT_LOCALE;
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
55
|
+
// return createI18n({
|
|
56
|
+
// locale,
|
|
57
|
+
// globalInjection: true,
|
|
58
|
+
// silentFallbackWarn: true,
|
|
59
|
+
// missingWarn: false,
|
|
60
|
+
// fallbackWarn: false,
|
|
61
|
+
// silentTranslationWarn: true,
|
|
62
|
+
// })
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
key: "setLocale",
|
|
67
67
|
value: function setLocale(locale, messagesI18n) {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
this.$i18n.global.setLocaleMessage(locale, i18nData);
|
|
68
|
+
// let i18nData = messagesI18n
|
|
69
|
+
// if (!messagesI18n) {
|
|
70
|
+
// i18nData = messages['zhCN'] //默认中文
|
|
71
|
+
// }
|
|
72
|
+
// this.$i18n.global.setLocaleMessage(locale, i18nData)
|
|
74
73
|
// return this.$i18n.setLocale(locale)
|
|
75
74
|
}
|
|
76
75
|
}
|
package/dist/esm/enum.js
CHANGED
|
@@ -137,6 +137,7 @@ export var CONTROL_TYPE;
|
|
|
137
137
|
// grid_wrap 必须结合 grid-layout-container
|
|
138
138
|
CONTROL_TYPE["GRID_LAYOUT_WRAP"] = "grid-layout-wrap";
|
|
139
139
|
CONTROL_TYPE["VUE_PAGE"] = "vue-page";
|
|
140
|
+
CONTROL_TYPE["REFERENCE_LIST"] = "reference-list";
|
|
140
141
|
})(CONTROL_TYPE || (CONTROL_TYPE = {}));
|
|
141
142
|
export var OPT_TYPES;
|
|
142
143
|
(function(OPT_TYPES) {
|
|
@@ -150,5 +150,9 @@
|
|
|
150
150
|
"toolbox": "工具栏",
|
|
151
151
|
"batchSubmissionListButton": "批量提交",
|
|
152
152
|
"exportRecordListButton": "导出记录",
|
|
153
|
-
"listViewSelect": "列表视图"
|
|
153
|
+
"listViewSelect": "列表视图",
|
|
154
|
+
"referenceList":"引用列表",
|
|
155
|
+
"optionOne":"选项一",
|
|
156
|
+
"optionTwo":"选项二",
|
|
157
|
+
"optionThird":"选项三"
|
|
154
158
|
}
|
|
@@ -150,5 +150,9 @@
|
|
|
150
150
|
"toolbox": "工具栏",
|
|
151
151
|
"batchSubmissionListButton": "批量提交",
|
|
152
152
|
"exportRecordListButton": "导出记录",
|
|
153
|
-
"listViewSelect": "列表视图"
|
|
153
|
+
"listViewSelect": "列表视图",
|
|
154
|
+
"referenceList":"引用列表",
|
|
155
|
+
"optionOne":"选项一",
|
|
156
|
+
"optionTwo":"选项二",
|
|
157
|
+
"optionThird":"选项三"
|
|
154
158
|
}
|
package/dist/esm/log.js
CHANGED
|
@@ -12,6 +12,10 @@ function _assert_this_initialized(self) {
|
|
|
12
12
|
}
|
|
13
13
|
return self;
|
|
14
14
|
}
|
|
15
|
+
function _call_super(_this, derived, args) {
|
|
16
|
+
derived = _get_prototype_of(derived);
|
|
17
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
18
|
+
}
|
|
15
19
|
function _class_call_check(instance, Constructor) {
|
|
16
20
|
if (!(instance instanceof Constructor)) {
|
|
17
21
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -117,28 +121,12 @@ function _wrap_native_super(Class) {
|
|
|
117
121
|
return _wrap_native_super(Class);
|
|
118
122
|
}
|
|
119
123
|
function _is_native_reflect_construct() {
|
|
120
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
121
|
-
if (Reflect.construct.sham) return false;
|
|
122
|
-
if (typeof Proxy === "function") return true;
|
|
123
124
|
try {
|
|
124
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
return
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
function _create_super(Derived) {
|
|
131
|
-
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
132
|
-
return function _createSuperInternal() {
|
|
133
|
-
var Super = _get_prototype_of(Derived), result;
|
|
134
|
-
if (hasNativeReflectConstruct) {
|
|
135
|
-
var NewTarget = _get_prototype_of(this).constructor;
|
|
136
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
137
|
-
} else {
|
|
138
|
-
result = Super.apply(this, arguments);
|
|
139
|
-
}
|
|
140
|
-
return _possible_constructor_return(this, result);
|
|
141
|
-
};
|
|
125
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
126
|
+
} catch (_) {}
|
|
127
|
+
return (_is_native_reflect_construct = function() {
|
|
128
|
+
return !!result;
|
|
129
|
+
})();
|
|
142
130
|
}
|
|
143
131
|
var logger = console;
|
|
144
132
|
export function warn() {
|
|
@@ -168,11 +156,12 @@ function joinMessage(message) {
|
|
|
168
156
|
var DrivenError = /*#__PURE__*/ function(Error1) {
|
|
169
157
|
"use strict";
|
|
170
158
|
_inherits(DrivenError, Error1);
|
|
171
|
-
var _super = _create_super(DrivenError);
|
|
172
159
|
function DrivenError(message) {
|
|
173
160
|
_class_call_check(this, DrivenError);
|
|
174
161
|
var _this;
|
|
175
|
-
_this =
|
|
162
|
+
_this = _call_super(this, DrivenError, [
|
|
163
|
+
message
|
|
164
|
+
]);
|
|
176
165
|
_this.name = '💥 Driven Error';
|
|
177
166
|
_this.message = message ? joinMessage(message) : 'An unknown error occurred in the Driven, please contact the person in charge 🚑🚑🚑';
|
|
178
167
|
return _this;
|
|
@@ -183,11 +172,12 @@ var DrivenError = /*#__PURE__*/ function(Error1) {
|
|
|
183
172
|
var DrivenReferenceError = /*#__PURE__*/ function(DrivenError) {
|
|
184
173
|
"use strict";
|
|
185
174
|
_inherits(DrivenReferenceError, DrivenError);
|
|
186
|
-
var _super = _create_super(DrivenReferenceError);
|
|
187
175
|
function DrivenReferenceError(message) {
|
|
188
176
|
_class_call_check(this, DrivenReferenceError);
|
|
189
177
|
var _this;
|
|
190
|
-
_this =
|
|
178
|
+
_this = _call_super(this, DrivenReferenceError, [
|
|
179
|
+
message
|
|
180
|
+
]);
|
|
191
181
|
_this.name = '🚨 Driven Reference Error';
|
|
192
182
|
return _this;
|
|
193
183
|
}
|
package/dist/index.umd.js
CHANGED
|
@@ -1,43 +1 @@
|
|
|
1
|
-
var U5=Object.defineProperty,x5=Object.defineProperties;var W5=Object.getOwnPropertyDescriptors;var eo=Object.getOwnPropertySymbols;var H5=Object.prototype.hasOwnProperty,G5=Object.prototype.propertyIsEnumerable;var to=(R,ne,fe)=>ne in R?U5(R,ne,{enumerable:!0,configurable:!0,writable:!0,value:fe}):R[ne]=fe,gr=(R,ne)=>{for(var fe in ne||(ne={}))H5.call(ne,fe)&&to(R,fe,ne[fe]);if(eo)for(var fe of eo(ne))G5.call(ne,fe)&&to(R,fe,ne[fe]);return R},br=(R,ne)=>x5(R,W5(ne));var Mt=(R,ne,fe)=>new Promise((eu,hn)=>{var tu=Ue=>{try{wt(fe.next(Ue))}catch(Pt){hn(Pt)}},nu=Ue=>{try{wt(fe.throw(Ue))}catch(Pt){hn(Pt)}},wt=Ue=>Ue.done?eu(Ue.value):Promise.resolve(Ue.value).then(tu,nu);wt((fe=fe.apply(R,ne)).next())});(function(R,ne){typeof exports=="object"&&typeof module!="undefined"?ne(exports):typeof define=="function"&&define.amd?define(["exports"],ne):(R=typeof globalThis!="undefined"?globalThis:R||self,ne(R.modelDrivenShared={}))})(this,function(R){var Zs;"use strict";class ne{}class fe{}var eu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",hn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",tu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",nu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",wt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Ue="{caption}\u5FC5\u586B",Pt="\u8BF7\u8F93\u5165\u6807\u9898",no="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",uo="\u8BF7\u8F93\u5165\u884C\u6807\u9898",ro="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",ao="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",so="\u8BF7\u7ED1\u5B9A\u8868\u5355",oo="\u8BF7\u7ED1\u5B9A\u5217\u8868",io="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",lo="\u8BF7\u8F93\u5165\u663E\u793A\u503C",co="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",fo="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Eo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",po="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",mo="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",_o="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ho="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",vo="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",go="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",bo="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Co="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Ao="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Fo="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",No="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Do="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",So="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Io="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Bo="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Oo="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",To="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Lo="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",yo="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Ro="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",$o="\u8BF7\u9009\u62E9\u7701",Mo="\u8BF7\u9009\u62E9\u5E02",wo="\u8BF7\u9009\u62E9\u533A",Po="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Vo="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",ko="\u8BF7\u8F93\u5165\u5217\u5BBD",Uo="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",xo="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Wo="\u8BF7\u9009\u62E9\u63A7\u4EF6",Ho="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Go="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",jo="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ko="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Xo="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Jo="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",qo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",zo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Qo="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Zo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Yo="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ei="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ti="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ni="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ui="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ri="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ai="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",si="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",oi="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ii="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",li="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",ci="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",fi="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",di="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",Ei="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",pi="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",mi="\u6279\u91CF\u5220\u9664",_i="\u6279\u91CF\u6253\u5370",hi="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",vi="\u6309\u94AE",gi="\u521B\u5EFA\u5355\u636E",bi="\u4EEA\u8868\u76D8",Ci="\u5206\u5272\u7EBF",Ai="\u5BFC\u51FA",Fi="\u8868\u5355\u64CD\u4F5C",Ni="\u5BFC\u5165",Di="\u53D1\u7968\u8BC6\u522B",Si="\u94FE\u63A5",Ii="\u5217\u8868\u9009\u62E9",Bi="\u5217\u8868\u89C6\u56FE",Oi="\u64CD\u4F5C\u6309\u94AE",Ti="\u5206\u9875",Li="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",yi="\u8BF4\u660E\u6587\u5B57",Ri="\u6587\u5B57\u8BC6\u522B",$i="\u6807\u9898\u7EC4\u4EF6",Mi="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",wi="\u6570\u7EC4",Pi="\u81EA\u52A8\u7F16\u53F7",Vi="\u81EA\u5B9A\u4E49",ki="\u6570\u503C",Ui="\u90E8\u95E8",xi="\u4EBA\u5458",Wi="\u9644\u4EF6",Hi="\u56FE\u7247",Gi="\u5730\u5740",ji="\u64CD\u4F5C",Ki="\u5E8F\u53F7",Xi="\u4EBA\u5458",Ji="\u957F\u6587\u672C",qi="\u65E5\u671F\u533A\u95F4",zi="\u65E5\u671F",Qi="\u77ED\u6587\u672C",Zi="\u6362\u884C\u5BB9\u5668Wrap",Yi="\u8868\u683C",el="\u660E\u7EC6\u5B50\u8868",tl="\u5730\u5740",nl="\u91D1\u989D",ul="\u8BA1\u7B97\u516C\u5F0F",rl="\u591A\u9009",al="\u7535\u5B50\u7B7E\u7AE0",sl="\u5355\u884C\u6587\u672C",ol="\u6570\u5B57",il="\u4E1A\u52A1\u7EC4\u7EC7",ll="\u5355\u9009",cl="\u5BCC\u6587\u672C",fl="\u8BC4\u5206",dl="\u6570\u5B57\u533A\u95F4",El="\u4E0B\u62C9\u5355\u9009",pl="\u4E0B\u62C9\u591A\u9009",ml="\u5173\u8054\u5355\u9009",_l="\u591A\u884C\u6587\u672C",hl="\u6811",vl="Vue\u5BB9\u5668",gl="Vue\u9875\u9762",bl="\u5728\u7EBF\u6587\u6863",Cl="\u6309\u94AE\u64CD\u4F5C\u680F",Al="\u9AD8\u7EA7\u5BB9\u5668",Fl="\u5206\u7EC4",Nl="\u6805\u683C\u5217",Dl="\u6570\u636E\u5BB9\u5668",Sl="\u753B\u5E03",Il="\u6362\u884C\u5BB9\u5668",Bl="\u6805\u683C\u7B49\u5206\u884C",Ol="\u5217\u8868\u5BB9\u5668",Tl="\u81EA\u7531\u9875\u9762",Ll="\u5B9A\u4F4D\u5B50\u5BB9\u5668",yl="\u5B9A\u4F4D\u5BB9\u5668",Rl="\u6805\u683C\u5E03\u5C40",$l="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Ml="\u660E\u7EC6\u5B50\u8868\u884C",wl="\u6807\u7B7E\u9875",Pl="\u6807\u7B7E\u5355\u5143",Vl="\u5DE5\u5177\u680F",kl="\u6279\u91CF\u63D0\u4EA4",Ul="\u5BFC\u51FA\u8BB0\u5F55",xl="\u5217\u8868\u89C6\u56FE",Wl="\u7ED3\u675F\u65F6\u95F4",Hl="\u5F00\u59CB\u65F6\u95F4",Gl="\u5355\u4F4D",jl="\u7ED3\u679C",Kl="\u5E01\u79CD",Xl="\u7ED3\u675F\u65E5\u671F",Jl="\u5F00\u59CB\u65E5\u671F",ql="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",zl="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",Ql="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",Zl="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",Yl="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",ec="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",tc="\u8BF7\u9009\u62E9",nc="\u8BF7\u9009\u62E9\u7EC4\u7EC7",uc="\u8BF7\u9009\u62E9\u90E8\u95E8",rc="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",ac="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",sc="\u8BF7\u9009\u62E9\u5730\u5740",oc="\u5F39\u7A97\u786E\u8BA4\u65F6",ic="\u6807\u7B7E\u9875\u5207\u6362\u65F6",lc="\u884C\u9009\u4E2D\u65F6",cc="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",fc="\u884C\u5220\u9664\u524D",dc="\u884C\u70B9\u51FB\u65F6",Ec="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",pc="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",mc="\u91CD\u547D\u540D\u65F6",_c="\u4FDD\u5B58\u6587\u4EF6\u65F6",hc="\u6253\u5F00\u6587\u4EF6\u65F6",vc="\u83B7\u53D6\u7126\u70B9\u65F6",gc="\u5931\u53BB\u7126\u70B9\u65F6",bc="\u7528\u6237\u8F93\u5165\u65F6",Cc="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",Ac="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",Fc="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",Nc="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",Dc="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Sc="\u641C\u7D22\u65F6",Ic="\u503C\u53D1\u751F\u53D8\u5316\u65F6",Bc="\u6267\u884C\u5B8C\u6210\u65F6",Oc="\u70B9\u51FB\u65F6",Tc="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",Lc="\u8BF7\u8F93\u5165\u65E5\u671F",yc="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Rc="\u8BF7\u8F93\u5165",$c="\u9ED8\u8BA4\u6A21\u7248",Mc="\u5DE6\u53F3\u5E03\u5C40",wc="\u4E0A\u4E0B\u5E03\u5C40",Pc="\u53EA\u8BFB",Vc="\u5FC5\u586B",kc="\u63D0\u793A\u6587\u5B57",Uc="\u9690\u85CF\u6807\u9898",xc="\u6807\u9898\u5FC5\u586B",Wc="\u7EC4\u7EC7\u5F62\u6001",Hc="\u4E1A\u52A1\u7C7B\u578B",Gc="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",jc="\u9690\u85CF",Kc="\u6D41\u7A0B\u72B6\u6001",Xc="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Jc="\u5220\u9664",qc="\u7F16\u8F91",zc="\u67E5\u770B",Qc="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",Zc="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",Yc="\u5145\u6EE1\u6574\u884C",ef="\u6700\u5C0F\u503C",tf="\u6700\u5927\u503C",nf="\u65B0\u5EFA\u6587\u6863",uf="\u91CD\u7F6E",rf="\u67E5\u8BE2",af="\u660E\u7EC6",sf="\u6253\u5370",of="\u4FDD\u5B58\u8349\u7A3F",lf="\u4FDD\u5B58",cf="\u53D6\u6D88",ff="\u4E0A\u4F20\u56FE\u7247",df="\u53D1\u8D77\u7B7E\u7F72",Ef="\u4E0A\u4F20\u9644\u4EF6",pf="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",mf={isNotNumber:eu,isNotString:hn,isNotObject:tu,isNotArray:nu,isNotBoolean:wt,runtimeRequired:Ue,pleaseEnterCaption:Pt,pleaseEnterCaptionTip:no,pleaseEnterRowCaption:uo,pleaseEnterPlaceholder:ro,pleaseEnterFieldCode:ao,pleaseEnterForm:so,pleaseEnterList:oo,pleaseEnterProcess:io,pleaseEnterLabel:lo,pleaseEnterValue:co,bizKeyNotBindFiled:fo,pleaseSelectOneField:Eo,pleaseEnterNumberRange:po,pleaseEnterAValueGreaterThanMin:mo,pleaseEnterAValueLessThanMax:_o,numberRangeSetError:ho,stringRangeError:vo,attachmentMaxSize:go,pleaseEnterTotalScoreSetting:bo,theTotalScoreMustNotBeLessThan1:Co,scoreDefaultValueRange:Ao,attachmentLimitError:Fo,PleaseReselectTheOptionalQuantity:No,TheMaximumLengthIsGreaterThanTheMinimumLength:Do,TheMinimumLengthIsGreaterThanTheMaximumLength:So,PleaseSelectTheCorrectOptionSettings:Io,optionIdIsRepeat:Bo,optionIsRequired:Oo,pleaseEnterDataCode:To,pleaseEnterValueFieldCode:Lo,pleaseEnterSvcCode:yo,pleaseBindAtLeastOneDisplayValue:Ro,pleaseSelectProvince:$o,pleaseSelectCity:Mo,pleaseSelectDistrict:wo,limitRowsCannotBeLessThan0:Po,TheNumberOfRowsCannotBeLessThanMinRows:Vo,pleaseEnterColumnWidth:ko,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Uo,pleaseCompleteAllRulesAndConditions:xo,pleaseSelectControl:Wo,pleaseSelectAtLeastOneColumn:Ho,pleaseSelectFillBackMode:Go,pleaseSelectDashboard:jo,rootNodeIsRequired:Ko,theViewNameCannotBeEmpty:Xo,pleaseSelectOcrType:Jo,pleaseSelectAtLeastOneFieldToFillIn:qo,pleaseChooseAtLeastOne:zo,pleaseEnterButtonContent:Qo,pleaseEnterDataCodeInDataSetting:Zo,pleaseEnterValueFieldCodeInDataSetting:Yo,pleaseEnterSvcCodeInDataSetting:ei,pleaseBindAtLeastOneDisplayValueInDataSetting:ti,rootNodeIsRequiredInDataSetting:ni,pleaseEnterMaxHeight:ui,pleaseEnterWatermark:ri,pleaseEnterFileName:ai,pleaseUploadAtLeastOnePrintTemplate:si,pleaseAssignBusiness:oi,pleaseAssignExternal:ii,pleaseEnterAliasCode:li,pleaseSelectDataCode:ci,pleaseSelectSvcCode:fi,pleaseSelectJoinFieldCode:di,pleaseSelectMainFieldCode:Ei,pleaseSelectSortFieldCode:pi,batchDeleteButton:mi,batchPrintListButton:_i,batchPrintRecordList:hi,button:vi,createFormListButton:gi,dashboard:bi,divider:Ci,exportListButton:Ai,formSelectButton:Fi,importRecordListButton:Ni,invoiceCheckButton:Di,link:Si,listSelectButton:Ii,ListViewSelect:Bi,operationButton:Oi,pagination:Ti,submissionRecordListButton:Li,text:yi,textOcrButton:Ri,title:$i,approvalStatusColumn:Mi,array:wi,autoNumber:Pi,custom:Vi,decimal:ki,department:Ui,employee:xi,file:Wi,image:Hi,location:Gi,operation:ji,order:Ki,people:Xi,long:Ji,timescope:qi,timestamp:zi,varchar:Qi,gridLayoutWrap:Zi,gridTable:Yi,subTable:el,address:tl,amount:nl,calc:ul,checkBox:rl,electronicSignature:al,input:sl,number:ol,organizationSelection:il,radio:ll,richText:cl,score:fl,searchNumberRange:dl,select:El,selectMultiple:pl,selectRelation:ml,textarea:_l,tree:hl,vueFormItem:vl,vuePage:gl,WPS:bl,actionBar:Cl,advancedContainer:Al,cardGroup:Fl,col:Nl,dataView:Dl,grid:Sl,gridLayoutContainer:Il,gridRow:Bl,listView:Ol,page:Tl,position:Ll,positioningContainer:yl,row:Rl,subtableColumn:$l,subtableRow:Ml,tab:wl,tabPane:Pl,toolbox:Vl,batchSubmissionListButton:kl,exportRecordListButton:Ul,listViewSelect:xl,endTime:Wl,startTime:Hl,unit:Gl,result:jl,currency:Kl,endDate:Xl,startDate:Jl,pleaseSelectCompanyName:ql,pleaseSelectPhoneOrEmail:zl,pleaseSelectSignType:Ql,pleaseSelectSigner:Zl,pleaseSelectOnlyOne:Yl,pleaseSelectSignFile:ec,pleaseSelect:tc,pleaseSelectOrg:nc,pleaseSelectDept:uc,pleaseSelectEndDate:rc,pleaseSelectStartDate:ac,pleaseChooseAddress:sc,modalConfirm:oc,tabChange:ic,rowSelected:lc,listDataImport:cc,rowDelete:fc,rowClick:dc,cellRender:Ec,onClickBtn:pc,rename:mc,onSaveFile:_c,onOpenFile:hc,onFocus:vc,onBlur:gc,onInput:bc,listDataAdd:Cc,listDataDelete:Ac,listDataBack:Fc,listDataCreate:Nc,listDataChange:Dc,search:Sc,valueChange:Ic,finished:Bc,click:Oc,pleaseEnterNameorEmail:Tc,pleaseEnterDate:Lc,pleaseEnterAutonumber:yc,pleaseEnter:Rc,defaultTemplate:$c,left:Mc,top:wc,default:"\u666E\u901A",readonly:Pc,required:Vc,textTip:kc,hideCaption:Uc,titleRequired:xc,organizationalForm:Wc,businessType:Hc,deleteConfirm:Gc,hide:jc,processStatus:Kc,approvedDocuments:Xc,delete:Jc,edit:qc,view:zc,loadCtrlErrorTip:Qc,loadCtrlError:Zc,fullLine:Yc,min:ef,max:tf,createWPS:nf,reset:uf,query:rf,detailed:af,print:sf,draft:of,save:lf,cancel:cf,uploadImg:ff,signature:df,uploadFile:Ef,linkContent:pf},_f="Please enter a number",hf="Please enter a string",vf="Please enter an object",gf="Please enter an array",bf="Please enter a boolean",Cf="{caption} Required",Af="Please enter the title",Ff="Please enter the bubble prompt",Nf="Please enter the row title",Df="Please enter the prompt text",Sf="Please bind data items",If="Please bind the form",Bf="Please bind the list",Of="Please bind the process",Tf="Please enter the displayed value",Lf="Please enter the stored value",yf="The document number is not bound to the data item",Rf="Please select at least one display field",$f="Please enter a value greater than or equal to {min} and less than or equal to {max}",Mf="Please enter a value greater than or equal to {min}",wf="Please enter a value less than or equal to {max}",Pf="The value range is set incorrectly",Vf="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",kf="The attachment size must be between 0MB and 1000MB",Uf="Please fill in the total score setting",xf="The total score cannot be less than 1",Wf="The default value must be between {min} and {max}",Hf="The number of attachment uploads exceeds the limit",Gf="Please re-select the optional quantity",jf="The maximum length of the control must be greater than the minimum length",Kf="The minimum length of the control must be less than the maximum length",Xf="Please select the correct option setting",Jf="Option ID cannot be repeated",qf="Please enter at least one option",zf="Please bind the data source",Qf="Please bind the stored value",Zf="Please bind the service",Yf="At least one display value must be bound",ed="Please select a province",td="Please select a city",nd="Please select a district",ud="The minimum number of lines to fill in cannot be less than 0",rd="The number of rows cannot be less than {min} rows",ad="Please enter the column width",sd="Please set the logical relationship of all rule conditions",od="Please complete all rules and conditions",id="please select control",ld="Please select the dashboard",cd="View name cannot be empty",fd="Please select recognition type",dd="Please select at least one field to fill in",Ed="Please select at least one",pd="Please enter the button title",md="Please bind the business model in the data settings",_d="Please bind storage values in data settings",hd="Please bind the service in the data settings",vd="Please bind at least one display value in the data settings",gd="Please select the root node in the data settings",bd="Please enter the maximum height",Cd="The input content cannot be empty",Ad="Watermark cannot be empty",Fd="File name cannot be empty",Nd="Please upload at least one printing template!\uFF01",Dd="Please select a specific business department",Sd="Please select a specified external organization",Id="Please enter a sub table alias",Bd="Please select the associated table to set the business model",Od="Please select the association table to set the binding service",Td="Select associated sub table fields",Ld="Please select the associated main table field",yd="Please select the sort field",Rd="\u6279\u91CF\u5220\u9664",$d="\u6279\u91CF\u6253\u5370",Md="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",wd="\u6309\u94AE",Pd="\u521B\u5EFA\u5355\u636E",Vd="\u4EEA\u8868\u76D8",kd="\u5206\u5272\u7EBF",Ud="\u5BFC\u51FA",xd="\u8868\u5355\u64CD\u4F5C",Wd="\u5BFC\u5165",Hd="\u53D1\u7968\u8BC6\u522B",Gd="\u94FE\u63A5",jd="\u5217\u8868\u9009\u62E9",Kd="\u5217\u8868\u89C6\u56FE",Xd="\u64CD\u4F5C\u6309\u94AE",Jd="\u5206\u9875",qd="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",zd="\u8BF4\u660E\u6587\u5B57",Qd="\u6587\u5B57\u8BC6\u522B",Zd="\u6807\u9898\u7EC4\u4EF6",Yd="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",eE="\u6570\u7EC4",tE="\u81EA\u52A8\u7F16\u53F7",nE="\u81EA\u5B9A\u4E49",uE="\u6570\u503C",rE="\u90E8\u95E8",aE="\u4EBA\u5458",sE="\u9644\u4EF6",oE="\u56FE\u7247",iE="\u5730\u5740",lE="\u64CD\u4F5C",cE="\u5E8F\u53F7",fE="\u4EBA\u5458",dE="\u957F\u6587\u672C",EE="\u65E5\u671F\u533A\u95F4",pE="\u65E5\u671F",mE="\u77ED\u6587\u672C",_E="\u6362\u884C\u5BB9\u5668Wrap",hE="\u8868\u683C",vE="\u660E\u7EC6\u5B50\u8868",gE="\u5730\u5740",bE="\u91D1\u989D",CE="\u8BA1\u7B97\u516C\u5F0F",AE="\u591A\u9009",FE="\u7535\u5B50\u7B7E\u7AE0",NE="\u5355\u884C\u6587\u672C",DE="\u6570\u5B57",SE="\u4E1A\u52A1\u7EC4\u7EC7",IE="\u5355\u9009",BE="\u5BCC\u6587\u672C",OE="\u8BC4\u5206",TE="\u6570\u5B57\u533A\u95F4",LE="\u4E0B\u62C9\u5355\u9009",yE="\u4E0B\u62C9\u591A\u9009",RE="\u5173\u8054\u5355\u9009",$E="\u591A\u884C\u6587\u672C",ME="\u6811",wE="Vue\u5BB9\u5668",PE="Vue\u9875\u9762",VE="\u5728\u7EBF\u6587\u6863",kE="\u6309\u94AE\u64CD\u4F5C\u680F",UE="\u9AD8\u7EA7\u5BB9\u5668",xE="\u5206\u7EC4",WE="\u6805\u683C\u5217",HE="\u6570\u636E\u5BB9\u5668",GE="\u753B\u5E03",jE="\u6362\u884C\u5BB9\u5668",KE="\u6805\u683C\u7B49\u5206\u884C",XE="\u5217\u8868\u5BB9\u5668",JE="\u81EA\u7531\u9875\u9762",qE="\u5B9A\u4F4D\u5B50\u5BB9\u5668",zE="\u5B9A\u4F4D\u5BB9\u5668",QE="\u6805\u683C\u5E03\u5C40",ZE="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",YE="\u660E\u7EC6\u5B50\u8868\u884C",ep="\u6807\u7B7E\u9875",tp="\u6807\u7B7E\u5355\u5143",np="\u5DE5\u5177\u680F",up="\u6279\u91CF\u63D0\u4EA4",rp="\u5BFC\u51FA\u8BB0\u5F55",ap="\u5217\u8868\u89C6\u56FE",sp={isNotNumber:_f,isNotString:hf,isNotObject:vf,isNotArray:gf,isNotBoolean:bf,runtimeRequired:Cf,pleaseEnterCaption:Af,pleaseEnterCaptionTip:Ff,pleaseEnterRowCaption:Nf,pleaseEnterPlaceholder:Df,pleaseEnterFieldCode:Sf,pleaseEnterForm:If,pleaseEnterList:Bf,pleaseEnterProcess:Of,pleaseEnterLabel:Tf,pleaseEnterValue:Lf,bizKeyNotBindFiled:yf,pleaseSelectOneField:Rf,pleaseEnterNumberRange:$f,pleaseEnterAValueGreaterThanMin:Mf,pleaseEnterAValueLessThanMax:wf,numberRangeSetError:Pf,stringRangeError:Vf,attachmentMaxSize:kf,pleaseEnterTotalScoreSetting:Uf,theTotalScoreMustNotBeLessThan1:xf,scoreDefaultValueRange:Wf,attachmentLimitError:Hf,PleaseReselectTheOptionalQuantity:Gf,TheMaximumLengthIsGreaterThanTheMinimumLength:jf,TheMinimumLengthIsGreaterThanTheMaximumLength:Kf,PleaseSelectTheCorrectOptionSettings:Xf,optionIdIsRepeat:Jf,optionIsRequired:qf,pleaseEnterDataCode:zf,pleaseEnterValueFieldCode:Qf,pleaseEnterSvcCode:Zf,pleaseBindAtLeastOneDisplayValue:Yf,pleaseSelectProvince:ed,pleaseSelectCity:td,pleaseSelectDistrict:nd,limitRowsCannotBeLessThan0:ud,TheNumberOfRowsCannotBeLessThanMinRows:rd,pleaseEnterColumnWidth:ad,pleaseSetTheLogicalRelationshipOfAllRuleConditions:sd,pleaseCompleteAllRulesAndConditions:od,pleaseSelectControl:id,pleaseSelectDashboard:ld,theViewNameCannotBeEmpty:cd,pleaseSelectOcrType:fd,pleaseSelectAtLeastOneFieldToFillIn:dd,pleaseChooseAtLeastOne:Ed,pleaseEnterButtonContent:pd,pleaseEnterDataCodeInDataSetting:md,pleaseEnterValueFieldCodeInDataSetting:_d,pleaseEnterSvcCodeInDataSetting:hd,pleaseBindAtLeastOneDisplayValueInDataSetting:vd,rootNodeIsRequiredInDataSetting:gd,pleaseEnterMaxHeight:bd,pleaseEnter:Cd,pleaseEnterWatermark:Ad,pleaseEnterFileName:Fd,pleaseUploadAtLeastOnePrintTemplate:Nd,pleaseAssignBusiness:Dd,pleaseAssignExternal:Sd,pleaseEnterAliasCode:Id,pleaseSelectDataCode:Bd,pleaseSelectSvcCode:Od,pleaseSelectJoinFieldCode:Td,pleaseSelectMainFieldCode:Ld,pleaseSelectSortFieldCode:yd,batchDeleteButton:Rd,batchPrintListButton:$d,batchPrintRecordList:Md,button:wd,createFormListButton:Pd,dashboard:Vd,divider:kd,exportListButton:Ud,formSelectButton:xd,importRecordListButton:Wd,invoiceCheckButton:Hd,link:Gd,listSelectButton:jd,ListViewSelect:Kd,operationButton:Xd,pagination:Jd,submissionRecordListButton:qd,text:zd,textOcrButton:Qd,title:Zd,approvalStatusColumn:Yd,array:eE,autoNumber:tE,custom:nE,decimal:uE,department:rE,employee:aE,file:sE,image:oE,location:iE,operation:lE,order:cE,people:fE,long:dE,timescope:EE,timestamp:pE,varchar:mE,gridLayoutWrap:_E,gridTable:hE,subTable:vE,address:gE,amount:bE,calc:CE,checkBox:AE,electronicSignature:FE,input:NE,number:DE,organizationSelection:SE,radio:IE,richText:BE,score:OE,searchNumberRange:TE,select:LE,selectMultiple:yE,selectRelation:RE,textarea:$E,tree:ME,vueFormItem:wE,vuePage:PE,WPS:VE,actionBar:kE,advancedContainer:UE,cardGroup:xE,col:WE,dataView:HE,grid:GE,gridLayoutContainer:jE,gridRow:KE,listView:XE,page:JE,position:qE,positioningContainer:zE,row:QE,subtableColumn:ZE,subtableRow:YE,tab:ep,tabPane:tp,toolbox:np,batchSubmissionListButton:up,exportRecordListButton:rp,listViewSelect:ap},op="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ip="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",lp="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",cp="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",fp="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",dp="{caption}\u5FC5\u9808",Ep="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",pp="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",mp="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",_p="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",hp="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",vp="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",gp="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",bp="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Cp="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ap="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fp="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Np="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Dp="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Sp="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ip="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Bp="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Op="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Tp="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Lp="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",yp="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Rp="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",$p="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",Mp="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",wp="\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",Pp="\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",Vp="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",kp="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Up="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",xp="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Wp="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Hp="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Gp="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",jp="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Kp="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Xp="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Jp="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",qp="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",zp="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Qp="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Zp="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Yp="please select control",em="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",tm="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",nm="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",um="\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",rm="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",am="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",sm="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",om="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",im="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",lm="\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",cm="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",fm="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",dm="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Em="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",pm="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",mm="\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",_m="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",hm="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",vm="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",gm="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",bm="\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",Am="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fm="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Nm="\u6279\u91CF\u5220\u9664",Dm="\u6279\u91CF\u6253\u5370",Sm="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Im="\u6309\u94AE",Bm="\u521B\u5EFA\u5355\u636E",Om="\u4EEA\u8868\u76D8",Tm="\u5206\u5272\u7EBF",Lm="\u5BFC\u51FA",ym="\u8868\u5355\u64CD\u4F5C",Rm="\u5BFC\u5165",$m="\u53D1\u7968\u8BC6\u522B",Mm="\u94FE\u63A5",wm="\u5217\u8868\u9009\u62E9",Pm="\u5217\u8868\u89C6\u56FE",Vm="\u64CD\u4F5C\u6309\u94AE",km="\u5206\u9875",Um="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",xm="\u8BF4\u660E\u6587\u5B57",Wm="\u6587\u5B57\u8BC6\u522B",Hm="\u6807\u9898\u7EC4\u4EF6",Gm="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",jm="\u6570\u7EC4",Km="\u81EA\u52A8\u7F16\u53F7",Xm="\u81EA\u5B9A\u4E49",Jm="\u6570\u503C",qm="\u90E8\u95E8",zm="\u4EBA\u5458",Qm="\u9644\u4EF6",Zm="\u56FE\u7247",Ym="\u5730\u5740",e_="\u64CD\u4F5C",t_="\u5E8F\u53F7",n_="\u4EBA\u5458",u_="\u957F\u6587\u672C",r_="\u65E5\u671F\u533A\u95F4",a_="\u65E5\u671F",s_="\u77ED\u6587\u672C",o_="\u6362\u884C\u5BB9\u5668Wrap",i_="\u8868\u683C",l_="\u660E\u7EC6\u5B50\u8868",c_="\u5730\u5740",f_="\u91D1\u989D",d_="\u8BA1\u7B97\u516C\u5F0F",E_="\u591A\u9009",p_="\u7535\u5B50\u7B7E\u7AE0",m_="\u5355\u884C\u6587\u672C",__="\u6570\u5B57",h_="\u4E1A\u52A1\u7EC4\u7EC7",v_="\u5355\u9009",g_="\u5BCC\u6587\u672C",b_="\u8BC4\u5206",C_="\u6570\u5B57\u533A\u95F4",A_="\u4E0B\u62C9\u5355\u9009",F_="\u4E0B\u62C9\u591A\u9009",N_="\u5173\u8054\u5355\u9009",D_="\u591A\u884C\u6587\u672C",S_="\u6811",I_="Vue\u5BB9\u5668",B_="Vue\u9875\u9762",O_="\u5728\u7EBF\u6587\u6863",T_="\u6309\u94AE\u64CD\u4F5C\u680F",L_="\u9AD8\u7EA7\u5BB9\u5668",y_="\u5206\u7EC4",R_="\u6805\u683C\u5217",$_="\u6570\u636E\u5BB9\u5668",M_="\u753B\u5E03",w_="\u6362\u884C\u5BB9\u5668",P_="\u6805\u683C\u7B49\u5206\u884C",V_="\u5217\u8868\u5BB9\u5668",k_="\u81EA\u7531\u9875\u9762",U_="\u5B9A\u4F4D\u5B50\u5BB9\u5668",x_="\u5B9A\u4F4D\u5BB9\u5668",W_="\u6805\u683C\u5E03\u5C40",H_="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",G_="\u660E\u7EC6\u5B50\u8868\u884C",j_="\u6807\u7B7E\u9875",K_="\u6807\u7B7E\u5355\u5143",X_="\u5DE5\u5177\u680F",J_="\u6279\u91CF\u63D0\u4EA4",q_="\u5BFC\u51FA\u8BB0\u5F55",z_="\u5217\u8868\u89C6\u56FE",Q_={isNotNumber:op,isNotString:ip,isNotObject:lp,isNotArray:cp,isNotBoolean:fp,runtimeRequired:dp,pleaseEnterCaption:Ep,pleaseEnterCaptionTip:pp,pleaseEnterRowCaption:mp,pleaseEnterPlaceholder:_p,pleaseEnterFieldCode:hp,pleaseEnterForm:vp,pleaseEnterList:gp,pleaseEnterProcess:bp,pleaseEnterLabel:Cp,pleaseEnterValue:Ap,bizKeyNotBindFiled:Fp,pleaseSelectOneField:Np,pleaseEnterNumberRange:Dp,pleaseEnterAValueGreaterThanMin:Sp,pleaseEnterAValueLessThanMax:Ip,numberRangeSetError:Bp,stringRangeError:Op,attachmentMaxSize:Tp,pleaseEnterTotalScoreSetting:Lp,theTotalScoreMustNotBeLessThan1:yp,scoreDefaultValueRange:Rp,attachmentLimitError:$p,PleaseReselectTheOptionalQuantity:Mp,TheMaximumLengthIsGreaterThanTheMinimumLength:wp,TheMinimumLengthIsGreaterThanTheMaximumLength:Pp,PleaseSelectTheCorrectOptionSettings:Vp,optionIdIsRepeat:kp,optionIsRequired:Up,pleaseEnterDataCode:xp,pleaseEnterValueFieldCode:Wp,pleaseEnterSvcCode:Hp,pleaseBindAtLeastOneDisplayValue:Gp,pleaseSelectProvince:jp,pleaseSelectCity:Kp,pleaseSelectDistrict:Xp,limitRowsCannotBeLessThan0:Jp,TheNumberOfRowsCannotBeLessThanMinRows:qp,pleaseEnterColumnWidth:zp,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Qp,pleaseCompleteAllRulesAndConditions:Zp,pleaseSelectControl:Yp,pleaseSelectDashboard:em,theViewNameCannotBeEmpty:tm,pleaseSelectOcrType:nm,pleaseSelectAtLeastOneFieldToFillIn:um,pleaseChooseAtLeastOne:rm,pleaseEnterButtonContent:am,pleaseEnterDataCodeInDataSetting:sm,pleaseEnterValueFieldCodeInDataSetting:om,pleaseEnterSvcCodeInDataSetting:im,pleaseBindAtLeastOneDisplayValueInDataSetting:lm,rootNodeIsRequiredInDataSetting:cm,pleaseEnterMaxHeight:fm,pleaseEnter:dm,pleaseEnterWatermark:Em,pleaseEnterFileName:pm,pleaseUploadAtLeastOnePrintTemplate:mm,pleaseAssignBusiness:_m,pleaseAssignExternal:hm,pleaseEnterAliasCode:vm,pleaseSelectDataCode:gm,pleaseSelectSvcCode:bm,pleaseSelectJoinFieldCode:Cm,pleaseSelectMainFieldCode:Am,pleaseSelectSortFieldCode:Fm,batchDeleteButton:Nm,batchPrintListButton:Dm,batchPrintRecordList:Sm,button:Im,createFormListButton:Bm,dashboard:Om,divider:Tm,exportListButton:Lm,formSelectButton:ym,importRecordListButton:Rm,invoiceCheckButton:$m,link:Mm,listSelectButton:wm,ListViewSelect:Pm,operationButton:Vm,pagination:km,submissionRecordListButton:Um,text:xm,textOcrButton:Wm,title:Hm,approvalStatusColumn:Gm,array:jm,autoNumber:Km,custom:Xm,decimal:Jm,department:qm,employee:zm,file:Qm,image:Zm,location:Ym,operation:e_,order:t_,people:n_,long:u_,timescope:r_,timestamp:a_,varchar:s_,gridLayoutWrap:o_,gridTable:i_,subTable:l_,address:c_,amount:f_,calc:d_,checkBox:E_,electronicSignature:p_,input:m_,number:__,organizationSelection:h_,radio:v_,richText:g_,score:b_,searchNumberRange:C_,select:A_,selectMultiple:F_,selectRelation:N_,textarea:D_,tree:S_,vueFormItem:I_,vuePage:B_,WPS:O_,actionBar:T_,advancedContainer:L_,cardGroup:y_,col:R_,dataView:$_,grid:M_,gridLayoutContainer:w_,gridRow:P_,listView:V_,page:k_,position:U_,positioningContainer:x_,row:W_,subtableColumn:H_,subtableRow:G_,tab:j_,tabPane:K_,toolbox:X_,batchSubmissionListButton:J_,exportRecordListButton:q_,listViewSelect:z_},Z_={zhCN:mf,enUS:sp,jaJP:Q_},Cr=(e=>(e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable",e))(Cr||{}),Ar=(e=>(e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN",e))(Ar||{});class Y_{constructor(t){var n,u,a,r,s,o;this.name=(n=t==null?void 0:t.name)!=null?n:"",this.id=(u=t==null?void 0:t.id)!=null?u:"",this.type=(a=t==null?void 0:t.type)!=null?a:"Number",this.subTableId=(r=t==null?void 0:t.subTableId)!=null?r:void 0,this.subTableName=(s=t==null?void 0:t.subTableId)!=null?s:void 0,this.aggregateType=(o=t==null?void 0:t.aggregateType)!=null?o:void 0}}const Fr=(Zs=window.localStorage.getItem("locale"))!=null?Zs:"zh-CN",e0=()=>{};var Nr=(e=>(e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search",e))(Nr||{}),Dr=(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",e))(Dr||{}),uu=(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",e))(uu||{}),Sr=(e=>(e.SAVE="save",e.DRAFT="draft",e.UNSUBMIT="unsubmit",e.AUDIT="audit",e.UNAUDIT="unaudit",e.CANCEL="cancel",e.FORM_SUBMIT="form_submit",e))(Sr||{}),Ir=(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",e))(Ir||{}),Br=(e=>(e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime",e))(Br||{});const t0={DEFAULT:"default"},Or="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",n0=Or+"0123456789";function u0(e=15){let t="";for(let n=0;n<e;n++){const u=n===0?Or:n0,a=Math.random()*u.length;t+=u[parseInt(String(a),10)]}return t}const ru=console;function Tr(...e){const t=e.slice(1);ru.warn("\u{1F9D0} Driven Warning:"+e[0],...t)}function au(...e){const t=e.slice(1);ru.log("\u{1F680} Driven Log:"+e[0],...t)}function r0(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}class su extends Error{constructor(t){super(t),this.name="\u{1F4A5} Driven Error",this.message=t?r0(t):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}"}}class a0 extends su{constructor(t){super(t),this.name="\u{1F6A8} Driven Reference Error"}}function s0(e){throw new su(e)}function o0(e){throw new a0(e)}function Lr(e){ru.error(new su(e))}function vn(e,t){Array.isArray(e)&&e.map(n=>{switch(n.controlType){case"layout":vn(n==null?void 0:n.children,t);break;case"wrap":vn(n==null?void 0:n.children,t);break;case"search":vn(n==null?void 0:n.children,t);break;case"form":t(n)}})}/*!
|
|
2
|
-
* shared v9.14.0
|
|
3
|
-
* (c) 2024 kazuya kawaguchi
|
|
4
|
-
* Released under the MIT License.
|
|
5
|
-
*/const Te=typeof window!="undefined";let Ae,ut;if(process.env.NODE_ENV!=="production"){const e=Te&&window.performance;e&&e.mark&&e.measure&&e.clearMarks&&e.clearMeasures&&(Ae=t=>{e.mark(t)},ut=(t,n,u)=>{e.measure(t,n,u),e.clearMarks(n),e.clearMarks(u)})}const i0=/\{([0-9a-zA-Z]+)\}/g;function Vt(e,...t){return t.length===1&&x(t[0])&&(t=t[0]),(!t||!t.hasOwnProperty)&&(t={}),e.replace(i0,(n,u)=>t.hasOwnProperty(u)?t[u]:"")}const Le=(e,t=!1)=>t?Symbol.for(e):Symbol(e),l0=(e,t,n)=>c0({l:e,k:t,s:n}),c0=e=>JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029").replace(/\u0027/g,"\\u0027"),ae=e=>typeof e=="number"&&isFinite(e),f0=e=>Mr(e)==="[object Date]",Xe=e=>Mr(e)==="[object RegExp]",gn=e=>w(e)&&Object.keys(e).length===0,se=Object.assign;let yr;const xe=()=>yr||(yr=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});function Rr(e){return e.replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}const d0=Object.prototype.hasOwnProperty;function bn(e,t){return d0.call(e,t)}const J=Array.isArray,K=e=>typeof e=="function",O=e=>typeof e=="string",P=e=>typeof e=="boolean",x=e=>e!==null&&typeof e=="object",E0=e=>x(e)&&K(e.then)&&K(e.catch),$r=Object.prototype.toString,Mr=e=>$r.call(e),w=e=>{if(!x(e))return!1;const t=Object.getPrototypeOf(e);return t===null||t.constructor===Object},p0=e=>e==null?"":J(e)||w(e)&&e.toString===$r?JSON.stringify(e,null,2):String(e);function ou(e,t=""){return e.reduce((n,u,a)=>a===0?n+u:n+t+u,"")}const wr=2;function m0(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-wr;o<=s+wr||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 E=u[o].length;if(o===s){const _=t-(a-E)+1,c=Math.max(1,n>a?E-_:n-t);r.push(" | "+" ".repeat(_)+"^".repeat(c))}else if(o>s){if(n>a){const _=Math.max(Math.min(n-a,E),1);r.push(" | "+"^".repeat(_))}a+=E+1}}break}return r.join(`
|
|
6
|
-
`)}function Cn(e){let t=e;return()=>++t}function oe(e,t){typeof console!="undefined"&&(console.warn("[intlify] "+e),t&&console.warn(t.stack))}const Pr={};function Vr(e){Pr[e]||(Pr[e]=!0,oe(e))}function iu(){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 An=e=>!x(e)||J(e);function Fn(e,t){if(An(e)||An(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=>{An(u[r])||An(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 _0(e,t,n){return{line:e,column:t,offset:n}}function Nn(e,t,n){const u={start:e,end:t};return n!=null&&(u.source=n),u}const Dn={USE_MODULO_SYNTAX:1,__EXTEND_POINT__:2},h0={[Dn.USE_MODULO_SYNTAX]:"Use modulo before '{{0}}'."};function v0(e,t,...n){const u=process.env.NODE_ENV!=="production"?Vt(h0[e]||"",...n||[]):e,a={message:String(u),code:e};return t&&(a.location=t),a}const M={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},g0={[M.EXPECTED_TOKEN]:"Expected token: '{0}'",[M.INVALID_TOKEN_IN_PLACEHOLDER]:"Invalid token in placeholder: '{0}'",[M.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER]:"Unterminated single quote in placeholder",[M.UNKNOWN_ESCAPE_SEQUENCE]:"Unknown escape sequence: \\{0}",[M.INVALID_UNICODE_ESCAPE_SEQUENCE]:"Invalid unicode escape sequence: {0}",[M.UNBALANCED_CLOSING_BRACE]:"Unbalanced closing brace",[M.UNTERMINATED_CLOSING_BRACE]:"Unterminated closing brace",[M.EMPTY_PLACEHOLDER]:"Empty placeholder",[M.NOT_ALLOW_NEST_PLACEHOLDER]:"Not allowed nest placeholder",[M.INVALID_LINKED_FORMAT]:"Invalid linked format",[M.MUST_HAVE_MESSAGES_IN_PLURAL]:"Plural must have messages",[M.UNEXPECTED_EMPTY_LINKED_MODIFIER]:"Unexpected empty linked modifier",[M.UNEXPECTED_EMPTY_LINKED_KEY]:"Unexpected empty linked key",[M.UNEXPECTED_LEXICAL_ANALYSIS]:"Unexpected lexical analysis in token: '{0}'",[M.UNHANDLED_CODEGEN_NODE_TYPE]:"unhandled codegen node type: '{0}'",[M.UNHANDLED_MINIFIER_NODE_TYPE]:"unhandled mimifier node type: '{0}'"};function mt(e,t,n={}){const{domain:u,messages:a,args:r}=n,s=process.env.NODE_ENV!=="production"?Vt((a||g0)[e]||"",...r||[]):e,o=new SyntaxError(String(s));return o.code=e,t&&(o.location=t),o.domain=u,o}function b0(e){throw e}const C0=/<\/?[\w\s="/.':;#-\/]+>/,A0=e=>C0.test(e),We=" ",F0="\r",pe=`
|
|
11
|
-
`,N0=String.fromCharCode(8232),D0=String.fromCharCode(8233);function S0(e){const t=e;let n=0,u=1,a=1,r=0;const s=N=>t[N]===F0&&t[N+1]===pe,o=N=>t[N]===pe,i=N=>t[N]===D0,E=N=>t[N]===N0,_=N=>s(N)||o(N)||i(N)||E(N),c=()=>n,d=()=>u,F=()=>a,S=()=>r,L=N=>s(N)||i(N)||E(N)?pe:t[N],y=()=>L(n),b=()=>L(n+r);function C(){return r=0,_(n)&&(u++,a=0),s(n)&&n++,n++,a++,t[n]}function p(){return s(n+r)&&r++,r++,t[n+r]}function m(){n=0,u=1,a=1,r=0}function h(N=0){r=N}function g(){const N=n+r;for(;N!==n;)C();r=0}return{index:c,line:d,column:F,peekOffset:S,charAt:L,currentChar:y,currentPeek:b,next:C,peek:p,reset:m,resetPeek:h,skipToPeek:g}}const Je=void 0,I0=".",kr="'",B0="tokenizer";function O0(e,t={}){const n=t.location!==!1,u=S0(e),a=()=>u.index(),r=()=>_0(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:""},E=()=>i,{onError:_}=t;function c(l,f,A,...$){const ee=E();if(f.column+=A,f.offset+=A,_){const X=n?Nn(ee.startLoc,f):null,j=mt(l,X,{domain:B0,args:$});_(j)}}function d(l,f,A){l.endLoc=r(),l.currentType=f;const $={type:f};return n&&($.loc=Nn(l.startLoc,l.endLoc)),A!=null&&($.value=A),$}const F=l=>d(l,14);function S(l,f){return l.currentChar()===f?(l.next(),f):(c(M.EXPECTED_TOKEN,r(),0,f),"")}function L(l){let f="";for(;l.currentPeek()===We||l.currentPeek()===pe;)f+=l.currentPeek(),l.peek();return f}function y(l){const f=L(l);return l.skipToPeek(),f}function b(l){if(l===Je)return!1;const f=l.charCodeAt(0);return f>=97&&f<=122||f>=65&&f<=90||f===95}function C(l){if(l===Je)return!1;const f=l.charCodeAt(0);return f>=48&&f<=57}function p(l,f){const{currentType:A}=f;if(A!==2)return!1;L(l);const $=b(l.currentPeek());return l.resetPeek(),$}function m(l,f){const{currentType:A}=f;if(A!==2)return!1;L(l);const $=l.currentPeek()==="-"?l.peek():l.currentPeek(),ee=C($);return l.resetPeek(),ee}function h(l,f){const{currentType:A}=f;if(A!==2)return!1;L(l);const $=l.currentPeek()===kr;return l.resetPeek(),$}function g(l,f){const{currentType:A}=f;if(A!==8)return!1;L(l);const $=l.currentPeek()===".";return l.resetPeek(),$}function N(l,f){const{currentType:A}=f;if(A!==9)return!1;L(l);const $=b(l.currentPeek());return l.resetPeek(),$}function T(l,f){const{currentType:A}=f;if(!(A===8||A===12))return!1;L(l);const $=l.currentPeek()===":";return l.resetPeek(),$}function I(l,f){const{currentType:A}=f;if(A!==10)return!1;const $=()=>{const X=l.currentPeek();return X==="{"?b(l.peek()):X==="@"||X==="%"||X==="|"||X===":"||X==="."||X===We||!X?!1:X===pe?(l.peek(),$()):U(l,!1)},ee=$();return l.resetPeek(),ee}function q(l){L(l);const f=l.currentPeek()==="|";return l.resetPeek(),f}function De(l){const f=L(l),A=l.currentPeek()==="%"&&l.peek()==="{";return l.resetPeek(),{isModulo:A,hasSpace:f.length>0}}function U(l,f=!0){const A=(ee=!1,X="",j=!1)=>{const v=l.currentPeek();return v==="{"?X==="%"?!1:ee:v==="@"||!v?X==="%"?!0:ee:v==="%"?(l.peek(),A(ee,"%",!0)):v==="|"?X==="%"||j?!0:!(X===We||X===pe):v===We?(l.peek(),A(!0,We,j)):v===pe?(l.peek(),A(!0,pe,j)):!0},$=A();return f&&l.resetPeek(),$}function Ee(l,f){const A=l.currentChar();return A===Je?Je:f(A)?(l.next(),A):null}function en(l){const f=l.charCodeAt(0);return f>=97&&f<=122||f>=65&&f<=90||f>=48&&f<=57||f===95||f===36}function tn(l){return Ee(l,en)}function ke(l){const f=l.charCodeAt(0);return f>=97&&f<=122||f>=65&&f<=90||f>=48&&f<=57||f===95||f===36||f===45}function nn(l){return Ee(l,ke)}function un(l){const f=l.charCodeAt(0);return f>=48&&f<=57}function rn(l){return Ee(l,un)}function an(l){const f=l.charCodeAt(0);return f>=48&&f<=57||f>=65&&f<=70||f>=97&&f<=102}function sn(l){return Ee(l,an)}function Oe(l){let f="",A="";for(;f=rn(l);)A+=f;return A}function Lt(l){y(l);const f=l.currentChar();return f!=="%"&&c(M.EXPECTED_TOKEN,r(),0,f),l.next(),"%"}function yt(l){let f="";for(;;){const A=l.currentChar();if(A==="{"||A==="}"||A==="@"||A==="|"||!A)break;if(A==="%")if(U(l))f+=A,l.next();else break;else if(A===We||A===pe)if(U(l))f+=A,l.next();else{if(q(l))break;f+=A,l.next()}else f+=A,l.next()}return f}function on(l){y(l);let f="",A="";for(;f=nn(l);)A+=f;return l.currentChar()===Je&&c(M.UNTERMINATED_CLOSING_BRACE,r(),0),A}function ln(l){y(l);let f="";return l.currentChar()==="-"?(l.next(),f+=`-${Oe(l)}`):f+=Oe(l),l.currentChar()===Je&&c(M.UNTERMINATED_CLOSING_BRACE,r(),0),f}function cn(l){return l!==kr&&l!==pe}function Zn(l){y(l),S(l,"'");let f="",A="";for(;f=Ee(l,cn);)f==="\\"?A+=fn(l):A+=f;const $=l.currentChar();return $===pe||$===Je?(c(M.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER,r(),0),$===pe&&(l.next(),S(l,"'")),A):(S(l,"'"),A)}function fn(l){const f=l.currentChar();switch(f){case"\\":case"'":return l.next(),`\\${f}`;case"u":return Rt(l,f,4);case"U":return Rt(l,f,6);default:return c(M.UNKNOWN_ESCAPE_SEQUENCE,r(),0,f),""}}function Rt(l,f,A){S(l,f);let $="";for(let ee=0;ee<A;ee++){const X=sn(l);if(!X){c(M.INVALID_UNICODE_ESCAPE_SEQUENCE,r(),0,`\\${f}${$}${l.currentChar()}`);break}$+=X}return`\\${f}${$}`}function dn(l){return l!=="{"&&l!=="}"&&l!==We&&l!==pe}function En(l){y(l);let f="",A="";for(;f=Ee(l,dn);)A+=f;return A}function pn(l){let f="",A="";for(;f=tn(l);)A+=f;return A}function B(l){const f=A=>{const $=l.currentChar();return $==="{"||$==="%"||$==="@"||$==="|"||$==="("||$===")"||!$||$===We?A:(A+=$,l.next(),f(A))};return f("")}function H(l){y(l);const f=S(l,"|");return y(l),f}function mn(l,f){let A=null;switch(l.currentChar()){case"{":return f.braceNest>=1&&c(M.NOT_ALLOW_NEST_PLACEHOLDER,r(),0),l.next(),A=d(f,2,"{"),y(l),f.braceNest++,A;case"}":return f.braceNest>0&&f.currentType===2&&c(M.EMPTY_PLACEHOLDER,r(),0),l.next(),A=d(f,3,"}"),f.braceNest--,f.braceNest>0&&y(l),f.inLinked&&f.braceNest===0&&(f.inLinked=!1),A;case"@":return f.braceNest>0&&c(M.UNTERMINATED_CLOSING_BRACE,r(),0),A=Et(l,f)||F(f),f.braceNest=0,A;default:{let ee=!0,X=!0,j=!0;if(q(l))return f.braceNest>0&&c(M.UNTERMINATED_CLOSING_BRACE,r(),0),A=d(f,1,H(l)),f.braceNest=0,f.inLinked=!1,A;if(f.braceNest>0&&(f.currentType===5||f.currentType===6||f.currentType===7))return c(M.UNTERMINATED_CLOSING_BRACE,r(),0),f.braceNest=0,_n(l,f);if(ee=p(l,f))return A=d(f,5,on(l)),y(l),A;if(X=m(l,f))return A=d(f,6,ln(l)),y(l),A;if(j=h(l,f))return A=d(f,7,Zn(l)),y(l),A;if(!ee&&!X&&!j)return A=d(f,13,En(l)),c(M.INVALID_TOKEN_IN_PLACEHOLDER,r(),0,A.value),y(l),A;break}}return A}function Et(l,f){const{currentType:A}=f;let $=null;const ee=l.currentChar();switch((A===8||A===9||A===12||A===10)&&(ee===pe||ee===We)&&c(M.INVALID_LINKED_FORMAT,r(),0),ee){case"@":return l.next(),$=d(f,8,"@"),f.inLinked=!0,$;case".":return y(l),l.next(),d(f,9,".");case":":return y(l),l.next(),d(f,10,":");default:return q(l)?($=d(f,1,H(l)),f.braceNest=0,f.inLinked=!1,$):g(l,f)||T(l,f)?(y(l),Et(l,f)):N(l,f)?(y(l),d(f,12,pn(l))):I(l,f)?(y(l),ee==="{"?mn(l,f)||$:d(f,11,B(l))):(A===8&&c(M.INVALID_LINKED_FORMAT,r(),0),f.braceNest=0,f.inLinked=!1,_n(l,f))}}function _n(l,f){let A={type:14};if(f.braceNest>0)return mn(l,f)||F(f);if(f.inLinked)return Et(l,f)||F(f);switch(l.currentChar()){case"{":return mn(l,f)||F(f);case"}":return c(M.UNBALANCED_CLOSING_BRACE,r(),0),l.next(),d(f,3,"}");case"@":return Et(l,f)||F(f);default:{if(q(l))return A=d(f,1,H(l)),f.braceNest=0,f.inLinked=!1,A;const{isModulo:ee,hasSpace:X}=De(l);if(ee)return X?d(f,0,yt(l)):d(f,4,Lt(l));if(U(l))return d(f,0,yt(l));break}}return A}function vr(){const{currentType:l,offset:f,startLoc:A,endLoc:$}=i;return i.lastType=l,i.lastOffset=f,i.lastStartLoc=A,i.lastEndLoc=$,i.offset=a(),i.startLoc=r(),u.currentChar()===Je?d(i,14):_n(u,i)}return{nextToken:vr,currentOffset:a,currentPosition:r,context:E}}const T0="parser",L0=/(?:\\\\|\\'|\\u([0-9a-fA-F]{4})|\\U([0-9a-fA-F]{6}))/g;function y0(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 R0(e={}){const t=e.location!==!1,{onError:n,onWarn:u}=e;function a(p,m,h,g,...N){const T=p.currentPosition();if(T.offset+=g,T.column+=g,n){const I=t?Nn(h,T):null,q=mt(m,I,{domain:T0,args:N});n(q)}}function r(p,m,h,g,...N){const T=p.currentPosition();if(T.offset+=g,T.column+=g,u){const I=t?Nn(h,T):null;u(v0(m,I,N))}}function s(p,m,h){const g={type:p};return t&&(g.start=m,g.end=m,g.loc={start:h,end:h}),g}function o(p,m,h,g){g&&(p.type=g),t&&(p.end=m,p.loc&&(p.loc.end=h))}function i(p,m){const h=p.context(),g=s(3,h.offset,h.startLoc);return g.value=m,o(g,p.currentOffset(),p.currentPosition()),g}function E(p,m){const h=p.context(),{lastOffset:g,lastStartLoc:N}=h,T=s(5,g,N);return T.index=parseInt(m,10),p.nextToken(),o(T,p.currentOffset(),p.currentPosition()),T}function _(p,m,h){const g=p.context(),{lastOffset:N,lastStartLoc:T}=g,I=s(4,N,T);return I.key=m,h===!0&&(I.modulo=!0),p.nextToken(),o(I,p.currentOffset(),p.currentPosition()),I}function c(p,m){const h=p.context(),{lastOffset:g,lastStartLoc:N}=h,T=s(9,g,N);return T.value=m.replace(L0,y0),p.nextToken(),o(T,p.currentOffset(),p.currentPosition()),T}function d(p){const m=p.nextToken(),h=p.context(),{lastOffset:g,lastStartLoc:N}=h,T=s(8,g,N);return m.type!==12?(a(p,M.UNEXPECTED_EMPTY_LINKED_MODIFIER,h.lastStartLoc,0),T.value="",o(T,g,N),{nextConsumeToken:m,node:T}):(m.value==null&&a(p,M.UNEXPECTED_LEXICAL_ANALYSIS,h.lastStartLoc,0,ye(m)),T.value=m.value||"",o(T,p.currentOffset(),p.currentPosition()),{node:T})}function F(p,m){const h=p.context(),g=s(7,h.offset,h.startLoc);return g.value=m,o(g,p.currentOffset(),p.currentPosition()),g}function S(p){const m=p.context(),h=s(6,m.offset,m.startLoc);let g=p.nextToken();if(g.type===9){const N=d(p);h.modifier=N.node,g=N.nextConsumeToken||p.nextToken()}switch(g.type!==10&&a(p,M.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,ye(g)),g=p.nextToken(),g.type===2&&(g=p.nextToken()),g.type){case 11:g.value==null&&a(p,M.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,ye(g)),h.key=F(p,g.value||"");break;case 5:g.value==null&&a(p,M.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,ye(g)),h.key=_(p,g.value||"");break;case 6:g.value==null&&a(p,M.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,ye(g)),h.key=E(p,g.value||"");break;case 7:g.value==null&&a(p,M.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,ye(g)),h.key=c(p,g.value||"");break;default:{a(p,M.UNEXPECTED_EMPTY_LINKED_KEY,m.lastStartLoc,0);const N=p.context(),T=s(7,N.offset,N.startLoc);return T.value="",o(T,N.offset,N.startLoc),h.key=T,o(h,N.offset,N.startLoc),{nextConsumeToken:g,node:h}}}return o(h,p.currentOffset(),p.currentPosition()),{node:h}}function L(p){const m=p.context(),h=m.currentType===1?p.currentOffset():m.offset,g=m.currentType===1?m.endLoc:m.startLoc,N=s(2,h,g);N.items=[];let T=null,I=null;do{const U=T||p.nextToken();switch(T=null,U.type){case 0:U.value==null&&a(p,M.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,ye(U)),N.items.push(i(p,U.value||""));break;case 6:U.value==null&&a(p,M.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,ye(U)),N.items.push(E(p,U.value||""));break;case 4:I=!0;break;case 5:U.value==null&&a(p,M.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,ye(U)),N.items.push(_(p,U.value||"",!!I)),I&&(r(p,Dn.USE_MODULO_SYNTAX,m.lastStartLoc,0,ye(U)),I=null);break;case 7:U.value==null&&a(p,M.UNEXPECTED_LEXICAL_ANALYSIS,m.lastStartLoc,0,ye(U)),N.items.push(c(p,U.value||""));break;case 8:{const Ee=S(p);N.items.push(Ee.node),T=Ee.nextConsumeToken||null;break}}}while(m.currentType!==14&&m.currentType!==1);const q=m.currentType===1?m.lastOffset:p.currentOffset(),De=m.currentType===1?m.lastEndLoc:p.currentPosition();return o(N,q,De),N}function y(p,m,h,g){const N=p.context();let T=g.items.length===0;const I=s(1,m,h);I.cases=[],I.cases.push(g);do{const q=L(p);T||(T=q.items.length===0),I.cases.push(q)}while(N.currentType!==14);return T&&a(p,M.MUST_HAVE_MESSAGES_IN_PLURAL,h,0),o(I,p.currentOffset(),p.currentPosition()),I}function b(p){const m=p.context(),{offset:h,startLoc:g}=m,N=L(p);return m.currentType===14?N:y(p,h,g,N)}function C(p){const m=O0(p,se({},e)),h=m.context(),g=s(0,h.offset,h.startLoc);return t&&g.loc&&(g.loc.source=p),g.body=b(m),e.onCacheKey&&(g.cacheKey=e.onCacheKey(p)),h.currentType!==14&&a(m,M.UNEXPECTED_LEXICAL_ANALYSIS,h.lastStartLoc,0,p[h.offset]||""),o(g,m.currentOffset(),m.currentPosition()),g}return{parse:C}}function ye(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 $0(e,t={}){const n={ast:e,helpers:new Set};return{context:()=>n,helper:r=>(n.helpers.add(r),r)}}function Ur(e,t){for(let n=0;n<e.length;n++)lu(e[n],t)}function lu(e,t){switch(e.type){case 1:Ur(e.cases,t),t.helper("plural");break;case 2:Ur(e.items,t);break;case 6:{lu(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 M0(e,t={}){const n=$0(e);n.helper("normalize"),e.body&&lu(e.body,n);const u=n.context();e.helpers=Array.from(u.helpers)}function w0(e){const t=e.body;return t.type===2?xr(t):t.cases.forEach(n=>xr(n)),e}function xr(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=ou(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 P0="minifier";function _t(e){switch(e.t=e.type,e.type){case 0:{const t=e;_t(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++)_t(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++)_t(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;_t(t.key),t.k=t.key,delete t.key,t.modifier&&(_t(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 mt(M.UNHANDLED_MINIFIER_NODE_TYPE,null,{domain:P0,args:[e.type]})}delete e.type}const V0="parser";function k0(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 E(y,b){o.code+=y}function _(y,b=!0){const C=b?a:"";E(r?C+" ".repeat(y):C)}function c(y=!0){const b=++o.indentLevel;y&&_(b)}function d(y=!0){const b=--o.indentLevel;y&&_(b)}function F(){_(o.indentLevel)}return{context:i,push:E,indent:c,deindent:d,newline:F,helper:y=>`_${y}`,needIndent:()=>o.needIndent}}function U0(e,t){const{helper:n}=e;e.push(`${n("linked")}(`),ht(e,t.key),t.modifier?(e.push(", "),ht(e,t.modifier),e.push(", _type")):e.push(", undefined, _type"),e.push(")")}function x0(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&&(ht(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&&(ht(e,t.cases[r]),r!==a-1);r++)e.push(", ");e.deindent(u()),e.push("])")}}function H0(e,t){t.body?ht(e,t.body):e.push("null")}function ht(e,t){const{helper:n}=e;switch(t.type){case 0:H0(e,t);break;case 1:W0(e,t);break;case 2:x0(e,t);break;case 6:U0(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 mt(M.UNHANDLED_CODEGEN_NODE_TYPE,null,{domain:V0,args:[t.type]})}}const G0=(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=k0(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 { ${ou(o.map(c=>`${c}: _${c}`),", ")} } = ctx`),i.newline()),i.push("return "),ht(i,e),i.deindent(s),i.push("}"),delete e.helpers;const{code:E,map:_}=i.context();return{ast:e,code:E,map:_?_.toJSON():void 0}};function j0(e,t={}){const n=se({},t),u=!!n.jit,a=!!n.minify,r=n.optimize==null?!0:n.optimize,o=R0(n).parse(e);return u?(r&&w0(o),a&&_t(o),{ast:o,code:""}):(M0(o,n),G0(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"&&(xe().__INTLIFY_PROD_DEVTOOLS__=!1),typeof __INTLIFY_JIT_COMPILATION__!="boolean"&&(xe().__INTLIFY_JIT_COMPILATION__=!1),typeof __INTLIFY_DROP_MESSAGE_COMPILER__!="boolean"&&(xe().__INTLIFY_DROP_MESSAGE_COMPILER__=!1)}const qe=[];qe[0]={w:[0],i:[3,0],["["]:[4],o:[7]},qe[1]={w:[1],["."]:[2],["["]:[4],o:[7]},qe[2]={w:[2],i:[3,0],[0]:[3,0]},qe[3]={i:[3,0],[0]:[3,0],w:[1,1],["."]:[2,1],["["]:[4,1],o:[7,1]},qe[4]={["'"]:[5,0],['"']:[6,0],["["]:[4,2],["]"]:[1,3],o:8,l:[4,0]},qe[5]={["'"]:[4,0],o:8,l:[5,0]},qe[6]={['"']:[4,0],o:8,l:[6,0]};const X0=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function J0(e){return X0.test(e)}function q0(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 z0(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 Q0(e){const t=e.trim();return e.charAt(0)==="0"&&isNaN(parseInt(e))?!1:J0(t)?q0(t):"*"+t}function Z0(e){const t=[];let n=-1,u=0,a=0,r,s,o,i,E,_,c;const d=[];d[0]=()=>{s===void 0?s=o:s+=o},d[1]=()=>{s!==void 0&&(t.push(s),s=void 0)},d[2]=()=>{d[0](),a++},d[3]=()=>{if(a>0)a--,u=4,d[0]();else{if(a=0,s===void 0||(s=Q0(s),s===!1))return!1;d[1]()}};function F(){const S=e[n+1];if(u===5&&S==="'"||u===6&&S==='"')return n++,o="\\"+S,d[0](),!0}for(;u!==null;)if(n++,r=e[n],!(r==="\\"&&F())){if(i=z0(r),c=qe[u],E=c[i]||c.l||8,E===8||(u=E[0],E[1]!==void 0&&(_=d[E[1]],_&&(o=r,_()===!1))))return;if(u===7)return t}}const Wr=new Map;function Y0(e,t){return x(e)?e[t]:null}function eh(e,t){if(!x(e))return null;let n=Wr.get(t);if(n||(n=Z0(t),n&&Wr.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||K(a))return null;a=s,r++}return a}const th=e=>e,nh=e=>"",uh="text",rh=e=>e.length===0?"":ou(e),ah=p0;function Hr(e,t){return e=Math.abs(e),t===2?e?e>1?1:0:1:e?Math.min(e,2):0}function sh(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 oh(e,t){t.count||(t.count=e),t.n||(t.n=e)}function ih(e={}){const t=e.locale,n=sh(e),u=x(e.pluralRules)&&O(t)&&K(e.pluralRules[t])?e.pluralRules[t]:Hr,a=x(e.pluralRules)&&O(t)&&K(e.pluralRules[t])?Hr:void 0,r=b=>b[u(n,b.length,a)],s=e.list||[],o=b=>s[b],i=e.named||{};ae(e.pluralIndex)&&oh(n,i);const E=b=>i[b];function _(b){const C=K(e.messages)?e.messages(b):x(e.messages)?e.messages[b]:!1;return C||(e.parent?e.parent.message(b):nh)}const c=b=>e.modifiers?e.modifiers[b]:th,d=w(e.processor)&&K(e.processor.normalize)?e.processor.normalize:rh,F=w(e.processor)&&K(e.processor.interpolate)?e.processor.interpolate:ah,S=w(e.processor)&&O(e.processor.type)?e.processor.type:uh,y={list:o,named:E,plural:r,linked:(b,...C)=>{const[p,m]=C;let h="text",g="";C.length===1?x(p)?(g=p.modifier||g,h=p.type||h):O(p)&&(g=p||g):C.length===2&&(O(p)&&(g=p||g),O(m)&&(h=m||h));const N=_(b)(y),T=h==="vnode"&&J(N)&&g?N[0]:N;return g?c(g)(T,h):T},message:_,type:S,interpolate:F,normalize:d,values:se({},s,i)};return y}let kt=null;function lh(e){kt=e}function ch(e,t,n){kt&&kt.emit("i18n:init",{timestamp:Date.now(),i18n:e,version:t,meta:n})}const fh=dh("function:translate");function dh(e){return t=>kt&&kt.emit(e,t)}const Gr=Dn.__EXTEND_POINT__,rt=Cn(Gr),me={NOT_FOUND_KEY:Gr,FALLBACK_TO_TRANSLATE:rt(),CANNOT_FORMAT_NUMBER:rt(),FALLBACK_TO_NUMBER_FORMAT:rt(),CANNOT_FORMAT_DATE:rt(),FALLBACK_TO_DATE_FORMAT:rt(),EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER:rt(),__EXTEND_POINT__:rt()},Eh={[me.NOT_FOUND_KEY]:"Not found '{key}' key in '{locale}' locale messages.",[me.FALLBACK_TO_TRANSLATE]:"Fall back to translate '{key}' key with '{target}' locale.",[me.CANNOT_FORMAT_NUMBER]:"Cannot format a number value due to not supported Intl.NumberFormat.",[me.FALLBACK_TO_NUMBER_FORMAT]:"Fall back to number format '{key}' key with '{target}' locale.",[me.CANNOT_FORMAT_DATE]:"Cannot format a date value due to not supported Intl.DateTimeFormat.",[me.FALLBACK_TO_DATE_FORMAT]:"Fall back to datetime format '{key}' key with '{target}' locale.",[me.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 at(e,...t){return Vt(Eh[e],...t)}const jr=M.__EXTEND_POINT__,st=Cn(jr),le={INVALID_ARGUMENT:jr,INVALID_DATE_ARGUMENT:st(),INVALID_ISO_DATE_ARGUMENT:st(),NOT_SUPPORT_NON_STRING_MESSAGE:st(),NOT_SUPPORT_LOCALE_PROMISE_VALUE:st(),NOT_SUPPORT_LOCALE_ASYNC_FUNCTION:st(),NOT_SUPPORT_LOCALE_TYPE:st(),__EXTEND_POINT__:st()};function Me(e){return mt(e,null,process.env.NODE_ENV!=="production"?{messages:ph}:void 0)}const ph={[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 cu(e,t){return t.locale!=null?Kr(t.locale):Kr(e.locale)}let fu;function Kr(e){if(O(e))return e;if(K(e)){if(e.resolvedOnce&&fu!=null)return fu;if(e.constructor.name==="Function"){const t=e();if(E0(t))throw Me(le.NOT_SUPPORT_LOCALE_PROMISE_VALUE);return fu=t}else throw Me(le.NOT_SUPPORT_LOCALE_ASYNC_FUNCTION)}else throw Me(le.NOT_SUPPORT_LOCALE_TYPE)}function mh(e,t,n){return[...new Set([n,...J(t)?t:x(t)?Object.keys(t):O(t)?[t]:[n]])]}function Xr(e,t,n){const u=O(n)?n:vt,a=e;a.__localeChainCache||(a.__localeChainCache=new Map);let r=a.__localeChainCache.get(u);if(!r){r=[];let s=[n];for(;J(s);)s=Jr(r,s,t);const o=J(t)||!w(t)?t:t.default?t.default:null;s=O(o)?[o]:o,J(s)&&Jr(r,s,!1),a.__localeChainCache.set(u,r)}return r}function Jr(e,t,n){let u=!0;for(let a=0;a<t.length&&P(u);a++){const r=t[a];O(r)&&(u=_h(e,t[a],n))}return u}function _h(e,t,n){let u;const a=t.split("-");do{const r=a.join("-");u=hh(e,r,n),a.splice(-1,1)}while(a.length&&u===!0);return u}function hh(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),(J(n)||w(n))&&n[a]&&(u=n[a])}return u}const vh="9.14.0",Sn=-1,vt="en-US",In="",qr=e=>`${e.charAt(0).toLocaleUpperCase()}${e.substr(1)}`;function gh(){return{upper:(e,t)=>t==="text"&&O(e)?e.toUpperCase():t==="vnode"&&x(e)&&"__v_isVNode"in e?e.children.toUpperCase():e,lower:(e,t)=>t==="text"&&O(e)?e.toLowerCase():t==="vnode"&&x(e)&&"__v_isVNode"in e?e.children.toLowerCase():e,capitalize:(e,t)=>t==="text"&&O(e)?qr(e):t==="vnode"&&x(e)&&"__v_isVNode"in e?qr(e.children):e}}let zr;function Qr(e){zr=e}let Zr;function bh(e){Zr=e}let Yr;function Ch(e){Yr=e}let ea=null;const ta=e=>{ea=e},Ah=()=>ea;let na=null;const ua=e=>{na=e},Fh=()=>na;let ra=0;function Nh(e={}){const t=K(e.onWarn)?e.onWarn:oe,n=O(e.version)?e.version:vh,u=O(e.locale)||K(e.locale)?e.locale:vt,a=K(u)?vt:u,r=J(e.fallbackLocale)||w(e.fallbackLocale)||O(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:a,s=w(e.messages)?e.messages:{[a]:{}},o=w(e.datetimeFormats)?e.datetimeFormats:{[a]:{}},i=w(e.numberFormats)?e.numberFormats:{[a]:{}},E=se({},e.modifiers||{},gh()),_=e.pluralRules||{},c=K(e.missing)?e.missing:null,d=P(e.missingWarn)||Xe(e.missingWarn)?e.missingWarn:!0,F=P(e.fallbackWarn)||Xe(e.fallbackWarn)?e.fallbackWarn:!0,S=!!e.fallbackFormat,L=!!e.unresolving,y=K(e.postTranslation)?e.postTranslation:null,b=w(e.processor)?e.processor:null,C=P(e.warnHtmlMessage)?e.warnHtmlMessage:!0,p=!!e.escapeParameter,m=K(e.messageCompiler)?e.messageCompiler:zr;process.env.NODE_ENV!=="production"&&!0&&!0&&K(e.messageCompiler)&&Vr(at(me.EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER));const h=K(e.messageResolver)?e.messageResolver:Zr||Y0,g=K(e.localeFallbacker)?e.localeFallbacker:Yr||mh,N=x(e.fallbackContext)?e.fallbackContext:void 0,T=e,I=x(T.__datetimeFormatters)?T.__datetimeFormatters:new Map,q=x(T.__numberFormatters)?T.__numberFormatters:new Map,De=x(T.__meta)?T.__meta:{};ra++;const U={version:n,cid:ra,locale:u,fallbackLocale:r,messages:s,modifiers:E,pluralRules:_,missing:c,missingWarn:d,fallbackWarn:F,fallbackFormat:S,unresolving:L,postTranslation:y,processor:b,warnHtmlMessage:C,escapeParameter:p,messageCompiler:m,messageResolver:h,localeFallbacker:g,fallbackContext:N,onWarn:t,__meta:De};return U.datetimeFormats=o,U.numberFormats=i,U.__datetimeFormatters=I,U.__numberFormatters=q,process.env.NODE_ENV!=="production"&&(U.__v_emitter=T.__v_emitter!=null?T.__v_emitter:void 0),(process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__)&&ch(U,n,De),U}function Bn(e,t){return e instanceof RegExp?e.test(t):e}function aa(e,t){return e instanceof RegExp?e.test(t):e}function du(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"&&aa(u,t)&&s(at(me.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 sa(e,t){return e===t?!1:e.split("-")[0]===t.split("-")[0]}function Dh(e,t){const n=t.indexOf(e);if(n===-1)return!1;for(let u=n+1;u<t.length;u++)if(sa(e,t[u]))return!0;return!1}function Eu(e){return n=>Sh(n,e)}function Sh(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,oa(e,s)],[]))}else return oa(e,n)}function oa(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,pu(e,r)],[]);return e.normalize(u)}}function pu(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(pu(e,u.k||u.key),a?pu(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 Ih="Detected HTML in '{source}' message. Recommend not using HTML messages to avoid XSS.";function ia(e,t){t&&A0(e)&&oe(Vt(Ih,{source:e}))}const la=e=>e;let gt=Object.create(null);function ca(e){e.code===Dn.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 ze=e=>x(e)&&(e.t===0||e.type===0)&&("b"in e||"body"in e);function fa(e,t={}){let n=!1;const u=t.onError||b0;return t.onError=a=>{n=!0,u(a)},br(gr({},j0(e,t)),{detectError:n})}const Bh=(e,t)=>{if(!O(e))throw Me(le.NOT_SUPPORT_NON_STRING_MESSAGE);process.env.NODE_ENV!=="production"&&(t.onWarn=ca);{const n=P(t.warnHtmlMessage)?t.warnHtmlMessage:!0;process.env.NODE_ENV!=="production"&&ia(e,n);const a=(t.onCacheKey||la)(e),r=gt[a];if(r)return r;const{code:s,detectError:o}=fa(e,t),i=new Function(`return ${s}`)();return o?i:gt[a]=i}};function Oh(e,t){if(process.env.NODE_ENV!=="production"&&(t.onWarn=ca),__INTLIFY_JIT_COMPILATION__&&!__INTLIFY_DROP_MESSAGE_COMPILER__&&O(e)){const n=P(t.warnHtmlMessage)?t.warnHtmlMessage:!0;process.env.NODE_ENV!=="production"&&ia(e,n);const a=(t.onCacheKey||la)(e),r=gt[a];if(r)return r;const{ast:s,detectError:o}=fa(e,br(gr({},t),{location:process.env.NODE_ENV!=="production",jit:!0})),i=Eu(s);return o?i:gt[a]=i}else{if(process.env.NODE_ENV!=="production"&&!ze(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=gt[n];return u||(gt[n]=Eu(e))}else return Eu(e)}}const da=()=>"",Se=e=>K(e);function Ea(e,...t){const{fallbackFormat:n,postTranslation:u,unresolving:a,messageCompiler:r,fallbackLocale:s,messages:o}=e,[i,E]=mu(...t),_=P(E.missingWarn)?E.missingWarn:e.missingWarn,c=P(E.fallbackWarn)?E.fallbackWarn:e.fallbackWarn,d=P(E.escapeParameter)?E.escapeParameter:e.escapeParameter,F=!!E.resolvedMessage,S=O(E.default)||P(E.default)?P(E.default)?r?i:()=>i:E.default:n?r?i:()=>i:"",L=n||S!=="",y=cu(e,E);d&&Th(E);let[b,C,p]=F?[i,y,o[y]||{}]:pa(e,i,y,s,c,_),m=b,h=i;if(!F&&!(O(m)||ze(m)||Se(m))&&L&&(m=S,h=m),!F&&(!(O(m)||ze(m)||Se(m))||!O(C)))return a?Sn: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 N=()=>{g=!0},T=Se(m)?m:ma(e,i,C,m,h,N);if(g)return m;const I=$h(e,C,p,E),q=ih(I),De=Lh(e,T,q),U=u?u(De,i):De;if(process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__){const Ee={timestamp:Date.now(),key:O(i)?i:Se(m)?m.key:"",locale:C||(Se(m)?m.locale:""),format:O(m)?m:Se(m)?m.source:"",message:U};Ee.meta=se({},e.__meta,Ah()||{}),fh(Ee)}return U}function Th(e){J(e.list)?e.list=e.list.map(t=>O(t)?Rr(t):t):x(e.named)&&Object.keys(e.named).forEach(t=>{O(e.named[t])&&(e.named[t]=Rr(e.named[t]))})}function pa(e,t,n,u,a,r){const{messages:s,onWarn:o,messageResolver:i,localeFallbacker:E}=e,_=E(e,u,n);let c={},d,F=null,S=n,L=null;const y="translate";for(let b=0;b<_.length;b++){if(d=L=_[b],process.env.NODE_ENV!=="production"&&n!==d&&!sa(n,d)&&Bn(a,t)&&o(at(me.FALLBACK_TO_TRANSLATE,{key:t,target:d})),process.env.NODE_ENV!=="production"&&n!==d){const h=e.__v_emitter;h&&h.emit("fallback",{type:y,key:t,from:S,to:L,groupId:`${y}:${t}`})}c=s[d]||{};let C=null,p,m;if(process.env.NODE_ENV!=="production"&&Te&&(C=window.performance.now(),p="intlify-message-resolve-start",m="intlify-message-resolve-end",Ae&&Ae(p)),(F=i(c,t))===null&&(F=c[t]),process.env.NODE_ENV!=="production"&&Te){const h=window.performance.now(),g=e.__v_emitter;g&&C&&F&&g.emit("message-resolve",{type:"message-resolve",key:t,message:F,time:h-C,groupId:`${y}:${t}`}),p&&m&&Ae&&ut&&(Ae(m),ut("intlify message resolve",p,m))}if(O(F)||ze(F)||Se(F))break;if(!Dh(d,_)){const h=du(e,t,d,r,y);h!==t&&(F=h)}S=L}return[F,d,c]}function ma(e,t,n,u,a,r){const{messageCompiler:s,warnHtmlMessage:o}=e;if(Se(u)){const d=u;return d.locale=d.locale||n,d.key=d.key||t,d}if(s==null){const d=()=>u;return d.locale=n,d.key=t,d}let i=null,E,_;process.env.NODE_ENV!=="production"&&Te&&(i=window.performance.now(),E="intlify-message-compilation-start",_="intlify-message-compilation-end",Ae&&Ae(E));const c=s(u,yh(e,n,a,u,o,r));if(process.env.NODE_ENV!=="production"&&Te){const d=window.performance.now(),F=e.__v_emitter;F&&i&&F.emit("message-compilation",{type:"message-compilation",message:u,time:d-i,groupId:`translate:${t}`}),E&&_&&Ae&&ut&&(Ae(_),ut("intlify message compilation",E,_))}return c.locale=n,c.key=t,c.source=u,c}function Lh(e,t,n){let u=null,a,r;process.env.NODE_ENV!=="production"&&Te&&(u=window.performance.now(),a="intlify-message-evaluation-start",r="intlify-message-evaluation-end",Ae&&Ae(a));const s=t(n);if(process.env.NODE_ENV!=="production"&&Te){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&&Ae&&ut&&(Ae(r),ut("intlify message evaluation",a,r))}return s}function mu(...e){const[t,n,u]=e,a={};if(!O(t)&&!ae(t)&&!Se(t)&&!ze(t))throw Me(le.INVALID_ARGUMENT);const r=ae(t)?String(t):(Se(t),t);return ae(n)?a.plural=n:O(n)?a.default=n:w(n)&&!gn(n)?a.named=n:J(n)&&(a.list=n),ae(u)?a.plural=u:O(u)?a.default=u:w(u)&&se(a,u),[r,a]}function yh(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=Rh(u),i=`Message compilation error: ${s.message}`,E=s.location&&o&&m0(o,s.location.start.offset,s.location.end.offset),_=e.__v_emitter;_&&o&&_.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(E?`${i}
|
|
19
|
-
${E}`:i)}else throw s},onCacheKey:s=>l0(t,n,s)}}function Rh(e){if(O(e))return e;if(e.loc&&e.loc.source)return e.loc.source}function $h(e,t,n,u){const{modifiers:a,pluralRules:r,messageResolver:s,fallbackLocale:o,fallbackWarn:i,missingWarn:E,fallbackContext:_}=e,d={locale:t,modifiers:a,pluralRules:r,messages:F=>{let S=s(n,F);if(S==null&&_){const[,,L]=pa(_,F,t,o,i,E);S=s(L,F)}if(O(S)||ze(S)){let L=!1;const b=ma(e,F,t,S,F,()=>{L=!0});return L?da:b}else return Se(S)?S:da}};return e.processor&&(d.processor=e.processor),u.list&&(d.list=u.list),u.named&&(d.named=u.named),ae(u.plural)&&(d.pluralIndex=u.plural),d}const _a=typeof Intl!="undefined",ha={dateTimeFormat:_a&&typeof Intl.DateTimeFormat!="undefined",numberFormat:_a&&typeof Intl.NumberFormat!="undefined"};function va(e,...t){const{datetimeFormats:n,unresolving:u,fallbackLocale:a,onWarn:r,localeFallbacker:s}=e,{__datetimeFormatters:o}=e;if(process.env.NODE_ENV!=="production"&&!ha.dateTimeFormat)return r(at(me.CANNOT_FORMAT_DATE)),In;const[i,E,_,c]=_u(...t),d=P(_.missingWarn)?_.missingWarn:e.missingWarn,F=P(_.fallbackWarn)?_.fallbackWarn:e.fallbackWarn,S=!!_.part,L=cu(e,_),y=s(e,a,L);if(!O(i)||i==="")return new Intl.DateTimeFormat(L,c).format(E);let b={},C,p=null,m=L,h=null;const g="datetime format";for(let I=0;I<y.length;I++){if(C=h=y[I],process.env.NODE_ENV!=="production"&&L!==C&&Bn(F,i)&&r(at(me.FALLBACK_TO_DATE_FORMAT,{key:i,target:C})),process.env.NODE_ENV!=="production"&&L!==C){const q=e.__v_emitter;q&&q.emit("fallback",{type:g,key:i,from:m,to:h,groupId:`${g}:${i}`})}if(b=n[C]||{},p=b[i],w(p))break;du(e,i,C,d,g),m=h}if(!w(p)||!O(C))return u?Sn:i;let N=`${C}__${i}`;gn(c)||(N=`${N}__${JSON.stringify(c)}`);let T=o.get(N);return T||(T=new Intl.DateTimeFormat(C,se({},p,c)),o.set(N,T)),S?T.formatToParts(E):T.format(E)}const ga=["localeMatcher","weekday","era","year","month","day","hour","minute","second","timeZoneName","formatMatcher","hour12","timeZone","dateStyle","timeStyle","calendar","dayPeriod","numberingSystem","hourCycle","fractionalSecondDigits"];function _u(...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 Me(le.INVALID_ISO_DATE_ARGUMENT);const E=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(E);try{o.toISOString()}catch(_){throw Me(le.INVALID_ISO_DATE_ARGUMENT)}}else if(f0(t)){if(isNaN(t.getTime()))throw Me(le.INVALID_DATE_ARGUMENT);o=t}else if(ae(t))o=t;else throw Me(le.INVALID_ARGUMENT);return O(n)?r.key=n:w(n)&&Object.keys(n).forEach(i=>{ga.includes(i)?s[i]=n[i]:r[i]=n[i]}),O(u)?r.locale=u:w(u)&&(s=u),w(a)&&(s=a),[r.key||"",o,r,s]}function ba(e,t,n){const u=e;for(const a in n){const r=`${t}__${a}`;!u.__datetimeFormatters.has(r)||u.__datetimeFormatters.delete(r)}}function Ca(e,...t){const{numberFormats:n,unresolving:u,fallbackLocale:a,onWarn:r,localeFallbacker:s}=e,{__numberFormatters:o}=e;if(process.env.NODE_ENV!=="production"&&!ha.numberFormat)return r(at(me.CANNOT_FORMAT_NUMBER)),In;const[i,E,_,c]=hu(...t),d=P(_.missingWarn)?_.missingWarn:e.missingWarn,F=P(_.fallbackWarn)?_.fallbackWarn:e.fallbackWarn,S=!!_.part,L=cu(e,_),y=s(e,a,L);if(!O(i)||i==="")return new Intl.NumberFormat(L,c).format(E);let b={},C,p=null,m=L,h=null;const g="number format";for(let I=0;I<y.length;I++){if(C=h=y[I],process.env.NODE_ENV!=="production"&&L!==C&&Bn(F,i)&&r(at(me.FALLBACK_TO_NUMBER_FORMAT,{key:i,target:C})),process.env.NODE_ENV!=="production"&&L!==C){const q=e.__v_emitter;q&&q.emit("fallback",{type:g,key:i,from:m,to:h,groupId:`${g}:${i}`})}if(b=n[C]||{},p=b[i],w(p))break;du(e,i,C,d,g),m=h}if(!w(p)||!O(C))return u?Sn:i;let N=`${C}__${i}`;gn(c)||(N=`${N}__${JSON.stringify(c)}`);let T=o.get(N);return T||(T=new Intl.NumberFormat(C,se({},p,c)),o.set(N,T)),S?T.formatToParts(E):T.format(E)}const Aa=["localeMatcher","style","currency","currencyDisplay","currencySign","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","compactDisplay","notation","signDisplay","unit","unitDisplay","roundingMode","roundingPriority","roundingIncrement","trailingZeroDisplay"];function hu(...e){const[t,n,u,a]=e,r={};let s={};if(!ae(t))throw Me(le.INVALID_ARGUMENT);const o=t;return O(n)?r.key=n:w(n)&&Object.keys(n).forEach(i=>{Aa.includes(i)?s[i]=n[i]:r[i]=n[i]}),O(u)?r.locale=u:w(u)&&(s=u),w(a)&&(s=a),[r.key||"",o,r,s]}function Fa(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.5.5
|
|
21
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
22
|
-
* @license MIT
|
|
23
|
-
**//*! #__NO_SIDE_EFFECTS__ */function Mh(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const Ie=process.env.NODE_ENV!=="production"?Object.freeze({}):{};process.env.NODE_ENV!=="production"&&Object.freeze([]);const ot=()=>{},wh=()=>!1,Ph=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Fe=Object.assign,Vh=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},kh=Object.prototype.hasOwnProperty,ue=(e,t)=>kh.call(e,t),z=Array.isArray,bt=e=>On(e)==="[object Map]",Uh=e=>On(e)==="[object Set]",re=e=>typeof e=="function",Re=e=>typeof e=="string",xt=e=>typeof e=="symbol",_e=e=>e!==null&&typeof e=="object",xh=e=>(_e(e)||re(e))&&re(e.then)&&re(e.catch),Wh=Object.prototype.toString,On=e=>Wh.call(e),Na=e=>On(e).slice(8,-1),Hh=e=>On(e)==="[object Object]",vu=e=>Re(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Da=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Sa=Da(e=>e.charAt(0).toUpperCase()+e.slice(1)),Gh=Da(e=>e?`on${Sa(e)}`:""),Qe=(e,t)=>!Object.is(e,t),jh=(e,t,n,u=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:u,value:n})};let Ia;const Ba=()=>Ia||(Ia=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});function gu(e){if(z(e)){const t={};for(let n=0;n<e.length;n++){const u=e[n],a=Re(u)?qh(u):gu(u);if(a)for(const r in a)t[r]=a[r]}return t}else if(Re(e)||_e(e))return e}const Kh=/;(?![^(]*\))/g,Xh=/:([^]+)/,Jh=/\/\*[^]*?\*\//g;function qh(e){const t={};return e.replace(Jh,"").split(Kh).forEach(n=>{if(n){const u=n.split(Xh);u.length>1&&(t[u[0].trim()]=u[1].trim())}}),t}function bu(e){let t="";if(Re(e))t=e;else if(z(e))for(let n=0;n<e.length;n++){const u=bu(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.5.5
|
|
25
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
26
|
-
* @license MIT
|
|
27
|
-
**/function we(e,...t){console.warn(`[Vue warn] ${e}`,...t)}let Ne;class zh{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=Ne,!t&&Ne&&(this.index=(Ne.scopes||(Ne.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].pause();for(t=0,n=this.effects.length;t<n;t++)this.effects[t].pause()}}resume(){if(this._active&&this._isPaused){this._isPaused=!1;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].resume();for(t=0,n=this.effects.length;t<n;t++)this.effects[t].resume()}}run(t){if(this._active){const n=Ne;try{return Ne=this,t()}finally{Ne=n}}else process.env.NODE_ENV!=="production"&&we("cannot run an inactive effect scope.")}on(){Ne=this}off(){Ne=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 Qh(e){return new zh(e)}function Zh(){return Ne}let W;const Cu=new WeakSet;class Yh{constructor(t){this.fn=t,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.nextEffect=void 0,this.cleanup=void 0,this.scheduler=void 0,Ne&&Ne.active&&Ne.effects.push(this)}pause(){this.flags|=64}resume(){this.flags&64&&(this.flags&=-65,Cu.has(this)&&(Cu.delete(this),this.trigger()))}notify(){this.flags&2&&!(this.flags&32)||this.flags&8||(this.flags|=8,this.nextEffect=Wt,Wt=this)}run(){if(!(this.flags&1))return this.fn();this.flags|=2,$a(this),Ta(this);const t=W,n=$e;W=this,$e=!0;try{return this.fn()}finally{process.env.NODE_ENV!=="production"&&W!==this&&we("Active effect was not restored correctly - this is likely a Vue internal bug."),La(this),W=t,$e=n,this.flags&=-3}}stop(){if(this.flags&1){for(let t=this.deps;t;t=t.nextDep)Du(t);this.deps=this.depsTail=void 0,$a(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.flags&64?Cu.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){Nu(this)&&this.run()}get dirty(){return Nu(this)}}let Oa=0,Wt;function Au(){Oa++}function Fu(){if(--Oa>0)return;let e;for(;Wt;){let t=Wt;for(Wt=void 0;t;){const n=t.nextEffect;if(t.nextEffect=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(u){e||(e=u)}t=n}}if(e)throw e}function Ta(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function La(e){let t,n=e.depsTail,u=n;for(;u;){const a=u.prevDep;u.version===-1?(u===n&&(n=a),Du(u),ev(u)):t=u,u.dep.activeLink=u.prevActiveLink,u.prevActiveLink=void 0,u=a}e.deps=t,e.depsTail=n}function Nu(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&ya(t.dep.computed)||t.dep.version!==t.version)return!0;return!!e._dirty}function ya(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===jt))return;e.globalVersion=jt;const t=e.dep;if(e.flags|=2,t.version>0&&!e.isSSR&&!Nu(e)){e.flags&=-3;return}const n=W,u=$e;W=e,$e=!0;try{Ta(e);const a=e.fn(e._value);(t.version===0||Qe(a,e._value))&&(e._value=a,t.version++)}catch(a){throw t.version++,a}finally{W=n,$e=u,La(e),e.flags&=-3}}function Du(e){const{dep:t,prevSub:n,nextSub:u}=e;if(n&&(n.nextSub=u,e.prevSub=void 0),u&&(u.prevSub=n,e.nextSub=void 0),t.subs===e&&(t.subs=n),!t.subs&&t.computed){t.computed.flags&=-5;for(let a=t.computed.deps;a;a=a.nextDep)Du(a)}}function ev(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let $e=!0;const Ra=[];function Ht(){Ra.push($e),$e=!1}function Gt(){const e=Ra.pop();$e=e===void 0?!0:e}function $a(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=W;W=void 0;try{t()}finally{W=n}}}let jt=0;class tv{constructor(t,n){this.sub=t,this.dep=n,this.version=n.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class Su{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,process.env.NODE_ENV!=="production"&&(this.subsHead=void 0)}track(t){if(!W||!$e||W===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==W)n=this.activeLink=new tv(W,this),W.deps?(n.prevDep=W.depsTail,W.depsTail.nextDep=n,W.depsTail=n):W.deps=W.depsTail=n,W.flags&4&&Ma(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const u=n.nextDep;u.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=u),n.prevDep=W.depsTail,n.nextDep=void 0,W.depsTail.nextDep=n,W.depsTail=n,W.deps===n&&(W.deps=u)}return process.env.NODE_ENV!=="production"&&W.onTrack&&W.onTrack(Fe({effect:W},t)),n}trigger(t){this.version++,jt++,this.notify(t)}notify(t){Au();try{if(process.env.NODE_ENV!=="production")for(let n=this.subsHead;n;n=n.nextSub)process.env.NODE_ENV!=="production"&&n.sub.onTrigger&&!(n.sub.flags&8)&&n.sub.onTrigger(Fe({effect:n.sub},t));for(let n=this.subs;n;n=n.prevSub)n.sub.notify()}finally{Fu()}}}function Ma(e){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let u=t.deps;u;u=u.nextDep)Ma(u)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),process.env.NODE_ENV!=="production"&&e.dep.subsHead===void 0&&(e.dep.subsHead=e),e.dep.subs=e}const Iu=new WeakMap,it=Symbol(process.env.NODE_ENV!=="production"?"Object iterate":""),Bu=Symbol(process.env.NODE_ENV!=="production"?"Map keys iterate":""),Kt=Symbol(process.env.NODE_ENV!=="production"?"Array iterate":"");function ce(e,t,n){if($e&&W){let u=Iu.get(e);u||Iu.set(e,u=new Map);let a=u.get(n);a||u.set(n,a=new Su),process.env.NODE_ENV!=="production"?a.track({target:e,type:t,key:n}):a.track()}}function Ze(e,t,n,u,a,r){const s=Iu.get(e);if(!s){jt++;return}const o=i=>{i&&(process.env.NODE_ENV!=="production"?i.trigger({target:e,type:t,key:n,newValue:u,oldValue:a,oldTarget:r}):i.trigger())};if(Au(),t==="clear")s.forEach(o);else{const i=z(e),E=i&&vu(n);if(i&&n==="length"){const _=Number(u);s.forEach((c,d)=>{(d==="length"||d===Kt||!xt(d)&&d>=_)&&o(c)})}else switch(n!==void 0&&o(s.get(n)),E&&o(s.get(Kt)),t){case"add":i?E&&o(s.get("length")):(o(s.get(it)),bt(e)&&o(s.get(Bu)));break;case"delete":i||(o(s.get(it)),bt(e)&&o(s.get(Bu)));break;case"set":bt(e)&&o(s.get(it));break}}Fu()}function Ct(e){const t=V(e);return t===e?t:(ce(t,"iterate",Kt),ge(e)?t:t.map(he))}function Ou(e){return ce(e=V(e),"iterate",Kt),e}const nv={__proto__:null,[Symbol.iterator](){return Tu(this,Symbol.iterator,he)},concat(...e){return Ct(this).concat(...e.map(t=>z(t)?Ct(t):t))},entries(){return Tu(this,"entries",e=>(e[1]=he(e[1]),e))},every(e,t){return He(this,"every",e,t,void 0,arguments)},filter(e,t){return He(this,"filter",e,t,n=>n.map(he),arguments)},find(e,t){return He(this,"find",e,t,he,arguments)},findIndex(e,t){return He(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return He(this,"findLast",e,t,he,arguments)},findLastIndex(e,t){return He(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return He(this,"forEach",e,t,void 0,arguments)},includes(...e){return Lu(this,"includes",e)},indexOf(...e){return Lu(this,"indexOf",e)},join(e){return Ct(this).join(e)},lastIndexOf(...e){return Lu(this,"lastIndexOf",e)},map(e,t){return He(this,"map",e,t,void 0,arguments)},pop(){return Xt(this,"pop")},push(...e){return Xt(this,"push",e)},reduce(e,...t){return wa(this,"reduce",e,t)},reduceRight(e,...t){return wa(this,"reduceRight",e,t)},shift(){return Xt(this,"shift")},some(e,t){return He(this,"some",e,t,void 0,arguments)},splice(...e){return Xt(this,"splice",e)},toReversed(){return Ct(this).toReversed()},toSorted(e){return Ct(this).toSorted(e)},toSpliced(...e){return Ct(this).toSpliced(...e)},unshift(...e){return Xt(this,"unshift",e)},values(){return Tu(this,"values",he)}};function Tu(e,t,n){const u=Ou(e),a=u[t]();return u!==e&&!ge(e)&&(a._next=a.next,a.next=()=>{const r=a._next();return r.value&&(r.value=n(r.value)),r}),a}const uv=Array.prototype;function He(e,t,n,u,a,r){const s=Ou(e),o=s!==e&&!ge(e),i=s[t];if(i!==uv[t]){const c=i.apply(e,r);return o?he(c):c}let E=n;s!==e&&(o?E=function(c,d){return n.call(this,he(c),d,e)}:n.length>2&&(E=function(c,d){return n.call(this,c,d,e)}));const _=i.call(s,E,u);return o&&a?a(_):_}function wa(e,t,n,u){const a=Ou(e);let r=n;return a!==e&&(ge(e)?n.length>3&&(r=function(s,o,i){return n.call(this,s,o,i,e)}):r=function(s,o,i){return n.call(this,s,he(o),i,e)}),a[t](r,...u)}function Lu(e,t,n){const u=V(e);ce(u,"iterate",Kt);const a=u[t](...n);return(a===-1||a===!1)&&Pn(n[0])?(n[0]=V(n[0]),u[t](...n)):a}function Xt(e,t,n=[]){Ht(),Au();const u=V(e)[t].apply(e,n);return Fu(),Gt(),u}const rv=Mh("__proto__,__v_isRef,__isVue"),Pa=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(xt));function av(e){xt(e)||(e=String(e));const t=V(this);return ce(t,"has",e),t.hasOwnProperty(e)}class Va{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?Xa:Ka:r?vv:ja).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(u)?t:void 0;const s=z(t);if(!a){let i;if(s&&(i=nv[n]))return i;if(n==="hasOwnProperty")return av}const o=Reflect.get(t,n,de(t)?t:u);return(xt(n)?Pa.has(n):rv(n))||(a||ce(t,"get",n),r)?o:de(o)?s&&vu(n)?o:o.value:_e(o)?a?qa(o):Ja(o):o}}class sv extends Va{constructor(t=!1){super(!1,t)}set(t,n,u,a){let r=t[n];if(!this._isShallow){const i=Ge(r);if(!ge(u)&&!Ge(u)&&(r=V(r),u=V(u)),!z(t)&&de(r)&&!de(u))return i?!1:(r.value=u,!0)}const s=z(t)&&vu(n)?Number(n)<t.length:ue(t,n),o=Reflect.set(t,n,u,de(t)?t:a);return t===V(a)&&(s?Qe(u,r)&&Ze(t,"set",n,u,r):Ze(t,"add",n,u)),o}deleteProperty(t,n){const u=ue(t,n),a=t[n],r=Reflect.deleteProperty(t,n);return r&&u&&Ze(t,"delete",n,void 0,a),r}has(t,n){const u=Reflect.has(t,n);return(!xt(n)||!Pa.has(n))&&ce(t,"has",n),u}ownKeys(t){return ce(t,"iterate",z(t)?"length":it),Reflect.ownKeys(t)}}class ka extends Va{constructor(t=!1){super(!0,t)}set(t,n){return process.env.NODE_ENV!=="production"&&we(`Set operation on key "${String(n)}" failed: target is readonly.`,t),!0}deleteProperty(t,n){return process.env.NODE_ENV!=="production"&&we(`Delete operation on key "${String(n)}" failed: target is readonly.`,t),!0}}const ov=new sv,iv=new ka,lv=new ka(!0),yu=e=>e,Tn=e=>Reflect.getPrototypeOf(e);function Ln(e,t,n=!1,u=!1){e=e.__v_raw;const a=V(e),r=V(t);n||(Qe(t,r)&&ce(a,"get",t),ce(a,"get",r));const{has:s}=Tn(a),o=u?yu:n?Mu:he;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 yn(e,t=!1){const n=this.__v_raw,u=V(n),a=V(e);return t||(Qe(e,a)&&ce(u,"has",e),ce(u,"has",a)),e===a?n.has(e):n.has(e)||n.has(a)}function Rn(e,t=!1){return e=e.__v_raw,!t&&ce(V(e),"iterate",it),Reflect.get(e,"size",e)}function Ua(e,t=!1){!t&&!ge(e)&&!Ge(e)&&(e=V(e));const n=V(this);return Tn(n).has.call(n,e)||(n.add(e),Ze(n,"add",e,e)),this}function xa(e,t,n=!1){!n&&!ge(t)&&!Ge(t)&&(t=V(t));const u=V(this),{has:a,get:r}=Tn(u);let s=a.call(u,e);s?process.env.NODE_ENV!=="production"&&Ga(u,a,e):(e=V(e),s=a.call(u,e));const o=r.call(u,e);return u.set(e,t),s?Qe(t,o)&&Ze(u,"set",e,t,o):Ze(u,"add",e,t),this}function Wa(e){const t=V(this),{has:n,get:u}=Tn(t);let a=n.call(t,e);a?process.env.NODE_ENV!=="production"&&Ga(t,n,e):(e=V(e),a=n.call(t,e));const r=u?u.call(t,e):void 0,s=t.delete(e);return a&&Ze(t,"delete",e,void 0,r),s}function Ha(){const e=V(this),t=e.size!==0,n=process.env.NODE_ENV!=="production"?bt(e)?new Map(e):new Set(e):void 0,u=e.clear();return t&&Ze(e,"clear",void 0,void 0,n),u}function $n(e,t){return function(u,a){const r=this,s=r.__v_raw,o=V(s),i=t?yu:e?Mu:he;return!e&&ce(o,"iterate",it),s.forEach((E,_)=>u.call(a,i(E),i(_),r))}}function Mn(e,t,n){return function(...u){const a=this.__v_raw,r=V(a),s=bt(r),o=e==="entries"||e===Symbol.iterator&&s,i=e==="keys"&&s,E=a[e](...u),_=n?yu:t?Mu:he;return!t&&ce(r,"iterate",i?Bu:it),{next(){const{value:c,done:d}=E.next();return d?{value:c,done:d}:{value:o?[_(c[0]),_(c[1])]:_(c),done:d}},[Symbol.iterator](){return this}}}}function Ye(e){return function(...t){if(process.env.NODE_ENV!=="production"){const n=t[0]?`on key "${t[0]}" `:"";we(`${Sa(e)} operation ${n}failed: target is readonly.`,V(this))}return e==="delete"?!1:e==="clear"?void 0:this}}function cv(){const e={get(r){return Ln(this,r)},get size(){return Rn(this)},has:yn,add:Ua,set:xa,delete:Wa,clear:Ha,forEach:$n(!1,!1)},t={get(r){return Ln(this,r,!1,!0)},get size(){return Rn(this)},has:yn,add(r){return Ua.call(this,r,!0)},set(r,s){return xa.call(this,r,s,!0)},delete:Wa,clear:Ha,forEach:$n(!1,!0)},n={get(r){return Ln(this,r,!0)},get size(){return Rn(this,!0)},has(r){return yn.call(this,r,!0)},add:Ye("add"),set:Ye("set"),delete:Ye("delete"),clear:Ye("clear"),forEach:$n(!0,!1)},u={get(r){return Ln(this,r,!0,!0)},get size(){return Rn(this,!0)},has(r){return yn.call(this,r,!0)},add:Ye("add"),set:Ye("set"),delete:Ye("delete"),clear:Ye("clear"),forEach:$n(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(r=>{e[r]=Mn(r,!1,!1),n[r]=Mn(r,!0,!1),t[r]=Mn(r,!1,!0),u[r]=Mn(r,!0,!0)}),[e,n,t,u]}const[fv,dv,Ev,pv]=cv();function Ru(e,t){const n=t?e?pv:Ev:e?dv:fv;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 mv={get:Ru(!1,!1)},_v={get:Ru(!0,!1)},hv={get:Ru(!0,!0)};function Ga(e,t,n){const u=V(n);if(u!==n&&t.call(e,u)){const a=Na(e);we(`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 ja=new WeakMap,vv=new WeakMap,Ka=new WeakMap,Xa=new WeakMap;function gv(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function bv(e){return e.__v_skip||!Object.isExtensible(e)?0:gv(Na(e))}function Ja(e){return Ge(e)?e:$u(e,!1,ov,mv,ja)}function qa(e){return $u(e,!0,iv,_v,Ka)}function wn(e){return $u(e,!0,lv,hv,Xa)}function $u(e,t,n,u,a){if(!_e(e))return process.env.NODE_ENV!=="production"&&we(`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=bv(e);if(s===0)return e;const o=new Proxy(e,s===2?u:n);return a.set(e,o),o}function At(e){return Ge(e)?At(e.__v_raw):!!(e&&e.__v_isReactive)}function Ge(e){return!!(e&&e.__v_isReadonly)}function ge(e){return!!(e&&e.__v_isShallow)}function Pn(e){return e?!!e.__v_raw:!1}function V(e){const t=e&&e.__v_raw;return t?V(t):e}function Cv(e){return!ue(e,"__v_skip")&&Object.isExtensible(e)&&jh(e,"__v_skip",!0),e}const he=e=>_e(e)?Ja(e):e,Mu=e=>_e(e)?qa(e):e;function de(e){return e?e.__v_isRef===!0:!1}function Ft(e){return Qa(e,!1)}function za(e){return Qa(e,!0)}function Qa(e,t){return de(e)?e:new Av(e,t)}class Av{constructor(t,n){this.dep=new Su,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:V(t),this._value=n?t:he(t),this.__v_isShallow=n}get value(){return process.env.NODE_ENV!=="production"?this.dep.track({target:this,type:"get",key:"value"}):this.dep.track(),this._value}set value(t){const n=this._rawValue,u=this.__v_isShallow||ge(t)||Ge(t);t=u?t:V(t),Qe(t,n)&&(this._rawValue=t,this._value=u?t:he(t),process.env.NODE_ENV!=="production"?this.dep.trigger({target:this,type:"set",key:"value",newValue:t,oldValue:n}):this.dep.trigger())}}function Fv(e){return de(e)?e.value:e}const Nv={get:(e,t,n)=>t==="__v_raw"?e:Fv(Reflect.get(e,t,n)),set:(e,t,n,u)=>{const a=e[t];return de(a)&&!de(n)?(a.value=n,!0):Reflect.set(e,t,n,u)}};function Dv(e){return At(e)?e:new Proxy(e,Nv)}class Sv{constructor(t,n,u){this.fn=t,this.setter=n,this._value=void 0,this.dep=new Su(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=jt-1,this.effect=this,this.__v_isReadonly=!n,this.isSSR=u}notify(){this.flags|=16,W!==this?this.dep.notify():process.env.NODE_ENV}get value(){const t=process.env.NODE_ENV!=="production"?this.dep.track({target:this,type:"get",key:"value"}):this.dep.track();return ya(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter?this.setter(t):process.env.NODE_ENV!=="production"&&we("Write operation failed: computed value is readonly")}}function Iv(e,t,n=!1){let u,a;re(e)?u=e:(u=e.get,a=e.set);const r=new Sv(u,a,n);return process.env.NODE_ENV!=="production"&&t&&!n&&(r.onTrack=t.onTrack,r.onTrigger=t.onTrigger),r}const Vn={},kn=new WeakMap;let lt;function Bv(e,t=!1,n=lt){if(n){let u=kn.get(n);u||kn.set(n,u=[]),u.push(e)}else process.env.NODE_ENV!=="production"&&!t&&we("onWatcherCleanup() was called when there was no active watcher to associate with.")}function Ov(e,t,n=Ie){const{immediate:u,deep:a,once:r,scheduler:s,augmentJob:o,call:i}=n,E=h=>{(n.onWarn||we)("Invalid watch source: ",h,"A watch source can only be a getter/effect function, a ref, a reactive object, or an array of these types.")},_=h=>a?h:ge(h)||a===!1||a===0?et(h,1):et(h);let c,d,F,S,L=!1,y=!1;if(de(e)?(d=()=>e.value,L=ge(e)):At(e)?(d=()=>_(e),L=!0):z(e)?(y=!0,L=e.some(h=>At(h)||ge(h)),d=()=>e.map(h=>{if(de(h))return h.value;if(At(h))return _(h);if(re(h))return i?i(h,2):h();process.env.NODE_ENV!=="production"&&E(h)})):re(e)?t?d=i?()=>i(e,2):e:d=()=>{if(F){Ht();try{F()}finally{Gt()}}const h=lt;lt=c;try{return i?i(e,3,[S]):e(S)}finally{lt=h}}:(d=ot,process.env.NODE_ENV!=="production"&&E(e)),t&&a){const h=d,g=a===!0?1/0:a;d=()=>et(h(),g)}const b=Zh(),C=()=>{c.stop(),b&&Vh(b.effects,c)};if(r)if(t){const h=t;t=(...g)=>{h(...g),C()}}else{const h=d;d=()=>{h(),C()}}let p=y?new Array(e.length).fill(Vn):Vn;const m=h=>{if(!(!(c.flags&1)||!c.dirty&&!h))if(t){const g=c.run();if(a||L||(y?g.some((N,T)=>Qe(N,p[T])):Qe(g,p))){F&&F();const N=lt;lt=c;try{const T=[g,p===Vn?void 0:y&&p[0]===Vn?[]:p,S];i?i(t,3,T):t(...T),p=g}finally{lt=N}}}else c.run()};return o&&o(m),c=new Yh(d),c.scheduler=s?()=>s(m,!1):m,S=h=>Bv(h,!1,c),F=c.onStop=()=>{const h=kn.get(c);if(h){if(i)i(h,4);else for(const g of h)g();kn.delete(c)}},process.env.NODE_ENV!=="production"&&(c.onTrack=n.onTrack,c.onTrigger=n.onTrigger),t?u?m(!0):p=c.run():s?s(m.bind(null,!0),!0):c.run(),C.pause=c.pause.bind(c),C.resume=c.resume.bind(c),C.stop=C,C}function et(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--,de(e))et(e.value,t,n);else if(z(e))for(let u=0;u<e.length;u++)et(e[u],t,n);else if(Uh(e)||bt(e))e.forEach(u=>{et(u,t,n)});else if(Hh(e)){for(const u in e)et(e[u],t,n);for(const u of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,u)&&et(e[u],t,n)}return e}/**
|
|
28
|
-
* @vue/runtime-core v3.5.5
|
|
29
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
30
|
-
* @license MIT
|
|
31
|
-
**/const ct=[];function Tv(e){ct.push(e)}function Lv(){ct.pop()}let wu=!1;function Z(e,...t){if(wu)return;wu=!0,Ht();const n=ct.length?ct[ct.length-1].component:null,u=n&&n.appContext.config.warnHandler,a=yv();if(u)Un(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 <${bs(n,r.type)}>`).join(`
|
|
32
|
-
`),a]);else{const r=[`[Vue warn]: ${e}`,...t];a.length&&r.push(`
|
|
33
|
-
`,...Rv(a)),console.warn(...r)}Gt(),wu=!1}function yv(){let e=ct[ct.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 Rv(e){const t=[];return e.forEach((n,u)=>{t.push(...u===0?[]:[`
|
|
34
|
-
`],...$v(n))}),t}function $v({vnode:e,recurseCount:t}){const n=t>0?`... (${t} recursive calls)`:"",u=e.component?e.component.parent==null:!1,a=` at <${bs(e.component,e.type,u)}`,r=">"+n;return e.props?[a,...Mv(e.props),r]:[a+r]}function Mv(e){const t=[],n=Object.keys(e);return n.slice(0,3).forEach(u=>{t.push(...Za(u,e[u]))}),n.length>3&&t.push(" ..."),t}function Za(e,t,n){return Re(t)?(t=JSON.stringify(t),n?t:[`${e}=${t}`]):typeof t=="number"||typeof t=="boolean"||t==null?n?t:[`${e}=${t}`]:de(t)?(t=Za(e,V(t.value),!0),n?t:[`${e}=Ref<`,t,">"]):re(t)?[`${e}=fn${t.name?`<${t.name}>`:""}`]:(t=V(t),n?t:[`${e}=`,t])}const Pu={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",[16]:"app unmount cleanup function"};function Un(e,t,n,u){try{return u?e(...u):e()}catch(a){ku(a,t,n)}}function Vu(e,t,n,u){if(re(e)){const a=Un(e,t,n,u);return a&&xh(a)&&a.catch(r=>{ku(r,t,n)}),a}if(z(e)){const a=[];for(let r=0;r<e.length;r++)a.push(Vu(e[r],t,n,u));return a}else process.env.NODE_ENV!=="production"&&Z(`Invalid value type passed to callWithAsyncErrorHandling(): ${typeof e}`)}function ku(e,t,n,u=!0){const a=t?t.vnode:null,{errorHandler:r,throwUnhandledErrorInProduction:s}=t&&t.appContext.config||Ie;if(t){let o=t.parent;const i=t.proxy,E=process.env.NODE_ENV!=="production"?Pu[n]:`https://vuejs.org/error-reference/#runtime-${n}`;for(;o;){const _=o.ec;if(_){for(let c=0;c<_.length;c++)if(_[c](e,i,E)===!1)return}o=o.parent}if(r){Ht(),Un(r,null,10,[e,i,E]),Gt();return}}wv(e,n,a,u,s)}function wv(e,t,n,u=!0,a=!1){if(process.env.NODE_ENV!=="production"){const r=Pu[t];if(n&&Tv(n),Z(`Unhandled error${r?` during execution of ${r}`:""}`),n&&Lv(),u)throw e;console.error(e)}else{if(a)throw e;console.error(e)}}let xn=!1,Uu=!1;const Be=[];let je=0;const Nt=[];let tt=null,Dt=0;const Ya=Promise.resolve();let xu=null;const Pv=100;function Vv(e){const t=xu||Ya;return e?t.then(this?e.bind(this):e):t}function kv(e){let t=xn?je+1:0,n=Be.length;for(;t<n;){const u=t+n>>>1,a=Be[u],r=Jt(a);r<e||r===e&&a.flags&2?t=u+1:n=u}return t}function Wu(e){if(!(e.flags&1)){const t=Jt(e),n=Be[Be.length-1];!n||!(e.flags&2)&&t>=Jt(n)?Be.push(e):Be.splice(kv(t),0,e),e.flags|=1,es()}}function es(){!xn&&!Uu&&(Uu=!0,xu=Ya.then(ns))}function ts(e){z(e)?Nt.push(...e):tt&&e.id===-1?tt.splice(Dt+1,0,e):e.flags&1||(Nt.push(e),e.flags|=1),es()}function Uv(e){if(Nt.length){const t=[...new Set(Nt)].sort((n,u)=>Jt(n)-Jt(u));if(Nt.length=0,tt){tt.push(...t);return}for(tt=t,process.env.NODE_ENV!=="production"&&(e=e||new Map),Dt=0;Dt<tt.length;Dt++){const n=tt[Dt];process.env.NODE_ENV!=="production"&&us(e,n)||(n.flags&4&&(n.flags&=-2),n.flags&8||n(),n.flags&=-2)}tt=null,Dt=0}}const Jt=e=>e.id==null?e.flags&2?-1:1/0:e.id;function ns(e){Uu=!1,xn=!0,process.env.NODE_ENV!=="production"&&(e=e||new Map);const t=process.env.NODE_ENV!=="production"?n=>us(e,n):ot;try{for(je=0;je<Be.length;je++){const n=Be[je];if(n&&!(n.flags&8)){if(process.env.NODE_ENV!=="production"&&t(n))continue;n.flags&4&&(n.flags&=-2),Un(n,n.i,n.i?15:14),n.flags&=-2}}}finally{for(;je<Be.length;je++){const n=Be[je];n&&(n.flags&=-2)}je=0,Be.length=0,Uv(e),xn=!1,xu=null,(Be.length||Nt.length)&&ns(e)}}function us(e,t){const n=e.get(t)||0;if(n>Pv){const u=t.i,a=u&&gs(u.type);return ku(`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}return e.set(t,n+1),!1}const Hu=new Map;process.env.NODE_ENV!=="production"&&(Ba().__VUE_HMR_RUNTIME__={createRecord:Gu(xv),rerender:Gu(Wv),reload:Gu(Hv)});const Wn=new Map;function xv(e,t){return Wn.has(e)?!1:(Wn.set(e,{initialDef:Hn(t),instances:new Set}),!0)}function Hn(e){return Cs(e)?e.__vccOpts:e}function Wv(e,t){const n=Wn.get(e);!n||(n.initialDef.render=t,[...n.instances].forEach(u=>{t&&(u.render=t,Hn(u.type).render=t),u.renderCache=[],u.update()}))}function Hv(e,t){const n=Wn.get(e);if(!n)return;t=Hn(t),rs(n.initialDef,t);const u=[...n.instances];for(let a=0;a<u.length;a++){const r=u[a],s=Hn(r.type);let o=Hu.get(s);o||(s!==n.initialDef&&rs(s,t),Hu.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?Wu(()=>{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."),r.root.ce&&r!==r.root&&r.root.ce._removeChildStyle(s)}ts(()=>{Hu.clear()})}function rs(e,t){Fe(e,t);for(const n in e)n!=="__file"&&!(n in t)&&delete e[n]}function Gu(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 St,Gn=[];function as(e,t){var n,u;St=e,St?(St.enabled=!0,Gn.forEach(({event:a,args:r})=>St.emit(a,...r)),Gn=[]):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=>{as(r,t)}),setTimeout(()=>{St||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,Gn=[])},3e3)):Gn=[]}let Pe=null,Gv=null;const jv=e=>e.__isTeleport;function ss(e,t){e.shapeFlag&6&&e.component?(e.transition=t,ss(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 ju(e,t){return re(e)?(()=>Fe({name:e.name},t,{setup:e}))():e}function Kv(e,t,n=ft,u=!1){if(n){const a=n[e]||(n[e]=[]),r=t.__weh||(t.__weh=(...s)=>{Ht();const o=vs(n),i=Vu(t,n,e,s);return o(),Gt(),i});return u?a.unshift(r):a.push(r),r}else if(process.env.NODE_ENV!=="production"){const a=Gh(Pu[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 Ku=e=>(t,n=ft)=>{(!qn||e==="sp")&&Kv(e,(...u)=>t(...u),n)},Xv=Ku("bm"),Jv=Ku("m"),qv=Ku("um"),zv=Symbol.for("v-ndc"),Xu=e=>e?gg(e)?bg(e):Xu(e.parent):null,qt=Fe(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>process.env.NODE_ENV!=="production"?wn(e.props):e.props,$attrs:e=>process.env.NODE_ENV!=="production"?wn(e.attrs):e.attrs,$slots:e=>process.env.NODE_ENV!=="production"?wn(e.slots):e.slots,$refs:e=>process.env.NODE_ENV!=="production"?wn(e.refs):e.refs,$parent:e=>Xu(e.parent),$root:e=>Xu(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>__VUE_OPTIONS_API__?eg(e):e.type,$forceUpdate:e=>e.f||(e.f=()=>{Wu(e.update)}),$nextTick:e=>e.n||(e.n=Vv.bind(e.proxy)),$watch:e=>__VUE_OPTIONS_API__?lg.bind(e):ot}),Qv=e=>e==="_"||e==="$",Ju=(e,t)=>e!==Ie&&!e.__isScriptSetup&&ue(e,t),Zv={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 E;if(t[0]!=="$"){const F=s[t];if(F!==void 0)switch(F){case 1:return u[t];case 2:return a[t];case 4:return n[t];case 3:return r[t]}else{if(Ju(u,t))return s[t]=1,u[t];if(a!==Ie&&ue(a,t))return s[t]=2,a[t];if((E=e.propsOptions[0])&&ue(E,t))return s[t]=3,r[t];if(n!==Ie&&ue(n,t))return s[t]=4,n[t];(!__VUE_OPTIONS_API__||Yv)&&(s[t]=0)}}const _=qt[t];let c,d;if(_)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),_(e);if((c=o.__cssModules)&&(c=c[t]))return c;if(n!==Ie&&ue(n,t))return s[t]=4,n[t];if(d=i.config.globalProperties,ue(d,t))return d[t];process.env.NODE_ENV!=="production"&&Pe&&(!Re(t)||t.indexOf("__v")!==0)&&(a!==Ie&&Qv(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===Pe&&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 Ju(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!==Ie&&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!==Ie&&ue(e,s)||Ju(t,s)||(o=r[0])&&ue(o,s)||ue(u,s)||ue(qt,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"&&(Zv.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 os(e){return z(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Yv=!0;function eg(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(E=>jn(i,E,s,!0)),jn(i,t,s)),_e(t)&&r.set(t,i),i}function jn(e,t,n,u=!1){const{mixins:a,extends:r}=t;r&&jn(e,r,n,!0),a&&a.forEach(s=>jn(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=tg[s]||n&&n[s];e[s]=o?o(e[s],t[s]):t[s]}return e}const tg={data:is,props:cs,emits:cs,methods:zt,computed:zt,beforeCreate:ve,created:ve,beforeMount:ve,mounted:ve,beforeUpdate:ve,updated:ve,beforeDestroy:ve,beforeUnmount:ve,destroyed:ve,unmounted:ve,activated:ve,deactivated:ve,errorCaptured:ve,serverPrefetch:ve,components:zt,directives:zt,watch:ug,provide:is,inject:ng};function is(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 ng(e,t){return zt(ls(e),ls(t))}function ls(e){if(z(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function ve(e,t){return e?[...new Set([].concat(e,t))]:t}function zt(e,t){return e?Fe(Object.create(null),e,t):t}function cs(e,t){return e?z(e)&&z(t)?[...new Set([...e,...t])]:Fe(Object.create(null),os(e),os(t!=null?t:{})):t}function ug(e,t){if(!e)return t;if(!t)return e;const n=Fe(Object.create(null),e);for(const u in t)n[u]=ve(e[u],t[u]);return n}function rg(){return{app:null,config:{isNativeTag:wh,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 qu=null;function fs(e,t,n=!1){const u=ft||Pe;if(u||qu){const a=qu?qu._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 ag={},ds=e=>Object.getPrototypeOf(e)===ag,sg=dg,og=Symbol.for("v-scx"),ig=()=>{{const e=fs(og);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}};function zu(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."),Es(e,t,n)}function Es(e,t,n=Ie){const{immediate:u,deep:a,flush:r,once:s}=n;process.env.NODE_ENV!=="production"&&!t&&(u!==void 0&&Z('watch() "immediate" option is only respected when using the watch(source, callback, options?) signature.'),a!==void 0&&Z('watch() "deep" option is only respected when using the watch(source, callback, options?) signature.'),s!==void 0&&Z('watch() "once" option is only respected when using the watch(source, callback, options?) signature.'));const o=Fe({},n);process.env.NODE_ENV!=="production"&&(o.onWarn=Z);let i;if(qn)if(r==="sync"){const d=ig();i=d.__watcherHandles||(d.__watcherHandles=[])}else if(!t||u)o.once=!0;else return{stop:ot,resume:ot,pause:ot};const E=ft;o.call=(d,F,S)=>Vu(d,E,F,S);let _=!1;r==="post"?o.scheduler=d=>{sg(d,E&&E.suspense)}:r!=="sync"&&(_=!0,o.scheduler=(d,F)=>{F?d():Wu(d)}),o.augmentJob=d=>{t&&(d.flags|=4),_&&(d.flags|=2,E&&(d.id=E.uid,d.i=E))};const c=Ov(e,t,o);return i&&i.push(c),c}function lg(e,t,n){const u=this.proxy,a=Re(e)?e.includes(".")?cg(u,e):()=>u[e]:e.bind(u,u);let r;re(t)?r=t:(r=t.handler,n=t);const s=vs(this),o=Es(a,r.bind(u),n);return s(),o}function cg(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 j5(){}const fg=e=>e.__isSuspense;function dg(e,t){t&&t.pendingBranch?z(e)?t.effects.push(...e):t.effects.push(e):ts(e)}const Kn=Symbol.for("v-fgt"),ps=Symbol.for("v-txt"),Eg=Symbol.for("v-cmt");let It=null;function Qu(e){return e?e.__v_isVNode===!0:!1}const pg=(...e)=>_s(...e),ms=({key:e})=>e!=null?e:null,Xn=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?Re(e)||de(e)||re(e)?{i:Pe,r:e,k:t,f:!!n}:e:null);function mg(e,t=null,n=null,u=0,a=null,r=e===Kn?0:1,s=!1,o=!1){const i={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&ms(t),ref:t&&Xn(t),scopeId:Gv,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:Pe};return o?(Zu(i,n),r&128&&e.normalize(i)):n&&(i.shapeFlag|=Re(n)?8:16),process.env.NODE_ENV!=="production"&&i.key!==i.key&&Z("VNode created with invalid key (NaN). VNode type:",i.type),!s&&It&&(i.patchFlag>0||r&6)&&i.patchFlag!==32&&It.push(i),i}const Bt=process.env.NODE_ENV!=="production"?pg:_s;function _s(e,t=null,n=null,u=0,a=null,r=!1){if((!e||e===zv)&&(process.env.NODE_ENV!=="production"&&!e&&Z(`Invalid vnode type when creating vnode: ${e}.`),e=Eg),Qu(e)){const o=Jn(e,t,!0);return n&&Zu(o,n),!r&&It&&(o.shapeFlag&6?It[It.indexOf(e)]=o:It.push(o)),o.patchFlag=-2,o}if(Cs(e)&&(e=e.__vccOpts),t){t=_g(t);let{class:o,style:i}=t;o&&!Re(o)&&(t.class=bu(o)),_e(i)&&(Pn(i)&&!z(i)&&(i=Fe({},i)),t.style=gu(i))}const s=Re(e)?1:fg(e)?128:jv(e)?64:_e(e)?4:re(e)?2:0;return process.env.NODE_ENV!=="production"&&s&4&&Pn(e)&&(e=V(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`.",`
|
|
35
|
-
Component that was made reactive: `,e)),mg(e,t,n,u,a,s,r,!0)}function _g(e){return e?Pn(e)||ds(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,E=t?vg(a||{},t):a,_={__v_isVNode:!0,__v_skip:!0,type:e.type,props:E,key:E&&ms(E),ref:t&&t.ref?n&&r?z(r)?r.concat(Xn(t)):[r,Xn(t)]:Xn(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:process.env.NODE_ENV!=="production"&&s===-1&&z(o)?o.map(hs):o,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Kn?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&&ss(_,i.clone(_)),_}function hs(e){const t=Jn(e);return z(e.children)&&(t.children=e.children.map(hs)),t}function hg(e=" ",t=0){return Bt(ps,null,e,t)}function Zu(e,t){let n=0;const{shapeFlag:u}=e;if(t==null)t=null;else if(z(t))n=16;else if(typeof t=="object")if(u&65){const a=t.default;a&&(a._c&&(a._d=!1),Zu(e,a()),a._c&&(a._d=!0));return}else{n=32;const a=t._;!a&&!ds(t)?t._ctx=Pe:a===3&&Pe&&(Pe.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else re(t)?(t={default:t,_ctx:Pe},n=32):(t=String(t),u&64?(n=16,t=[hg(t)]):n=8);e.children=t,e.shapeFlag|=n}function vg(...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=bu([t.class,u.class]));else if(a==="style")t.style=gu([t.style,u.style]);else if(Ph(a)){const r=t[a],s=u[a];s&&r!==s&&!(z(r)&&r.includes(s))&&(t[a]=r?[].concat(r,s):s)}else a!==""&&(t[a]=u[a])}return t}rg();let ft=null;const Ot=()=>ft||Pe;let Yu;{const e=Ba(),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)}};Yu=t("__VUE_INSTANCE_SETTERS__",n=>ft=n),t("__VUE_SSR_SETTERS__",n=>qn=n)}const vs=e=>{const t=ft;return Yu(e),e.scope.on(),()=>{e.scope.off(),Yu(t)}};function gg(e){return e.vnode.shapeFlag&4}let qn=!1;process.env.NODE_ENV;function bg(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Dv(Cv(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in qt)return qt[n](e)},has(t,n){return n in t||n in qt}})):e.proxy}const Cg=/(?:^|[-_])(\w)/g,Ag=e=>e.replace(Cg,t=>t.toUpperCase()).replace(/[-_]/g,"");function gs(e,t=!0){return re(e)?e.displayName||e.name:e.name||t&&e.__name}function bs(e,t,n=!1){let u=gs(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?Ag(u):n?"App":"Anonymous"}function Cs(e){return re(e)&&"__vccOpts"in e}const Ve=(e,t)=>{const n=Iv(e,t,qn);if(process.env.NODE_ENV!=="production"){const u=Ot();u&&u.appContext.config.warnRecursiveComputed&&(n._warnRecursive=!0)}return n};function As(e,t,n){const u=arguments.length;return u===2?_e(t)&&!z(t)?Qu(t)?Bt(e,null,[t]):Bt(e,t):Bt(e,null,t):(u>3?n=Array.prototype.slice.call(arguments,2):u===3&&Qu(n)&&(n=[n]),Bt(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(c){return _e(c)?c.__isVue?["div",e,"VueInstance"]:de(c)?["div",{},["span",e,_(c)],"<",o("_value"in c?c._value:c),">"]:At(c)?["div",{},["span",e,ge(c)?"ShallowReactive":"Reactive"],"<",o(c),`>${Ge(c)?" (readonly)":""}`]:Ge(c)?["div",{},["span",e,ge(c)?"ShallowReadonly":"Readonly"],"<",o(c),">"]:null:null},hasBody(c){return c&&c.__isVue},body(c){if(c&&c.__isVue)return["div",{},...r(c.$)]}};function r(c){const d=[];c.type.props&&c.props&&d.push(s("props",V(c.props))),c.setupState!==Ie&&d.push(s("setup",c.setupState)),c.data!==Ie&&d.push(s("data",V(c.data)));const F=i(c,"computed");F&&d.push(s("computed",F));const S=i(c,"inject");return S&&d.push(s("injected",S)),d.push(["div",{},["span",{style:u.style+";opacity:0.66"},"$ (internal): "],["object",{object:c}]]),d}function s(c,d){return d=Fe({},d),Object.keys(d).length?["div",{style:"line-height:1.25em;margin-bottom:0.6em"},["div",{style:"color:#476582"},c],["div",{style:"padding-left:1.25em"},...Object.keys(d).map(F=>["div",{},["span",u,F+": "],o(d[F],!1)])]]:["span",{}]}function o(c,d=!0){return typeof c=="number"?["span",t,c]:typeof c=="string"?["span",n,JSON.stringify(c)]:typeof c=="boolean"?["span",u,c]:_e(c)?["object",{object:d?V(c):c}]:["span",n,String(c)]}function i(c,d){const F=c.type;if(re(F))return;const S={};for(const L in c.ctx)E(F,L,d)&&(S[L]=c.ctx[L]);return S}function E(c,d,F){const S=c[F];if(z(S)&&S.includes(d)||_e(S)&&d in S||c.extends&&E(c.extends,d,F)||c.mixins&&c.mixins.some(L=>E(L,d,F)))return!0}function _(c){return ge(c)?"ShallowRef":c.effect?"ComputedRef":"Ref"}window.devtoolsFormatters?window.devtoolsFormatters.push(a):window.devtoolsFormatters=[a]}process.env.NODE_ENV,process.env.NODE_ENV,process.env.NODE_ENV;/**
|
|
36
|
-
* vue v3.5.5
|
|
37
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
38
|
-
* @license MIT
|
|
39
|
-
**/function Ng(){Fg()}process.env.NODE_ENV!=="production"&&Ng();function Dg(){return Fs().__VUE_DEVTOOLS_GLOBAL_HOOK__}function Fs(){return typeof navigator!="undefined"&&typeof window!="undefined"?window:typeof globalThis!="undefined"?globalThis:{}}const Sg=typeof Proxy=="function",Ig="devtools-plugin:setup",Bg="plugin:settings:set";let Tt,er;function Og(){var e;return Tt!==void 0||(typeof window!="undefined"&&window.performance?(Tt=!0,er=window.performance):typeof globalThis!="undefined"&&((e=globalThis.perf_hooks)===null||e===void 0?void 0:e.performance)?(Tt=!0,er=globalThis.perf_hooks.performance):Tt=!1),Tt}function Tg(){return Og()?er.now():Date.now()}class Lg{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 Tg()}},n&&n.on(Bg,(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(E=>{this.targetQueue.push({method:o,args:i,resolve:E})})})}setRealTarget(t){return Mt(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 yg(e,t){const n=e,u=Fs(),a=Dg(),r=Sg&&n.enableEarlyProxy;if(a&&(u.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__||!r))a.emit(Ig,e,t);else{const s=r?new Lg(n,a):null;(u.__VUE_DEVTOOLS_PLUGINS__=u.__VUE_DEVTOOLS_PLUGINS__||[]).push({pluginDescriptor:n,setupFn:t,proxy:s}),s&&t(s.proxiedTarget)}}/*!
|
|
40
|
-
* vue-i18n v9.14.0
|
|
41
|
-
* (c) 2024 kazuya kawaguchi
|
|
42
|
-
* Released under the MIT License.
|
|
43
|
-
*/const Rg="9.14.0";function $g(){typeof __VUE_I18N_FULL_INSTALL__!="boolean"&&(xe().__VUE_I18N_FULL_INSTALL__=!0),typeof __VUE_I18N_LEGACY_API__!="boolean"&&(xe().__VUE_I18N_LEGACY_API__=!0),typeof __INTLIFY_JIT_COMPILATION__!="boolean"&&(xe().__INTLIFY_JIT_COMPILATION__=!1),typeof __INTLIFY_DROP_MESSAGE_COMPILER__!="boolean"&&(xe().__INTLIFY_DROP_MESSAGE_COMPILER__=!1),typeof __INTLIFY_PROD_DEVTOOLS__!="boolean"&&(xe().__INTLIFY_PROD_DEVTOOLS__=!1)}const Ns=me.__EXTEND_POINT__,Ke=Cn(Ns),Y={FALLBACK_TO_ROOT:Ns,NOT_SUPPORTED_PRESERVE:Ke(),NOT_SUPPORTED_FORMATTER:Ke(),NOT_SUPPORTED_PRESERVE_DIRECTIVE:Ke(),NOT_SUPPORTED_GET_CHOICE_INDEX:Ke(),COMPONENT_NAME_LEGACY_COMPATIBLE:Ke(),NOT_FOUND_PARENT_SCOPE:Ke(),IGNORE_OBJ_FLATTEN:Ke(),NOTICE_DROP_ALLOW_COMPOSITION:Ke(),NOTICE_DROP_TRANSLATE_EXIST_COMPATIBLE_FLAG:Ke()},Mg={[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 be(e,...t){return Vt(Mg[e],...t)}const Ds=le.__EXTEND_POINT__,Ce=Cn(Ds),k={UNEXPECTED_RETURN_TYPE:Ds,INVALID_ARGUMENT:Ce(),MUST_BE_CALL_SETUP_TOP:Ce(),NOT_INSTALLED:Ce(),NOT_AVAILABLE_IN_LEGACY_MODE:Ce(),REQUIRED_VALUE:Ce(),INVALID_VALUE:Ce(),CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN:Ce(),NOT_INSTALLED_WITH_PROVIDE:Ce(),UNEXPECTED_ERROR:Ce(),NOT_COMPATIBLE_LEGACY_VUE_I18N:Ce(),BRIDGE_SUPPORT_VUE_2_ONLY:Ce(),MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION:Ce(),NOT_AVAILABLE_COMPOSITION_IN_LEGACY:Ce(),__EXTEND_POINT__:Ce()};function ie(e,...t){return mt(e,null,process.env.NODE_ENV!=="production"?{messages:wg,args:t}:void 0)}const wg={[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"},tr=Le("__translateVNode"),nr=Le("__datetimeParts"),ur=Le("__numberParts"),dt=Le("__enableEmitter"),Qt=Le("__disableEmitter"),Ss=Le("__setPluralRules");Le("__intlifyMeta");const Is=Le("__injectWithOption"),rr=Le("__dispose");function Zt(e){if(!x(e))return e;for(const t in e)if(!!bn(e,t))if(!t.includes("."))x(e[t])&&Zt(e[t]);else{const n=t.split("."),u=n.length-1;let a=e,r=!1;for(let s=0;s<u;s++){if(n[s]in a||(a[n[s]]={}),!x(a[n[s]])){process.env.NODE_ENV!=="production"&&oe(be(Y.IGNORE_OBJ_FLATTEN,{key:n[s]})),r=!0;break}a=a[n[s]]}r||(a[n[u]]=e[t],delete e[t]),x(a[n[u]])&&Zt(a[n[u]])}return e}function zn(e,t){const{messages:n,__i18n:u,messageResolver:a,flatJson:r}=t,s=w(n)?n:J(u)?{}:{[e]:{}};if(J(u)&&u.forEach(o=>{if("locale"in o&&"resource"in o){const{locale:i,resource:E}=o;i?(s[i]=s[i]||{},Fn(E,s[i])):Fn(E,s)}else O(o)&&Fn(JSON.parse(o),s)}),a==null&&r)for(const o in s)bn(s,o)&&Zt(s[o]);return s}function Bs(e){return e.type}function Os(e,t,n){let u=x(t.messages)?t.messages:{};"__i18nGlobal"in n&&(u=zn(e.locale.value,{messages:u,__i18n:n.__i18nGlobal}));const a=Object.keys(u);a.length&&a.forEach(r=>{e.mergeLocaleMessage(r,u[r])});{if(x(t.datetimeFormats)){const r=Object.keys(t.datetimeFormats);r.length&&r.forEach(s=>{e.mergeDateTimeFormat(s,t.datetimeFormats[s])})}if(x(t.numberFormats)){const r=Object.keys(t.numberFormats);r.length&&r.forEach(s=>{e.mergeNumberFormat(s,t.numberFormats[s])})}}}function Ts(e){return Bt(ps,null,e,0)}const Ls="__INTLIFY_META__",ys=()=>[],Pg=()=>!1;let Rs=0;function $s(e){return(t,n,u,a)=>e(n,u,Ot()||void 0,a)}const Vg=()=>{const e=Ot();let t=null;return e&&(t=Bs(e)[Ls])?{[Ls]:t}:null};function ar(e={},t){const{__root:n,__injectWithOption:u}=e,a=n===void 0,r=e.flatJson,s=Te?Ft:za,o=!!e.translateExistCompatible;process.env.NODE_ENV!=="production"&&o&&Vr(be(Y.NOTICE_DROP_TRANSLATE_EXIST_COMPATIBLE_FLAG));let i=P(e.inheritLocale)?e.inheritLocale:!0;const E=s(n&&i?n.locale.value:O(e.locale)?e.locale:vt),_=s(n&&i?n.fallbackLocale.value:O(e.fallbackLocale)||J(e.fallbackLocale)||w(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:E.value),c=s(zn(E.value,e)),d=s(w(e.datetimeFormats)?e.datetimeFormats:{[E.value]:{}}),F=s(w(e.numberFormats)?e.numberFormats:{[E.value]:{}});let S=n?n.missingWarn:P(e.missingWarn)||Xe(e.missingWarn)?e.missingWarn:!0,L=n?n.fallbackWarn:P(e.fallbackWarn)||Xe(e.fallbackWarn)?e.fallbackWarn:!0,y=n?n.fallbackRoot:P(e.fallbackRoot)?e.fallbackRoot:!0,b=!!e.fallbackFormat,C=K(e.missing)?e.missing:null,p=K(e.missing)?$s(e.missing):null,m=K(e.postTranslation)?e.postTranslation:null,h=n?n.warnHtmlMessage:P(e.warnHtmlMessage)?e.warnHtmlMessage:!0,g=!!e.escapeParameter;const N=n?n.modifiers:w(e.modifiers)?e.modifiers:{};let T=e.pluralRules||n&&n.pluralRules,I;I=(()=>{a&&ua(null);const v={version:Rg,locale:E.value,fallbackLocale:_.value,messages:c.value,modifiers:N,pluralRules:T,missing:p===null?void 0:p,missingWarn:S,fallbackWarn:L,fallbackFormat:b,unresolving:!0,postTranslation:m===null?void 0:m,warnHtmlMessage:h,escapeParameter:g,messageResolver:e.messageResolver,messageCompiler:e.messageCompiler,__meta:{framework:"vue"}};v.datetimeFormats=d.value,v.numberFormats=F.value,v.__datetimeFormatters=w(I)?I.__datetimeFormatters:void 0,v.__numberFormatters=w(I)?I.__numberFormatters:void 0,process.env.NODE_ENV!=="production"&&(v.__v_emitter=w(I)?I.__v_emitter:void 0);const D=Nh(v);return a&&ua(D),D})(),Ut(I,E.value,_.value);function De(){return[E.value,_.value,c.value,d.value,F.value]}const U=Ve({get:()=>E.value,set:v=>{E.value=v,I.locale=E.value}}),Ee=Ve({get:()=>_.value,set:v=>{_.value=v,I.fallbackLocale=_.value,Ut(I,E.value,v)}}),en=Ve(()=>c.value),tn=Ve(()=>d.value),ke=Ve(()=>F.value);function nn(){return K(m)?m:null}function un(v){m=v,I.postTranslation=v}function rn(){return C}function an(v){v!==null&&(p=$s(v)),C=v,I.missing=p}function sn(v,D){return v!=="translate"||!D.resolvedMessage}const Oe=(v,D,G,te,nt,Yn)=>{De();let $t;try{(process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__)&&ta(Vg()),a||(I.fallbackContext=n?Fh():void 0),$t=v(I)}finally{(process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__)&&ta(null),a||(I.fallbackContext=void 0)}if(G!=="translate exists"&&ae($t)&&$t===Sn||G==="translate exists"&&!$t){const[pt,k5]=D();if(process.env.NODE_ENV!=="production"&&n&&O(pt)&&sn(G,k5)&&(y&&(Bn(L,pt)||aa(S,pt))&&oe(be(Y.FALLBACK_TO_ROOT,{key:pt,type:G})),process.env.NODE_ENV!=="production")){const{__v_emitter:Ys}=I;Ys&&y&&Ys.emit("fallback",{type:G,key:pt,to:"global",groupId:`${G}:${pt}`})}return n&&y?te(n):nt(pt)}else{if(Yn($t))return $t;throw ie(k.UNEXPECTED_RETURN_TYPE)}};function Lt(...v){return Oe(D=>Reflect.apply(Ea,null,[D,...v]),()=>mu(...v),"translate",D=>Reflect.apply(D.t,D,[...v]),D=>D,D=>O(D))}function yt(...v){const[D,G,te]=v;if(te&&!x(te))throw ie(k.INVALID_ARGUMENT);return Lt(D,G,se({resolvedMessage:!0},te||{}))}function on(...v){return Oe(D=>Reflect.apply(va,null,[D,...v]),()=>_u(...v),"datetime format",D=>Reflect.apply(D.d,D,[...v]),()=>In,D=>O(D))}function ln(...v){return Oe(D=>Reflect.apply(Ca,null,[D,...v]),()=>hu(...v),"number format",D=>Reflect.apply(D.n,D,[...v]),()=>In,D=>O(D))}function cn(v){return v.map(D=>O(D)||ae(D)||P(D)?Ts(String(D)):D)}const fn={normalize:cn,interpolate:v=>v,type:"vnode"};function Rt(...v){return Oe(D=>{let G;const te=D;try{te.processor=fn,G=Reflect.apply(Ea,null,[te,...v])}finally{te.processor=null}return G},()=>mu(...v),"translate",D=>D[tr](...v),D=>[Ts(D)],D=>J(D))}function dn(...v){return Oe(D=>Reflect.apply(Ca,null,[D,...v]),()=>hu(...v),"number format",D=>D[ur](...v),ys,D=>O(D)||J(D))}function En(...v){return Oe(D=>Reflect.apply(va,null,[D,...v]),()=>_u(...v),"datetime format",D=>D[nr](...v),ys,D=>O(D)||J(D))}function pn(v){T=v,I.pluralRules=T}function B(v,D){return Oe(()=>{if(!v)return!1;const G=O(D)?D:E.value,te=Et(G),nt=I.messageResolver(te,v);return o?nt!=null:ze(nt)||Se(nt)||O(nt)},()=>[v],"translate exists",G=>Reflect.apply(G.te,G,[v,D]),Pg,G=>P(G))}function H(v){let D=null;const G=Xr(I,_.value,E.value);for(let te=0;te<G.length;te++){const nt=c.value[G[te]]||{},Yn=I.messageResolver(nt,v);if(Yn!=null){D=Yn;break}}return D}function mn(v){const D=H(v);return D!=null?D:n?n.tm(v)||{}:{}}function Et(v){return c.value[v]||{}}function _n(v,D){if(r){const G={[v]:D};for(const te in G)bn(G,te)&&Zt(G[te]);D=G[v]}c.value[v]=D,I.messages=c.value}function vr(v,D){c.value[v]=c.value[v]||{};const G={[v]:D};if(r)for(const te in G)bn(G,te)&&Zt(G[te]);D=G[v],Fn(D,c.value[v]),I.messages=c.value}function l(v){return d.value[v]||{}}function f(v,D){d.value[v]=D,I.datetimeFormats=d.value,ba(I,v,D)}function A(v,D){d.value[v]=se(d.value[v]||{},D),I.datetimeFormats=d.value,ba(I,v,D)}function $(v){return F.value[v]||{}}function ee(v,D){F.value[v]=D,I.numberFormats=F.value,Fa(I,v,D)}function X(v,D){F.value[v]=se(F.value[v]||{},D),I.numberFormats=F.value,Fa(I,v,D)}Rs++,n&&Te&&(zu(n.locale,v=>{i&&(E.value=v,I.locale=v,Ut(I,E.value,_.value))}),zu(n.fallbackLocale,v=>{i&&(_.value=v,I.fallbackLocale=v,Ut(I,E.value,_.value))}));const j={id:Rs,locale:U,fallbackLocale:Ee,get inheritLocale(){return i},set inheritLocale(v){i=v,v&&n&&(E.value=n.locale.value,_.value=n.fallbackLocale.value,Ut(I,E.value,_.value))},get availableLocales(){return Object.keys(c.value).sort()},messages:en,get modifiers(){return N},get pluralRules(){return T||{}},get isGlobal(){return a},get missingWarn(){return S},set missingWarn(v){S=v,I.missingWarn=S},get fallbackWarn(){return L},set fallbackWarn(v){L=v,I.fallbackWarn=L},get fallbackRoot(){return y},set fallbackRoot(v){y=v},get fallbackFormat(){return b},set fallbackFormat(v){b=v,I.fallbackFormat=b},get warnHtmlMessage(){return h},set warnHtmlMessage(v){h=v,I.warnHtmlMessage=v},get escapeParameter(){return g},set escapeParameter(v){g=v,I.escapeParameter=v},t:Lt,getLocaleMessage:Et,setLocaleMessage:_n,mergeLocaleMessage:vr,getPostTranslationHandler:nn,setPostTranslationHandler:un,getMissingHandler:rn,setMissingHandler:an,[Ss]:pn};return j.datetimeFormats=tn,j.numberFormats=ke,j.rt=yt,j.te=B,j.tm=mn,j.d=on,j.n=ln,j.getDateTimeFormat=l,j.setDateTimeFormat=f,j.mergeDateTimeFormat=A,j.getNumberFormat=$,j.setNumberFormat=ee,j.mergeNumberFormat=X,j[Is]=u,j[tr]=Rt,j[nr]=En,j[ur]=dn,process.env.NODE_ENV!=="production"&&(j[dt]=v=>{I.__v_emitter=v},j[Qt]=()=>{I.__v_emitter=void 0}),j}function kg(e){const t=O(e.locale)?e.locale:vt,n=O(e.fallbackLocale)||J(e.fallbackLocale)||w(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:t,u=K(e.missing)?e.missing:void 0,a=P(e.silentTranslationWarn)||Xe(e.silentTranslationWarn)?!e.silentTranslationWarn:!0,r=P(e.silentFallbackWarn)||Xe(e.silentFallbackWarn)?!e.silentFallbackWarn:!0,s=P(e.fallbackRoot)?e.fallbackRoot:!0,o=!!e.formatFallbackMessages,i=w(e.modifiers)?e.modifiers:{},E=e.pluralizationRules,_=K(e.postTranslation)?e.postTranslation:void 0,c=O(e.warnHtmlInMessage)?e.warnHtmlInMessage!=="off":!0,d=!!e.escapeParameterHtml,F=P(e.sync)?e.sync:!0;process.env.NODE_ENV!=="production"&&e.formatter&&oe(be(Y.NOT_SUPPORTED_FORMATTER)),process.env.NODE_ENV!=="production"&&e.preserveDirectiveContent&&oe(be(Y.NOT_SUPPORTED_PRESERVE_DIRECTIVE));let S=e.messages;if(w(e.sharedMessages)){const g=e.sharedMessages;S=Object.keys(g).reduce((T,I)=>{const q=T[I]||(T[I]={});return se(q,g[I]),T},S||{})}const{__i18n:L,__root:y,__injectWithOption:b}=e,C=e.datetimeFormats,p=e.numberFormats,m=e.flatJson,h=e.translateExistCompatible;return{locale:t,fallbackLocale:n,messages:S,flatJson:m,datetimeFormats:C,numberFormats:p,missing:u,missingWarn:a,fallbackWarn:r,fallbackRoot:s,fallbackFormat:o,modifiers:i,pluralRules:E,postTranslation:_,warnHtmlMessage:c,escapeParameter:d,messageResolver:e.messageResolver,inheritLocale:F,translateExistCompatible:h,__i18n:L,__root:y,__injectWithOption:b}}function sr(e={},t){{const n=ar(kg(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(be(Y.NOT_SUPPORTED_FORMATTER)),{interpolate(){return[]}}},set formatter(r){process.env.NODE_ENV!=="production"&&oe(be(Y.NOT_SUPPORTED_FORMATTER))},get missing(){return n.getMissingHandler()},set missing(r){n.setMissingHandler(r)},get silentTranslationWarn(){return P(n.missingWarn)?!n.missingWarn:n.missingWarn},set silentTranslationWarn(r){n.missingWarn=P(r)?!r:r},get silentFallbackWarn(){return P(n.fallbackWarn)?!n.fallbackWarn:n.fallbackWarn},set silentFallbackWarn(r){n.fallbackWarn=P(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(be(Y.NOT_SUPPORTED_PRESERVE_DIRECTIVE)),!0},set preserveDirectiveContent(r){process.env.NODE_ENV!=="production"&&oe(be(Y.NOT_SUPPORTED_PRESERVE_DIRECTIVE))},get pluralizationRules(){return n.pluralRules||{}},__composer:n,t(...r){const[s,o,i]=r,E={};let _=null,c=null;if(!O(s))throw ie(k.INVALID_ARGUMENT);const d=s;return O(o)?E.locale=o:J(o)?_=o:w(o)&&(c=o),J(i)?_=i:w(i)&&(c=i),Reflect.apply(n.t,n,[d,_||c||{},E])},rt(...r){return Reflect.apply(n.rt,n,[...r])},tc(...r){const[s,o,i]=r,E={plural:1};let _=null,c=null;if(!O(s))throw ie(k.INVALID_ARGUMENT);const d=s;return O(o)?E.locale=o:ae(o)?E.plural=o:J(o)?_=o:w(o)&&(c=o),O(i)?E.locale=i:J(i)?_=i:w(i)&&(c=i),Reflect.apply(n.t,n,[d,_||c||{},E])},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(be(Y.NOT_SUPPORTED_GET_CHOICE_INDEX)),-1}};return a.__extender=u,process.env.NODE_ENV!=="production"&&(a.__enableEmitter=r=>{const s=n;s[dt]&&s[dt](r)},a.__disableEmitter=()=>{const r=n;r[Qt]&&r[Qt]()}),a}}const or={tag:{type:[String,Object]},locale:{type:String},scope:{type:String,validator:e=>e==="parent"||e==="global",default:"parent"},i18n:{type:Object}};function Ug({slots:e},t){return t.length===1&&t[0]==="default"?(e.default?e.default():[]).reduce((u,a)=>[...u,...a.type===Kn?a.children:[a]],[]):t.reduce((n,u)=>{const a=e[u];return a&&(n[u]=a()),n},{})}function Ms(e){return Kn}const ir=ju({name:"i18n-t",props:se({keypath:{type:String,required:!0},plural:{type:[Number,String],validator:e=>ae(e)||!isNaN(e)}},or),setup(e,t){const{slots:n,attrs:u}=t,a=e.i18n||dr({useScope:e.scope,__useComponent:!0});return()=>{const r=Object.keys(n).filter(c=>c!=="_"),s={};e.locale&&(s.locale=e.locale),e.plural!==void 0&&(s.plural=O(e.plural)?+e.plural:e.plural);const o=Ug(t,r),i=a[tr](e.keypath,o,s),E=se({},u),_=O(e.tag)||x(e.tag)?e.tag:Ms();return As(_,E,i)}}});function xg(e){return J(e)&&!O(e[0])}function ws(e,t,n,u){const{slots:a,attrs:r}=t;return()=>{const s={part:!0};let o={};e.locale&&(s.locale=e.locale),O(e.format)?s.key=e.format:x(e.format)&&(O(e.format.key)&&(s.key=e.format.key),o=Object.keys(e.format).reduce((d,F)=>n.includes(F)?se({},d,{[F]:e.format[F]}):d,{}));const i=u(e.value,s,o);let E=[s.key];J(i)?E=i.map((d,F)=>{const S=a[d.type],L=S?S({[d.type]:d.value,index:F,parts:i}):[d.value];return xg(L)&&(L[0].key=`${d.type}-${F}`),L}):O(i)&&(E=[i]);const _=se({},r),c=O(e.tag)||x(e.tag)?e.tag:Ms();return As(c,_,E)}}const Ps=ju({name:"i18n-n",props:se({value:{type:Number,required:!0},format:{type:[String,Object]}},or),setup(e,t){const n=e.i18n||dr({useScope:e.scope,__useComponent:!0});return ws(e,t,Aa,(...u)=>n[ur](...u))}}),Vs=ju({name:"i18n-d",props:se({value:{type:[Number,Date],required:!0},format:{type:[String,Object]}},or),setup(e,t){const n=e.i18n||dr({useScope:e.scope,__useComponent:!0});return ws(e,t,ga,(...u)=>n[nr](...u))}});function Wg(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 Hg(e){const t=s=>{const{instance:o,modifiers:i,value:E}=s;if(!o||!o.$)throw ie(k.UNEXPECTED_ERROR);const _=Wg(e,o.$);process.env.NODE_ENV!=="production"&&i.preserve&&oe(be(Y.NOT_SUPPORTED_PRESERVE));const c=ks(E);return[Reflect.apply(_.t,_,[...Us(c)]),_]};return{created:(s,o)=>{const[i,E]=t(o);Te&&e.global===E&&(s.__i18nWatcher=zu(E.locale,()=>{o.instance&&o.instance.$forceUpdate()})),s.__composer=E,s.textContent=i},unmounted:s=>{Te&&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,E=ks(o);s.textContent=Reflect.apply(i.t,i,[...Us(E)])}},getSSRProps:s=>{const[o]=t(s);return{textContent:o}}}}function ks(e){if(O(e))return{path:e};if(w(e)){if(!("path"in e))throw ie(k.REQUIRED_VALUE,"path");return e}else throw ie(k.INVALID_VALUE)}function Us(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 Gg(e,t,...n){const u=w(n[0])?n[0]:{},a=!!u.useI18nComponentName,r=P(u.globalInstall)?u.globalInstall:!0;process.env.NODE_ENV!=="production"&&r&&a&&oe(be(Y.COMPONENT_NAME_LEGACY_COMPATIBLE,{name:ir.name})),r&&([a?"i18n":ir.name,"I18nT"].forEach(s=>e.component(s,ir)),[Ps.name,"I18nN"].forEach(s=>e.component(s,Ps)),[Vs.name,"I18nD"].forEach(s=>e.component(s,Vs))),e.directive("t",Hg(t))}const lr={["vue-devtools-plugin-vue-i18n"]:"Vue I18n devtools",["vue-i18n-resource-inspector"]:"I18n Resources",["vue-i18n-timeline"]:"Vue I18n"},jg={["vue-i18n-resource-inspector"]:"Search for scopes ..."},Kg={["vue-i18n-timeline"]:16764185},xs="vue-i18n: composer properties";let cr;function Xg(e,t){return Mt(this,null,function*(){return new Promise((n,u)=>{try{yg({id:"vue-devtools-plugin-vue-i18n",label:lr["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:[xs],app:e},a=>{cr=a,a.on.visitComponentTree(({componentInstance:s,treeNode:o})=>{Jg(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&&Hs(o,s.vnode.el.__VUE_I18N__):Hs(o,s.vnode.el.__VUE_I18N__))}),a.addInspector({id:"vue-i18n-resource-inspector",label:lr["vue-i18n-resource-inspector"],icon:"language",treeFilterPlaceholder:jg["vue-i18n-resource-inspector"]}),a.on.getInspectorTree(s=>{s.app===e&&s.inspectorId==="vue-i18n-resource-inspector"&&Yg(s,t)});const r=new Map;a.on.getInspectorState(s=>Mt(this,null,function*(){if(s.app===e&&s.inspectorId==="vue-i18n-resource-inspector")if(a.unhighlightElement(),t5(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=e5(s.nodeId,t);o&&a.highlightElement(o)}})),a.on.editInspectorState(s=>{s.app===e&&s.inspectorId==="vue-i18n-resource-inspector"&&u5(s,t)}),a.addTimelineLayer({id:"vue-i18n-timeline",label:lr["vue-i18n-timeline"],color:Kg["vue-i18n-timeline"]}),n(!0)})}catch(a){console.error(a),u(!1)}})})}function Ws(e){return e.type.name||e.type.displayName||e.type.__file||"Anonymous"}function Jg(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 (${Ws(e)} Scope)`,textColor:0,backgroundColor:16764185};t.tags.push(a)}}function Hs(e,t){const n=xs;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:fr(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 fr(e){const t={};return Object.keys(e).forEach(n=>{const u=e[n];K(u)&&"source"in u?t[n]=Zg(u):ze(u)&&u.loc&&u.loc.source?t[n]=u.loc.source:x(u)?t[n]=fr(u):t[n]=u}),t}const qg={"<":"<",">":">",'"':""","&":"&"};function zg(e){return e.replace(/[<>"&]/g,Qg)}function Qg(e){return qg[e]||e}function Zg(e){const t=e.source?`("${zg(e.source)}")`:"(?)";return{_custom:{type:"function",display:`<span>\u0192</span> ${t}`}}}function Yg(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:`${Ws(u)} Scope`})}}function e5(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 Gs(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 t5(e,t){const n=Gs(e.nodeId,t);return n&&(e.state=n5(n)),null}function n5(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:fr(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",E=[{type:i,key:"numberFormats",editable:!1,value:e.numberFormats.value}];t[i]=E}return t}function Yt(e,t){if(cr){let n;t&&"groupId"in t&&(n=t.groupId,delete t.groupId),cr.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 u5(e,t){const n=Gs(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)||J(e.state.value)||x(e.state.value))?n.fallbackLocale.value=e.state.value:u==="inheritLocale"&&P(e.state.value)&&(n.inheritLocale=e.state.value)}}function r5(e,t,n){return{beforeCreate(){const u=Ot();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=js(e,r);else{r.__injectWithOption=!0,r.__extender=n.__vueI18nExtend,this.$i18n=sr(r);const s=this.$i18n;s.__extender&&(s.__disposer=s.__extender(this.$i18n))}}else if(a.__i18n)if(this===this.$root)this.$i18n=js(e,a);else{this.$i18n=sr({__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&&Os(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=iu();u.__enableEmitter&&u.__enableEmitter(a),a.on("*",Yt)}},unmounted(){const u=Ot();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("*",Yt),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 js(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[Ss](t.pluralizationRules||e.pluralizationRules);const n=zn(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 a5=Le("global-vue-i18n");function s5(e={},t){const n=__VUE_I18N_LEGACY_API__&&P(e.legacy)?e.legacy:__VUE_I18N_LEGACY_API__,u=P(e.globalInjection)?e.globalInjection:!0,a=__VUE_I18N_LEGACY_API__&&n?!!e.allowComposition:!0,r=new Map,[s,o]=o5(e,n),i=Le(process.env.NODE_ENV!=="production"?"vue-i18n":"");process.env.NODE_ENV!=="production"&&n&&a&&oe(be(Y.NOTICE_DROP_ALLOW_COMPOSITION));function E(d){return r.get(d)||null}function _(d,F){r.set(d,F)}function c(d){r.delete(d)}{let F;const d={get mode(){return __VUE_I18N_LEGACY_API__&&n?"legacy":"composition"},get allowComposition(){return a},install(S,...L){return Mt(this,null,function*(){if((process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__)&&(S.__VUE_I18N__=d),S.__VUE_I18N_SYMBOL__=i,S.provide(S.__VUE_I18N_SYMBOL__,d),w(L[0])){const C=L[0];d.__composerExtend=C.__composerExtend,d.__vueI18nExtend=C.__vueI18nExtend}let y=null;!n&&u&&(y=_5(S,d.global)),__VUE_I18N_FULL_INSTALL__&&Gg(S,d,...L),__VUE_I18N_LEGACY_API__&&n&&S.mixin(r5(o,o.__composer,d));const b=S.unmount;if(S.unmount=()=>{y&&y(),d.dispose(),b()},process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__){if(!(yield Xg(S,d)))throw ie(k.CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN);const p=iu();if(n){const m=o;m.__enableEmitter&&m.__enableEmitter(p)}else{const m=o;m[dt]&&m[dt](p)}p.on("*",Yt)}})},get global(){return o},dispose(){s.stop()},__instances:r,__getInstance:E,__setInstance:_,__deleteInstance:c};return d}}function dr(e={}){const t=Ot();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=i5(t),u=c5(n),a=Bs(t),r=l5(e,a);if(__VUE_I18N_LEGACY_API__&&n.mode==="legacy"&&!e.__useComponent){if(!n.allowComposition)throw ie(k.NOT_AVAILABLE_IN_LEGACY_MODE);return p5(t,r,u,e)}if(r==="global")return Os(u,e,a),u;if(r==="parent"){let i=f5(n,t,e.__useComponent);return i==null&&(process.env.NODE_ENV!=="production"&&oe(be(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=ar(i),s.__composerExtend&&(o[rr]=s.__composerExtend(o)),E5(s,t,o),s.__setInstance(t,o)}return o}function o5(e,t,n){const u=Qh();{const a=__VUE_I18N_LEGACY_API__&&t?u.run(()=>sr(e)):u.run(()=>ar(e));if(a==null)throw ie(k.UNEXPECTED_ERROR);return[u,a]}}function i5(e){{const t=fs(e.isCE?a5:e.appContext.app.__VUE_I18N_SYMBOL__);if(!t)throw ie(e.isCE?k.NOT_INSTALLED_WITH_PROVIDE:k.UNEXPECTED_ERROR);return t}}function l5(e,t){return gn(e)?"__i18n"in t?"local":"global":e.useScope?e.useScope:"local"}function c5(e){return e.mode==="composition"?e.global:e.global.__composer}function f5(e,t,n=!1){let u=null;const a=t.root;let r=d5(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[Is]&&(u=null))}if(u!=null||a===r)break;r=r.parent}return u}function d5(e,t=!1){return e==null?null:t&&e.vnode.ctx||e.parent}function E5(e,t,n){let u=null;Jv(()=>{if((process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__)&&!0&&t.vnode.el){t.vnode.el.__VUE_I18N__=n,u=iu();const a=n;a[dt]&&a[dt](u),u.on("*",Yt)}},t),qv(()=>{const a=n;(process.env.NODE_ENV!=="production"||__VUE_PROD_DEVTOOLS__)&&!0&&t.vnode.el&&t.vnode.el.__VUE_I18N__&&(u&&u.off("*",Yt),a[Qt]&&a[Qt](),delete t.vnode.el.__VUE_I18N__),e.__deleteInstance(t);const r=a[rr];r&&(r(),delete a[rr])},t)}function p5(e,t,n,u={}){const a=t==="local",r=za(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=P(u.inheritLocale)?u.inheritLocale:!O(u.locale),o=Ft(!a||s?n.locale.value:O(u.locale)?u.locale:vt),i=Ft(!a||s?n.fallbackLocale.value:O(u.fallbackLocale)||J(u.fallbackLocale)||w(u.fallbackLocale)||u.fallbackLocale===!1?u.fallbackLocale:o.value),E=Ft(zn(o.value,u)),_=Ft(w(u.datetimeFormats)?u.datetimeFormats:{[o.value]:{}}),c=Ft(w(u.numberFormats)?u.numberFormats:{[o.value]:{}}),d=a?n.missingWarn:P(u.missingWarn)||Xe(u.missingWarn)?u.missingWarn:!0,F=a?n.fallbackWarn:P(u.fallbackWarn)||Xe(u.fallbackWarn)?u.fallbackWarn:!0,S=a?n.fallbackRoot:P(u.fallbackRoot)?u.fallbackRoot:!0,L=!!u.fallbackFormat,y=K(u.missing)?u.missing:null,b=K(u.postTranslation)?u.postTranslation:null,C=a?n.warnHtmlMessage:P(u.warnHtmlMessage)?u.warnHtmlMessage:!0,p=!!u.escapeParameter,m=a?n.modifiers:w(u.modifiers)?u.modifiers:{},h=u.pluralRules||a&&n.pluralRules;function g(){return[o.value,i.value,E.value,_.value,c.value]}const N=Ve({get:()=>r.value?r.value.locale.value:o.value,set:B=>{r.value&&(r.value.locale.value=B),o.value=B}}),T=Ve({get:()=>r.value?r.value.fallbackLocale.value:i.value,set:B=>{r.value&&(r.value.fallbackLocale.value=B),i.value=B}}),I=Ve(()=>r.value?r.value.messages.value:E.value),q=Ve(()=>_.value),De=Ve(()=>c.value);function U(){return r.value?r.value.getPostTranslationHandler():b}function Ee(B){r.value&&r.value.setPostTranslationHandler(B)}function en(){return r.value?r.value.getMissingHandler():y}function tn(B){r.value&&r.value.setMissingHandler(B)}function ke(B){return g(),B()}function nn(...B){return r.value?ke(()=>Reflect.apply(r.value.t,null,[...B])):ke(()=>"")}function un(...B){return r.value?Reflect.apply(r.value.rt,null,[...B]):""}function rn(...B){return r.value?ke(()=>Reflect.apply(r.value.d,null,[...B])):ke(()=>"")}function an(...B){return r.value?ke(()=>Reflect.apply(r.value.n,null,[...B])):ke(()=>"")}function sn(B){return r.value?r.value.tm(B):{}}function Oe(B,H){return r.value?r.value.te(B,H):!1}function Lt(B){return r.value?r.value.getLocaleMessage(B):{}}function yt(B,H){r.value&&(r.value.setLocaleMessage(B,H),E.value[B]=H)}function on(B,H){r.value&&r.value.mergeLocaleMessage(B,H)}function ln(B){return r.value?r.value.getDateTimeFormat(B):{}}function cn(B,H){r.value&&(r.value.setDateTimeFormat(B,H),_.value[B]=H)}function Zn(B,H){r.value&&r.value.mergeDateTimeFormat(B,H)}function fn(B){return r.value?r.value.getNumberFormat(B):{}}function Rt(B,H){r.value&&(r.value.setNumberFormat(B,H),c.value[B]=H)}function dn(B,H){r.value&&r.value.mergeNumberFormat(B,H)}const En={get id(){return r.value?r.value.id:-1},locale:N,fallbackLocale:T,messages:I,datetimeFormats:q,numberFormats:De,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(E.value)},get modifiers(){return r.value?r.value.modifiers:m},get pluralRules(){return r.value?r.value.pluralRules:h},get isGlobal(){return r.value?r.value.isGlobal:!1},get missingWarn(){return r.value?r.value.missingWarn:d},set missingWarn(B){r.value&&(r.value.missingWarn=B)},get fallbackWarn(){return r.value?r.value.fallbackWarn:F},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:p},set escapeParameter(B){r.value&&(r.value.escapeParameter=B)},t:nn,getPostTranslationHandler:U,setPostTranslationHandler:Ee,getMissingHandler:en,setMissingHandler:tn,rt:un,d:rn,n:an,tm:sn,te:Oe,getLocaleMessage:Lt,setLocaleMessage:yt,mergeLocaleMessage:on,getDateTimeFormat:ln,setDateTimeFormat:cn,mergeDateTimeFormat:Zn,getNumberFormat:fn,setNumberFormat:Rt,mergeNumberFormat:dn};function pn(B){B.locale.value=o.value,B.fallbackLocale.value=i.value,Object.keys(E.value).forEach(H=>{B.mergeLocaleMessage(H,E.value[H])}),Object.keys(_.value).forEach(H=>{B.mergeDateTimeFormat(H,_.value[H])}),Object.keys(c.value).forEach(H=>{B.mergeNumberFormat(H,c.value[H])}),B.escapeParameter=p,B.fallbackFormat=L,B.fallbackRoot=S,B.fallbackWarn=F,B.missingWarn=d,B.warnHtmlMessage=C}return Xv(()=>{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,E.value=B.messages.value,_.value=B.datetimeFormats.value,c.value=B.numberFormats.value):a&&pn(B)}),En}const m5=["locale","fallbackLocale","availableLocales"],Ks=["t","rt","d","n","tm","te"];function _5(e,t){const n=Object.create(null);return m5.forEach(a=>{const r=Object.getOwnPropertyDescriptor(t,a);if(!r)throw ie(k.UNEXPECTED_ERROR);const s=de(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,Ks.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,Ks.forEach(a=>{delete e.config.globalProperties[`$${a}`]})}}if($g(),__INTLIFY_JIT_COMPILATION__?Qr(Oh):Qr(Bh),bh(eh),Ch(Xr),process.env.NODE_ENV!=="production"||__INTLIFY_PROD_DEVTOOLS__){const e=xe();e.__INTLIFY__=!0,lh(e.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__)}process.env.NODE_ENV;const h5=(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},Xs=class{static getMessage(e,t={}){var n;return(n=h5("engine."+e))!=null?n:this.$i18n.global.t(e,t)}static resetI18n(e=Fr){return s5({locale:e,globalInjection:!0,silentFallbackWarn:!0,missingWarn:!1,fallbackWarn:!1,silentTranslationWarn:!0})}static setLocale(e,t){let n=t;t||(n=Z_.zhCN),this.$i18n.global.setLocaleMessage(e,n)}};let Q=Xs;Q.$i18n=Xs.resetI18n();function v5(e,t,n){const u=t.replace(/\[(\d)]/g,(r,s)=>"."+s).split(".");let a=!1;return u.reduce((r,s,o,i)=>{const E=r;if(!!r){if(!Object.prototype.hasOwnProperty.call(r,s)){Tr(`Can not set ${t}'s ${s} property in current %o, Because there is no ${s} property on the %o`,r,r);return}return o===i.length-1&&!Object.is(E[s],n)&&(E[s]=n,a=!0),E[s]}},e),a}var g5=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Er={exports:{}};(function(e){(function(t){var n=function(b,C,p){if(!E(C)||c(C)||d(C)||F(C)||i(C))return C;var m,h=0,g=0;if(_(C))for(m=[],g=C.length;h<g;h++)m.push(n(b,C[h],p));else{m={};for(var N in C)Object.prototype.hasOwnProperty.call(C,N)&&(m[b(N,p)]=n(b,C[N],p))}return m},u=function(b,C){C=C||{};var p=C.separator||"_",m=C.split||/(?=[A-Z])/;return b.split(m).join(p)},a=function(b){return S(b)?b:(b=b.replace(/[\-_\s]+(.)?/g,function(C,p){return p?p.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"},E=function(b){return b===Object(b)},_=function(b){return o.call(b)=="[object Array]"},c=function(b){return o.call(b)=="[object Date]"},d=function(b){return o.call(b)=="[object RegExp]"},F=function(b){return o.call(b)=="[object Boolean]"},S=function(b){return b=b-0,b===b},L=function(b,C){var p=C&&"process"in C?C.process:C;return typeof p!="function"?b:function(m,h){return p(m,b,h)}},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})(g5)})(Er);var Js={};Object.defineProperty(Js,"__esModule",{value:!0});function pr(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:pr(t));{const t={};for(const n in e){const u=e[n];t[n]=typeof u!="object"||u===null?u:pr(u)}return t}}var b5=Js.default=pr;function C5(e){if(e!==void 0)return typeof e=="object"?b5(e):e}function A5(e){return qs(e)&&"zh"in e}function qs(e){return Object.prototype.toString.call(e)==="[object Object]"}function F5(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function Qn(e){return Array.isArray(e)}function zs(e){return typeof e=="string"}function mr(e){return typeof e=="number"}function N5(e){return typeof e=="function"}function D5(e){return Qn(e)&&e.every(t=>zs(t))}function S5(e){return Qn(e)&&e.every(t=>mr(t))}function I5(e){return Qn(e)&&e.every(t=>mr(t)||t==="")}function B5(e){return/^\[.*?]$/.test(e)}function O5(e){return/^{.*?}$/.test(e)}function T5(e){return isNaN(parseFloat(e))?"":Number(e)}function L5(e){return e.reduce((t,n)=>(t.includes(n)||t.push(n),t),[])}function y5(e,t=500){let n;return function(...u){n||(n=setTimeout(()=>{e.apply(this,u),clearTimeout(n),n=null},t))}}function R5(e=0){return new Promise(t=>{setTimeout(t,e)})}function _r(e,t){let n=[];return Array.isArray(e)&&(n=e.map(u=>{let a=u;return Array.isArray(u==null?void 0:u.children)&&(a.children=_r(u.children,t)),Array.isArray(u==null?void 0:u.footers)&&(a.footers=_r(u.footers,t)),t(a)})),n}function $5(e){return Er.exports.camelizeKeys(e)}function M5(e){return Er.exports.decamelizeKeys(e)}function w5(e){return Object.values(uu).includes(e)}class P5{constructor(){this._events=new Map,this.debug=!1}emit(t,...n){return Mt(this,null,function*(){const u=this._events.get(t),a=[];if(u){const r=u.slice();for(const s of r)if(!!u.includes(s))try{this.debug&&au(`\u6B63\u5728\u6267\u884C ${t} \u4E8B\u4EF6: ${s.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+s.applyingPluginName:""}, \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A${n.map(()=>"%o").join(",")}\u3002`,...n);const o=yield s.apply(null,[...n]);if(this.debug&&au(`\u6B63\u5728\u6267\u884C ${t} \u4E8B\u4EF6: ${s.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+s.applyingPluginName:""}, \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A${n.map(()=>"%o").join(",")}; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o`,...n,o),a.push(o),o===!1)break}catch(o){Lr(String(o)+":"+String(o.stack))}}return a})}on(t,n){var u;this._events.has(t)?(u=this._events.get(t))==null||u.push(n):this._events.set(t,[n])}off(t,n){if(this._events.has(t)){const u=this._events.get(t),a=u==null?void 0:u.indexOf(n);u==null||u.splice(a,1)}}delete(t){this._events.has(t)&&this._events.delete(t)}clear(){this._events=new Map}}const V5=[{key:"on_click",name:Q.getMessage("click"),code:"click"},{key:"on_click_finish",name:Q.getMessage("finished"),code:"click-finish"},{key:"on_change",name:Q.getMessage("valueChange"),code:"change"},{key:"on_search",name:Q.getMessage("search"),code:"search"},{key:"on_list_change",name:Q.getMessage("listDataChange"),code:"list-change"},{key:"on_list_search",name:Q.getMessage("listDataCreate"),code:"list-search"},{key:"on_list_mounted",name:Q.getMessage("listDataBack"),code:"list-mounted"},{key:"on_list_delete",name:Q.getMessage("listDataDelete"),code:"list-delete"},{key:"on_list_before_insert",name:Q.getMessage("listDataAdd"),code:"list-before-insert"},{key:"on_input",name:Q.getMessage("onInput"),code:"input"},{key:"on_blur",name:Q.getMessage("onBlur"),code:"blur"},{key:"on_focus",name:Q.getMessage("onFocus"),code:"focus"},{key:"on_wps_open",name:Q.getMessage("onOpenFile"),code:"wps-open"},{key:"on_wps_save",name:Q.getMessage("onSaveFile"),code:"wps-save"},{key:"on_wps_rename",name:Q.getMessage("rename"),code:"wps-rename"},{key:"on_list_actions",name:Q.getMessage("onClickBtn"),code:"list-actions"},{key:"on_list_render_operation",name:Q.getMessage("cellRender"),code:"list-render-operation"},{key:"on_list_rowclick",name:Q.getMessage("rowClick"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:Q.getMessage("rowDelete"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:Q.getMessage("listDataImport"),code:"list-before-import"},{key:"on_list_rows_checked",name:Q.getMessage("rowSelected"),code:"list-rows-checked"},{key:"on_change_tab",name:Q.getMessage("tabChange"),code:"change-tab"},{key:"on_modal_ok",name:Q.getMessage("modalConfirm"),code:"modal-ok"}],hr=class{static getEventsFromKeys(e){const t=typeof e=="string"?[e]:e;return hr.events.filter(n=>t.includes(n.key))}static getEventsFromControl(e){let t=[];const n=e.eventKeys;t=t.concat(hr.events.filter(a=>n.includes(a.key)));const u=e.customEvents.map(a=>{let r=a.key;return a.namespace!==void 0&&a.namespace!==null&&a.namespace!==""&&(r=a.namespace+":"+a.key),{key:r,code:a.key,name:a.name}});return t=t.concat(u),t}};let Qs=hr;Qs.events=V5,R.CALC_AGGREGATE_TYPE=Ar,R.CALC_TOKEN_TYPE=Cr,R.CONTROL_BASE_TYPE=Nr,R.CONTROL_TYPE=uu,R.CalcScriptEchoItem=Y_,R.DEFAULT_LOCALE=Fr,R.DESIGNER_SLOT=t0,R.DateType=Br,R.DepartmentEntity=ne,R.EventLogic=Qs,R.FORM_TYPE=Dr,R.FieldTypes=Ir,R.JSONCopy=C5,R.OPT_TYPES=Sr,R.RulesMessage=Q,R.UserEntity=fe,R.Watcher=P5,R.camelizeKeys=$5,R.debounce=y5,R.decamelizeKeys=M5,R.error=s0,R.genNonDuplicateId=u0,R.getNotRepeatItems=L5,R.isArray=Qn,R.isBuiltInControls=w5,R.isFunction=N5,R.isJSONArray=B5,R.isJSONObject=O5,R.isLanguageObject=A5,R.isNumber=mr,R.isNumberAndEmptyStringArray=I5,R.isNumberArray=S5,R.isObject=F5,R.isPlainObject=qs,R.isString=zs,R.isStringArray=D5,R.log=au,R.logerror=Lr,R.loop=_r,R.loopFormSchema=vn,R.noop=e0,R.referenceError=o0,R.toNumberOrEmpty=T5,R.updateValueFromKeys=v5,R.wait=R5,R.warn=Tr,Object.defineProperty(R,"__esModule",{value:!0})});
|
|
1
|
+
var lu=(t,C,d)=>new Promise((S,b)=>{var f=v=>{try{A(d.next(v))}catch(m){b(m)}},y=v=>{try{A(d.throw(v))}catch(m){b(m)}},A=v=>v.done?S(v.value):Promise.resolve(v.value).then(f,y);A((d=d.apply(t,C)).next())});(function(t,C){typeof exports=="object"&&typeof module!="undefined"?C(exports):typeof define=="function"&&define.amd?define(["exports"],C):(t=typeof globalThis!="undefined"?globalThis:t||self,C(t.modelDrivenShared={}))})(this,function(t){var tu;"use strict";class C{}class d{}var S="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",b="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",f="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",y="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",A="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",v="{caption}\u5FC5\u586B",m="\u8BF7\u8F93\u5165\u6807\u9898",iu="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ou="\u8BF7\u8F93\u5165\u884C\u6807\u9898",su="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Eu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",cu="\u8BF7\u7ED1\u5B9A\u8868\u5355",Bu="\u8BF7\u7ED1\u5B9A\u5217\u8868",vu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Fu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Cu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",pu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",du="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Au="\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",Du="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",hu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",bu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",gu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",$u="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Su="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",fu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",yu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",Iu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Mu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Lu="\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",Ru="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Vu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Nu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Uu="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",ku="\u8BF7\u7ED1\u5B9A\u670D\u52A1",xu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Tu="\u8BF7\u9009\u62E9\u7701",_u="\u8BF7\u9009\u62E9\u5E02",Gu="\u8BF7\u9009\u62E9\u533A",zu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Wu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Pu="\u8BF7\u8F93\u5165\u5217\u5BBD",ju="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Hu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",qu="\u8BF7\u9009\u62E9\u63A7\u4EF6",Ku="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ju="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Xu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ou="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Qu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Zu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Yu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ue="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ee="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ae="\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",re="\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",le="\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",se="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ee="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ce="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Be="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ve="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Fe="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Ce="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",pe="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",de="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",Ae="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",me="\u6279\u91CF\u5220\u9664",De="\u6279\u91CF\u6253\u5370",he="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",be="\u6309\u94AE",ge="\u521B\u5EFA\u5355\u636E",$e="\u4EEA\u8868\u76D8",Se="\u5206\u5272\u7EBF",fe="\u5BFC\u51FA",ye="\u8868\u5355\u64CD\u4F5C",Ie="\u5BFC\u5165",Me="\u53D1\u7968\u8BC6\u522B",Le="\u94FE\u63A5",we="\u5217\u8868\u9009\u62E9",Re="\u5217\u8868\u89C6\u56FE",Ve="\u64CD\u4F5C\u6309\u94AE",Ne="\u5206\u9875",Ue="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",ke="\u8BF4\u660E\u6587\u5B57",xe="\u6587\u5B57\u8BC6\u522B",Te="\u6807\u9898\u7EC4\u4EF6",_e="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Ge="\u6570\u7EC4",ze="\u81EA\u52A8\u7F16\u53F7",We="\u81EA\u5B9A\u4E49",Pe="\u6570\u503C",je="\u90E8\u95E8",He="\u4EBA\u5458",qe="\u9644\u4EF6",Ke="\u56FE\u7247",Je="\u5730\u5740",Xe="\u64CD\u4F5C",Oe="\u5E8F\u53F7",Qe="\u4EBA\u5458",Ze="\u957F\u6587\u672C",Ye="\u65E5\u671F\u533A\u95F4",ua="\u65E5\u671F",ea="\u77ED\u6587\u672C",aa="\u6362\u884C\u5BB9\u5668Wrap",ta="\u8868\u683C",ra="\u660E\u7EC6\u5B50\u8868",na="\u5730\u5740",la="\u91D1\u989D",ia="\u8BA1\u7B97\u516C\u5F0F",oa="\u591A\u9009",sa="\u7535\u5B50\u7B7E\u7AE0",Ea="\u5355\u884C\u6587\u672C",ca="\u6570\u5B57",Ba="\u4E1A\u52A1\u7EC4\u7EC7",va="\u5355\u9009",Fa="\u5BCC\u6587\u672C",Ca="\u8BC4\u5206",pa="\u6570\u5B57\u533A\u95F4",da="\u4E0B\u62C9\u5355\u9009",Aa="\u4E0B\u62C9\u591A\u9009",ma="\u5173\u8054\u5355\u9009",Da="\u591A\u884C\u6587\u672C",ha="\u6811",ba="Vue\u5BB9\u5668",ga="Vue\u9875\u9762",$a="\u5728\u7EBF\u6587\u6863",Sa="\u6309\u94AE\u64CD\u4F5C\u680F",fa="\u9AD8\u7EA7\u5BB9\u5668",ya="\u5206\u7EC4",Ia="\u6805\u683C\u5217",Ma="\u6570\u636E\u5BB9\u5668",La="\u753B\u5E03",wa="\u6362\u884C\u5BB9\u5668",Ra="\u6805\u683C\u7B49\u5206\u884C",Va="\u5217\u8868\u5BB9\u5668",Na="\u81EA\u7531\u9875\u9762",Ua="\u5B9A\u4F4D\u5B50\u5BB9\u5668",ka="\u5B9A\u4F4D\u5BB9\u5668",xa="\u6805\u683C\u5E03\u5C40",Ta="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",_a="\u660E\u7EC6\u5B50\u8868\u884C",Ga="\u6807\u7B7E\u9875",za="\u6807\u7B7E\u5355\u5143",Wa="\u5DE5\u5177\u680F",Pa="\u6279\u91CF\u63D0\u4EA4",ja="\u5BFC\u51FA\u8BB0\u5F55",Ha="\u5217\u8868\u89C6\u56FE",qa="\u7ED3\u675F\u65F6\u95F4",Ka="\u5F00\u59CB\u65F6\u95F4",Ja="\u5355\u4F4D",Xa="\u7ED3\u679C",Oa="\u5E01\u79CD",Qa="\u7ED3\u675F\u65E5\u671F",Za="\u5F00\u59CB\u65E5\u671F",Ya="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",ut="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",et="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",at="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",tt="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",rt="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",nt="\u8BF7\u9009\u62E9",lt="\u8BF7\u9009\u62E9\u7EC4\u7EC7",it="\u8BF7\u9009\u62E9\u90E8\u95E8",ot="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",st="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",Et="\u8BF7\u9009\u62E9\u5730\u5740",ct="\u5F39\u7A97\u786E\u8BA4\u65F6",Bt="\u6807\u7B7E\u9875\u5207\u6362\u65F6",vt="\u884C\u9009\u4E2D\u65F6",Ft="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",Ct="\u884C\u5220\u9664\u524D",pt="\u884C\u70B9\u51FB\u65F6",dt="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",At="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",mt="\u91CD\u547D\u540D\u65F6",Dt="\u4FDD\u5B58\u6587\u4EF6\u65F6",ht="\u6253\u5F00\u6587\u4EF6\u65F6",bt="\u83B7\u53D6\u7126\u70B9\u65F6",gt="\u5931\u53BB\u7126\u70B9\u65F6",$t="\u7528\u6237\u8F93\u5165\u65F6",St="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",ft="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",yt="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",It="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",Mt="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Lt="\u641C\u7D22\u65F6",wt="\u503C\u53D1\u751F\u53D8\u5316\u65F6",Rt="\u6267\u884C\u5B8C\u6210\u65F6",Vt="\u70B9\u51FB\u65F6",Nt="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",Ut="\u8BF7\u8F93\u5165\u65E5\u671F",kt="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",xt="\u8BF7\u8F93\u5165",Tt="\u9ED8\u8BA4\u6A21\u7248",_t="\u5DE6\u53F3\u5E03\u5C40",Gt="\u4E0A\u4E0B\u5E03\u5C40",zt="\u53EA\u8BFB",Wt="\u5FC5\u586B",Pt="\u63D0\u793A\u6587\u5B57",jt="\u9690\u85CF\u6807\u9898",Ht="\u6807\u9898\u5FC5\u586B",qt="\u7EC4\u7EC7\u5F62\u6001",Kt="\u4E1A\u52A1\u7C7B\u578B",Jt="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Xt="\u9690\u85CF",Ot="\u6D41\u7A0B\u72B6\u6001",Qt="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Zt="\u5220\u9664",Yt="\u7F16\u8F91",ur="\u67E5\u770B",er="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",ar="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",tr="\u5145\u6EE1\u6574\u884C",rr="\u6700\u5C0F\u503C",nr="\u6700\u5927\u503C",lr="\u65B0\u5EFA\u6587\u6863",ir="\u91CD\u7F6E",or="\u67E5\u8BE2",sr="\u660E\u7EC6",Er="\u6253\u5370",cr="\u4FDD\u5B58\u8349\u7A3F",Br="\u4FDD\u5B58",vr="\u53D6\u6D88",Fr="\u4E0A\u4F20\u56FE\u7247",Cr="\u53D1\u8D77\u7B7E\u7F72",pr="\u4E0A\u4F20\u9644\u4EF6",dr="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",Ar="\u5F15\u7528\u5217\u8868",mr="\u9009\u9879\u4E00",Dr="\u9009\u9879\u4E8C",hr="\u9009\u9879\u4E09",br={isNotNumber:S,isNotString:b,isNotObject:f,isNotArray:y,isNotBoolean:A,runtimeRequired:v,pleaseEnterCaption:m,pleaseEnterCaptionTip:iu,pleaseEnterRowCaption:ou,pleaseEnterPlaceholder:su,pleaseEnterFieldCode:Eu,pleaseEnterForm:cu,pleaseEnterList:Bu,pleaseEnterProcess:vu,pleaseEnterLabel:Fu,pleaseEnterValue:Cu,bizKeyNotBindFiled:pu,pleaseSelectOneField:du,pleaseEnterNumberRange:Au,pleaseEnterAValueGreaterThanMin:mu,pleaseEnterAValueLessThanMax:Du,numberRangeSetError:hu,stringRangeError:bu,attachmentMaxSize:gu,pleaseEnterTotalScoreSetting:$u,theTotalScoreMustNotBeLessThan1:Su,scoreDefaultValueRange:fu,attachmentLimitError:yu,PleaseReselectTheOptionalQuantity:Iu,TheMaximumLengthIsGreaterThanTheMinimumLength:Mu,TheMinimumLengthIsGreaterThanTheMaximumLength:Lu,PleaseSelectTheCorrectOptionSettings:wu,optionIdIsRepeat:Ru,optionIsRequired:Vu,pleaseEnterDataCode:Nu,pleaseEnterValueFieldCode:Uu,pleaseEnterSvcCode:ku,pleaseBindAtLeastOneDisplayValue:xu,pleaseSelectProvince:Tu,pleaseSelectCity:_u,pleaseSelectDistrict:Gu,limitRowsCannotBeLessThan0:zu,TheNumberOfRowsCannotBeLessThanMinRows:Wu,pleaseEnterColumnWidth:Pu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ju,pleaseCompleteAllRulesAndConditions:Hu,pleaseSelectControl:qu,pleaseSelectAtLeastOneColumn:Ku,pleaseSelectFillBackMode:Ju,pleaseSelectDashboard:Xu,rootNodeIsRequired:Ou,theViewNameCannotBeEmpty:Qu,pleaseSelectOcrType:Zu,pleaseSelectAtLeastOneFieldToFillIn:Yu,pleaseChooseAtLeastOne:ue,pleaseEnterButtonContent:ee,pleaseEnterDataCodeInDataSetting:ae,pleaseEnterValueFieldCodeInDataSetting:te,pleaseEnterSvcCodeInDataSetting:re,pleaseBindAtLeastOneDisplayValueInDataSetting:ne,rootNodeIsRequiredInDataSetting:le,pleaseEnterMaxHeight:ie,pleaseEnterWatermark:oe,pleaseEnterFileName:se,pleaseUploadAtLeastOnePrintTemplate:Ee,pleaseAssignBusiness:ce,pleaseAssignExternal:Be,pleaseEnterAliasCode:ve,pleaseSelectDataCode:Fe,pleaseSelectSvcCode:Ce,pleaseSelectJoinFieldCode:pe,pleaseSelectMainFieldCode:de,pleaseSelectSortFieldCode:Ae,batchDeleteButton:me,batchPrintListButton:De,batchPrintRecordList:he,button:be,createFormListButton:ge,dashboard:$e,divider:Se,exportListButton:fe,formSelectButton:ye,importRecordListButton:Ie,invoiceCheckButton:Me,link:Le,listSelectButton:we,ListViewSelect:Re,operationButton:Ve,pagination:Ne,submissionRecordListButton:Ue,text:ke,textOcrButton:xe,title:Te,approvalStatusColumn:_e,array:Ge,autoNumber:ze,custom:We,decimal:Pe,department:je,employee:He,file:qe,image:Ke,location:Je,operation:Xe,order:Oe,people:Qe,long:Ze,timescope:Ye,timestamp:ua,varchar:ea,gridLayoutWrap:aa,gridTable:ta,subTable:ra,address:na,amount:la,calc:ia,checkBox:oa,electronicSignature:sa,input:Ea,number:ca,organizationSelection:Ba,radio:va,richText:Fa,score:Ca,searchNumberRange:pa,select:da,selectMultiple:Aa,selectRelation:ma,textarea:Da,tree:ha,vueFormItem:ba,vuePage:ga,WPS:$a,actionBar:Sa,advancedContainer:fa,cardGroup:ya,col:Ia,dataView:Ma,grid:La,gridLayoutContainer:wa,gridRow:Ra,listView:Va,page:Na,position:Ua,positioningContainer:ka,row:xa,subtableColumn:Ta,subtableRow:_a,tab:Ga,tabPane:za,toolbox:Wa,batchSubmissionListButton:Pa,exportRecordListButton:ja,listViewSelect:Ha,endTime:qa,startTime:Ka,unit:Ja,result:Xa,currency:Oa,endDate:Qa,startDate:Za,pleaseSelectCompanyName:Ya,pleaseSelectPhoneOrEmail:ut,pleaseSelectSignType:et,pleaseSelectSigner:at,pleaseSelectOnlyOne:tt,pleaseSelectSignFile:rt,pleaseSelect:nt,pleaseSelectOrg:lt,pleaseSelectDept:it,pleaseSelectEndDate:ot,pleaseSelectStartDate:st,pleaseChooseAddress:Et,modalConfirm:ct,tabChange:Bt,rowSelected:vt,listDataImport:Ft,rowDelete:Ct,rowClick:pt,cellRender:dt,onClickBtn:At,rename:mt,onSaveFile:Dt,onOpenFile:ht,onFocus:bt,onBlur:gt,onInput:$t,listDataAdd:St,listDataDelete:ft,listDataBack:yt,listDataCreate:It,listDataChange:Mt,search:Lt,valueChange:wt,finished:Rt,click:Vt,pleaseEnterNameorEmail:Nt,pleaseEnterDate:Ut,pleaseEnterAutonumber:kt,pleaseEnter:xt,defaultTemplate:Tt,left:_t,top:Gt,default:"\u666E\u901A",readonly:zt,required:Wt,textTip:Pt,hideCaption:jt,titleRequired:Ht,organizationalForm:qt,businessType:Kt,deleteConfirm:Jt,hide:Xt,processStatus:Ot,approvedDocuments:Qt,delete:Zt,edit:Yt,view:ur,loadCtrlErrorTip:er,loadCtrlError:ar,fullLine:tr,min:rr,max:nr,createWPS:lr,reset:ir,query:or,detailed:sr,print:Er,draft:cr,save:Br,cancel:vr,uploadImg:Fr,signature:Cr,uploadFile:pr,linkContent:dr,referenceList:Ar,optionOne:mr,optionTwo:Dr,optionThird:hr},gr="Please enter a number",$r="Please enter a string",Sr="Please enter an object",fr="Please enter an array",yr="Please enter a boolean",Ir="{caption} Required",Mr="Please enter the title",Lr="Please enter the bubble prompt",wr="Please enter the row title",Rr="Please enter the prompt text",Vr="Please bind data items",Nr="Please bind the form",Ur="Please bind the list",kr="Please bind the process",xr="Please enter the displayed value",Tr="Please enter the stored value",_r="The document number is not bound to the data item",Gr="Please select at least one display field",zr="Please enter a value greater than or equal to {min} and less than or equal to {max}",Wr="Please enter a value greater than or equal to {min}",Pr="Please enter a value less than or equal to {max}",jr="The value range is set incorrectly",Hr="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",qr="The attachment size must be between 0MB and 1000MB",Kr="Please fill in the total score setting",Jr="The total score cannot be less than 1",Xr="The default value must be between {min} and {max}",Or="The number of attachment uploads exceeds the limit",Qr="Please re-select the optional quantity",Zr="The maximum length of the control must be greater than the minimum length",Yr="The minimum length of the control must be less than the maximum length",un="Please select the correct option setting",en="Option ID cannot be repeated",an="Please enter at least one option",tn="Please bind the data source",rn="Please bind the stored value",nn="Please bind the service",ln="At least one display value must be bound",on="Please select a province",sn="Please select a city",En="Please select a district",cn="The minimum number of lines to fill in cannot be less than 0",Bn="The number of rows cannot be less than {min} rows",vn="Please enter the column width",Fn="Please set the logical relationship of all rule conditions",Cn="Please complete all rules and conditions",pn="please select control",dn="Please select the dashboard",An="View name cannot be empty",mn="Please select recognition type",Dn="Please select at least one field to fill in",hn="Please select at least one",bn="Please enter the button title",gn="Please bind the business model in the data settings",$n="Please bind storage values in data settings",Sn="Please bind the service in the data settings",fn="Please bind at least one display value in the data settings",yn="Please select the root node in the data settings",In="Please enter the maximum height",Mn="The input content cannot be empty",Ln="Watermark cannot be empty",wn="File name cannot be empty",Rn="Please upload at least one printing template!\uFF01",Vn="Please select a specific business department",Nn="Please select a specified external organization",Un="Please enter a sub table alias",kn="Please select the associated table to set the business model",xn="Please select the association table to set the binding service",Tn="Select associated sub table fields",_n="Please select the associated main table field",Gn="Please select the sort field",zn="\u6279\u91CF\u5220\u9664",Wn="\u6279\u91CF\u6253\u5370",Pn="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",jn="\u6309\u94AE",Hn="\u521B\u5EFA\u5355\u636E",qn="\u4EEA\u8868\u76D8",Kn="\u5206\u5272\u7EBF",Jn="\u5BFC\u51FA",Xn="\u8868\u5355\u64CD\u4F5C",On="\u5BFC\u5165",Qn="\u53D1\u7968\u8BC6\u522B",Zn="\u94FE\u63A5",Yn="\u5217\u8868\u9009\u62E9",u0="\u5217\u8868\u89C6\u56FE",e0="\u64CD\u4F5C\u6309\u94AE",a0="\u5206\u9875",t0="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",r0="\u8BF4\u660E\u6587\u5B57",n0="\u6587\u5B57\u8BC6\u522B",l0="\u6807\u9898\u7EC4\u4EF6",i0="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",o0="\u6570\u7EC4",s0="\u81EA\u52A8\u7F16\u53F7",E0="\u81EA\u5B9A\u4E49",c0="\u6570\u503C",B0="\u90E8\u95E8",v0="\u4EBA\u5458",F0="\u9644\u4EF6",C0="\u56FE\u7247",p0="\u5730\u5740",d0="\u64CD\u4F5C",A0="\u5E8F\u53F7",m0="\u4EBA\u5458",D0="\u957F\u6587\u672C",h0="\u65E5\u671F\u533A\u95F4",b0="\u65E5\u671F",g0="\u77ED\u6587\u672C",$0="\u6362\u884C\u5BB9\u5668Wrap",S0="\u8868\u683C",f0="\u660E\u7EC6\u5B50\u8868",y0="\u5730\u5740",I0="\u91D1\u989D",M0="\u8BA1\u7B97\u516C\u5F0F",L0="\u591A\u9009",w0="\u7535\u5B50\u7B7E\u7AE0",R0="\u5355\u884C\u6587\u672C",V0="\u6570\u5B57",N0="\u4E1A\u52A1\u7EC4\u7EC7",U0="\u5355\u9009",k0="\u5BCC\u6587\u672C",x0="\u8BC4\u5206",T0="\u6570\u5B57\u533A\u95F4",_0="\u4E0B\u62C9\u5355\u9009",G0="\u4E0B\u62C9\u591A\u9009",z0="\u5173\u8054\u5355\u9009",W0="\u591A\u884C\u6587\u672C",P0="\u6811",j0="Vue\u5BB9\u5668",H0="Vue\u9875\u9762",q0="\u5728\u7EBF\u6587\u6863",K0="\u6309\u94AE\u64CD\u4F5C\u680F",J0="\u9AD8\u7EA7\u5BB9\u5668",X0="\u5206\u7EC4",O0="\u6805\u683C\u5217",Q0="\u6570\u636E\u5BB9\u5668",Z0="\u753B\u5E03",Y0="\u6362\u884C\u5BB9\u5668",u5="\u6805\u683C\u7B49\u5206\u884C",e5="\u5217\u8868\u5BB9\u5668",a5="\u81EA\u7531\u9875\u9762",t5="\u5B9A\u4F4D\u5B50\u5BB9\u5668",r5="\u5B9A\u4F4D\u5BB9\u5668",n5="\u6805\u683C\u5E03\u5C40",l5="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",i5="\u660E\u7EC6\u5B50\u8868\u884C",o5="\u6807\u7B7E\u9875",s5="\u6807\u7B7E\u5355\u5143",E5="\u5DE5\u5177\u680F",c5="\u6279\u91CF\u63D0\u4EA4",B5="\u5BFC\u51FA\u8BB0\u5F55",v5="\u5217\u8868\u89C6\u56FE",F5="\u5F15\u7528\u5217\u8868",C5="\u9009\u9879\u4E00",p5="\u9009\u9879\u4E8C",d5="\u9009\u9879\u4E09",A5={isNotNumber:gr,isNotString:$r,isNotObject:Sr,isNotArray:fr,isNotBoolean:yr,runtimeRequired:Ir,pleaseEnterCaption:Mr,pleaseEnterCaptionTip:Lr,pleaseEnterRowCaption:wr,pleaseEnterPlaceholder:Rr,pleaseEnterFieldCode:Vr,pleaseEnterForm:Nr,pleaseEnterList:Ur,pleaseEnterProcess:kr,pleaseEnterLabel:xr,pleaseEnterValue:Tr,bizKeyNotBindFiled:_r,pleaseSelectOneField:Gr,pleaseEnterNumberRange:zr,pleaseEnterAValueGreaterThanMin:Wr,pleaseEnterAValueLessThanMax:Pr,numberRangeSetError:jr,stringRangeError:Hr,attachmentMaxSize:qr,pleaseEnterTotalScoreSetting:Kr,theTotalScoreMustNotBeLessThan1:Jr,scoreDefaultValueRange:Xr,attachmentLimitError:Or,PleaseReselectTheOptionalQuantity:Qr,TheMaximumLengthIsGreaterThanTheMinimumLength:Zr,TheMinimumLengthIsGreaterThanTheMaximumLength:Yr,PleaseSelectTheCorrectOptionSettings:un,optionIdIsRepeat:en,optionIsRequired:an,pleaseEnterDataCode:tn,pleaseEnterValueFieldCode:rn,pleaseEnterSvcCode:nn,pleaseBindAtLeastOneDisplayValue:ln,pleaseSelectProvince:on,pleaseSelectCity:sn,pleaseSelectDistrict:En,limitRowsCannotBeLessThan0:cn,TheNumberOfRowsCannotBeLessThanMinRows:Bn,pleaseEnterColumnWidth:vn,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Fn,pleaseCompleteAllRulesAndConditions:Cn,pleaseSelectControl:pn,pleaseSelectDashboard:dn,theViewNameCannotBeEmpty:An,pleaseSelectOcrType:mn,pleaseSelectAtLeastOneFieldToFillIn:Dn,pleaseChooseAtLeastOne:hn,pleaseEnterButtonContent:bn,pleaseEnterDataCodeInDataSetting:gn,pleaseEnterValueFieldCodeInDataSetting:$n,pleaseEnterSvcCodeInDataSetting:Sn,pleaseBindAtLeastOneDisplayValueInDataSetting:fn,rootNodeIsRequiredInDataSetting:yn,pleaseEnterMaxHeight:In,pleaseEnter:Mn,pleaseEnterWatermark:Ln,pleaseEnterFileName:wn,pleaseUploadAtLeastOnePrintTemplate:Rn,pleaseAssignBusiness:Vn,pleaseAssignExternal:Nn,pleaseEnterAliasCode:Un,pleaseSelectDataCode:kn,pleaseSelectSvcCode:xn,pleaseSelectJoinFieldCode:Tn,pleaseSelectMainFieldCode:_n,pleaseSelectSortFieldCode:Gn,batchDeleteButton:zn,batchPrintListButton:Wn,batchPrintRecordList:Pn,button:jn,createFormListButton:Hn,dashboard:qn,divider:Kn,exportListButton:Jn,formSelectButton:Xn,importRecordListButton:On,invoiceCheckButton:Qn,link:Zn,listSelectButton:Yn,ListViewSelect:u0,operationButton:e0,pagination:a0,submissionRecordListButton:t0,text:r0,textOcrButton:n0,title:l0,approvalStatusColumn:i0,array:o0,autoNumber:s0,custom:E0,decimal:c0,department:B0,employee:v0,file:F0,image:C0,location:p0,operation:d0,order:A0,people:m0,long:D0,timescope:h0,timestamp:b0,varchar:g0,gridLayoutWrap:$0,gridTable:S0,subTable:f0,address:y0,amount:I0,calc:M0,checkBox:L0,electronicSignature:w0,input:R0,number:V0,organizationSelection:N0,radio:U0,richText:k0,score:x0,searchNumberRange:T0,select:_0,selectMultiple:G0,selectRelation:z0,textarea:W0,tree:P0,vueFormItem:j0,vuePage:H0,WPS:q0,actionBar:K0,advancedContainer:J0,cardGroup:X0,col:O0,dataView:Q0,grid:Z0,gridLayoutContainer:Y0,gridRow:u5,listView:e5,page:a5,position:t5,positioningContainer:r5,row:n5,subtableColumn:l5,subtableRow:i5,tab:o5,tabPane:s5,toolbox:E5,batchSubmissionListButton:c5,exportRecordListButton:B5,listViewSelect:v5,referenceList:F5,optionOne:C5,optionTwo:p5,optionThird:d5},m5="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",D5="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",h5="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",b5="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",g5="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$5="{caption}\u5FC5\u9808",S5="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",f5="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",y5="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",I5="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",M5="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",L5="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",w5="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",R5="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",V5="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",N5="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",U5="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",k5="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",x5="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",T5="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",_5="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",G5="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",z5="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",W5="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",P5="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",j5="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",H5="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",q5="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",K5="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",J5="\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",X5="\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",O5="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Q5="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Z5="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Y5="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ul="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",el="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",al="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",tl="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",rl="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",nl="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ll="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",il="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ol="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",sl="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",El="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",cl="please select control",Bl="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",vl="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Fl="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Cl="\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",pl="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",dl="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Al="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ml="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Dl="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",hl="\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",bl="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",gl="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",$l="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Sl="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",fl="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",yl="\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",Il="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ml="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ll="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wl="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",Rl="\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",Vl="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",Nl="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ul="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",kl="\u6279\u91CF\u5220\u9664",xl="\u6279\u91CF\u6253\u5370",Tl="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",_l="\u6309\u94AE",Gl="\u521B\u5EFA\u5355\u636E",zl="\u4EEA\u8868\u76D8",Wl="\u5206\u5272\u7EBF",Pl="\u5BFC\u51FA",jl="\u8868\u5355\u64CD\u4F5C",Hl="\u5BFC\u5165",ql="\u53D1\u7968\u8BC6\u522B",Kl="\u94FE\u63A5",Jl="\u5217\u8868\u9009\u62E9",Xl="\u5217\u8868\u89C6\u56FE",Ol="\u64CD\u4F5C\u6309\u94AE",Ql="\u5206\u9875",Zl="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Yl="\u8BF4\u660E\u6587\u5B57",ui="\u6587\u5B57\u8BC6\u522B",ei="\u6807\u9898\u7EC4\u4EF6",ai="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",ti="\u6570\u7EC4",ri="\u81EA\u52A8\u7F16\u53F7",ni="\u81EA\u5B9A\u4E49",li="\u6570\u503C",ii="\u90E8\u95E8",oi="\u4EBA\u5458",si="\u9644\u4EF6",Ei="\u56FE\u7247",ci="\u5730\u5740",Bi="\u64CD\u4F5C",vi="\u5E8F\u53F7",Fi="\u4EBA\u5458",Ci="\u957F\u6587\u672C",pi="\u65E5\u671F\u533A\u95F4",di="\u65E5\u671F",Ai="\u77ED\u6587\u672C",mi="\u6362\u884C\u5BB9\u5668Wrap",Di="\u8868\u683C",hi="\u660E\u7EC6\u5B50\u8868",bi="\u5730\u5740",gi="\u91D1\u989D",$i="\u8BA1\u7B97\u516C\u5F0F",Si="\u591A\u9009",fi="\u7535\u5B50\u7B7E\u7AE0",yi="\u5355\u884C\u6587\u672C",Ii="\u6570\u5B57",Mi="\u4E1A\u52A1\u7EC4\u7EC7",Li="\u5355\u9009",wi="\u5BCC\u6587\u672C",Ri="\u8BC4\u5206",Vi="\u6570\u5B57\u533A\u95F4",Ni="\u4E0B\u62C9\u5355\u9009",Ui="\u4E0B\u62C9\u591A\u9009",ki="\u5173\u8054\u5355\u9009",xi="\u591A\u884C\u6587\u672C",Ti="\u6811",_i="Vue\u5BB9\u5668",Gi="Vue\u9875\u9762",zi="\u5728\u7EBF\u6587\u6863",Wi="\u6309\u94AE\u64CD\u4F5C\u680F",Pi="\u9AD8\u7EA7\u5BB9\u5668",ji="\u5206\u7EC4",Hi="\u6805\u683C\u5217",qi="\u6570\u636E\u5BB9\u5668",Ki="\u753B\u5E03",Ji="\u6362\u884C\u5BB9\u5668",Xi="\u6805\u683C\u7B49\u5206\u884C",Oi="\u5217\u8868\u5BB9\u5668",Qi="\u81EA\u7531\u9875\u9762",Zi="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Yi="\u5B9A\u4F4D\u5BB9\u5668",uo="\u6805\u683C\u5E03\u5C40",eo="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",ao="\u660E\u7EC6\u5B50\u8868\u884C",to="\u6807\u7B7E\u9875",ro="\u6807\u7B7E\u5355\u5143",no="\u5DE5\u5177\u680F",lo="\u6279\u91CF\u63D0\u4EA4",io="\u5BFC\u51FA\u8BB0\u5F55",oo="\u5217\u8868\u89C6\u56FE",so="\u5F15\u7528\u5217\u8868",Eo="\u9009\u9879\u4E00",co="\u9009\u9879\u4E8C",Bo="\u9009\u9879\u4E09",vo={isNotNumber:m5,isNotString:D5,isNotObject:h5,isNotArray:b5,isNotBoolean:g5,runtimeRequired:$5,pleaseEnterCaption:S5,pleaseEnterCaptionTip:f5,pleaseEnterRowCaption:y5,pleaseEnterPlaceholder:I5,pleaseEnterFieldCode:M5,pleaseEnterForm:L5,pleaseEnterList:w5,pleaseEnterProcess:R5,pleaseEnterLabel:V5,pleaseEnterValue:N5,bizKeyNotBindFiled:U5,pleaseSelectOneField:k5,pleaseEnterNumberRange:x5,pleaseEnterAValueGreaterThanMin:T5,pleaseEnterAValueLessThanMax:_5,numberRangeSetError:G5,stringRangeError:z5,attachmentMaxSize:W5,pleaseEnterTotalScoreSetting:P5,theTotalScoreMustNotBeLessThan1:j5,scoreDefaultValueRange:H5,attachmentLimitError:q5,PleaseReselectTheOptionalQuantity:K5,TheMaximumLengthIsGreaterThanTheMinimumLength:J5,TheMinimumLengthIsGreaterThanTheMaximumLength:X5,PleaseSelectTheCorrectOptionSettings:O5,optionIdIsRepeat:Q5,optionIsRequired:Z5,pleaseEnterDataCode:Y5,pleaseEnterValueFieldCode:ul,pleaseEnterSvcCode:el,pleaseBindAtLeastOneDisplayValue:al,pleaseSelectProvince:tl,pleaseSelectCity:rl,pleaseSelectDistrict:nl,limitRowsCannotBeLessThan0:ll,TheNumberOfRowsCannotBeLessThanMinRows:il,pleaseEnterColumnWidth:ol,pleaseSetTheLogicalRelationshipOfAllRuleConditions:sl,pleaseCompleteAllRulesAndConditions:El,pleaseSelectControl:cl,pleaseSelectDashboard:Bl,theViewNameCannotBeEmpty:vl,pleaseSelectOcrType:Fl,pleaseSelectAtLeastOneFieldToFillIn:Cl,pleaseChooseAtLeastOne:pl,pleaseEnterButtonContent:dl,pleaseEnterDataCodeInDataSetting:Al,pleaseEnterValueFieldCodeInDataSetting:ml,pleaseEnterSvcCodeInDataSetting:Dl,pleaseBindAtLeastOneDisplayValueInDataSetting:hl,rootNodeIsRequiredInDataSetting:bl,pleaseEnterMaxHeight:gl,pleaseEnter:$l,pleaseEnterWatermark:Sl,pleaseEnterFileName:fl,pleaseUploadAtLeastOnePrintTemplate:yl,pleaseAssignBusiness:Il,pleaseAssignExternal:Ml,pleaseEnterAliasCode:Ll,pleaseSelectDataCode:wl,pleaseSelectSvcCode:Rl,pleaseSelectJoinFieldCode:Vl,pleaseSelectMainFieldCode:Nl,pleaseSelectSortFieldCode:Ul,batchDeleteButton:kl,batchPrintListButton:xl,batchPrintRecordList:Tl,button:_l,createFormListButton:Gl,dashboard:zl,divider:Wl,exportListButton:Pl,formSelectButton:jl,importRecordListButton:Hl,invoiceCheckButton:ql,link:Kl,listSelectButton:Jl,ListViewSelect:Xl,operationButton:Ol,pagination:Ql,submissionRecordListButton:Zl,text:Yl,textOcrButton:ui,title:ei,approvalStatusColumn:ai,array:ti,autoNumber:ri,custom:ni,decimal:li,department:ii,employee:oi,file:si,image:Ei,location:ci,operation:Bi,order:vi,people:Fi,long:Ci,timescope:pi,timestamp:di,varchar:Ai,gridLayoutWrap:mi,gridTable:Di,subTable:hi,address:bi,amount:gi,calc:$i,checkBox:Si,electronicSignature:fi,input:yi,number:Ii,organizationSelection:Mi,radio:Li,richText:wi,score:Ri,searchNumberRange:Vi,select:Ni,selectMultiple:Ui,selectRelation:ki,textarea:xi,tree:Ti,vueFormItem:_i,vuePage:Gi,WPS:zi,actionBar:Wi,advancedContainer:Pi,cardGroup:ji,col:Hi,dataView:qi,grid:Ki,gridLayoutContainer:Ji,gridRow:Xi,listView:Oi,page:Qi,position:Zi,positioningContainer:Yi,row:uo,subtableColumn:eo,subtableRow:ao,tab:to,tabPane:ro,toolbox:no,batchSubmissionListButton:lo,exportRecordListButton:io,listViewSelect:oo,referenceList:so,optionOne:Eo,optionTwo:co,optionThird:Bo},I={zhCN:br,enUS:A5,jaJP:vo},z=(u=>(u.Number="Number",u.Operator="Operator",u.VariableInMainTable="VariableInMainTable",u.VariableInCurrentSubTable="VariableInCurrentSubTable",u.VariableInOtherSubTable="VariableInOtherSubTable",u.UndefinedVariable="UndefinedVariable",u))(z||{}),W=(u=>(u.SUM="SUM",u.AVG="AVG",u.MAX="MAX",u.MIN="MIN",u))(W||{});class Fo{constructor(e){var a,r,l,c,o,E;this.name=(a=e==null?void 0:e.name)!=null?a:"",this.id=(r=e==null?void 0:e.id)!=null?r:"",this.type=(l=e==null?void 0:e.type)!=null?l:"Number",this.subTableId=(c=e==null?void 0:e.subTableId)!=null?c:void 0,this.subTableName=(o=e==null?void 0:e.subTableId)!=null?o:void 0,this.aggregateType=(E=e==null?void 0:e.aggregateType)!=null?E:void 0}}const M=(tu=window.localStorage.getItem("locale"))!=null?tu:"zh-CN",Co=()=>{};var P=(u=>(u.BASE="base",u.FORM="form",u.LAYOUT="layout",u.WRAP="wrap",u.COLUMN="column",u.LIST="list",u.SEARCH="search",u))(P||{}),j=(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",u))(j||{}),L=(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",u.REFERENCE_LIST="reference-list",u))(L||{}),H=(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))(H||{}),q=(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",u))(q||{}),K=(u=>(u.YEAR="year",u.MONTH="month",u.DATE="date",u.DATEHOUR="datehour",u.DATEMIN="datemin",u.DATETIME="datetime",u))(K||{});const po={DEFAULT:"default"},J="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Ao=J+"0123456789";function mo(u=15){let e="";for(let a=0;a<u;a++){const r=a===0?J:Ao,l=Math.random()*r.length;e+=r[parseInt(String(l),10)]}return e}const w=console;function X(...u){const e=u.slice(1);w.warn("\u{1F9D0} Driven Warning:"+u[0],...e)}function R(...u){const e=u.slice(1);w.log("\u{1F680} Driven Log:"+u[0],...e)}function Do(u){return u+" \u{1F41B}\u{1F41B}\u{1F41B}"}class V extends Error{constructor(e){super(e),this.name="\u{1F4A5} Driven Error",this.message=e?Do(e):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}"}}class ho extends V{constructor(e){super(e),this.name="\u{1F6A8} Driven Reference Error"}}function bo(u){throw new V(u)}function go(u){throw new ho(u)}function O(u){w.error(new V(u))}function g(u,e){Array.isArray(u)&&u.map(a=>{switch(a.controlType){case"layout":g(a==null?void 0:a.children,e);break;case"wrap":g(a==null?void 0:a.children,e);break;case"search":g(a==null?void 0:a.children,e);break;case"form":e(a)}})}const s=(u,e,a)=>{if(!u)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const r=u.split(".");let l;const c=(window.baitedaWorkers||{}).languageMessages||{};r.forEach((E,p)=>{p===0?l=c[E]:l&&(l=l[E])});let o="";return l&&(o=l),e&&Object.keys(e).forEach(E=>{const p=e[E];o=o.replace(new RegExp(`\\{\\s*${E}\\s*\\}`,"g"),p)}),o||(a?o=a:o=u),o},Q=class{static getMessage(u,e={}){var a;return s("CMD."+u,e,(a=I==null?void 0:I[M.split("-").join("")])==null?void 0:a[u])}static resetI18n(u=M){}static setLocale(u,e){}};let Z=Q;Z.$i18n=Q.resetI18n();function $o(u,e,a){const r=e.replace(/\[(\d)]/g,(c,o)=>"."+o).split(".");let l=!1;return r.reduce((c,o,E,p)=>{const D=c;if(!!c){if(!Object.prototype.hasOwnProperty.call(c,o)){X(`Can not set ${e}'s ${o} property in current %o, Because there is no ${o} property on the %o`,c,c);return}return E===p.length-1&&!Object.is(D[o],a)&&(D[o]=a,l=!0),D[o]}},u),l}var So=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},N={exports:{}};(function(u){(function(e){var a=function(n,i,B){if(!D(i)||qo(i)||Ko(i)||Jo(i)||p(i))return i;var F,h=0,nu=0;if(Ho(i))for(F=[],nu=i.length;h<nu;h++)F.push(a(n,i[h],B));else{F={};for(var G in i)Object.prototype.hasOwnProperty.call(i,G)&&(F[n(G,B)]=a(n,i[G],B))}return F},r=function(n,i){i=i||{};var B=i.separator||"_",F=i.split||/(?=[A-Z])/;return n.split(F).join(B)},l=function(n){return Xo(n)?n:(n=n.replace(/[\-_\s]+(.)?/g,function(i,B){return B?B.toUpperCase():""}),n.substr(0,1).toLowerCase()+n.substr(1))},c=function(n){var i=l(n);return i.substr(0,1).toUpperCase()+i.substr(1)},o=function(n,i){return r(n,i).toLowerCase()},E=Object.prototype.toString,p=function(n){return typeof n=="function"},D=function(n){return n===Object(n)},Ho=function(n){return E.call(n)=="[object Array]"},qo=function(n){return E.call(n)=="[object Date]"},Ko=function(n){return E.call(n)=="[object RegExp]"},Jo=function(n){return E.call(n)=="[object Boolean]"},Xo=function(n){return n=n-0,n===n},_=function(n,i){var B=i&&"process"in i?i.process:i;return typeof B!="function"?n:function(F,h){return B(F,n,h)}},ru={camelize:l,decamelize:o,pascalize:c,depascalize:o,camelizeKeys:function(n,i){return a(_(l,i),n)},decamelizeKeys:function(n,i){return a(_(o,i),n,i)},pascalizeKeys:function(n,i){return a(_(c,i),n)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};u.exports?u.exports=ru:e.humps=ru})(So)})(N);var Y={};Object.defineProperty(Y,"__esModule",{value:!0});function U(u){if(typeof u!="object"||u===null)return u;if(Array.isArray(u))return u.map(e=>typeof e!="object"||e===null?e:U(e));{const e={};for(const a in u){const r=u[a];e[a]=typeof r!="object"||r===null?r:U(r)}return e}}var fo=Y.default=U;function yo(u){if(u!==void 0)return typeof u=="object"?fo(u):u}function Io(u){return uu(u)&&"zh"in u}function uu(u){return Object.prototype.toString.call(u)==="[object Object]"}function Mo(u){return u!=null&&typeof u=="object"&&Array.isArray(u)===!1}function $(u){return Array.isArray(u)}function eu(u){return typeof u=="string"}function k(u){return typeof u=="number"}function Lo(u){return typeof u=="function"}function wo(u){return $(u)&&u.every(e=>eu(e))}function Ro(u){return $(u)&&u.every(e=>k(e))}function Vo(u){return $(u)&&u.every(e=>k(e)||e==="")}function No(u){return/^\[.*?]$/.test(u)}function Uo(u){return/^{.*?}$/.test(u)}function ko(u){return isNaN(parseFloat(u))?"":Number(u)}function xo(u){return u.reduce((e,a)=>(e.includes(a)||e.push(a),e),[])}function To(u,e=500){let a;return function(...r){a||(a=setTimeout(()=>{u.apply(this,r),clearTimeout(a),a=null},e))}}function _o(u=0){return new Promise(e=>{setTimeout(e,u)})}function x(u,e){let a=[];return Array.isArray(u)&&(a=u.map(r=>{let l=r;return Array.isArray(r==null?void 0:r.children)&&(l.children=x(r.children,e)),Array.isArray(r==null?void 0:r.footers)&&(l.footers=x(r.footers,e)),e(l)})),a}function Go(u){return N.exports.camelizeKeys(u)}function zo(u){return N.exports.decamelizeKeys(u)}function Wo(u){return Object.values(L).includes(u)}class Po{constructor(){this._events=new Map,this.debug=!1}emit(e,...a){return lu(this,null,function*(){const r=this._events.get(e),l=[];if(r){const c=r.slice();for(const o of c)if(!!r.includes(o))try{this.debug&&R(`\u6B63\u5728\u6267\u884C ${e} \u4E8B\u4EF6: ${o.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+o.applyingPluginName:""}, \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A${a.map(()=>"%o").join(",")}\u3002`,...a);const E=yield o.apply(null,[...a]);if(this.debug&&R(`\u6B63\u5728\u6267\u884C ${e} \u4E8B\u4EF6: ${o.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+o.applyingPluginName:""}, \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A${a.map(()=>"%o").join(",")}; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o`,...a,E),l.push(E),E===!1)break}catch(E){O(String(E)+":"+String(E.stack))}}return l})}on(e,a){var r;this._events.has(e)?(r=this._events.get(e))==null||r.push(a):this._events.set(e,[a])}off(e,a){if(this._events.has(e)){const r=this._events.get(e),l=r==null?void 0:r.indexOf(a);r==null||r.splice(l,1)}}delete(e){this._events.has(e)&&this._events.delete(e)}clear(){this._events=new Map}}const jo=[{key:"on_click",name:s("CMD.click",null,"\u70B9\u51FB\u65F6"),code:"click"},{key:"on_click_finish",name:s("CMD.finished",null,"\u6267\u884C\u5B8C\u6210\u65F6"),code:"click-finish"},{key:"on_change",name:s("CMD.valueChange",null,"\u503C\u53D1\u751F\u53D8\u5316\u65F6"),code:"change"},{key:"on_search",name:s("CMD.search",null,"\u641C\u7D22\u65F6"),code:"search"},{key:"on_list_change",name:s("CMD.listDataChange",null,"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6"),code:"list-change"},{key:"on_list_search",name:s("CMD.listDataCreate",null,"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6"),code:"list-search"},{key:"on_list_mounted",name:s("CMD.listDataBack",null,"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6"),code:"list-mounted"},{key:"on_list_delete",name:s("CMD.listDataDelete",null,"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6"),code:"list-delete"},{key:"on_list_before_insert",name:s("CMD.listDataAdd",null,"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D"),code:"list-before-insert"},{key:"on_input",name:s("CMD.onInput",null,"\u7528\u6237\u8F93\u5165\u65F6"),code:"input"},{key:"on_blur",name:s("CMD.onBlur",null,"\u5931\u53BB\u7126\u70B9\u65F6"),code:"blur"},{key:"on_focus",name:s("CMD.onFocus",null,"\u83B7\u53D6\u7126\u70B9\u65F6"),code:"focus"},{key:"on_wps_open",name:s("CMD.onOpenFile",null,"\u6253\u5F00\u6587\u4EF6\u65F6"),code:"wps-open"},{key:"on_wps_save",name:s("CMD.onSaveFile",null,"\u4FDD\u5B58\u6587\u4EF6\u65F6"),code:"wps-save"},{key:"on_wps_rename",name:s("CMD.rename",null,"\u91CD\u547D\u540D\u65F6"),code:"wps-rename"},{key:"on_list_actions",name:s("CMD.onClickBtn",null,"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6"),code:"list-actions"},{key:"on_list_render_operation",name:s("CMD.cellRender",null,"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6"),code:"list-render-operation"},{key:"on_list_rowclick",name:s("CMD.rowClick",null,"\u884C\u70B9\u51FB\u65F6"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:s("CMD.rowDelete",null,"\u884C\u5220\u9664\u524D"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:s("CMD.listDataImport",null,"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D"),code:"list-before-import"},{key:"on_list_rows_checked",name:s("CMD.rowSelected",null,"\u884C\u9009\u4E2D\u65F6"),code:"list-rows-checked"},{key:"on_change_tab",name:s("CMD.tabChange",null,"\u6807\u7B7E\u9875\u5207\u6362\u65F6"),code:"change-tab"},{key:"on_modal_ok",name:s("CMD.modalConfirm",null,"\u5F39\u7A97\u786E\u8BA4\u65F6"),code:"modal-ok"}],T=class{static getEventsFromKeys(u){const e=typeof u=="string"?[u]:u;return T.events.filter(a=>e.includes(a.key))}static getEventsFromControl(u){let e=[];const a=u.eventKeys;e=e.concat(T.events.filter(l=>a.includes(l.key)));const r=u.customEvents.map(l=>{let c=l.key;return l.namespace!==void 0&&l.namespace!==null&&l.namespace!==""&&(c=l.namespace+":"+l.key),{key:c,code:l.key,name:l.name}});return e=e.concat(r),e}};let au=T;au.events=jo,t.CALC_AGGREGATE_TYPE=W,t.CALC_TOKEN_TYPE=z,t.CONTROL_BASE_TYPE=P,t.CONTROL_TYPE=L,t.CalcScriptEchoItem=Fo,t.DEFAULT_LOCALE=M,t.DESIGNER_SLOT=po,t.DateType=K,t.DepartmentEntity=C,t.EventLogic=au,t.FORM_TYPE=j,t.FieldTypes=q,t.JSONCopy=yo,t.OPT_TYPES=H,t.RulesMessage=Z,t.UserEntity=d,t.Watcher=Po,t.camelizeKeys=Go,t.debounce=To,t.decamelizeKeys=zo,t.error=bo,t.genNonDuplicateId=mo,t.getNotRepeatItems=xo,t.isArray=$,t.isBuiltInControls=Wo,t.isFunction=Lo,t.isJSONArray=No,t.isJSONObject=Uo,t.isLanguageObject=Io,t.isNumber=k,t.isNumberAndEmptyStringArray=Vo,t.isNumberArray=Ro,t.isObject=Mo,t.isPlainObject=uu,t.isString=eu,t.isStringArray=wo,t.log=R,t.logerror=O,t.loop=x,t.loopFormSchema=g,t.noop=Co,t.referenceError=go,t.toNumberOrEmpty=ko,t.updateValueFromKeys=$o,t.wait=_o,t.warn=X,Object.defineProperty(t,"__esModule",{value:!0})});
|
|
@@ -5,9 +5,9 @@ type Variable = {
|
|
|
5
5
|
[key in Keys]?: string | number;
|
|
6
6
|
};
|
|
7
7
|
export declare class RulesMessage {
|
|
8
|
-
static $i18n:
|
|
8
|
+
static $i18n: void;
|
|
9
9
|
static getMessage(messageKey: keyof Message, variable?: Variable): string;
|
|
10
|
-
static resetI18n(locale?: string):
|
|
10
|
+
static resetI18n(locale?: string): void;
|
|
11
11
|
static setLocale(locale: string, messagesI18n: any): void;
|
|
12
12
|
}
|
|
13
13
|
export {};
|
package/dist/types/enum.d.ts
CHANGED
|
@@ -131,7 +131,8 @@ export declare enum CONTROL_TYPE {
|
|
|
131
131
|
EMPLOYEE2 = "employee2",
|
|
132
132
|
DEPARTMENT2 = "department2",
|
|
133
133
|
GRID_LAYOUT_WRAP = "grid-layout-wrap",
|
|
134
|
-
VUE_PAGE = "vue-page"
|
|
134
|
+
VUE_PAGE = "vue-page",
|
|
135
|
+
REFERENCE_LIST = "reference-list"
|
|
135
136
|
}
|
|
136
137
|
export declare enum OPT_TYPES {
|
|
137
138
|
/**
|
|
@@ -235,6 +235,10 @@ declare const _default: {
|
|
|
235
235
|
signature: string;
|
|
236
236
|
uploadFile: string;
|
|
237
237
|
linkContent: string;
|
|
238
|
+
referenceList: string;
|
|
239
|
+
optionOne: string;
|
|
240
|
+
optionTwo: string;
|
|
241
|
+
optionThird: string;
|
|
238
242
|
};
|
|
239
243
|
enUS: {
|
|
240
244
|
isNotNumber: string;
|
|
@@ -389,6 +393,10 @@ declare const _default: {
|
|
|
389
393
|
batchSubmissionListButton: string;
|
|
390
394
|
exportRecordListButton: string;
|
|
391
395
|
listViewSelect: string;
|
|
396
|
+
referenceList: string;
|
|
397
|
+
optionOne: string;
|
|
398
|
+
optionTwo: string;
|
|
399
|
+
optionThird: string;
|
|
392
400
|
};
|
|
393
401
|
jaJP: {
|
|
394
402
|
isNotNumber: string;
|
|
@@ -543,6 +551,10 @@ declare const _default: {
|
|
|
543
551
|
batchSubmissionListButton: string;
|
|
544
552
|
exportRecordListButton: string;
|
|
545
553
|
listViewSelect: string;
|
|
554
|
+
referenceList: string;
|
|
555
|
+
optionOne: string;
|
|
556
|
+
optionTwo: string;
|
|
557
|
+
optionThird: string;
|
|
546
558
|
};
|
|
547
559
|
};
|
|
548
560
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-shared",
|
|
3
|
-
"version": "2.23.0-beta.
|
|
3
|
+
"version": "2.23.0-beta.20",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,8 +26,10 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
+
"@byteluck-fe/locale-message": "^1.0.8",
|
|
29
30
|
"fast-json-clone": "^1.0.2",
|
|
30
|
-
"humps": "^2.0.1"
|
|
31
|
+
"humps": "^2.0.1",
|
|
32
|
+
"vue-i18n": "^9.13.1"
|
|
31
33
|
},
|
|
32
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "c96a34b95e765e413057ee7170bcbf4cf8122d68"
|
|
33
35
|
}
|