@byteluck-fe/model-driven-shared 2.23.0-beta.3 → 2.23.0-beta.6

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