{"version":3,"file":"vue-library-chunks-3d9a1083-40e583f9.js","sources":["../../node_modules/vue-demi/lib/index.mjs","../../node_modules/pinia/dist/pinia.mjs","../../node_modules/vue-router/dist/vue-router.mjs","../../node_modules/@intlify/shared/dist/shared.mjs","../../node_modules/@intlify/message-compiler/dist/message-compiler.esm-browser.js","../../node_modules/@intlify/core-base/dist/core-base.mjs","../../node_modules/vue-i18n/dist/vue-i18n.mjs","../../node_modules/@vue-a11y/skip-to/dist/skip-to.es.js"],"sourcesContent":["import * as Vue from 'vue'\n\nvar isVue2 = false\nvar isVue3 = true\nvar Vue2 = undefined\n\nfunction install() {}\n\nexport function set(target, key, val) {\n if (Array.isArray(target)) {\n target.length = Math.max(target.length, key)\n target.splice(key, 1, val)\n return val\n }\n target[key] = val\n return val\n}\n\nexport function del(target, key) {\n if (Array.isArray(target)) {\n target.splice(key, 1)\n return\n }\n delete target[key]\n}\n\nexport * from 'vue'\nexport {\n Vue,\n Vue2,\n isVue2,\n isVue3,\n install,\n}\n","/*!\n * pinia v2.1.7\n * (c) 2023 Eduardo San Martin Morote\n * @license MIT\n */\nimport { hasInjectionContext, inject, toRaw, watch, unref, markRaw, effectScope, ref, isVue2, isRef, isReactive, set, getCurrentScope, onScopeDispose, getCurrentInstance, reactive, toRef, del, nextTick, computed, toRefs } from 'vue-demi';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\n/**\n * setActivePinia must be called to handle SSR at the top of functions like\n * `fetch`, `setup`, `serverPrefetch` and others\n */\nlet activePinia;\n/**\n * Sets or unsets the active pinia. Used in SSR and internally when calling\n * actions and getters\n *\n * @param pinia - Pinia instance\n */\n// @ts-expect-error: cannot constrain the type of the return\nconst setActivePinia = (pinia) => (activePinia = pinia);\n/**\n * Get the currently active pinia if there is any.\n */\nconst getActivePinia = () => (hasInjectionContext() && inject(piniaSymbol)) || activePinia;\nconst piniaSymbol = ((process.env.NODE_ENV !== 'production') ? Symbol('pinia') : /* istanbul ignore next */ Symbol());\n\nfunction isPlainObject(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\no) {\n return (o &&\n typeof o === 'object' &&\n Object.prototype.toString.call(o) === '[object Object]' &&\n typeof o.toJSON !== 'function');\n}\n// type DeepReadonly = { readonly [P in keyof T]: DeepReadonly }\n// TODO: can we change these to numbers?\n/**\n * Possible types for SubscriptionCallback\n */\nvar MutationType;\n(function (MutationType) {\n /**\n * Direct mutation of the state:\n *\n * - `store.name = 'new name'`\n * - `store.$state.name = 'new name'`\n * - `store.list.push('new item')`\n */\n MutationType[\"direct\"] = \"direct\";\n /**\n * Mutated the state with `$patch` and an object\n *\n * - `store.$patch({ name: 'newName' })`\n */\n MutationType[\"patchObject\"] = \"patch object\";\n /**\n * Mutated the state with `$patch` and a function\n *\n * - `store.$patch(state => state.name = 'newName')`\n */\n MutationType[\"patchFunction\"] = \"patch function\";\n // maybe reset? for $state = {} and $reset\n})(MutationType || (MutationType = {}));\n\nconst IS_CLIENT = typeof window !== 'undefined';\n/**\n * Should we add the devtools plugins.\n * - only if dev mode or forced through the prod devtools flag\n * - not in test\n * - only if window exists (could change in the future)\n */\nconst USE_DEVTOOLS = ((process.env.NODE_ENV !== 'production') || (typeof __VUE_PROD_DEVTOOLS__ !== 'undefined' && __VUE_PROD_DEVTOOLS__)) && !(process.env.NODE_ENV === 'test') && IS_CLIENT;\n\n/*\n * FileSaver.js A saveAs() FileSaver implementation.\n *\n * Originally by Eli Grey, adapted as an ESM module by Eduardo San Martin\n * Morote.\n *\n * License : MIT\n */\n// The one and only way of getting global scope in all environments\n// https://stackoverflow.com/q/3277182/1008999\nconst _global = /*#__PURE__*/ (() => typeof window === 'object' && window.window === window\n ? window\n : typeof self === 'object' && self.self === self\n ? self\n : typeof global === 'object' && global.global === global\n ? global\n : typeof globalThis === 'object'\n ? globalThis\n : { HTMLElement: null })();\nfunction bom(blob, { autoBom = false } = {}) {\n // prepend BOM for UTF-8 XML and text/* types (including HTML)\n // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF\n if (autoBom &&\n /^\\s*(?:text\\/\\S*|application\\/xml|\\S*\\/\\S*\\+xml)\\s*;.*charset\\s*=\\s*utf-8/i.test(blob.type)) {\n return new Blob([String.fromCharCode(0xfeff), blob], { type: blob.type });\n }\n return blob;\n}\nfunction download(url, name, opts) {\n const xhr = new XMLHttpRequest();\n xhr.open('GET', url);\n xhr.responseType = 'blob';\n xhr.onload = function () {\n saveAs(xhr.response, name, opts);\n };\n xhr.onerror = function () {\n console.error('could not download file');\n };\n xhr.send();\n}\nfunction corsEnabled(url) {\n const xhr = new XMLHttpRequest();\n // use sync to avoid popup blocker\n xhr.open('HEAD', url, false);\n try {\n xhr.send();\n }\n catch (e) { }\n return xhr.status >= 200 && xhr.status <= 299;\n}\n// `a.click()` doesn't work for all browsers (#465)\nfunction click(node) {\n try {\n node.dispatchEvent(new MouseEvent('click'));\n }\n catch (e) {\n const evt = document.createEvent('MouseEvents');\n evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null);\n node.dispatchEvent(evt);\n }\n}\nconst _navigator = \n typeof navigator === 'object' ? navigator : { userAgent: '' };\n// Detect WebView inside a native macOS app by ruling out all browsers\n// We just need to check for 'Safari' because all other browsers (besides Firefox) include that too\n// https://www.whatismybrowser.com/guides/the-latest-user-agent/macos\nconst isMacOSWebView = /*#__PURE__*/ (() => /Macintosh/.test(_navigator.userAgent) &&\n /AppleWebKit/.test(_navigator.userAgent) &&\n !/Safari/.test(_navigator.userAgent))();\nconst saveAs = !IS_CLIENT\n ? () => { } // noop\n : // Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView or mini program\n typeof HTMLAnchorElement !== 'undefined' &&\n 'download' in HTMLAnchorElement.prototype &&\n !isMacOSWebView\n ? downloadSaveAs\n : // Use msSaveOrOpenBlob as a second approach\n 'msSaveOrOpenBlob' in _navigator\n ? msSaveAs\n : // Fallback to using FileReader and a popup\n fileSaverSaveAs;\nfunction downloadSaveAs(blob, name = 'download', opts) {\n const a = document.createElement('a');\n a.download = name;\n a.rel = 'noopener'; // tabnabbing\n // TODO: detect chrome extensions & packaged apps\n // a.target = '_blank'\n if (typeof blob === 'string') {\n // Support regular links\n a.href = blob;\n if (a.origin !== location.origin) {\n if (corsEnabled(a.href)) {\n download(blob, name, opts);\n }\n else {\n a.target = '_blank';\n click(a);\n }\n }\n else {\n click(a);\n }\n }\n else {\n // Support blobs\n a.href = URL.createObjectURL(blob);\n setTimeout(function () {\n URL.revokeObjectURL(a.href);\n }, 4e4); // 40s\n setTimeout(function () {\n click(a);\n }, 0);\n }\n}\nfunction msSaveAs(blob, name = 'download', opts) {\n if (typeof blob === 'string') {\n if (corsEnabled(blob)) {\n download(blob, name, opts);\n }\n else {\n const a = document.createElement('a');\n a.href = blob;\n a.target = '_blank';\n setTimeout(function () {\n click(a);\n });\n }\n }\n else {\n // @ts-ignore: works on windows\n navigator.msSaveOrOpenBlob(bom(blob, opts), name);\n }\n}\nfunction fileSaverSaveAs(blob, name, opts, popup) {\n // Open a popup immediately do go around popup blocker\n // Mostly only available on user interaction and the fileReader is async so...\n popup = popup || open('', '_blank');\n if (popup) {\n popup.document.title = popup.document.body.innerText = 'downloading...';\n }\n if (typeof blob === 'string')\n return download(blob, name, opts);\n const force = blob.type === 'application/octet-stream';\n const isSafari = /constructor/i.test(String(_global.HTMLElement)) || 'safari' in _global;\n const isChromeIOS = /CriOS\\/[\\d]+/.test(navigator.userAgent);\n if ((isChromeIOS || (force && isSafari) || isMacOSWebView) &&\n typeof FileReader !== 'undefined') {\n // Safari doesn't allow downloading of blob URLs\n const reader = new FileReader();\n reader.onloadend = function () {\n let url = reader.result;\n if (typeof url !== 'string') {\n popup = null;\n throw new Error('Wrong reader.result type');\n }\n url = isChromeIOS\n ? url\n : url.replace(/^data:[^;]*;/, 'data:attachment/file;');\n if (popup) {\n popup.location.href = url;\n }\n else {\n location.assign(url);\n }\n popup = null; // reverse-tabnabbing #460\n };\n reader.readAsDataURL(blob);\n }\n else {\n const url = URL.createObjectURL(blob);\n if (popup)\n popup.location.assign(url);\n else\n location.href = url;\n popup = null; // reverse-tabnabbing #460\n setTimeout(function () {\n URL.revokeObjectURL(url);\n }, 4e4); // 40s\n }\n}\n\n/**\n * Shows a toast or console.log\n *\n * @param message - message to log\n * @param type - different color of the tooltip\n */\nfunction toastMessage(message, type) {\n const piniaMessage = '๐Ÿ ' + message;\n if (typeof __VUE_DEVTOOLS_TOAST__ === 'function') {\n // No longer available :(\n __VUE_DEVTOOLS_TOAST__(piniaMessage, type);\n }\n else if (type === 'error') {\n console.error(piniaMessage);\n }\n else if (type === 'warn') {\n console.warn(piniaMessage);\n }\n else {\n console.log(piniaMessage);\n }\n}\nfunction isPinia(o) {\n return '_a' in o && 'install' in o;\n}\n\n/**\n * This file contain devtools actions, they are not Pinia actions.\n */\n// ---\nfunction checkClipboardAccess() {\n if (!('clipboard' in navigator)) {\n toastMessage(`Your browser doesn't support the Clipboard API`, 'error');\n return true;\n }\n}\nfunction checkNotFocusedError(error) {\n if (error instanceof Error &&\n error.message.toLowerCase().includes('document is not focused')) {\n toastMessage('You need to activate the \"Emulate a focused page\" setting in the \"Rendering\" panel of devtools.', 'warn');\n return true;\n }\n return false;\n}\nasync function actionGlobalCopyState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n await navigator.clipboard.writeText(JSON.stringify(pinia.state.value));\n toastMessage('Global state copied to clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to serialize the state. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalPasteState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n loadStoresState(pinia, JSON.parse(await navigator.clipboard.readText()));\n toastMessage('Global state pasted from clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to deserialize the state from clipboard. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalSaveState(pinia) {\n try {\n saveAs(new Blob([JSON.stringify(pinia.state.value)], {\n type: 'text/plain;charset=utf-8',\n }), 'pinia-state.json');\n }\n catch (error) {\n toastMessage(`Failed to export the state as JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nlet fileInput;\nfunction getFileOpener() {\n if (!fileInput) {\n fileInput = document.createElement('input');\n fileInput.type = 'file';\n fileInput.accept = '.json';\n }\n function openFile() {\n return new Promise((resolve, reject) => {\n fileInput.onchange = async () => {\n const files = fileInput.files;\n if (!files)\n return resolve(null);\n const file = files.item(0);\n if (!file)\n return resolve(null);\n return resolve({ text: await file.text(), file });\n };\n // @ts-ignore: TODO: changed from 4.3 to 4.4\n fileInput.oncancel = () => resolve(null);\n fileInput.onerror = reject;\n fileInput.click();\n });\n }\n return openFile;\n}\nasync function actionGlobalOpenStateFile(pinia) {\n try {\n const open = getFileOpener();\n const result = await open();\n if (!result)\n return;\n const { text, file } = result;\n loadStoresState(pinia, JSON.parse(text));\n toastMessage(`Global state imported from \"${file.name}\".`);\n }\n catch (error) {\n toastMessage(`Failed to import the state from JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nfunction loadStoresState(pinia, state) {\n for (const key in state) {\n const storeState = pinia.state.value[key];\n // store is already instantiated, patch it\n if (storeState) {\n Object.assign(storeState, state[key]);\n }\n else {\n // store is not instantiated, set the initial state\n pinia.state.value[key] = state[key];\n }\n }\n}\n\nfunction formatDisplay(display) {\n return {\n _custom: {\n display,\n },\n };\n}\nconst PINIA_ROOT_LABEL = '๐Ÿ Pinia (root)';\nconst PINIA_ROOT_ID = '_root';\nfunction formatStoreForInspectorTree(store) {\n return isPinia(store)\n ? {\n id: PINIA_ROOT_ID,\n label: PINIA_ROOT_LABEL,\n }\n : {\n id: store.$id,\n label: store.$id,\n };\n}\nfunction formatStoreForInspectorState(store) {\n if (isPinia(store)) {\n const storeNames = Array.from(store._s.keys());\n const storeMap = store._s;\n const state = {\n state: storeNames.map((storeId) => ({\n editable: true,\n key: storeId,\n value: store.state.value[storeId],\n })),\n getters: storeNames\n .filter((id) => storeMap.get(id)._getters)\n .map((id) => {\n const store = storeMap.get(id);\n return {\n editable: false,\n key: id,\n value: store._getters.reduce((getters, key) => {\n getters[key] = store[key];\n return getters;\n }, {}),\n };\n }),\n };\n return state;\n }\n const state = {\n state: Object.keys(store.$state).map((key) => ({\n editable: true,\n key,\n value: store.$state[key],\n })),\n };\n // avoid adding empty getters\n if (store._getters && store._getters.length) {\n state.getters = store._getters.map((getterName) => ({\n editable: false,\n key: getterName,\n value: store[getterName],\n }));\n }\n if (store._customProperties.size) {\n state.customProperties = Array.from(store._customProperties).map((key) => ({\n editable: true,\n key,\n value: store[key],\n }));\n }\n return state;\n}\nfunction formatEventData(events) {\n if (!events)\n return {};\n if (Array.isArray(events)) {\n // TODO: handle add and delete for arrays and objects\n return events.reduce((data, event) => {\n data.keys.push(event.key);\n data.operations.push(event.type);\n data.oldValue[event.key] = event.oldValue;\n data.newValue[event.key] = event.newValue;\n return data;\n }, {\n oldValue: {},\n keys: [],\n operations: [],\n newValue: {},\n });\n }\n else {\n return {\n operation: formatDisplay(events.type),\n key: formatDisplay(events.key),\n oldValue: events.oldValue,\n newValue: events.newValue,\n };\n }\n}\nfunction formatMutationType(type) {\n switch (type) {\n case MutationType.direct:\n return 'mutation';\n case MutationType.patchFunction:\n return '$patch';\n case MutationType.patchObject:\n return '$patch';\n default:\n return 'unknown';\n }\n}\n\n// timeline can be paused when directly changing the state\nlet isTimelineActive = true;\nconst componentStateTypes = [];\nconst MUTATIONS_LAYER_ID = 'pinia:mutations';\nconst INSPECTOR_ID = 'pinia';\nconst { assign: assign$1 } = Object;\n/**\n * Gets the displayed name of a store in devtools\n *\n * @param id - id of the store\n * @returns a formatted string\n */\nconst getStoreType = (id) => '๐Ÿ ' + id;\n/**\n * Add the pinia plugin without any store. Allows displaying a Pinia plugin tab\n * as soon as it is added to the application.\n *\n * @param app - Vue application\n * @param pinia - pinia instance\n */\nfunction registerPiniaDevtools(app, pinia) {\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia ๐Ÿ',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n }, (api) => {\n if (typeof api.now !== 'function') {\n toastMessage('You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.');\n }\n api.addTimelineLayer({\n id: MUTATIONS_LAYER_ID,\n label: `Pinia ๐Ÿ`,\n color: 0xe5df88,\n });\n api.addInspector({\n id: INSPECTOR_ID,\n label: 'Pinia ๐Ÿ',\n icon: 'storage',\n treeFilterPlaceholder: 'Search stores',\n actions: [\n {\n icon: 'content_copy',\n action: () => {\n actionGlobalCopyState(pinia);\n },\n tooltip: 'Serialize and copy the state',\n },\n {\n icon: 'content_paste',\n action: async () => {\n await actionGlobalPasteState(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Replace the state with the content of your clipboard',\n },\n {\n icon: 'save',\n action: () => {\n actionGlobalSaveState(pinia);\n },\n tooltip: 'Save the state as a JSON file',\n },\n {\n icon: 'folder_open',\n action: async () => {\n await actionGlobalOpenStateFile(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Import the state from a JSON file',\n },\n ],\n nodeActions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state (with \"$reset\")',\n action: (nodeId) => {\n const store = pinia._s.get(nodeId);\n if (!store) {\n toastMessage(`Cannot reset \"${nodeId}\" store because it wasn't found.`, 'warn');\n }\n else if (typeof store.$reset !== 'function') {\n toastMessage(`Cannot reset \"${nodeId}\" store because it doesn't have a \"$reset\" method implemented.`, 'warn');\n }\n else {\n store.$reset();\n toastMessage(`Store \"${nodeId}\" reset.`);\n }\n },\n },\n ],\n });\n api.on.inspectComponent((payload, ctx) => {\n const proxy = (payload.componentInstance &&\n payload.componentInstance.proxy);\n if (proxy && proxy._pStores) {\n const piniaStores = payload.componentInstance.proxy._pStores;\n Object.values(piniaStores).forEach((store) => {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'state',\n editable: true,\n value: store._isOptionsAPI\n ? {\n _custom: {\n value: toRaw(store.$state),\n actions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state of this store',\n action: () => store.$reset(),\n },\n ],\n },\n }\n : // NOTE: workaround to unwrap transferred refs\n Object.keys(store.$state).reduce((state, key) => {\n state[key] = store.$state[key];\n return state;\n }, {}),\n });\n if (store._getters && store._getters.length) {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'getters',\n editable: false,\n value: store._getters.reduce((getters, key) => {\n try {\n getters[key] = store[key];\n }\n catch (error) {\n // @ts-expect-error: we just want to show it in devtools\n getters[key] = error;\n }\n return getters;\n }, {}),\n });\n }\n });\n }\n });\n api.on.getInspectorTree((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n let stores = [pinia];\n stores = stores.concat(Array.from(pinia._s.values()));\n payload.rootNodes = (payload.filter\n ? stores.filter((store) => '$id' in store\n ? store.$id\n .toLowerCase()\n .includes(payload.filter.toLowerCase())\n : PINIA_ROOT_LABEL.toLowerCase().includes(payload.filter.toLowerCase()))\n : stores).map(formatStoreForInspectorTree);\n }\n });\n api.on.getInspectorState((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n // this could be the selected store restored for a different project\n // so it's better not to say anything here\n return;\n }\n if (inspectedStore) {\n payload.state = formatStoreForInspectorState(inspectedStore);\n }\n }\n });\n api.on.editInspectorState((payload, ctx) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n return toastMessage(`store \"${payload.nodeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (!isPinia(inspectedStore)) {\n // access only the state\n if (path.length !== 1 ||\n !inspectedStore._customProperties.has(path[0]) ||\n path[0] in inspectedStore.$state) {\n path.unshift('$state');\n }\n }\n else {\n // Root access, we can omit the `.value` because the devtools API does it for us\n path.unshift('state');\n }\n isTimelineActive = false;\n payload.set(inspectedStore, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n api.on.editComponentState((payload) => {\n if (payload.type.startsWith('๐Ÿ')) {\n const storeId = payload.type.replace(/^๐Ÿ\\s*/, '');\n const store = pinia._s.get(storeId);\n if (!store) {\n return toastMessage(`store \"${storeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (path[0] !== 'state') {\n return toastMessage(`Invalid path for store \"${storeId}\":\\n${path}\\nOnly state can be modified.`);\n }\n // rewrite the first entry to be able to directly set the state as\n // well as any other path\n path[0] = '$state';\n isTimelineActive = false;\n payload.set(store, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n });\n}\nfunction addStoreToDevtools(app, store) {\n if (!componentStateTypes.includes(getStoreType(store.$id))) {\n componentStateTypes.push(getStoreType(store.$id));\n }\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia ๐Ÿ',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n settings: {\n logStoreChanges: {\n label: 'Notify about new/deleted stores',\n type: 'boolean',\n defaultValue: true,\n },\n // useEmojis: {\n // label: 'Use emojis in messages โšก๏ธ',\n // type: 'boolean',\n // defaultValue: true,\n // },\n },\n }, (api) => {\n // gracefully handle errors\n const now = typeof api.now === 'function' ? api.now.bind(api) : Date.now;\n store.$onAction(({ after, onError, name, args }) => {\n const groupId = runningActionId++;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '๐Ÿ›ซ ' + name,\n subtitle: 'start',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n },\n groupId,\n },\n });\n after((result) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '๐Ÿ›ฌ ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n result,\n },\n groupId,\n },\n });\n });\n onError((error) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n logType: 'error',\n title: '๐Ÿ’ฅ ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n error,\n },\n groupId,\n },\n });\n });\n }, true);\n store._customProperties.forEach((name) => {\n watch(() => unref(store[name]), (newValue, oldValue) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (isTimelineActive) {\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: 'Change',\n subtitle: name,\n data: {\n newValue,\n oldValue,\n },\n groupId: activeAction,\n },\n });\n }\n }, { deep: true });\n });\n store.$subscribe(({ events, type }, state) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (!isTimelineActive)\n return;\n // rootStore.state[store.id] = state\n const eventData = {\n time: now(),\n title: formatMutationType(type),\n data: assign$1({ store: formatDisplay(store.$id) }, formatEventData(events)),\n groupId: activeAction,\n };\n if (type === MutationType.patchFunction) {\n eventData.subtitle = 'โคต๏ธ';\n }\n else if (type === MutationType.patchObject) {\n eventData.subtitle = '๐Ÿงฉ';\n }\n else if (events && !Array.isArray(events)) {\n eventData.subtitle = events.type;\n }\n if (events) {\n eventData.data['rawEvent(s)'] = {\n _custom: {\n display: 'DebuggerEvent',\n type: 'object',\n tooltip: 'raw DebuggerEvent[]',\n value: events,\n },\n };\n }\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: eventData,\n });\n }, { detached: true, flush: 'sync' });\n const hotUpdate = store._hotUpdate;\n store._hotUpdate = markRaw((newStore) => {\n hotUpdate(newStore);\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '๐Ÿ”ฅ ' + store.$id,\n subtitle: 'HMR update',\n data: {\n store: formatDisplay(store.$id),\n info: formatDisplay(`HMR update`),\n },\n },\n });\n // update the devtools too\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n });\n const { $dispose } = store;\n store.$dispose = () => {\n $dispose();\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`Disposed \"${store.$id}\" store ๐Ÿ—‘`);\n };\n // trigger an update so it can display new registered stores\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`\"${store.$id}\" store installed ๐Ÿ†•`);\n });\n}\nlet runningActionId = 0;\nlet activeAction;\n/**\n * Patches a store to enable action grouping in devtools by wrapping the store with a Proxy that is passed as the\n * context of all actions, allowing us to set `runningAction` on each access and effectively associating any state\n * mutation to the action.\n *\n * @param store - store to patch\n * @param actionNames - list of actionst to patch\n */\nfunction patchActionForGrouping(store, actionNames, wrapWithProxy) {\n // original actions of the store as they are given by pinia. We are going to override them\n const actions = actionNames.reduce((storeActions, actionName) => {\n // use toRaw to avoid tracking #541\n storeActions[actionName] = toRaw(store)[actionName];\n return storeActions;\n }, {});\n for (const actionName in actions) {\n store[actionName] = function () {\n // the running action id is incremented in a before action hook\n const _actionId = runningActionId;\n const trackedStore = wrapWithProxy\n ? new Proxy(store, {\n get(...args) {\n activeAction = _actionId;\n return Reflect.get(...args);\n },\n set(...args) {\n activeAction = _actionId;\n return Reflect.set(...args);\n },\n })\n : store;\n // For Setup Stores we need https://github.com/tc39/proposal-async-context\n activeAction = _actionId;\n const retValue = actions[actionName].apply(trackedStore, arguments);\n // this is safer as async actions in Setup Stores would associate mutations done outside of the action\n activeAction = undefined;\n return retValue;\n };\n }\n}\n/**\n * pinia.use(devtoolsPlugin)\n */\nfunction devtoolsPlugin({ app, store, options }) {\n // HMR module\n if (store.$id.startsWith('__hot:')) {\n return;\n }\n // detect option api vs setup api\n store._isOptionsAPI = !!options.state;\n patchActionForGrouping(store, Object.keys(options.actions), store._isOptionsAPI);\n // Upgrade the HMR to also update the new actions\n const originalHotUpdate = store._hotUpdate;\n toRaw(store)._hotUpdate = function (newStore) {\n originalHotUpdate.apply(this, arguments);\n patchActionForGrouping(store, Object.keys(newStore._hmrPayload.actions), !!store._isOptionsAPI);\n };\n addStoreToDevtools(app, \n // FIXME: is there a way to allow the assignment from Store to StoreGeneric?\n store);\n}\n\n/**\n * Creates a Pinia instance to be used by the application\n */\nfunction createPinia() {\n const scope = effectScope(true);\n // NOTE: here we could check the window object for a state and directly set it\n // if there is anything like it with Vue 3 SSR\n const state = scope.run(() => ref({}));\n let _p = [];\n // plugins added before calling app.use(pinia)\n let toBeInstalled = [];\n const pinia = markRaw({\n install(app) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n if (!isVue2) {\n pinia._a = app;\n app.provide(piniaSymbol, pinia);\n app.config.globalProperties.$pinia = pinia;\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(app, pinia);\n }\n toBeInstalled.forEach((plugin) => _p.push(plugin));\n toBeInstalled = [];\n }\n },\n use(plugin) {\n if (!this._a && !isVue2) {\n toBeInstalled.push(plugin);\n }\n else {\n _p.push(plugin);\n }\n return this;\n },\n _p,\n // it's actually undefined here\n // @ts-expect-error\n _a: null,\n _e: scope,\n _s: new Map(),\n state,\n });\n // pinia devtools rely on dev only features so they cannot be forced unless\n // the dev build of Vue is used. Avoid old browsers like IE11.\n if (USE_DEVTOOLS && typeof Proxy !== 'undefined') {\n pinia.use(devtoolsPlugin);\n }\n return pinia;\n}\n\n/**\n * Checks if a function is a `StoreDefinition`.\n *\n * @param fn - object to test\n * @returns true if `fn` is a StoreDefinition\n */\nconst isUseStore = (fn) => {\n return typeof fn === 'function' && typeof fn.$id === 'string';\n};\n/**\n * Mutates in place `newState` with `oldState` to _hot update_ it. It will\n * remove any key not existing in `newState` and recursively merge plain\n * objects.\n *\n * @param newState - new state object to be patched\n * @param oldState - old state that should be used to patch newState\n * @returns - newState\n */\nfunction patchObject(newState, oldState) {\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in oldState) {\n const subPatch = oldState[key];\n // skip the whole sub tree\n if (!(key in newState)) {\n continue;\n }\n const targetValue = newState[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n newState[key] = patchObject(targetValue, subPatch);\n }\n else {\n // objects are either a bit more complex (e.g. refs) or primitives, so we\n // just set the whole thing\n if (isVue2) {\n set(newState, key, subPatch);\n }\n else {\n newState[key] = subPatch;\n }\n }\n }\n return newState;\n}\n/**\n * Creates an _accept_ function to pass to `import.meta.hot` in Vite applications.\n *\n * @example\n * ```js\n * const useUser = defineStore(...)\n * if (import.meta.hot) {\n * import.meta.hot.accept(acceptHMRUpdate(useUser, import.meta.hot))\n * }\n * ```\n *\n * @param initialUseStore - return of the defineStore to hot update\n * @param hot - `import.meta.hot`\n */\nfunction acceptHMRUpdate(initialUseStore, hot) {\n // strip as much as possible from iife.prod\n if (!(process.env.NODE_ENV !== 'production')) {\n return () => { };\n }\n return (newModule) => {\n const pinia = hot.data.pinia || initialUseStore._pinia;\n if (!pinia) {\n // this store is still not used\n return;\n }\n // preserve the pinia instance across loads\n hot.data.pinia = pinia;\n // console.log('got data', newStore)\n for (const exportName in newModule) {\n const useStore = newModule[exportName];\n // console.log('checking for', exportName)\n if (isUseStore(useStore) && pinia._s.has(useStore.$id)) {\n // console.log('Accepting update for', useStore.$id)\n const id = useStore.$id;\n if (id !== initialUseStore.$id) {\n console.warn(`The id of the store changed from \"${initialUseStore.$id}\" to \"${id}\". Reloading.`);\n // return import.meta.hot.invalidate()\n return hot.invalidate();\n }\n const existingStore = pinia._s.get(id);\n if (!existingStore) {\n console.log(`[Pinia]: skipping hmr because store doesn't exist yet`);\n return;\n }\n useStore(pinia, existingStore);\n }\n }\n };\n}\n\nconst noop = () => { };\nfunction addSubscription(subscriptions, callback, detached, onCleanup = noop) {\n subscriptions.push(callback);\n const removeSubscription = () => {\n const idx = subscriptions.indexOf(callback);\n if (idx > -1) {\n subscriptions.splice(idx, 1);\n onCleanup();\n }\n };\n if (!detached && getCurrentScope()) {\n onScopeDispose(removeSubscription);\n }\n return removeSubscription;\n}\nfunction triggerSubscriptions(subscriptions, ...args) {\n subscriptions.slice().forEach((callback) => {\n callback(...args);\n });\n}\n\nconst fallbackRunWithContext = (fn) => fn();\nfunction mergeReactiveObjects(target, patchToApply) {\n // Handle Map instances\n if (target instanceof Map && patchToApply instanceof Map) {\n patchToApply.forEach((value, key) => target.set(key, value));\n }\n // Handle Set instances\n if (target instanceof Set && patchToApply instanceof Set) {\n patchToApply.forEach(target.add, target);\n }\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in patchToApply) {\n if (!patchToApply.hasOwnProperty(key))\n continue;\n const subPatch = patchToApply[key];\n const targetValue = target[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n target.hasOwnProperty(key) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n // NOTE: here I wanted to warn about inconsistent types but it's not possible because in setup stores one might\n // start the value of a property as a certain type e.g. a Map, and then for some reason, during SSR, change that\n // to `undefined`. When trying to hydrate, we want to override the Map with `undefined`.\n target[key] = mergeReactiveObjects(targetValue, subPatch);\n }\n else {\n // @ts-expect-error: subPatch is a valid value\n target[key] = subPatch;\n }\n }\n return target;\n}\nconst skipHydrateSymbol = (process.env.NODE_ENV !== 'production')\n ? Symbol('pinia:skipHydration')\n : /* istanbul ignore next */ Symbol();\nconst skipHydrateMap = /*#__PURE__*/ new WeakMap();\n/**\n * Tells Pinia to skip the hydration process of a given object. This is useful in setup stores (only) when you return a\n * stateful object in the store but it isn't really state. e.g. returning a router instance in a setup store.\n *\n * @param obj - target object\n * @returns obj\n */\nfunction skipHydrate(obj) {\n return isVue2\n ? // in @vue/composition-api, the refs are sealed so defineProperty doesn't work...\n /* istanbul ignore next */ skipHydrateMap.set(obj, 1) && obj\n : Object.defineProperty(obj, skipHydrateSymbol, {});\n}\n/**\n * Returns whether a value should be hydrated\n *\n * @param obj - target variable\n * @returns true if `obj` should be hydrated\n */\nfunction shouldHydrate(obj) {\n return isVue2\n ? /* istanbul ignore next */ !skipHydrateMap.has(obj)\n : !isPlainObject(obj) || !obj.hasOwnProperty(skipHydrateSymbol);\n}\nconst { assign } = Object;\nfunction isComputed(o) {\n return !!(isRef(o) && o.effect);\n}\nfunction createOptionsStore(id, options, pinia, hot) {\n const { state, actions, getters } = options;\n const initialState = pinia.state.value[id];\n let store;\n function setup() {\n if (!initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, id, state ? state() : {});\n }\n else {\n pinia.state.value[id] = state ? state() : {};\n }\n }\n // avoid creating a state in pinia.state.value\n const localState = (process.env.NODE_ENV !== 'production') && hot\n ? // use ref() to unwrap refs inside state TODO: check if this is still necessary\n toRefs(ref(state ? state() : {}).value)\n : toRefs(pinia.state.value[id]);\n return assign(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => {\n if ((process.env.NODE_ENV !== 'production') && name in localState) {\n console.warn(`[๐Ÿ]: A getter cannot have the same name as another state property. Rename one of them. Found with \"${name}\" in store \"${id}\".`);\n }\n computedGetters[name] = markRaw(computed(() => {\n setActivePinia(pinia);\n // it was created just before\n const store = pinia._s.get(id);\n // allow cross using stores\n /* istanbul ignore next */\n if (isVue2 && !store._r)\n return;\n // @ts-expect-error\n // return getters![name].call(context, context)\n // TODO: avoid reading the getter while assigning with a global variable\n return getters[name].call(store, store);\n }));\n return computedGetters;\n }, {}));\n }\n store = createSetupStore(id, setup, options, pinia, hot, true);\n return store;\n}\nfunction createSetupStore($id, setup, options = {}, pinia, hot, isOptionsStore) {\n let scope;\n const optionsForPlugin = assign({ actions: {} }, options);\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && !pinia._e.active) {\n throw new Error('Pinia destroyed');\n }\n // watcher options for $subscribe\n const $subscribeOptions = {\n deep: true,\n // flush: 'post',\n };\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production') && !isVue2) {\n $subscribeOptions.onTrigger = (event) => {\n /* istanbul ignore else */\n if (isListening) {\n debuggerEvents = event;\n // avoid triggering this while the store is being built and the state is being set in pinia\n }\n else if (isListening == false && !store._hotUpdating) {\n // let patch send all the events together later\n /* istanbul ignore else */\n if (Array.isArray(debuggerEvents)) {\n debuggerEvents.push(event);\n }\n else {\n console.error('๐Ÿ debuggerEvents should be an array. This is most likely an internal Pinia bug.');\n }\n }\n };\n }\n // internal state\n let isListening; // set to true at the end\n let isSyncListening; // set to true at the end\n let subscriptions = [];\n let actionSubscriptions = [];\n let debuggerEvents;\n const initialState = pinia.state.value[$id];\n // avoid setting the state for option stores if it is set\n // by the setup\n if (!isOptionsStore && !initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, $id, {});\n }\n else {\n pinia.state.value[$id] = {};\n }\n }\n const hotState = ref({});\n // avoid triggering too many listeners\n // https://github.com/vuejs/pinia/issues/1129\n let activeListener;\n function $patch(partialStateOrMutator) {\n let subscriptionMutation;\n isListening = isSyncListening = false;\n // reset the debugger events since patches are sync\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n debuggerEvents = [];\n }\n if (typeof partialStateOrMutator === 'function') {\n partialStateOrMutator(pinia.state.value[$id]);\n subscriptionMutation = {\n type: MutationType.patchFunction,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n else {\n mergeReactiveObjects(pinia.state.value[$id], partialStateOrMutator);\n subscriptionMutation = {\n type: MutationType.patchObject,\n payload: partialStateOrMutator,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n const myListenerId = (activeListener = Symbol());\n nextTick().then(() => {\n if (activeListener === myListenerId) {\n isListening = true;\n }\n });\n isSyncListening = true;\n // because we paused the watcher, we need to manually call the subscriptions\n triggerSubscriptions(subscriptions, subscriptionMutation, pinia.state.value[$id]);\n }\n const $reset = isOptionsStore\n ? function $reset() {\n const { state } = options;\n const newState = state ? state() : {};\n // we use a patch to group all changes into one single subscription\n this.$patch(($state) => {\n assign($state, newState);\n });\n }\n : /* istanbul ignore next */\n (process.env.NODE_ENV !== 'production')\n ? () => {\n throw new Error(`๐Ÿ: Store \"${$id}\" is built using the setup syntax and does not implement $reset().`);\n }\n : noop;\n function $dispose() {\n scope.stop();\n subscriptions = [];\n actionSubscriptions = [];\n pinia._s.delete($id);\n }\n /**\n * Wraps an action to handle subscriptions.\n *\n * @param name - name of the action\n * @param action - action to wrap\n * @returns a wrapped action to handle subscriptions\n */\n function wrapAction(name, action) {\n return function () {\n setActivePinia(pinia);\n const args = Array.from(arguments);\n const afterCallbackList = [];\n const onErrorCallbackList = [];\n function after(callback) {\n afterCallbackList.push(callback);\n }\n function onError(callback) {\n onErrorCallbackList.push(callback);\n }\n // @ts-expect-error\n triggerSubscriptions(actionSubscriptions, {\n args,\n name,\n store,\n after,\n onError,\n });\n let ret;\n try {\n ret = action.apply(this && this.$id === $id ? this : store, args);\n // handle sync errors\n }\n catch (error) {\n triggerSubscriptions(onErrorCallbackList, error);\n throw error;\n }\n if (ret instanceof Promise) {\n return ret\n .then((value) => {\n triggerSubscriptions(afterCallbackList, value);\n return value;\n })\n .catch((error) => {\n triggerSubscriptions(onErrorCallbackList, error);\n return Promise.reject(error);\n });\n }\n // trigger after callbacks\n triggerSubscriptions(afterCallbackList, ret);\n return ret;\n };\n }\n const _hmrPayload = /*#__PURE__*/ markRaw({\n actions: {},\n getters: {},\n state: [],\n hotState,\n });\n const partialStore = {\n _p: pinia,\n // _s: scope,\n $id,\n $onAction: addSubscription.bind(null, actionSubscriptions),\n $patch,\n $reset,\n $subscribe(callback, options = {}) {\n const removeSubscription = addSubscription(subscriptions, callback, options.detached, () => stopWatcher());\n const stopWatcher = scope.run(() => watch(() => pinia.state.value[$id], (state) => {\n if (options.flush === 'sync' ? isSyncListening : isListening) {\n callback({\n storeId: $id,\n type: MutationType.direct,\n events: debuggerEvents,\n }, state);\n }\n }, assign({}, $subscribeOptions, options)));\n return removeSubscription;\n },\n $dispose,\n };\n /* istanbul ignore if */\n if (isVue2) {\n // start as non ready\n partialStore._r = false;\n }\n const store = reactive((process.env.NODE_ENV !== 'production') || USE_DEVTOOLS\n ? assign({\n _hmrPayload,\n _customProperties: markRaw(new Set()), // devtools custom properties\n }, partialStore\n // must be added later\n // setupStore\n )\n : partialStore);\n // store the partial store now so the setup of stores can instantiate each other before they are finished without\n // creating infinite loops.\n pinia._s.set($id, store);\n const runWithContext = (pinia._a && pinia._a.runWithContext) || fallbackRunWithContext;\n // TODO: idea create skipSerialize that marks properties as non serializable and they are skipped\n const setupStore = runWithContext(() => pinia._e.run(() => (scope = effectScope()).run(setup)));\n // overwrite existing actions to support $onAction\n for (const key in setupStore) {\n const prop = setupStore[key];\n if ((isRef(prop) && !isComputed(prop)) || isReactive(prop)) {\n // mark it as a piece of state to be serialized\n if ((process.env.NODE_ENV !== 'production') && hot) {\n set(hotState.value, key, toRef(setupStore, key));\n // createOptionStore directly sets the state in pinia.state.value so we\n // can just skip that\n }\n else if (!isOptionsStore) {\n // in setup stores we must hydrate the state and sync pinia state tree with the refs the user just created\n if (initialState && shouldHydrate(prop)) {\n if (isRef(prop)) {\n prop.value = initialState[key];\n }\n else {\n // probably a reactive object, lets recursively assign\n // @ts-expect-error: prop is unknown\n mergeReactiveObjects(prop, initialState[key]);\n }\n }\n // transfer the ref to the pinia state to keep everything in sync\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value[$id], key, prop);\n }\n else {\n pinia.state.value[$id][key] = prop;\n }\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.state.push(key);\n }\n // action\n }\n else if (typeof prop === 'function') {\n // @ts-expect-error: we are overriding the function we avoid wrapping if\n const actionValue = (process.env.NODE_ENV !== 'production') && hot ? prop : wrapAction(key, prop);\n // this a hot module replacement store because the hotUpdate method needs\n // to do it with the right context\n /* istanbul ignore if */\n if (isVue2) {\n set(setupStore, key, actionValue);\n }\n else {\n // @ts-expect-error\n setupStore[key] = actionValue;\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.actions[key] = prop;\n }\n // list actions so they can be used in plugins\n // @ts-expect-error\n optionsForPlugin.actions[key] = prop;\n }\n else if ((process.env.NODE_ENV !== 'production')) {\n // add getters for devtools\n if (isComputed(prop)) {\n _hmrPayload.getters[key] = isOptionsStore\n ? // @ts-expect-error\n options.getters[key]\n : prop;\n if (IS_CLIENT) {\n const getters = setupStore._getters ||\n // @ts-expect-error: same\n (setupStore._getters = markRaw([]));\n getters.push(key);\n }\n }\n }\n }\n // add the state, getters, and action properties\n /* istanbul ignore if */\n if (isVue2) {\n Object.keys(setupStore).forEach((key) => {\n set(store, key, setupStore[key]);\n });\n }\n else {\n assign(store, setupStore);\n // allows retrieving reactive objects with `storeToRefs()`. Must be called after assigning to the reactive object.\n // Make `storeToRefs()` work with `reactive()` #799\n assign(toRaw(store), setupStore);\n }\n // use this instead of a computed with setter to be able to create it anywhere\n // without linking the computed lifespan to wherever the store is first\n // created.\n Object.defineProperty(store, '$state', {\n get: () => ((process.env.NODE_ENV !== 'production') && hot ? hotState.value : pinia.state.value[$id]),\n set: (state) => {\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && hot) {\n throw new Error('cannot set hotState');\n }\n $patch(($state) => {\n assign($state, state);\n });\n },\n });\n // add the hotUpdate before plugins to allow them to override it\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n store._hotUpdate = markRaw((newStore) => {\n store._hotUpdating = true;\n newStore._hmrPayload.state.forEach((stateKey) => {\n if (stateKey in store.$state) {\n const newStateTarget = newStore.$state[stateKey];\n const oldStateSource = store.$state[stateKey];\n if (typeof newStateTarget === 'object' &&\n isPlainObject(newStateTarget) &&\n isPlainObject(oldStateSource)) {\n patchObject(newStateTarget, oldStateSource);\n }\n else {\n // transfer the ref\n newStore.$state[stateKey] = oldStateSource;\n }\n }\n // patch direct access properties to allow store.stateProperty to work as\n // store.$state.stateProperty\n set(store, stateKey, toRef(newStore.$state, stateKey));\n });\n // remove deleted state properties\n Object.keys(store.$state).forEach((stateKey) => {\n if (!(stateKey in newStore.$state)) {\n del(store, stateKey);\n }\n });\n // avoid devtools logging this as a mutation\n isListening = false;\n isSyncListening = false;\n pinia.state.value[$id] = toRef(newStore._hmrPayload, 'hotState');\n isSyncListening = true;\n nextTick().then(() => {\n isListening = true;\n });\n for (const actionName in newStore._hmrPayload.actions) {\n const action = newStore[actionName];\n set(store, actionName, wrapAction(actionName, action));\n }\n // TODO: does this work in both setup and option store?\n for (const getterName in newStore._hmrPayload.getters) {\n const getter = newStore._hmrPayload.getters[getterName];\n const getterValue = isOptionsStore\n ? // special handling of options api\n computed(() => {\n setActivePinia(pinia);\n return getter.call(store, store);\n })\n : getter;\n set(store, getterName, getterValue);\n }\n // remove deleted getters\n Object.keys(store._hmrPayload.getters).forEach((key) => {\n if (!(key in newStore._hmrPayload.getters)) {\n del(store, key);\n }\n });\n // remove old actions\n Object.keys(store._hmrPayload.actions).forEach((key) => {\n if (!(key in newStore._hmrPayload.actions)) {\n del(store, key);\n }\n });\n // update the values used in devtools and to allow deleting new properties later on\n store._hmrPayload = newStore._hmrPayload;\n store._getters = newStore._getters;\n store._hotUpdating = false;\n });\n }\n if (USE_DEVTOOLS) {\n const nonEnumerable = {\n writable: true,\n configurable: true,\n // avoid warning on devtools trying to display this property\n enumerable: false,\n };\n ['_p', '_hmrPayload', '_getters', '_customProperties'].forEach((p) => {\n Object.defineProperty(store, p, assign({ value: store[p] }, nonEnumerable));\n });\n }\n /* istanbul ignore if */\n if (isVue2) {\n // mark the store as ready before plugins\n store._r = true;\n }\n // apply all plugins\n pinia._p.forEach((extender) => {\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n const extensions = scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n }));\n Object.keys(extensions || {}).forEach((key) => store._customProperties.add(key));\n assign(store, extensions);\n }\n else {\n assign(store, scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n })));\n }\n });\n if ((process.env.NODE_ENV !== 'production') &&\n store.$state &&\n typeof store.$state === 'object' &&\n typeof store.$state.constructor === 'function' &&\n !store.$state.constructor.toString().includes('[native code]')) {\n console.warn(`[๐Ÿ]: The \"state\" must be a plain object. It cannot be\\n` +\n `\\tstate: () => new MyClass()\\n` +\n `Found in store \"${store.$id}\".`);\n }\n // only apply hydrate to option stores with an initial state in pinia\n if (initialState &&\n isOptionsStore &&\n options.hydrate) {\n options.hydrate(store.$state, initialState);\n }\n isListening = true;\n isSyncListening = true;\n return store;\n}\nfunction defineStore(\n// TODO: add proper types from above\nidOrOptions, setup, setupOptions) {\n let id;\n let options;\n const isSetupStore = typeof setup === 'function';\n if (typeof idOrOptions === 'string') {\n id = idOrOptions;\n // the option store setup will contain the actual options in this case\n options = isSetupStore ? setupOptions : setup;\n }\n else {\n options = idOrOptions;\n id = idOrOptions.id;\n if ((process.env.NODE_ENV !== 'production') && typeof id !== 'string') {\n throw new Error(`[๐Ÿ]: \"defineStore()\" must be passed a store id as its first argument.`);\n }\n }\n function useStore(pinia, hot) {\n const hasContext = hasInjectionContext();\n pinia =\n // in test mode, ignore the argument provided as we can always retrieve a\n // pinia instance with getActivePinia()\n ((process.env.NODE_ENV === 'test') && activePinia && activePinia._testing ? null : pinia) ||\n (hasContext ? inject(piniaSymbol, null) : null);\n if (pinia)\n setActivePinia(pinia);\n if ((process.env.NODE_ENV !== 'production') && !activePinia) {\n throw new Error(`[๐Ÿ]: \"getActivePinia()\" was called but there was no active Pinia. Are you trying to use a store before calling \"app.use(pinia)\"?\\n` +\n `See https://pinia.vuejs.org/core-concepts/outside-component-usage.html for help.\\n` +\n `This will fail in production.`);\n }\n pinia = activePinia;\n if (!pinia._s.has(id)) {\n // creating the store registers it in `pinia._s`\n if (isSetupStore) {\n createSetupStore(id, setup, options, pinia);\n }\n else {\n createOptionsStore(id, options, pinia);\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n // @ts-expect-error: not the right inferred type\n useStore._pinia = pinia;\n }\n }\n const store = pinia._s.get(id);\n if ((process.env.NODE_ENV !== 'production') && hot) {\n const hotId = '__hot:' + id;\n const newStore = isSetupStore\n ? createSetupStore(hotId, setup, options, pinia, true)\n : createOptionsStore(hotId, assign({}, options), pinia, true);\n hot._hotUpdate(newStore);\n // cleanup the state properties and the store from the cache\n delete pinia.state.value[hotId];\n pinia._s.delete(hotId);\n }\n if ((process.env.NODE_ENV !== 'production') && IS_CLIENT) {\n const currentInstance = getCurrentInstance();\n // save stores in instances to access them devtools\n if (currentInstance &&\n currentInstance.proxy &&\n // avoid adding stores that are just built for hot module replacement\n !hot) {\n const vm = currentInstance.proxy;\n const cache = '_pStores' in vm ? vm._pStores : (vm._pStores = {});\n cache[id] = store;\n }\n }\n // StoreGeneric cannot be casted towards Store\n return store;\n }\n useStore.$id = id;\n return useStore;\n}\n\nlet mapStoreSuffix = 'Store';\n/**\n * Changes the suffix added by `mapStores()`. Can be set to an empty string.\n * Defaults to `\"Store\"`. Make sure to extend the MapStoresCustomization\n * interface if you are using TypeScript.\n *\n * @param suffix - new suffix\n */\nfunction setMapStoreSuffix(suffix // could be 'Store' but that would be annoying for JS\n) {\n mapStoreSuffix = suffix;\n}\n/**\n * Allows using stores without the composition API (`setup()`) by generating an\n * object to be spread in the `computed` field of a component. It accepts a list\n * of store definitions.\n *\n * @example\n * ```js\n * export default {\n * computed: {\n * // other computed properties\n * ...mapStores(useUserStore, useCartStore)\n * },\n *\n * created() {\n * this.userStore // store with id \"user\"\n * this.cartStore // store with id \"cart\"\n * }\n * }\n * ```\n *\n * @param stores - list of stores to map to an object\n */\nfunction mapStores(...stores) {\n if ((process.env.NODE_ENV !== 'production') && Array.isArray(stores[0])) {\n console.warn(`[๐Ÿ]: Directly pass all stores to \"mapStores()\" without putting them in an array:\\n` +\n `Replace\\n` +\n `\\tmapStores([useAuthStore, useCartStore])\\n` +\n `with\\n` +\n `\\tmapStores(useAuthStore, useCartStore)\\n` +\n `This will fail in production if not fixed.`);\n stores = stores[0];\n }\n return stores.reduce((reduced, useStore) => {\n // @ts-expect-error: $id is added by defineStore\n reduced[useStore.$id + mapStoreSuffix] = function () {\n return useStore(this.$pinia);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n reduced[key] = function () {\n return useStore(this.$pinia)[key];\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function () {\n const store = useStore(this.$pinia);\n const storeKey = keysOrMapper[key];\n // for some reason TS is unable to infer the type of storeKey to be a\n // function\n return typeof storeKey === 'function'\n ? storeKey.call(this, store)\n : store[storeKey];\n };\n return reduced;\n }, {});\n}\n/**\n * Alias for `mapState()`. You should use `mapState()` instead.\n * @deprecated use `mapState()` instead.\n */\nconst mapGetters = mapState;\n/**\n * Allows directly using actions from your store without using the composition\n * API (`setup()`) by generating an object to be spread in the `methods` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapActions(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[key](...args);\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[keysOrMapper[key]](...args);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapWritableState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[key];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[key] = value);\n },\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[keysOrMapper[key]];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[keysOrMapper[key]] = value);\n },\n };\n return reduced;\n }, {});\n}\n\n/**\n * Creates an object of references with all the state, getters, and plugin-added\n * state properties of the store. Similar to `toRefs()` but specifically\n * designed for Pinia stores so methods and non reactive properties are\n * completely ignored.\n *\n * @param store - store to extract the refs from\n */\nfunction storeToRefs(store) {\n // See https://github.com/vuejs/pinia/issues/852\n // It's easier to just use toRefs() even if it includes more stuff\n if (isVue2) {\n // @ts-expect-error: toRefs include methods and others\n return toRefs(store);\n }\n else {\n store = toRaw(store);\n const refs = {};\n for (const key in store) {\n const value = store[key];\n if (isRef(value) || isReactive(value)) {\n // @ts-expect-error: the key is state or getter\n refs[key] =\n // ---\n toRef(store, key);\n }\n }\n return refs;\n }\n}\n\n/**\n * Vue 2 Plugin that must be installed for pinia to work. Note **you don't need\n * this plugin if you are using Nuxt.js**. Use the `buildModule` instead:\n * https://pinia.vuejs.org/ssr/nuxt.html.\n *\n * @example\n * ```js\n * import Vue from 'vue'\n * import { PiniaVuePlugin, createPinia } from 'pinia'\n *\n * Vue.use(PiniaVuePlugin)\n * const pinia = createPinia()\n *\n * new Vue({\n * el: '#app',\n * // ...\n * pinia,\n * })\n * ```\n *\n * @param _Vue - `Vue` imported from 'vue'.\n */\nconst PiniaVuePlugin = function (_Vue) {\n // Equivalent of\n // app.config.globalProperties.$pinia = pinia\n _Vue.mixin({\n beforeCreate() {\n const options = this.$options;\n if (options.pinia) {\n const pinia = options.pinia;\n // HACK: taken from provide(): https://github.com/vuejs/composition-api/blob/main/src/apis/inject.ts#L31\n /* istanbul ignore else */\n if (!this._provided) {\n const provideCache = {};\n Object.defineProperty(this, '_provided', {\n get: () => provideCache,\n set: (v) => Object.assign(provideCache, v),\n });\n }\n this._provided[piniaSymbol] = pinia;\n // propagate the pinia instance in an SSR friendly way\n // avoid adding it to nuxt twice\n /* istanbul ignore else */\n if (!this.$pinia) {\n this.$pinia = pinia;\n }\n pinia._a = this;\n if (IS_CLIENT) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n }\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(pinia._a, pinia);\n }\n }\n else if (!this.$pinia && options.parent && options.parent.$pinia) {\n this.$pinia = options.parent.$pinia;\n }\n },\n destroyed() {\n delete this._pStores;\n },\n });\n};\n\nexport { MutationType, PiniaVuePlugin, acceptHMRUpdate, createPinia, defineStore, getActivePinia, mapActions, mapGetters, mapState, mapStores, mapWritableState, setActivePinia, setMapStoreSuffix, skipHydrate, storeToRefs };\n","/*!\n * vue-router v4.2.5\n * (c) 2023 Eduardo San Martin Morote\n * @license MIT\n */\nimport { getCurrentInstance, inject, onUnmounted, onDeactivated, onActivated, computed, unref, watchEffect, defineComponent, reactive, h, provide, ref, watch, shallowRef, shallowReactive, nextTick } from 'vue';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\nconst isBrowser = typeof window !== 'undefined';\n\nfunction isESModule(obj) {\n return obj.__esModule || obj[Symbol.toStringTag] === 'Module';\n}\nconst assign = Object.assign;\nfunction applyToParams(fn, params) {\n const newParams = {};\n for (const key in params) {\n const value = params[key];\n newParams[key] = isArray(value)\n ? value.map(fn)\n : fn(value);\n }\n return newParams;\n}\nconst noop = () => { };\n/**\n * Typesafe alternative to Array.isArray\n * https://github.com/microsoft/TypeScript/pull/48228\n */\nconst isArray = Array.isArray;\n\nfunction warn(msg) {\n // avoid using ...args as it breaks in older Edge builds\n const args = Array.from(arguments).slice(1);\n console.warn.apply(console, ['[Vue Router warn]: ' + msg].concat(args));\n}\n\nconst TRAILING_SLASH_RE = /\\/$/;\nconst removeTrailingSlash = (path) => path.replace(TRAILING_SLASH_RE, '');\n/**\n * Transforms a URI into a normalized history location\n *\n * @param parseQuery\n * @param location - URI to normalize\n * @param currentLocation - current absolute location. Allows resolving relative\n * paths. Must start with `/`. Defaults to `/`\n * @returns a normalized history location\n */\nfunction parseURL(parseQuery, location, currentLocation = '/') {\n let path, query = {}, searchString = '', hash = '';\n // Could use URL and URLSearchParams but IE 11 doesn't support it\n // TODO: move to new URL()\n const hashPos = location.indexOf('#');\n let searchPos = location.indexOf('?');\n // the hash appears before the search, so it's not part of the search string\n if (hashPos < searchPos && hashPos >= 0) {\n searchPos = -1;\n }\n if (searchPos > -1) {\n path = location.slice(0, searchPos);\n searchString = location.slice(searchPos + 1, hashPos > -1 ? hashPos : location.length);\n query = parseQuery(searchString);\n }\n if (hashPos > -1) {\n path = path || location.slice(0, hashPos);\n // keep the # character\n hash = location.slice(hashPos, location.length);\n }\n // no search and no query\n path = resolveRelativePath(path != null ? path : location, currentLocation);\n // empty path means a relative query or hash `?foo=f`, `#thing`\n return {\n fullPath: path + (searchString && '?') + searchString + hash,\n path,\n query,\n hash,\n };\n}\n/**\n * Stringifies a URL object\n *\n * @param stringifyQuery\n * @param location\n */\nfunction stringifyURL(stringifyQuery, location) {\n const query = location.query ? stringifyQuery(location.query) : '';\n return location.path + (query && '?') + query + (location.hash || '');\n}\n/**\n * Strips off the base from the beginning of a location.pathname in a non-case-sensitive way.\n *\n * @param pathname - location.pathname\n * @param base - base to strip off\n */\nfunction stripBase(pathname, base) {\n // no base or base is not found at the beginning\n if (!base || !pathname.toLowerCase().startsWith(base.toLowerCase()))\n return pathname;\n return pathname.slice(base.length) || '/';\n}\n/**\n * Checks if two RouteLocation are equal. This means that both locations are\n * pointing towards the same {@link RouteRecord} and that all `params`, `query`\n * parameters and `hash` are the same\n *\n * @param stringifyQuery - A function that takes a query object of type LocationQueryRaw and returns a string representation of it.\n * @param a - first {@link RouteLocation}\n * @param b - second {@link RouteLocation}\n */\nfunction isSameRouteLocation(stringifyQuery, a, b) {\n const aLastIndex = a.matched.length - 1;\n const bLastIndex = b.matched.length - 1;\n return (aLastIndex > -1 &&\n aLastIndex === bLastIndex &&\n isSameRouteRecord(a.matched[aLastIndex], b.matched[bLastIndex]) &&\n isSameRouteLocationParams(a.params, b.params) &&\n stringifyQuery(a.query) === stringifyQuery(b.query) &&\n a.hash === b.hash);\n}\n/**\n * Check if two `RouteRecords` are equal. Takes into account aliases: they are\n * considered equal to the `RouteRecord` they are aliasing.\n *\n * @param a - first {@link RouteRecord}\n * @param b - second {@link RouteRecord}\n */\nfunction isSameRouteRecord(a, b) {\n // since the original record has an undefined value for aliasOf\n // but all aliases point to the original record, this will always compare\n // the original record\n return (a.aliasOf || a) === (b.aliasOf || b);\n}\nfunction isSameRouteLocationParams(a, b) {\n if (Object.keys(a).length !== Object.keys(b).length)\n return false;\n for (const key in a) {\n if (!isSameRouteLocationParamsValue(a[key], b[key]))\n return false;\n }\n return true;\n}\nfunction isSameRouteLocationParamsValue(a, b) {\n return isArray(a)\n ? isEquivalentArray(a, b)\n : isArray(b)\n ? isEquivalentArray(b, a)\n : a === b;\n}\n/**\n * Check if two arrays are the same or if an array with one single entry is the\n * same as another primitive value. Used to check query and parameters\n *\n * @param a - array of values\n * @param b - array of values or a single value\n */\nfunction isEquivalentArray(a, b) {\n return isArray(b)\n ? a.length === b.length && a.every((value, i) => value === b[i])\n : a.length === 1 && a[0] === b;\n}\n/**\n * Resolves a relative path that starts with `.`.\n *\n * @param to - path location we are resolving\n * @param from - currentLocation.path, should start with `/`\n */\nfunction resolveRelativePath(to, from) {\n if (to.startsWith('/'))\n return to;\n if ((process.env.NODE_ENV !== 'production') && !from.startsWith('/')) {\n warn(`Cannot resolve a relative location without an absolute path. Trying to resolve \"${to}\" from \"${from}\". It should look like \"/${from}\".`);\n return to;\n }\n if (!to)\n return from;\n const fromSegments = from.split('/');\n const toSegments = to.split('/');\n const lastToSegment = toSegments[toSegments.length - 1];\n // make . and ./ the same (../ === .., ../../ === ../..)\n // this is the same behavior as new URL()\n if (lastToSegment === '..' || lastToSegment === '.') {\n toSegments.push('');\n }\n let position = fromSegments.length - 1;\n let toPosition;\n let segment;\n for (toPosition = 0; toPosition < toSegments.length; toPosition++) {\n segment = toSegments[toPosition];\n // we stay on the same position\n if (segment === '.')\n continue;\n // go up in the from array\n if (segment === '..') {\n // we can't go below zero, but we still need to increment toPosition\n if (position > 1)\n position--;\n // continue\n }\n // we reached a non-relative path, we stop here\n else\n break;\n }\n return (fromSegments.slice(0, position).join('/') +\n '/' +\n toSegments\n // ensure we use at least the last element in the toSegments\n .slice(toPosition - (toPosition === toSegments.length ? 1 : 0))\n .join('/'));\n}\n\nvar NavigationType;\n(function (NavigationType) {\n NavigationType[\"pop\"] = \"pop\";\n NavigationType[\"push\"] = \"push\";\n})(NavigationType || (NavigationType = {}));\nvar NavigationDirection;\n(function (NavigationDirection) {\n NavigationDirection[\"back\"] = \"back\";\n NavigationDirection[\"forward\"] = \"forward\";\n NavigationDirection[\"unknown\"] = \"\";\n})(NavigationDirection || (NavigationDirection = {}));\n/**\n * Starting location for Histories\n */\nconst START = '';\n// Generic utils\n/**\n * Normalizes a base by removing any trailing slash and reading the base tag if\n * present.\n *\n * @param base - base to normalize\n */\nfunction normalizeBase(base) {\n if (!base) {\n if (isBrowser) {\n // respect tag\n const baseEl = document.querySelector('base');\n base = (baseEl && baseEl.getAttribute('href')) || '/';\n // strip full URL origin\n base = base.replace(/^\\w+:\\/\\/[^\\/]+/, '');\n }\n else {\n base = '/';\n }\n }\n // ensure leading slash when it was removed by the regex above avoid leading\n // slash with hash because the file could be read from the disk like file://\n // and the leading slash would cause problems\n if (base[0] !== '/' && base[0] !== '#')\n base = '/' + base;\n // remove the trailing slash so all other method can just do `base + fullPath`\n // to build an href\n return removeTrailingSlash(base);\n}\n// remove any character before the hash\nconst BEFORE_HASH_RE = /^[^#]+#/;\nfunction createHref(base, location) {\n return base.replace(BEFORE_HASH_RE, '#') + location;\n}\n\nfunction getElementPosition(el, offset) {\n const docRect = document.documentElement.getBoundingClientRect();\n const elRect = el.getBoundingClientRect();\n return {\n behavior: offset.behavior,\n left: elRect.left - docRect.left - (offset.left || 0),\n top: elRect.top - docRect.top - (offset.top || 0),\n };\n}\nconst computeScrollPosition = () => ({\n left: window.pageXOffset,\n top: window.pageYOffset,\n});\nfunction scrollToPosition(position) {\n let scrollToOptions;\n if ('el' in position) {\n const positionEl = position.el;\n const isIdSelector = typeof positionEl === 'string' && positionEl.startsWith('#');\n /**\n * `id`s can accept pretty much any characters, including CSS combinators\n * like `>` or `~`. It's still possible to retrieve elements using\n * `document.getElementById('~')` but it needs to be escaped when using\n * `document.querySelector('#\\\\~')` for it to be valid. The only\n * requirements for `id`s are them to be unique on the page and to not be\n * empty (`id=\"\"`). Because of that, when passing an id selector, it should\n * be properly escaped for it to work with `querySelector`. We could check\n * for the id selector to be simple (no CSS combinators `+ >~`) but that\n * would make things inconsistent since they are valid characters for an\n * `id` but would need to be escaped when using `querySelector`, breaking\n * their usage and ending up in no selector returned. Selectors need to be\n * escaped:\n *\n * - `#1-thing` becomes `#\\31 -thing`\n * - `#with~symbols` becomes `#with\\\\~symbols`\n *\n * - More information about the topic can be found at\n * https://mathiasbynens.be/notes/html5-id-class.\n * - Practical example: https://mathiasbynens.be/demo/html5-id\n */\n if ((process.env.NODE_ENV !== 'production') && typeof position.el === 'string') {\n if (!isIdSelector || !document.getElementById(position.el.slice(1))) {\n try {\n const foundEl = document.querySelector(position.el);\n if (isIdSelector && foundEl) {\n warn(`The selector \"${position.el}\" should be passed as \"el: document.querySelector('${position.el}')\" because it starts with \"#\".`);\n // return to avoid other warnings\n return;\n }\n }\n catch (err) {\n warn(`The selector \"${position.el}\" is invalid. If you are using an id selector, make sure to escape it. You can find more information about escaping characters in selectors at https://mathiasbynens.be/notes/css-escapes or use CSS.escape (https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape).`);\n // return to avoid other warnings\n return;\n }\n }\n }\n const el = typeof positionEl === 'string'\n ? isIdSelector\n ? document.getElementById(positionEl.slice(1))\n : document.querySelector(positionEl)\n : positionEl;\n if (!el) {\n (process.env.NODE_ENV !== 'production') &&\n warn(`Couldn't find element using selector \"${position.el}\" returned by scrollBehavior.`);\n return;\n }\n scrollToOptions = getElementPosition(el, position);\n }\n else {\n scrollToOptions = position;\n }\n if ('scrollBehavior' in document.documentElement.style)\n window.scrollTo(scrollToOptions);\n else {\n window.scrollTo(scrollToOptions.left != null ? scrollToOptions.left : window.pageXOffset, scrollToOptions.top != null ? scrollToOptions.top : window.pageYOffset);\n }\n}\nfunction getScrollKey(path, delta) {\n const position = history.state ? history.state.position - delta : -1;\n return position + path;\n}\nconst scrollPositions = new Map();\nfunction saveScrollPosition(key, scrollPosition) {\n scrollPositions.set(key, scrollPosition);\n}\nfunction getSavedScrollPosition(key) {\n const scroll = scrollPositions.get(key);\n // consume it so it's not used again\n scrollPositions.delete(key);\n return scroll;\n}\n// TODO: RFC about how to save scroll position\n/**\n * ScrollBehavior instance used by the router to compute and restore the scroll\n * position when navigating.\n */\n// export interface ScrollHandler {\n// // returns a scroll position that can be saved in history\n// compute(): ScrollPositionEntry\n// // can take an extended ScrollPositionEntry\n// scroll(position: ScrollPosition): void\n// }\n// export const scrollHandler: ScrollHandler = {\n// compute: computeScroll,\n// scroll: scrollToPosition,\n// }\n\nlet createBaseLocation = () => location.protocol + '//' + location.host;\n/**\n * Creates a normalized history location from a window.location object\n * @param base - The base path\n * @param location - The window.location object\n */\nfunction createCurrentLocation(base, location) {\n const { pathname, search, hash } = location;\n // allows hash bases like #, /#, #/, #!, #!/, /#!/, or even /folder#end\n const hashPos = base.indexOf('#');\n if (hashPos > -1) {\n let slicePos = hash.includes(base.slice(hashPos))\n ? base.slice(hashPos).length\n : 1;\n let pathFromHash = hash.slice(slicePos);\n // prepend the starting slash to hash so the url starts with /#\n if (pathFromHash[0] !== '/')\n pathFromHash = '/' + pathFromHash;\n return stripBase(pathFromHash, '');\n }\n const path = stripBase(pathname, base);\n return path + search + hash;\n}\nfunction useHistoryListeners(base, historyState, currentLocation, replace) {\n let listeners = [];\n let teardowns = [];\n // TODO: should it be a stack? a Dict. Check if the popstate listener\n // can trigger twice\n let pauseState = null;\n const popStateHandler = ({ state, }) => {\n const to = createCurrentLocation(base, location);\n const from = currentLocation.value;\n const fromState = historyState.value;\n let delta = 0;\n if (state) {\n currentLocation.value = to;\n historyState.value = state;\n // ignore the popstate and reset the pauseState\n if (pauseState && pauseState === from) {\n pauseState = null;\n return;\n }\n delta = fromState ? state.position - fromState.position : 0;\n }\n else {\n replace(to);\n }\n // Here we could also revert the navigation by calling history.go(-delta)\n // this listener will have to be adapted to not trigger again and to wait for the url\n // to be updated before triggering the listeners. Some kind of validation function would also\n // need to be passed to the listeners so the navigation can be accepted\n // call all listeners\n listeners.forEach(listener => {\n listener(currentLocation.value, from, {\n delta,\n type: NavigationType.pop,\n direction: delta\n ? delta > 0\n ? NavigationDirection.forward\n : NavigationDirection.back\n : NavigationDirection.unknown,\n });\n });\n };\n function pauseListeners() {\n pauseState = currentLocation.value;\n }\n function listen(callback) {\n // set up the listener and prepare teardown callbacks\n listeners.push(callback);\n const teardown = () => {\n const index = listeners.indexOf(callback);\n if (index > -1)\n listeners.splice(index, 1);\n };\n teardowns.push(teardown);\n return teardown;\n }\n function beforeUnloadListener() {\n const { history } = window;\n if (!history.state)\n return;\n history.replaceState(assign({}, history.state, { scroll: computeScrollPosition() }), '');\n }\n function destroy() {\n for (const teardown of teardowns)\n teardown();\n teardowns = [];\n window.removeEventListener('popstate', popStateHandler);\n window.removeEventListener('beforeunload', beforeUnloadListener);\n }\n // set up the listeners and prepare teardown callbacks\n window.addEventListener('popstate', popStateHandler);\n // TODO: could we use 'pagehide' or 'visibilitychange' instead?\n // https://developer.chrome.com/blog/page-lifecycle-api/\n window.addEventListener('beforeunload', beforeUnloadListener, {\n passive: true,\n });\n return {\n pauseListeners,\n listen,\n destroy,\n };\n}\n/**\n * Creates a state object\n */\nfunction buildState(back, current, forward, replaced = false, computeScroll = false) {\n return {\n back,\n current,\n forward,\n replaced,\n position: window.history.length,\n scroll: computeScroll ? computeScrollPosition() : null,\n };\n}\nfunction useHistoryStateNavigation(base) {\n const { history, location } = window;\n // private variables\n const currentLocation = {\n value: createCurrentLocation(base, location),\n };\n const historyState = { value: history.state };\n // build current history entry as this is a fresh navigation\n if (!historyState.value) {\n changeLocation(currentLocation.value, {\n back: null,\n current: currentLocation.value,\n forward: null,\n // the length is off by one, we need to decrease it\n position: history.length - 1,\n replaced: true,\n // don't add a scroll as the user may have an anchor, and we want\n // scrollBehavior to be triggered without a saved position\n scroll: null,\n }, true);\n }\n function changeLocation(to, state, replace) {\n /**\n * if a base tag is provided, and we are on a normal domain, we have to\n * respect the provided `base` attribute because pushState() will use it and\n * potentially erase anything before the `#` like at\n * https://github.com/vuejs/router/issues/685 where a base of\n * `/folder/#` but a base of `/` would erase the `/folder/` section. If\n * there is no host, the `` tag makes no sense and if there isn't a\n * base tag we can just use everything after the `#`.\n */\n const hashIndex = base.indexOf('#');\n const url = hashIndex > -1\n ? (location.host && document.querySelector('base')\n ? base\n : base.slice(hashIndex)) + to\n : createBaseLocation() + base + to;\n try {\n // BROWSER QUIRK\n // NOTE: Safari throws a SecurityError when calling this function 100 times in 30 seconds\n history[replace ? 'replaceState' : 'pushState'](state, '', url);\n historyState.value = state;\n }\n catch (err) {\n if ((process.env.NODE_ENV !== 'production')) {\n warn('Error with push/replace State', err);\n }\n else {\n console.error(err);\n }\n // Force the navigation, this also resets the call count\n location[replace ? 'replace' : 'assign'](url);\n }\n }\n function replace(to, data) {\n const state = assign({}, history.state, buildState(historyState.value.back, \n // keep back and forward entries but override current position\n to, historyState.value.forward, true), data, { position: historyState.value.position });\n changeLocation(to, state, true);\n currentLocation.value = to;\n }\n function push(to, data) {\n // Add to current entry the information of where we are going\n // as well as saving the current position\n const currentState = assign({}, \n // use current history state to gracefully handle a wrong call to\n // history.replaceState\n // https://github.com/vuejs/router/issues/366\n historyState.value, history.state, {\n forward: to,\n scroll: computeScrollPosition(),\n });\n if ((process.env.NODE_ENV !== 'production') && !history.state) {\n warn(`history.state seems to have been manually replaced without preserving the necessary values. Make sure to preserve existing history state if you are manually calling history.replaceState:\\n\\n` +\n `history.replaceState(history.state, '', url)\\n\\n` +\n `You can find more information at https://next.router.vuejs.org/guide/migration/#usage-of-history-state.`);\n }\n changeLocation(currentState.current, currentState, true);\n const state = assign({}, buildState(currentLocation.value, to, null), { position: currentState.position + 1 }, data);\n changeLocation(to, state, false);\n currentLocation.value = to;\n }\n return {\n location: currentLocation,\n state: historyState,\n push,\n replace,\n };\n}\n/**\n * Creates an HTML5 history. Most common history for single page applications.\n *\n * @param base -\n */\nfunction createWebHistory(base) {\n base = normalizeBase(base);\n const historyNavigation = useHistoryStateNavigation(base);\n const historyListeners = useHistoryListeners(base, historyNavigation.state, historyNavigation.location, historyNavigation.replace);\n function go(delta, triggerListeners = true) {\n if (!triggerListeners)\n historyListeners.pauseListeners();\n history.go(delta);\n }\n const routerHistory = assign({\n // it's overridden right after\n location: '',\n base,\n go,\n createHref: createHref.bind(null, base),\n }, historyNavigation, historyListeners);\n Object.defineProperty(routerHistory, 'location', {\n enumerable: true,\n get: () => historyNavigation.location.value,\n });\n Object.defineProperty(routerHistory, 'state', {\n enumerable: true,\n get: () => historyNavigation.state.value,\n });\n return routerHistory;\n}\n\n/**\n * Creates an in-memory based history. The main purpose of this history is to handle SSR. It starts in a special location that is nowhere.\n * It's up to the user to replace that location with the starter location by either calling `router.push` or `router.replace`.\n *\n * @param base - Base applied to all urls, defaults to '/'\n * @returns a history object that can be passed to the router constructor\n */\nfunction createMemoryHistory(base = '') {\n let listeners = [];\n let queue = [START];\n let position = 0;\n base = normalizeBase(base);\n function setLocation(location) {\n position++;\n if (position !== queue.length) {\n // we are in the middle, we remove everything from here in the queue\n queue.splice(position);\n }\n queue.push(location);\n }\n function triggerListeners(to, from, { direction, delta }) {\n const info = {\n direction,\n delta,\n type: NavigationType.pop,\n };\n for (const callback of listeners) {\n callback(to, from, info);\n }\n }\n const routerHistory = {\n // rewritten by Object.defineProperty\n location: START,\n // TODO: should be kept in queue\n state: {},\n base,\n createHref: createHref.bind(null, base),\n replace(to) {\n // remove current entry and decrement position\n queue.splice(position--, 1);\n setLocation(to);\n },\n push(to, data) {\n setLocation(to);\n },\n listen(callback) {\n listeners.push(callback);\n return () => {\n const index = listeners.indexOf(callback);\n if (index > -1)\n listeners.splice(index, 1);\n };\n },\n destroy() {\n listeners = [];\n queue = [START];\n position = 0;\n },\n go(delta, shouldTrigger = true) {\n const from = this.location;\n const direction = \n // we are considering delta === 0 going forward, but in abstract mode\n // using 0 for the delta doesn't make sense like it does in html5 where\n // it reloads the page\n delta < 0 ? NavigationDirection.back : NavigationDirection.forward;\n position = Math.max(0, Math.min(position + delta, queue.length - 1));\n if (shouldTrigger) {\n triggerListeners(this.location, from, {\n direction,\n delta,\n });\n }\n },\n };\n Object.defineProperty(routerHistory, 'location', {\n enumerable: true,\n get: () => queue[position],\n });\n return routerHistory;\n}\n\n/**\n * Creates a hash history. Useful for web applications with no host (e.g. `file://`) or when configuring a server to\n * handle any URL is not possible.\n *\n * @param base - optional base to provide. Defaults to `location.pathname + location.search` If there is a `` tag\n * in the `head`, its value will be ignored in favor of this parameter **but note it affects all the history.pushState()\n * calls**, meaning that if you use a `` tag, it's `href` value **has to match this parameter** (ignoring anything\n * after the `#`).\n *\n * @example\n * ```js\n * // at https://example.com/folder\n * createWebHashHistory() // gives a url of `https://example.com/folder#`\n * createWebHashHistory('/folder/') // gives a url of `https://example.com/folder/#`\n * // if the `#` is provided in the base, it won't be added by `createWebHashHistory`\n * createWebHashHistory('/folder/#/app/') // gives a url of `https://example.com/folder/#/app/`\n * // you should avoid doing this because it changes the original url and breaks copying urls\n * createWebHashHistory('/other-folder/') // gives a url of `https://example.com/other-folder/#`\n *\n * // at file:///usr/etc/folder/index.html\n * // for locations with no `host`, the base is ignored\n * createWebHashHistory('/iAmIgnored') // gives a url of `file:///usr/etc/folder/index.html#`\n * ```\n */\nfunction createWebHashHistory(base) {\n // Make sure this implementation is fine in terms of encoding, specially for IE11\n // for `file://`, directly use the pathname and ignore the base\n // location.pathname contains an initial `/` even at the root: `https://example.com`\n base = location.host ? base || location.pathname + location.search : '';\n // allow the user to provide a `#` in the middle: `/base/#/app`\n if (!base.includes('#'))\n base += '#';\n if ((process.env.NODE_ENV !== 'production') && !base.endsWith('#/') && !base.endsWith('#')) {\n warn(`A hash base must end with a \"#\":\\n\"${base}\" should be \"${base.replace(/#.*$/, '#')}\".`);\n }\n return createWebHistory(base);\n}\n\nfunction isRouteLocation(route) {\n return typeof route === 'string' || (route && typeof route === 'object');\n}\nfunction isRouteName(name) {\n return typeof name === 'string' || typeof name === 'symbol';\n}\n\n/**\n * Initial route location where the router is. Can be used in navigation guards\n * to differentiate the initial navigation.\n *\n * @example\n * ```js\n * import { START_LOCATION } from 'vue-router'\n *\n * router.beforeEach((to, from) => {\n * if (from === START_LOCATION) {\n * // initial navigation\n * }\n * })\n * ```\n */\nconst START_LOCATION_NORMALIZED = {\n path: '/',\n name: undefined,\n params: {},\n query: {},\n hash: '',\n fullPath: '/',\n matched: [],\n meta: {},\n redirectedFrom: undefined,\n};\n\nconst NavigationFailureSymbol = Symbol((process.env.NODE_ENV !== 'production') ? 'navigation failure' : '');\n/**\n * Enumeration with all possible types for navigation failures. Can be passed to\n * {@link isNavigationFailure} to check for specific failures.\n */\nvar NavigationFailureType;\n(function (NavigationFailureType) {\n /**\n * An aborted navigation is a navigation that failed because a navigation\n * guard returned `false` or called `next(false)`\n */\n NavigationFailureType[NavigationFailureType[\"aborted\"] = 4] = \"aborted\";\n /**\n * A cancelled navigation is a navigation that failed because a more recent\n * navigation finished started (not necessarily finished).\n */\n NavigationFailureType[NavigationFailureType[\"cancelled\"] = 8] = \"cancelled\";\n /**\n * A duplicated navigation is a navigation that failed because it was\n * initiated while already being at the exact same location.\n */\n NavigationFailureType[NavigationFailureType[\"duplicated\"] = 16] = \"duplicated\";\n})(NavigationFailureType || (NavigationFailureType = {}));\n// DEV only debug messages\nconst ErrorTypeMessages = {\n [1 /* ErrorTypes.MATCHER_NOT_FOUND */]({ location, currentLocation }) {\n return `No match for\\n ${JSON.stringify(location)}${currentLocation\n ? '\\nwhile being at\\n' + JSON.stringify(currentLocation)\n : ''}`;\n },\n [2 /* ErrorTypes.NAVIGATION_GUARD_REDIRECT */]({ from, to, }) {\n return `Redirected from \"${from.fullPath}\" to \"${stringifyRoute(to)}\" via a navigation guard.`;\n },\n [4 /* ErrorTypes.NAVIGATION_ABORTED */]({ from, to }) {\n return `Navigation aborted from \"${from.fullPath}\" to \"${to.fullPath}\" via a navigation guard.`;\n },\n [8 /* ErrorTypes.NAVIGATION_CANCELLED */]({ from, to }) {\n return `Navigation cancelled from \"${from.fullPath}\" to \"${to.fullPath}\" with a new navigation.`;\n },\n [16 /* ErrorTypes.NAVIGATION_DUPLICATED */]({ from, to }) {\n return `Avoided redundant navigation to current location: \"${from.fullPath}\".`;\n },\n};\nfunction createRouterError(type, params) {\n // keep full error messages in cjs versions\n if ((process.env.NODE_ENV !== 'production') || !true) {\n return assign(new Error(ErrorTypeMessages[type](params)), {\n type,\n [NavigationFailureSymbol]: true,\n }, params);\n }\n else {\n return assign(new Error(), {\n type,\n [NavigationFailureSymbol]: true,\n }, params);\n }\n}\nfunction isNavigationFailure(error, type) {\n return (error instanceof Error &&\n NavigationFailureSymbol in error &&\n (type == null || !!(error.type & type)));\n}\nconst propertiesToLog = ['params', 'query', 'hash'];\nfunction stringifyRoute(to) {\n if (typeof to === 'string')\n return to;\n if ('path' in to)\n return to.path;\n const location = {};\n for (const key of propertiesToLog) {\n if (key in to)\n location[key] = to[key];\n }\n return JSON.stringify(location, null, 2);\n}\n\n// default pattern for a param: non-greedy everything but /\nconst BASE_PARAM_PATTERN = '[^/]+?';\nconst BASE_PATH_PARSER_OPTIONS = {\n sensitive: false,\n strict: false,\n start: true,\n end: true,\n};\n// Special Regex characters that must be escaped in static tokens\nconst REGEX_CHARS_RE = /[.+*?^${}()[\\]/\\\\]/g;\n/**\n * Creates a path parser from an array of Segments (a segment is an array of Tokens)\n *\n * @param segments - array of segments returned by tokenizePath\n * @param extraOptions - optional options for the regexp\n * @returns a PathParser\n */\nfunction tokensToParser(segments, extraOptions) {\n const options = assign({}, BASE_PATH_PARSER_OPTIONS, extraOptions);\n // the amount of scores is the same as the length of segments except for the root segment \"/\"\n const score = [];\n // the regexp as a string\n let pattern = options.start ? '^' : '';\n // extracted keys\n const keys = [];\n for (const segment of segments) {\n // the root segment needs special treatment\n const segmentScores = segment.length ? [] : [90 /* PathScore.Root */];\n // allow trailing slash\n if (options.strict && !segment.length)\n pattern += '/';\n for (let tokenIndex = 0; tokenIndex < segment.length; tokenIndex++) {\n const token = segment[tokenIndex];\n // resets the score if we are inside a sub-segment /:a-other-:b\n let subSegmentScore = 40 /* PathScore.Segment */ +\n (options.sensitive ? 0.25 /* PathScore.BonusCaseSensitive */ : 0);\n if (token.type === 0 /* TokenType.Static */) {\n // prepend the slash if we are starting a new segment\n if (!tokenIndex)\n pattern += '/';\n pattern += token.value.replace(REGEX_CHARS_RE, '\\\\$&');\n subSegmentScore += 40 /* PathScore.Static */;\n }\n else if (token.type === 1 /* TokenType.Param */) {\n const { value, repeatable, optional, regexp } = token;\n keys.push({\n name: value,\n repeatable,\n optional,\n });\n const re = regexp ? regexp : BASE_PARAM_PATTERN;\n // the user provided a custom regexp /:id(\\\\d+)\n if (re !== BASE_PARAM_PATTERN) {\n subSegmentScore += 10 /* PathScore.BonusCustomRegExp */;\n // make sure the regexp is valid before using it\n try {\n new RegExp(`(${re})`);\n }\n catch (err) {\n throw new Error(`Invalid custom RegExp for param \"${value}\" (${re}): ` +\n err.message);\n }\n }\n // when we repeat we must take care of the repeating leading slash\n let subPattern = repeatable ? `((?:${re})(?:/(?:${re}))*)` : `(${re})`;\n // prepend the slash if we are starting a new segment\n if (!tokenIndex)\n subPattern =\n // avoid an optional / if there are more segments e.g. /:p?-static\n // or /:p?-:p2\n optional && segment.length < 2\n ? `(?:/${subPattern})`\n : '/' + subPattern;\n if (optional)\n subPattern += '?';\n pattern += subPattern;\n subSegmentScore += 20 /* PathScore.Dynamic */;\n if (optional)\n subSegmentScore += -8 /* PathScore.BonusOptional */;\n if (repeatable)\n subSegmentScore += -20 /* PathScore.BonusRepeatable */;\n if (re === '.*')\n subSegmentScore += -50 /* PathScore.BonusWildcard */;\n }\n segmentScores.push(subSegmentScore);\n }\n // an empty array like /home/ -> [[{home}], []]\n // if (!segment.length) pattern += '/'\n score.push(segmentScores);\n }\n // only apply the strict bonus to the last score\n if (options.strict && options.end) {\n const i = score.length - 1;\n score[i][score[i].length - 1] += 0.7000000000000001 /* PathScore.BonusStrict */;\n }\n // TODO: dev only warn double trailing slash\n if (!options.strict)\n pattern += '/?';\n if (options.end)\n pattern += '$';\n // allow paths like /dynamic to only match dynamic or dynamic/... but not dynamic_something_else\n else if (options.strict)\n pattern += '(?:/|$)';\n const re = new RegExp(pattern, options.sensitive ? '' : 'i');\n function parse(path) {\n const match = path.match(re);\n const params = {};\n if (!match)\n return null;\n for (let i = 1; i < match.length; i++) {\n const value = match[i] || '';\n const key = keys[i - 1];\n params[key.name] = value && key.repeatable ? value.split('/') : value;\n }\n return params;\n }\n function stringify(params) {\n let path = '';\n // for optional parameters to allow to be empty\n let avoidDuplicatedSlash = false;\n for (const segment of segments) {\n if (!avoidDuplicatedSlash || !path.endsWith('/'))\n path += '/';\n avoidDuplicatedSlash = false;\n for (const token of segment) {\n if (token.type === 0 /* TokenType.Static */) {\n path += token.value;\n }\n else if (token.type === 1 /* TokenType.Param */) {\n const { value, repeatable, optional } = token;\n const param = value in params ? params[value] : '';\n if (isArray(param) && !repeatable) {\n throw new Error(`Provided param \"${value}\" is an array but it is not repeatable (* or + modifiers)`);\n }\n const text = isArray(param)\n ? param.join('/')\n : param;\n if (!text) {\n if (optional) {\n // if we have more than one optional param like /:a?-static we don't need to care about the optional param\n if (segment.length < 2) {\n // remove the last slash as we could be at the end\n if (path.endsWith('/'))\n path = path.slice(0, -1);\n // do not append a slash on the next iteration\n else\n avoidDuplicatedSlash = true;\n }\n }\n else\n throw new Error(`Missing required param \"${value}\"`);\n }\n path += text;\n }\n }\n }\n // avoid empty path when we have multiple optional params\n return path || '/';\n }\n return {\n re,\n score,\n keys,\n parse,\n stringify,\n };\n}\n/**\n * Compares an array of numbers as used in PathParser.score and returns a\n * number. This function can be used to `sort` an array\n *\n * @param a - first array of numbers\n * @param b - second array of numbers\n * @returns 0 if both are equal, < 0 if a should be sorted first, > 0 if b\n * should be sorted first\n */\nfunction compareScoreArray(a, b) {\n let i = 0;\n while (i < a.length && i < b.length) {\n const diff = b[i] - a[i];\n // only keep going if diff === 0\n if (diff)\n return diff;\n i++;\n }\n // if the last subsegment was Static, the shorter segments should be sorted first\n // otherwise sort the longest segment first\n if (a.length < b.length) {\n return a.length === 1 && a[0] === 40 /* PathScore.Static */ + 40 /* PathScore.Segment */\n ? -1\n : 1;\n }\n else if (a.length > b.length) {\n return b.length === 1 && b[0] === 40 /* PathScore.Static */ + 40 /* PathScore.Segment */\n ? 1\n : -1;\n }\n return 0;\n}\n/**\n * Compare function that can be used with `sort` to sort an array of PathParser\n *\n * @param a - first PathParser\n * @param b - second PathParser\n * @returns 0 if both are equal, < 0 if a should be sorted first, > 0 if b\n */\nfunction comparePathParserScore(a, b) {\n let i = 0;\n const aScore = a.score;\n const bScore = b.score;\n while (i < aScore.length && i < bScore.length) {\n const comp = compareScoreArray(aScore[i], bScore[i]);\n // do not return if both are equal\n if (comp)\n return comp;\n i++;\n }\n if (Math.abs(bScore.length - aScore.length) === 1) {\n if (isLastScoreNegative(aScore))\n return 1;\n if (isLastScoreNegative(bScore))\n return -1;\n }\n // if a and b share the same score entries but b has more, sort b first\n return bScore.length - aScore.length;\n // this is the ternary version\n // return aScore.length < bScore.length\n // ? 1\n // : aScore.length > bScore.length\n // ? -1\n // : 0\n}\n/**\n * This allows detecting splats at the end of a path: /home/:id(.*)*\n *\n * @param score - score to check\n * @returns true if the last entry is negative\n */\nfunction isLastScoreNegative(score) {\n const last = score[score.length - 1];\n return score.length > 0 && last[last.length - 1] < 0;\n}\n\nconst ROOT_TOKEN = {\n type: 0 /* TokenType.Static */,\n value: '',\n};\nconst VALID_PARAM_RE = /[a-zA-Z0-9_]/;\n// After some profiling, the cache seems to be unnecessary because tokenizePath\n// (the slowest part of adding a route) is very fast\n// const tokenCache = new Map()\nfunction tokenizePath(path) {\n if (!path)\n return [[]];\n if (path === '/')\n return [[ROOT_TOKEN]];\n if (!path.startsWith('/')) {\n throw new Error((process.env.NODE_ENV !== 'production')\n ? `Route paths should start with a \"/\": \"${path}\" should be \"/${path}\".`\n : `Invalid path \"${path}\"`);\n }\n // if (tokenCache.has(path)) return tokenCache.get(path)!\n function crash(message) {\n throw new Error(`ERR (${state})/\"${buffer}\": ${message}`);\n }\n let state = 0 /* TokenizerState.Static */;\n let previousState = state;\n const tokens = [];\n // the segment will always be valid because we get into the initial state\n // with the leading /\n let segment;\n function finalizeSegment() {\n if (segment)\n tokens.push(segment);\n segment = [];\n }\n // index on the path\n let i = 0;\n // char at index\n let char;\n // buffer of the value read\n let buffer = '';\n // custom regexp for a param\n let customRe = '';\n function consumeBuffer() {\n if (!buffer)\n return;\n if (state === 0 /* TokenizerState.Static */) {\n segment.push({\n type: 0 /* TokenType.Static */,\n value: buffer,\n });\n }\n else if (state === 1 /* TokenizerState.Param */ ||\n state === 2 /* TokenizerState.ParamRegExp */ ||\n state === 3 /* TokenizerState.ParamRegExpEnd */) {\n if (segment.length > 1 && (char === '*' || char === '+'))\n crash(`A repeatable param (${buffer}) must be alone in its segment. eg: '/:ids+.`);\n segment.push({\n type: 1 /* TokenType.Param */,\n value: buffer,\n regexp: customRe,\n repeatable: char === '*' || char === '+',\n optional: char === '*' || char === '?',\n });\n }\n else {\n crash('Invalid state to consume buffer');\n }\n buffer = '';\n }\n function addCharToBuffer() {\n buffer += char;\n }\n while (i < path.length) {\n char = path[i++];\n if (char === '\\\\' && state !== 2 /* TokenizerState.ParamRegExp */) {\n previousState = state;\n state = 4 /* TokenizerState.EscapeNext */;\n continue;\n }\n switch (state) {\n case 0 /* TokenizerState.Static */:\n if (char === '/') {\n if (buffer) {\n consumeBuffer();\n }\n finalizeSegment();\n }\n else if (char === ':') {\n consumeBuffer();\n state = 1 /* TokenizerState.Param */;\n }\n else {\n addCharToBuffer();\n }\n break;\n case 4 /* TokenizerState.EscapeNext */:\n addCharToBuffer();\n state = previousState;\n break;\n case 1 /* TokenizerState.Param */:\n if (char === '(') {\n state = 2 /* TokenizerState.ParamRegExp */;\n }\n else if (VALID_PARAM_RE.test(char)) {\n addCharToBuffer();\n }\n else {\n consumeBuffer();\n state = 0 /* TokenizerState.Static */;\n // go back one character if we were not modifying\n if (char !== '*' && char !== '?' && char !== '+')\n i--;\n }\n break;\n case 2 /* TokenizerState.ParamRegExp */:\n // TODO: is it worth handling nested regexp? like :p(?:prefix_([^/]+)_suffix)\n // it already works by escaping the closing )\n // https://paths.esm.dev/?p=AAMeJbiAwQEcDKbAoAAkP60PG2R6QAvgNaA6AFACM2ABuQBB#\n // is this really something people need since you can also write\n // /prefix_:p()_suffix\n if (char === ')') {\n // handle the escaped )\n if (customRe[customRe.length - 1] == '\\\\')\n customRe = customRe.slice(0, -1) + char;\n else\n state = 3 /* TokenizerState.ParamRegExpEnd */;\n }\n else {\n customRe += char;\n }\n break;\n case 3 /* TokenizerState.ParamRegExpEnd */:\n // same as finalizing a param\n consumeBuffer();\n state = 0 /* TokenizerState.Static */;\n // go back one character if we were not modifying\n if (char !== '*' && char !== '?' && char !== '+')\n i--;\n customRe = '';\n break;\n default:\n crash('Unknown state');\n break;\n }\n }\n if (state === 2 /* TokenizerState.ParamRegExp */)\n crash(`Unfinished custom RegExp for param \"${buffer}\"`);\n consumeBuffer();\n finalizeSegment();\n // tokenCache.set(path, tokens)\n return tokens;\n}\n\nfunction createRouteRecordMatcher(record, parent, options) {\n const parser = tokensToParser(tokenizePath(record.path), options);\n // warn against params with the same name\n if ((process.env.NODE_ENV !== 'production')) {\n const existingKeys = new Set();\n for (const key of parser.keys) {\n if (existingKeys.has(key.name))\n warn(`Found duplicated params with name \"${key.name}\" for path \"${record.path}\". Only the last one will be available on \"$route.params\".`);\n existingKeys.add(key.name);\n }\n }\n const matcher = assign(parser, {\n record,\n parent,\n // these needs to be populated by the parent\n children: [],\n alias: [],\n });\n if (parent) {\n // both are aliases or both are not aliases\n // we don't want to mix them because the order is used when\n // passing originalRecord in Matcher.addRoute\n if (!matcher.record.aliasOf === !parent.record.aliasOf)\n parent.children.push(matcher);\n }\n return matcher;\n}\n\n/**\n * Creates a Router Matcher.\n *\n * @internal\n * @param routes - array of initial routes\n * @param globalOptions - global route options\n */\nfunction createRouterMatcher(routes, globalOptions) {\n // normalized ordered array of matchers\n const matchers = [];\n const matcherMap = new Map();\n globalOptions = mergeOptions({ strict: false, end: true, sensitive: false }, globalOptions);\n function getRecordMatcher(name) {\n return matcherMap.get(name);\n }\n function addRoute(record, parent, originalRecord) {\n // used later on to remove by name\n const isRootAdd = !originalRecord;\n const mainNormalizedRecord = normalizeRouteRecord(record);\n if ((process.env.NODE_ENV !== 'production')) {\n checkChildMissingNameWithEmptyPath(mainNormalizedRecord, parent);\n }\n // we might be the child of an alias\n mainNormalizedRecord.aliasOf = originalRecord && originalRecord.record;\n const options = mergeOptions(globalOptions, record);\n // generate an array of records to correctly handle aliases\n const normalizedRecords = [\n mainNormalizedRecord,\n ];\n if ('alias' in record) {\n const aliases = typeof record.alias === 'string' ? [record.alias] : record.alias;\n for (const alias of aliases) {\n normalizedRecords.push(assign({}, mainNormalizedRecord, {\n // this allows us to hold a copy of the `components` option\n // so that async components cache is hold on the original record\n components: originalRecord\n ? originalRecord.record.components\n : mainNormalizedRecord.components,\n path: alias,\n // we might be the child of an alias\n aliasOf: originalRecord\n ? originalRecord.record\n : mainNormalizedRecord,\n // the aliases are always of the same kind as the original since they\n // are defined on the same record\n }));\n }\n }\n let matcher;\n let originalMatcher;\n for (const normalizedRecord of normalizedRecords) {\n const { path } = normalizedRecord;\n // Build up the path for nested routes if the child isn't an absolute\n // route. Only add the / delimiter if the child path isn't empty and if the\n // parent path doesn't have a trailing slash\n if (parent && path[0] !== '/') {\n const parentPath = parent.record.path;\n const connectingSlash = parentPath[parentPath.length - 1] === '/' ? '' : '/';\n normalizedRecord.path =\n parent.record.path + (path && connectingSlash + path);\n }\n if ((process.env.NODE_ENV !== 'production') && normalizedRecord.path === '*') {\n throw new Error('Catch all routes (\"*\") must now be defined using a param with a custom regexp.\\n' +\n 'See more at https://next.router.vuejs.org/guide/migration/#removed-star-or-catch-all-routes.');\n }\n // create the object beforehand, so it can be passed to children\n matcher = createRouteRecordMatcher(normalizedRecord, parent, options);\n if ((process.env.NODE_ENV !== 'production') && parent && path[0] === '/')\n checkMissingParamsInAbsolutePath(matcher, parent);\n // if we are an alias we must tell the original record that we exist,\n // so we can be removed\n if (originalRecord) {\n originalRecord.alias.push(matcher);\n if ((process.env.NODE_ENV !== 'production')) {\n checkSameParams(originalRecord, matcher);\n }\n }\n else {\n // otherwise, the first record is the original and others are aliases\n originalMatcher = originalMatcher || matcher;\n if (originalMatcher !== matcher)\n originalMatcher.alias.push(matcher);\n // remove the route if named and only for the top record (avoid in nested calls)\n // this works because the original record is the first one\n if (isRootAdd && record.name && !isAliasRecord(matcher))\n removeRoute(record.name);\n }\n if (mainNormalizedRecord.children) {\n const children = mainNormalizedRecord.children;\n for (let i = 0; i < children.length; i++) {\n addRoute(children[i], matcher, originalRecord && originalRecord.children[i]);\n }\n }\n // if there was no original record, then the first one was not an alias and all\n // other aliases (if any) need to reference this record when adding children\n originalRecord = originalRecord || matcher;\n // TODO: add normalized records for more flexibility\n // if (parent && isAliasRecord(originalRecord)) {\n // parent.children.push(originalRecord)\n // }\n // Avoid adding a record that doesn't display anything. This allows passing through records without a component to\n // not be reached and pass through the catch all route\n if ((matcher.record.components &&\n Object.keys(matcher.record.components).length) ||\n matcher.record.name ||\n matcher.record.redirect) {\n insertMatcher(matcher);\n }\n }\n return originalMatcher\n ? () => {\n // since other matchers are aliases, they should be removed by the original matcher\n removeRoute(originalMatcher);\n }\n : noop;\n }\n function removeRoute(matcherRef) {\n if (isRouteName(matcherRef)) {\n const matcher = matcherMap.get(matcherRef);\n if (matcher) {\n matcherMap.delete(matcherRef);\n matchers.splice(matchers.indexOf(matcher), 1);\n matcher.children.forEach(removeRoute);\n matcher.alias.forEach(removeRoute);\n }\n }\n else {\n const index = matchers.indexOf(matcherRef);\n if (index > -1) {\n matchers.splice(index, 1);\n if (matcherRef.record.name)\n matcherMap.delete(matcherRef.record.name);\n matcherRef.children.forEach(removeRoute);\n matcherRef.alias.forEach(removeRoute);\n }\n }\n }\n function getRoutes() {\n return matchers;\n }\n function insertMatcher(matcher) {\n let i = 0;\n while (i < matchers.length &&\n comparePathParserScore(matcher, matchers[i]) >= 0 &&\n // Adding children with empty path should still appear before the parent\n // https://github.com/vuejs/router/issues/1124\n (matcher.record.path !== matchers[i].record.path ||\n !isRecordChildOf(matcher, matchers[i])))\n i++;\n matchers.splice(i, 0, matcher);\n // only add the original record to the name map\n if (matcher.record.name && !isAliasRecord(matcher))\n matcherMap.set(matcher.record.name, matcher);\n }\n function resolve(location, currentLocation) {\n let matcher;\n let params = {};\n let path;\n let name;\n if ('name' in location && location.name) {\n matcher = matcherMap.get(location.name);\n if (!matcher)\n throw createRouterError(1 /* ErrorTypes.MATCHER_NOT_FOUND */, {\n location,\n });\n // warn if the user is passing invalid params so they can debug it better when they get removed\n if ((process.env.NODE_ENV !== 'production')) {\n const invalidParams = Object.keys(location.params || {}).filter(paramName => !matcher.keys.find(k => k.name === paramName));\n if (invalidParams.length) {\n warn(`Discarded invalid param(s) \"${invalidParams.join('\", \"')}\" when navigating. See https://github.com/vuejs/router/blob/main/packages/router/CHANGELOG.md#414-2022-08-22 for more details.`);\n }\n }\n name = matcher.record.name;\n params = assign(\n // paramsFromLocation is a new object\n paramsFromLocation(currentLocation.params, \n // only keep params that exist in the resolved location\n // TODO: only keep optional params coming from a parent record\n matcher.keys.filter(k => !k.optional).map(k => k.name)), \n // discard any existing params in the current location that do not exist here\n // #1497 this ensures better active/exact matching\n location.params &&\n paramsFromLocation(location.params, matcher.keys.map(k => k.name)));\n // throws if cannot be stringified\n path = matcher.stringify(params);\n }\n else if ('path' in location) {\n // no need to resolve the path with the matcher as it was provided\n // this also allows the user to control the encoding\n path = location.path;\n if ((process.env.NODE_ENV !== 'production') && !path.startsWith('/')) {\n warn(`The Matcher cannot resolve relative paths but received \"${path}\". Unless you directly called \\`matcher.resolve(\"${path}\")\\`, this is probably a bug in vue-router. Please open an issue at https://github.com/vuejs/router/issues/new/choose.`);\n }\n matcher = matchers.find(m => m.re.test(path));\n // matcher should have a value after the loop\n if (matcher) {\n // we know the matcher works because we tested the regexp\n params = matcher.parse(path);\n name = matcher.record.name;\n }\n // location is a relative path\n }\n else {\n // match by name or path of current route\n matcher = currentLocation.name\n ? matcherMap.get(currentLocation.name)\n : matchers.find(m => m.re.test(currentLocation.path));\n if (!matcher)\n throw createRouterError(1 /* ErrorTypes.MATCHER_NOT_FOUND */, {\n location,\n currentLocation,\n });\n name = matcher.record.name;\n // since we are navigating to the same location, we don't need to pick the\n // params like when `name` is provided\n params = assign({}, currentLocation.params, location.params);\n path = matcher.stringify(params);\n }\n const matched = [];\n let parentMatcher = matcher;\n while (parentMatcher) {\n // reversed order so parents are at the beginning\n matched.unshift(parentMatcher.record);\n parentMatcher = parentMatcher.parent;\n }\n return {\n name,\n path,\n params,\n matched,\n meta: mergeMetaFields(matched),\n };\n }\n // add initial routes\n routes.forEach(route => addRoute(route));\n return { addRoute, resolve, removeRoute, getRoutes, getRecordMatcher };\n}\nfunction paramsFromLocation(params, keys) {\n const newParams = {};\n for (const key of keys) {\n if (key in params)\n newParams[key] = params[key];\n }\n return newParams;\n}\n/**\n * Normalizes a RouteRecordRaw. Creates a copy\n *\n * @param record\n * @returns the normalized version\n */\nfunction normalizeRouteRecord(record) {\n return {\n path: record.path,\n redirect: record.redirect,\n name: record.name,\n meta: record.meta || {},\n aliasOf: undefined,\n beforeEnter: record.beforeEnter,\n props: normalizeRecordProps(record),\n children: record.children || [],\n instances: {},\n leaveGuards: new Set(),\n updateGuards: new Set(),\n enterCallbacks: {},\n components: 'components' in record\n ? record.components || null\n : record.component && { default: record.component },\n };\n}\n/**\n * Normalize the optional `props` in a record to always be an object similar to\n * components. Also accept a boolean for components.\n * @param record\n */\nfunction normalizeRecordProps(record) {\n const propsObject = {};\n // props does not exist on redirect records, but we can set false directly\n const props = record.props || false;\n if ('component' in record) {\n propsObject.default = props;\n }\n else {\n // NOTE: we could also allow a function to be applied to every component.\n // Would need user feedback for use cases\n for (const name in record.components)\n propsObject[name] = typeof props === 'object' ? props[name] : props;\n }\n return propsObject;\n}\n/**\n * Checks if a record or any of its parent is an alias\n * @param record\n */\nfunction isAliasRecord(record) {\n while (record) {\n if (record.record.aliasOf)\n return true;\n record = record.parent;\n }\n return false;\n}\n/**\n * Merge meta fields of an array of records\n *\n * @param matched - array of matched records\n */\nfunction mergeMetaFields(matched) {\n return matched.reduce((meta, record) => assign(meta, record.meta), {});\n}\nfunction mergeOptions(defaults, partialOptions) {\n const options = {};\n for (const key in defaults) {\n options[key] = key in partialOptions ? partialOptions[key] : defaults[key];\n }\n return options;\n}\nfunction isSameParam(a, b) {\n return (a.name === b.name &&\n a.optional === b.optional &&\n a.repeatable === b.repeatable);\n}\n/**\n * Check if a path and its alias have the same required params\n *\n * @param a - original record\n * @param b - alias record\n */\nfunction checkSameParams(a, b) {\n for (const key of a.keys) {\n if (!key.optional && !b.keys.find(isSameParam.bind(null, key)))\n return warn(`Alias \"${b.record.path}\" and the original record: \"${a.record.path}\" must have the exact same param named \"${key.name}\"`);\n }\n for (const key of b.keys) {\n if (!key.optional && !a.keys.find(isSameParam.bind(null, key)))\n return warn(`Alias \"${b.record.path}\" and the original record: \"${a.record.path}\" must have the exact same param named \"${key.name}\"`);\n }\n}\n/**\n * A route with a name and a child with an empty path without a name should warn when adding the route\n *\n * @param mainNormalizedRecord - RouteRecordNormalized\n * @param parent - RouteRecordMatcher\n */\nfunction checkChildMissingNameWithEmptyPath(mainNormalizedRecord, parent) {\n if (parent &&\n parent.record.name &&\n !mainNormalizedRecord.name &&\n !mainNormalizedRecord.path) {\n warn(`The route named \"${String(parent.record.name)}\" has a child without a name and an empty path. Using that name won't render the empty path child so you probably want to move the name to the child instead. If this is intentional, add a name to the child route to remove the warning.`);\n }\n}\nfunction checkMissingParamsInAbsolutePath(record, parent) {\n for (const key of parent.keys) {\n if (!record.keys.find(isSameParam.bind(null, key)))\n return warn(`Absolute path \"${record.record.path}\" must have the exact same param named \"${key.name}\" as its parent \"${parent.record.path}\".`);\n }\n}\nfunction isRecordChildOf(record, parent) {\n return parent.children.some(child => child === record || isRecordChildOf(record, child));\n}\n\n/**\n * Encoding Rules โฃ = Space Path: โฃ \" < > # ? { } Query: โฃ \" < > # & = Hash: โฃ \"\n * < > `\n *\n * On top of that, the RFC3986 (https://tools.ietf.org/html/rfc3986#section-2.2)\n * defines some extra characters to be encoded. Most browsers do not encode them\n * in encodeURI https://github.com/whatwg/url/issues/369, so it may be safer to\n * also encode `!'()*`. Leaving un-encoded only ASCII alphanumeric(`a-zA-Z0-9`)\n * plus `-._~`. This extra safety should be applied to query by patching the\n * string returned by encodeURIComponent encodeURI also encodes `[\\]^`. `\\`\n * should be encoded to avoid ambiguity. Browsers (IE, FF, C) transform a `\\`\n * into a `/` if directly typed in. The _backtick_ (`````) should also be\n * encoded everywhere because some browsers like FF encode it when directly\n * written while others don't. Safari and IE don't encode ``\"<>{}``` in hash.\n */\n// const EXTRA_RESERVED_RE = /[!'()*]/g\n// const encodeReservedReplacer = (c: string) => '%' + c.charCodeAt(0).toString(16)\nconst HASH_RE = /#/g; // %23\nconst AMPERSAND_RE = /&/g; // %26\nconst SLASH_RE = /\\//g; // %2F\nconst EQUAL_RE = /=/g; // %3D\nconst IM_RE = /\\?/g; // %3F\nconst PLUS_RE = /\\+/g; // %2B\n/**\n * NOTE: It's not clear to me if we should encode the + symbol in queries, it\n * seems to be less flexible than not doing so and I can't find out the legacy\n * systems requiring this for regular requests like text/html. In the standard,\n * the encoding of the plus character is only mentioned for\n * application/x-www-form-urlencoded\n * (https://url.spec.whatwg.org/#urlencoded-parsing) and most browsers seems lo\n * leave the plus character as is in queries. To be more flexible, we allow the\n * plus character on the query, but it can also be manually encoded by the user.\n *\n * Resources:\n * - https://url.spec.whatwg.org/#urlencoded-parsing\n * - https://stackoverflow.com/questions/1634271/url-encoding-the-space-character-or-20\n */\nconst ENC_BRACKET_OPEN_RE = /%5B/g; // [\nconst ENC_BRACKET_CLOSE_RE = /%5D/g; // ]\nconst ENC_CARET_RE = /%5E/g; // ^\nconst ENC_BACKTICK_RE = /%60/g; // `\nconst ENC_CURLY_OPEN_RE = /%7B/g; // {\nconst ENC_PIPE_RE = /%7C/g; // |\nconst ENC_CURLY_CLOSE_RE = /%7D/g; // }\nconst ENC_SPACE_RE = /%20/g; // }\n/**\n * Encode characters that need to be encoded on the path, search and hash\n * sections of the URL.\n *\n * @internal\n * @param text - string to encode\n * @returns encoded string\n */\nfunction commonEncode(text) {\n return encodeURI('' + text)\n .replace(ENC_PIPE_RE, '|')\n .replace(ENC_BRACKET_OPEN_RE, '[')\n .replace(ENC_BRACKET_CLOSE_RE, ']');\n}\n/**\n * Encode characters that need to be encoded on the hash section of the URL.\n *\n * @param text - string to encode\n * @returns encoded string\n */\nfunction encodeHash(text) {\n return commonEncode(text)\n .replace(ENC_CURLY_OPEN_RE, '{')\n .replace(ENC_CURLY_CLOSE_RE, '}')\n .replace(ENC_CARET_RE, '^');\n}\n/**\n * Encode characters that need to be encoded query values on the query\n * section of the URL.\n *\n * @param text - string to encode\n * @returns encoded string\n */\nfunction encodeQueryValue(text) {\n return (commonEncode(text)\n // Encode the space as +, encode the + to differentiate it from the space\n .replace(PLUS_RE, '%2B')\n .replace(ENC_SPACE_RE, '+')\n .replace(HASH_RE, '%23')\n .replace(AMPERSAND_RE, '%26')\n .replace(ENC_BACKTICK_RE, '`')\n .replace(ENC_CURLY_OPEN_RE, '{')\n .replace(ENC_CURLY_CLOSE_RE, '}')\n .replace(ENC_CARET_RE, '^'));\n}\n/**\n * Like `encodeQueryValue` but also encodes the `=` character.\n *\n * @param text - string to encode\n */\nfunction encodeQueryKey(text) {\n return encodeQueryValue(text).replace(EQUAL_RE, '%3D');\n}\n/**\n * Encode characters that need to be encoded on the path section of the URL.\n *\n * @param text - string to encode\n * @returns encoded string\n */\nfunction encodePath(text) {\n return commonEncode(text).replace(HASH_RE, '%23').replace(IM_RE, '%3F');\n}\n/**\n * Encode characters that need to be encoded on the path section of the URL as a\n * param. This function encodes everything {@link encodePath} does plus the\n * slash (`/`) character. If `text` is `null` or `undefined`, returns an empty\n * string instead.\n *\n * @param text - string to encode\n * @returns encoded string\n */\nfunction encodeParam(text) {\n return text == null ? '' : encodePath(text).replace(SLASH_RE, '%2F');\n}\n/**\n * Decode text using `decodeURIComponent`. Returns the original text if it\n * fails.\n *\n * @param text - string to decode\n * @returns decoded string\n */\nfunction decode(text) {\n try {\n return decodeURIComponent('' + text);\n }\n catch (err) {\n (process.env.NODE_ENV !== 'production') && warn(`Error decoding \"${text}\". Using original value`);\n }\n return '' + text;\n}\n\n/**\n * Transforms a queryString into a {@link LocationQuery} object. Accept both, a\n * version with the leading `?` and without Should work as URLSearchParams\n\n * @internal\n *\n * @param search - search string to parse\n * @returns a query object\n */\nfunction parseQuery(search) {\n const query = {};\n // avoid creating an object with an empty key and empty value\n // because of split('&')\n if (search === '' || search === '?')\n return query;\n const hasLeadingIM = search[0] === '?';\n const searchParams = (hasLeadingIM ? search.slice(1) : search).split('&');\n for (let i = 0; i < searchParams.length; ++i) {\n // pre decode the + into space\n const searchParam = searchParams[i].replace(PLUS_RE, ' ');\n // allow the = character\n const eqPos = searchParam.indexOf('=');\n const key = decode(eqPos < 0 ? searchParam : searchParam.slice(0, eqPos));\n const value = eqPos < 0 ? null : decode(searchParam.slice(eqPos + 1));\n if (key in query) {\n // an extra variable for ts types\n let currentValue = query[key];\n if (!isArray(currentValue)) {\n currentValue = query[key] = [currentValue];\n }\n currentValue.push(value);\n }\n else {\n query[key] = value;\n }\n }\n return query;\n}\n/**\n * Stringifies a {@link LocationQueryRaw} object. Like `URLSearchParams`, it\n * doesn't prepend a `?`\n *\n * @internal\n *\n * @param query - query object to stringify\n * @returns string version of the query without the leading `?`\n */\nfunction stringifyQuery(query) {\n let search = '';\n for (let key in query) {\n const value = query[key];\n key = encodeQueryKey(key);\n if (value == null) {\n // only null adds the value\n if (value !== undefined) {\n search += (search.length ? '&' : '') + key;\n }\n continue;\n }\n // keep null values\n const values = isArray(value)\n ? value.map(v => v && encodeQueryValue(v))\n : [value && encodeQueryValue(value)];\n values.forEach(value => {\n // skip undefined values in arrays as if they were not present\n // smaller code than using filter\n if (value !== undefined) {\n // only append & with non-empty search\n search += (search.length ? '&' : '') + key;\n if (value != null)\n search += '=' + value;\n }\n });\n }\n return search;\n}\n/**\n * Transforms a {@link LocationQueryRaw} into a {@link LocationQuery} by casting\n * numbers into strings, removing keys with an undefined value and replacing\n * undefined with null in arrays\n *\n * @param query - query object to normalize\n * @returns a normalized query object\n */\nfunction normalizeQuery(query) {\n const normalizedQuery = {};\n for (const key in query) {\n const value = query[key];\n if (value !== undefined) {\n normalizedQuery[key] = isArray(value)\n ? value.map(v => (v == null ? null : '' + v))\n : value == null\n ? value\n : '' + value;\n }\n }\n return normalizedQuery;\n}\n\n/**\n * RouteRecord being rendered by the closest ancestor Router View. Used for\n * `onBeforeRouteUpdate` and `onBeforeRouteLeave`. rvlm stands for Router View\n * Location Matched\n *\n * @internal\n */\nconst matchedRouteKey = Symbol((process.env.NODE_ENV !== 'production') ? 'router view location matched' : '');\n/**\n * Allows overriding the router view depth to control which component in\n * `matched` is rendered. rvd stands for Router View Depth\n *\n * @internal\n */\nconst viewDepthKey = Symbol((process.env.NODE_ENV !== 'production') ? 'router view depth' : '');\n/**\n * Allows overriding the router instance returned by `useRouter` in tests. r\n * stands for router\n *\n * @internal\n */\nconst routerKey = Symbol((process.env.NODE_ENV !== 'production') ? 'router' : '');\n/**\n * Allows overriding the current route returned by `useRoute` in tests. rl\n * stands for route location\n *\n * @internal\n */\nconst routeLocationKey = Symbol((process.env.NODE_ENV !== 'production') ? 'route location' : '');\n/**\n * Allows overriding the current route used by router-view. Internally this is\n * used when the `route` prop is passed.\n *\n * @internal\n */\nconst routerViewLocationKey = Symbol((process.env.NODE_ENV !== 'production') ? 'router view location' : '');\n\n/**\n * Create a list of callbacks that can be reset. Used to create before and after navigation guards list\n */\nfunction useCallbacks() {\n let handlers = [];\n function add(handler) {\n handlers.push(handler);\n return () => {\n const i = handlers.indexOf(handler);\n if (i > -1)\n handlers.splice(i, 1);\n };\n }\n function reset() {\n handlers = [];\n }\n return {\n add,\n list: () => handlers.slice(),\n reset,\n };\n}\n\nfunction registerGuard(record, name, guard) {\n const removeFromList = () => {\n record[name].delete(guard);\n };\n onUnmounted(removeFromList);\n onDeactivated(removeFromList);\n onActivated(() => {\n record[name].add(guard);\n });\n record[name].add(guard);\n}\n/**\n * Add a navigation guard that triggers whenever the component for the current\n * location is about to be left. Similar to {@link beforeRouteLeave} but can be\n * used in any component. The guard is removed when the component is unmounted.\n *\n * @param leaveGuard - {@link NavigationGuard}\n */\nfunction onBeforeRouteLeave(leaveGuard) {\n if ((process.env.NODE_ENV !== 'production') && !getCurrentInstance()) {\n warn('getCurrentInstance() returned null. onBeforeRouteLeave() must be called at the top of a setup function');\n return;\n }\n const activeRecord = inject(matchedRouteKey, \n // to avoid warning\n {}).value;\n if (!activeRecord) {\n (process.env.NODE_ENV !== 'production') &&\n warn('No active route record was found when calling `onBeforeRouteLeave()`. Make sure you call this function inside a component child of . Maybe you called it inside of App.vue?');\n return;\n }\n registerGuard(activeRecord, 'leaveGuards', leaveGuard);\n}\n/**\n * Add a navigation guard that triggers whenever the current location is about\n * to be updated. Similar to {@link beforeRouteUpdate} but can be used in any\n * component. The guard is removed when the component is unmounted.\n *\n * @param updateGuard - {@link NavigationGuard}\n */\nfunction onBeforeRouteUpdate(updateGuard) {\n if ((process.env.NODE_ENV !== 'production') && !getCurrentInstance()) {\n warn('getCurrentInstance() returned null. onBeforeRouteUpdate() must be called at the top of a setup function');\n return;\n }\n const activeRecord = inject(matchedRouteKey, \n // to avoid warning\n {}).value;\n if (!activeRecord) {\n (process.env.NODE_ENV !== 'production') &&\n warn('No active route record was found when calling `onBeforeRouteUpdate()`. Make sure you call this function inside a component child of . Maybe you called it inside of App.vue?');\n return;\n }\n registerGuard(activeRecord, 'updateGuards', updateGuard);\n}\nfunction guardToPromiseFn(guard, to, from, record, name) {\n // keep a reference to the enterCallbackArray to prevent pushing callbacks if a new navigation took place\n const enterCallbackArray = record &&\n // name is defined if record is because of the function overload\n (record.enterCallbacks[name] = record.enterCallbacks[name] || []);\n return () => new Promise((resolve, reject) => {\n const next = (valid) => {\n if (valid === false) {\n reject(createRouterError(4 /* ErrorTypes.NAVIGATION_ABORTED */, {\n from,\n to,\n }));\n }\n else if (valid instanceof Error) {\n reject(valid);\n }\n else if (isRouteLocation(valid)) {\n reject(createRouterError(2 /* ErrorTypes.NAVIGATION_GUARD_REDIRECT */, {\n from: to,\n to: valid,\n }));\n }\n else {\n if (enterCallbackArray &&\n // since enterCallbackArray is truthy, both record and name also are\n record.enterCallbacks[name] === enterCallbackArray &&\n typeof valid === 'function') {\n enterCallbackArray.push(valid);\n }\n resolve();\n }\n };\n // wrapping with Promise.resolve allows it to work with both async and sync guards\n const guardReturn = guard.call(record && record.instances[name], to, from, (process.env.NODE_ENV !== 'production') ? canOnlyBeCalledOnce(next, to, from) : next);\n let guardCall = Promise.resolve(guardReturn);\n if (guard.length < 3)\n guardCall = guardCall.then(next);\n if ((process.env.NODE_ENV !== 'production') && guard.length > 2) {\n const message = `The \"next\" callback was never called inside of ${guard.name ? '\"' + guard.name + '\"' : ''}:\\n${guard.toString()}\\n. If you are returning a value instead of calling \"next\", make sure to remove the \"next\" parameter from your function.`;\n if (typeof guardReturn === 'object' && 'then' in guardReturn) {\n guardCall = guardCall.then(resolvedValue => {\n // @ts-expect-error: _called is added at canOnlyBeCalledOnce\n if (!next._called) {\n warn(message);\n return Promise.reject(new Error('Invalid navigation guard'));\n }\n return resolvedValue;\n });\n }\n else if (guardReturn !== undefined) {\n // @ts-expect-error: _called is added at canOnlyBeCalledOnce\n if (!next._called) {\n warn(message);\n reject(new Error('Invalid navigation guard'));\n return;\n }\n }\n }\n guardCall.catch(err => reject(err));\n });\n}\nfunction canOnlyBeCalledOnce(next, to, from) {\n let called = 0;\n return function () {\n if (called++ === 1)\n warn(`The \"next\" callback was called more than once in one navigation guard when going from \"${from.fullPath}\" to \"${to.fullPath}\". It should be called exactly one time in each navigation guard. This will fail in production.`);\n // @ts-expect-error: we put it in the original one because it's easier to check\n next._called = true;\n if (called === 1)\n next.apply(null, arguments);\n };\n}\nfunction extractComponentsGuards(matched, guardType, to, from) {\n const guards = [];\n for (const record of matched) {\n if ((process.env.NODE_ENV !== 'production') && !record.components && !record.children.length) {\n warn(`Record with path \"${record.path}\" is either missing a \"component(s)\"` +\n ` or \"children\" property.`);\n }\n for (const name in record.components) {\n let rawComponent = record.components[name];\n if ((process.env.NODE_ENV !== 'production')) {\n if (!rawComponent ||\n (typeof rawComponent !== 'object' &&\n typeof rawComponent !== 'function')) {\n warn(`Component \"${name}\" in record with path \"${record.path}\" is not` +\n ` a valid component. Received \"${String(rawComponent)}\".`);\n // throw to ensure we stop here but warn to ensure the message isn't\n // missed by the user\n throw new Error('Invalid route component');\n }\n else if ('then' in rawComponent) {\n // warn if user wrote import('/component.vue') instead of () =>\n // import('./component.vue')\n warn(`Component \"${name}\" in record with path \"${record.path}\" is a ` +\n `Promise instead of a function that returns a Promise. Did you ` +\n `write \"import('./MyPage.vue')\" instead of ` +\n `\"() => import('./MyPage.vue')\" ? This will break in ` +\n `production if not fixed.`);\n const promise = rawComponent;\n rawComponent = () => promise;\n }\n else if (rawComponent.__asyncLoader &&\n // warn only once per component\n !rawComponent.__warnedDefineAsync) {\n rawComponent.__warnedDefineAsync = true;\n warn(`Component \"${name}\" in record with path \"${record.path}\" is defined ` +\n `using \"defineAsyncComponent()\". ` +\n `Write \"() => import('./MyPage.vue')\" instead of ` +\n `\"defineAsyncComponent(() => import('./MyPage.vue'))\".`);\n }\n }\n // skip update and leave guards if the route component is not mounted\n if (guardType !== 'beforeRouteEnter' && !record.instances[name])\n continue;\n if (isRouteComponent(rawComponent)) {\n // __vccOpts is added by vue-class-component and contain the regular options\n const options = rawComponent.__vccOpts || rawComponent;\n const guard = options[guardType];\n guard && guards.push(guardToPromiseFn(guard, to, from, record, name));\n }\n else {\n // start requesting the chunk already\n let componentPromise = rawComponent();\n if ((process.env.NODE_ENV !== 'production') && !('catch' in componentPromise)) {\n warn(`Component \"${name}\" in record with path \"${record.path}\" is a function that does not return a Promise. If you were passing a functional component, make sure to add a \"displayName\" to the component. This will break in production if not fixed.`);\n componentPromise = Promise.resolve(componentPromise);\n }\n guards.push(() => componentPromise.then(resolved => {\n if (!resolved)\n return Promise.reject(new Error(`Couldn't resolve component \"${name}\" at \"${record.path}\"`));\n const resolvedComponent = isESModule(resolved)\n ? resolved.default\n : resolved;\n // replace the function with the resolved component\n // cannot be null or undefined because we went into the for loop\n record.components[name] = resolvedComponent;\n // __vccOpts is added by vue-class-component and contain the regular options\n const options = resolvedComponent.__vccOpts || resolvedComponent;\n const guard = options[guardType];\n return guard && guardToPromiseFn(guard, to, from, record, name)();\n }));\n }\n }\n }\n return guards;\n}\n/**\n * Allows differentiating lazy components from functional components and vue-class-component\n * @internal\n *\n * @param component\n */\nfunction isRouteComponent(component) {\n return (typeof component === 'object' ||\n 'displayName' in component ||\n 'props' in component ||\n '__vccOpts' in component);\n}\n/**\n * Ensures a route is loaded, so it can be passed as o prop to ``.\n *\n * @param route - resolved route to load\n */\nfunction loadRouteLocation(route) {\n return route.matched.every(record => record.redirect)\n ? Promise.reject(new Error('Cannot load a route that redirects.'))\n : Promise.all(route.matched.map(record => record.components &&\n Promise.all(Object.keys(record.components).reduce((promises, name) => {\n const rawComponent = record.components[name];\n if (typeof rawComponent === 'function' &&\n !('displayName' in rawComponent)) {\n promises.push(rawComponent().then(resolved => {\n if (!resolved)\n return Promise.reject(new Error(`Couldn't resolve component \"${name}\" at \"${record.path}\". Ensure you passed a function that returns a promise.`));\n const resolvedComponent = isESModule(resolved)\n ? resolved.default\n : resolved;\n // replace the function with the resolved component\n // cannot be null or undefined because we went into the for loop\n record.components[name] = resolvedComponent;\n return;\n }));\n }\n return promises;\n }, [])))).then(() => route);\n}\n\n// TODO: we could allow currentRoute as a prop to expose `isActive` and\n// `isExactActive` behavior should go through an RFC\nfunction useLink(props) {\n const router = inject(routerKey);\n const currentRoute = inject(routeLocationKey);\n const route = computed(() => router.resolve(unref(props.to)));\n const activeRecordIndex = computed(() => {\n const { matched } = route.value;\n const { length } = matched;\n const routeMatched = matched[length - 1];\n const currentMatched = currentRoute.matched;\n if (!routeMatched || !currentMatched.length)\n return -1;\n const index = currentMatched.findIndex(isSameRouteRecord.bind(null, routeMatched));\n if (index > -1)\n return index;\n // possible parent record\n const parentRecordPath = getOriginalPath(matched[length - 2]);\n return (\n // we are dealing with nested routes\n length > 1 &&\n // if the parent and matched route have the same path, this link is\n // referring to the empty child. Or we currently are on a different\n // child of the same parent\n getOriginalPath(routeMatched) === parentRecordPath &&\n // avoid comparing the child with its parent\n currentMatched[currentMatched.length - 1].path !== parentRecordPath\n ? currentMatched.findIndex(isSameRouteRecord.bind(null, matched[length - 2]))\n : index);\n });\n const isActive = computed(() => activeRecordIndex.value > -1 &&\n includesParams(currentRoute.params, route.value.params));\n const isExactActive = computed(() => activeRecordIndex.value > -1 &&\n activeRecordIndex.value === currentRoute.matched.length - 1 &&\n isSameRouteLocationParams(currentRoute.params, route.value.params));\n function navigate(e = {}) {\n if (guardEvent(e)) {\n return router[unref(props.replace) ? 'replace' : 'push'](unref(props.to)\n // avoid uncaught errors are they are logged anyway\n ).catch(noop);\n }\n return Promise.resolve();\n }\n // devtools only\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) && isBrowser) {\n const instance = getCurrentInstance();\n if (instance) {\n const linkContextDevtools = {\n route: route.value,\n isActive: isActive.value,\n isExactActive: isExactActive.value,\n };\n // @ts-expect-error: this is internal\n instance.__vrl_devtools = instance.__vrl_devtools || [];\n // @ts-expect-error: this is internal\n instance.__vrl_devtools.push(linkContextDevtools);\n watchEffect(() => {\n linkContextDevtools.route = route.value;\n linkContextDevtools.isActive = isActive.value;\n linkContextDevtools.isExactActive = isExactActive.value;\n }, { flush: 'post' });\n }\n }\n /**\n * NOTE: update {@link _RouterLinkI}'s `$slots` type when updating this\n */\n return {\n route,\n href: computed(() => route.value.href),\n isActive,\n isExactActive,\n navigate,\n };\n}\nconst RouterLinkImpl = /*#__PURE__*/ defineComponent({\n name: 'RouterLink',\n compatConfig: { MODE: 3 },\n props: {\n to: {\n type: [String, Object],\n required: true,\n },\n replace: Boolean,\n activeClass: String,\n // inactiveClass: String,\n exactActiveClass: String,\n custom: Boolean,\n ariaCurrentValue: {\n type: String,\n default: 'page',\n },\n },\n useLink,\n setup(props, { slots }) {\n const link = reactive(useLink(props));\n const { options } = inject(routerKey);\n const elClass = computed(() => ({\n [getLinkClass(props.activeClass, options.linkActiveClass, 'router-link-active')]: link.isActive,\n // [getLinkClass(\n // props.inactiveClass,\n // options.linkInactiveClass,\n // 'router-link-inactive'\n // )]: !link.isExactActive,\n [getLinkClass(props.exactActiveClass, options.linkExactActiveClass, 'router-link-exact-active')]: link.isExactActive,\n }));\n return () => {\n const children = slots.default && slots.default(link);\n return props.custom\n ? children\n : h('a', {\n 'aria-current': link.isExactActive\n ? props.ariaCurrentValue\n : null,\n href: link.href,\n // this would override user added attrs but Vue will still add\n // the listener, so we end up triggering both\n onClick: link.navigate,\n class: elClass.value,\n }, children);\n };\n },\n});\n// export the public type for h/tsx inference\n// also to avoid inline import() in generated d.ts files\n/**\n * Component to render a link that triggers a navigation on click.\n */\nconst RouterLink = RouterLinkImpl;\nfunction guardEvent(e) {\n // don't redirect with control keys\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey)\n return;\n // don't redirect when preventDefault called\n if (e.defaultPrevented)\n return;\n // don't redirect on right click\n if (e.button !== undefined && e.button !== 0)\n return;\n // don't redirect if `target=\"_blank\"`\n // @ts-expect-error getAttribute does exist\n if (e.currentTarget && e.currentTarget.getAttribute) {\n // @ts-expect-error getAttribute exists\n const target = e.currentTarget.getAttribute('target');\n if (/\\b_blank\\b/i.test(target))\n return;\n }\n // this may be a Weex event which doesn't have this method\n if (e.preventDefault)\n e.preventDefault();\n return true;\n}\nfunction includesParams(outer, inner) {\n for (const key in inner) {\n const innerValue = inner[key];\n const outerValue = outer[key];\n if (typeof innerValue === 'string') {\n if (innerValue !== outerValue)\n return false;\n }\n else {\n if (!isArray(outerValue) ||\n outerValue.length !== innerValue.length ||\n innerValue.some((value, i) => value !== outerValue[i]))\n return false;\n }\n }\n return true;\n}\n/**\n * Get the original path value of a record by following its aliasOf\n * @param record\n */\nfunction getOriginalPath(record) {\n return record ? (record.aliasOf ? record.aliasOf.path : record.path) : '';\n}\n/**\n * Utility class to get the active class based on defaults.\n * @param propClass\n * @param globalClass\n * @param defaultClass\n */\nconst getLinkClass = (propClass, globalClass, defaultClass) => propClass != null\n ? propClass\n : globalClass != null\n ? globalClass\n : defaultClass;\n\nconst RouterViewImpl = /*#__PURE__*/ defineComponent({\n name: 'RouterView',\n // #674 we manually inherit them\n inheritAttrs: false,\n props: {\n name: {\n type: String,\n default: 'default',\n },\n route: Object,\n },\n // Better compat for @vue/compat users\n // https://github.com/vuejs/router/issues/1315\n compatConfig: { MODE: 3 },\n setup(props, { attrs, slots }) {\n (process.env.NODE_ENV !== 'production') && warnDeprecatedUsage();\n const injectedRoute = inject(routerViewLocationKey);\n const routeToDisplay = computed(() => props.route || injectedRoute.value);\n const injectedDepth = inject(viewDepthKey, 0);\n // The depth changes based on empty components option, which allows passthrough routes e.g. routes with children\n // that are used to reuse the `path` property\n const depth = computed(() => {\n let initialDepth = unref(injectedDepth);\n const { matched } = routeToDisplay.value;\n let matchedRoute;\n while ((matchedRoute = matched[initialDepth]) &&\n !matchedRoute.components) {\n initialDepth++;\n }\n return initialDepth;\n });\n const matchedRouteRef = computed(() => routeToDisplay.value.matched[depth.value]);\n provide(viewDepthKey, computed(() => depth.value + 1));\n provide(matchedRouteKey, matchedRouteRef);\n provide(routerViewLocationKey, routeToDisplay);\n const viewRef = ref();\n // watch at the same time the component instance, the route record we are\n // rendering, and the name\n watch(() => [viewRef.value, matchedRouteRef.value, props.name], ([instance, to, name], [oldInstance, from, oldName]) => {\n // copy reused instances\n if (to) {\n // this will update the instance for new instances as well as reused\n // instances when navigating to a new route\n to.instances[name] = instance;\n // the component instance is reused for a different route or name, so\n // we copy any saved update or leave guards. With async setup, the\n // mounting component will mount before the matchedRoute changes,\n // making instance === oldInstance, so we check if guards have been\n // added before. This works because we remove guards when\n // unmounting/deactivating components\n if (from && from !== to && instance && instance === oldInstance) {\n if (!to.leaveGuards.size) {\n to.leaveGuards = from.leaveGuards;\n }\n if (!to.updateGuards.size) {\n to.updateGuards = from.updateGuards;\n }\n }\n }\n // trigger beforeRouteEnter next callbacks\n if (instance &&\n to &&\n // if there is no instance but to and from are the same this might be\n // the first visit\n (!from || !isSameRouteRecord(to, from) || !oldInstance)) {\n (to.enterCallbacks[name] || []).forEach(callback => callback(instance));\n }\n }, { flush: 'post' });\n return () => {\n const route = routeToDisplay.value;\n // we need the value at the time we render because when we unmount, we\n // navigated to a different location so the value is different\n const currentName = props.name;\n const matchedRoute = matchedRouteRef.value;\n const ViewComponent = matchedRoute && matchedRoute.components[currentName];\n if (!ViewComponent) {\n return normalizeSlot(slots.default, { Component: ViewComponent, route });\n }\n // props from route configuration\n const routePropsOption = matchedRoute.props[currentName];\n const routeProps = routePropsOption\n ? routePropsOption === true\n ? route.params\n : typeof routePropsOption === 'function'\n ? routePropsOption(route)\n : routePropsOption\n : null;\n const onVnodeUnmounted = vnode => {\n // remove the instance reference to prevent leak\n if (vnode.component.isUnmounted) {\n matchedRoute.instances[currentName] = null;\n }\n };\n const component = h(ViewComponent, assign({}, routeProps, attrs, {\n onVnodeUnmounted,\n ref: viewRef,\n }));\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) &&\n isBrowser &&\n component.ref) {\n // TODO: can display if it's an alias, its props\n const info = {\n depth: depth.value,\n name: matchedRoute.name,\n path: matchedRoute.path,\n meta: matchedRoute.meta,\n };\n const internalInstances = isArray(component.ref)\n ? component.ref.map(r => r.i)\n : [component.ref.i];\n internalInstances.forEach(instance => {\n // @ts-expect-error\n instance.__vrv_devtools = info;\n });\n }\n return (\n // pass the vnode to the slot as a prop.\n // h and both accept vnodes\n normalizeSlot(slots.default, { Component: component, route }) ||\n component);\n };\n },\n});\nfunction normalizeSlot(slot, data) {\n if (!slot)\n return null;\n const slotContent = slot(data);\n return slotContent.length === 1 ? slotContent[0] : slotContent;\n}\n// export the public type for h/tsx inference\n// also to avoid inline import() in generated d.ts files\n/**\n * Component to display the current route the user is at.\n */\nconst RouterView = RouterViewImpl;\n// warn against deprecated usage with & \n// due to functional component being no longer eager in Vue 3\nfunction warnDeprecatedUsage() {\n const instance = getCurrentInstance();\n const parentName = instance.parent && instance.parent.type.name;\n const parentSubTreeType = instance.parent && instance.parent.subTree && instance.parent.subTree.type;\n if (parentName &&\n (parentName === 'KeepAlive' || parentName.includes('Transition')) &&\n typeof parentSubTreeType === 'object' &&\n parentSubTreeType.name === 'RouterView') {\n const comp = parentName === 'KeepAlive' ? 'keep-alive' : 'transition';\n warn(` can no longer be used directly inside or .\\n` +\n `Use slot props instead:\\n\\n` +\n `\\n` +\n ` <${comp}>\\n` +\n ` \\n` +\n ` \\n` +\n ``);\n }\n}\n\n/**\n * Copies a route location and removes any problematic properties that cannot be shown in devtools (e.g. Vue instances).\n *\n * @param routeLocation - routeLocation to format\n * @param tooltip - optional tooltip\n * @returns a copy of the routeLocation\n */\nfunction formatRouteLocation(routeLocation, tooltip) {\n const copy = assign({}, routeLocation, {\n // remove variables that can contain vue instances\n matched: routeLocation.matched.map(matched => omit(matched, ['instances', 'children', 'aliasOf'])),\n });\n return {\n _custom: {\n type: null,\n readOnly: true,\n display: routeLocation.fullPath,\n tooltip,\n value: copy,\n },\n };\n}\nfunction formatDisplay(display) {\n return {\n _custom: {\n display,\n },\n };\n}\n// to support multiple router instances\nlet routerId = 0;\nfunction addDevtools(app, router, matcher) {\n // Take over router.beforeEach and afterEach\n // make sure we are not registering the devtool twice\n if (router.__hasDevtools)\n return;\n router.__hasDevtools = true;\n // increment to support multiple router instances\n const id = routerId++;\n setupDevtoolsPlugin({\n id: 'org.vuejs.router' + (id ? '.' + id : ''),\n label: 'Vue Router',\n packageName: 'vue-router',\n homepage: 'https://router.vuejs.org',\n logo: 'https://router.vuejs.org/logo.png',\n componentStateTypes: ['Routing'],\n app,\n }, api => {\n if (typeof api.now !== 'function') {\n console.warn('[Vue Router]: You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.');\n }\n // display state added by the router\n api.on.inspectComponent((payload, ctx) => {\n if (payload.instanceData) {\n payload.instanceData.state.push({\n type: 'Routing',\n key: '$route',\n editable: false,\n value: formatRouteLocation(router.currentRoute.value, 'Current Route'),\n });\n }\n });\n // mark router-link as active and display tags on router views\n api.on.visitComponentTree(({ treeNode: node, componentInstance }) => {\n if (componentInstance.__vrv_devtools) {\n const info = componentInstance.__vrv_devtools;\n node.tags.push({\n label: (info.name ? `${info.name.toString()}: ` : '') + info.path,\n textColor: 0,\n tooltip: 'This component is rendered by <router-view>',\n backgroundColor: PINK_500,\n });\n }\n // if multiple useLink are used\n if (isArray(componentInstance.__vrl_devtools)) {\n componentInstance.__devtoolsApi = api;\n componentInstance.__vrl_devtools.forEach(devtoolsData => {\n let backgroundColor = ORANGE_400;\n let tooltip = '';\n if (devtoolsData.isExactActive) {\n backgroundColor = LIME_500;\n tooltip = 'This is exactly active';\n }\n else if (devtoolsData.isActive) {\n backgroundColor = BLUE_600;\n tooltip = 'This link is active';\n }\n node.tags.push({\n label: devtoolsData.route.path,\n textColor: 0,\n tooltip,\n backgroundColor,\n });\n });\n }\n });\n watch(router.currentRoute, () => {\n // refresh active state\n refreshRoutesView();\n api.notifyComponentUpdate();\n api.sendInspectorTree(routerInspectorId);\n api.sendInspectorState(routerInspectorId);\n });\n const navigationsLayerId = 'router:navigations:' + id;\n api.addTimelineLayer({\n id: navigationsLayerId,\n label: `Router${id ? ' ' + id : ''} Navigations`,\n color: 0x40a8c4,\n });\n // const errorsLayerId = 'router:errors'\n // api.addTimelineLayer({\n // id: errorsLayerId,\n // label: 'Router Errors',\n // color: 0xea5455,\n // })\n router.onError((error, to) => {\n api.addTimelineEvent({\n layerId: navigationsLayerId,\n event: {\n title: 'Error during Navigation',\n subtitle: to.fullPath,\n logType: 'error',\n time: api.now(),\n data: { error },\n groupId: to.meta.__navigationId,\n },\n });\n });\n // attached to `meta` and used to group events\n let navigationId = 0;\n router.beforeEach((to, from) => {\n const data = {\n guard: formatDisplay('beforeEach'),\n from: formatRouteLocation(from, 'Current Location during this navigation'),\n to: formatRouteLocation(to, 'Target location'),\n };\n // Used to group navigations together, hide from devtools\n Object.defineProperty(to.meta, '__navigationId', {\n value: navigationId++,\n });\n api.addTimelineEvent({\n layerId: navigationsLayerId,\n event: {\n time: api.now(),\n title: 'Start of navigation',\n subtitle: to.fullPath,\n data,\n groupId: to.meta.__navigationId,\n },\n });\n });\n router.afterEach((to, from, failure) => {\n const data = {\n guard: formatDisplay('afterEach'),\n };\n if (failure) {\n data.failure = {\n _custom: {\n type: Error,\n readOnly: true,\n display: failure ? failure.message : '',\n tooltip: 'Navigation Failure',\n value: failure,\n },\n };\n data.status = formatDisplay('โŒ');\n }\n else {\n data.status = formatDisplay('โœ…');\n }\n // we set here to have the right order\n data.from = formatRouteLocation(from, 'Current Location during this navigation');\n data.to = formatRouteLocation(to, 'Target location');\n api.addTimelineEvent({\n layerId: navigationsLayerId,\n event: {\n title: 'End of navigation',\n subtitle: to.fullPath,\n time: api.now(),\n data,\n logType: failure ? 'warning' : 'default',\n groupId: to.meta.__navigationId,\n },\n });\n });\n /**\n * Inspector of Existing routes\n */\n const routerInspectorId = 'router-inspector:' + id;\n api.addInspector({\n id: routerInspectorId,\n label: 'Routes' + (id ? ' ' + id : ''),\n icon: 'book',\n treeFilterPlaceholder: 'Search routes',\n });\n function refreshRoutesView() {\n // the routes view isn't active\n if (!activeRoutesPayload)\n return;\n const payload = activeRoutesPayload;\n // children routes will appear as nested\n let routes = matcher.getRoutes().filter(route => !route.parent ||\n // these routes have a parent with no component which will not appear in the view\n // therefore we still need to include them\n !route.parent.record.components);\n // reset match state to false\n routes.forEach(resetMatchStateOnRouteRecord);\n // apply a match state if there is a payload\n if (payload.filter) {\n routes = routes.filter(route => \n // save matches state based on the payload\n isRouteMatching(route, payload.filter.toLowerCase()));\n }\n // mark active routes\n routes.forEach(route => markRouteRecordActive(route, router.currentRoute.value));\n payload.rootNodes = routes.map(formatRouteRecordForInspector);\n }\n let activeRoutesPayload;\n api.on.getInspectorTree(payload => {\n activeRoutesPayload = payload;\n if (payload.app === app && payload.inspectorId === routerInspectorId) {\n refreshRoutesView();\n }\n });\n /**\n * Display information about the currently selected route record\n */\n api.on.getInspectorState(payload => {\n if (payload.app === app && payload.inspectorId === routerInspectorId) {\n const routes = matcher.getRoutes();\n const route = routes.find(route => route.record.__vd_id === payload.nodeId);\n if (route) {\n payload.state = {\n options: formatRouteRecordMatcherForStateInspector(route),\n };\n }\n }\n });\n api.sendInspectorTree(routerInspectorId);\n api.sendInspectorState(routerInspectorId);\n });\n}\nfunction modifierForKey(key) {\n if (key.optional) {\n return key.repeatable ? '*' : '?';\n }\n else {\n return key.repeatable ? '+' : '';\n }\n}\nfunction formatRouteRecordMatcherForStateInspector(route) {\n const { record } = route;\n const fields = [\n { editable: false, key: 'path', value: record.path },\n ];\n if (record.name != null) {\n fields.push({\n editable: false,\n key: 'name',\n value: record.name,\n });\n }\n fields.push({ editable: false, key: 'regexp', value: route.re });\n if (route.keys.length) {\n fields.push({\n editable: false,\n key: 'keys',\n value: {\n _custom: {\n type: null,\n readOnly: true,\n display: route.keys\n .map(key => `${key.name}${modifierForKey(key)}`)\n .join(' '),\n tooltip: 'Param keys',\n value: route.keys,\n },\n },\n });\n }\n if (record.redirect != null) {\n fields.push({\n editable: false,\n key: 'redirect',\n value: record.redirect,\n });\n }\n if (route.alias.length) {\n fields.push({\n editable: false,\n key: 'aliases',\n value: route.alias.map(alias => alias.record.path),\n });\n }\n if (Object.keys(route.record.meta).length) {\n fields.push({\n editable: false,\n key: 'meta',\n value: route.record.meta,\n });\n }\n fields.push({\n key: 'score',\n editable: false,\n value: {\n _custom: {\n type: null,\n readOnly: true,\n display: route.score.map(score => score.join(', ')).join(' | '),\n tooltip: 'Score used to sort routes',\n value: route.score,\n },\n },\n });\n return fields;\n}\n/**\n * Extracted from tailwind palette\n */\nconst PINK_500 = 0xec4899;\nconst BLUE_600 = 0x2563eb;\nconst LIME_500 = 0x84cc16;\nconst CYAN_400 = 0x22d3ee;\nconst ORANGE_400 = 0xfb923c;\n// const GRAY_100 = 0xf4f4f5\nconst DARK = 0x666666;\nfunction formatRouteRecordForInspector(route) {\n const tags = [];\n const { record } = route;\n if (record.name != null) {\n tags.push({\n label: String(record.name),\n textColor: 0,\n backgroundColor: CYAN_400,\n });\n }\n if (record.aliasOf) {\n tags.push({\n label: 'alias',\n textColor: 0,\n backgroundColor: ORANGE_400,\n });\n }\n if (route.__vd_match) {\n tags.push({\n label: 'matches',\n textColor: 0,\n backgroundColor: PINK_500,\n });\n }\n if (route.__vd_exactActive) {\n tags.push({\n label: 'exact',\n textColor: 0,\n backgroundColor: LIME_500,\n });\n }\n if (route.__vd_active) {\n tags.push({\n label: 'active',\n textColor: 0,\n backgroundColor: BLUE_600,\n });\n }\n if (record.redirect) {\n tags.push({\n label: typeof record.redirect === 'string'\n ? `redirect: ${record.redirect}`\n : 'redirects',\n textColor: 0xffffff,\n backgroundColor: DARK,\n });\n }\n // add an id to be able to select it. Using the `path` is not possible because\n // empty path children would collide with their parents\n let id = record.__vd_id;\n if (id == null) {\n id = String(routeRecordId++);\n record.__vd_id = id;\n }\n return {\n id,\n label: record.path,\n tags,\n children: route.children.map(formatRouteRecordForInspector),\n };\n}\n// incremental id for route records and inspector state\nlet routeRecordId = 0;\nconst EXTRACT_REGEXP_RE = /^\\/(.*)\\/([a-z]*)$/;\nfunction markRouteRecordActive(route, currentRoute) {\n // no route will be active if matched is empty\n // reset the matching state\n const isExactActive = currentRoute.matched.length &&\n isSameRouteRecord(currentRoute.matched[currentRoute.matched.length - 1], route.record);\n route.__vd_exactActive = route.__vd_active = isExactActive;\n if (!isExactActive) {\n route.__vd_active = currentRoute.matched.some(match => isSameRouteRecord(match, route.record));\n }\n route.children.forEach(childRoute => markRouteRecordActive(childRoute, currentRoute));\n}\nfunction resetMatchStateOnRouteRecord(route) {\n route.__vd_match = false;\n route.children.forEach(resetMatchStateOnRouteRecord);\n}\nfunction isRouteMatching(route, filter) {\n const found = String(route.re).match(EXTRACT_REGEXP_RE);\n route.__vd_match = false;\n if (!found || found.length < 3) {\n return false;\n }\n // use a regexp without $ at the end to match nested routes better\n const nonEndingRE = new RegExp(found[1].replace(/\\$$/, ''), found[2]);\n if (nonEndingRE.test(filter)) {\n // mark children as matches\n route.children.forEach(child => isRouteMatching(child, filter));\n // exception case: `/`\n if (route.record.path !== '/' || filter === '/') {\n route.__vd_match = route.re.test(filter);\n return true;\n }\n // hide the / route\n return false;\n }\n const path = route.record.path.toLowerCase();\n const decodedPath = decode(path);\n // also allow partial matching on the path\n if (!filter.startsWith('/') &&\n (decodedPath.includes(filter) || path.includes(filter)))\n return true;\n if (decodedPath.startsWith(filter) || path.startsWith(filter))\n return true;\n if (route.record.name && String(route.record.name).includes(filter))\n return true;\n return route.children.some(child => isRouteMatching(child, filter));\n}\nfunction omit(obj, keys) {\n const ret = {};\n for (const key in obj) {\n if (!keys.includes(key)) {\n // @ts-expect-error\n ret[key] = obj[key];\n }\n }\n return ret;\n}\n\n/**\n * Creates a Router instance that can be used by a Vue app.\n *\n * @param options - {@link RouterOptions}\n */\nfunction createRouter(options) {\n const matcher = createRouterMatcher(options.routes, options);\n const parseQuery$1 = options.parseQuery || parseQuery;\n const stringifyQuery$1 = options.stringifyQuery || stringifyQuery;\n const routerHistory = options.history;\n if ((process.env.NODE_ENV !== 'production') && !routerHistory)\n throw new Error('Provide the \"history\" option when calling \"createRouter()\":' +\n ' https://next.router.vuejs.org/api/#history.');\n const beforeGuards = useCallbacks();\n const beforeResolveGuards = useCallbacks();\n const afterGuards = useCallbacks();\n const currentRoute = shallowRef(START_LOCATION_NORMALIZED);\n let pendingLocation = START_LOCATION_NORMALIZED;\n // leave the scrollRestoration if no scrollBehavior is provided\n if (isBrowser && options.scrollBehavior && 'scrollRestoration' in history) {\n history.scrollRestoration = 'manual';\n }\n const normalizeParams = applyToParams.bind(null, paramValue => '' + paramValue);\n const encodeParams = applyToParams.bind(null, encodeParam);\n const decodeParams = \n // @ts-expect-error: intentionally avoid the type check\n applyToParams.bind(null, decode);\n function addRoute(parentOrRoute, route) {\n let parent;\n let record;\n if (isRouteName(parentOrRoute)) {\n parent = matcher.getRecordMatcher(parentOrRoute);\n record = route;\n }\n else {\n record = parentOrRoute;\n }\n return matcher.addRoute(record, parent);\n }\n function removeRoute(name) {\n const recordMatcher = matcher.getRecordMatcher(name);\n if (recordMatcher) {\n matcher.removeRoute(recordMatcher);\n }\n else if ((process.env.NODE_ENV !== 'production')) {\n warn(`Cannot remove non-existent route \"${String(name)}\"`);\n }\n }\n function getRoutes() {\n return matcher.getRoutes().map(routeMatcher => routeMatcher.record);\n }\n function hasRoute(name) {\n return !!matcher.getRecordMatcher(name);\n }\n function resolve(rawLocation, currentLocation) {\n // const objectLocation = routerLocationAsObject(rawLocation)\n // we create a copy to modify it later\n currentLocation = assign({}, currentLocation || currentRoute.value);\n if (typeof rawLocation === 'string') {\n const locationNormalized = parseURL(parseQuery$1, rawLocation, currentLocation.path);\n const matchedRoute = matcher.resolve({ path: locationNormalized.path }, currentLocation);\n const href = routerHistory.createHref(locationNormalized.fullPath);\n if ((process.env.NODE_ENV !== 'production')) {\n if (href.startsWith('//'))\n warn(`Location \"${rawLocation}\" resolved to \"${href}\". A resolved location cannot start with multiple slashes.`);\n else if (!matchedRoute.matched.length) {\n warn(`No match found for location with path \"${rawLocation}\"`);\n }\n }\n // locationNormalized is always a new object\n return assign(locationNormalized, matchedRoute, {\n params: decodeParams(matchedRoute.params),\n hash: decode(locationNormalized.hash),\n redirectedFrom: undefined,\n href,\n });\n }\n let matcherLocation;\n // path could be relative in object as well\n if ('path' in rawLocation) {\n if ((process.env.NODE_ENV !== 'production') &&\n 'params' in rawLocation &&\n !('name' in rawLocation) &&\n // @ts-expect-error: the type is never\n Object.keys(rawLocation.params).length) {\n warn(`Path \"${rawLocation.path}\" was passed with params but they will be ignored. Use a named route alongside params instead.`);\n }\n matcherLocation = assign({}, rawLocation, {\n path: parseURL(parseQuery$1, rawLocation.path, currentLocation.path).path,\n });\n }\n else {\n // remove any nullish param\n const targetParams = assign({}, rawLocation.params);\n for (const key in targetParams) {\n if (targetParams[key] == null) {\n delete targetParams[key];\n }\n }\n // pass encoded values to the matcher, so it can produce encoded path and fullPath\n matcherLocation = assign({}, rawLocation, {\n params: encodeParams(targetParams),\n });\n // current location params are decoded, we need to encode them in case the\n // matcher merges the params\n currentLocation.params = encodeParams(currentLocation.params);\n }\n const matchedRoute = matcher.resolve(matcherLocation, currentLocation);\n const hash = rawLocation.hash || '';\n if ((process.env.NODE_ENV !== 'production') && hash && !hash.startsWith('#')) {\n warn(`A \\`hash\\` should always start with the character \"#\". Replace \"${hash}\" with \"#${hash}\".`);\n }\n // the matcher might have merged current location params, so\n // we need to run the decoding again\n matchedRoute.params = normalizeParams(decodeParams(matchedRoute.params));\n const fullPath = stringifyURL(stringifyQuery$1, assign({}, rawLocation, {\n hash: encodeHash(hash),\n path: matchedRoute.path,\n }));\n const href = routerHistory.createHref(fullPath);\n if ((process.env.NODE_ENV !== 'production')) {\n if (href.startsWith('//')) {\n warn(`Location \"${rawLocation}\" resolved to \"${href}\". A resolved location cannot start with multiple slashes.`);\n }\n else if (!matchedRoute.matched.length) {\n warn(`No match found for location with path \"${'path' in rawLocation ? rawLocation.path : rawLocation}\"`);\n }\n }\n return assign({\n fullPath,\n // keep the hash encoded so fullPath is effectively path + encodedQuery +\n // hash\n hash,\n query: \n // if the user is using a custom query lib like qs, we might have\n // nested objects, so we keep the query as is, meaning it can contain\n // numbers at `$route.query`, but at the point, the user will have to\n // use their own type anyway.\n // https://github.com/vuejs/router/issues/328#issuecomment-649481567\n stringifyQuery$1 === stringifyQuery\n ? normalizeQuery(rawLocation.query)\n : (rawLocation.query || {}),\n }, matchedRoute, {\n redirectedFrom: undefined,\n href,\n });\n }\n function locationAsObject(to) {\n return typeof to === 'string'\n ? parseURL(parseQuery$1, to, currentRoute.value.path)\n : assign({}, to);\n }\n function checkCanceledNavigation(to, from) {\n if (pendingLocation !== to) {\n return createRouterError(8 /* ErrorTypes.NAVIGATION_CANCELLED */, {\n from,\n to,\n });\n }\n }\n function push(to) {\n return pushWithRedirect(to);\n }\n function replace(to) {\n return push(assign(locationAsObject(to), { replace: true }));\n }\n function handleRedirectRecord(to) {\n const lastMatched = to.matched[to.matched.length - 1];\n if (lastMatched && lastMatched.redirect) {\n const { redirect } = lastMatched;\n let newTargetLocation = typeof redirect === 'function' ? redirect(to) : redirect;\n if (typeof newTargetLocation === 'string') {\n newTargetLocation =\n newTargetLocation.includes('?') || newTargetLocation.includes('#')\n ? (newTargetLocation = locationAsObject(newTargetLocation))\n : // force empty params\n { path: newTargetLocation };\n // @ts-expect-error: force empty params when a string is passed to let\n // the router parse them again\n newTargetLocation.params = {};\n }\n if ((process.env.NODE_ENV !== 'production') &&\n !('path' in newTargetLocation) &&\n !('name' in newTargetLocation)) {\n warn(`Invalid redirect found:\\n${JSON.stringify(newTargetLocation, null, 2)}\\n when navigating to \"${to.fullPath}\". A redirect must contain a name or path. This will break in production.`);\n throw new Error('Invalid redirect');\n }\n return assign({\n query: to.query,\n hash: to.hash,\n // avoid transferring params if the redirect has a path\n params: 'path' in newTargetLocation ? {} : to.params,\n }, newTargetLocation);\n }\n }\n function pushWithRedirect(to, redirectedFrom) {\n const targetLocation = (pendingLocation = resolve(to));\n const from = currentRoute.value;\n const data = to.state;\n const force = to.force;\n // to could be a string where `replace` is a function\n const replace = to.replace === true;\n const shouldRedirect = handleRedirectRecord(targetLocation);\n if (shouldRedirect)\n return pushWithRedirect(assign(locationAsObject(shouldRedirect), {\n state: typeof shouldRedirect === 'object'\n ? assign({}, data, shouldRedirect.state)\n : data,\n force,\n replace,\n }), \n // keep original redirectedFrom if it exists\n redirectedFrom || targetLocation);\n // if it was a redirect we already called `pushWithRedirect` above\n const toLocation = targetLocation;\n toLocation.redirectedFrom = redirectedFrom;\n let failure;\n if (!force && isSameRouteLocation(stringifyQuery$1, from, targetLocation)) {\n failure = createRouterError(16 /* ErrorTypes.NAVIGATION_DUPLICATED */, { to: toLocation, from });\n // trigger scroll to allow scrolling to the same anchor\n handleScroll(from, from, \n // this is a push, the only way for it to be triggered from a\n // history.listen is with a redirect, which makes it become a push\n true, \n // This cannot be the first navigation because the initial location\n // cannot be manually navigated to\n false);\n }\n return (failure ? Promise.resolve(failure) : navigate(toLocation, from))\n .catch((error) => isNavigationFailure(error)\n ? // navigation redirects still mark the router as ready\n isNavigationFailure(error, 2 /* ErrorTypes.NAVIGATION_GUARD_REDIRECT */)\n ? error\n : markAsReady(error) // also returns the error\n : // reject any unknown error\n triggerError(error, toLocation, from))\n .then((failure) => {\n if (failure) {\n if (isNavigationFailure(failure, 2 /* ErrorTypes.NAVIGATION_GUARD_REDIRECT */)) {\n if ((process.env.NODE_ENV !== 'production') &&\n // we are redirecting to the same location we were already at\n isSameRouteLocation(stringifyQuery$1, resolve(failure.to), toLocation) &&\n // and we have done it a couple of times\n redirectedFrom &&\n // @ts-expect-error: added only in dev\n (redirectedFrom._count = redirectedFrom._count\n ? // @ts-expect-error\n redirectedFrom._count + 1\n : 1) > 30) {\n warn(`Detected a possibly infinite redirection in a navigation guard when going from \"${from.fullPath}\" to \"${toLocation.fullPath}\". Aborting to avoid a Stack Overflow.\\n Are you always returning a new location within a navigation guard? That would lead to this error. Only return when redirecting or aborting, that should fix this. This might break in production if not fixed.`);\n return Promise.reject(new Error('Infinite redirect in navigation guard'));\n }\n return pushWithRedirect(\n // keep options\n assign({\n // preserve an existing replacement but allow the redirect to override it\n replace,\n }, locationAsObject(failure.to), {\n state: typeof failure.to === 'object'\n ? assign({}, data, failure.to.state)\n : data,\n force,\n }), \n // preserve the original redirectedFrom if any\n redirectedFrom || toLocation);\n }\n }\n else {\n // if we fail we don't finalize the navigation\n failure = finalizeNavigation(toLocation, from, true, replace, data);\n }\n triggerAfterEach(toLocation, from, failure);\n return failure;\n });\n }\n /**\n * Helper to reject and skip all navigation guards if a new navigation happened\n * @param to\n * @param from\n */\n function checkCanceledNavigationAndReject(to, from) {\n const error = checkCanceledNavigation(to, from);\n return error ? Promise.reject(error) : Promise.resolve();\n }\n function runWithContext(fn) {\n const app = installedApps.values().next().value;\n // support Vue < 3.3\n return app && typeof app.runWithContext === 'function'\n ? app.runWithContext(fn)\n : fn();\n }\n // TODO: refactor the whole before guards by internally using router.beforeEach\n function navigate(to, from) {\n let guards;\n const [leavingRecords, updatingRecords, enteringRecords] = extractChangingRecords(to, from);\n // all components here have been resolved once because we are leaving\n guards = extractComponentsGuards(leavingRecords.reverse(), 'beforeRouteLeave', to, from);\n // leavingRecords is already reversed\n for (const record of leavingRecords) {\n record.leaveGuards.forEach(guard => {\n guards.push(guardToPromiseFn(guard, to, from));\n });\n }\n const canceledNavigationCheck = checkCanceledNavigationAndReject.bind(null, to, from);\n guards.push(canceledNavigationCheck);\n // run the queue of per route beforeRouteLeave guards\n return (runGuardQueue(guards)\n .then(() => {\n // check global guards beforeEach\n guards = [];\n for (const guard of beforeGuards.list()) {\n guards.push(guardToPromiseFn(guard, to, from));\n }\n guards.push(canceledNavigationCheck);\n return runGuardQueue(guards);\n })\n .then(() => {\n // check in components beforeRouteUpdate\n guards = extractComponentsGuards(updatingRecords, 'beforeRouteUpdate', to, from);\n for (const record of updatingRecords) {\n record.updateGuards.forEach(guard => {\n guards.push(guardToPromiseFn(guard, to, from));\n });\n }\n guards.push(canceledNavigationCheck);\n // run the queue of per route beforeEnter guards\n return runGuardQueue(guards);\n })\n .then(() => {\n // check the route beforeEnter\n guards = [];\n for (const record of enteringRecords) {\n // do not trigger beforeEnter on reused views\n if (record.beforeEnter) {\n if (isArray(record.beforeEnter)) {\n for (const beforeEnter of record.beforeEnter)\n guards.push(guardToPromiseFn(beforeEnter, to, from));\n }\n else {\n guards.push(guardToPromiseFn(record.beforeEnter, to, from));\n }\n }\n }\n guards.push(canceledNavigationCheck);\n // run the queue of per route beforeEnter guards\n return runGuardQueue(guards);\n })\n .then(() => {\n // NOTE: at this point to.matched is normalized and does not contain any () => Promise\n // clear existing enterCallbacks, these are added by extractComponentsGuards\n to.matched.forEach(record => (record.enterCallbacks = {}));\n // check in-component beforeRouteEnter\n guards = extractComponentsGuards(enteringRecords, 'beforeRouteEnter', to, from);\n guards.push(canceledNavigationCheck);\n // run the queue of per route beforeEnter guards\n return runGuardQueue(guards);\n })\n .then(() => {\n // check global guards beforeResolve\n guards = [];\n for (const guard of beforeResolveGuards.list()) {\n guards.push(guardToPromiseFn(guard, to, from));\n }\n guards.push(canceledNavigationCheck);\n return runGuardQueue(guards);\n })\n // catch any navigation canceled\n .catch(err => isNavigationFailure(err, 8 /* ErrorTypes.NAVIGATION_CANCELLED */)\n ? err\n : Promise.reject(err)));\n }\n function triggerAfterEach(to, from, failure) {\n // navigation is confirmed, call afterGuards\n // TODO: wrap with error handlers\n afterGuards\n .list()\n .forEach(guard => runWithContext(() => guard(to, from, failure)));\n }\n /**\n * - Cleans up any navigation guards\n * - Changes the url if necessary\n * - Calls the scrollBehavior\n */\n function finalizeNavigation(toLocation, from, isPush, replace, data) {\n // a more recent navigation took place\n const error = checkCanceledNavigation(toLocation, from);\n if (error)\n return error;\n // only consider as push if it's not the first navigation\n const isFirstNavigation = from === START_LOCATION_NORMALIZED;\n const state = !isBrowser ? {} : history.state;\n // change URL only if the user did a push/replace and if it's not the initial navigation because\n // it's just reflecting the url\n if (isPush) {\n // on the initial navigation, we want to reuse the scroll position from\n // history state if it exists\n if (replace || isFirstNavigation)\n routerHistory.replace(toLocation.fullPath, assign({\n scroll: isFirstNavigation && state && state.scroll,\n }, data));\n else\n routerHistory.push(toLocation.fullPath, data);\n }\n // accept current navigation\n currentRoute.value = toLocation;\n handleScroll(toLocation, from, isPush, isFirstNavigation);\n markAsReady();\n }\n let removeHistoryListener;\n // attach listener to history to trigger navigations\n function setupListeners() {\n // avoid setting up listeners twice due to an invalid first navigation\n if (removeHistoryListener)\n return;\n removeHistoryListener = routerHistory.listen((to, _from, info) => {\n if (!router.listening)\n return;\n // cannot be a redirect route because it was in history\n const toLocation = resolve(to);\n // due to dynamic routing, and to hash history with manual navigation\n // (manually changing the url or calling history.hash = '#/somewhere'),\n // there could be a redirect record in history\n const shouldRedirect = handleRedirectRecord(toLocation);\n if (shouldRedirect) {\n pushWithRedirect(assign(shouldRedirect, { replace: true }), toLocation).catch(noop);\n return;\n }\n pendingLocation = toLocation;\n const from = currentRoute.value;\n // TODO: should be moved to web history?\n if (isBrowser) {\n saveScrollPosition(getScrollKey(from.fullPath, info.delta), computeScrollPosition());\n }\n navigate(toLocation, from)\n .catch((error) => {\n if (isNavigationFailure(error, 4 /* ErrorTypes.NAVIGATION_ABORTED */ | 8 /* ErrorTypes.NAVIGATION_CANCELLED */)) {\n return error;\n }\n if (isNavigationFailure(error, 2 /* ErrorTypes.NAVIGATION_GUARD_REDIRECT */)) {\n // Here we could call if (info.delta) routerHistory.go(-info.delta,\n // false) but this is bug prone as we have no way to wait the\n // navigation to be finished before calling pushWithRedirect. Using\n // a setTimeout of 16ms seems to work but there is no guarantee for\n // it to work on every browser. So instead we do not restore the\n // history entry and trigger a new navigation as requested by the\n // navigation guard.\n // the error is already handled by router.push we just want to avoid\n // logging the error\n pushWithRedirect(error.to, toLocation\n // avoid an uncaught rejection, let push call triggerError\n )\n .then(failure => {\n // manual change in hash history #916 ending up in the URL not\n // changing, but it was changed by the manual url change, so we\n // need to manually change it ourselves\n if (isNavigationFailure(failure, 4 /* ErrorTypes.NAVIGATION_ABORTED */ |\n 16 /* ErrorTypes.NAVIGATION_DUPLICATED */) &&\n !info.delta &&\n info.type === NavigationType.pop) {\n routerHistory.go(-1, false);\n }\n })\n .catch(noop);\n // avoid the then branch\n return Promise.reject();\n }\n // do not restore history on unknown direction\n if (info.delta) {\n routerHistory.go(-info.delta, false);\n }\n // unrecognized error, transfer to the global handler\n return triggerError(error, toLocation, from);\n })\n .then((failure) => {\n failure =\n failure ||\n finalizeNavigation(\n // after navigation, all matched components are resolved\n toLocation, from, false);\n // revert the navigation\n if (failure) {\n if (info.delta &&\n // a new navigation has been triggered, so we do not want to revert, that will change the current history\n // entry while a different route is displayed\n !isNavigationFailure(failure, 8 /* ErrorTypes.NAVIGATION_CANCELLED */)) {\n routerHistory.go(-info.delta, false);\n }\n else if (info.type === NavigationType.pop &&\n isNavigationFailure(failure, 4 /* ErrorTypes.NAVIGATION_ABORTED */ | 16 /* ErrorTypes.NAVIGATION_DUPLICATED */)) {\n // manual change in hash history #916\n // it's like a push but lacks the information of the direction\n routerHistory.go(-1, false);\n }\n }\n triggerAfterEach(toLocation, from, failure);\n })\n // avoid warnings in the console about uncaught rejections, they are logged by triggerErrors\n .catch(noop);\n });\n }\n // Initialization and Errors\n let readyHandlers = useCallbacks();\n let errorListeners = useCallbacks();\n let ready;\n /**\n * Trigger errorListeners added via onError and throws the error as well\n *\n * @param error - error to throw\n * @param to - location we were navigating to when the error happened\n * @param from - location we were navigating from when the error happened\n * @returns the error as a rejected promise\n */\n function triggerError(error, to, from) {\n markAsReady(error);\n const list = errorListeners.list();\n if (list.length) {\n list.forEach(handler => handler(error, to, from));\n }\n else {\n if ((process.env.NODE_ENV !== 'production')) {\n warn('uncaught error during route navigation:');\n }\n console.error(error);\n }\n // reject the error no matter there were error listeners or not\n return Promise.reject(error);\n }\n function isReady() {\n if (ready && currentRoute.value !== START_LOCATION_NORMALIZED)\n return Promise.resolve();\n return new Promise((resolve, reject) => {\n readyHandlers.add([resolve, reject]);\n });\n }\n function markAsReady(err) {\n if (!ready) {\n // still not ready if an error happened\n ready = !err;\n setupListeners();\n readyHandlers\n .list()\n .forEach(([resolve, reject]) => (err ? reject(err) : resolve()));\n readyHandlers.reset();\n }\n return err;\n }\n // Scroll behavior\n function handleScroll(to, from, isPush, isFirstNavigation) {\n const { scrollBehavior } = options;\n if (!isBrowser || !scrollBehavior)\n return Promise.resolve();\n const scrollPosition = (!isPush && getSavedScrollPosition(getScrollKey(to.fullPath, 0))) ||\n ((isFirstNavigation || !isPush) &&\n history.state &&\n history.state.scroll) ||\n null;\n return nextTick()\n .then(() => scrollBehavior(to, from, scrollPosition))\n .then(position => position && scrollToPosition(position))\n .catch(err => triggerError(err, to, from));\n }\n const go = (delta) => routerHistory.go(delta);\n let started;\n const installedApps = new Set();\n const router = {\n currentRoute,\n listening: true,\n addRoute,\n removeRoute,\n hasRoute,\n getRoutes,\n resolve,\n options,\n push,\n replace,\n go,\n back: () => go(-1),\n forward: () => go(1),\n beforeEach: beforeGuards.add,\n beforeResolve: beforeResolveGuards.add,\n afterEach: afterGuards.add,\n onError: errorListeners.add,\n isReady,\n install(app) {\n const router = this;\n app.component('RouterLink', RouterLink);\n app.component('RouterView', RouterView);\n app.config.globalProperties.$router = router;\n Object.defineProperty(app.config.globalProperties, '$route', {\n enumerable: true,\n get: () => unref(currentRoute),\n });\n // this initial navigation is only necessary on client, on server it doesn't\n // make sense because it will create an extra unnecessary navigation and could\n // lead to problems\n if (isBrowser &&\n // used for the initial navigation client side to avoid pushing\n // multiple times when the router is used in multiple apps\n !started &&\n currentRoute.value === START_LOCATION_NORMALIZED) {\n // see above\n started = true;\n push(routerHistory.location).catch(err => {\n if ((process.env.NODE_ENV !== 'production'))\n warn('Unexpected error when starting the router:', err);\n });\n }\n const reactiveRoute = {};\n for (const key in START_LOCATION_NORMALIZED) {\n Object.defineProperty(reactiveRoute, key, {\n get: () => currentRoute.value[key],\n enumerable: true,\n });\n }\n app.provide(routerKey, router);\n app.provide(routeLocationKey, shallowReactive(reactiveRoute));\n app.provide(routerViewLocationKey, currentRoute);\n const unmountApp = app.unmount;\n installedApps.add(app);\n app.unmount = function () {\n installedApps.delete(app);\n // the router is not attached to an app anymore\n if (installedApps.size < 1) {\n // invalidate the current navigation\n pendingLocation = START_LOCATION_NORMALIZED;\n removeHistoryListener && removeHistoryListener();\n removeHistoryListener = null;\n currentRoute.value = START_LOCATION_NORMALIZED;\n started = false;\n ready = false;\n }\n unmountApp();\n };\n // TODO: this probably needs to be updated so it can be used by vue-termui\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) && isBrowser) {\n addDevtools(app, router, matcher);\n }\n },\n };\n // TODO: type this as NavigationGuardReturn or similar instead of any\n function runGuardQueue(guards) {\n return guards.reduce((promise, guard) => promise.then(() => runWithContext(guard)), Promise.resolve());\n }\n return router;\n}\nfunction extractChangingRecords(to, from) {\n const leavingRecords = [];\n const updatingRecords = [];\n const enteringRecords = [];\n const len = Math.max(from.matched.length, to.matched.length);\n for (let i = 0; i < len; i++) {\n const recordFrom = from.matched[i];\n if (recordFrom) {\n if (to.matched.find(record => isSameRouteRecord(record, recordFrom)))\n updatingRecords.push(recordFrom);\n else\n leavingRecords.push(recordFrom);\n }\n const recordTo = to.matched[i];\n if (recordTo) {\n // the type doesn't matter because we are comparing per reference\n if (!from.matched.find(record => isSameRouteRecord(record, recordTo))) {\n enteringRecords.push(recordTo);\n }\n }\n }\n return [leavingRecords, updatingRecords, enteringRecords];\n}\n\n/**\n * Returns the router instance. Equivalent to using `$router` inside\n * templates.\n */\nfunction useRouter() {\n return inject(routerKey);\n}\n/**\n * Returns the current route location. Equivalent to using `$route` inside\n * templates.\n */\nfunction useRoute() {\n return inject(routeLocationKey);\n}\n\nexport { NavigationFailureType, RouterLink, RouterView, START_LOCATION_NORMALIZED as START_LOCATION, createMemoryHistory, createRouter, createRouterMatcher, createWebHashHistory, createWebHistory, isNavigationFailure, loadRouteLocation, matchedRouteKey, onBeforeRouteLeave, onBeforeRouteUpdate, parseQuery, routeLocationKey, routerKey, routerViewLocationKey, stringifyQuery, useLink, useRoute, useRouter, viewDepthKey };\n","/*!\n * shared v9.6.1\n * (c) 2023 kazuya kawaguchi\n * Released under the MIT License.\n */\n/**\n * Original Utilities\n * written by kazuya kawaguchi\n */\nconst inBrowser = typeof window !== 'undefined';\nlet mark;\nlet measure;\nif ((process.env.NODE_ENV !== 'production')) {\n const perf = inBrowser && window.performance;\n if (perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n // @ts-ignore browser compat\n perf.clearMeasures) {\n mark = (tag) => {\n perf.mark(tag);\n };\n measure = (name, startTag, endTag) => {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n };\n }\n}\nconst RE_ARGS = /\\{([0-9a-zA-Z]+)\\}/g;\n/* eslint-disable */\nfunction format(message, ...args) {\n if (args.length === 1 && isObject(args[0])) {\n args = args[0];\n }\n if (!args || !args.hasOwnProperty) {\n args = {};\n }\n return message.replace(RE_ARGS, (match, identifier) => {\n return args.hasOwnProperty(identifier) ? args[identifier] : '';\n });\n}\nconst makeSymbol = (name, shareable = false) => !shareable ? Symbol(name) : Symbol.for(name);\nconst generateFormatCacheKey = (locale, key, source) => friendlyJSONstringify({ l: locale, k: key, s: source });\nconst friendlyJSONstringify = (json) => JSON.stringify(json)\n .replace(/\\u2028/g, '\\\\u2028')\n .replace(/\\u2029/g, '\\\\u2029')\n .replace(/\\u0027/g, '\\\\u0027');\nconst isNumber = (val) => typeof val === 'number' && isFinite(val);\nconst isDate = (val) => toTypeString(val) === '[object Date]';\nconst isRegExp = (val) => toTypeString(val) === '[object RegExp]';\nconst isEmptyObject = (val) => isPlainObject(val) && Object.keys(val).length === 0;\nconst assign = Object.assign;\nlet _globalThis;\nconst getGlobalThis = () => {\n // prettier-ignore\n return (_globalThis ||\n (_globalThis =\n typeof globalThis !== 'undefined'\n ? globalThis\n : typeof self !== 'undefined'\n ? self\n : typeof window !== 'undefined'\n ? window\n : typeof global !== 'undefined'\n ? global\n : {}));\n};\nfunction escapeHtml(rawText) {\n return rawText\n .replace(//g, '>')\n .replace(/\"/g, '"')\n .replace(/'/g, ''');\n}\nconst hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn(obj, key) {\n return hasOwnProperty.call(obj, key);\n}\n/* eslint-enable */\n/**\n * Useful Utilities By Evan you\n * Modified by kazuya kawaguchi\n * MIT License\n * https://github.com/vuejs/vue-next/blob/master/packages/shared/src/index.ts\n * https://github.com/vuejs/vue-next/blob/master/packages/shared/src/codeframe.ts\n */\nconst isArray = Array.isArray;\nconst isFunction = (val) => typeof val === 'function';\nconst isString = (val) => typeof val === 'string';\nconst isBoolean = (val) => typeof val === 'boolean';\nconst isSymbol = (val) => typeof val === 'symbol';\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst isObject = (val) => val !== null && typeof val === 'object';\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst isPromise = (val) => {\n return isObject(val) && isFunction(val.then) && isFunction(val.catch);\n};\nconst objectToString = Object.prototype.toString;\nconst toTypeString = (value) => objectToString.call(value);\nconst isPlainObject = (val) => {\n if (!isObject(val))\n return false;\n const proto = Object.getPrototypeOf(val);\n return proto === null || proto.constructor === Object;\n};\n// for converting list and named values to displayed strings.\nconst toDisplayString = (val) => {\n return val == null\n ? ''\n : isArray(val) || (isPlainObject(val) && val.toString === objectToString)\n ? JSON.stringify(val, null, 2)\n : String(val);\n};\nfunction join(items, separator = '') {\n return items.reduce((str, item, index) => (index === 0 ? str + item : str + separator + item), '');\n}\nconst RANGE = 2;\nfunction generateCodeFrame(source, start = 0, end = source.length) {\n const lines = source.split(/\\r?\\n/);\n let count = 0;\n const res = [];\n for (let i = 0; i < lines.length; i++) {\n count += lines[i].length + 1;\n if (count >= start) {\n for (let j = i - RANGE; j <= i + RANGE || end > count; j++) {\n if (j < 0 || j >= lines.length)\n continue;\n const line = j + 1;\n res.push(`${line}${' '.repeat(3 - String(line).length)}| ${lines[j]}`);\n const lineLength = lines[j].length;\n if (j === i) {\n // push underline\n const pad = start - (count - lineLength) + 1;\n const length = Math.max(1, end > count ? lineLength - pad : end - start);\n res.push(` | ` + ' '.repeat(pad) + '^'.repeat(length));\n }\n else if (j > i) {\n if (end > count) {\n const length = Math.max(Math.min(end - count, lineLength), 1);\n res.push(` | ` + '^'.repeat(length));\n }\n count += lineLength + 1;\n }\n }\n break;\n }\n }\n return res.join('\\n');\n}\nfunction incrementer(code) {\n let current = code;\n return () => ++current;\n}\n\nfunction warn(msg, err) {\n if (typeof console !== 'undefined') {\n console.warn(`[intlify] ` + msg);\n /* istanbul ignore if */\n if (err) {\n console.warn(err.stack);\n }\n }\n}\nconst hasWarned = {};\nfunction warnOnce(msg) {\n if (!hasWarned[msg]) {\n hasWarned[msg] = true;\n warn(msg);\n }\n}\n\n/**\n * Event emitter, forked from the below:\n * - original repository url: https://github.com/developit/mitt\n * - code url: https://github.com/developit/mitt/blob/master/src/index.ts\n * - author: Jason Miller (https://github.com/developit)\n * - license: MIT\n */\n/**\n * Create a event emitter\n *\n * @returns An event emitter\n */\nfunction createEmitter() {\n const events = new Map();\n const emitter = {\n events,\n on(event, handler) {\n const handlers = events.get(event);\n const added = handlers && handlers.push(handler);\n if (!added) {\n events.set(event, [handler]);\n }\n },\n off(event, handler) {\n const handlers = events.get(event);\n if (handlers) {\n handlers.splice(handlers.indexOf(handler) >>> 0, 1);\n }\n },\n emit(event, payload) {\n (events.get(event) || [])\n .slice()\n .map(handler => handler(payload));\n (events.get('*') || [])\n .slice()\n .map(handler => handler(event, payload));\n }\n };\n return emitter;\n}\n\nexport { assign, createEmitter, escapeHtml, format, friendlyJSONstringify, generateCodeFrame, generateFormatCacheKey, getGlobalThis, hasOwn, inBrowser, incrementer, isArray, isBoolean, isDate, isEmptyObject, isFunction, isNumber, isObject, isPlainObject, isPromise, isRegExp, isString, isSymbol, join, makeSymbol, mark, measure, objectToString, toDisplayString, toTypeString, warn, warnOnce };\n","/*!\n * message-compiler v9.6.1\n * (c) 2023 kazuya kawaguchi\n * Released under the MIT License.\n */\nconst LOCATION_STUB = {\n start: { line: 1, column: 1, offset: 0 },\n end: { line: 1, column: 1, offset: 0 }\n};\nfunction createPosition(line, column, offset) {\n return { line, column, offset };\n}\nfunction createLocation(start, end, source) {\n const loc = { start, end };\n if (source != null) {\n loc.source = source;\n }\n return loc;\n}\n\n/**\n * Original Utilities\n * written by kazuya kawaguchi\n */\nconst RE_ARGS = /\\{([0-9a-zA-Z]+)\\}/g;\n/* eslint-disable */\nfunction format(message, ...args) {\n if (args.length === 1 && isObject(args[0])) {\n args = args[0];\n }\n if (!args || !args.hasOwnProperty) {\n args = {};\n }\n return message.replace(RE_ARGS, (match, identifier) => {\n return args.hasOwnProperty(identifier) ? args[identifier] : '';\n });\n}\nconst assign = Object.assign;\nconst isString = (val) => typeof val === 'string';\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst isObject = (val) => val !== null && typeof val === 'object';\nfunction join(items, separator = '') {\n return items.reduce((str, item, index) => (index === 0 ? str + item : str + separator + item), '');\n}\n\nconst CompileErrorCodes = {\n // tokenizer error codes\n EXPECTED_TOKEN: 1,\n INVALID_TOKEN_IN_PLACEHOLDER: 2,\n UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER: 3,\n UNKNOWN_ESCAPE_SEQUENCE: 4,\n INVALID_UNICODE_ESCAPE_SEQUENCE: 5,\n UNBALANCED_CLOSING_BRACE: 6,\n UNTERMINATED_CLOSING_BRACE: 7,\n EMPTY_PLACEHOLDER: 8,\n NOT_ALLOW_NEST_PLACEHOLDER: 9,\n INVALID_LINKED_FORMAT: 10,\n // parser error codes\n MUST_HAVE_MESSAGES_IN_PLURAL: 11,\n UNEXPECTED_EMPTY_LINKED_MODIFIER: 12,\n UNEXPECTED_EMPTY_LINKED_KEY: 13,\n UNEXPECTED_LEXICAL_ANALYSIS: 14,\n // generator error codes\n UNHANDLED_CODEGEN_NODE_TYPE: 15,\n // minifier error codes\n UNHANDLED_MINIFIER_NODE_TYPE: 16,\n // Special value for higher-order compilers to pick up the last code\n // to avoid collision of error codes. This should always be kept as the last\n // item.\n __EXTEND_POINT__: 17\n};\n/** @internal */\nconst errorMessages = {\n // tokenizer error messages\n [CompileErrorCodes.EXPECTED_TOKEN]: `Expected token: '{0}'`,\n [CompileErrorCodes.INVALID_TOKEN_IN_PLACEHOLDER]: `Invalid token in placeholder: '{0}'`,\n [CompileErrorCodes.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER]: `Unterminated single quote in placeholder`,\n [CompileErrorCodes.UNKNOWN_ESCAPE_SEQUENCE]: `Unknown escape sequence: \\\\{0}`,\n [CompileErrorCodes.INVALID_UNICODE_ESCAPE_SEQUENCE]: `Invalid unicode escape sequence: {0}`,\n [CompileErrorCodes.UNBALANCED_CLOSING_BRACE]: `Unbalanced closing brace`,\n [CompileErrorCodes.UNTERMINATED_CLOSING_BRACE]: `Unterminated closing brace`,\n [CompileErrorCodes.EMPTY_PLACEHOLDER]: `Empty placeholder`,\n [CompileErrorCodes.NOT_ALLOW_NEST_PLACEHOLDER]: `Not allowed nest placeholder`,\n [CompileErrorCodes.INVALID_LINKED_FORMAT]: `Invalid linked format`,\n // parser error messages\n [CompileErrorCodes.MUST_HAVE_MESSAGES_IN_PLURAL]: `Plural must have messages`,\n [CompileErrorCodes.UNEXPECTED_EMPTY_LINKED_MODIFIER]: `Unexpected empty linked modifier`,\n [CompileErrorCodes.UNEXPECTED_EMPTY_LINKED_KEY]: `Unexpected empty linked key`,\n [CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS]: `Unexpected lexical analysis in token: '{0}'`,\n // generator error messages\n [CompileErrorCodes.UNHANDLED_CODEGEN_NODE_TYPE]: `unhandled codegen node type: '{0}'`,\n // minimizer error messages\n [CompileErrorCodes.UNHANDLED_MINIFIER_NODE_TYPE]: `unhandled mimifier node type: '{0}'`\n};\nfunction createCompileError(code, loc, options = {}) {\n const { domain, messages, args } = options;\n const msg = format((messages || errorMessages)[code] || '', ...(args || []))\n ;\n const error = new SyntaxError(String(msg));\n error.code = code;\n if (loc) {\n error.location = loc;\n }\n error.domain = domain;\n return error;\n}\n/** @internal */\nfunction defaultOnError(error) {\n throw error;\n}\n\nconst RE_HTML_TAG = /<\\/?[\\w\\s=\"/.':;#-\\/]+>/;\nconst detectHtmlTag = (source) => RE_HTML_TAG.test(source);\n\nconst CHAR_SP = ' ';\nconst CHAR_CR = '\\r';\nconst CHAR_LF = '\\n';\nconst CHAR_LS = String.fromCharCode(0x2028);\nconst CHAR_PS = String.fromCharCode(0x2029);\nfunction createScanner(str) {\n const _buf = str;\n let _index = 0;\n let _line = 1;\n let _column = 1;\n let _peekOffset = 0;\n const isCRLF = (index) => _buf[index] === CHAR_CR && _buf[index + 1] === CHAR_LF;\n const isLF = (index) => _buf[index] === CHAR_LF;\n const isPS = (index) => _buf[index] === CHAR_PS;\n const isLS = (index) => _buf[index] === CHAR_LS;\n const isLineEnd = (index) => isCRLF(index) || isLF(index) || isPS(index) || isLS(index);\n const index = () => _index;\n const line = () => _line;\n const column = () => _column;\n const peekOffset = () => _peekOffset;\n const charAt = (offset) => isCRLF(offset) || isPS(offset) || isLS(offset) ? CHAR_LF : _buf[offset];\n const currentChar = () => charAt(_index);\n const currentPeek = () => charAt(_index + _peekOffset);\n function next() {\n _peekOffset = 0;\n if (isLineEnd(_index)) {\n _line++;\n _column = 0;\n }\n if (isCRLF(_index)) {\n _index++;\n }\n _index++;\n _column++;\n return _buf[_index];\n }\n function peek() {\n if (isCRLF(_index + _peekOffset)) {\n _peekOffset++;\n }\n _peekOffset++;\n return _buf[_index + _peekOffset];\n }\n function reset() {\n _index = 0;\n _line = 1;\n _column = 1;\n _peekOffset = 0;\n }\n function resetPeek(offset = 0) {\n _peekOffset = offset;\n }\n function skipToPeek() {\n const target = _index + _peekOffset;\n // eslint-disable-next-line no-unmodified-loop-condition\n while (target !== _index) {\n next();\n }\n _peekOffset = 0;\n }\n return {\n index,\n line,\n column,\n peekOffset,\n charAt,\n currentChar,\n currentPeek,\n next,\n peek,\n reset,\n resetPeek,\n skipToPeek\n };\n}\n\nconst EOF = undefined;\nconst DOT = '.';\nconst LITERAL_DELIMITER = \"'\";\nconst ERROR_DOMAIN$3 = 'tokenizer';\nfunction createTokenizer(source, options = {}) {\n const location = options.location !== false;\n const _scnr = createScanner(source);\n const currentOffset = () => _scnr.index();\n const currentPosition = () => createPosition(_scnr.line(), _scnr.column(), _scnr.index());\n const _initLoc = currentPosition();\n const _initOffset = currentOffset();\n const _context = {\n currentType: 14 /* TokenTypes.EOF */,\n offset: _initOffset,\n startLoc: _initLoc,\n endLoc: _initLoc,\n lastType: 14 /* TokenTypes.EOF */,\n lastOffset: _initOffset,\n lastStartLoc: _initLoc,\n lastEndLoc: _initLoc,\n braceNest: 0,\n inLinked: false,\n text: ''\n };\n const context = () => _context;\n const { onError } = options;\n function emitError(code, pos, offset, ...args) {\n const ctx = context();\n pos.column += offset;\n pos.offset += offset;\n if (onError) {\n const loc = location ? createLocation(ctx.startLoc, pos) : null;\n const err = createCompileError(code, loc, {\n domain: ERROR_DOMAIN$3,\n args\n });\n onError(err);\n }\n }\n function getToken(context, type, value) {\n context.endLoc = currentPosition();\n context.currentType = type;\n const token = { type };\n if (location) {\n token.loc = createLocation(context.startLoc, context.endLoc);\n }\n if (value != null) {\n token.value = value;\n }\n return token;\n }\n const getEndToken = (context) => getToken(context, 14 /* TokenTypes.EOF */);\n function eat(scnr, ch) {\n if (scnr.currentChar() === ch) {\n scnr.next();\n return ch;\n }\n else {\n emitError(CompileErrorCodes.EXPECTED_TOKEN, currentPosition(), 0, ch);\n return '';\n }\n }\n function peekSpaces(scnr) {\n let buf = '';\n while (scnr.currentPeek() === CHAR_SP || scnr.currentPeek() === CHAR_LF) {\n buf += scnr.currentPeek();\n scnr.peek();\n }\n return buf;\n }\n function skipSpaces(scnr) {\n const buf = peekSpaces(scnr);\n scnr.skipToPeek();\n return buf;\n }\n function isIdentifierStart(ch) {\n if (ch === EOF) {\n return false;\n }\n const cc = ch.charCodeAt(0);\n return ((cc >= 97 && cc <= 122) || // a-z\n (cc >= 65 && cc <= 90) || // A-Z\n cc === 95 // _\n );\n }\n function isNumberStart(ch) {\n if (ch === EOF) {\n return false;\n }\n const cc = ch.charCodeAt(0);\n return cc >= 48 && cc <= 57; // 0-9\n }\n function isNamedIdentifierStart(scnr, context) {\n const { currentType } = context;\n if (currentType !== 2 /* TokenTypes.BraceLeft */) {\n return false;\n }\n peekSpaces(scnr);\n const ret = isIdentifierStart(scnr.currentPeek());\n scnr.resetPeek();\n return ret;\n }\n function isListIdentifierStart(scnr, context) {\n const { currentType } = context;\n if (currentType !== 2 /* TokenTypes.BraceLeft */) {\n return false;\n }\n peekSpaces(scnr);\n const ch = scnr.currentPeek() === '-' ? scnr.peek() : scnr.currentPeek();\n const ret = isNumberStart(ch);\n scnr.resetPeek();\n return ret;\n }\n function isLiteralStart(scnr, context) {\n const { currentType } = context;\n if (currentType !== 2 /* TokenTypes.BraceLeft */) {\n return false;\n }\n peekSpaces(scnr);\n const ret = scnr.currentPeek() === LITERAL_DELIMITER;\n scnr.resetPeek();\n return ret;\n }\n function isLinkedDotStart(scnr, context) {\n const { currentType } = context;\n if (currentType !== 8 /* TokenTypes.LinkedAlias */) {\n return false;\n }\n peekSpaces(scnr);\n const ret = scnr.currentPeek() === \".\" /* TokenChars.LinkedDot */;\n scnr.resetPeek();\n return ret;\n }\n function isLinkedModifierStart(scnr, context) {\n const { currentType } = context;\n if (currentType !== 9 /* TokenTypes.LinkedDot */) {\n return false;\n }\n peekSpaces(scnr);\n const ret = isIdentifierStart(scnr.currentPeek());\n scnr.resetPeek();\n return ret;\n }\n function isLinkedDelimiterStart(scnr, context) {\n const { currentType } = context;\n if (!(currentType === 8 /* TokenTypes.LinkedAlias */ ||\n currentType === 12 /* TokenTypes.LinkedModifier */)) {\n return false;\n }\n peekSpaces(scnr);\n const ret = scnr.currentPeek() === \":\" /* TokenChars.LinkedDelimiter */;\n scnr.resetPeek();\n return ret;\n }\n function isLinkedReferStart(scnr, context) {\n const { currentType } = context;\n if (currentType !== 10 /* TokenTypes.LinkedDelimiter */) {\n return false;\n }\n const fn = () => {\n const ch = scnr.currentPeek();\n if (ch === \"{\" /* TokenChars.BraceLeft */) {\n return isIdentifierStart(scnr.peek());\n }\n else if (ch === \"@\" /* TokenChars.LinkedAlias */ ||\n ch === \"%\" /* TokenChars.Modulo */ ||\n ch === \"|\" /* TokenChars.Pipe */ ||\n ch === \":\" /* TokenChars.LinkedDelimiter */ ||\n ch === \".\" /* TokenChars.LinkedDot */ ||\n ch === CHAR_SP ||\n !ch) {\n return false;\n }\n else if (ch === CHAR_LF) {\n scnr.peek();\n return fn();\n }\n else {\n // other characters\n return isIdentifierStart(ch);\n }\n };\n const ret = fn();\n scnr.resetPeek();\n return ret;\n }\n function isPluralStart(scnr) {\n peekSpaces(scnr);\n const ret = scnr.currentPeek() === \"|\" /* TokenChars.Pipe */;\n scnr.resetPeek();\n return ret;\n }\n function detectModuloStart(scnr) {\n const spaces = peekSpaces(scnr);\n const ret = scnr.currentPeek() === \"%\" /* TokenChars.Modulo */ &&\n scnr.peek() === \"{\" /* TokenChars.BraceLeft */;\n scnr.resetPeek();\n return {\n isModulo: ret,\n hasSpace: spaces.length > 0\n };\n }\n function isTextStart(scnr, reset = true) {\n const fn = (hasSpace = false, prev = '', detectModulo = false) => {\n const ch = scnr.currentPeek();\n if (ch === \"{\" /* TokenChars.BraceLeft */) {\n return prev === \"%\" /* TokenChars.Modulo */ ? false : hasSpace;\n }\n else if (ch === \"@\" /* TokenChars.LinkedAlias */ || !ch) {\n return prev === \"%\" /* TokenChars.Modulo */ ? true : hasSpace;\n }\n else if (ch === \"%\" /* TokenChars.Modulo */) {\n scnr.peek();\n return fn(hasSpace, \"%\" /* TokenChars.Modulo */, true);\n }\n else if (ch === \"|\" /* TokenChars.Pipe */) {\n return prev === \"%\" /* TokenChars.Modulo */ || detectModulo\n ? true\n : !(prev === CHAR_SP || prev === CHAR_LF);\n }\n else if (ch === CHAR_SP) {\n scnr.peek();\n return fn(true, CHAR_SP, detectModulo);\n }\n else if (ch === CHAR_LF) {\n scnr.peek();\n return fn(true, CHAR_LF, detectModulo);\n }\n else {\n return true;\n }\n };\n const ret = fn();\n reset && scnr.resetPeek();\n return ret;\n }\n function takeChar(scnr, fn) {\n const ch = scnr.currentChar();\n if (ch === EOF) {\n return EOF;\n }\n if (fn(ch)) {\n scnr.next();\n return ch;\n }\n return null;\n }\n function takeIdentifierChar(scnr) {\n const closure = (ch) => {\n const cc = ch.charCodeAt(0);\n return ((cc >= 97 && cc <= 122) || // a-z\n (cc >= 65 && cc <= 90) || // A-Z\n (cc >= 48 && cc <= 57) || // 0-9\n cc === 95 || // _\n cc === 36 // $\n );\n };\n return takeChar(scnr, closure);\n }\n function takeDigit(scnr) {\n const closure = (ch) => {\n const cc = ch.charCodeAt(0);\n return cc >= 48 && cc <= 57; // 0-9\n };\n return takeChar(scnr, closure);\n }\n function takeHexDigit(scnr) {\n const closure = (ch) => {\n const cc = ch.charCodeAt(0);\n return ((cc >= 48 && cc <= 57) || // 0-9\n (cc >= 65 && cc <= 70) || // A-F\n (cc >= 97 && cc <= 102)); // a-f\n };\n return takeChar(scnr, closure);\n }\n function getDigits(scnr) {\n let ch = '';\n let num = '';\n while ((ch = takeDigit(scnr))) {\n num += ch;\n }\n return num;\n }\n function readModulo(scnr) {\n skipSpaces(scnr);\n const ch = scnr.currentChar();\n if (ch !== \"%\" /* TokenChars.Modulo */) {\n emitError(CompileErrorCodes.EXPECTED_TOKEN, currentPosition(), 0, ch);\n }\n scnr.next();\n return \"%\" /* TokenChars.Modulo */;\n }\n function readText(scnr) {\n let buf = '';\n while (true) {\n const ch = scnr.currentChar();\n if (ch === \"{\" /* TokenChars.BraceLeft */ ||\n ch === \"}\" /* TokenChars.BraceRight */ ||\n ch === \"@\" /* TokenChars.LinkedAlias */ ||\n ch === \"|\" /* TokenChars.Pipe */ ||\n !ch) {\n break;\n }\n else if (ch === \"%\" /* TokenChars.Modulo */) {\n if (isTextStart(scnr)) {\n buf += ch;\n scnr.next();\n }\n else {\n break;\n }\n }\n else if (ch === CHAR_SP || ch === CHAR_LF) {\n if (isTextStart(scnr)) {\n buf += ch;\n scnr.next();\n }\n else if (isPluralStart(scnr)) {\n break;\n }\n else {\n buf += ch;\n scnr.next();\n }\n }\n else {\n buf += ch;\n scnr.next();\n }\n }\n return buf;\n }\n function readNamedIdentifier(scnr) {\n skipSpaces(scnr);\n let ch = '';\n let name = '';\n while ((ch = takeIdentifierChar(scnr))) {\n name += ch;\n }\n if (scnr.currentChar() === EOF) {\n emitError(CompileErrorCodes.UNTERMINATED_CLOSING_BRACE, currentPosition(), 0);\n }\n return name;\n }\n function readListIdentifier(scnr) {\n skipSpaces(scnr);\n let value = '';\n if (scnr.currentChar() === '-') {\n scnr.next();\n value += `-${getDigits(scnr)}`;\n }\n else {\n value += getDigits(scnr);\n }\n if (scnr.currentChar() === EOF) {\n emitError(CompileErrorCodes.UNTERMINATED_CLOSING_BRACE, currentPosition(), 0);\n }\n return value;\n }\n function readLiteral(scnr) {\n skipSpaces(scnr);\n eat(scnr, `\\'`);\n let ch = '';\n let literal = '';\n const fn = (x) => x !== LITERAL_DELIMITER && x !== CHAR_LF;\n while ((ch = takeChar(scnr, fn))) {\n if (ch === '\\\\') {\n literal += readEscapeSequence(scnr);\n }\n else {\n literal += ch;\n }\n }\n const current = scnr.currentChar();\n if (current === CHAR_LF || current === EOF) {\n emitError(CompileErrorCodes.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER, currentPosition(), 0);\n // TODO: Is it correct really?\n if (current === CHAR_LF) {\n scnr.next();\n eat(scnr, `\\'`);\n }\n return literal;\n }\n eat(scnr, `\\'`);\n return literal;\n }\n function readEscapeSequence(scnr) {\n const ch = scnr.currentChar();\n switch (ch) {\n case '\\\\':\n case `\\'`:\n scnr.next();\n return `\\\\${ch}`;\n case 'u':\n return readUnicodeEscapeSequence(scnr, ch, 4);\n case 'U':\n return readUnicodeEscapeSequence(scnr, ch, 6);\n default:\n emitError(CompileErrorCodes.UNKNOWN_ESCAPE_SEQUENCE, currentPosition(), 0, ch);\n return '';\n }\n }\n function readUnicodeEscapeSequence(scnr, unicode, digits) {\n eat(scnr, unicode);\n let sequence = '';\n for (let i = 0; i < digits; i++) {\n const ch = takeHexDigit(scnr);\n if (!ch) {\n emitError(CompileErrorCodes.INVALID_UNICODE_ESCAPE_SEQUENCE, currentPosition(), 0, `\\\\${unicode}${sequence}${scnr.currentChar()}`);\n break;\n }\n sequence += ch;\n }\n return `\\\\${unicode}${sequence}`;\n }\n function readInvalidIdentifier(scnr) {\n skipSpaces(scnr);\n let ch = '';\n let identifiers = '';\n const closure = (ch) => ch !== \"{\" /* TokenChars.BraceLeft */ &&\n ch !== \"}\" /* TokenChars.BraceRight */ &&\n ch !== CHAR_SP &&\n ch !== CHAR_LF;\n while ((ch = takeChar(scnr, closure))) {\n identifiers += ch;\n }\n return identifiers;\n }\n function readLinkedModifier(scnr) {\n let ch = '';\n let name = '';\n while ((ch = takeIdentifierChar(scnr))) {\n name += ch;\n }\n return name;\n }\n function readLinkedRefer(scnr) {\n const fn = (detect = false, buf) => {\n const ch = scnr.currentChar();\n if (ch === \"{\" /* TokenChars.BraceLeft */ ||\n ch === \"%\" /* TokenChars.Modulo */ ||\n ch === \"@\" /* TokenChars.LinkedAlias */ ||\n ch === \"|\" /* TokenChars.Pipe */ ||\n ch === \"(\" /* TokenChars.ParenLeft */ ||\n ch === \")\" /* TokenChars.ParenRight */ ||\n !ch) {\n return buf;\n }\n else if (ch === CHAR_SP) {\n return buf;\n }\n else if (ch === CHAR_LF || ch === DOT) {\n buf += ch;\n scnr.next();\n return fn(detect, buf);\n }\n else {\n buf += ch;\n scnr.next();\n return fn(true, buf);\n }\n };\n return fn(false, '');\n }\n function readPlural(scnr) {\n skipSpaces(scnr);\n const plural = eat(scnr, \"|\" /* TokenChars.Pipe */);\n skipSpaces(scnr);\n return plural;\n }\n // TODO: We need refactoring of token parsing ...\n function readTokenInPlaceholder(scnr, context) {\n let token = null;\n const ch = scnr.currentChar();\n switch (ch) {\n case \"{\" /* TokenChars.BraceLeft */:\n if (context.braceNest >= 1) {\n emitError(CompileErrorCodes.NOT_ALLOW_NEST_PLACEHOLDER, currentPosition(), 0);\n }\n scnr.next();\n token = getToken(context, 2 /* TokenTypes.BraceLeft */, \"{\" /* TokenChars.BraceLeft */);\n skipSpaces(scnr);\n context.braceNest++;\n return token;\n case \"}\" /* TokenChars.BraceRight */:\n if (context.braceNest > 0 &&\n context.currentType === 2 /* TokenTypes.BraceLeft */) {\n emitError(CompileErrorCodes.EMPTY_PLACEHOLDER, currentPosition(), 0);\n }\n scnr.next();\n token = getToken(context, 3 /* TokenTypes.BraceRight */, \"}\" /* TokenChars.BraceRight */);\n context.braceNest--;\n context.braceNest > 0 && skipSpaces(scnr);\n if (context.inLinked && context.braceNest === 0) {\n context.inLinked = false;\n }\n return token;\n case \"@\" /* TokenChars.LinkedAlias */:\n if (context.braceNest > 0) {\n emitError(CompileErrorCodes.UNTERMINATED_CLOSING_BRACE, currentPosition(), 0);\n }\n token = readTokenInLinked(scnr, context) || getEndToken(context);\n context.braceNest = 0;\n return token;\n default:\n let validNamedIdentifier = true;\n let validListIdentifier = true;\n let validLiteral = true;\n if (isPluralStart(scnr)) {\n if (context.braceNest > 0) {\n emitError(CompileErrorCodes.UNTERMINATED_CLOSING_BRACE, currentPosition(), 0);\n }\n token = getToken(context, 1 /* TokenTypes.Pipe */, readPlural(scnr));\n // reset\n context.braceNest = 0;\n context.inLinked = false;\n return token;\n }\n if (context.braceNest > 0 &&\n (context.currentType === 5 /* TokenTypes.Named */ ||\n context.currentType === 6 /* TokenTypes.List */ ||\n context.currentType === 7 /* TokenTypes.Literal */)) {\n emitError(CompileErrorCodes.UNTERMINATED_CLOSING_BRACE, currentPosition(), 0);\n context.braceNest = 0;\n return readToken(scnr, context);\n }\n if ((validNamedIdentifier = isNamedIdentifierStart(scnr, context))) {\n token = getToken(context, 5 /* TokenTypes.Named */, readNamedIdentifier(scnr));\n skipSpaces(scnr);\n return token;\n }\n if ((validListIdentifier = isListIdentifierStart(scnr, context))) {\n token = getToken(context, 6 /* TokenTypes.List */, readListIdentifier(scnr));\n skipSpaces(scnr);\n return token;\n }\n if ((validLiteral = isLiteralStart(scnr, context))) {\n token = getToken(context, 7 /* TokenTypes.Literal */, readLiteral(scnr));\n skipSpaces(scnr);\n return token;\n }\n if (!validNamedIdentifier && !validListIdentifier && !validLiteral) {\n // TODO: we should be re-designed invalid cases, when we will extend message syntax near the future ...\n token = getToken(context, 13 /* TokenTypes.InvalidPlace */, readInvalidIdentifier(scnr));\n emitError(CompileErrorCodes.INVALID_TOKEN_IN_PLACEHOLDER, currentPosition(), 0, token.value);\n skipSpaces(scnr);\n return token;\n }\n break;\n }\n return token;\n }\n // TODO: We need refactoring of token parsing ...\n function readTokenInLinked(scnr, context) {\n const { currentType } = context;\n let token = null;\n const ch = scnr.currentChar();\n if ((currentType === 8 /* TokenTypes.LinkedAlias */ ||\n currentType === 9 /* TokenTypes.LinkedDot */ ||\n currentType === 12 /* TokenTypes.LinkedModifier */ ||\n currentType === 10 /* TokenTypes.LinkedDelimiter */) &&\n (ch === CHAR_LF || ch === CHAR_SP)) {\n emitError(CompileErrorCodes.INVALID_LINKED_FORMAT, currentPosition(), 0);\n }\n switch (ch) {\n case \"@\" /* TokenChars.LinkedAlias */:\n scnr.next();\n token = getToken(context, 8 /* TokenTypes.LinkedAlias */, \"@\" /* TokenChars.LinkedAlias */);\n context.inLinked = true;\n return token;\n case \".\" /* TokenChars.LinkedDot */:\n skipSpaces(scnr);\n scnr.next();\n return getToken(context, 9 /* TokenTypes.LinkedDot */, \".\" /* TokenChars.LinkedDot */);\n case \":\" /* TokenChars.LinkedDelimiter */:\n skipSpaces(scnr);\n scnr.next();\n return getToken(context, 10 /* TokenTypes.LinkedDelimiter */, \":\" /* TokenChars.LinkedDelimiter */);\n default:\n if (isPluralStart(scnr)) {\n token = getToken(context, 1 /* TokenTypes.Pipe */, readPlural(scnr));\n // reset\n context.braceNest = 0;\n context.inLinked = false;\n return token;\n }\n if (isLinkedDotStart(scnr, context) ||\n isLinkedDelimiterStart(scnr, context)) {\n skipSpaces(scnr);\n return readTokenInLinked(scnr, context);\n }\n if (isLinkedModifierStart(scnr, context)) {\n skipSpaces(scnr);\n return getToken(context, 12 /* TokenTypes.LinkedModifier */, readLinkedModifier(scnr));\n }\n if (isLinkedReferStart(scnr, context)) {\n skipSpaces(scnr);\n if (ch === \"{\" /* TokenChars.BraceLeft */) {\n // scan the placeholder\n return readTokenInPlaceholder(scnr, context) || token;\n }\n else {\n return getToken(context, 11 /* TokenTypes.LinkedKey */, readLinkedRefer(scnr));\n }\n }\n if (currentType === 8 /* TokenTypes.LinkedAlias */) {\n emitError(CompileErrorCodes.INVALID_LINKED_FORMAT, currentPosition(), 0);\n }\n context.braceNest = 0;\n context.inLinked = false;\n return readToken(scnr, context);\n }\n }\n // TODO: We need refactoring of token parsing ...\n function readToken(scnr, context) {\n let token = { type: 14 /* TokenTypes.EOF */ };\n if (context.braceNest > 0) {\n return readTokenInPlaceholder(scnr, context) || getEndToken(context);\n }\n if (context.inLinked) {\n return readTokenInLinked(scnr, context) || getEndToken(context);\n }\n const ch = scnr.currentChar();\n switch (ch) {\n case \"{\" /* TokenChars.BraceLeft */:\n return readTokenInPlaceholder(scnr, context) || getEndToken(context);\n case \"}\" /* TokenChars.BraceRight */:\n emitError(CompileErrorCodes.UNBALANCED_CLOSING_BRACE, currentPosition(), 0);\n scnr.next();\n return getToken(context, 3 /* TokenTypes.BraceRight */, \"}\" /* TokenChars.BraceRight */);\n case \"@\" /* TokenChars.LinkedAlias */:\n return readTokenInLinked(scnr, context) || getEndToken(context);\n default:\n if (isPluralStart(scnr)) {\n token = getToken(context, 1 /* TokenTypes.Pipe */, readPlural(scnr));\n // reset\n context.braceNest = 0;\n context.inLinked = false;\n return token;\n }\n const { isModulo, hasSpace } = detectModuloStart(scnr);\n if (isModulo) {\n return hasSpace\n ? getToken(context, 0 /* TokenTypes.Text */, readText(scnr))\n : getToken(context, 4 /* TokenTypes.Modulo */, readModulo(scnr));\n }\n if (isTextStart(scnr)) {\n return getToken(context, 0 /* TokenTypes.Text */, readText(scnr));\n }\n break;\n }\n return token;\n }\n function nextToken() {\n const { currentType, offset, startLoc, endLoc } = _context;\n _context.lastType = currentType;\n _context.lastOffset = offset;\n _context.lastStartLoc = startLoc;\n _context.lastEndLoc = endLoc;\n _context.offset = currentOffset();\n _context.startLoc = currentPosition();\n if (_scnr.currentChar() === EOF) {\n return getToken(_context, 14 /* TokenTypes.EOF */);\n }\n return readToken(_scnr, _context);\n }\n return {\n nextToken,\n currentOffset,\n currentPosition,\n context\n };\n}\n\nconst ERROR_DOMAIN$2 = 'parser';\n// Backslash backslash, backslash quote, uHHHH, UHHHHHH.\nconst KNOWN_ESCAPES = /(?:\\\\\\\\|\\\\'|\\\\u([0-9a-fA-F]{4})|\\\\U([0-9a-fA-F]{6}))/g;\nfunction fromEscapeSequence(match, codePoint4, codePoint6) {\n switch (match) {\n case `\\\\\\\\`:\n return `\\\\`;\n case `\\\\\\'`:\n return `\\'`;\n default: {\n const codePoint = parseInt(codePoint4 || codePoint6, 16);\n if (codePoint <= 0xd7ff || codePoint >= 0xe000) {\n return String.fromCodePoint(codePoint);\n }\n // invalid ...\n // Replace them with U+FFFD REPLACEMENT CHARACTER.\n return '๏ฟฝ';\n }\n }\n}\nfunction createParser(options = {}) {\n const location = options.location !== false;\n const { onError } = options;\n function emitError(tokenzer, code, start, offset, ...args) {\n const end = tokenzer.currentPosition();\n end.offset += offset;\n end.column += offset;\n if (onError) {\n const loc = location ? createLocation(start, end) : null;\n const err = createCompileError(code, loc, {\n domain: ERROR_DOMAIN$2,\n args\n });\n onError(err);\n }\n }\n function startNode(type, offset, loc) {\n const node = { type };\n if (location) {\n node.start = offset;\n node.end = offset;\n node.loc = { start: loc, end: loc };\n }\n return node;\n }\n function endNode(node, offset, pos, type) {\n if (type) {\n node.type = type;\n }\n if (location) {\n node.end = offset;\n if (node.loc) {\n node.loc.end = pos;\n }\n }\n }\n function parseText(tokenizer, value) {\n const context = tokenizer.context();\n const node = startNode(3 /* NodeTypes.Text */, context.offset, context.startLoc);\n node.value = value;\n endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());\n return node;\n }\n function parseList(tokenizer, index) {\n const context = tokenizer.context();\n const { lastOffset: offset, lastStartLoc: loc } = context; // get brace left loc\n const node = startNode(5 /* NodeTypes.List */, offset, loc);\n node.index = parseInt(index, 10);\n tokenizer.nextToken(); // skip brach right\n endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());\n return node;\n }\n function parseNamed(tokenizer, key) {\n const context = tokenizer.context();\n const { lastOffset: offset, lastStartLoc: loc } = context; // get brace left loc\n const node = startNode(4 /* NodeTypes.Named */, offset, loc);\n node.key = key;\n tokenizer.nextToken(); // skip brach right\n endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());\n return node;\n }\n function parseLiteral(tokenizer, value) {\n const context = tokenizer.context();\n const { lastOffset: offset, lastStartLoc: loc } = context; // get brace left loc\n const node = startNode(9 /* NodeTypes.Literal */, offset, loc);\n node.value = value.replace(KNOWN_ESCAPES, fromEscapeSequence);\n tokenizer.nextToken(); // skip brach right\n endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());\n return node;\n }\n function parseLinkedModifier(tokenizer) {\n const token = tokenizer.nextToken();\n const context = tokenizer.context();\n const { lastOffset: offset, lastStartLoc: loc } = context; // get linked dot loc\n const node = startNode(8 /* NodeTypes.LinkedModifier */, offset, loc);\n if (token.type !== 12 /* TokenTypes.LinkedModifier */) {\n // empty modifier\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_EMPTY_LINKED_MODIFIER, context.lastStartLoc, 0);\n node.value = '';\n endNode(node, offset, loc);\n return {\n nextConsumeToken: token,\n node\n };\n }\n // check token\n if (token.value == null) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));\n }\n node.value = token.value || '';\n endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());\n return {\n node\n };\n }\n function parseLinkedKey(tokenizer, value) {\n const context = tokenizer.context();\n const node = startNode(7 /* NodeTypes.LinkedKey */, context.offset, context.startLoc);\n node.value = value;\n endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());\n return node;\n }\n function parseLinked(tokenizer) {\n const context = tokenizer.context();\n const linkedNode = startNode(6 /* NodeTypes.Linked */, context.offset, context.startLoc);\n let token = tokenizer.nextToken();\n if (token.type === 9 /* TokenTypes.LinkedDot */) {\n const parsed = parseLinkedModifier(tokenizer);\n linkedNode.modifier = parsed.node;\n token = parsed.nextConsumeToken || tokenizer.nextToken();\n }\n // asset check token\n if (token.type !== 10 /* TokenTypes.LinkedDelimiter */) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));\n }\n token = tokenizer.nextToken();\n // skip brace left\n if (token.type === 2 /* TokenTypes.BraceLeft */) {\n token = tokenizer.nextToken();\n }\n switch (token.type) {\n case 11 /* TokenTypes.LinkedKey */:\n if (token.value == null) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));\n }\n linkedNode.key = parseLinkedKey(tokenizer, token.value || '');\n break;\n case 5 /* TokenTypes.Named */:\n if (token.value == null) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));\n }\n linkedNode.key = parseNamed(tokenizer, token.value || '');\n break;\n case 6 /* TokenTypes.List */:\n if (token.value == null) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));\n }\n linkedNode.key = parseList(tokenizer, token.value || '');\n break;\n case 7 /* TokenTypes.Literal */:\n if (token.value == null) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));\n }\n linkedNode.key = parseLiteral(tokenizer, token.value || '');\n break;\n default:\n // empty key\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_EMPTY_LINKED_KEY, context.lastStartLoc, 0);\n const nextContext = tokenizer.context();\n const emptyLinkedKeyNode = startNode(7 /* NodeTypes.LinkedKey */, nextContext.offset, nextContext.startLoc);\n emptyLinkedKeyNode.value = '';\n endNode(emptyLinkedKeyNode, nextContext.offset, nextContext.startLoc);\n linkedNode.key = emptyLinkedKeyNode;\n endNode(linkedNode, nextContext.offset, nextContext.startLoc);\n return {\n nextConsumeToken: token,\n node: linkedNode\n };\n }\n endNode(linkedNode, tokenizer.currentOffset(), tokenizer.currentPosition());\n return {\n node: linkedNode\n };\n }\n function parseMessage(tokenizer) {\n const context = tokenizer.context();\n const startOffset = context.currentType === 1 /* TokenTypes.Pipe */\n ? tokenizer.currentOffset()\n : context.offset;\n const startLoc = context.currentType === 1 /* TokenTypes.Pipe */\n ? context.endLoc\n : context.startLoc;\n const node = startNode(2 /* NodeTypes.Message */, startOffset, startLoc);\n node.items = [];\n let nextToken = null;\n do {\n const token = nextToken || tokenizer.nextToken();\n nextToken = null;\n switch (token.type) {\n case 0 /* TokenTypes.Text */:\n if (token.value == null) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));\n }\n node.items.push(parseText(tokenizer, token.value || ''));\n break;\n case 6 /* TokenTypes.List */:\n if (token.value == null) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));\n }\n node.items.push(parseList(tokenizer, token.value || ''));\n break;\n case 5 /* TokenTypes.Named */:\n if (token.value == null) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));\n }\n node.items.push(parseNamed(tokenizer, token.value || ''));\n break;\n case 7 /* TokenTypes.Literal */:\n if (token.value == null) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));\n }\n node.items.push(parseLiteral(tokenizer, token.value || ''));\n break;\n case 8 /* TokenTypes.LinkedAlias */:\n const parsed = parseLinked(tokenizer);\n node.items.push(parsed.node);\n nextToken = parsed.nextConsumeToken || null;\n break;\n }\n } while (context.currentType !== 14 /* TokenTypes.EOF */ &&\n context.currentType !== 1 /* TokenTypes.Pipe */);\n // adjust message node loc\n const endOffset = context.currentType === 1 /* TokenTypes.Pipe */\n ? context.lastOffset\n : tokenizer.currentOffset();\n const endLoc = context.currentType === 1 /* TokenTypes.Pipe */\n ? context.lastEndLoc\n : tokenizer.currentPosition();\n endNode(node, endOffset, endLoc);\n return node;\n }\n function parsePlural(tokenizer, offset, loc, msgNode) {\n const context = tokenizer.context();\n let hasEmptyMessage = msgNode.items.length === 0;\n const node = startNode(1 /* NodeTypes.Plural */, offset, loc);\n node.cases = [];\n node.cases.push(msgNode);\n do {\n const msg = parseMessage(tokenizer);\n if (!hasEmptyMessage) {\n hasEmptyMessage = msg.items.length === 0;\n }\n node.cases.push(msg);\n } while (context.currentType !== 14 /* TokenTypes.EOF */);\n if (hasEmptyMessage) {\n emitError(tokenizer, CompileErrorCodes.MUST_HAVE_MESSAGES_IN_PLURAL, loc, 0);\n }\n endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());\n return node;\n }\n function parseResource(tokenizer) {\n const context = tokenizer.context();\n const { offset, startLoc } = context;\n const msgNode = parseMessage(tokenizer);\n if (context.currentType === 14 /* TokenTypes.EOF */) {\n return msgNode;\n }\n else {\n return parsePlural(tokenizer, offset, startLoc, msgNode);\n }\n }\n function parse(source) {\n const tokenizer = createTokenizer(source, assign({}, options));\n const context = tokenizer.context();\n const node = startNode(0 /* NodeTypes.Resource */, context.offset, context.startLoc);\n if (location && node.loc) {\n node.loc.source = source;\n }\n node.body = parseResource(tokenizer);\n if (options.onCacheKey) {\n node.cacheKey = options.onCacheKey(source);\n }\n // assert whether achieved to EOF\n if (context.currentType !== 14 /* TokenTypes.EOF */) {\n emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, source[context.offset] || '');\n }\n endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());\n return node;\n }\n return { parse };\n}\nfunction getTokenCaption(token) {\n if (token.type === 14 /* TokenTypes.EOF */) {\n return 'EOF';\n }\n const name = (token.value || '').replace(/\\r?\\n/gu, '\\\\n');\n return name.length > 10 ? name.slice(0, 9) + 'โ€ฆ' : name;\n}\n\nfunction createTransformer(ast, options = {} // eslint-disable-line\n) {\n const _context = {\n ast,\n helpers: new Set()\n };\n const context = () => _context;\n const helper = (name) => {\n _context.helpers.add(name);\n return name;\n };\n return { context, helper };\n}\nfunction traverseNodes(nodes, transformer) {\n for (let i = 0; i < nodes.length; i++) {\n traverseNode(nodes[i], transformer);\n }\n}\nfunction traverseNode(node, transformer) {\n // TODO: if we need pre-hook of transform, should be implemented to here\n switch (node.type) {\n case 1 /* NodeTypes.Plural */:\n traverseNodes(node.cases, transformer);\n transformer.helper(\"plural\" /* HelperNameMap.PLURAL */);\n break;\n case 2 /* NodeTypes.Message */:\n traverseNodes(node.items, transformer);\n break;\n case 6 /* NodeTypes.Linked */:\n const linked = node;\n traverseNode(linked.key, transformer);\n transformer.helper(\"linked\" /* HelperNameMap.LINKED */);\n transformer.helper(\"type\" /* HelperNameMap.TYPE */);\n break;\n case 5 /* NodeTypes.List */:\n transformer.helper(\"interpolate\" /* HelperNameMap.INTERPOLATE */);\n transformer.helper(\"list\" /* HelperNameMap.LIST */);\n break;\n case 4 /* NodeTypes.Named */:\n transformer.helper(\"interpolate\" /* HelperNameMap.INTERPOLATE */);\n transformer.helper(\"named\" /* HelperNameMap.NAMED */);\n break;\n }\n // TODO: if we need post-hook of transform, should be implemented to here\n}\n// transform AST\nfunction transform(ast, options = {} // eslint-disable-line\n) {\n const transformer = createTransformer(ast);\n transformer.helper(\"normalize\" /* HelperNameMap.NORMALIZE */);\n // traverse\n ast.body && traverseNode(ast.body, transformer);\n // set meta information\n const context = transformer.context();\n ast.helpers = Array.from(context.helpers);\n}\n\nfunction optimize(ast) {\n const body = ast.body;\n if (body.type === 2 /* NodeTypes.Message */) {\n optimizeMessageNode(body);\n }\n else {\n body.cases.forEach(c => optimizeMessageNode(c));\n }\n return ast;\n}\nfunction optimizeMessageNode(message) {\n if (message.items.length === 1) {\n const item = message.items[0];\n if (item.type === 3 /* NodeTypes.Text */ || item.type === 9 /* NodeTypes.Literal */) {\n message.static = item.value;\n delete item.value; // optimization for size\n }\n }\n else {\n const values = [];\n for (let i = 0; i < message.items.length; i++) {\n const item = message.items[i];\n if (!(item.type === 3 /* NodeTypes.Text */ || item.type === 9 /* NodeTypes.Literal */)) {\n break;\n }\n if (item.value == null) {\n break;\n }\n values.push(item.value);\n }\n if (values.length === message.items.length) {\n message.static = join(values);\n for (let i = 0; i < message.items.length; i++) {\n const item = message.items[i];\n if (item.type === 3 /* NodeTypes.Text */ || item.type === 9 /* NodeTypes.Literal */) {\n delete item.value; // optimization for size\n }\n }\n }\n }\n}\n\nconst ERROR_DOMAIN$1 = 'minifier';\n/* eslint-disable @typescript-eslint/no-explicit-any */\nfunction minify(node) {\n node.t = node.type;\n switch (node.type) {\n case 0 /* NodeTypes.Resource */:\n const resource = node;\n minify(resource.body);\n resource.b = resource.body;\n delete resource.body;\n break;\n case 1 /* NodeTypes.Plural */:\n const plural = node;\n const cases = plural.cases;\n for (let i = 0; i < cases.length; i++) {\n minify(cases[i]);\n }\n plural.c = cases;\n delete plural.cases;\n break;\n case 2 /* NodeTypes.Message */:\n const message = node;\n const items = message.items;\n for (let i = 0; i < items.length; i++) {\n minify(items[i]);\n }\n message.i = items;\n delete message.items;\n if (message.static) {\n message.s = message.static;\n delete message.static;\n }\n break;\n case 3 /* NodeTypes.Text */:\n case 9 /* NodeTypes.Literal */:\n case 8 /* NodeTypes.LinkedModifier */:\n case 7 /* NodeTypes.LinkedKey */:\n const valueNode = node;\n if (valueNode.value) {\n valueNode.v = valueNode.value;\n delete valueNode.value;\n }\n break;\n case 6 /* NodeTypes.Linked */:\n const linked = node;\n minify(linked.key);\n linked.k = linked.key;\n delete linked.key;\n if (linked.modifier) {\n minify(linked.modifier);\n linked.m = linked.modifier;\n delete linked.modifier;\n }\n break;\n case 5 /* NodeTypes.List */:\n const list = node;\n list.i = list.index;\n delete list.index;\n break;\n case 4 /* NodeTypes.Named */:\n const named = node;\n named.k = named.key;\n delete named.key;\n break;\n default:\n {\n throw createCompileError(CompileErrorCodes.UNHANDLED_MINIFIER_NODE_TYPE, null, {\n domain: ERROR_DOMAIN$1,\n args: [node.type]\n });\n }\n }\n delete node.type;\n}\n/* eslint-enable @typescript-eslint/no-explicit-any */\n\nconst ERROR_DOMAIN = 'parser';\nfunction createCodeGenerator(ast, options) {\n const { sourceMap, filename, breakLineCode, needIndent: _needIndent } = options;\n const location = options.location !== false;\n const _context = {\n filename,\n code: '',\n column: 1,\n line: 1,\n offset: 0,\n map: undefined,\n breakLineCode,\n needIndent: _needIndent,\n indentLevel: 0\n };\n if (location && ast.loc) {\n _context.source = ast.loc.source;\n }\n const context = () => _context;\n function push(code, node) {\n _context.code += code;\n }\n function _newline(n, withBreakLine = true) {\n const _breakLineCode = withBreakLine ? breakLineCode : '';\n push(_needIndent ? _breakLineCode + ` `.repeat(n) : _breakLineCode);\n }\n function indent(withNewLine = true) {\n const level = ++_context.indentLevel;\n withNewLine && _newline(level);\n }\n function deindent(withNewLine = true) {\n const level = --_context.indentLevel;\n withNewLine && _newline(level);\n }\n function newline() {\n _newline(_context.indentLevel);\n }\n const helper = (key) => `_${key}`;\n const needIndent = () => _context.needIndent;\n return {\n context,\n push,\n indent,\n deindent,\n newline,\n helper,\n needIndent\n };\n}\nfunction generateLinkedNode(generator, node) {\n const { helper } = generator;\n generator.push(`${helper(\"linked\" /* HelperNameMap.LINKED */)}(`);\n generateNode(generator, node.key);\n if (node.modifier) {\n generator.push(`, `);\n generateNode(generator, node.modifier);\n generator.push(`, _type`);\n }\n else {\n generator.push(`, undefined, _type`);\n }\n generator.push(`)`);\n}\nfunction generateMessageNode(generator, node) {\n const { helper, needIndent } = generator;\n generator.push(`${helper(\"normalize\" /* HelperNameMap.NORMALIZE */)}([`);\n generator.indent(needIndent());\n const length = node.items.length;\n for (let i = 0; i < length; i++) {\n generateNode(generator, node.items[i]);\n if (i === length - 1) {\n break;\n }\n generator.push(', ');\n }\n generator.deindent(needIndent());\n generator.push('])');\n}\nfunction generatePluralNode(generator, node) {\n const { helper, needIndent } = generator;\n if (node.cases.length > 1) {\n generator.push(`${helper(\"plural\" /* HelperNameMap.PLURAL */)}([`);\n generator.indent(needIndent());\n const length = node.cases.length;\n for (let i = 0; i < length; i++) {\n generateNode(generator, node.cases[i]);\n if (i === length - 1) {\n break;\n }\n generator.push(', ');\n }\n generator.deindent(needIndent());\n generator.push(`])`);\n }\n}\nfunction generateResource(generator, node) {\n if (node.body) {\n generateNode(generator, node.body);\n }\n else {\n generator.push('null');\n }\n}\nfunction generateNode(generator, node) {\n const { helper } = generator;\n switch (node.type) {\n case 0 /* NodeTypes.Resource */:\n generateResource(generator, node);\n break;\n case 1 /* NodeTypes.Plural */:\n generatePluralNode(generator, node);\n break;\n case 2 /* NodeTypes.Message */:\n generateMessageNode(generator, node);\n break;\n case 6 /* NodeTypes.Linked */:\n generateLinkedNode(generator, node);\n break;\n case 8 /* NodeTypes.LinkedModifier */:\n generator.push(JSON.stringify(node.value), node);\n break;\n case 7 /* NodeTypes.LinkedKey */:\n generator.push(JSON.stringify(node.value), node);\n break;\n case 5 /* NodeTypes.List */:\n generator.push(`${helper(\"interpolate\" /* HelperNameMap.INTERPOLATE */)}(${helper(\"list\" /* HelperNameMap.LIST */)}(${node.index}))`, node);\n break;\n case 4 /* NodeTypes.Named */:\n generator.push(`${helper(\"interpolate\" /* HelperNameMap.INTERPOLATE */)}(${helper(\"named\" /* HelperNameMap.NAMED */)}(${JSON.stringify(node.key)}))`, node);\n break;\n case 9 /* NodeTypes.Literal */:\n generator.push(JSON.stringify(node.value), node);\n break;\n case 3 /* NodeTypes.Text */:\n generator.push(JSON.stringify(node.value), node);\n break;\n default:\n {\n throw createCompileError(CompileErrorCodes.UNHANDLED_CODEGEN_NODE_TYPE, null, {\n domain: ERROR_DOMAIN,\n args: [node.type]\n });\n }\n }\n}\n// generate code from AST\nconst generate = (ast, options = {} // eslint-disable-line\n) => {\n const mode = isString(options.mode) ? options.mode : 'normal';\n const filename = isString(options.filename)\n ? options.filename\n : 'message.intl';\n const sourceMap = !!options.sourceMap;\n // prettier-ignore\n const breakLineCode = options.breakLineCode != null\n ? options.breakLineCode\n : mode === 'arrow'\n ? ';'\n : '\\n';\n const needIndent = options.needIndent ? options.needIndent : mode !== 'arrow';\n const helpers = ast.helpers || [];\n const generator = createCodeGenerator(ast, {\n mode,\n filename,\n sourceMap,\n breakLineCode,\n needIndent\n });\n generator.push(mode === 'normal' ? `function __msg__ (ctx) {` : `(ctx) => {`);\n generator.indent(needIndent);\n if (helpers.length > 0) {\n generator.push(`const { ${join(helpers.map(s => `${s}: _${s}`), ', ')} } = ctx`);\n generator.newline();\n }\n generator.push(`return `);\n generateNode(generator, ast);\n generator.deindent(needIndent);\n generator.push(`}`);\n delete ast.helpers;\n const { code, map } = generator.context();\n return {\n ast,\n code,\n map: map ? map.toJSON() : undefined // eslint-disable-line @typescript-eslint/no-explicit-any\n };\n};\n\nfunction baseCompile(source, options = {}) {\n const assignedOptions = assign({}, options);\n const jit = !!assignedOptions.jit;\n const enalbeMinify = !!assignedOptions.minify;\n const enambeOptimize = assignedOptions.optimize == null ? true : assignedOptions.optimize;\n // parse source codes\n const parser = createParser(assignedOptions);\n const ast = parser.parse(source);\n if (!jit) {\n // transform ASTs\n transform(ast, assignedOptions);\n // generate javascript codes\n return generate(ast, assignedOptions);\n }\n else {\n // optimize ASTs\n enambeOptimize && optimize(ast);\n // minimize ASTs\n enalbeMinify && minify(ast);\n // In JIT mode, no ast transform, no code generation.\n return { ast, code: '' };\n }\n}\n\nexport { CompileErrorCodes, ERROR_DOMAIN$2 as ERROR_DOMAIN, LOCATION_STUB, baseCompile, createCompileError, createLocation, createParser, createPosition, defaultOnError, detectHtmlTag, errorMessages };\n","/*!\n * core-base v9.6.1\n * (c) 2023 kazuya kawaguchi\n * Released under the MIT License.\n */\nimport { getGlobalThis, isObject, isString, isFunction, isNumber, isPlainObject, assign, join, toDisplayString, isArray, format as format$1, isBoolean, warn, isRegExp, warnOnce, incrementer, escapeHtml, inBrowser, mark, measure, isEmptyObject, generateCodeFrame, generateFormatCacheKey, isDate } from '@intlify/shared';\nimport { CompileErrorCodes, createCompileError, detectHtmlTag, defaultOnError, baseCompile as baseCompile$1 } from '@intlify/message-compiler';\nexport { CompileErrorCodes, createCompileError } from '@intlify/message-compiler';\n\n/**\n * This is only called in esm-bundler builds.\n * istanbul-ignore-next\n */\nfunction initFeatureFlags() {\n if (typeof __INTLIFY_PROD_DEVTOOLS__ !== 'boolean') {\n getGlobalThis().__INTLIFY_PROD_DEVTOOLS__ = false;\n }\n if (typeof __INTLIFY_JIT_COMPILATION__ !== 'boolean') {\n getGlobalThis().__INTLIFY_JIT_COMPILATION__ = false;\n }\n if (typeof __INTLIFY_DROP_MESSAGE_COMPILER__ !== 'boolean') {\n getGlobalThis().__INTLIFY_DROP_MESSAGE_COMPILER__ = false;\n }\n}\n\nconst pathStateMachine = [];\npathStateMachine[0 /* States.BEFORE_PATH */] = {\n [\"w\" /* PathCharTypes.WORKSPACE */]: [0 /* States.BEFORE_PATH */],\n [\"i\" /* PathCharTypes.IDENT */]: [3 /* States.IN_IDENT */, 0 /* Actions.APPEND */],\n [\"[\" /* PathCharTypes.LEFT_BRACKET */]: [4 /* States.IN_SUB_PATH */],\n [\"o\" /* PathCharTypes.END_OF_FAIL */]: [7 /* States.AFTER_PATH */]\n};\npathStateMachine[1 /* States.IN_PATH */] = {\n [\"w\" /* PathCharTypes.WORKSPACE */]: [1 /* States.IN_PATH */],\n [\".\" /* PathCharTypes.DOT */]: [2 /* States.BEFORE_IDENT */],\n [\"[\" /* PathCharTypes.LEFT_BRACKET */]: [4 /* States.IN_SUB_PATH */],\n [\"o\" /* PathCharTypes.END_OF_FAIL */]: [7 /* States.AFTER_PATH */]\n};\npathStateMachine[2 /* States.BEFORE_IDENT */] = {\n [\"w\" /* PathCharTypes.WORKSPACE */]: [2 /* States.BEFORE_IDENT */],\n [\"i\" /* PathCharTypes.IDENT */]: [3 /* States.IN_IDENT */, 0 /* Actions.APPEND */],\n [\"0\" /* PathCharTypes.ZERO */]: [3 /* States.IN_IDENT */, 0 /* Actions.APPEND */]\n};\npathStateMachine[3 /* States.IN_IDENT */] = {\n [\"i\" /* PathCharTypes.IDENT */]: [3 /* States.IN_IDENT */, 0 /* Actions.APPEND */],\n [\"0\" /* PathCharTypes.ZERO */]: [3 /* States.IN_IDENT */, 0 /* Actions.APPEND */],\n [\"w\" /* PathCharTypes.WORKSPACE */]: [1 /* States.IN_PATH */, 1 /* Actions.PUSH */],\n [\".\" /* PathCharTypes.DOT */]: [2 /* States.BEFORE_IDENT */, 1 /* Actions.PUSH */],\n [\"[\" /* PathCharTypes.LEFT_BRACKET */]: [4 /* States.IN_SUB_PATH */, 1 /* Actions.PUSH */],\n [\"o\" /* PathCharTypes.END_OF_FAIL */]: [7 /* States.AFTER_PATH */, 1 /* Actions.PUSH */]\n};\npathStateMachine[4 /* States.IN_SUB_PATH */] = {\n [\"'\" /* PathCharTypes.SINGLE_QUOTE */]: [5 /* States.IN_SINGLE_QUOTE */, 0 /* Actions.APPEND */],\n [\"\\\"\" /* PathCharTypes.DOUBLE_QUOTE */]: [6 /* States.IN_DOUBLE_QUOTE */, 0 /* Actions.APPEND */],\n [\"[\" /* PathCharTypes.LEFT_BRACKET */]: [\n 4 /* States.IN_SUB_PATH */,\n 2 /* Actions.INC_SUB_PATH_DEPTH */\n ],\n [\"]\" /* PathCharTypes.RIGHT_BRACKET */]: [1 /* States.IN_PATH */, 3 /* Actions.PUSH_SUB_PATH */],\n [\"o\" /* PathCharTypes.END_OF_FAIL */]: 8 /* States.ERROR */,\n [\"l\" /* PathCharTypes.ELSE */]: [4 /* States.IN_SUB_PATH */, 0 /* Actions.APPEND */]\n};\npathStateMachine[5 /* States.IN_SINGLE_QUOTE */] = {\n [\"'\" /* PathCharTypes.SINGLE_QUOTE */]: [4 /* States.IN_SUB_PATH */, 0 /* Actions.APPEND */],\n [\"o\" /* PathCharTypes.END_OF_FAIL */]: 8 /* States.ERROR */,\n [\"l\" /* PathCharTypes.ELSE */]: [5 /* States.IN_SINGLE_QUOTE */, 0 /* Actions.APPEND */]\n};\npathStateMachine[6 /* States.IN_DOUBLE_QUOTE */] = {\n [\"\\\"\" /* PathCharTypes.DOUBLE_QUOTE */]: [4 /* States.IN_SUB_PATH */, 0 /* Actions.APPEND */],\n [\"o\" /* PathCharTypes.END_OF_FAIL */]: 8 /* States.ERROR */,\n [\"l\" /* PathCharTypes.ELSE */]: [6 /* States.IN_DOUBLE_QUOTE */, 0 /* Actions.APPEND */]\n};\n/**\n * Check if an expression is a literal value.\n */\nconst literalValueRE = /^\\s?(?:true|false|-?[\\d.]+|'[^']*'|\"[^\"]*\")\\s?$/;\nfunction isLiteral(exp) {\n return literalValueRE.test(exp);\n}\n/**\n * Strip quotes from a string\n */\nfunction stripQuotes(str) {\n const a = str.charCodeAt(0);\n const b = str.charCodeAt(str.length - 1);\n return a === b && (a === 0x22 || a === 0x27) ? str.slice(1, -1) : str;\n}\n/**\n * Determine the type of a character in a keypath.\n */\nfunction getPathCharType(ch) {\n if (ch === undefined || ch === null) {\n return \"o\" /* PathCharTypes.END_OF_FAIL */;\n }\n const code = ch.charCodeAt(0);\n switch (code) {\n case 0x5b: // [\n case 0x5d: // ]\n case 0x2e: // .\n case 0x22: // \"\n case 0x27: // '\n return ch;\n case 0x5f: // _\n case 0x24: // $\n case 0x2d: // -\n return \"i\" /* PathCharTypes.IDENT */;\n case 0x09: // Tab (HT)\n case 0x0a: // Newline (LF)\n case 0x0d: // Return (CR)\n case 0xa0: // No-break space (NBSP)\n case 0xfeff: // Byte Order Mark (BOM)\n case 0x2028: // Line Separator (LS)\n case 0x2029: // Paragraph Separator (PS)\n return \"w\" /* PathCharTypes.WORKSPACE */;\n }\n return \"i\" /* PathCharTypes.IDENT */;\n}\n/**\n * Format a subPath, return its plain form if it is\n * a literal string or number. Otherwise prepend the\n * dynamic indicator (*).\n */\nfunction formatSubPath(path) {\n const trimmed = path.trim();\n // invalid leading 0\n if (path.charAt(0) === '0' && isNaN(parseInt(path))) {\n return false;\n }\n return isLiteral(trimmed)\n ? stripQuotes(trimmed)\n : \"*\" /* PathCharTypes.ASTARISK */ + trimmed;\n}\n/**\n * Parse a string path into an array of segments\n */\nfunction parse(path) {\n const keys = [];\n let index = -1;\n let mode = 0 /* States.BEFORE_PATH */;\n let subPathDepth = 0;\n let c;\n let key; // eslint-disable-line\n let newChar;\n let type;\n let transition;\n let action;\n let typeMap;\n const actions = [];\n actions[0 /* Actions.APPEND */] = () => {\n if (key === undefined) {\n key = newChar;\n }\n else {\n key += newChar;\n }\n };\n actions[1 /* Actions.PUSH */] = () => {\n if (key !== undefined) {\n keys.push(key);\n key = undefined;\n }\n };\n actions[2 /* Actions.INC_SUB_PATH_DEPTH */] = () => {\n actions[0 /* Actions.APPEND */]();\n subPathDepth++;\n };\n actions[3 /* Actions.PUSH_SUB_PATH */] = () => {\n if (subPathDepth > 0) {\n subPathDepth--;\n mode = 4 /* States.IN_SUB_PATH */;\n actions[0 /* Actions.APPEND */]();\n }\n else {\n subPathDepth = 0;\n if (key === undefined) {\n return false;\n }\n key = formatSubPath(key);\n if (key === false) {\n return false;\n }\n else {\n actions[1 /* Actions.PUSH */]();\n }\n }\n };\n function maybeUnescapeQuote() {\n const nextChar = path[index + 1];\n if ((mode === 5 /* States.IN_SINGLE_QUOTE */ &&\n nextChar === \"'\" /* PathCharTypes.SINGLE_QUOTE */) ||\n (mode === 6 /* States.IN_DOUBLE_QUOTE */ &&\n nextChar === \"\\\"\" /* PathCharTypes.DOUBLE_QUOTE */)) {\n index++;\n newChar = '\\\\' + nextChar;\n actions[0 /* Actions.APPEND */]();\n return true;\n }\n }\n while (mode !== null) {\n index++;\n c = path[index];\n if (c === '\\\\' && maybeUnescapeQuote()) {\n continue;\n }\n type = getPathCharType(c);\n typeMap = pathStateMachine[mode];\n transition = typeMap[type] || typeMap[\"l\" /* PathCharTypes.ELSE */] || 8 /* States.ERROR */;\n // check parse error\n if (transition === 8 /* States.ERROR */) {\n return;\n }\n mode = transition[0];\n if (transition[1] !== undefined) {\n action = actions[transition[1]];\n if (action) {\n newChar = c;\n if (action() === false) {\n return;\n }\n }\n }\n // check parse finish\n if (mode === 7 /* States.AFTER_PATH */) {\n return keys;\n }\n }\n}\n// path token cache\nconst cache = new Map();\n/**\n * key-value message resolver\n *\n * @remarks\n * Resolves messages with the key-value structure. Note that messages with a hierarchical structure such as objects cannot be resolved\n *\n * @param obj - A target object to be resolved with path\n * @param path - A {@link Path | path} to resolve the value of message\n *\n * @returns A resolved {@link PathValue | path value}\n *\n * @VueI18nGeneral\n */\nfunction resolveWithKeyValue(obj, path) {\n return isObject(obj) ? obj[path] : null;\n}\n/**\n * message resolver\n *\n * @remarks\n * Resolves messages. messages with a hierarchical structure such as objects can be resolved. This resolver is used in VueI18n as default.\n *\n * @param obj - A target object to be resolved with path\n * @param path - A {@link Path | path} to resolve the value of message\n *\n * @returns A resolved {@link PathValue | path value}\n *\n * @VueI18nGeneral\n */\nfunction resolveValue(obj, path) {\n // check object\n if (!isObject(obj)) {\n return null;\n }\n // parse path\n let hit = cache.get(path);\n if (!hit) {\n hit = parse(path);\n if (hit) {\n cache.set(path, hit);\n }\n }\n // check hit\n if (!hit) {\n return null;\n }\n // resolve path value\n const len = hit.length;\n let last = obj;\n let i = 0;\n while (i < len) {\n const val = last[hit[i]];\n if (val === undefined) {\n return null;\n }\n last = val;\n i++;\n }\n return last;\n}\n\nconst DEFAULT_MODIFIER = (str) => str;\nconst DEFAULT_MESSAGE = (ctx) => ''; // eslint-disable-line\nconst DEFAULT_MESSAGE_DATA_TYPE = 'text';\nconst DEFAULT_NORMALIZE = (values) => values.length === 0 ? '' : join(values);\nconst DEFAULT_INTERPOLATE = toDisplayString;\nfunction pluralDefault(choice, choicesLength) {\n choice = Math.abs(choice);\n if (choicesLength === 2) {\n // prettier-ignore\n return choice\n ? choice > 1\n ? 1\n : 0\n : 1;\n }\n return choice ? Math.min(choice, 2) : 0;\n}\nfunction getPluralIndex(options) {\n // prettier-ignore\n const index = isNumber(options.pluralIndex)\n ? options.pluralIndex\n : -1;\n // prettier-ignore\n return options.named && (isNumber(options.named.count) || isNumber(options.named.n))\n ? isNumber(options.named.count)\n ? options.named.count\n : isNumber(options.named.n)\n ? options.named.n\n : index\n : index;\n}\nfunction normalizeNamed(pluralIndex, props) {\n if (!props.count) {\n props.count = pluralIndex;\n }\n if (!props.n) {\n props.n = pluralIndex;\n }\n}\nfunction createMessageContext(options = {}) {\n const locale = options.locale;\n const pluralIndex = getPluralIndex(options);\n const pluralRule = isObject(options.pluralRules) &&\n isString(locale) &&\n isFunction(options.pluralRules[locale])\n ? options.pluralRules[locale]\n : pluralDefault;\n const orgPluralRule = isObject(options.pluralRules) &&\n isString(locale) &&\n isFunction(options.pluralRules[locale])\n ? pluralDefault\n : undefined;\n const plural = (messages) => {\n return messages[pluralRule(pluralIndex, messages.length, orgPluralRule)];\n };\n const _list = options.list || [];\n const list = (index) => _list[index];\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const _named = options.named || {};\n isNumber(options.pluralIndex) && normalizeNamed(pluralIndex, _named);\n const named = (key) => _named[key];\n function message(key) {\n // prettier-ignore\n const msg = isFunction(options.messages)\n ? options.messages(key)\n : isObject(options.messages)\n ? options.messages[key]\n : false;\n return !msg\n ? options.parent\n ? options.parent.message(key) // resolve from parent messages\n : DEFAULT_MESSAGE\n : msg;\n }\n const _modifier = (name) => options.modifiers\n ? options.modifiers[name]\n : DEFAULT_MODIFIER;\n const normalize = isPlainObject(options.processor) && isFunction(options.processor.normalize)\n ? options.processor.normalize\n : DEFAULT_NORMALIZE;\n const interpolate = isPlainObject(options.processor) &&\n isFunction(options.processor.interpolate)\n ? options.processor.interpolate\n : DEFAULT_INTERPOLATE;\n const type = isPlainObject(options.processor) && isString(options.processor.type)\n ? options.processor.type\n : DEFAULT_MESSAGE_DATA_TYPE;\n const linked = (key, ...args) => {\n const [arg1, arg2] = args;\n let type = 'text';\n let modifier = '';\n if (args.length === 1) {\n if (isObject(arg1)) {\n modifier = arg1.modifier || modifier;\n type = arg1.type || type;\n }\n else if (isString(arg1)) {\n modifier = arg1 || modifier;\n }\n }\n else if (args.length === 2) {\n if (isString(arg1)) {\n modifier = arg1 || modifier;\n }\n if (isString(arg2)) {\n type = arg2 || type;\n }\n }\n const ret = message(key)(ctx);\n const msg = \n // The message in vnode resolved with linked are returned as an array by processor.nomalize\n type === 'vnode' && isArray(ret) && modifier\n ? ret[0]\n : ret;\n return modifier ? _modifier(modifier)(msg, type) : msg;\n };\n const ctx = {\n [\"list\" /* HelperNameMap.LIST */]: list,\n [\"named\" /* HelperNameMap.NAMED */]: named,\n [\"plural\" /* HelperNameMap.PLURAL */]: plural,\n [\"linked\" /* HelperNameMap.LINKED */]: linked,\n [\"message\" /* HelperNameMap.MESSAGE */]: message,\n [\"type\" /* HelperNameMap.TYPE */]: type,\n [\"interpolate\" /* HelperNameMap.INTERPOLATE */]: interpolate,\n [\"normalize\" /* HelperNameMap.NORMALIZE */]: normalize,\n [\"values\" /* HelperNameMap.VALUES */]: assign({}, _list, _named)\n };\n return ctx;\n}\n\nlet devtools = null;\nfunction setDevToolsHook(hook) {\n devtools = hook;\n}\nfunction getDevToolsHook() {\n return devtools;\n}\nfunction initI18nDevTools(i18n, version, meta) {\n // TODO: queue if devtools is undefined\n devtools &&\n devtools.emit(\"i18n:init\" /* IntlifyDevToolsHooks.I18nInit */, {\n timestamp: Date.now(),\n i18n,\n version,\n meta\n });\n}\nconst translateDevTools = /* #__PURE__*/ createDevToolsHook(\"function:translate\" /* IntlifyDevToolsHooks.FunctionTranslate */);\nfunction createDevToolsHook(hook) {\n return (payloads) => devtools && devtools.emit(hook, payloads);\n}\n\nconst CoreWarnCodes = {\n NOT_FOUND_KEY: 1,\n FALLBACK_TO_TRANSLATE: 2,\n CANNOT_FORMAT_NUMBER: 3,\n FALLBACK_TO_NUMBER_FORMAT: 4,\n CANNOT_FORMAT_DATE: 5,\n FALLBACK_TO_DATE_FORMAT: 6,\n EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER: 7,\n __EXTEND_POINT__: 8\n};\n/** @internal */\nconst warnMessages = {\n [CoreWarnCodes.NOT_FOUND_KEY]: `Not found '{key}' key in '{locale}' locale messages.`,\n [CoreWarnCodes.FALLBACK_TO_TRANSLATE]: `Fall back to translate '{key}' key with '{target}' locale.`,\n [CoreWarnCodes.CANNOT_FORMAT_NUMBER]: `Cannot format a number value due to not supported Intl.NumberFormat.`,\n [CoreWarnCodes.FALLBACK_TO_NUMBER_FORMAT]: `Fall back to number format '{key}' key with '{target}' locale.`,\n [CoreWarnCodes.CANNOT_FORMAT_DATE]: `Cannot format a date value due to not supported Intl.DateTimeFormat.`,\n [CoreWarnCodes.FALLBACK_TO_DATE_FORMAT]: `Fall back to datetime format '{key}' key with '{target}' locale.`,\n [CoreWarnCodes.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.`\n};\nfunction getWarnMessage(code, ...args) {\n return format$1(warnMessages[code], ...args);\n}\n\n/** @internal */\nfunction getLocale(context, options) {\n return options.locale != null\n ? resolveLocale(options.locale)\n : resolveLocale(context.locale);\n}\nlet _resolveLocale;\n/** @internal */\nfunction resolveLocale(locale) {\n // prettier-ignore\n return isString(locale)\n ? locale\n : _resolveLocale != null && locale.resolvedOnce\n ? _resolveLocale\n : (_resolveLocale = locale());\n}\n/**\n * Fallback with simple implemenation\n *\n * @remarks\n * A fallback locale function implemented with a simple fallback algorithm.\n *\n * Basically, it returns the value as specified in the `fallbackLocale` props, and is processed with the fallback inside intlify.\n *\n * @param ctx - A {@link CoreContext | context}\n * @param fallback - A {@link FallbackLocale | fallback locale}\n * @param start - A starting {@link Locale | locale}\n *\n * @returns Fallback locales\n *\n * @VueI18nGeneral\n */\nfunction fallbackWithSimple(ctx, fallback, start // eslint-disable-line @typescript-eslint/no-unused-vars\n) {\n // prettier-ignore\n return [...new Set([\n start,\n ...(isArray(fallback)\n ? fallback\n : isObject(fallback)\n ? Object.keys(fallback)\n : isString(fallback)\n ? [fallback]\n : [start])\n ])];\n}\n/**\n * Fallback with locale chain\n *\n * @remarks\n * A fallback locale function implemented with a fallback chain algorithm. It's used in VueI18n as default.\n *\n * @param ctx - A {@link CoreContext | context}\n * @param fallback - A {@link FallbackLocale | fallback locale}\n * @param start - A starting {@link Locale | locale}\n *\n * @returns Fallback locales\n *\n * @VueI18nSee [Fallbacking](../guide/essentials/fallback)\n *\n * @VueI18nGeneral\n */\nfunction fallbackWithLocaleChain(ctx, fallback, start) {\n const startLocale = isString(start) ? start : DEFAULT_LOCALE;\n const context = ctx;\n if (!context.__localeChainCache) {\n context.__localeChainCache = new Map();\n }\n let chain = context.__localeChainCache.get(startLocale);\n if (!chain) {\n chain = [];\n // first block defined by start\n let block = [start];\n // while any intervening block found\n while (isArray(block)) {\n block = appendBlockToChain(chain, block, fallback);\n }\n // prettier-ignore\n // last block defined by default\n const defaults = isArray(fallback) || !isPlainObject(fallback)\n ? fallback\n : fallback['default']\n ? fallback['default']\n : null;\n // convert defaults to array\n block = isString(defaults) ? [defaults] : defaults;\n if (isArray(block)) {\n appendBlockToChain(chain, block, false);\n }\n context.__localeChainCache.set(startLocale, chain);\n }\n return chain;\n}\nfunction appendBlockToChain(chain, block, blocks) {\n let follow = true;\n for (let i = 0; i < block.length && isBoolean(follow); i++) {\n const locale = block[i];\n if (isString(locale)) {\n follow = appendLocaleToChain(chain, block[i], blocks);\n }\n }\n return follow;\n}\nfunction appendLocaleToChain(chain, locale, blocks) {\n let follow;\n const tokens = locale.split('-');\n do {\n const target = tokens.join('-');\n follow = appendItemToChain(chain, target, blocks);\n tokens.splice(-1, 1);\n } while (tokens.length && follow === true);\n return follow;\n}\nfunction appendItemToChain(chain, target, blocks) {\n let follow = false;\n if (!chain.includes(target)) {\n follow = true;\n if (target) {\n follow = target[target.length - 1] !== '!';\n const locale = target.replace(/!/g, '');\n chain.push(locale);\n if ((isArray(blocks) || isPlainObject(blocks)) &&\n blocks[locale] // eslint-disable-line @typescript-eslint/no-explicit-any\n ) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n follow = blocks[locale];\n }\n }\n }\n return follow;\n}\n\n/* eslint-disable @typescript-eslint/no-explicit-any */\n/**\n * Intlify core-base version\n * @internal\n */\nconst VERSION = '9.6.1';\nconst NOT_REOSLVED = -1;\nconst DEFAULT_LOCALE = 'en-US';\nconst MISSING_RESOLVE_VALUE = '';\nconst capitalize = (str) => `${str.charAt(0).toLocaleUpperCase()}${str.substr(1)}`;\nfunction getDefaultLinkedModifiers() {\n return {\n upper: (val, type) => {\n // prettier-ignore\n return type === 'text' && isString(val)\n ? val.toUpperCase()\n : type === 'vnode' && isObject(val) && '__v_isVNode' in val\n ? val.children.toUpperCase()\n : val;\n },\n lower: (val, type) => {\n // prettier-ignore\n return type === 'text' && isString(val)\n ? val.toLowerCase()\n : type === 'vnode' && isObject(val) && '__v_isVNode' in val\n ? val.children.toLowerCase()\n : val;\n },\n capitalize: (val, type) => {\n // prettier-ignore\n return (type === 'text' && isString(val)\n ? capitalize(val)\n : type === 'vnode' && isObject(val) && '__v_isVNode' in val\n ? capitalize(val.children)\n : val);\n }\n };\n}\nlet _compiler;\nfunction registerMessageCompiler(compiler) {\n _compiler = compiler;\n}\nlet _resolver;\n/**\n * Register the message resolver\n *\n * @param resolver - A {@link MessageResolver} function\n *\n * @VueI18nGeneral\n */\nfunction registerMessageResolver(resolver) {\n _resolver = resolver;\n}\nlet _fallbacker;\n/**\n * Register the locale fallbacker\n *\n * @param fallbacker - A {@link LocaleFallbacker} function\n *\n * @VueI18nGeneral\n */\nfunction registerLocaleFallbacker(fallbacker) {\n _fallbacker = fallbacker;\n}\n// Additional Meta for Intlify DevTools\nlet _additionalMeta = null;\nconst setAdditionalMeta = /* #__PURE__*/ (meta) => {\n _additionalMeta = meta;\n};\nconst getAdditionalMeta = /* #__PURE__*/ () => _additionalMeta;\nlet _fallbackContext = null;\nconst setFallbackContext = (context) => {\n _fallbackContext = context;\n};\nconst getFallbackContext = () => _fallbackContext;\n// ID for CoreContext\nlet _cid = 0;\nfunction createCoreContext(options = {}) {\n // setup options\n const onWarn = isFunction(options.onWarn) ? options.onWarn : warn;\n const version = isString(options.version) ? options.version : VERSION;\n const locale = isString(options.locale) || isFunction(options.locale)\n ? options.locale\n : DEFAULT_LOCALE;\n const _locale = isFunction(locale) ? DEFAULT_LOCALE : locale;\n const fallbackLocale = isArray(options.fallbackLocale) ||\n isPlainObject(options.fallbackLocale) ||\n isString(options.fallbackLocale) ||\n options.fallbackLocale === false\n ? options.fallbackLocale\n : _locale;\n const messages = isPlainObject(options.messages)\n ? options.messages\n : { [_locale]: {} };\n const datetimeFormats = isPlainObject(options.datetimeFormats)\n ? options.datetimeFormats\n : { [_locale]: {} }\n ;\n const numberFormats = isPlainObject(options.numberFormats)\n ? options.numberFormats\n : { [_locale]: {} }\n ;\n const modifiers = assign({}, options.modifiers || {}, getDefaultLinkedModifiers());\n const pluralRules = options.pluralRules || {};\n const missing = isFunction(options.missing) ? options.missing : null;\n const missingWarn = isBoolean(options.missingWarn) || isRegExp(options.missingWarn)\n ? options.missingWarn\n : true;\n const fallbackWarn = isBoolean(options.fallbackWarn) || isRegExp(options.fallbackWarn)\n ? options.fallbackWarn\n : true;\n const fallbackFormat = !!options.fallbackFormat;\n const unresolving = !!options.unresolving;\n const postTranslation = isFunction(options.postTranslation)\n ? options.postTranslation\n : null;\n const processor = isPlainObject(options.processor) ? options.processor : null;\n const warnHtmlMessage = isBoolean(options.warnHtmlMessage)\n ? options.warnHtmlMessage\n : true;\n const escapeParameter = !!options.escapeParameter;\n const messageCompiler = isFunction(options.messageCompiler)\n ? options.messageCompiler\n : _compiler;\n if ((process.env.NODE_ENV !== 'production') &&\n !false &&\n !false &&\n isFunction(options.messageCompiler)) {\n warnOnce(getWarnMessage(CoreWarnCodes.EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER));\n }\n const messageResolver = isFunction(options.messageResolver)\n ? options.messageResolver\n : _resolver || resolveWithKeyValue;\n const localeFallbacker = isFunction(options.localeFallbacker)\n ? options.localeFallbacker\n : _fallbacker || fallbackWithSimple;\n const fallbackContext = isObject(options.fallbackContext)\n ? options.fallbackContext\n : undefined;\n // setup internal options\n const internalOptions = options;\n const __datetimeFormatters = isObject(internalOptions.__datetimeFormatters)\n ? internalOptions.__datetimeFormatters\n : new Map()\n ;\n const __numberFormatters = isObject(internalOptions.__numberFormatters)\n ? internalOptions.__numberFormatters\n : new Map()\n ;\n const __meta = isObject(internalOptions.__meta) ? internalOptions.__meta : {};\n _cid++;\n const context = {\n version,\n cid: _cid,\n locale,\n fallbackLocale,\n messages,\n modifiers,\n pluralRules,\n missing,\n missingWarn,\n fallbackWarn,\n fallbackFormat,\n unresolving,\n postTranslation,\n processor,\n warnHtmlMessage,\n escapeParameter,\n messageCompiler,\n messageResolver,\n localeFallbacker,\n fallbackContext,\n onWarn,\n __meta\n };\n {\n context.datetimeFormats = datetimeFormats;\n context.numberFormats = numberFormats;\n context.__datetimeFormatters = __datetimeFormatters;\n context.__numberFormatters = __numberFormatters;\n }\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production')) {\n context.__v_emitter =\n internalOptions.__v_emitter != null\n ? internalOptions.__v_emitter\n : undefined;\n }\n // NOTE: experimental !!\n if ((process.env.NODE_ENV !== 'production') || __INTLIFY_PROD_DEVTOOLS__) {\n initI18nDevTools(context, version, __meta);\n }\n return context;\n}\n/** @internal */\nfunction isTranslateFallbackWarn(fallback, key) {\n return fallback instanceof RegExp ? fallback.test(key) : fallback;\n}\n/** @internal */\nfunction isTranslateMissingWarn(missing, key) {\n return missing instanceof RegExp ? missing.test(key) : missing;\n}\n/** @internal */\nfunction handleMissing(context, key, locale, missingWarn, type) {\n const { missing, onWarn } = context;\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production')) {\n const emitter = context.__v_emitter;\n if (emitter) {\n emitter.emit(\"missing\" /* VueDevToolsTimelineEvents.MISSING */, {\n locale,\n key,\n type,\n groupId: `${type}:${key}`\n });\n }\n }\n if (missing !== null) {\n const ret = missing(context, locale, key, type);\n return isString(ret) ? ret : key;\n }\n else {\n if ((process.env.NODE_ENV !== 'production') && isTranslateMissingWarn(missingWarn, key)) {\n onWarn(getWarnMessage(CoreWarnCodes.NOT_FOUND_KEY, { key, locale }));\n }\n return key;\n }\n}\n/** @internal */\nfunction updateFallbackLocale(ctx, locale, fallback) {\n const context = ctx;\n context.__localeChainCache = new Map();\n ctx.localeFallbacker(ctx, fallback, locale);\n}\n/* eslint-enable @typescript-eslint/no-explicit-any */\n\nfunction format(ast) {\n const msg = (ctx) => formatParts(ctx, ast);\n return msg;\n}\nfunction formatParts(ctx, ast) {\n const body = ast.b || ast.body;\n if ((body.t || body.type) === 1 /* NodeTypes.Plural */) {\n const plural = body;\n const cases = plural.c || plural.cases;\n return ctx.plural(cases.reduce((messages, c) => [\n ...messages,\n formatMessageParts(ctx, c)\n ], []));\n }\n else {\n return formatMessageParts(ctx, body);\n }\n}\nfunction formatMessageParts(ctx, node) {\n const _static = node.s || node.static;\n if (_static) {\n return ctx.type === 'text'\n ? _static\n : ctx.normalize([_static]);\n }\n else {\n const messages = (node.i || node.items).reduce((acm, c) => [...acm, formatMessagePart(ctx, c)], []);\n return ctx.normalize(messages);\n }\n}\nfunction formatMessagePart(ctx, node) {\n const type = node.t || node.type;\n switch (type) {\n case 3 /* NodeTypes.Text */:\n const text = node;\n return (text.v || text.value);\n case 9 /* NodeTypes.Literal */:\n const literal = node;\n return (literal.v || literal.value);\n case 4 /* NodeTypes.Named */:\n const named = node;\n return ctx.interpolate(ctx.named(named.k || named.key));\n case 5 /* NodeTypes.List */:\n const list = node;\n return ctx.interpolate(ctx.list(list.i != null ? list.i : list.index));\n case 6 /* NodeTypes.Linked */:\n const linked = node;\n const modifier = linked.m || linked.modifier;\n return ctx.linked(formatMessagePart(ctx, linked.k || linked.key), modifier ? formatMessagePart(ctx, modifier) : undefined, ctx.type);\n case 7 /* NodeTypes.LinkedKey */:\n const linkedKey = node;\n return (linkedKey.v || linkedKey.value);\n case 8 /* NodeTypes.LinkedModifier */:\n const linkedModifier = node;\n return (linkedModifier.v || linkedModifier.value);\n default:\n throw new Error(`unhandled node type on format message part: ${type}`);\n }\n}\n\nconst code = CompileErrorCodes.__EXTEND_POINT__;\nconst inc = incrementer(code);\nconst CoreErrorCodes = {\n INVALID_ARGUMENT: code,\n INVALID_DATE_ARGUMENT: inc(),\n INVALID_ISO_DATE_ARGUMENT: inc(),\n NOT_SUPPORT_NON_STRING_MESSAGE: inc(),\n __EXTEND_POINT__: inc() // 22\n};\nfunction createCoreError(code) {\n return createCompileError(code, null, (process.env.NODE_ENV !== 'production') ? { messages: errorMessages } : undefined);\n}\n/** @internal */\nconst errorMessages = {\n [CoreErrorCodes.INVALID_ARGUMENT]: 'Invalid arguments',\n [CoreErrorCodes.INVALID_DATE_ARGUMENT]: 'The date provided is an invalid Date object.' +\n 'Make sure your Date represents a valid date.',\n [CoreErrorCodes.INVALID_ISO_DATE_ARGUMENT]: 'The argument provided is not a valid ISO date string',\n [CoreErrorCodes.NOT_SUPPORT_NON_STRING_MESSAGE]: 'Not support non-string message'\n};\n\nconst WARN_MESSAGE = `Detected HTML in '{source}' message. Recommend not using HTML messages to avoid XSS.`;\nfunction checkHtmlMessage(source, warnHtmlMessage) {\n if (warnHtmlMessage && detectHtmlTag(source)) {\n warn(format$1(WARN_MESSAGE, { source }));\n }\n}\nconst defaultOnCacheKey = (message) => message;\nlet compileCache = Object.create(null);\nfunction clearCompileCache() {\n compileCache = Object.create(null);\n}\nconst isMessageAST = (val) => isObject(val) &&\n (val.t === 0 || val.type === 0) &&\n ('b' in val || 'body' in val);\nfunction baseCompile(message, options = {}) {\n // error detecting on compile\n let detectError = false;\n const onError = options.onError || defaultOnError;\n options.onError = (err) => {\n detectError = true;\n onError(err);\n };\n // compile with mesasge-compiler\n return { ...baseCompile$1(message, options), detectError };\n}\nconst compileToFunction = /* #__PURE__*/ (message, context) => {\n if (!isString(message)) {\n throw createCoreError(CoreErrorCodes.NOT_SUPPORT_NON_STRING_MESSAGE);\n }\n {\n // check HTML message\n const warnHtmlMessage = isBoolean(context.warnHtmlMessage)\n ? context.warnHtmlMessage\n : true;\n (process.env.NODE_ENV !== 'production') && checkHtmlMessage(message, warnHtmlMessage);\n // check caches\n const onCacheKey = context.onCacheKey || defaultOnCacheKey;\n const cacheKey = onCacheKey(message);\n const cached = compileCache[cacheKey];\n if (cached) {\n return cached;\n }\n // compile\n const { code, detectError } = baseCompile(message, context);\n // evaluate function\n const msg = new Function(`return ${code}`)();\n // if occurred compile error, don't cache\n return !detectError\n ? (compileCache[cacheKey] = msg)\n : msg;\n }\n};\nfunction compile(message, context) {\n if (((__INTLIFY_JIT_COMPILATION__ && !__INTLIFY_DROP_MESSAGE_COMPILER__)) &&\n isString(message)) {\n // check HTML message\n const warnHtmlMessage = isBoolean(context.warnHtmlMessage)\n ? context.warnHtmlMessage\n : true;\n (process.env.NODE_ENV !== 'production') && checkHtmlMessage(message, warnHtmlMessage);\n // check caches\n const onCacheKey = context.onCacheKey || defaultOnCacheKey;\n const cacheKey = onCacheKey(message);\n const cached = compileCache[cacheKey];\n if (cached) {\n return cached;\n }\n // compile with JIT mode\n const { ast, detectError } = baseCompile(message, {\n ...context,\n location: (process.env.NODE_ENV !== 'production'),\n jit: true\n });\n // compose message function from AST\n const msg = format(ast);\n // if occurred compile error, don't cache\n return !detectError\n ? (compileCache[cacheKey] = msg)\n : msg;\n }\n else {\n if ((process.env.NODE_ENV !== 'production') && !isMessageAST(message)) {\n warn(`the message that is resolve with key '${context.key}' is not supported for jit compilation`);\n return (() => message);\n }\n // AST case (passed from bundler)\n const cacheKey = message.cacheKey;\n if (cacheKey) {\n const cached = compileCache[cacheKey];\n if (cached) {\n return cached;\n }\n // compose message function from message (AST)\n return (compileCache[cacheKey] =\n format(message));\n }\n else {\n return format(message);\n }\n }\n}\n\nconst NOOP_MESSAGE_FUNCTION = () => '';\nconst isMessageFunction = (val) => isFunction(val);\n// implementation of `translate` function\nfunction translate(context, ...args) {\n const { fallbackFormat, postTranslation, unresolving, messageCompiler, fallbackLocale, messages } = context;\n const [key, options] = parseTranslateArgs(...args);\n const missingWarn = isBoolean(options.missingWarn)\n ? options.missingWarn\n : context.missingWarn;\n const fallbackWarn = isBoolean(options.fallbackWarn)\n ? options.fallbackWarn\n : context.fallbackWarn;\n const escapeParameter = isBoolean(options.escapeParameter)\n ? options.escapeParameter\n : context.escapeParameter;\n const resolvedMessage = !!options.resolvedMessage;\n // prettier-ignore\n const defaultMsgOrKey = isString(options.default) || isBoolean(options.default) // default by function option\n ? !isBoolean(options.default)\n ? options.default\n : (!messageCompiler ? () => key : key)\n : fallbackFormat // default by `fallbackFormat` option\n ? (!messageCompiler ? () => key : key)\n : '';\n const enableDefaultMsg = fallbackFormat || defaultMsgOrKey !== '';\n const locale = getLocale(context, options);\n // escape params\n escapeParameter && escapeParams(options);\n // resolve message format\n // eslint-disable-next-line prefer-const\n let [formatScope, targetLocale, message] = !resolvedMessage\n ? resolveMessageFormat(context, key, locale, fallbackLocale, fallbackWarn, missingWarn)\n : [\n key,\n locale,\n messages[locale] || {}\n ];\n // NOTE:\n // Fix to work around `ssrTransfrom` bug in Vite.\n // https://github.com/vitejs/vite/issues/4306\n // To get around this, use temporary variables.\n // https://github.com/nuxt/framework/issues/1461#issuecomment-954606243\n let format = formatScope;\n // if you use default message, set it as message format!\n let cacheBaseKey = key;\n if (!resolvedMessage &&\n !(isString(format) ||\n isMessageAST(format) ||\n isMessageFunction(format))) {\n if (enableDefaultMsg) {\n format = defaultMsgOrKey;\n cacheBaseKey = format;\n }\n }\n // checking message format and target locale\n if (!resolvedMessage &&\n (!(isString(format) ||\n isMessageAST(format) ||\n isMessageFunction(format)) ||\n !isString(targetLocale))) {\n return unresolving ? NOT_REOSLVED : key;\n }\n // TODO: refactor\n if ((process.env.NODE_ENV !== 'production') && isString(format) && context.messageCompiler == null) {\n warn(`The message format compilation is not supported in this build. ` +\n `Because message compiler isn't included. ` +\n `You need to pre-compilation all message format. ` +\n `So translate function return '${key}'.`);\n return key;\n }\n // setup compile error detecting\n let occurred = false;\n const onError = () => {\n occurred = true;\n };\n // compile message format\n const msg = !isMessageFunction(format)\n ? compileMessageFormat(context, key, targetLocale, format, cacheBaseKey, onError)\n : format;\n // if occurred compile error, return the message format\n if (occurred) {\n return format;\n }\n // evaluate message with context\n const ctxOptions = getMessageContextOptions(context, targetLocale, message, options);\n const msgContext = createMessageContext(ctxOptions);\n const messaged = evaluateMessage(context, msg, msgContext);\n // if use post translation option, proceed it with handler\n const ret = postTranslation\n ? postTranslation(messaged, key)\n : messaged;\n // NOTE: experimental !!\n if ((process.env.NODE_ENV !== 'production') || __INTLIFY_PROD_DEVTOOLS__) {\n // prettier-ignore\n const payloads = {\n timestamp: Date.now(),\n key: isString(key)\n ? key\n : isMessageFunction(format)\n ? format.key\n : '',\n locale: targetLocale || (isMessageFunction(format)\n ? format.locale\n : ''),\n format: isString(format)\n ? format\n : isMessageFunction(format)\n ? format.source\n : '',\n message: ret\n };\n payloads.meta = assign({}, context.__meta, getAdditionalMeta() || {});\n translateDevTools(payloads);\n }\n return ret;\n}\nfunction escapeParams(options) {\n if (isArray(options.list)) {\n options.list = options.list.map(item => isString(item) ? escapeHtml(item) : item);\n }\n else if (isObject(options.named)) {\n Object.keys(options.named).forEach(key => {\n if (isString(options.named[key])) {\n options.named[key] = escapeHtml(options.named[key]);\n }\n });\n }\n}\nfunction resolveMessageFormat(context, key, locale, fallbackLocale, fallbackWarn, missingWarn) {\n const { messages, onWarn, messageResolver: resolveValue, localeFallbacker } = context;\n const locales = localeFallbacker(context, fallbackLocale, locale); // eslint-disable-line @typescript-eslint/no-explicit-any\n let message = {};\n let targetLocale;\n let format = null;\n let from = locale;\n let to = null;\n const type = 'translate';\n for (let i = 0; i < locales.length; i++) {\n targetLocale = to = locales[i];\n if ((process.env.NODE_ENV !== 'production') &&\n locale !== targetLocale &&\n isTranslateFallbackWarn(fallbackWarn, key)) {\n onWarn(getWarnMessage(CoreWarnCodes.FALLBACK_TO_TRANSLATE, {\n key,\n target: targetLocale\n }));\n }\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production') && locale !== targetLocale) {\n const emitter = context.__v_emitter;\n if (emitter) {\n emitter.emit(\"fallback\" /* VueDevToolsTimelineEvents.FALBACK */, {\n type,\n key,\n from,\n to,\n groupId: `${type}:${key}`\n });\n }\n }\n message =\n messages[targetLocale] || {};\n // for vue-devtools timeline event\n let start = null;\n let startTag;\n let endTag;\n if ((process.env.NODE_ENV !== 'production') && inBrowser) {\n start = window.performance.now();\n startTag = 'intlify-message-resolve-start';\n endTag = 'intlify-message-resolve-end';\n mark && mark(startTag);\n }\n if ((format = resolveValue(message, key)) === null) {\n // if null, resolve with object key path\n format = message[key]; // eslint-disable-line @typescript-eslint/no-explicit-any\n }\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production') && inBrowser) {\n const end = window.performance.now();\n const emitter = context.__v_emitter;\n if (emitter && start && format) {\n emitter.emit(\"message-resolve\" /* VueDevToolsTimelineEvents.MESSAGE_RESOLVE */, {\n type: \"message-resolve\" /* VueDevToolsTimelineEvents.MESSAGE_RESOLVE */,\n key,\n message: format,\n time: end - start,\n groupId: `${type}:${key}`\n });\n }\n if (startTag && endTag && mark && measure) {\n mark(endTag);\n measure('intlify message resolve', startTag, endTag);\n }\n }\n if (isString(format) || isMessageAST(format) || isMessageFunction(format)) {\n break;\n }\n const missingRet = handleMissing(context, // eslint-disable-line @typescript-eslint/no-explicit-any\n key, targetLocale, missingWarn, type);\n if (missingRet !== key) {\n format = missingRet;\n }\n from = to;\n }\n return [format, targetLocale, message];\n}\nfunction compileMessageFormat(context, key, targetLocale, format, cacheBaseKey, onError) {\n const { messageCompiler, warnHtmlMessage } = context;\n if (isMessageFunction(format)) {\n const msg = format;\n msg.locale = msg.locale || targetLocale;\n msg.key = msg.key || key;\n return msg;\n }\n if (messageCompiler == null) {\n const msg = (() => format);\n msg.locale = targetLocale;\n msg.key = key;\n return msg;\n }\n // for vue-devtools timeline event\n let start = null;\n let startTag;\n let endTag;\n if ((process.env.NODE_ENV !== 'production') && inBrowser) {\n start = window.performance.now();\n startTag = 'intlify-message-compilation-start';\n endTag = 'intlify-message-compilation-end';\n mark && mark(startTag);\n }\n const msg = messageCompiler(format, getCompileContext(context, targetLocale, cacheBaseKey, format, warnHtmlMessage, onError));\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production') && inBrowser) {\n const end = window.performance.now();\n const emitter = context.__v_emitter;\n if (emitter && start) {\n emitter.emit(\"message-compilation\" /* VueDevToolsTimelineEvents.MESSAGE_COMPILATION */, {\n type: \"message-compilation\" /* VueDevToolsTimelineEvents.MESSAGE_COMPILATION */,\n message: format,\n time: end - start,\n groupId: `${'translate'}:${key}`\n });\n }\n if (startTag && endTag && mark && measure) {\n mark(endTag);\n measure('intlify message compilation', startTag, endTag);\n }\n }\n msg.locale = targetLocale;\n msg.key = key;\n msg.source = format;\n return msg;\n}\nfunction evaluateMessage(context, msg, msgCtx) {\n // for vue-devtools timeline event\n let start = null;\n let startTag;\n let endTag;\n if ((process.env.NODE_ENV !== 'production') && inBrowser) {\n start = window.performance.now();\n startTag = 'intlify-message-evaluation-start';\n endTag = 'intlify-message-evaluation-end';\n mark && mark(startTag);\n }\n const messaged = msg(msgCtx);\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production') && inBrowser) {\n const end = window.performance.now();\n const emitter = context.__v_emitter;\n if (emitter && start) {\n emitter.emit(\"message-evaluation\" /* VueDevToolsTimelineEvents.MESSAGE_EVALUATION */, {\n type: \"message-evaluation\" /* VueDevToolsTimelineEvents.MESSAGE_EVALUATION */,\n value: messaged,\n time: end - start,\n groupId: `${'translate'}:${msg.key}`\n });\n }\n if (startTag && endTag && mark && measure) {\n mark(endTag);\n measure('intlify message evaluation', startTag, endTag);\n }\n }\n return messaged;\n}\n/** @internal */\nfunction parseTranslateArgs(...args) {\n const [arg1, arg2, arg3] = args;\n const options = {};\n if (!isString(arg1) &&\n !isNumber(arg1) &&\n !isMessageFunction(arg1) &&\n !isMessageAST(arg1)) {\n throw createCoreError(CoreErrorCodes.INVALID_ARGUMENT);\n }\n // prettier-ignore\n const key = isNumber(arg1)\n ? String(arg1)\n : isMessageFunction(arg1)\n ? arg1\n : arg1;\n if (isNumber(arg2)) {\n options.plural = arg2;\n }\n else if (isString(arg2)) {\n options.default = arg2;\n }\n else if (isPlainObject(arg2) && !isEmptyObject(arg2)) {\n options.named = arg2;\n }\n else if (isArray(arg2)) {\n options.list = arg2;\n }\n if (isNumber(arg3)) {\n options.plural = arg3;\n }\n else if (isString(arg3)) {\n options.default = arg3;\n }\n else if (isPlainObject(arg3)) {\n assign(options, arg3);\n }\n return [key, options];\n}\nfunction getCompileContext(context, locale, key, source, warnHtmlMessage, onError) {\n return {\n locale,\n key,\n warnHtmlMessage,\n onError: (err) => {\n onError && onError(err);\n if ((process.env.NODE_ENV !== 'production')) {\n const _source = getSourceForCodeFrame(source);\n const message = `Message compilation error: ${err.message}`;\n const codeFrame = err.location &&\n _source &&\n generateCodeFrame(_source, err.location.start.offset, err.location.end.offset);\n const emitter = context.__v_emitter;\n if (emitter && _source) {\n emitter.emit(\"compile-error\" /* VueDevToolsTimelineEvents.COMPILE_ERROR */, {\n message: _source,\n error: err.message,\n start: err.location && err.location.start.offset,\n end: err.location && err.location.end.offset,\n groupId: `${'translate'}:${key}`\n });\n }\n console.error(codeFrame ? `${message}\\n${codeFrame}` : message);\n }\n else {\n throw err;\n }\n },\n onCacheKey: (source) => generateFormatCacheKey(locale, key, source)\n };\n}\nfunction getSourceForCodeFrame(source) {\n if (isString(source)) ;\n else {\n if (source.loc?.source) {\n return source.loc.source;\n }\n }\n}\nfunction getMessageContextOptions(context, locale, message, options) {\n const { modifiers, pluralRules, messageResolver: resolveValue, fallbackLocale, fallbackWarn, missingWarn, fallbackContext } = context;\n const resolveMessage = (key) => {\n let val = resolveValue(message, key);\n // fallback to root context\n if (val == null && fallbackContext) {\n const [, , message] = resolveMessageFormat(fallbackContext, key, locale, fallbackLocale, fallbackWarn, missingWarn);\n val = resolveValue(message, key);\n }\n if (isString(val) || isMessageAST(val)) {\n let occurred = false;\n const onError = () => {\n occurred = true;\n };\n const msg = compileMessageFormat(context, key, locale, val, key, onError);\n return !occurred\n ? msg\n : NOOP_MESSAGE_FUNCTION;\n }\n else if (isMessageFunction(val)) {\n return val;\n }\n else {\n // TODO: should be implemented warning message\n return NOOP_MESSAGE_FUNCTION;\n }\n };\n const ctxOptions = {\n locale,\n modifiers,\n pluralRules,\n messages: resolveMessage\n };\n if (context.processor) {\n ctxOptions.processor = context.processor;\n }\n if (options.list) {\n ctxOptions.list = options.list;\n }\n if (options.named) {\n ctxOptions.named = options.named;\n }\n if (isNumber(options.plural)) {\n ctxOptions.pluralIndex = options.plural;\n }\n return ctxOptions;\n}\n\nconst intlDefined = typeof Intl !== 'undefined';\nconst Availabilities = {\n dateTimeFormat: intlDefined && typeof Intl.DateTimeFormat !== 'undefined',\n numberFormat: intlDefined && typeof Intl.NumberFormat !== 'undefined'\n};\n\n// implementation of `datetime` function\nfunction datetime(context, ...args) {\n const { datetimeFormats, unresolving, fallbackLocale, onWarn, localeFallbacker } = context;\n const { __datetimeFormatters } = context;\n if ((process.env.NODE_ENV !== 'production') && !Availabilities.dateTimeFormat) {\n onWarn(getWarnMessage(CoreWarnCodes.CANNOT_FORMAT_DATE));\n return MISSING_RESOLVE_VALUE;\n }\n const [key, value, options, overrides] = parseDateTimeArgs(...args);\n const missingWarn = isBoolean(options.missingWarn)\n ? options.missingWarn\n : context.missingWarn;\n const fallbackWarn = isBoolean(options.fallbackWarn)\n ? options.fallbackWarn\n : context.fallbackWarn;\n const part = !!options.part;\n const locale = getLocale(context, options);\n const locales = localeFallbacker(context, // eslint-disable-line @typescript-eslint/no-explicit-any\n fallbackLocale, locale);\n if (!isString(key) || key === '') {\n return new Intl.DateTimeFormat(locale, overrides).format(value);\n }\n // resolve format\n let datetimeFormat = {};\n let targetLocale;\n let format = null;\n let from = locale;\n let to = null;\n const type = 'datetime format';\n for (let i = 0; i < locales.length; i++) {\n targetLocale = to = locales[i];\n if ((process.env.NODE_ENV !== 'production') &&\n locale !== targetLocale &&\n isTranslateFallbackWarn(fallbackWarn, key)) {\n onWarn(getWarnMessage(CoreWarnCodes.FALLBACK_TO_DATE_FORMAT, {\n key,\n target: targetLocale\n }));\n }\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production') && locale !== targetLocale) {\n const emitter = context.__v_emitter;\n if (emitter) {\n emitter.emit(\"fallback\" /* VueDevToolsTimelineEvents.FALBACK */, {\n type,\n key,\n from,\n to,\n groupId: `${type}:${key}`\n });\n }\n }\n datetimeFormat =\n datetimeFormats[targetLocale] || {};\n format = datetimeFormat[key];\n if (isPlainObject(format))\n break;\n handleMissing(context, key, targetLocale, missingWarn, type); // eslint-disable-line @typescript-eslint/no-explicit-any\n from = to;\n }\n // checking format and target locale\n if (!isPlainObject(format) || !isString(targetLocale)) {\n return unresolving ? NOT_REOSLVED : key;\n }\n let id = `${targetLocale}__${key}`;\n if (!isEmptyObject(overrides)) {\n id = `${id}__${JSON.stringify(overrides)}`;\n }\n let formatter = __datetimeFormatters.get(id);\n if (!formatter) {\n formatter = new Intl.DateTimeFormat(targetLocale, assign({}, format, overrides));\n __datetimeFormatters.set(id, formatter);\n }\n return !part ? formatter.format(value) : formatter.formatToParts(value);\n}\n/** @internal */\nconst DATETIME_FORMAT_OPTIONS_KEYS = [\n 'localeMatcher',\n 'weekday',\n 'era',\n 'year',\n 'month',\n 'day',\n 'hour',\n 'minute',\n 'second',\n 'timeZoneName',\n 'formatMatcher',\n 'hour12',\n 'timeZone',\n 'dateStyle',\n 'timeStyle',\n 'calendar',\n 'dayPeriod',\n 'numberingSystem',\n 'hourCycle',\n 'fractionalSecondDigits'\n];\n/** @internal */\nfunction parseDateTimeArgs(...args) {\n const [arg1, arg2, arg3, arg4] = args;\n const options = {};\n let overrides = {};\n let value;\n if (isString(arg1)) {\n // Only allow ISO strings - other date formats are often supported,\n // but may cause different results in different browsers.\n const matches = arg1.match(/(\\d{4}-\\d{2}-\\d{2})(T|\\s)?(.*)/);\n if (!matches) {\n throw createCoreError(CoreErrorCodes.INVALID_ISO_DATE_ARGUMENT);\n }\n // Some browsers can not parse the iso datetime separated by space,\n // this is a compromise solution by replace the 'T'/' ' with 'T'\n const dateTime = matches[3]\n ? matches[3].trim().startsWith('T')\n ? `${matches[1].trim()}${matches[3].trim()}`\n : `${matches[1].trim()}T${matches[3].trim()}`\n : matches[1].trim();\n value = new Date(dateTime);\n try {\n // This will fail if the date is not valid\n value.toISOString();\n }\n catch (e) {\n throw createCoreError(CoreErrorCodes.INVALID_ISO_DATE_ARGUMENT);\n }\n }\n else if (isDate(arg1)) {\n if (isNaN(arg1.getTime())) {\n throw createCoreError(CoreErrorCodes.INVALID_DATE_ARGUMENT);\n }\n value = arg1;\n }\n else if (isNumber(arg1)) {\n value = arg1;\n }\n else {\n throw createCoreError(CoreErrorCodes.INVALID_ARGUMENT);\n }\n if (isString(arg2)) {\n options.key = arg2;\n }\n else if (isPlainObject(arg2)) {\n Object.keys(arg2).forEach(key => {\n if (DATETIME_FORMAT_OPTIONS_KEYS.includes(key)) {\n overrides[key] = arg2[key];\n }\n else {\n options[key] = arg2[key];\n }\n });\n }\n if (isString(arg3)) {\n options.locale = arg3;\n }\n else if (isPlainObject(arg3)) {\n overrides = arg3;\n }\n if (isPlainObject(arg4)) {\n overrides = arg4;\n }\n return [options.key || '', value, options, overrides];\n}\n/** @internal */\nfunction clearDateTimeFormat(ctx, locale, format) {\n const context = ctx;\n for (const key in format) {\n const id = `${locale}__${key}`;\n if (!context.__datetimeFormatters.has(id)) {\n continue;\n }\n context.__datetimeFormatters.delete(id);\n }\n}\n\n// implementation of `number` function\nfunction number(context, ...args) {\n const { numberFormats, unresolving, fallbackLocale, onWarn, localeFallbacker } = context;\n const { __numberFormatters } = context;\n if ((process.env.NODE_ENV !== 'production') && !Availabilities.numberFormat) {\n onWarn(getWarnMessage(CoreWarnCodes.CANNOT_FORMAT_NUMBER));\n return MISSING_RESOLVE_VALUE;\n }\n const [key, value, options, overrides] = parseNumberArgs(...args);\n const missingWarn = isBoolean(options.missingWarn)\n ? options.missingWarn\n : context.missingWarn;\n const fallbackWarn = isBoolean(options.fallbackWarn)\n ? options.fallbackWarn\n : context.fallbackWarn;\n const part = !!options.part;\n const locale = getLocale(context, options);\n const locales = localeFallbacker(context, // eslint-disable-line @typescript-eslint/no-explicit-any\n fallbackLocale, locale);\n if (!isString(key) || key === '') {\n return new Intl.NumberFormat(locale, overrides).format(value);\n }\n // resolve format\n let numberFormat = {};\n let targetLocale;\n let format = null;\n let from = locale;\n let to = null;\n const type = 'number format';\n for (let i = 0; i < locales.length; i++) {\n targetLocale = to = locales[i];\n if ((process.env.NODE_ENV !== 'production') &&\n locale !== targetLocale &&\n isTranslateFallbackWarn(fallbackWarn, key)) {\n onWarn(getWarnMessage(CoreWarnCodes.FALLBACK_TO_NUMBER_FORMAT, {\n key,\n target: targetLocale\n }));\n }\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production') && locale !== targetLocale) {\n const emitter = context.__v_emitter;\n if (emitter) {\n emitter.emit(\"fallback\" /* VueDevToolsTimelineEvents.FALBACK */, {\n type,\n key,\n from,\n to,\n groupId: `${type}:${key}`\n });\n }\n }\n numberFormat =\n numberFormats[targetLocale] || {};\n format = numberFormat[key];\n if (isPlainObject(format))\n break;\n handleMissing(context, key, targetLocale, missingWarn, type); // eslint-disable-line @typescript-eslint/no-explicit-any\n from = to;\n }\n // checking format and target locale\n if (!isPlainObject(format) || !isString(targetLocale)) {\n return unresolving ? NOT_REOSLVED : key;\n }\n let id = `${targetLocale}__${key}`;\n if (!isEmptyObject(overrides)) {\n id = `${id}__${JSON.stringify(overrides)}`;\n }\n let formatter = __numberFormatters.get(id);\n if (!formatter) {\n formatter = new Intl.NumberFormat(targetLocale, assign({}, format, overrides));\n __numberFormatters.set(id, formatter);\n }\n return !part ? formatter.format(value) : formatter.formatToParts(value);\n}\n/** @internal */\nconst NUMBER_FORMAT_OPTIONS_KEYS = [\n 'localeMatcher',\n 'style',\n 'currency',\n 'currencyDisplay',\n 'currencySign',\n 'useGrouping',\n 'minimumIntegerDigits',\n 'minimumFractionDigits',\n 'maximumFractionDigits',\n 'minimumSignificantDigits',\n 'maximumSignificantDigits',\n 'compactDisplay',\n 'notation',\n 'signDisplay',\n 'unit',\n 'unitDisplay',\n 'roundingMode',\n 'roundingPriority',\n 'roundingIncrement',\n 'trailingZeroDisplay'\n];\n/** @internal */\nfunction parseNumberArgs(...args) {\n const [arg1, arg2, arg3, arg4] = args;\n const options = {};\n let overrides = {};\n if (!isNumber(arg1)) {\n throw createCoreError(CoreErrorCodes.INVALID_ARGUMENT);\n }\n const value = arg1;\n if (isString(arg2)) {\n options.key = arg2;\n }\n else if (isPlainObject(arg2)) {\n Object.keys(arg2).forEach(key => {\n if (NUMBER_FORMAT_OPTIONS_KEYS.includes(key)) {\n overrides[key] = arg2[key];\n }\n else {\n options[key] = arg2[key];\n }\n });\n }\n if (isString(arg3)) {\n options.locale = arg3;\n }\n else if (isPlainObject(arg3)) {\n overrides = arg3;\n }\n if (isPlainObject(arg4)) {\n overrides = arg4;\n }\n return [options.key || '', value, options, overrides];\n}\n/** @internal */\nfunction clearNumberFormat(ctx, locale, format) {\n const context = ctx;\n for (const key in format) {\n const id = `${locale}__${key}`;\n if (!context.__numberFormatters.has(id)) {\n continue;\n }\n context.__numberFormatters.delete(id);\n }\n}\n\n{\n initFeatureFlags();\n}\n\nexport { CoreErrorCodes, CoreWarnCodes, DATETIME_FORMAT_OPTIONS_KEYS, DEFAULT_LOCALE, DEFAULT_MESSAGE_DATA_TYPE, MISSING_RESOLVE_VALUE, NOT_REOSLVED, NUMBER_FORMAT_OPTIONS_KEYS, VERSION, clearCompileCache, clearDateTimeFormat, clearNumberFormat, compile, compileToFunction, createCoreContext, createCoreError, createMessageContext, datetime, fallbackWithLocaleChain, fallbackWithSimple, getAdditionalMeta, getDevToolsHook, getFallbackContext, getLocale, getWarnMessage, handleMissing, initI18nDevTools, isMessageAST, isMessageFunction, isTranslateFallbackWarn, isTranslateMissingWarn, number, parse, parseDateTimeArgs, parseNumberArgs, parseTranslateArgs, registerLocaleFallbacker, registerMessageCompiler, registerMessageResolver, resolveLocale, resolveValue, resolveWithKeyValue, setAdditionalMeta, setDevToolsHook, setFallbackContext, translate, translateDevTools, updateFallbackLocale };\n","/*!\n * vue-i18n v9.6.1\n * (c) 2023 kazuya kawaguchi\n * Released under the MIT License.\n */\nimport { getGlobalThis, incrementer, format, makeSymbol, isPlainObject, isArray, isString, hasOwn, isObject, warn, isBoolean, isRegExp, isFunction, inBrowser, assign, isNumber, createEmitter, isEmptyObject } from '@intlify/shared';\nimport { CoreWarnCodes, CoreErrorCodes, createCompileError, DEFAULT_LOCALE, updateFallbackLocale, setFallbackContext, createCoreContext, clearDateTimeFormat, clearNumberFormat, setAdditionalMeta, getFallbackContext, NOT_REOSLVED, isTranslateFallbackWarn, isTranslateMissingWarn, parseTranslateArgs, translate, MISSING_RESOLVE_VALUE, parseDateTimeArgs, datetime, parseNumberArgs, number, isMessageAST, isMessageFunction, fallbackWithLocaleChain, NUMBER_FORMAT_OPTIONS_KEYS, DATETIME_FORMAT_OPTIONS_KEYS, registerMessageCompiler, compile, compileToFunction, registerMessageResolver, resolveValue, registerLocaleFallbacker, setDevToolsHook } from '@intlify/core-base';\nimport { createVNode, Text, ref, computed, watch, getCurrentInstance, Fragment, defineComponent, h, effectScope, inject, onMounted, onUnmounted, shallowRef, onBeforeMount, isRef } from 'vue';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\n/**\n * Vue I18n Version\n *\n * @remarks\n * Semver format. Same format as the package.json `version` field.\n *\n * @VueI18nGeneral\n */\nconst VERSION = '9.6.1';\n/**\n * This is only called in esm-bundler builds.\n * istanbul-ignore-next\n */\nfunction initFeatureFlags() {\n if (typeof __VUE_I18N_FULL_INSTALL__ !== 'boolean') {\n getGlobalThis().__VUE_I18N_FULL_INSTALL__ = true;\n }\n if (typeof __VUE_I18N_LEGACY_API__ !== 'boolean') {\n getGlobalThis().__VUE_I18N_LEGACY_API__ = true;\n }\n if (typeof __INTLIFY_JIT_COMPILATION__ !== 'boolean') {\n getGlobalThis().__INTLIFY_JIT_COMPILATION__ = false;\n }\n if (typeof __INTLIFY_DROP_MESSAGE_COMPILER__ !== 'boolean') {\n getGlobalThis().__INTLIFY_DROP_MESSAGE_COMPILER__ = false;\n }\n if (typeof __INTLIFY_PROD_DEVTOOLS__ !== 'boolean') {\n getGlobalThis().__INTLIFY_PROD_DEVTOOLS__ = false;\n }\n}\n\nconst code$1 = CoreWarnCodes.__EXTEND_POINT__;\nconst inc$1 = incrementer(code$1);\nconst I18nWarnCodes = {\n FALLBACK_TO_ROOT: code$1,\n NOT_SUPPORTED_PRESERVE: inc$1(),\n NOT_SUPPORTED_FORMATTER: inc$1(),\n NOT_SUPPORTED_PRESERVE_DIRECTIVE: inc$1(),\n NOT_SUPPORTED_GET_CHOICE_INDEX: inc$1(),\n COMPONENT_NAME_LEGACY_COMPATIBLE: inc$1(),\n NOT_FOUND_PARENT_SCOPE: inc$1(),\n IGNORE_OBJ_FLATTEN: inc$1(),\n NOTICE_DROP_ALLOW_COMPOSITION: inc$1() // 17\n};\nconst warnMessages = {\n [I18nWarnCodes.FALLBACK_TO_ROOT]: `Fall back to {type} '{key}' with root locale.`,\n [I18nWarnCodes.NOT_SUPPORTED_PRESERVE]: `Not supported 'preserve'.`,\n [I18nWarnCodes.NOT_SUPPORTED_FORMATTER]: `Not supported 'formatter'.`,\n [I18nWarnCodes.NOT_SUPPORTED_PRESERVE_DIRECTIVE]: `Not supported 'preserveDirectiveContent'.`,\n [I18nWarnCodes.NOT_SUPPORTED_GET_CHOICE_INDEX]: `Not supported 'getChoiceIndex'.`,\n [I18nWarnCodes.COMPONENT_NAME_LEGACY_COMPATIBLE]: `Component name legacy compatible: '{name}' -> 'i18n'`,\n [I18nWarnCodes.NOT_FOUND_PARENT_SCOPE]: `Not found parent scope. use the global scope.`,\n [I18nWarnCodes.IGNORE_OBJ_FLATTEN]: `Ignore object flatten: '{key}' key has an string value`,\n [I18nWarnCodes.NOTICE_DROP_ALLOW_COMPOSITION]: `'allowComposition' option will be dropped in the next major version. For more information, please see ๐Ÿ‘‰ https://tinyurl.com/2p97mcze`\n};\nfunction getWarnMessage(code, ...args) {\n return format(warnMessages[code], ...args);\n}\n\nconst code = CoreErrorCodes.__EXTEND_POINT__;\nconst inc = incrementer(code);\nconst I18nErrorCodes = {\n // composer module errors\n UNEXPECTED_RETURN_TYPE: code,\n // legacy module errors\n INVALID_ARGUMENT: inc(),\n // i18n module errors\n MUST_BE_CALL_SETUP_TOP: inc(),\n NOT_INSTALLED: inc(),\n NOT_AVAILABLE_IN_LEGACY_MODE: inc(),\n // directive module errors\n REQUIRED_VALUE: inc(),\n INVALID_VALUE: inc(),\n // vue-devtools errors\n CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN: inc(),\n NOT_INSTALLED_WITH_PROVIDE: inc(),\n // unexpected error\n UNEXPECTED_ERROR: inc(),\n // not compatible legacy vue-i18n constructor\n NOT_COMPATIBLE_LEGACY_VUE_I18N: inc(),\n // bridge support vue 2.x only\n BRIDGE_SUPPORT_VUE_2_ONLY: inc(),\n // need to define `i18n` option in `allowComposition: true` and `useScope: 'local' at `useI18n``\n MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION: inc(),\n // Not available Compostion API in Legacy API mode. Please make sure that the legacy API mode is working properly\n NOT_AVAILABLE_COMPOSITION_IN_LEGACY: inc(),\n // for enhancement\n __EXTEND_POINT__: inc() // 37\n};\nfunction createI18nError(code, ...args) {\n return createCompileError(code, null, (process.env.NODE_ENV !== 'production') ? { messages: errorMessages, args } : undefined);\n}\nconst errorMessages = {\n [I18nErrorCodes.UNEXPECTED_RETURN_TYPE]: 'Unexpected return type in composer',\n [I18nErrorCodes.INVALID_ARGUMENT]: 'Invalid argument',\n [I18nErrorCodes.MUST_BE_CALL_SETUP_TOP]: 'Must be called at the top of a `setup` function',\n [I18nErrorCodes.NOT_INSTALLED]: 'Need to install with `app.use` function',\n [I18nErrorCodes.UNEXPECTED_ERROR]: 'Unexpected error',\n [I18nErrorCodes.NOT_AVAILABLE_IN_LEGACY_MODE]: 'Not available in legacy mode',\n [I18nErrorCodes.REQUIRED_VALUE]: `Required in value: {0}`,\n [I18nErrorCodes.INVALID_VALUE]: `Invalid value`,\n [I18nErrorCodes.CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN]: `Cannot setup vue-devtools plugin`,\n [I18nErrorCodes.NOT_INSTALLED_WITH_PROVIDE]: 'Need to install with `provide` function',\n [I18nErrorCodes.NOT_COMPATIBLE_LEGACY_VUE_I18N]: 'Not compatible legacy VueI18n.',\n [I18nErrorCodes.BRIDGE_SUPPORT_VUE_2_ONLY]: 'vue-i18n-bridge support Vue 2.x only',\n [I18nErrorCodes.MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION]: 'Must define โ€˜i18nโ€™ option or custom block in Composition API with using local scope in Legacy API mode',\n [I18nErrorCodes.NOT_AVAILABLE_COMPOSITION_IN_LEGACY]: 'Not available Compostion API in Legacy API mode. Please make sure that the legacy API mode is working properly'\n};\n\nconst TranslateVNodeSymbol = \n/* #__PURE__*/ makeSymbol('__translateVNode');\nconst DatetimePartsSymbol = /* #__PURE__*/ makeSymbol('__datetimeParts');\nconst NumberPartsSymbol = /* #__PURE__*/ makeSymbol('__numberParts');\nconst EnableEmitter = /* #__PURE__*/ makeSymbol('__enableEmitter');\nconst DisableEmitter = /* #__PURE__*/ makeSymbol('__disableEmitter');\nconst SetPluralRulesSymbol = makeSymbol('__setPluralRules');\nmakeSymbol('__intlifyMeta');\nconst InejctWithOptionSymbol = \n/* #__PURE__*/ makeSymbol('__injectWithOption');\nconst DisposeSymbol = /* #__PURE__*/ makeSymbol('__dispose');\nconst __VUE_I18N_BRIDGE__ = '__VUE_I18N_BRIDGE__';\n\n/* eslint-disable @typescript-eslint/no-explicit-any */\n/**\n * Transform flat json in obj to normal json in obj\n */\nfunction handleFlatJson(obj) {\n // check obj\n if (!isObject(obj)) {\n return obj;\n }\n for (const key in obj) {\n // check key\n if (!hasOwn(obj, key)) {\n continue;\n }\n // handle for normal json\n if (!key.includes('.')) {\n // recursive process value if value is also a object\n if (isObject(obj[key])) {\n handleFlatJson(obj[key]);\n }\n }\n // handle for flat json, transform to normal json\n else {\n // go to the last object\n const subKeys = key.split('.');\n const lastIndex = subKeys.length - 1;\n let currentObj = obj;\n let hasStringValue = false;\n for (let i = 0; i < lastIndex; i++) {\n if (!(subKeys[i] in currentObj)) {\n currentObj[subKeys[i]] = {};\n }\n if (!isObject(currentObj[subKeys[i]])) {\n (process.env.NODE_ENV !== 'production') &&\n warn(getWarnMessage(I18nWarnCodes.IGNORE_OBJ_FLATTEN, {\n key: subKeys[i]\n }));\n hasStringValue = true;\n break;\n }\n currentObj = currentObj[subKeys[i]];\n }\n // update last object value, delete old property\n if (!hasStringValue) {\n currentObj[subKeys[lastIndex]] = obj[key];\n delete obj[key];\n }\n // recursive process value if value is also a object\n if (isObject(currentObj[subKeys[lastIndex]])) {\n handleFlatJson(currentObj[subKeys[lastIndex]]);\n }\n }\n }\n return obj;\n}\nfunction getLocaleMessages(locale, options) {\n const { messages, __i18n, messageResolver, flatJson } = options;\n // prettier-ignore\n const ret = (isPlainObject(messages)\n ? messages\n : isArray(__i18n)\n ? {}\n : { [locale]: {} });\n // merge locale messages of i18n custom block\n if (isArray(__i18n)) {\n __i18n.forEach(custom => {\n if ('locale' in custom && 'resource' in custom) {\n const { locale, resource } = custom;\n if (locale) {\n ret[locale] = ret[locale] || {};\n deepCopy(resource, ret[locale]);\n }\n else {\n deepCopy(resource, ret);\n }\n }\n else {\n isString(custom) && deepCopy(JSON.parse(custom), ret);\n }\n });\n }\n // handle messages for flat json\n if (messageResolver == null && flatJson) {\n for (const key in ret) {\n if (hasOwn(ret, key)) {\n handleFlatJson(ret[key]);\n }\n }\n }\n return ret;\n}\nconst isNotObjectOrIsArray = (val) => !isObject(val) || isArray(val);\n// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/explicit-module-boundary-types\nfunction deepCopy(src, des) {\n // src and des should both be objects, and non of then can be a array\n if (isNotObjectOrIsArray(src) || isNotObjectOrIsArray(des)) {\n throw createI18nError(I18nErrorCodes.INVALID_VALUE);\n }\n for (const key in src) {\n if (hasOwn(src, key)) {\n if (isNotObjectOrIsArray(src[key]) || isNotObjectOrIsArray(des[key])) {\n // replace with src[key] when:\n // src[key] or des[key] is not a object, or\n // src[key] or des[key] is a array\n des[key] = src[key];\n }\n else {\n // src[key] and des[key] are both object, merge them\n deepCopy(src[key], des[key]);\n }\n }\n }\n}\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction getComponentOptions(instance) {\n return instance.type ;\n}\nfunction adjustI18nResources(gl, options, componentOptions // eslint-disable-line @typescript-eslint/no-explicit-any\n) {\n let messages = isObject(options.messages) ? options.messages : {};\n if ('__i18nGlobal' in componentOptions) {\n messages = getLocaleMessages(gl.locale.value, {\n messages,\n __i18n: componentOptions.__i18nGlobal\n });\n }\n // merge locale messages\n const locales = Object.keys(messages);\n if (locales.length) {\n locales.forEach(locale => {\n gl.mergeLocaleMessage(locale, messages[locale]);\n });\n }\n {\n // merge datetime formats\n if (isObject(options.datetimeFormats)) {\n const locales = Object.keys(options.datetimeFormats);\n if (locales.length) {\n locales.forEach(locale => {\n gl.mergeDateTimeFormat(locale, options.datetimeFormats[locale]);\n });\n }\n }\n // merge number formats\n if (isObject(options.numberFormats)) {\n const locales = Object.keys(options.numberFormats);\n if (locales.length) {\n locales.forEach(locale => {\n gl.mergeNumberFormat(locale, options.numberFormats[locale]);\n });\n }\n }\n }\n}\nfunction createTextNode(key) {\n return createVNode(Text, null, key, 0)\n ;\n}\n/* eslint-enable @typescript-eslint/no-explicit-any */\n\n/* eslint-disable @typescript-eslint/no-explicit-any */\n// extend VNode interface\nconst DEVTOOLS_META = '__INTLIFY_META__';\nconst NOOP_RETURN_ARRAY = () => [];\nconst NOOP_RETURN_FALSE = () => false;\nlet composerID = 0;\nfunction defineCoreMissingHandler(missing) {\n return ((ctx, locale, key, type) => {\n return missing(locale, key, getCurrentInstance() || undefined, type);\n });\n}\n// for Intlify DevTools\nconst getMetaInfo = /* #__PURE__*/ () => {\n const instance = getCurrentInstance();\n let meta = null; // eslint-disable-line @typescript-eslint/no-explicit-any\n return instance && (meta = getComponentOptions(instance)[DEVTOOLS_META])\n ? { [DEVTOOLS_META]: meta } // eslint-disable-line @typescript-eslint/no-explicit-any\n : null;\n};\n/**\n * Create composer interface factory\n *\n * @internal\n */\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nfunction createComposer(options = {}, VueI18nLegacy) {\n const { __root, __injectWithOption } = options;\n const _isGlobal = __root === undefined;\n const flatJson = options.flatJson;\n let _inheritLocale = isBoolean(options.inheritLocale)\n ? options.inheritLocale\n : true;\n const _locale = ref(\n // prettier-ignore\n __root && _inheritLocale\n ? __root.locale.value\n : isString(options.locale)\n ? options.locale\n : DEFAULT_LOCALE);\n const _fallbackLocale = ref(\n // prettier-ignore\n __root && _inheritLocale\n ? __root.fallbackLocale.value\n : isString(options.fallbackLocale) ||\n isArray(options.fallbackLocale) ||\n isPlainObject(options.fallbackLocale) ||\n options.fallbackLocale === false\n ? options.fallbackLocale\n : _locale.value);\n const _messages = ref(getLocaleMessages(_locale.value, options));\n // prettier-ignore\n const _datetimeFormats = ref(isPlainObject(options.datetimeFormats)\n ? options.datetimeFormats\n : { [_locale.value]: {} })\n ;\n // prettier-ignore\n const _numberFormats = ref(isPlainObject(options.numberFormats)\n ? options.numberFormats\n : { [_locale.value]: {} })\n ;\n // warning suppress options\n // prettier-ignore\n let _missingWarn = __root\n ? __root.missingWarn\n : isBoolean(options.missingWarn) || isRegExp(options.missingWarn)\n ? options.missingWarn\n : true;\n // prettier-ignore\n let _fallbackWarn = __root\n ? __root.fallbackWarn\n : isBoolean(options.fallbackWarn) || isRegExp(options.fallbackWarn)\n ? options.fallbackWarn\n : true;\n // prettier-ignore\n let _fallbackRoot = __root\n ? __root.fallbackRoot\n : isBoolean(options.fallbackRoot)\n ? options.fallbackRoot\n : true;\n // configure fall back to root\n let _fallbackFormat = !!options.fallbackFormat;\n // runtime missing\n let _missing = isFunction(options.missing) ? options.missing : null;\n let _runtimeMissing = isFunction(options.missing)\n ? defineCoreMissingHandler(options.missing)\n : null;\n // postTranslation handler\n let _postTranslation = isFunction(options.postTranslation)\n ? options.postTranslation\n : null;\n // prettier-ignore\n let _warnHtmlMessage = __root\n ? __root.warnHtmlMessage\n : isBoolean(options.warnHtmlMessage)\n ? options.warnHtmlMessage\n : true;\n let _escapeParameter = !!options.escapeParameter;\n // custom linked modifiers\n // prettier-ignore\n const _modifiers = __root\n ? __root.modifiers\n : isPlainObject(options.modifiers)\n ? options.modifiers\n : {};\n // pluralRules\n let _pluralRules = options.pluralRules || (__root && __root.pluralRules);\n // runtime context\n // eslint-disable-next-line prefer-const\n let _context;\n const getCoreContext = () => {\n _isGlobal && setFallbackContext(null);\n const ctxOptions = {\n version: VERSION,\n locale: _locale.value,\n fallbackLocale: _fallbackLocale.value,\n messages: _messages.value,\n modifiers: _modifiers,\n pluralRules: _pluralRules,\n missing: _runtimeMissing === null ? undefined : _runtimeMissing,\n missingWarn: _missingWarn,\n fallbackWarn: _fallbackWarn,\n fallbackFormat: _fallbackFormat,\n unresolving: true,\n postTranslation: _postTranslation === null ? undefined : _postTranslation,\n warnHtmlMessage: _warnHtmlMessage,\n escapeParameter: _escapeParameter,\n messageResolver: options.messageResolver,\n messageCompiler: options.messageCompiler,\n __meta: { framework: 'vue' }\n };\n {\n ctxOptions.datetimeFormats = _datetimeFormats.value;\n ctxOptions.numberFormats = _numberFormats.value;\n ctxOptions.__datetimeFormatters = isPlainObject(_context)\n ? _context.__datetimeFormatters\n : undefined;\n ctxOptions.__numberFormatters = isPlainObject(_context)\n ? _context.__numberFormatters\n : undefined;\n }\n if ((process.env.NODE_ENV !== 'production')) {\n ctxOptions.__v_emitter = isPlainObject(_context)\n ? _context.__v_emitter\n : undefined;\n }\n const ctx = createCoreContext(ctxOptions);\n _isGlobal && setFallbackContext(ctx);\n return ctx;\n };\n _context = getCoreContext();\n updateFallbackLocale(_context, _locale.value, _fallbackLocale.value);\n // track reactivity\n function trackReactivityValues() {\n return [\n _locale.value,\n _fallbackLocale.value,\n _messages.value,\n _datetimeFormats.value,\n _numberFormats.value\n ]\n ;\n }\n // locale\n const locale = computed({\n get: () => _locale.value,\n set: val => {\n _locale.value = val;\n _context.locale = _locale.value;\n }\n });\n // fallbackLocale\n const fallbackLocale = computed({\n get: () => _fallbackLocale.value,\n set: val => {\n _fallbackLocale.value = val;\n _context.fallbackLocale = _fallbackLocale.value;\n updateFallbackLocale(_context, _locale.value, val);\n }\n });\n // messages\n const messages = computed(() => _messages.value);\n // datetimeFormats\n const datetimeFormats = /* #__PURE__*/ computed(() => _datetimeFormats.value);\n // numberFormats\n const numberFormats = /* #__PURE__*/ computed(() => _numberFormats.value);\n // getPostTranslationHandler\n function getPostTranslationHandler() {\n return isFunction(_postTranslation) ? _postTranslation : null;\n }\n // setPostTranslationHandler\n function setPostTranslationHandler(handler) {\n _postTranslation = handler;\n _context.postTranslation = handler;\n }\n // getMissingHandler\n function getMissingHandler() {\n return _missing;\n }\n // setMissingHandler\n function setMissingHandler(handler) {\n if (handler !== null) {\n _runtimeMissing = defineCoreMissingHandler(handler);\n }\n _missing = handler;\n _context.missing = _runtimeMissing;\n }\n function isResolvedTranslateMessage(type, arg // eslint-disable-line @typescript-eslint/no-explicit-any\n ) {\n return type !== 'translate' || !arg.resolvedMessage;\n }\n const wrapWithDeps = (fn, argumentParser, warnType, fallbackSuccess, fallbackFail, successCondition) => {\n trackReactivityValues(); // track reactive dependency\n // NOTE: experimental !!\n let ret;\n try {\n if ((process.env.NODE_ENV !== 'production') || __INTLIFY_PROD_DEVTOOLS__) {\n setAdditionalMeta(getMetaInfo());\n }\n if (!_isGlobal) {\n _context.fallbackContext = __root\n ? getFallbackContext()\n : undefined;\n }\n ret = fn(_context);\n }\n finally {\n if ((process.env.NODE_ENV !== 'production') || __INTLIFY_PROD_DEVTOOLS__) {\n setAdditionalMeta(null);\n }\n if (!_isGlobal) {\n _context.fallbackContext = undefined;\n }\n }\n if ((warnType !== 'translate exists' && // for not `te` (e.g `t`)\n isNumber(ret) &&\n ret === NOT_REOSLVED) ||\n (warnType === 'translate exists' && !ret) // for `te`\n ) {\n const [key, arg2] = argumentParser();\n if ((process.env.NODE_ENV !== 'production') &&\n __root &&\n isString(key) &&\n isResolvedTranslateMessage(warnType, arg2)) {\n if (_fallbackRoot &&\n (isTranslateFallbackWarn(_fallbackWarn, key) ||\n isTranslateMissingWarn(_missingWarn, key))) {\n warn(getWarnMessage(I18nWarnCodes.FALLBACK_TO_ROOT, {\n key,\n type: warnType\n }));\n }\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production')) {\n const { __v_emitter: emitter } = _context;\n if (emitter && _fallbackRoot) {\n emitter.emit(\"fallback\" /* VueDevToolsTimelineEvents.FALBACK */, {\n type: warnType,\n key,\n to: 'global',\n groupId: `${warnType}:${key}`\n });\n }\n }\n }\n return __root && _fallbackRoot\n ? fallbackSuccess(__root)\n : fallbackFail(key);\n }\n else if (successCondition(ret)) {\n return ret;\n }\n else {\n /* istanbul ignore next */\n throw createI18nError(I18nErrorCodes.UNEXPECTED_RETURN_TYPE);\n }\n };\n // t\n function t(...args) {\n return wrapWithDeps(context => Reflect.apply(translate, null, [context, ...args]), () => parseTranslateArgs(...args), 'translate', root => Reflect.apply(root.t, root, [...args]), key => key, val => isString(val));\n }\n // rt\n function rt(...args) {\n const [arg1, arg2, arg3] = args;\n if (arg3 && !isObject(arg3)) {\n throw createI18nError(I18nErrorCodes.INVALID_ARGUMENT);\n }\n return t(...[arg1, arg2, assign({ resolvedMessage: true }, arg3 || {})]);\n }\n // d\n function d(...args) {\n return wrapWithDeps(context => Reflect.apply(datetime, null, [context, ...args]), () => parseDateTimeArgs(...args), 'datetime format', root => Reflect.apply(root.d, root, [...args]), () => MISSING_RESOLVE_VALUE, val => isString(val));\n }\n // n\n function n(...args) {\n return wrapWithDeps(context => Reflect.apply(number, null, [context, ...args]), () => parseNumberArgs(...args), 'number format', root => Reflect.apply(root.n, root, [...args]), () => MISSING_RESOLVE_VALUE, val => isString(val));\n }\n // for custom processor\n function normalize(values) {\n return values.map(val => isString(val) || isNumber(val) || isBoolean(val)\n ? createTextNode(String(val))\n : val);\n }\n const interpolate = (val) => val;\n const processor = {\n normalize,\n interpolate,\n type: 'vnode'\n };\n // translateVNode, using for `i18n-t` component\n function translateVNode(...args) {\n return wrapWithDeps(context => {\n let ret;\n const _context = context;\n try {\n _context.processor = processor;\n ret = Reflect.apply(translate, null, [_context, ...args]);\n }\n finally {\n _context.processor = null;\n }\n return ret;\n }, () => parseTranslateArgs(...args), 'translate', \n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n root => root[TranslateVNodeSymbol](...args), key => [createTextNode(key)], val => isArray(val));\n }\n // numberParts, using for `i18n-n` component\n function numberParts(...args) {\n return wrapWithDeps(context => Reflect.apply(number, null, [context, ...args]), () => parseNumberArgs(...args), 'number format', \n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n root => root[NumberPartsSymbol](...args), NOOP_RETURN_ARRAY, val => isString(val) || isArray(val));\n }\n // datetimeParts, using for `i18n-d` component\n function datetimeParts(...args) {\n return wrapWithDeps(context => Reflect.apply(datetime, null, [context, ...args]), () => parseDateTimeArgs(...args), 'datetime format', \n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n root => root[DatetimePartsSymbol](...args), NOOP_RETURN_ARRAY, val => isString(val) || isArray(val));\n }\n function setPluralRules(rules) {\n _pluralRules = rules;\n _context.pluralRules = _pluralRules;\n }\n // te\n function te(key, locale) {\n return wrapWithDeps(() => {\n if (!key) {\n return false;\n }\n const targetLocale = isString(locale) ? locale : _locale.value;\n const message = getLocaleMessage(targetLocale);\n const resolved = _context.messageResolver(message, key);\n return (isMessageAST(resolved) ||\n isMessageFunction(resolved) ||\n isString(resolved));\n }, () => [key], 'translate exists', root => {\n console.log('root ... te');\n return Reflect.apply(root.te, root, [key, locale]);\n }, NOOP_RETURN_FALSE, val => isBoolean(val));\n /*\n if (!key) {\n return false\n }\n const targetLocale = isString(locale) ? locale : _locale.value\n const message = getLocaleMessage(targetLocale)\n const resolved = _context.messageResolver(message, key)\n return (\n isMessageAST(resolved) ||\n isMessageFunction(resolved) ||\n isString(resolved)\n )\n */\n }\n function resolveMessages(key) {\n let messages = null;\n const locales = fallbackWithLocaleChain(_context, _fallbackLocale.value, _locale.value);\n for (let i = 0; i < locales.length; i++) {\n const targetLocaleMessages = _messages.value[locales[i]] || {};\n const messageValue = _context.messageResolver(targetLocaleMessages, key);\n if (messageValue != null) {\n messages = messageValue;\n break;\n }\n }\n return messages;\n }\n // tm\n function tm(key) {\n const messages = resolveMessages(key);\n // prettier-ignore\n return messages != null\n ? messages\n : __root\n ? __root.tm(key) || {}\n : {};\n }\n // getLocaleMessage\n function getLocaleMessage(locale) {\n return (_messages.value[locale] || {});\n }\n // setLocaleMessage\n function setLocaleMessage(locale, message) {\n if (flatJson) {\n const _message = { [locale]: message };\n for (const key in _message) {\n if (hasOwn(_message, key)) {\n handleFlatJson(_message[key]);\n }\n }\n message = _message[locale];\n }\n _messages.value[locale] = message;\n _context.messages = _messages.value;\n }\n // mergeLocaleMessage\n function mergeLocaleMessage(locale, message) {\n _messages.value[locale] = _messages.value[locale] || {};\n const _message = { [locale]: message };\n for (const key in _message) {\n if (hasOwn(_message, key)) {\n handleFlatJson(_message[key]);\n }\n }\n message = _message[locale];\n deepCopy(message, _messages.value[locale]);\n _context.messages = _messages.value;\n }\n // getDateTimeFormat\n function getDateTimeFormat(locale) {\n return _datetimeFormats.value[locale] || {};\n }\n // setDateTimeFormat\n function setDateTimeFormat(locale, format) {\n _datetimeFormats.value[locale] = format;\n _context.datetimeFormats = _datetimeFormats.value;\n clearDateTimeFormat(_context, locale, format);\n }\n // mergeDateTimeFormat\n function mergeDateTimeFormat(locale, format) {\n _datetimeFormats.value[locale] = assign(_datetimeFormats.value[locale] || {}, format);\n _context.datetimeFormats = _datetimeFormats.value;\n clearDateTimeFormat(_context, locale, format);\n }\n // getNumberFormat\n function getNumberFormat(locale) {\n return _numberFormats.value[locale] || {};\n }\n // setNumberFormat\n function setNumberFormat(locale, format) {\n _numberFormats.value[locale] = format;\n _context.numberFormats = _numberFormats.value;\n clearNumberFormat(_context, locale, format);\n }\n // mergeNumberFormat\n function mergeNumberFormat(locale, format) {\n _numberFormats.value[locale] = assign(_numberFormats.value[locale] || {}, format);\n _context.numberFormats = _numberFormats.value;\n clearNumberFormat(_context, locale, format);\n }\n // for debug\n composerID++;\n // watch root locale & fallbackLocale\n if (__root && inBrowser) {\n watch(__root.locale, (val) => {\n if (_inheritLocale) {\n _locale.value = val;\n _context.locale = val;\n updateFallbackLocale(_context, _locale.value, _fallbackLocale.value);\n }\n });\n watch(__root.fallbackLocale, (val) => {\n if (_inheritLocale) {\n _fallbackLocale.value = val;\n _context.fallbackLocale = val;\n updateFallbackLocale(_context, _locale.value, _fallbackLocale.value);\n }\n });\n }\n // define basic composition API!\n const composer = {\n id: composerID,\n locale,\n fallbackLocale,\n get inheritLocale() {\n return _inheritLocale;\n },\n set inheritLocale(val) {\n _inheritLocale = val;\n if (val && __root) {\n _locale.value = __root.locale.value;\n _fallbackLocale.value = __root.fallbackLocale.value;\n updateFallbackLocale(_context, _locale.value, _fallbackLocale.value);\n }\n },\n get availableLocales() {\n return Object.keys(_messages.value).sort();\n },\n messages,\n get modifiers() {\n return _modifiers;\n },\n get pluralRules() {\n return _pluralRules || {};\n },\n get isGlobal() {\n return _isGlobal;\n },\n get missingWarn() {\n return _missingWarn;\n },\n set missingWarn(val) {\n _missingWarn = val;\n _context.missingWarn = _missingWarn;\n },\n get fallbackWarn() {\n return _fallbackWarn;\n },\n set fallbackWarn(val) {\n _fallbackWarn = val;\n _context.fallbackWarn = _fallbackWarn;\n },\n get fallbackRoot() {\n return _fallbackRoot;\n },\n set fallbackRoot(val) {\n _fallbackRoot = val;\n },\n get fallbackFormat() {\n return _fallbackFormat;\n },\n set fallbackFormat(val) {\n _fallbackFormat = val;\n _context.fallbackFormat = _fallbackFormat;\n },\n get warnHtmlMessage() {\n return _warnHtmlMessage;\n },\n set warnHtmlMessage(val) {\n _warnHtmlMessage = val;\n _context.warnHtmlMessage = val;\n },\n get escapeParameter() {\n return _escapeParameter;\n },\n set escapeParameter(val) {\n _escapeParameter = val;\n _context.escapeParameter = val;\n },\n t,\n getLocaleMessage,\n setLocaleMessage,\n mergeLocaleMessage,\n getPostTranslationHandler,\n setPostTranslationHandler,\n getMissingHandler,\n setMissingHandler,\n [SetPluralRulesSymbol]: setPluralRules\n };\n {\n composer.datetimeFormats = datetimeFormats;\n composer.numberFormats = numberFormats;\n composer.rt = rt;\n composer.te = te;\n composer.tm = tm;\n composer.d = d;\n composer.n = n;\n composer.getDateTimeFormat = getDateTimeFormat;\n composer.setDateTimeFormat = setDateTimeFormat;\n composer.mergeDateTimeFormat = mergeDateTimeFormat;\n composer.getNumberFormat = getNumberFormat;\n composer.setNumberFormat = setNumberFormat;\n composer.mergeNumberFormat = mergeNumberFormat;\n composer[InejctWithOptionSymbol] = __injectWithOption;\n composer[TranslateVNodeSymbol] = translateVNode;\n composer[DatetimePartsSymbol] = datetimeParts;\n composer[NumberPartsSymbol] = numberParts;\n }\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production')) {\n composer[EnableEmitter] = (emitter) => {\n _context.__v_emitter = emitter;\n };\n composer[DisableEmitter] = () => {\n _context.__v_emitter = undefined;\n };\n }\n return composer;\n}\n/* eslint-enable @typescript-eslint/no-explicit-any */\n\n/* eslint-disable @typescript-eslint/no-explicit-any */\n/**\n * Convert to I18n Composer Options from VueI18n Options\n *\n * @internal\n */\nfunction convertComposerOptions(options) {\n const locale = isString(options.locale) ? options.locale : DEFAULT_LOCALE;\n const fallbackLocale = isString(options.fallbackLocale) ||\n isArray(options.fallbackLocale) ||\n isPlainObject(options.fallbackLocale) ||\n options.fallbackLocale === false\n ? options.fallbackLocale\n : locale;\n const missing = isFunction(options.missing) ? options.missing : undefined;\n const missingWarn = isBoolean(options.silentTranslationWarn) ||\n isRegExp(options.silentTranslationWarn)\n ? !options.silentTranslationWarn\n : true;\n const fallbackWarn = isBoolean(options.silentFallbackWarn) ||\n isRegExp(options.silentFallbackWarn)\n ? !options.silentFallbackWarn\n : true;\n const fallbackRoot = isBoolean(options.fallbackRoot)\n ? options.fallbackRoot\n : true;\n const fallbackFormat = !!options.formatFallbackMessages;\n const modifiers = isPlainObject(options.modifiers) ? options.modifiers : {};\n const pluralizationRules = options.pluralizationRules;\n const postTranslation = isFunction(options.postTranslation)\n ? options.postTranslation\n : undefined;\n const warnHtmlMessage = isString(options.warnHtmlInMessage)\n ? options.warnHtmlInMessage !== 'off'\n : true;\n const escapeParameter = !!options.escapeParameterHtml;\n const inheritLocale = isBoolean(options.sync) ? options.sync : true;\n if ((process.env.NODE_ENV !== 'production') && options.formatter) {\n warn(getWarnMessage(I18nWarnCodes.NOT_SUPPORTED_FORMATTER));\n }\n if ((process.env.NODE_ENV !== 'production') && options.preserveDirectiveContent) {\n warn(getWarnMessage(I18nWarnCodes.NOT_SUPPORTED_PRESERVE_DIRECTIVE));\n }\n let messages = options.messages;\n if (isPlainObject(options.sharedMessages)) {\n const sharedMessages = options.sharedMessages;\n const locales = Object.keys(sharedMessages);\n messages = locales.reduce((messages, locale) => {\n const message = messages[locale] || (messages[locale] = {});\n assign(message, sharedMessages[locale]);\n return messages;\n }, (messages || {}));\n }\n const { __i18n, __root, __injectWithOption } = options;\n const datetimeFormats = options.datetimeFormats;\n const numberFormats = options.numberFormats;\n const flatJson = options.flatJson;\n return {\n locale,\n fallbackLocale,\n messages,\n flatJson,\n datetimeFormats,\n numberFormats,\n missing,\n missingWarn,\n fallbackWarn,\n fallbackRoot,\n fallbackFormat,\n modifiers,\n pluralRules: pluralizationRules,\n postTranslation,\n warnHtmlMessage,\n escapeParameter,\n messageResolver: options.messageResolver,\n inheritLocale,\n __i18n,\n __root,\n __injectWithOption\n };\n}\n/**\n * create VueI18n interface factory\n *\n * @internal\n */\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nfunction createVueI18n(options = {}, VueI18nLegacy) {\n {\n const composer = createComposer(convertComposerOptions(options));\n const { __extender } = options;\n // defines VueI18n\n const vueI18n = {\n // id\n id: composer.id,\n // locale\n get locale() {\n return composer.locale.value;\n },\n set locale(val) {\n composer.locale.value = val;\n },\n // fallbackLocale\n get fallbackLocale() {\n return composer.fallbackLocale.value;\n },\n set fallbackLocale(val) {\n composer.fallbackLocale.value = val;\n },\n // messages\n get messages() {\n return composer.messages.value;\n },\n // datetimeFormats\n get datetimeFormats() {\n return composer.datetimeFormats.value;\n },\n // numberFormats\n get numberFormats() {\n return composer.numberFormats.value;\n },\n // availableLocales\n get availableLocales() {\n return composer.availableLocales;\n },\n // formatter\n get formatter() {\n (process.env.NODE_ENV !== 'production') && warn(getWarnMessage(I18nWarnCodes.NOT_SUPPORTED_FORMATTER));\n // dummy\n return {\n interpolate() {\n return [];\n }\n };\n },\n set formatter(val) {\n (process.env.NODE_ENV !== 'production') && warn(getWarnMessage(I18nWarnCodes.NOT_SUPPORTED_FORMATTER));\n },\n // missing\n get missing() {\n return composer.getMissingHandler();\n },\n set missing(handler) {\n composer.setMissingHandler(handler);\n },\n // silentTranslationWarn\n get silentTranslationWarn() {\n return isBoolean(composer.missingWarn)\n ? !composer.missingWarn\n : composer.missingWarn;\n },\n set silentTranslationWarn(val) {\n composer.missingWarn = isBoolean(val) ? !val : val;\n },\n // silentFallbackWarn\n get silentFallbackWarn() {\n return isBoolean(composer.fallbackWarn)\n ? !composer.fallbackWarn\n : composer.fallbackWarn;\n },\n set silentFallbackWarn(val) {\n composer.fallbackWarn = isBoolean(val) ? !val : val;\n },\n // modifiers\n get modifiers() {\n return composer.modifiers;\n },\n // formatFallbackMessages\n get formatFallbackMessages() {\n return composer.fallbackFormat;\n },\n set formatFallbackMessages(val) {\n composer.fallbackFormat = val;\n },\n // postTranslation\n get postTranslation() {\n return composer.getPostTranslationHandler();\n },\n set postTranslation(handler) {\n composer.setPostTranslationHandler(handler);\n },\n // sync\n get sync() {\n return composer.inheritLocale;\n },\n set sync(val) {\n composer.inheritLocale = val;\n },\n // warnInHtmlMessage\n get warnHtmlInMessage() {\n return composer.warnHtmlMessage ? 'warn' : 'off';\n },\n set warnHtmlInMessage(val) {\n composer.warnHtmlMessage = val !== 'off';\n },\n // escapeParameterHtml\n get escapeParameterHtml() {\n return composer.escapeParameter;\n },\n set escapeParameterHtml(val) {\n composer.escapeParameter = val;\n },\n // preserveDirectiveContent\n get preserveDirectiveContent() {\n (process.env.NODE_ENV !== 'production') &&\n warn(getWarnMessage(I18nWarnCodes.NOT_SUPPORTED_PRESERVE_DIRECTIVE));\n return true;\n },\n set preserveDirectiveContent(val) {\n (process.env.NODE_ENV !== 'production') &&\n warn(getWarnMessage(I18nWarnCodes.NOT_SUPPORTED_PRESERVE_DIRECTIVE));\n },\n // pluralizationRules\n get pluralizationRules() {\n return composer.pluralRules || {};\n },\n // for internal\n __composer: composer,\n // t\n t(...args) {\n const [arg1, arg2, arg3] = args;\n const options = {};\n let list = null;\n let named = null;\n if (!isString(arg1)) {\n throw createI18nError(I18nErrorCodes.INVALID_ARGUMENT);\n }\n const key = arg1;\n if (isString(arg2)) {\n options.locale = arg2;\n }\n else if (isArray(arg2)) {\n list = arg2;\n }\n else if (isPlainObject(arg2)) {\n named = arg2;\n }\n if (isArray(arg3)) {\n list = arg3;\n }\n else if (isPlainObject(arg3)) {\n named = arg3;\n }\n // return composer.t(key, (list || named || {}) as any, options)\n return Reflect.apply(composer.t, composer, [\n key,\n (list || named || {}),\n options\n ]);\n },\n rt(...args) {\n return Reflect.apply(composer.rt, composer, [...args]);\n },\n // tc\n tc(...args) {\n const [arg1, arg2, arg3] = args;\n const options = { plural: 1 };\n let list = null;\n let named = null;\n if (!isString(arg1)) {\n throw createI18nError(I18nErrorCodes.INVALID_ARGUMENT);\n }\n const key = arg1;\n if (isString(arg2)) {\n options.locale = arg2;\n }\n else if (isNumber(arg2)) {\n options.plural = arg2;\n }\n else if (isArray(arg2)) {\n list = arg2;\n }\n else if (isPlainObject(arg2)) {\n named = arg2;\n }\n if (isString(arg3)) {\n options.locale = arg3;\n }\n else if (isArray(arg3)) {\n list = arg3;\n }\n else if (isPlainObject(arg3)) {\n named = arg3;\n }\n // return composer.t(key, (list || named || {}) as any, options)\n return Reflect.apply(composer.t, composer, [\n key,\n (list || named || {}),\n options\n ]);\n },\n // te\n te(key, locale) {\n return composer.te(key, locale);\n },\n // tm\n tm(key) {\n return composer.tm(key);\n },\n // getLocaleMessage\n getLocaleMessage(locale) {\n return composer.getLocaleMessage(locale);\n },\n // setLocaleMessage\n setLocaleMessage(locale, message) {\n composer.setLocaleMessage(locale, message);\n },\n // mergeLocaleMessage\n mergeLocaleMessage(locale, message) {\n composer.mergeLocaleMessage(locale, message);\n },\n // d\n d(...args) {\n return Reflect.apply(composer.d, composer, [...args]);\n },\n // getDateTimeFormat\n getDateTimeFormat(locale) {\n return composer.getDateTimeFormat(locale);\n },\n // setDateTimeFormat\n setDateTimeFormat(locale, format) {\n composer.setDateTimeFormat(locale, format);\n },\n // mergeDateTimeFormat\n mergeDateTimeFormat(locale, format) {\n composer.mergeDateTimeFormat(locale, format);\n },\n // n\n n(...args) {\n return Reflect.apply(composer.n, composer, [...args]);\n },\n // getNumberFormat\n getNumberFormat(locale) {\n return composer.getNumberFormat(locale);\n },\n // setNumberFormat\n setNumberFormat(locale, format) {\n composer.setNumberFormat(locale, format);\n },\n // mergeNumberFormat\n mergeNumberFormat(locale, format) {\n composer.mergeNumberFormat(locale, format);\n },\n // getChoiceIndex\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n getChoiceIndex(choice, choicesLength) {\n (process.env.NODE_ENV !== 'production') &&\n warn(getWarnMessage(I18nWarnCodes.NOT_SUPPORTED_GET_CHOICE_INDEX));\n return -1;\n }\n };\n vueI18n.__extender = __extender;\n // for vue-devtools timeline event\n if ((process.env.NODE_ENV !== 'production')) {\n vueI18n.__enableEmitter = (emitter) => {\n const __composer = composer;\n __composer[EnableEmitter] && __composer[EnableEmitter](emitter);\n };\n vueI18n.__disableEmitter = () => {\n const __composer = composer;\n __composer[DisableEmitter] && __composer[DisableEmitter]();\n };\n }\n return vueI18n;\n }\n}\n/* eslint-enable @typescript-eslint/no-explicit-any */\n\nconst baseFormatProps = {\n tag: {\n type: [String, Object]\n },\n locale: {\n type: String\n },\n scope: {\n type: String,\n // NOTE: avoid https://github.com/microsoft/rushstack/issues/1050\n validator: (val /* ComponentI18nScope */) => val === 'parent' || val === 'global',\n default: 'parent' /* ComponentI18nScope */\n },\n i18n: {\n type: Object\n }\n};\n\nfunction getInterpolateArg(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\n{ slots }, // SetupContext,\nkeys) {\n if (keys.length === 1 && keys[0] === 'default') {\n // default slot with list\n const ret = slots.default ? slots.default() : [];\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return ret.reduce((slot, current) => {\n return [\n ...slot,\n // prettier-ignore\n ...(current.type === Fragment ? current.children : [current]\n )\n ];\n }, []);\n }\n else {\n // named slots\n return keys.reduce((arg, key) => {\n const slot = slots[key];\n if (slot) {\n arg[key] = slot();\n }\n return arg;\n }, {});\n }\n}\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction getFragmentableTag(tag) {\n return Fragment ;\n}\n\nconst TranslationImpl = /*#__PURE__*/ defineComponent({\n /* eslint-disable */\n name: 'i18n-t',\n props: assign({\n keypath: {\n type: String,\n required: true\n },\n plural: {\n type: [Number, String],\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n validator: (val) => isNumber(val) || !isNaN(val)\n }\n }, baseFormatProps),\n /* eslint-enable */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n setup(props, context) {\n const { slots, attrs } = context;\n // NOTE: avoid https://github.com/microsoft/rushstack/issues/1050\n const i18n = props.i18n ||\n useI18n({\n useScope: props.scope,\n __useComponent: true\n });\n return () => {\n const keys = Object.keys(slots).filter(key => key !== '_');\n const options = {};\n if (props.locale) {\n options.locale = props.locale;\n }\n if (props.plural !== undefined) {\n options.plural = isString(props.plural) ? +props.plural : props.plural;\n }\n const arg = getInterpolateArg(context, keys);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const children = i18n[TranslateVNodeSymbol](props.keypath, arg, options);\n const assignedAttrs = assign({}, attrs);\n const tag = isString(props.tag) || isObject(props.tag)\n ? props.tag\n : getFragmentableTag();\n return h(tag, assignedAttrs, children);\n };\n }\n});\n/**\n * export the public type for h/tsx inference\n * also to avoid inline import() in generated d.ts files\n */\n/**\n * Translation Component\n *\n * @remarks\n * See the following items for property about details\n *\n * @VueI18nSee [TranslationProps](component#translationprops)\n * @VueI18nSee [BaseFormatProps](component#baseformatprops)\n * @VueI18nSee [Component Interpolation](../guide/advanced/component)\n *\n * @example\n * ```html\n *
\n * \n * \n * {{ $t('tos') }}\n * \n * \n *
\n * ```\n * ```js\n * import { createApp } from 'vue'\n * import { createI18n } from 'vue-i18n'\n *\n * const messages = {\n * en: {\n * tos: 'Term of Service',\n * term: 'I accept xxx {0}.'\n * },\n * ja: {\n * tos: 'ๅˆฉ็”จ่ฆ็ด„',\n * term: '็งใฏ xxx ใฎ{0}ใซๅŒๆ„ใ—ใพใ™ใ€‚'\n * }\n * }\n *\n * const i18n = createI18n({\n * locale: 'en',\n * messages\n * })\n *\n * const app = createApp({\n * data: {\n * url: '/term'\n * }\n * }).use(i18n).mount('#app')\n * ```\n *\n * @VueI18nComponent\n */\nconst Translation = TranslationImpl;\nconst I18nT = Translation;\n\nfunction isVNode(target) {\n return isArray(target) && !isString(target[0]);\n}\nfunction renderFormatter(props, context, slotKeys, partFormatter) {\n const { slots, attrs } = context;\n return () => {\n const options = { part: true };\n let overrides = {};\n if (props.locale) {\n options.locale = props.locale;\n }\n if (isString(props.format)) {\n options.key = props.format;\n }\n else if (isObject(props.format)) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n if (isString(props.format.key)) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n options.key = props.format.key;\n }\n // Filter out number format options only\n overrides = Object.keys(props.format).reduce((options, prop) => {\n return slotKeys.includes(prop)\n ? assign({}, options, { [prop]: props.format[prop] }) // eslint-disable-line @typescript-eslint/no-explicit-any\n : options;\n }, {});\n }\n const parts = partFormatter(...[props.value, options, overrides]);\n let children = [options.key];\n if (isArray(parts)) {\n children = parts.map((part, index) => {\n const slot = slots[part.type];\n const node = slot\n ? slot({ [part.type]: part.value, index, parts })\n : [part.value];\n if (isVNode(node)) {\n node[0].key = `${part.type}-${index}`;\n }\n return node;\n });\n }\n else if (isString(parts)) {\n children = [parts];\n }\n const assignedAttrs = assign({}, attrs);\n const tag = isString(props.tag) || isObject(props.tag)\n ? props.tag\n : getFragmentableTag();\n return h(tag, assignedAttrs, children);\n };\n}\n\nconst NumberFormatImpl = /*#__PURE__*/ defineComponent({\n /* eslint-disable */\n name: 'i18n-n',\n props: assign({\n value: {\n type: Number,\n required: true\n },\n format: {\n type: [String, Object]\n }\n }, baseFormatProps),\n /* eslint-enable */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n setup(props, context) {\n const i18n = props.i18n ||\n useI18n({\n useScope: 'parent',\n __useComponent: true\n });\n return renderFormatter(props, context, NUMBER_FORMAT_OPTIONS_KEYS, (...args) => \n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n i18n[NumberPartsSymbol](...args));\n }\n});\n/**\n * export the public type for h/tsx inference\n * also to avoid inline import() in generated d.ts files\n */\n/**\n * Number Format Component\n *\n * @remarks\n * See the following items for property about details\n *\n * @VueI18nSee [FormattableProps](component#formattableprops)\n * @VueI18nSee [BaseFormatProps](component#baseformatprops)\n * @VueI18nSee [Custom Formatting](../guide/essentials/number#custom-formatting)\n *\n * @VueI18nDanger\n * Not supported IE, due to no support `Intl.NumberFormat#formatToParts` in [IE](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatToParts)\n *\n * If you want to use it, you need to use [polyfill](https://github.com/formatjs/formatjs/tree/main/packages/intl-numberformat)\n *\n * @VueI18nComponent\n */\nconst NumberFormat = NumberFormatImpl;\nconst I18nN = NumberFormat;\n\nconst DatetimeFormatImpl = /* #__PURE__*/ defineComponent({\n /* eslint-disable */\n name: 'i18n-d',\n props: assign({\n value: {\n type: [Number, Date],\n required: true\n },\n format: {\n type: [String, Object]\n }\n }, baseFormatProps),\n /* eslint-enable */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n setup(props, context) {\n const i18n = props.i18n ||\n useI18n({\n useScope: 'parent',\n __useComponent: true\n });\n return renderFormatter(props, context, DATETIME_FORMAT_OPTIONS_KEYS, (...args) => \n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n i18n[DatetimePartsSymbol](...args));\n }\n});\n/**\n * Datetime Format Component\n *\n * @remarks\n * See the following items for property about details\n *\n * @VueI18nSee [FormattableProps](component#formattableprops)\n * @VueI18nSee [BaseFormatProps](component#baseformatprops)\n * @VueI18nSee [Custom Formatting](../guide/essentials/datetime#custom-formatting)\n *\n * @VueI18nDanger\n * Not supported IE, due to no support `Intl.DateTimeFormat#formatToParts` in [IE](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/formatToParts)\n *\n * If you want to use it, you need to use [polyfill](https://github.com/formatjs/formatjs/tree/main/packages/intl-datetimeformat)\n *\n * @VueI18nComponent\n */\nconst DatetimeFormat = DatetimeFormatImpl;\nconst I18nD = DatetimeFormat;\n\nfunction getComposer$2(i18n, instance) {\n const i18nInternal = i18n;\n if (i18n.mode === 'composition') {\n return (i18nInternal.__getInstance(instance) || i18n.global);\n }\n else {\n const vueI18n = i18nInternal.__getInstance(instance);\n return vueI18n != null\n ? vueI18n.__composer\n : i18n.global.__composer;\n }\n}\nfunction vTDirective(i18n) {\n const _process = (binding) => {\n const { instance, modifiers, value } = binding;\n /* istanbul ignore if */\n if (!instance || !instance.$) {\n throw createI18nError(I18nErrorCodes.UNEXPECTED_ERROR);\n }\n const composer = getComposer$2(i18n, instance.$);\n if ((process.env.NODE_ENV !== 'production') && modifiers.preserve) {\n warn(getWarnMessage(I18nWarnCodes.NOT_SUPPORTED_PRESERVE));\n }\n const parsedValue = parseValue(value);\n return [\n Reflect.apply(composer.t, composer, [...makeParams(parsedValue)]),\n composer\n ];\n };\n const register = (el, binding) => {\n const [textContent, composer] = _process(binding);\n if (inBrowser && i18n.global === composer) {\n // global scope only\n el.__i18nWatcher = watch(composer.locale, () => {\n binding.instance && binding.instance.$forceUpdate();\n });\n }\n el.__composer = composer;\n el.textContent = textContent;\n };\n const unregister = (el) => {\n if (inBrowser && el.__i18nWatcher) {\n el.__i18nWatcher();\n el.__i18nWatcher = undefined;\n delete el.__i18nWatcher;\n }\n if (el.__composer) {\n el.__composer = undefined;\n delete el.__composer;\n }\n };\n const update = (el, { value }) => {\n if (el.__composer) {\n const composer = el.__composer;\n const parsedValue = parseValue(value);\n el.textContent = Reflect.apply(composer.t, composer, [\n ...makeParams(parsedValue)\n ]);\n }\n };\n const getSSRProps = (binding) => {\n const [textContent] = _process(binding);\n return { textContent };\n };\n return {\n created: register,\n unmounted: unregister,\n beforeUpdate: update,\n getSSRProps\n };\n}\nfunction parseValue(value) {\n if (isString(value)) {\n return { path: value };\n }\n else if (isPlainObject(value)) {\n if (!('path' in value)) {\n throw createI18nError(I18nErrorCodes.REQUIRED_VALUE, 'path');\n }\n return value;\n }\n else {\n throw createI18nError(I18nErrorCodes.INVALID_VALUE);\n }\n}\nfunction makeParams(value) {\n const { path, locale, args, choice, plural } = value;\n const options = {};\n const named = args || {};\n if (isString(locale)) {\n options.locale = locale;\n }\n if (isNumber(choice)) {\n options.plural = choice;\n }\n if (isNumber(plural)) {\n options.plural = plural;\n }\n return [path, named, options];\n}\n\nfunction apply(app, i18n, ...options) {\n const pluginOptions = isPlainObject(options[0])\n ? options[0]\n : {};\n const useI18nComponentName = !!pluginOptions.useI18nComponentName;\n const globalInstall = isBoolean(pluginOptions.globalInstall)\n ? pluginOptions.globalInstall\n : true;\n if ((process.env.NODE_ENV !== 'production') && globalInstall && useI18nComponentName) {\n warn(getWarnMessage(I18nWarnCodes.COMPONENT_NAME_LEGACY_COMPATIBLE, {\n name: Translation.name\n }));\n }\n if (globalInstall) {\n [!useI18nComponentName ? Translation.name : 'i18n', 'I18nT'].forEach(name => app.component(name, Translation));\n [NumberFormat.name, 'I18nN'].forEach(name => app.component(name, NumberFormat));\n [DatetimeFormat.name, 'I18nD'].forEach(name => app.component(name, DatetimeFormat));\n }\n // install directive\n {\n app.directive('t', vTDirective(i18n));\n }\n}\n\nconst VueDevToolsLabels = {\n [\"vue-devtools-plugin-vue-i18n\" /* VueDevToolsIDs.PLUGIN */]: 'Vue I18n devtools',\n [\"vue-i18n-resource-inspector\" /* VueDevToolsIDs.CUSTOM_INSPECTOR */]: 'I18n Resources',\n [\"vue-i18n-timeline\" /* VueDevToolsIDs.TIMELINE */]: 'Vue I18n'\n};\nconst VueDevToolsPlaceholders = {\n [\"vue-i18n-resource-inspector\" /* VueDevToolsIDs.CUSTOM_INSPECTOR */]: 'Search for scopes ...'\n};\nconst VueDevToolsTimelineColors = {\n [\"vue-i18n-timeline\" /* VueDevToolsIDs.TIMELINE */]: 0xffcd19\n};\n\nconst VUE_I18N_COMPONENT_TYPES = 'vue-i18n: composer properties';\nlet devtoolsApi;\nasync function enableDevTools(app, i18n) {\n return new Promise((resolve, reject) => {\n try {\n setupDevtoolsPlugin({\n id: \"vue-devtools-plugin-vue-i18n\" /* VueDevToolsIDs.PLUGIN */,\n label: VueDevToolsLabels[\"vue-devtools-plugin-vue-i18n\" /* VueDevToolsIDs.PLUGIN */],\n packageName: 'vue-i18n',\n homepage: 'https://vue-i18n.intlify.dev',\n logo: 'https://vue-i18n.intlify.dev/vue-i18n-devtools-logo.png',\n componentStateTypes: [VUE_I18N_COMPONENT_TYPES],\n app: app // eslint-disable-line @typescript-eslint/no-explicit-any\n }, api => {\n devtoolsApi = api;\n api.on.visitComponentTree(({ componentInstance, treeNode }) => {\n updateComponentTreeTags(componentInstance, treeNode, i18n);\n });\n api.on.inspectComponent(({ componentInstance, instanceData }) => {\n if (componentInstance.vnode.el &&\n componentInstance.vnode.el.__VUE_I18N__ &&\n instanceData) {\n if (i18n.mode === 'legacy') {\n // ignore global scope on legacy mode\n if (componentInstance.vnode.el.__VUE_I18N__ !==\n i18n.global.__composer) {\n inspectComposer(instanceData, componentInstance.vnode.el.__VUE_I18N__);\n }\n }\n else {\n inspectComposer(instanceData, componentInstance.vnode.el.__VUE_I18N__);\n }\n }\n });\n api.addInspector({\n id: \"vue-i18n-resource-inspector\" /* VueDevToolsIDs.CUSTOM_INSPECTOR */,\n label: VueDevToolsLabels[\"vue-i18n-resource-inspector\" /* VueDevToolsIDs.CUSTOM_INSPECTOR */],\n icon: 'language',\n treeFilterPlaceholder: VueDevToolsPlaceholders[\"vue-i18n-resource-inspector\" /* VueDevToolsIDs.CUSTOM_INSPECTOR */]\n });\n api.on.getInspectorTree(payload => {\n if (payload.app === app &&\n payload.inspectorId === \"vue-i18n-resource-inspector\" /* VueDevToolsIDs.CUSTOM_INSPECTOR */) {\n registerScope(payload, i18n);\n }\n });\n const roots = new Map();\n api.on.getInspectorState(async (payload) => {\n if (payload.app === app &&\n payload.inspectorId === \"vue-i18n-resource-inspector\" /* VueDevToolsIDs.CUSTOM_INSPECTOR */) {\n api.unhighlightElement();\n inspectScope(payload, i18n);\n if (payload.nodeId === 'global') {\n if (!roots.has(payload.app)) {\n const [root] = await api.getComponentInstances(payload.app);\n roots.set(payload.app, root);\n }\n api.highlightElement(roots.get(payload.app));\n }\n else {\n const instance = getComponentInstance(payload.nodeId, i18n);\n instance && api.highlightElement(instance);\n }\n }\n });\n api.on.editInspectorState(payload => {\n if (payload.app === app &&\n payload.inspectorId === \"vue-i18n-resource-inspector\" /* VueDevToolsIDs.CUSTOM_INSPECTOR */) {\n editScope(payload, i18n);\n }\n });\n api.addTimelineLayer({\n id: \"vue-i18n-timeline\" /* VueDevToolsIDs.TIMELINE */,\n label: VueDevToolsLabels[\"vue-i18n-timeline\" /* VueDevToolsIDs.TIMELINE */],\n color: VueDevToolsTimelineColors[\"vue-i18n-timeline\" /* VueDevToolsIDs.TIMELINE */]\n });\n resolve(true);\n });\n }\n catch (e) {\n console.error(e);\n reject(false);\n }\n });\n}\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction getI18nScopeLable(instance) {\n return (instance.type.name ||\n instance.type.displayName ||\n instance.type.__file ||\n 'Anonymous');\n}\nfunction updateComponentTreeTags(instance, // eslint-disable-line @typescript-eslint/no-explicit-any\ntreeNode, i18n) {\n // prettier-ignore\n const global = i18n.mode === 'composition'\n ? i18n.global\n : i18n.global.__composer;\n if (instance && instance.vnode.el && instance.vnode.el.__VUE_I18N__) {\n // add custom tags local scope only\n if (instance.vnode.el.__VUE_I18N__ !== global) {\n const tag = {\n label: `i18n (${getI18nScopeLable(instance)} Scope)`,\n textColor: 0x000000,\n backgroundColor: 0xffcd19\n };\n treeNode.tags.push(tag);\n }\n }\n}\nfunction inspectComposer(instanceData, composer) {\n const type = VUE_I18N_COMPONENT_TYPES;\n instanceData.state.push({\n type,\n key: 'locale',\n editable: true,\n value: composer.locale.value\n });\n instanceData.state.push({\n type,\n key: 'availableLocales',\n editable: false,\n value: composer.availableLocales\n });\n instanceData.state.push({\n type,\n key: 'fallbackLocale',\n editable: true,\n value: composer.fallbackLocale.value\n });\n instanceData.state.push({\n type,\n key: 'inheritLocale',\n editable: true,\n value: composer.inheritLocale\n });\n instanceData.state.push({\n type,\n key: 'messages',\n editable: false,\n value: getLocaleMessageValue(composer.messages.value)\n });\n {\n instanceData.state.push({\n type,\n key: 'datetimeFormats',\n editable: false,\n value: composer.datetimeFormats.value\n });\n instanceData.state.push({\n type,\n key: 'numberFormats',\n editable: false,\n value: composer.numberFormats.value\n });\n }\n}\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction getLocaleMessageValue(messages) {\n const value = {};\n Object.keys(messages).forEach((key) => {\n const v = messages[key];\n if (isFunction(v) && 'source' in v) {\n value[key] = getMessageFunctionDetails(v);\n }\n else if (isMessageAST(v) && v.loc && v.loc.source) {\n value[key] = v.loc.source;\n }\n else if (isObject(v)) {\n value[key] = getLocaleMessageValue(v);\n }\n else {\n value[key] = v;\n }\n });\n return value;\n}\nconst ESC = {\n '<': '<',\n '>': '>',\n '\"': '"',\n '&': '&'\n};\nfunction escape(s) {\n return s.replace(/[<>\"&]/g, escapeChar);\n}\nfunction escapeChar(a) {\n return ESC[a] || a;\n}\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction getMessageFunctionDetails(func) {\n const argString = func.source ? `(\"${escape(func.source)}\")` : `(?)`;\n return {\n _custom: {\n type: 'function',\n display: `ฦ’ ${argString}`\n }\n };\n}\nfunction registerScope(payload, i18n) {\n payload.rootNodes.push({\n id: 'global',\n label: 'Global Scope'\n });\n // prettier-ignore\n const global = i18n.mode === 'composition'\n ? i18n.global\n : i18n.global.__composer;\n for (const [keyInstance, instance] of i18n.__instances) {\n // prettier-ignore\n const composer = i18n.mode === 'composition'\n ? instance\n : instance.__composer;\n if (global === composer) {\n continue;\n }\n payload.rootNodes.push({\n id: composer.id.toString(),\n label: `${getI18nScopeLable(keyInstance)} Scope`\n });\n }\n}\nfunction getComponentInstance(nodeId, i18n) {\n let instance = null;\n if (nodeId !== 'global') {\n for (const [component, composer] of i18n.__instances.entries()) {\n if (composer.id.toString() === nodeId) {\n instance = component;\n break;\n }\n }\n }\n return instance;\n}\nfunction getComposer$1(nodeId, i18n) {\n if (nodeId === 'global') {\n return i18n.mode === 'composition'\n ? i18n.global\n : i18n.global.__composer;\n }\n else {\n const instance = Array.from(i18n.__instances.values()).find(item => item.id.toString() === nodeId);\n if (instance) {\n return i18n.mode === 'composition'\n ? instance\n : instance.__composer;\n }\n else {\n return null;\n }\n }\n}\nfunction inspectScope(payload, i18n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\n) {\n const composer = getComposer$1(payload.nodeId, i18n);\n if (composer) {\n // TODO:\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n payload.state = makeScopeInspectState(composer);\n }\n return null;\n}\nfunction makeScopeInspectState(composer) {\n const state = {};\n const localeType = 'Locale related info';\n const localeStates = [\n {\n type: localeType,\n key: 'locale',\n editable: true,\n value: composer.locale.value\n },\n {\n type: localeType,\n key: 'fallbackLocale',\n editable: true,\n value: composer.fallbackLocale.value\n },\n {\n type: localeType,\n key: 'availableLocales',\n editable: false,\n value: composer.availableLocales\n },\n {\n type: localeType,\n key: 'inheritLocale',\n editable: true,\n value: composer.inheritLocale\n }\n ];\n state[localeType] = localeStates;\n const localeMessagesType = 'Locale messages info';\n const localeMessagesStates = [\n {\n type: localeMessagesType,\n key: 'messages',\n editable: false,\n value: getLocaleMessageValue(composer.messages.value)\n }\n ];\n state[localeMessagesType] = localeMessagesStates;\n {\n const datetimeFormatsType = 'Datetime formats info';\n const datetimeFormatsStates = [\n {\n type: datetimeFormatsType,\n key: 'datetimeFormats',\n editable: false,\n value: composer.datetimeFormats.value\n }\n ];\n state[datetimeFormatsType] = datetimeFormatsStates;\n const numberFormatsType = 'Datetime formats info';\n const numberFormatsStates = [\n {\n type: numberFormatsType,\n key: 'numberFormats',\n editable: false,\n value: composer.numberFormats.value\n }\n ];\n state[numberFormatsType] = numberFormatsStates;\n }\n return state;\n}\nfunction addTimelineEvent(event, payload) {\n if (devtoolsApi) {\n let groupId;\n if (payload && 'groupId' in payload) {\n groupId = payload.groupId;\n delete payload.groupId;\n }\n devtoolsApi.addTimelineEvent({\n layerId: \"vue-i18n-timeline\" /* VueDevToolsIDs.TIMELINE */,\n event: {\n title: event,\n groupId,\n time: Date.now(),\n meta: {},\n data: payload || {},\n logType: event === \"compile-error\" /* VueDevToolsTimelineEvents.COMPILE_ERROR */\n ? 'error'\n : event === \"fallback\" /* VueDevToolsTimelineEvents.FALBACK */ ||\n event === \"missing\" /* VueDevToolsTimelineEvents.MISSING */\n ? 'warning'\n : 'default'\n }\n });\n }\n}\nfunction editScope(payload, i18n) {\n const composer = getComposer$1(payload.nodeId, i18n);\n if (composer) {\n const [field] = payload.path;\n if (field === 'locale' && isString(payload.state.value)) {\n composer.locale.value = payload.state.value;\n }\n else if (field === 'fallbackLocale' &&\n (isString(payload.state.value) ||\n isArray(payload.state.value) ||\n isObject(payload.state.value))) {\n composer.fallbackLocale.value = payload.state.value;\n }\n else if (field === 'inheritLocale' && isBoolean(payload.state.value)) {\n composer.inheritLocale = payload.state.value;\n }\n }\n}\n\n/**\n * Supports compatibility for legacy vue-i18n APIs\n * This mixin is used when we use vue-i18n@v9.x or later\n */\nfunction defineMixin(vuei18n, composer, i18n) {\n return {\n beforeCreate() {\n const instance = getCurrentInstance();\n /* istanbul ignore if */\n if (!instance) {\n throw createI18nError(I18nErrorCodes.UNEXPECTED_ERROR);\n }\n const options = this.$options;\n if (options.i18n) {\n const optionsI18n = options.i18n;\n if (options.__i18n) {\n optionsI18n.__i18n = options.__i18n;\n }\n optionsI18n.__root = composer;\n if (this === this.$root) {\n // merge option and gttach global\n this.$i18n = mergeToGlobal(vuei18n, optionsI18n);\n }\n else {\n optionsI18n.__injectWithOption = true;\n optionsI18n.__extender = i18n.__vueI18nExtend;\n // atttach local VueI18n instance\n this.$i18n = createVueI18n(optionsI18n);\n // extend VueI18n instance\n const _vueI18n = this.$i18n;\n if (_vueI18n.__extender) {\n _vueI18n.__disposer = _vueI18n.__extender(this.$i18n);\n }\n }\n }\n else if (options.__i18n) {\n if (this === this.$root) {\n // merge option and gttach global\n this.$i18n = mergeToGlobal(vuei18n, options);\n }\n else {\n // atttach local VueI18n instance\n this.$i18n = createVueI18n({\n __i18n: options.__i18n,\n __injectWithOption: true,\n __extender: i18n.__vueI18nExtend,\n __root: composer\n });\n // extend VueI18n instance\n const _vueI18n = this.$i18n;\n if (_vueI18n.__extender) {\n _vueI18n.__disposer = _vueI18n.__extender(this.$i18n);\n }\n }\n }\n else {\n // attach global VueI18n instance\n this.$i18n = vuei18n;\n }\n if (options.__i18nGlobal) {\n adjustI18nResources(composer, options, options);\n }\n // defines vue-i18n legacy APIs\n this.$t = (...args) => this.$i18n.t(...args);\n this.$rt = (...args) => this.$i18n.rt(...args);\n this.$tc = (...args) => this.$i18n.tc(...args);\n this.$te = (key, locale) => this.$i18n.te(key, locale);\n this.$d = (...args) => this.$i18n.d(...args);\n this.$n = (...args) => this.$i18n.n(...args);\n this.$tm = (key) => this.$i18n.tm(key);\n i18n.__setInstance(instance, this.$i18n);\n },\n mounted() {\n /* istanbul ignore if */\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) &&\n !false &&\n this.$el &&\n this.$i18n) {\n const _vueI18n = this.$i18n;\n this.$el.__VUE_I18N__ = _vueI18n.__composer;\n const emitter = (this.__v_emitter =\n createEmitter());\n _vueI18n.__enableEmitter && _vueI18n.__enableEmitter(emitter);\n emitter.on('*', addTimelineEvent);\n }\n },\n unmounted() {\n const instance = getCurrentInstance();\n /* istanbul ignore if */\n if (!instance) {\n throw createI18nError(I18nErrorCodes.UNEXPECTED_ERROR);\n }\n const _vueI18n = this.$i18n;\n /* istanbul ignore if */\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) &&\n !false &&\n this.$el &&\n this.$el.__VUE_I18N__) {\n if (this.__v_emitter) {\n this.__v_emitter.off('*', addTimelineEvent);\n delete this.__v_emitter;\n }\n if (this.$i18n) {\n _vueI18n.__disableEmitter && _vueI18n.__disableEmitter();\n delete this.$el.__VUE_I18N__;\n }\n }\n delete this.$t;\n delete this.$rt;\n delete this.$tc;\n delete this.$te;\n delete this.$d;\n delete this.$n;\n delete this.$tm;\n if (_vueI18n.__disposer) {\n _vueI18n.__disposer();\n delete _vueI18n.__disposer;\n delete _vueI18n.__extender;\n }\n i18n.__deleteInstance(instance);\n delete this.$i18n;\n }\n };\n}\nfunction mergeToGlobal(g, options) {\n g.locale = options.locale || g.locale;\n g.fallbackLocale = options.fallbackLocale || g.fallbackLocale;\n g.missing = options.missing || g.missing;\n g.silentTranslationWarn =\n options.silentTranslationWarn || g.silentFallbackWarn;\n g.silentFallbackWarn = options.silentFallbackWarn || g.silentFallbackWarn;\n g.formatFallbackMessages =\n options.formatFallbackMessages || g.formatFallbackMessages;\n g.postTranslation = options.postTranslation || g.postTranslation;\n g.warnHtmlInMessage = options.warnHtmlInMessage || g.warnHtmlInMessage;\n g.escapeParameterHtml = options.escapeParameterHtml || g.escapeParameterHtml;\n g.sync = options.sync || g.sync;\n g.__composer[SetPluralRulesSymbol](options.pluralizationRules || g.pluralizationRules);\n const messages = getLocaleMessages(g.locale, {\n messages: options.messages,\n __i18n: options.__i18n\n });\n Object.keys(messages).forEach(locale => g.mergeLocaleMessage(locale, messages[locale]));\n if (options.datetimeFormats) {\n Object.keys(options.datetimeFormats).forEach(locale => g.mergeDateTimeFormat(locale, options.datetimeFormats[locale]));\n }\n if (options.numberFormats) {\n Object.keys(options.numberFormats).forEach(locale => g.mergeNumberFormat(locale, options.numberFormats[locale]));\n }\n return g;\n}\n\n/**\n * Injection key for {@link useI18n}\n *\n * @remarks\n * The global injection key for I18n instances with `useI18n`. this injection key is used in Web Components.\n * Specify the i18n instance created by {@link createI18n} together with `provide` function.\n *\n * @VueI18nGeneral\n */\nconst I18nInjectionKey = \n/* #__PURE__*/ makeSymbol('global-vue-i18n');\n// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/explicit-module-boundary-types\nfunction createI18n(options = {}, VueI18nLegacy) {\n // prettier-ignore\n const __legacyMode = __VUE_I18N_LEGACY_API__ && isBoolean(options.legacy)\n ? options.legacy\n : __VUE_I18N_LEGACY_API__;\n // prettier-ignore\n const __globalInjection = isBoolean(options.globalInjection)\n ? options.globalInjection\n : true;\n // prettier-ignore\n const __allowComposition = __VUE_I18N_LEGACY_API__ && __legacyMode\n ? !!options.allowComposition\n : true;\n const __instances = new Map();\n const [globalScope, __global] = createGlobal(options, __legacyMode);\n const symbol = /* #__PURE__*/ makeSymbol((process.env.NODE_ENV !== 'production') ? 'vue-i18n' : '');\n if ((process.env.NODE_ENV !== 'production')) {\n if (__legacyMode && __allowComposition && !false) {\n warn(getWarnMessage(I18nWarnCodes.NOTICE_DROP_ALLOW_COMPOSITION));\n }\n }\n function __getInstance(component) {\n return __instances.get(component) || null;\n }\n function __setInstance(component, instance) {\n __instances.set(component, instance);\n }\n function __deleteInstance(component) {\n __instances.delete(component);\n }\n {\n const i18n = {\n // mode\n get mode() {\n return __VUE_I18N_LEGACY_API__ && __legacyMode\n ? 'legacy'\n : 'composition';\n },\n // allowComposition\n get allowComposition() {\n return __allowComposition;\n },\n // install plugin\n async install(app, ...options) {\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) &&\n !false) {\n app.__VUE_I18N__ = i18n;\n }\n // setup global provider\n app.__VUE_I18N_SYMBOL__ = symbol;\n app.provide(app.__VUE_I18N_SYMBOL__, i18n);\n // set composer & vuei18n extend hook options from plugin options\n if (isPlainObject(options[0])) {\n const opts = options[0];\n i18n.__composerExtend =\n opts.__composerExtend;\n i18n.__vueI18nExtend =\n opts.__vueI18nExtend;\n }\n // global method and properties injection for Composition API\n let globalReleaseHandler = null;\n if (!__legacyMode && __globalInjection) {\n globalReleaseHandler = injectGlobalFields(app, i18n.global);\n }\n // install built-in components and directive\n if (__VUE_I18N_FULL_INSTALL__) {\n apply(app, i18n, ...options);\n }\n // setup mixin for Legacy API\n if (__VUE_I18N_LEGACY_API__ && __legacyMode) {\n app.mixin(defineMixin(__global, __global.__composer, i18n));\n }\n // release global scope\n const unmountApp = app.unmount;\n app.unmount = () => {\n globalReleaseHandler && globalReleaseHandler();\n i18n.dispose();\n unmountApp();\n };\n // setup vue-devtools plugin\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) && !false) {\n const ret = await enableDevTools(app, i18n);\n if (!ret) {\n throw createI18nError(I18nErrorCodes.CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN);\n }\n const emitter = createEmitter();\n if (__legacyMode) {\n const _vueI18n = __global;\n _vueI18n.__enableEmitter && _vueI18n.__enableEmitter(emitter);\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const _composer = __global;\n _composer[EnableEmitter] && _composer[EnableEmitter](emitter);\n }\n emitter.on('*', addTimelineEvent);\n }\n },\n // global accessor\n get global() {\n return __global;\n },\n dispose() {\n globalScope.stop();\n },\n // @internal\n __instances,\n // @internal\n __getInstance,\n // @internal\n __setInstance,\n // @internal\n __deleteInstance\n };\n return i18n;\n }\n}\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nfunction useI18n(options = {}) {\n const instance = getCurrentInstance();\n if (instance == null) {\n throw createI18nError(I18nErrorCodes.MUST_BE_CALL_SETUP_TOP);\n }\n if (!instance.isCE &&\n instance.appContext.app != null &&\n !instance.appContext.app.__VUE_I18N_SYMBOL__) {\n throw createI18nError(I18nErrorCodes.NOT_INSTALLED);\n }\n const i18n = getI18nInstance(instance);\n const gl = getGlobalComposer(i18n);\n const componentOptions = getComponentOptions(instance);\n const scope = getScope(options, componentOptions);\n if (__VUE_I18N_LEGACY_API__) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n if (i18n.mode === 'legacy' && !options.__useComponent) {\n if (!i18n.allowComposition) {\n throw createI18nError(I18nErrorCodes.NOT_AVAILABLE_IN_LEGACY_MODE);\n }\n return useI18nForLegacy(instance, scope, gl, options);\n }\n }\n if (scope === 'global') {\n adjustI18nResources(gl, options, componentOptions);\n return gl;\n }\n if (scope === 'parent') {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let composer = getComposer(i18n, instance, options.__useComponent);\n if (composer == null) {\n if ((process.env.NODE_ENV !== 'production')) {\n warn(getWarnMessage(I18nWarnCodes.NOT_FOUND_PARENT_SCOPE));\n }\n composer = gl;\n }\n return composer;\n }\n const i18nInternal = i18n;\n let composer = i18nInternal.__getInstance(instance);\n if (composer == null) {\n const composerOptions = assign({}, options);\n if ('__i18n' in componentOptions) {\n composerOptions.__i18n = componentOptions.__i18n;\n }\n if (gl) {\n composerOptions.__root = gl;\n }\n composer = createComposer(composerOptions);\n if (i18nInternal.__composerExtend) {\n composer[DisposeSymbol] =\n i18nInternal.__composerExtend(composer);\n }\n setupLifeCycle(i18nInternal, instance, composer);\n i18nInternal.__setInstance(instance, composer);\n }\n return composer;\n}\n/**\n * Cast to VueI18n legacy compatible type\n *\n * @remarks\n * This API is provided only with [vue-i18n-bridge](https://vue-i18n.intlify.dev/guide/migration/ways.html#what-is-vue-i18n-bridge).\n *\n * The purpose of this function is to convert an {@link I18n} instance created with {@link createI18n | createI18n(legacy: true)} into a `vue-i18n@v8.x` compatible instance of `new VueI18n` in a TypeScript environment.\n *\n * @param i18n - An instance of {@link I18n}\n * @returns A i18n instance which is casted to {@link VueI18n} type\n *\n * @VueI18nTip\n * :new: provided by **vue-i18n-bridge only**\n *\n * @VueI18nGeneral\n */\nconst castToVueI18n = /* #__PURE__*/ (i18n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\n) => {\n if (!(__VUE_I18N_BRIDGE__ in i18n)) {\n throw createI18nError(I18nErrorCodes.NOT_COMPATIBLE_LEGACY_VUE_I18N);\n }\n return i18n;\n};\nfunction createGlobal(options, legacyMode, VueI18nLegacy // eslint-disable-line @typescript-eslint/no-explicit-any\n) {\n const scope = effectScope();\n {\n const obj = __VUE_I18N_LEGACY_API__ && legacyMode\n ? scope.run(() => createVueI18n(options))\n : scope.run(() => createComposer(options));\n if (obj == null) {\n throw createI18nError(I18nErrorCodes.UNEXPECTED_ERROR);\n }\n return [scope, obj];\n }\n}\nfunction getI18nInstance(instance) {\n {\n const i18n = inject(!instance.isCE\n ? instance.appContext.app.__VUE_I18N_SYMBOL__\n : I18nInjectionKey);\n /* istanbul ignore if */\n if (!i18n) {\n throw createI18nError(!instance.isCE\n ? I18nErrorCodes.UNEXPECTED_ERROR\n : I18nErrorCodes.NOT_INSTALLED_WITH_PROVIDE);\n }\n return i18n;\n }\n}\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction getScope(options, componentOptions) {\n // prettier-ignore\n return isEmptyObject(options)\n ? ('__i18n' in componentOptions)\n ? 'local'\n : 'global'\n : !options.useScope\n ? 'local'\n : options.useScope;\n}\nfunction getGlobalComposer(i18n) {\n // prettier-ignore\n return i18n.mode === 'composition'\n ? i18n.global\n : i18n.global.__composer\n ;\n}\nfunction getComposer(i18n, target, useComponent = false) {\n let composer = null;\n const root = target.root;\n let current = getParentComponentInstance(target, useComponent);\n while (current != null) {\n const i18nInternal = i18n;\n if (i18n.mode === 'composition') {\n composer = i18nInternal.__getInstance(current);\n }\n else {\n if (__VUE_I18N_LEGACY_API__) {\n const vueI18n = i18nInternal.__getInstance(current);\n if (vueI18n != null) {\n composer = vueI18n\n .__composer;\n if (useComponent &&\n composer &&\n !composer[InejctWithOptionSymbol] // eslint-disable-line @typescript-eslint/no-explicit-any\n ) {\n composer = null;\n }\n }\n }\n }\n if (composer != null) {\n break;\n }\n if (root === current) {\n break;\n }\n current = current.parent;\n }\n return composer;\n}\nfunction getParentComponentInstance(target, useComponent = false) {\n if (target == null) {\n return null;\n }\n {\n // if `useComponent: true` will be specified, we get lexical scope owner instance for use-case slots\n return !useComponent\n ? target.parent\n : target.vnode.ctx || target.parent; // eslint-disable-line @typescript-eslint/no-explicit-any\n }\n}\nfunction setupLifeCycle(i18n, target, composer) {\n let emitter = null;\n {\n onMounted(() => {\n // inject composer instance to DOM for intlify-devtools\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) &&\n !false &&\n target.vnode.el) {\n target.vnode.el.__VUE_I18N__ = composer;\n emitter = createEmitter();\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const _composer = composer;\n _composer[EnableEmitter] && _composer[EnableEmitter](emitter);\n emitter.on('*', addTimelineEvent);\n }\n }, target);\n onUnmounted(() => {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const _composer = composer;\n // remove composer instance from DOM for intlify-devtools\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) &&\n !false &&\n target.vnode.el &&\n target.vnode.el.__VUE_I18N__) {\n emitter && emitter.off('*', addTimelineEvent);\n _composer[DisableEmitter] && _composer[DisableEmitter]();\n delete target.vnode.el.__VUE_I18N__;\n }\n i18n.__deleteInstance(target);\n // dispose extended resources\n const dispose = _composer[DisposeSymbol];\n if (dispose) {\n dispose();\n delete _composer[DisposeSymbol];\n }\n }, target);\n }\n}\nfunction useI18nForLegacy(instance, scope, root, options = {} // eslint-disable-line @typescript-eslint/no-explicit-any\n) {\n const isLocalScope = scope === 'local';\n const _composer = shallowRef(null);\n if (isLocalScope &&\n instance.proxy &&\n !(instance.proxy.$options.i18n || instance.proxy.$options.__i18n)) {\n throw createI18nError(I18nErrorCodes.MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION);\n }\n const _inheritLocale = isBoolean(options.inheritLocale)\n ? options.inheritLocale\n : !isString(options.locale);\n const _locale = ref(\n // prettier-ignore\n !isLocalScope || _inheritLocale\n ? root.locale.value\n : isString(options.locale)\n ? options.locale\n : DEFAULT_LOCALE);\n const _fallbackLocale = ref(\n // prettier-ignore\n !isLocalScope || _inheritLocale\n ? root.fallbackLocale.value\n : isString(options.fallbackLocale) ||\n isArray(options.fallbackLocale) ||\n isPlainObject(options.fallbackLocale) ||\n options.fallbackLocale === false\n ? options.fallbackLocale\n : _locale.value);\n const _messages = ref(getLocaleMessages(_locale.value, options));\n // prettier-ignore\n const _datetimeFormats = ref(isPlainObject(options.datetimeFormats)\n ? options.datetimeFormats\n : { [_locale.value]: {} });\n // prettier-ignore\n const _numberFormats = ref(isPlainObject(options.numberFormats)\n ? options.numberFormats\n : { [_locale.value]: {} });\n // prettier-ignore\n const _missingWarn = isLocalScope\n ? root.missingWarn\n : isBoolean(options.missingWarn) || isRegExp(options.missingWarn)\n ? options.missingWarn\n : true;\n // prettier-ignore\n const _fallbackWarn = isLocalScope\n ? root.fallbackWarn\n : isBoolean(options.fallbackWarn) || isRegExp(options.fallbackWarn)\n ? options.fallbackWarn\n : true;\n // prettier-ignore\n const _fallbackRoot = isLocalScope\n ? root.fallbackRoot\n : isBoolean(options.fallbackRoot)\n ? options.fallbackRoot\n : true;\n // configure fall back to root\n const _fallbackFormat = !!options.fallbackFormat;\n // runtime missing\n const _missing = isFunction(options.missing) ? options.missing : null;\n // postTranslation handler\n const _postTranslation = isFunction(options.postTranslation)\n ? options.postTranslation\n : null;\n // prettier-ignore\n const _warnHtmlMessage = isLocalScope\n ? root.warnHtmlMessage\n : isBoolean(options.warnHtmlMessage)\n ? options.warnHtmlMessage\n : true;\n const _escapeParameter = !!options.escapeParameter;\n // prettier-ignore\n const _modifiers = isLocalScope\n ? root.modifiers\n : isPlainObject(options.modifiers)\n ? options.modifiers\n : {};\n // pluralRules\n const _pluralRules = options.pluralRules || (isLocalScope && root.pluralRules);\n // track reactivity\n function trackReactivityValues() {\n return [\n _locale.value,\n _fallbackLocale.value,\n _messages.value,\n _datetimeFormats.value,\n _numberFormats.value\n ];\n }\n // locale\n const locale = computed({\n get: () => {\n return _composer.value ? _composer.value.locale.value : _locale.value;\n },\n set: val => {\n if (_composer.value) {\n _composer.value.locale.value = val;\n }\n _locale.value = val;\n }\n });\n // fallbackLocale\n const fallbackLocale = computed({\n get: () => {\n return _composer.value\n ? _composer.value.fallbackLocale.value\n : _fallbackLocale.value;\n },\n set: val => {\n if (_composer.value) {\n _composer.value.fallbackLocale.value = val;\n }\n _fallbackLocale.value = val;\n }\n });\n // messages\n const messages = computed(() => {\n if (_composer.value) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return _composer.value.messages.value;\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return _messages.value;\n }\n });\n const datetimeFormats = computed(() => _datetimeFormats.value);\n const numberFormats = computed(() => _numberFormats.value);\n function getPostTranslationHandler() {\n return _composer.value\n ? _composer.value.getPostTranslationHandler()\n : _postTranslation;\n }\n function setPostTranslationHandler(handler) {\n if (_composer.value) {\n _composer.value.setPostTranslationHandler(handler);\n }\n }\n function getMissingHandler() {\n return _composer.value ? _composer.value.getMissingHandler() : _missing;\n }\n function setMissingHandler(handler) {\n if (_composer.value) {\n _composer.value.setMissingHandler(handler);\n }\n }\n function warpWithDeps(fn) {\n trackReactivityValues();\n return fn();\n }\n function t(...args) {\n return _composer.value\n ? warpWithDeps(() => Reflect.apply(_composer.value.t, null, [...args]))\n : warpWithDeps(() => '');\n }\n function rt(...args) {\n return _composer.value\n ? Reflect.apply(_composer.value.rt, null, [...args])\n : '';\n }\n function d(...args) {\n return _composer.value\n ? warpWithDeps(() => Reflect.apply(_composer.value.d, null, [...args]))\n : warpWithDeps(() => '');\n }\n function n(...args) {\n return _composer.value\n ? warpWithDeps(() => Reflect.apply(_composer.value.n, null, [...args]))\n : warpWithDeps(() => '');\n }\n function tm(key) {\n return _composer.value ? _composer.value.tm(key) : {};\n }\n function te(key, locale) {\n return _composer.value ? _composer.value.te(key, locale) : false;\n }\n function getLocaleMessage(locale) {\n return _composer.value ? _composer.value.getLocaleMessage(locale) : {};\n }\n function setLocaleMessage(locale, message) {\n if (_composer.value) {\n _composer.value.setLocaleMessage(locale, message);\n _messages.value[locale] = message;\n }\n }\n function mergeLocaleMessage(locale, message) {\n if (_composer.value) {\n _composer.value.mergeLocaleMessage(locale, message);\n }\n }\n function getDateTimeFormat(locale) {\n return _composer.value ? _composer.value.getDateTimeFormat(locale) : {};\n }\n function setDateTimeFormat(locale, format) {\n if (_composer.value) {\n _composer.value.setDateTimeFormat(locale, format);\n _datetimeFormats.value[locale] = format;\n }\n }\n function mergeDateTimeFormat(locale, format) {\n if (_composer.value) {\n _composer.value.mergeDateTimeFormat(locale, format);\n }\n }\n function getNumberFormat(locale) {\n return _composer.value ? _composer.value.getNumberFormat(locale) : {};\n }\n function setNumberFormat(locale, format) {\n if (_composer.value) {\n _composer.value.setNumberFormat(locale, format);\n _numberFormats.value[locale] = format;\n }\n }\n function mergeNumberFormat(locale, format) {\n if (_composer.value) {\n _composer.value.mergeNumberFormat(locale, format);\n }\n }\n const wrapper = {\n get id() {\n return _composer.value ? _composer.value.id : -1;\n },\n locale,\n fallbackLocale,\n messages,\n datetimeFormats,\n numberFormats,\n get inheritLocale() {\n return _composer.value ? _composer.value.inheritLocale : _inheritLocale;\n },\n set inheritLocale(val) {\n if (_composer.value) {\n _composer.value.inheritLocale = val;\n }\n },\n get availableLocales() {\n return _composer.value\n ? _composer.value.availableLocales\n : Object.keys(_messages.value);\n },\n get modifiers() {\n return (_composer.value ? _composer.value.modifiers : _modifiers);\n },\n get pluralRules() {\n return (_composer.value ? _composer.value.pluralRules : _pluralRules);\n },\n get isGlobal() {\n return _composer.value ? _composer.value.isGlobal : false;\n },\n get missingWarn() {\n return _composer.value ? _composer.value.missingWarn : _missingWarn;\n },\n set missingWarn(val) {\n if (_composer.value) {\n _composer.value.missingWarn = val;\n }\n },\n get fallbackWarn() {\n return _composer.value ? _composer.value.fallbackWarn : _fallbackWarn;\n },\n set fallbackWarn(val) {\n if (_composer.value) {\n _composer.value.missingWarn = val;\n }\n },\n get fallbackRoot() {\n return _composer.value ? _composer.value.fallbackRoot : _fallbackRoot;\n },\n set fallbackRoot(val) {\n if (_composer.value) {\n _composer.value.fallbackRoot = val;\n }\n },\n get fallbackFormat() {\n return _composer.value ? _composer.value.fallbackFormat : _fallbackFormat;\n },\n set fallbackFormat(val) {\n if (_composer.value) {\n _composer.value.fallbackFormat = val;\n }\n },\n get warnHtmlMessage() {\n return _composer.value\n ? _composer.value.warnHtmlMessage\n : _warnHtmlMessage;\n },\n set warnHtmlMessage(val) {\n if (_composer.value) {\n _composer.value.warnHtmlMessage = val;\n }\n },\n get escapeParameter() {\n return _composer.value\n ? _composer.value.escapeParameter\n : _escapeParameter;\n },\n set escapeParameter(val) {\n if (_composer.value) {\n _composer.value.escapeParameter = val;\n }\n },\n t,\n getPostTranslationHandler,\n setPostTranslationHandler,\n getMissingHandler,\n setMissingHandler,\n rt,\n d,\n n,\n tm,\n te,\n getLocaleMessage,\n setLocaleMessage,\n mergeLocaleMessage,\n getDateTimeFormat,\n setDateTimeFormat,\n mergeDateTimeFormat,\n getNumberFormat,\n setNumberFormat,\n mergeNumberFormat\n };\n function sync(composer) {\n composer.locale.value = _locale.value;\n composer.fallbackLocale.value = _fallbackLocale.value;\n Object.keys(_messages.value).forEach(locale => {\n composer.mergeLocaleMessage(locale, _messages.value[locale]);\n });\n Object.keys(_datetimeFormats.value).forEach(locale => {\n composer.mergeDateTimeFormat(locale, _datetimeFormats.value[locale]);\n });\n Object.keys(_numberFormats.value).forEach(locale => {\n composer.mergeNumberFormat(locale, _numberFormats.value[locale]);\n });\n composer.escapeParameter = _escapeParameter;\n composer.fallbackFormat = _fallbackFormat;\n composer.fallbackRoot = _fallbackRoot;\n composer.fallbackWarn = _fallbackWarn;\n composer.missingWarn = _missingWarn;\n composer.warnHtmlMessage = _warnHtmlMessage;\n }\n onBeforeMount(() => {\n if (instance.proxy == null || instance.proxy.$i18n == null) {\n throw createI18nError(I18nErrorCodes.NOT_AVAILABLE_COMPOSITION_IN_LEGACY);\n }\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const composer = (_composer.value = instance.proxy.$i18n\n .__composer);\n if (scope === 'global') {\n _locale.value = composer.locale.value;\n _fallbackLocale.value = composer.fallbackLocale.value;\n _messages.value = composer.messages.value;\n _datetimeFormats.value = composer.datetimeFormats.value;\n _numberFormats.value = composer.numberFormats.value;\n }\n else if (isLocalScope) {\n sync(composer);\n }\n });\n return wrapper;\n}\nconst globalExportProps = [\n 'locale',\n 'fallbackLocale',\n 'availableLocales'\n];\nconst globalExportMethods = ['t', 'rt', 'd', 'n', 'tm', 'te']\n ;\nfunction injectGlobalFields(app, composer) {\n const i18n = Object.create(null);\n globalExportProps.forEach(prop => {\n const desc = Object.getOwnPropertyDescriptor(composer, prop);\n if (!desc) {\n throw createI18nError(I18nErrorCodes.UNEXPECTED_ERROR);\n }\n const wrap = isRef(desc.value) // check computed props\n ? {\n get() {\n return desc.value.value;\n },\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n set(val) {\n desc.value.value = val;\n }\n }\n : {\n get() {\n return desc.get && desc.get();\n }\n };\n Object.defineProperty(i18n, prop, wrap);\n });\n app.config.globalProperties.$i18n = i18n;\n globalExportMethods.forEach(method => {\n const desc = Object.getOwnPropertyDescriptor(composer, method);\n if (!desc || !desc.value) {\n throw createI18nError(I18nErrorCodes.UNEXPECTED_ERROR);\n }\n Object.defineProperty(app.config.globalProperties, `$${method}`, desc);\n });\n const dispose = () => {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n delete app.config.globalProperties.$i18n;\n globalExportMethods.forEach(method => {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n delete app.config.globalProperties[`$${method}`];\n });\n };\n return dispose;\n}\n\n{\n initFeatureFlags();\n}\n// register message compiler at vue-i18n\nif (__INTLIFY_JIT_COMPILATION__) {\n registerMessageCompiler(compile);\n}\nelse {\n registerMessageCompiler(compileToFunction);\n}\n// register message resolver at vue-i18n\nregisterMessageResolver(resolveValue);\n// register fallback locale at vue-i18n\nregisterLocaleFallbacker(fallbackWithLocaleChain);\n// NOTE: experimental !!\nif ((process.env.NODE_ENV !== 'production') || __INTLIFY_PROD_DEVTOOLS__) {\n const target = getGlobalThis();\n target.__INTLIFY__ = true;\n setDevToolsHook(target.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__);\n}\nif ((process.env.NODE_ENV !== 'production')) ;\n\nexport { DatetimeFormat, I18nD, I18nInjectionKey, I18nN, I18nT, NumberFormat, Translation, VERSION, castToVueI18n, createI18n, useI18n, vTDirective };\n","import{openBlock as t,createBlock as e,withModifiers as n,renderSlot as o,createTextVNode as i,toDisplayString as s,resolveComponent as l,createVNode as a,Fragment as r,renderList as u,withKeys as c,withCtx as d,resolveDynamicComponent as p,mergeProps as f}from\"vue\";function h(t,e=1e3){t.setAttribute(\"tabindex\",\"-1\"),t.focus(),setTimeout((()=>t.removeAttribute(\"tabindex\")),e)}const m=new RegExp(\"^(a|select|input|button|textarea)\",\"i\"),b={name:\"VueSkipToSingle\",props:{label:{type:String,default:\"Skip to main content\"},to:{type:String,default:\"#main\"}},emits:[\"focused\"],methods:{handleFocusElement({target:t}){this.focusElement(t.getAttribute(\"href\").substring(1))},focusElement(t){if(!t)return;const e=window.document.getElementById(t);return e?m.test(e.tagName.toLowerCase())?void e.focus():h(e):void 0}}};b.render=function(l,a,r,u,c,d){return t(),e(\"a\",{href:r.to,onClick:a[1]||(a[1]=n(((...t)=>d.handleFocusElement&&d.handleFocusElement(...t)),[\"prevent\"])),onFocus:a[2]||(a[2]=t=>l.$emit(\"focused\",!0)),onBlur:a[3]||(a[3]=t=>l.$emit(\"focused\",!1)),class:\"vue-skip-to__link\"},[o(l.$slots,\"default\",{},(()=>[i(s(r.label),1)]))],40,[\"href\"])};const g={name:\"VueSkipToList\",components:{VueSkipToSingle:b},props:{listLabel:{type:String,default:\"Skip to\"},to:{validator:function(t){return Array.isArray(t)&&t.every((({anchor:t,label:e})=>\"string\"==typeof t&&0===t.indexOf(\"#\")&&\"string\"==typeof String(e)))}}},emits:[\"focus-within\"],methods:{handleKeydown({key:t,target:e}){const n=e.parentElement,o=/(ArrowUp|Up)/g.test(t)?n.previousElementSibling:n.nextElementSibling;if(!o)return;const i=o.getElementsByTagName(\"a\");i.length&&i[0].focus()}}},y={class:\"vue-skip-to__nav\",\"aria-labelledby\":\"list-title\"},k={id:\"list-title\"},S={class:\"vue-skip-to__nav-list\"};g.render=function(o,p,f,h,m,b){const g=l(\"VueSkipToSingle\");return t(),e(\"nav\",y,[a(\"span\",k,s(f.listLabel),1),a(\"ul\",S,[(t(!0),e(r,null,u(f.to,(l=>(t(),e(\"li\",{key:l.anchor,class:\"vue-skip-to__nav-list-item\",onKeydown:[p[2]||(p[2]=c(n(((...t)=>b.handleKeydown&&b.handleKeydown(...t)),[\"prevent\"]),[\"up\"])),p[3]||(p[3]=c(n(((...t)=>b.handleKeydown&&b.handleKeydown(...t)),[\"prevent\"]),[\"down\"]))]},[a(g,{to:l.anchor,onFocused:p[1]||(p[1]=t=>o.$emit(\"focus-within\",t)),\"aria-label\":l.ariaLabel||l.label},{default:d((()=>[i(s(l.label),1)])),_:2},1032,[\"to\",\"aria-label\"])],32)))),128))])])};const v={name:\"VueSkipTo\",props:{listLabel:{type:String,default:\"Skip to\"},label:{type:String,default:\"Skip to main content\"},to:{type:[String,Array],default:\"#main\"}},data:()=>({focused:!1}),mounted(){this.$route&&this.$watch(\"$route.path\",(()=>{this.$nextTick((()=>h(this.$refs.skipTo)))}))},computed:{isList(){return Array.isArray(this.to)},comp(){return this.isList?g:b},props(){return this.isList?{listLabel:this.listLabel,to:this.to}:{label:this.label,to:this.to}}},methods:{focusWithin(t){this.focused=t}}};function w(t){t.component(\"VueSkipTo\",v)}v.render=function(n,o,i,s,l,a){return t(),e(\"div\",{class:[\"vue-skip-to\",{focused:l.focused}],ref:\"skipTo\"},[(t(),e(p(a.comp),f({onFocused:a.focusWithin,onFocusWithin:a.focusWithin},a.props),null,16,[\"onFocused\",\"onFocusWithin\"]))],2)};export default w;\n"],"names":["isVue2","activePinia","setActivePinia","pinia","piniaSymbol","isPlainObject","o","MutationType","createPinia","scope","effectScope","state","ref","_p","toBeInstalled","markRaw","app","plugin","noop","addSubscription","subscriptions","callback","detached","onCleanup","removeSubscription","idx","getCurrentScope","onScopeDispose","triggerSubscriptions","args","fallbackRunWithContext","fn","mergeReactiveObjects","target","patchToApply","value","key","subPatch","targetValue","isRef","isReactive","skipHydrateSymbol","shouldHydrate","obj","assign","isComputed","createOptionsStore","id","options","hot","actions","getters","initialState","store","setup","localState","toRefs","computedGetters","name","computed","createSetupStore","$id","isOptionsStore","optionsForPlugin","$subscribeOptions","isListening","isSyncListening","actionSubscriptions","debuggerEvents","activeListener","$patch","partialStateOrMutator","subscriptionMutation","myListenerId","nextTick","$reset","newState","$state","$dispose","wrapAction","action","afterCallbackList","onErrorCallbackList","after","onError","ret","error","partialStore","stopWatcher","watch","reactive","setupStore","prop","actionValue","toRaw","extender","defineStore","idOrOptions","setupOptions","isSetupStore","useStore","hasContext","hasInjectionContext","inject","mapState","keysOrMapper","reduced","storeKey","mapActions","isBrowser","isESModule","applyToParams","params","newParams","isArray","TRAILING_SLASH_RE","removeTrailingSlash","path","parseURL","parseQuery","location","currentLocation","query","searchString","hash","hashPos","searchPos","resolveRelativePath","stringifyURL","stringifyQuery","stripBase","pathname","base","isSameRouteLocation","a","b","aLastIndex","bLastIndex","isSameRouteRecord","isSameRouteLocationParams","isSameRouteLocationParamsValue","isEquivalentArray","i","to","from","fromSegments","toSegments","lastToSegment","position","toPosition","segment","NavigationType","NavigationDirection","normalizeBase","baseEl","BEFORE_HASH_RE","createHref","getElementPosition","el","offset","docRect","elRect","computeScrollPosition","scrollToPosition","scrollToOptions","positionEl","isIdSelector","getScrollKey","delta","scrollPositions","saveScrollPosition","scrollPosition","getSavedScrollPosition","scroll","createBaseLocation","createCurrentLocation","search","slicePos","pathFromHash","useHistoryListeners","historyState","replace","listeners","teardowns","pauseState","popStateHandler","fromState","listener","pauseListeners","listen","teardown","index","beforeUnloadListener","history","destroy","buildState","back","current","forward","replaced","computeScroll","useHistoryStateNavigation","changeLocation","hashIndex","url","err","data","push","currentState","createWebHistory","historyNavigation","historyListeners","go","triggerListeners","routerHistory","isRouteLocation","route","isRouteName","START_LOCATION_NORMALIZED","NavigationFailureSymbol","NavigationFailureType","createRouterError","type","isNavigationFailure","BASE_PARAM_PATTERN","BASE_PATH_PARSER_OPTIONS","REGEX_CHARS_RE","tokensToParser","segments","extraOptions","score","pattern","keys","segmentScores","tokenIndex","token","subSegmentScore","repeatable","optional","regexp","re","subPattern","parse","match","stringify","avoidDuplicatedSlash","param","text","compareScoreArray","diff","comparePathParserScore","aScore","bScore","comp","isLastScoreNegative","last","ROOT_TOKEN","VALID_PARAM_RE","tokenizePath","crash","message","buffer","previousState","tokens","finalizeSegment","char","customRe","consumeBuffer","addCharToBuffer","createRouteRecordMatcher","record","parent","parser","matcher","createRouterMatcher","routes","globalOptions","matchers","matcherMap","mergeOptions","getRecordMatcher","addRoute","originalRecord","isRootAdd","mainNormalizedRecord","normalizeRouteRecord","normalizedRecords","aliases","alias","originalMatcher","normalizedRecord","parentPath","connectingSlash","isAliasRecord","removeRoute","children","insertMatcher","matcherRef","getRoutes","isRecordChildOf","resolve","paramsFromLocation","k","m","matched","parentMatcher","mergeMetaFields","normalizeRecordProps","propsObject","props","meta","defaults","partialOptions","child","HASH_RE","AMPERSAND_RE","SLASH_RE","EQUAL_RE","IM_RE","PLUS_RE","ENC_BRACKET_OPEN_RE","ENC_BRACKET_CLOSE_RE","ENC_CARET_RE","ENC_BACKTICK_RE","ENC_CURLY_OPEN_RE","ENC_PIPE_RE","ENC_CURLY_CLOSE_RE","ENC_SPACE_RE","commonEncode","encodeHash","encodeQueryValue","encodeQueryKey","encodePath","encodeParam","decode","searchParams","searchParam","eqPos","currentValue","v","normalizeQuery","normalizedQuery","matchedRouteKey","viewDepthKey","routerKey","routeLocationKey","routerViewLocationKey","useCallbacks","handlers","add","handler","reset","guardToPromiseFn","guard","enterCallbackArray","reject","next","valid","guardReturn","guardCall","extractComponentsGuards","guardType","guards","rawComponent","isRouteComponent","componentPromise","resolved","resolvedComponent","component","useLink","router","currentRoute","unref","activeRecordIndex","length","routeMatched","currentMatched","parentRecordPath","getOriginalPath","isActive","includesParams","isExactActive","navigate","e","guardEvent","RouterLinkImpl","defineComponent","slots","link","elClass","getLinkClass","h","RouterLink","outer","inner","innerValue","outerValue","propClass","globalClass","defaultClass","RouterViewImpl","attrs","injectedRoute","routeToDisplay","injectedDepth","depth","initialDepth","matchedRoute","matchedRouteRef","provide","viewRef","instance","oldInstance","oldName","currentName","ViewComponent","normalizeSlot","routePropsOption","routeProps","vnode","slot","slotContent","RouterView","createRouter","parseQuery$1","stringifyQuery$1","beforeGuards","beforeResolveGuards","afterGuards","shallowRef","pendingLocation","normalizeParams","paramValue","encodeParams","decodeParams","parentOrRoute","recordMatcher","routeMatcher","hasRoute","rawLocation","locationNormalized","href","matcherLocation","targetParams","fullPath","locationAsObject","checkCanceledNavigation","pushWithRedirect","handleRedirectRecord","lastMatched","redirect","newTargetLocation","redirectedFrom","targetLocation","force","shouldRedirect","toLocation","failure","handleScroll","markAsReady","triggerError","finalizeNavigation","triggerAfterEach","checkCanceledNavigationAndReject","runWithContext","installedApps","leavingRecords","updatingRecords","enteringRecords","extractChangingRecords","canceledNavigationCheck","runGuardQueue","beforeEnter","isPush","isFirstNavigation","removeHistoryListener","setupListeners","_from","info","readyHandlers","errorListeners","ready","list","isReady","scrollBehavior","started","reactiveRoute","shallowReactive","unmountApp","promise","len","recordFrom","recordTo","useRouter","useRoute","inBrowser","makeSymbol","shareable","generateFormatCacheKey","locale","source","friendlyJSONstringify","json","isNumber","val","isDate","toTypeString","isRegExp","isEmptyObject","_globalThis","getGlobalThis","escapeHtml","rawText","hasOwnProperty","hasOwn","isFunction","isString","isBoolean","isObject","objectToString","proto","toDisplayString","join","items","separator","str","item","incrementer","code","warn","msg","createPosition","line","column","createLocation","start","end","loc","RE_ARGS","format","identifier","CompileErrorCodes","errorMessages","createCompileError","domain","messages","defaultOnError","CHAR_SP","CHAR_CR","CHAR_LF","CHAR_LS","CHAR_PS","createScanner","_buf","_index","_line","_column","_peekOffset","isCRLF","isLF","isPS","isLS","isLineEnd","peekOffset","charAt","currentChar","currentPeek","peek","resetPeek","skipToPeek","EOF","DOT","LITERAL_DELIMITER","ERROR_DOMAIN$3","createTokenizer","_scnr","currentOffset","currentPosition","_initLoc","_initOffset","_context","context","emitError","pos","ctx","getToken","getEndToken","eat","scnr","ch","peekSpaces","buf","skipSpaces","isIdentifierStart","cc","isNumberStart","isNamedIdentifierStart","currentType","isListIdentifierStart","isLiteralStart","isLinkedDotStart","isLinkedModifierStart","isLinkedDelimiterStart","isLinkedReferStart","isPluralStart","detectModuloStart","spaces","isTextStart","hasSpace","prev","detectModulo","takeChar","takeIdentifierChar","takeDigit","takeHexDigit","getDigits","num","readModulo","readText","readNamedIdentifier","readListIdentifier","readLiteral","literal","x","readEscapeSequence","readUnicodeEscapeSequence","unicode","digits","sequence","readInvalidIdentifier","identifiers","closure","readLinkedModifier","readLinkedRefer","detect","readPlural","plural","readTokenInPlaceholder","readTokenInLinked","validNamedIdentifier","validListIdentifier","validLiteral","readToken","isModulo","nextToken","startLoc","endLoc","ERROR_DOMAIN$2","KNOWN_ESCAPES","fromEscapeSequence","codePoint4","codePoint6","codePoint","createParser","tokenzer","startNode","node","endNode","parseText","tokenizer","parseList","parseNamed","parseLiteral","parseLinkedModifier","getTokenCaption","parseLinkedKey","parseLinked","linkedNode","parsed","nextContext","emptyLinkedKeyNode","parseMessage","startOffset","endOffset","parsePlural","msgNode","hasEmptyMessage","parseResource","createTransformer","ast","traverseNodes","nodes","transformer","traverseNode","transform","optimize","body","optimizeMessageNode","c","values","ERROR_DOMAIN$1","minify","resource","cases","valueNode","linked","named","ERROR_DOMAIN","createCodeGenerator","sourceMap","filename","breakLineCode","_needIndent","_newline","n","withBreakLine","_breakLineCode","indent","withNewLine","level","deindent","newline","generateLinkedNode","generator","helper","generateNode","generateMessageNode","needIndent","generatePluralNode","generateResource","generate","mode","helpers","s","map","baseCompile","assignedOptions","jit","enalbeMinify","enambeOptimize","initFeatureFlags","pathStateMachine","literalValueRE","isLiteral","exp","stripQuotes","getPathCharType","formatSubPath","trimmed","subPathDepth","newChar","transition","typeMap","maybeUnescapeQuote","nextChar","cache","resolveWithKeyValue","resolveValue","hit","DEFAULT_MODIFIER","DEFAULT_MESSAGE","DEFAULT_MESSAGE_DATA_TYPE","DEFAULT_NORMALIZE","DEFAULT_INTERPOLATE","pluralDefault","choice","choicesLength","getPluralIndex","normalizeNamed","pluralIndex","createMessageContext","pluralRule","orgPluralRule","_list","_named","_modifier","normalize","interpolate","arg1","arg2","modifier","devtools","setDevToolsHook","hook","initI18nDevTools","i18n","version","translateDevTools","createDevToolsHook","payloads","CoreWarnCodes","getLocale","resolveLocale","_resolveLocale","fallbackWithSimple","fallback","fallbackWithLocaleChain","startLocale","DEFAULT_LOCALE","chain","block","appendBlockToChain","blocks","follow","appendLocaleToChain","appendItemToChain","VERSION","NOT_REOSLVED","MISSING_RESOLVE_VALUE","capitalize","getDefaultLinkedModifiers","_compiler","registerMessageCompiler","compiler","_resolver","registerMessageResolver","resolver","_fallbacker","registerLocaleFallbacker","fallbacker","_additionalMeta","setAdditionalMeta","getAdditionalMeta","_fallbackContext","setFallbackContext","getFallbackContext","_cid","createCoreContext","onWarn","_locale","fallbackLocale","datetimeFormats","numberFormats","modifiers","pluralRules","missing","missingWarn","fallbackWarn","fallbackFormat","unresolving","postTranslation","processor","warnHtmlMessage","escapeParameter","messageCompiler","messageResolver","localeFallbacker","fallbackContext","internalOptions","__datetimeFormatters","__numberFormatters","__meta","handleMissing","updateFallbackLocale","formatParts","formatMessageParts","_static","acm","formatMessagePart","linkedKey","linkedModifier","inc","CoreErrorCodes","createCoreError","defaultOnCacheKey","compileCache","isMessageAST","detectError","baseCompile$1","compileToFunction","cacheKey","cached","compile","NOOP_MESSAGE_FUNCTION","isMessageFunction","translate","parseTranslateArgs","resolvedMessage","defaultMsgOrKey","enableDefaultMsg","escapeParams","formatScope","targetLocale","resolveMessageFormat","cacheBaseKey","occurred","compileMessageFormat","ctxOptions","getMessageContextOptions","msgContext","messaged","evaluateMessage","locales","missingRet","getCompileContext","msgCtx","arg3","datetime","overrides","parseDateTimeArgs","part","datetimeFormat","formatter","DATETIME_FORMAT_OPTIONS_KEYS","arg4","matches","dateTime","clearDateTimeFormat","number","parseNumberArgs","numberFormat","NUMBER_FORMAT_OPTIONS_KEYS","clearNumberFormat","code$1","inc$1","I18nErrorCodes","createI18nError","TranslateVNodeSymbol","DatetimePartsSymbol","NumberPartsSymbol","SetPluralRulesSymbol","InejctWithOptionSymbol","DisposeSymbol","handleFlatJson","subKeys","lastIndex","currentObj","hasStringValue","getLocaleMessages","__i18n","flatJson","custom","deepCopy","isNotObjectOrIsArray","src","des","getComponentOptions","adjustI18nResources","gl","componentOptions","createTextNode","createVNode","Text","DEVTOOLS_META","NOOP_RETURN_ARRAY","NOOP_RETURN_FALSE","composerID","defineCoreMissingHandler","getCurrentInstance","getMetaInfo","createComposer","VueI18nLegacy","__root","__injectWithOption","_isGlobal","_inheritLocale","_fallbackLocale","_messages","_datetimeFormats","_numberFormats","_missingWarn","_fallbackWarn","_fallbackRoot","_fallbackFormat","_missing","_runtimeMissing","_postTranslation","_warnHtmlMessage","_escapeParameter","_modifiers","_pluralRules","trackReactivityValues","getPostTranslationHandler","setPostTranslationHandler","getMissingHandler","setMissingHandler","wrapWithDeps","argumentParser","warnType","fallbackSuccess","fallbackFail","successCondition","t","root","rt","d","translateVNode","numberParts","datetimeParts","setPluralRules","rules","te","getLocaleMessage","resolveMessages","targetLocaleMessages","messageValue","tm","setLocaleMessage","_message","mergeLocaleMessage","getDateTimeFormat","setDateTimeFormat","mergeDateTimeFormat","getNumberFormat","setNumberFormat","mergeNumberFormat","composer","convertComposerOptions","fallbackRoot","pluralizationRules","inheritLocale","sharedMessages","createVueI18n","__extender","vueI18n","baseFormatProps","getInterpolateArg","Fragment","arg","getFragmentableTag","tag","TranslationImpl","useI18n","assignedAttrs","Translation","isVNode","renderFormatter","slotKeys","partFormatter","parts","NumberFormatImpl","NumberFormat","DatetimeFormatImpl","DatetimeFormat","getComposer$2","i18nInternal","vTDirective","_process","binding","parsedValue","parseValue","makeParams","textContent","apply","pluginOptions","useI18nComponentName","defineMixin","vuei18n","optionsI18n","mergeToGlobal","_vueI18n","g","I18nInjectionKey","createI18n","__legacyMode","__globalInjection","__allowComposition","__instances","globalScope","__global","createGlobal","symbol","__getInstance","__setInstance","__deleteInstance","opts","globalReleaseHandler","injectGlobalFields","getI18nInstance","getGlobalComposer","getScope","useI18nForLegacy","getComposer","composerOptions","setupLifeCycle","legacyMode","useComponent","getParentComponentInstance","onMounted","onUnmounted","_composer","dispose","isLocalScope","warpWithDeps","wrapper","sync","onBeforeMount","globalExportProps","globalExportMethods","desc","wrap","method","l","r","u","y","S","p","f","w"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7]}