From e8704b2537c5781f8db9f8d91546377afb3af3de Mon Sep 17 00:00:00 2001 From: John Datserakis Date: Sat, 19 Mar 2022 21:28:00 -0400 Subject: [PATCH] Tidy before merge --- .editorconfig | 10 +- .prettierrc | 8 + CHANGELOG.md | 8 + LICENSE | 2 +- README.md | 80 +- dist/vue-simple-context-menu.css | 24 +- dist/vue-simple-context-menu.esm.js | 65 +- dist/vue-simple-context-menu.min.js | 2 +- dist/vue-simple-context-menu.umd.js | 65 +- docs/build.js | 2 +- docs/index.html | 36 +- docs/main.css | 2 +- docs/main.css.map | 2 +- example/App.vue | 106 +- example/index.html | 36 +- example/main.js | 13 +- package-lock.json | 22918 ------------------- package.json | 77 +- build/rollup.config.js => rollup.config.js | 20 +- src/index.js | 13 +- src/vue-simple-context-menu.vue | 94 +- test/VueSimpleContextMenu.spec.js | 94 +- webpack.config.js | 80 +- yarn.lock | 7817 +++++++ 24 files changed, 8232 insertions(+), 23342 deletions(-) create mode 100644 .prettierrc delete mode 100644 package-lock.json rename build/rollup.config.js => rollup.config.js (81%) create mode 100644 yarn.lock diff --git a/.editorconfig b/.editorconfig index 63c9675..4039ff1 100755 --- a/.editorconfig +++ b/.editorconfig @@ -1,14 +1,12 @@ -# editorconfig.org - root = true [*] -indent_style = space -indent_size = 2 -end_of_line = lf charset = utf-8 -trim_trailing_whitespace = true +end_of_line = lf +indent_size = 2 +indent_style = space insert_final_newline = true +trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..96f99e1 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,8 @@ +{ + "printWidth": 100, + "semi": true, + "singleQuote": true, + "tabWidth": 2, + "trailingComma": "all", + "useTabs": false +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 94bac77..267de5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG.md +## 4.0.0 + +- Upgrade package to support Vue 3. Vue 2 support can be found at `v3.4.2`. Thank you @danielelkington. + +## 3.4.2 + +- Add menu-closed event. Thank you @rttmax. + ## 3.4.1 - Add support for HTML content in `option.name`. Thank you @mikeerickson. diff --git a/LICENSE b/LICENSE index a250df0..82d0782 100755 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Promosis, Inc. +Copyright (c) 2018 John Datserakis, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index b90d135..0ed4db5 100755 --- a/README.md +++ b/README.md @@ -10,21 +10,15 @@ Simple context-menu component built for Vue. Works well with both left and right Tweet

-### Demo +[View Demo](https://johndatserakis.github.io/vue-simple-context-menu/) | [GitHub](https://github.com/johndatserakis/vue-simple-context-menu) | [npm](https://www.npmjs.com/package/vue-simple-context-menu) -[View demo](https://johndatserakis.github.io/vue-simple-context-menu/) +## Vue 3 Support -[View on npm](https://www.npmjs.com/package/vue-simple-context-menu) +Vue 3 is supported from `v4.0.0` and beyond (current `master`). To use `vue-simple-context-menu` with Vue 2, use `v3.4.2`. -[View on GitHub](https://github.com/johndatserakis/vue-simple-context-menu) - -### Install +## Install ``` -# npm -npm i vue-simple-context-menu - -# yarn yarn add vue-simple-context-menu ``` @@ -40,25 +34,25 @@ Or you can include it through the browser at the bottom of your page along with /> ``` -### About +## About -Just a simple little menu to be shown where a click happens - closes after use automatically by clicking an option or outside of the menu. Multiple menus are supported - just make sure to use a unique string as your `elementId` prop value. +Just a simple little menu to be shown where a click happens - closes after use automatically by clicking an option or outside of the menu. Multiple menus are supported - just make sure to use a unique string as your `element-id` prop value. A nice feature that comes baked in is the menu placement after a click - it sits just ever so slightly under your click location - so that any hover style you had on the item that was clicked gets removed nicely. I modeled it after the macOS right click menu. -### Usage Example +## Usage Example ```css -/* css import for when you want to import the component css into your css file/files */ -@import "/path/to/node_modules/vue-simple-context-menu.css"; +/* CSS import for when you want to import the component CSS into your CSS file/files */ +@import '/path/to/node_modules/vue-simple-context-menu.css'; ``` ```js -// css import for when you're importing the css directly in your js -import "vue-simple-context-menu/dist/vue-simple-context-menu.css"; -import VueSimpleContextMenu from "vue-simple-context-menu"; +// CSS import for when you're importing the CSS directly in your JS +import 'vue-simple-context-menu/dist/vue-simple-context-menu.css'; +import VueSimpleContextMenu from 'vue-simple-context-menu'; -Vue.component("vue-simple-context-menu", VueSimpleContextMenu); +Vue.component('vue-simple-context-menu', VueSimpleContextMenu); ``` ```html @@ -78,9 +72,9 @@ Each item has a click event that ties to a function. See the demo for a full exa ``` @@ -100,31 +94,31 @@ Note - you must pass the click event-info variable to the `showMenu()` function Note - make sure to use `@click.prevent.stop` (or `@contextmenu.prevent.stop` for right click) when setting up the click handler. -### Props +## Props | prop | type | description | required | | --------------- | ------ | -------------------------------------------------------------------------------------------- | -------- | | `elementId` | String | Unique String that acts as the id of your menu. | Yes | | `options` | Array | Array of menu options to show. Component will use the `name` parameter as the label. | Yes | -| `options.name` | Array | Label for the option. | Yes | +| `options.name` | String | Label for the option. | Yes | | `options.class` | String | A custom class that will be applied to the option. | No | | `options.type` | String | Only one possible value at the moment - `divider`. Pass this to set the object as a divider. | No | | `ref` | String | Unique String that allows you to show the menu on command. | Yes | -### Methods +## Methods | method | parameters | description | | ---------- | --------------------------------- | -------------------------------------------------------------------- | | `showMenu` | event (MouseEvent), item (Object) | Used to show the menu. Make sure to pass a MouseEvent and an Object. | -### Events +## Events | event | value | description | | ---------------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `option-clicked` | Object | When a menu item is clicked the component will emit an event with a value containing the clicked item and the menu option that was clicked. Register for this event to capture the selection result. | | `menu-closed` | | Emitted when the menu is closed | -### SASS Structure +## SASS Structure ```scss .vue-simple-context-menu { @@ -141,38 +135,36 @@ Note - make sure to use `@click.prevent.stop` (or `@contextmenu.prevent.stop` fo } ``` -### Development +## Development ```bash -# install dependencies -npm install +# Install dependencies +yarn -# serve with hot reload -npm run watch +# Serve with hot reload +yarn watch -# run the tests -npm run test +# Run the tests +yarn test -# build demo page -npm run build:example +# Build demo page +yarn build:example -# build library -npm run build:library +# Build library +yarn build:library -# build everything and run tests -npm run build +# Build everything and run tests +yarn build ``` -### Other +## Other Go ahead and fork the project! Submit an issue if needed. Have fun! -### Thank You +## Thank You Influenced by [Lucas Calazans](https://codepen.io/lucascalazans)'s [pen](https://codepen.io/lucascalazans/pen/ALvVVw). Go ahead and check out his other work. -### License +## License [MIT](http://opensource.org/licenses/MIT) - -Packaged with a mixture of [vue-lib-template](https://github.com/biigpongsatorn/vue-lib-template) and [vue-sfc-rollup](https://github.com/team-innovation/vue-sfc-rollup). diff --git a/dist/vue-simple-context-menu.css b/dist/vue-simple-context-menu.css index 71bfa9e..d9c6d77 100644 --- a/dist/vue-simple-context-menu.css +++ b/dist/vue-simple-context-menu.css @@ -1,38 +1,38 @@ .vue-simple-context-menu { - top: 0; + background-color: #ecf0f1; + border-bottom-width: 0px; + border-radius: 4px; + box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.2); + display: none; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; left: 0; + list-style: none; margin: 0; padding: 0; - display: none; - list-style: none; position: absolute; + top: 0; z-index: 1000000; - background-color: #ecf0f1; - border-bottom-width: 0px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; - box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.2); - border-radius: 4px; } .vue-simple-context-menu--active { display: block; } .vue-simple-context-menu__item { - display: flex; + align-items: center; color: #333; cursor: pointer; + display: flex; padding: 5px 15px; - align-items: center; } .vue-simple-context-menu__item:hover { background-color: #007aff; color: #fff; } .vue-simple-context-menu__divider { + background-clip: content-box; + background-color: #c0cdd1; box-sizing: content-box; height: 2px; - background-color: #c0cdd1; padding: 4px 0; - background-clip: content-box; pointer-events: none; } .vue-simple-context-menu li:first-of-type { diff --git a/dist/vue-simple-context-menu.esm.js b/dist/vue-simple-context-menu.esm.js index eef9750..e41eded 100644 --- a/dist/vue-simple-context-menu.esm.js +++ b/dist/vue-simple-context-menu.esm.js @@ -12,29 +12,26 @@ var vClickOutside_umd = createCommonjsModule(function (module, exports) { }); var script = { - name: "VueSimpleContextMenu", + name: 'VueSimpleContextMenu', props: { elementId: { type: String, - required: true + required: true, }, options: { type: Array, - required: true - } + required: true, + }, }, - emits: [ - 'menu-closed', - 'option-clicked' - ], + emits: ['menu-closed', 'option-clicked'], directives: { - 'click-outside': vClickOutside_umd.directive + 'click-outside': vClickOutside_umd.directive, }, data: function data() { return { item: null, + menuHeight: null, menuWidth: null, - menuHeight: null }; }, methods: { @@ -47,32 +44,32 @@ var script = { } if (!this.menuWidth || !this.menuHeight) { - menu.style.visibility = "hidden"; - menu.style.display = "block"; + menu.style.visibility = 'hidden'; + menu.style.display = 'block'; this.menuWidth = menu.offsetWidth; this.menuHeight = menu.offsetHeight; - menu.removeAttribute("style"); + menu.removeAttribute('style'); } if (this.menuWidth + event.pageX >= window.innerWidth) { - menu.style.left = event.pageX - this.menuWidth + 2 + "px"; + menu.style.left = event.pageX - this.menuWidth + 2 + 'px'; } else { - menu.style.left = event.pageX - 2 + "px"; + menu.style.left = event.pageX - 2 + 'px'; } if (this.menuHeight + event.pageY >= window.innerHeight) { - menu.style.top = event.pageY - this.menuHeight + 2 + "px"; + menu.style.top = event.pageY - this.menuHeight + 2 + 'px'; } else { - menu.style.top = event.pageY - 2 + "px"; + menu.style.top = event.pageY - 2 + 'px'; } - menu.classList.add("vue-simple-context-menu--active"); + menu.classList.add('vue-simple-context-menu--active'); }, hideContextMenu: function hideContextMenu() { var element = document.getElementById(this.elementId); if (element) { - element.classList.remove("vue-simple-context-menu--active"); - this.$emit("menu-closed"); + element.classList.remove('vue-simple-context-menu--active'); + this.$emit('menu-closed'); } }, onClickOutside: function onClickOutside() { @@ -80,23 +77,23 @@ var script = { }, optionClicked: function optionClicked(option) { this.hideContextMenu(); - this.$emit("option-clicked", { + this.$emit('option-clicked', { item: this.item, - option: option + option: option, }); }, onEscKeyRelease: function onEscKeyRelease(event) { if (event.keyCode === 27) { this.hideContextMenu(); } - } + }, }, mounted: function mounted() { - document.body.addEventListener("keyup", this.onEscKeyRelease); + document.body.addEventListener('keyup', this.onEscKeyRelease); }, beforeUnmount: function beforeUnmount() { - document.removeEventListener("keyup", this.onEscKeyRelease); - } + document.removeEventListener('keyup', this.onEscKeyRelease); + }, }; var _hoisted_1 = ["id"]; @@ -115,10 +112,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { return (openBlock(), createElementBlock("li", { key: index, onClick: withModifiers(function ($event) { return ($options.optionClicked(option)); }, ["stop"]), - class: normalizeClass(["vue-simple-context-menu__item", [ - option.class, - option.type === 'divider' ? 'vue-simple-context-menu__divider' : '' - ]]) + class: normalizeClass(["vue-simple-context-menu__item", [option.class, option.type === 'divider' ? 'vue-simple-context-menu__divider' : '']]) }, [ createElementVNode("span", { innerHTML: option.name @@ -136,19 +130,18 @@ script.__file = "src/vue-simple-context-menu.vue"; // Import vue component -// install function executed by app.use() -function install (app) { +// Install function executed by app.use() +function install(app) { if (install.installed) { return; } + install.installed = true; app.component('VueSimpleContextMenu', script); } // Create module definition for Vue.use() -var plugin = { - install: install, -}; +var plugin = { install: install }; -// To auto-install when vue is found +// To auto-install when Vue is found var GlobalVue = null; if (typeof window !== 'undefined') { GlobalVue = window.Vue; diff --git a/dist/vue-simple-context-menu.min.js b/dist/vue-simple-context-menu.min.js index 12e3499..23c4e6a 100644 --- a/dist/vue-simple-context-menu.min.js +++ b/dist/vue-simple-context-menu.min.js @@ -1 +1 @@ -var VueSimpleContextMenu=function(e,t){"use strict";"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;var n=function(e,t){return e(t={exports:{}},t.exports),t.exports}((function(e,t){var n,i,o,l,r,u,d,c;e.exports=(n="__v-click-outside",i="undefined"!=typeof window,o="undefined"!=typeof navigator,l=i&&("ontouchstart"in window||o&&navigator.msMaxTouchPoints>0)?["touchstart"]:["click"],r=function(e){var t=e.event,n=e.handler;(0,e.middleware)(t)&&n(t)},u=function(e,t){var i=function(e){var t="function"==typeof e;if(!t&&"object"!=typeof e)throw new Error("v-click-outside: Binding value must be a function or an object");return{handler:t?e:e.handler,middleware:e.middleware||function(e){return e},events:e.events||l,isActive:!(!1===e.isActive),detectIframe:!(!1===e.detectIframe),capture:Boolean(e.capture)}}(t.value),o=i.handler,u=i.middleware,d=i.detectIframe,c=i.capture;if(i.isActive){if(e[n]=i.events.map((function(t){return{event:t,srcTarget:document.documentElement,handler:function(t){return function(e){var t=e.el,n=e.event,i=e.handler,o=e.middleware,l=n.path||n.composedPath&&n.composedPath();(l?l.indexOf(t)<0:!t.contains(n.target))&&r({event:n,handler:i,middleware:o})}({el:e,event:t,handler:o,middleware:u})},capture:c}})),d){var a={event:"blur",srcTarget:window,handler:function(t){return function(e){var t=e.el,n=e.event,i=e.handler,o=e.middleware;setTimeout((function(){var e=document.activeElement;e&&"IFRAME"===e.tagName&&!t.contains(e)&&r({event:n,handler:i,middleware:o})}),0)}({el:e,event:t,handler:o,middleware:u})},capture:c};e[n]=[].concat(e[n],[a])}e[n].forEach((function(t){var i=t.event,o=t.srcTarget,l=t.handler;return setTimeout((function(){e[n]&&o.addEventListener(i,l,c)}),0)}))}},d=function(e){(e[n]||[]).forEach((function(e){return e.srcTarget.removeEventListener(e.event,e.handler,e.capture)})),delete e[n]},{install:function(e){e.directive("click-outside",c)},directive:c=i?{beforeMount:u,updated:function(e,t){var n=t.value,i=t.oldValue;JSON.stringify(n)!==JSON.stringify(i)&&(d(e),u(e,{value:n}))},unmounted:d}:{}})})),i={name:"VueSimpleContextMenu",props:{elementId:{type:String,required:!0},options:{type:Array,required:!0}},emits:["menu-closed","option-clicked"],directives:{"click-outside":n.directive},data:function(){return{item:null,menuWidth:null,menuHeight:null}},methods:{showMenu:function(e,t){this.item=t;var n=document.getElementById(this.elementId);n&&(this.menuWidth&&this.menuHeight||(n.style.visibility="hidden",n.style.display="block",this.menuWidth=n.offsetWidth,this.menuHeight=n.offsetHeight,n.removeAttribute("style")),this.menuWidth+e.pageX>=window.innerWidth?n.style.left=e.pageX-this.menuWidth+2+"px":n.style.left=e.pageX-2+"px",this.menuHeight+e.pageY>=window.innerHeight?n.style.top=e.pageY-this.menuHeight+2+"px":n.style.top=e.pageY-2+"px",n.classList.add("vue-simple-context-menu--active"))},hideContextMenu:function(){var e=document.getElementById(this.elementId);e&&(e.classList.remove("vue-simple-context-menu--active"),this.$emit("menu-closed"))},onClickOutside:function(){this.hideContextMenu()},optionClicked:function(e){this.hideContextMenu(),this.$emit("option-clicked",{item:this.item,option:e})},onEscKeyRelease:function(e){27===e.keyCode&&this.hideContextMenu()}},mounted:function(){document.body.addEventListener("keyup",this.onEscKeyRelease)},beforeUnmount:function(){document.removeEventListener("keyup",this.onEscKeyRelease)}},o=["id"],l=["onClick"],r=["innerHTML"];function u(e){u.installed||(u.installed=!0,e.component("VueSimpleContextMenu",i))}i.render=function(e,n,i,u,d,c){var a=t.resolveDirective("click-outside");return t.openBlock(),t.createElementBlock("div",null,[t.withDirectives((t.openBlock(),t.createElementBlock("ul",{id:i.elementId,class:"vue-simple-context-menu"},[(t.openBlock(!0),t.createElementBlock(t.Fragment,null,t.renderList(i.options,(function(e,n){return t.openBlock(),t.createElementBlock("li",{key:n,onClick:t.withModifiers((function(t){return c.optionClicked(e)}),["stop"]),class:t.normalizeClass(["vue-simple-context-menu__item",[e.class,"divider"===e.type?"vue-simple-context-menu__divider":""]])},[t.createElementVNode("span",{innerHTML:e.name},null,8,r)],10,l)})),128))],8,o)),[[a,c.onClickOutside]])])},i.__file="src/vue-simple-context-menu.vue";var d={install:u},c=null;return"undefined"!=typeof window?c=window.Vue:"undefined"!=typeof global&&(c=global.Vue),c&&c.use(d),e.default=i,e.install=u,e}({},Vue); +var VueSimpleContextMenu=function(e,t){"use strict";"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;var n=function(e,t){return e(t={exports:{}},t.exports),t.exports}((function(e,t){var n,i,o,l,r,u,d,c;e.exports=(n="__v-click-outside",i="undefined"!=typeof window,o="undefined"!=typeof navigator,l=i&&("ontouchstart"in window||o&&navigator.msMaxTouchPoints>0)?["touchstart"]:["click"],r=function(e){var t=e.event,n=e.handler;(0,e.middleware)(t)&&n(t)},u=function(e,t){var i=function(e){var t="function"==typeof e;if(!t&&"object"!=typeof e)throw new Error("v-click-outside: Binding value must be a function or an object");return{handler:t?e:e.handler,middleware:e.middleware||function(e){return e},events:e.events||l,isActive:!(!1===e.isActive),detectIframe:!(!1===e.detectIframe),capture:Boolean(e.capture)}}(t.value),o=i.handler,u=i.middleware,d=i.detectIframe,c=i.capture;if(i.isActive){if(e[n]=i.events.map((function(t){return{event:t,srcTarget:document.documentElement,handler:function(t){return function(e){var t=e.el,n=e.event,i=e.handler,o=e.middleware,l=n.path||n.composedPath&&n.composedPath();(l?l.indexOf(t)<0:!t.contains(n.target))&&r({event:n,handler:i,middleware:o})}({el:e,event:t,handler:o,middleware:u})},capture:c}})),d){var a={event:"blur",srcTarget:window,handler:function(t){return function(e){var t=e.el,n=e.event,i=e.handler,o=e.middleware;setTimeout((function(){var e=document.activeElement;e&&"IFRAME"===e.tagName&&!t.contains(e)&&r({event:n,handler:i,middleware:o})}),0)}({el:e,event:t,handler:o,middleware:u})},capture:c};e[n]=[].concat(e[n],[a])}e[n].forEach((function(t){var i=t.event,o=t.srcTarget,l=t.handler;return setTimeout((function(){e[n]&&o.addEventListener(i,l,c)}),0)}))}},d=function(e){(e[n]||[]).forEach((function(e){return e.srcTarget.removeEventListener(e.event,e.handler,e.capture)})),delete e[n]},{install:function(e){e.directive("click-outside",c)},directive:c=i?{beforeMount:u,updated:function(e,t){var n=t.value,i=t.oldValue;JSON.stringify(n)!==JSON.stringify(i)&&(d(e),u(e,{value:n}))},unmounted:d}:{}})})),i={name:"VueSimpleContextMenu",props:{elementId:{type:String,required:!0},options:{type:Array,required:!0}},emits:["menu-closed","option-clicked"],directives:{"click-outside":n.directive},data:function(){return{item:null,menuHeight:null,menuWidth:null}},methods:{showMenu:function(e,t){this.item=t;var n=document.getElementById(this.elementId);n&&(this.menuWidth&&this.menuHeight||(n.style.visibility="hidden",n.style.display="block",this.menuWidth=n.offsetWidth,this.menuHeight=n.offsetHeight,n.removeAttribute("style")),this.menuWidth+e.pageX>=window.innerWidth?n.style.left=e.pageX-this.menuWidth+2+"px":n.style.left=e.pageX-2+"px",this.menuHeight+e.pageY>=window.innerHeight?n.style.top=e.pageY-this.menuHeight+2+"px":n.style.top=e.pageY-2+"px",n.classList.add("vue-simple-context-menu--active"))},hideContextMenu:function(){var e=document.getElementById(this.elementId);e&&(e.classList.remove("vue-simple-context-menu--active"),this.$emit("menu-closed"))},onClickOutside:function(){this.hideContextMenu()},optionClicked:function(e){this.hideContextMenu(),this.$emit("option-clicked",{item:this.item,option:e})},onEscKeyRelease:function(e){27===e.keyCode&&this.hideContextMenu()}},mounted:function(){document.body.addEventListener("keyup",this.onEscKeyRelease)},beforeUnmount:function(){document.removeEventListener("keyup",this.onEscKeyRelease)}},o=["id"],l=["onClick"],r=["innerHTML"];function u(e){u.installed||(u.installed=!0,e.component("VueSimpleContextMenu",i))}i.render=function(e,n,i,u,d,c){var a=t.resolveDirective("click-outside");return t.openBlock(),t.createElementBlock("div",null,[t.withDirectives((t.openBlock(),t.createElementBlock("ul",{id:i.elementId,class:"vue-simple-context-menu"},[(t.openBlock(!0),t.createElementBlock(t.Fragment,null,t.renderList(i.options,(function(e,n){return t.openBlock(),t.createElementBlock("li",{key:n,onClick:t.withModifiers((function(t){return c.optionClicked(e)}),["stop"]),class:t.normalizeClass(["vue-simple-context-menu__item",[e.class,"divider"===e.type?"vue-simple-context-menu__divider":""]])},[t.createElementVNode("span",{innerHTML:e.name},null,8,r)],10,l)})),128))],8,o)),[[a,c.onClickOutside]])])},i.__file="src/vue-simple-context-menu.vue";var d={install:u},c=null;return"undefined"!=typeof window?c=window.Vue:"undefined"!=typeof global&&(c=global.Vue),c&&c.use(d),e.default=i,e.install=u,e}({},Vue); diff --git a/dist/vue-simple-context-menu.umd.js b/dist/vue-simple-context-menu.umd.js index 0d6edfb..3a3ae4b 100644 --- a/dist/vue-simple-context-menu.umd.js +++ b/dist/vue-simple-context-menu.umd.js @@ -16,29 +16,26 @@ }); var script = { - name: "VueSimpleContextMenu", + name: 'VueSimpleContextMenu', props: { elementId: { type: String, - required: true + required: true, }, options: { type: Array, - required: true - } + required: true, + }, }, - emits: [ - 'menu-closed', - 'option-clicked' - ], + emits: ['menu-closed', 'option-clicked'], directives: { - 'click-outside': vClickOutside_umd.directive + 'click-outside': vClickOutside_umd.directive, }, data: function data() { return { item: null, + menuHeight: null, menuWidth: null, - menuHeight: null }; }, methods: { @@ -51,32 +48,32 @@ } if (!this.menuWidth || !this.menuHeight) { - menu.style.visibility = "hidden"; - menu.style.display = "block"; + menu.style.visibility = 'hidden'; + menu.style.display = 'block'; this.menuWidth = menu.offsetWidth; this.menuHeight = menu.offsetHeight; - menu.removeAttribute("style"); + menu.removeAttribute('style'); } if (this.menuWidth + event.pageX >= window.innerWidth) { - menu.style.left = event.pageX - this.menuWidth + 2 + "px"; + menu.style.left = event.pageX - this.menuWidth + 2 + 'px'; } else { - menu.style.left = event.pageX - 2 + "px"; + menu.style.left = event.pageX - 2 + 'px'; } if (this.menuHeight + event.pageY >= window.innerHeight) { - menu.style.top = event.pageY - this.menuHeight + 2 + "px"; + menu.style.top = event.pageY - this.menuHeight + 2 + 'px'; } else { - menu.style.top = event.pageY - 2 + "px"; + menu.style.top = event.pageY - 2 + 'px'; } - menu.classList.add("vue-simple-context-menu--active"); + menu.classList.add('vue-simple-context-menu--active'); }, hideContextMenu: function hideContextMenu() { var element = document.getElementById(this.elementId); if (element) { - element.classList.remove("vue-simple-context-menu--active"); - this.$emit("menu-closed"); + element.classList.remove('vue-simple-context-menu--active'); + this.$emit('menu-closed'); } }, onClickOutside: function onClickOutside() { @@ -84,23 +81,23 @@ }, optionClicked: function optionClicked(option) { this.hideContextMenu(); - this.$emit("option-clicked", { + this.$emit('option-clicked', { item: this.item, - option: option + option: option, }); }, onEscKeyRelease: function onEscKeyRelease(event) { if (event.keyCode === 27) { this.hideContextMenu(); } - } + }, }, mounted: function mounted() { - document.body.addEventListener("keyup", this.onEscKeyRelease); + document.body.addEventListener('keyup', this.onEscKeyRelease); }, beforeUnmount: function beforeUnmount() { - document.removeEventListener("keyup", this.onEscKeyRelease); - } + document.removeEventListener('keyup', this.onEscKeyRelease); + }, }; var _hoisted_1 = ["id"]; @@ -119,10 +116,7 @@ return (vue.openBlock(), vue.createElementBlock("li", { key: index, onClick: vue.withModifiers(function ($event) { return ($options.optionClicked(option)); }, ["stop"]), - class: vue.normalizeClass(["vue-simple-context-menu__item", [ - option.class, - option.type === 'divider' ? 'vue-simple-context-menu__divider' : '' - ]]) + class: vue.normalizeClass(["vue-simple-context-menu__item", [option.class, option.type === 'divider' ? 'vue-simple-context-menu__divider' : '']]) }, [ vue.createElementVNode("span", { innerHTML: option.name @@ -140,19 +134,18 @@ // Import vue component - // install function executed by app.use() - function install (app) { + // Install function executed by app.use() + function install(app) { if (install.installed) { return; } + install.installed = true; app.component('VueSimpleContextMenu', script); } // Create module definition for Vue.use() - var plugin = { - install: install, - }; + var plugin = { install: install }; - // To auto-install when vue is found + // To auto-install when Vue is found var GlobalVue = null; if (typeof window !== 'undefined') { GlobalVue = window.Vue; diff --git a/docs/build.js b/docs/build.js index b0b20e6..37358b7 100644 --- a/docs/build.js +++ b/docs/build.js @@ -1 +1 @@ -!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/vue-simple-context-menu/",n(n.s=11)}([function(e,t,n){"use strict";(function(e){function o(e,t){const n=Object.create(null),o=e.split(",");for(let e=0;e!!n[e.toLowerCase()]:e=>!!n[e]}n.d(t,"a",(function(){return x})),n.d(t,"b",(function(){return S})),n.d(t,"c",(function(){return w})),n.d(t,"d",(function(){return C})),n.d(t,"e",(function(){return r})),n.d(t,"f",(function(){return X})),n.d(t,"g",(function(){return te})),n.d(t,"h",(function(){return ce})),n.d(t,"i",(function(){return N})),n.d(t,"j",(function(){return i})),n.d(t,"k",(function(){return le})),n.d(t,"l",(function(){return oe})),n.d(t,"m",(function(){return M})),n.d(t,"n",(function(){return ee})),n.d(t,"o",(function(){return u})),n.d(t,"p",(function(){return re})),n.d(t,"q",(function(){return A})),n.d(t,"r",(function(){return J})),n.d(t,"s",(function(){return F})),n.d(t,"t",(function(){return c})),n.d(t,"u",(function(){return g})),n.d(t,"v",(function(){return W})),n.d(t,"w",(function(){return I})),n.d(t,"x",(function(){return T})),n.d(t,"y",(function(){return D})),n.d(t,"z",(function(){return k})),n.d(t,"A",(function(){return z})),n.d(t,"B",(function(){return U})),n.d(t,"C",(function(){return K})),n.d(t,"D",(function(){return b})),n.d(t,"E",(function(){return V})),n.d(t,"F",(function(){return l})),n.d(t,"G",(function(){return $})),n.d(t,"H",(function(){return B})),n.d(t,"I",(function(){return v})),n.d(t,"J",(function(){return y})),n.d(t,"K",(function(){return _})),n.d(t,"L",(function(){return o})),n.d(t,"M",(function(){return h})),n.d(t,"N",(function(){return m})),n.d(t,"O",(function(){return a})),n.d(t,"P",(function(){return p})),n.d(t,"Q",(function(){return P})),n.d(t,"R",(function(){return O})),n.d(t,"S",(function(){return ne})),n.d(t,"T",(function(){return ie})),n.d(t,"U",(function(){return G}));const r={1:"TEXT",2:"CLASS",4:"STYLE",8:"PROPS",16:"FULL_PROPS",32:"HYDRATE_EVENTS",64:"STABLE_FRAGMENT",128:"KEYED_FRAGMENT",256:"UNKEYED_FRAGMENT",512:"NEED_PATCH",1024:"DYNAMIC_SLOTS",2048:"DEV_ROOT_FRAGMENT",[-1]:"HOISTED",[-2]:"BAIL"},c=o("Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt");function i(e,t=0,n=e.length){let o=e.split(/(\r?\n)/);const r=o.filter((e,t)=>t%2==1);o=o.filter((e,t)=>t%2==0);let c=0;const i=[];for(let e=0;e=t){for(let s=e-2;s<=e+2||n>c;s++){if(s<0||s>=o.length)continue;const l=s+1;i.push(`${l}${" ".repeat(Math.max(3-String(l).length,0))}| ${o[s]}`);const u=o[s].length,a=r[s]&&r[s].length||0;if(s===e){const e=t-(c-(u+a)),o=Math.max(1,n>c?u-e:n-t);i.push(" | "+" ".repeat(e)+"^".repeat(o))}else if(s>e){if(n>c){const e=Math.max(Math.min(n-c,u),1);i.push(" | "+"^".repeat(e))}c+=u+a}}break}return i.join("\n")}const s="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",l=o(s);function u(e){return!!e||""===e}function a(e){if(A(e)){const t={};for(let n=0;n{if(e){const n=e.split(f);n.length>1&&(t[n[0].trim()]=n[1].trim())}}),t}function h(e){let t="";if($(e))t=e;else if(A(e))for(let n=0;ny(e,t))}const O=e=>$(e)?e:null==e?"":A(e)||D(e)&&(e.toString===q||!F(e.toString))?JSON.stringify(e,j,2):String(e),j=(e,t)=>t&&t.__v_isRef?j(e,t.value):I(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((e,[t,n])=>(e[t+" =>"]=n,e),{})}:V(t)?{[`Set(${t.size})`]:[...t.values()]}:!D(t)||A(t)||z(t)?t:String(t),S={},x=[],C=()=>{},w=()=>!1,E=/^on[^a-z]/,k=e=>E.test(e),T=e=>e.startsWith("onUpdate:"),N=Object.assign,P=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},R=Object.prototype.hasOwnProperty,M=(e,t)=>R.call(e,t),A=Array.isArray,I=e=>"[object Map]"===H(e),V=e=>"[object Set]"===H(e),L=e=>e instanceof Date,F=e=>"function"==typeof e,$=e=>"string"==typeof e,B=e=>"symbol"==typeof e,D=e=>null!==e&&"object"==typeof e,U=e=>D(e)&&F(e.then)&&F(e.catch),q=Object.prototype.toString,H=e=>q.call(e),G=e=>H(e).slice(8,-1),z=e=>"[object Object]"===H(e),W=e=>$(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,K=o(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),J=o("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"),Y=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Q=/-(\w)/g,X=Y(e=>e.replace(Q,(e,t)=>t?t.toUpperCase():"")),Z=/\B([A-Z])/g,ee=Y(e=>e.replace(Z,"-$1").toLowerCase()),te=Y(e=>e.charAt(0).toUpperCase()+e.slice(1)),ne=Y(e=>e?"on"+te(e):""),oe=(e,t)=>!Object.is(e,t),re=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},ie=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let se;const le=()=>se||(se="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:{})}).call(this,n(4))},function(e,t,n){"use strict";n.d(t,"g",(function(){return r.M})),n.d(t,"l",(function(){return r.R})),n.d(t,"a",(function(){return Ho})),n.d(t,"c",(function(){return nr})),n.d(t,"d",(function(){return ar})),n.d(t,"e",(function(){return gr})),n.d(t,"f",(function(){return dr})),n.d(t,"h",(function(){return Yo})),n.d(t,"i",(function(){return Sr})),n.d(t,"j",(function(){return Fo})),n.d(t,"k",(function(){return Do})),n.d(t,"m",(function(){return bo})),n.d(t,"b",(function(){return $i})),n.d(t,"n",(function(){return Ei}));var o={};n.r(o),n.d(o,"EffectScope",(function(){return i})),n.d(o,"ReactiveEffect",(function(){return _})),n.d(o,"customRef",(function(){return Ge})),n.d(o,"effect",(function(){return j})),n.d(o,"effectScope",(function(){return s})),n.d(o,"getCurrentScope",(function(){return u})),n.d(o,"isProxy",(function(){return ke})),n.d(o,"isReactive",(function(){return Ce})),n.d(o,"isReadonly",(function(){return we})),n.d(o,"isRef",(function(){return Ie})),n.d(o,"isShallow",(function(){return Ee})),n.d(o,"markRaw",(function(){return Ne})),n.d(o,"onScopeDispose",(function(){return a})),n.d(o,"proxyRefs",(function(){return qe})),n.d(o,"reactive",(function(){return _e})),n.d(o,"readonly",(function(){return je})),n.d(o,"ref",(function(){return Ve})),n.d(o,"shallowReactive",(function(){return Oe})),n.d(o,"shallowReadonly",(function(){return Se})),n.d(o,"shallowRef",(function(){return Le})),n.d(o,"stop",(function(){return S})),n.d(o,"toRaw",(function(){return Te})),n.d(o,"toRef",(function(){return Ke})),n.d(o,"toRefs",(function(){return ze})),n.d(o,"triggerRef",(function(){return Be})),n.d(o,"unref",(function(){return De})),n.d(o,"camelize",(function(){return r.f})),n.d(o,"capitalize",(function(){return r.g})),n.d(o,"normalizeClass",(function(){return r.M})),n.d(o,"normalizeProps",(function(){return r.N})),n.d(o,"normalizeStyle",(function(){return r.O})),n.d(o,"toDisplayString",(function(){return r.R})),n.d(o,"toHandlerKey",(function(){return r.S})),n.d(o,"BaseTransition",(function(){return mn})),n.d(o,"Comment",(function(){return zo})),n.d(o,"Fragment",(function(){return Ho})),n.d(o,"KeepAlive",(function(){return En})),n.d(o,"Static",(function(){return Wo})),n.d(o,"Suspense",(function(){return Jt})),n.d(o,"Teleport",(function(){return Lo})),n.d(o,"Text",(function(){return Go})),n.d(o,"callWithAsyncErrorHandling",(function(){return et})),n.d(o,"callWithErrorHandling",(function(){return Ze})),n.d(o,"cloneVNode",(function(){return hr})),n.d(o,"compatUtils",(function(){return yc})),n.d(o,"computed",(function(){return Zr})),n.d(o,"createBlock",(function(){return or})),n.d(o,"createCommentVNode",(function(){return br})),n.d(o,"createElementBlock",(function(){return nr})),n.d(o,"createElementVNode",(function(){return ar})),n.d(o,"createHydrationRenderer",(function(){return To})),n.d(o,"createPropsRestProxy",(function(){return lc})),n.d(o,"createRenderer",(function(){return ko})),n.d(o,"createSlots",(function(){return xr})),n.d(o,"createStaticVNode",(function(){return gr})),n.d(o,"createTextVNode",(function(){return mr})),n.d(o,"createVNode",(function(){return dr})),n.d(o,"defineAsyncComponent",(function(){return xn})),n.d(o,"defineComponent",(function(){return jn})),n.d(o,"defineEmits",(function(){return tc})),n.d(o,"defineExpose",(function(){return nc})),n.d(o,"defineProps",(function(){return ec})),n.d(o,"devtools",(function(){return xt})),n.d(o,"getCurrentInstance",(function(){return Ir})),n.d(o,"getTransitionRawChildren",(function(){return On})),n.d(o,"guardReactiveProps",(function(){return pr})),n.d(o,"h",(function(){return ac})),n.d(o,"handleError",(function(){return tt})),n.d(o,"initCustomFormatter",(function(){return pc})),n.d(o,"inject",(function(){return nn})),n.d(o,"isMemoSame",(function(){return mc})),n.d(o,"isRuntimeOnly",(function(){return Gr})),n.d(o,"isVNode",(function(){return rr})),n.d(o,"mergeDefaults",(function(){return sc})),n.d(o,"mergeProps",(function(){return Or})),n.d(o,"nextTick",(function(){return mt})),n.d(o,"onActivated",(function(){return Tn})),n.d(o,"onBeforeMount",(function(){return Ln})),n.d(o,"onBeforeUnmount",(function(){return Dn})),n.d(o,"onBeforeUpdate",(function(){return $n})),n.d(o,"onDeactivated",(function(){return Nn})),n.d(o,"onErrorCaptured",(function(){return zn})),n.d(o,"onMounted",(function(){return Fn})),n.d(o,"onRenderTracked",(function(){return Gn})),n.d(o,"onRenderTriggered",(function(){return Hn})),n.d(o,"onServerPrefetch",(function(){return qn})),n.d(o,"onUnmounted",(function(){return Un})),n.d(o,"onUpdated",(function(){return Bn})),n.d(o,"openBlock",(function(){return Yo})),n.d(o,"popScopeId",(function(){return Bt})),n.d(o,"provide",(function(){return tn})),n.d(o,"pushScopeId",(function(){return $t})),n.d(o,"queuePostFlushCb",(function(){return yt})),n.d(o,"registerRuntimeCompiler",(function(){return Hr})),n.d(o,"renderList",(function(){return Sr})),n.d(o,"renderSlot",(function(){return Cr})),n.d(o,"resolveComponent",(function(){return Fo})),n.d(o,"resolveDirective",(function(){return Do})),n.d(o,"resolveDynamicComponent",(function(){return Bo})),n.d(o,"resolveFilter",(function(){return vc})),n.d(o,"resolveTransitionHooks",(function(){return bn})),n.d(o,"setBlockTracking",(function(){return er})),n.d(o,"setDevtoolsHook",(function(){return kt})),n.d(o,"setTransitionHooks",(function(){return _n})),n.d(o,"ssrContextKey",(function(){return dc})),n.d(o,"ssrUtils",(function(){return bc})),n.d(o,"toHandlers",(function(){return wr})),n.d(o,"transformVNodeArgs",(function(){return ir})),n.d(o,"useAttrs",(function(){return cc})),n.d(o,"useSSRContext",(function(){return fc})),n.d(o,"useSlots",(function(){return rc})),n.d(o,"useTransitionState",(function(){return pn})),n.d(o,"version",(function(){return gc})),n.d(o,"warn",(function(){return Qe})),n.d(o,"watch",(function(){return ln})),n.d(o,"watchEffect",(function(){return on})),n.d(o,"watchPostEffect",(function(){return rn})),n.d(o,"watchSyncEffect",(function(){return cn})),n.d(o,"withAsyncContext",(function(){return uc})),n.d(o,"withCtx",(function(){return Ut})),n.d(o,"withDefaults",(function(){return oc})),n.d(o,"withDirectives",(function(){return bo})),n.d(o,"withMemo",(function(){return hc})),n.d(o,"withScopeId",(function(){return Dt})),n.d(o,"Transition",(function(){return Hc})),n.d(o,"TransitionGroup",(function(){return li})),n.d(o,"VueElement",(function(){return Bc})),n.d(o,"createApp",(function(){return $i})),n.d(o,"createSSRApp",(function(){return Bi})),n.d(o,"defineCustomElement",(function(){return Lc})),n.d(o,"defineSSRCustomElement",(function(){return Fc})),n.d(o,"hydrate",(function(){return Fi})),n.d(o,"initDirectivesForSSR",(function(){return qi})),n.d(o,"render",(function(){return Li})),n.d(o,"useCssModule",(function(){return Dc})),n.d(o,"useCssVars",(function(){return Uc})),n.d(o,"vModelCheckbox",(function(){return gi})),n.d(o,"vModelDynamic",(function(){return Si})),n.d(o,"vModelRadio",(function(){return vi})),n.d(o,"vModelSelect",(function(){return yi})),n.d(o,"vModelText",(function(){return mi})),n.d(o,"vShow",(function(){return Ni})),n.d(o,"withKeys",(function(){return Ti})),n.d(o,"withModifiers",(function(){return Ei}));var r=n(0);let c;class i{constructor(e=!1){this.active=!0,this.effects=[],this.cleanups=[],!e&&c&&(this.parent=c,this.index=(c.scopes||(c.scopes=[])).push(this)-1)}run(e){if(this.active)try{return c=this,e()}finally{c=this.parent}else 0}on(){c=this}off(){c=this.parent}stop(e){if(this.active){let t,n;for(t=0,n=this.effects.length;t{const t=new Set(e);return t.w=0,t.n=0,t},f=e=>(e.w&g)>0,p=e=>(e.n&g)>0,h=new WeakMap;let m=0,g=1;let b;const v=Symbol(""),y=Symbol("");class _{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],this.parent=void 0,l(this,n)}run(){if(!this.active)return this.fn();let e=b,t=x;for(;e;){if(e===this)return;e=e.parent}try{return this.parent=b,b=this,x=!0,g=1<<++m,m<=30?(({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o{("length"===t||t>=o)&&l.push(e)});else switch(void 0!==n&&l.push(s.get(n)),t){case"add":Object(r.q)(e)?Object(r.v)(n)&&l.push(s.get("length")):(l.push(s.get(v)),Object(r.w)(e)&&l.push(s.get(y)));break;case"delete":Object(r.q)(e)||(l.push(s.get(v)),Object(r.w)(e)&&l.push(s.get(y)));break;case"set":Object(r.w)(e)&&l.push(s.get(v))}if(1===l.length)l[0]&&P(l[0]);else{const e=[];for(const t of l)t&&e.push(...t);P(d(e))}}function P(e,t){for(const t of Object(r.q)(e)?e:[...e])(t!==b||t.allowRecurse)&&(t.scheduler?t.scheduler():t.run())}const R=Object(r.L)("__proto__,__v_isRef,__isVue"),M=new Set(Object.getOwnPropertyNames(Symbol).map(e=>Symbol[e]).filter(r.H)),A=B(),I=B(!1,!0),V=B(!0),L=B(!0,!0),F=$();function $(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...e){const n=Te(this);for(let e=0,t=this.length;e{e[t]=function(...e){w();const n=Te(this)[t].apply(this,e);return E(),n}}),e}function B(e=!1,t=!1){return function(n,o,c){if("__v_isReactive"===o)return!e;if("__v_isReadonly"===o)return e;if("__v_isShallow"===o)return t;if("__v_raw"===o&&c===(e?t?ye:ve:t?be:ge).get(n))return n;const i=Object(r.q)(n);if(!e&&i&&Object(r.m)(F,o))return Reflect.get(F,o,c);const s=Reflect.get(n,o,c);if(Object(r.H)(o)?M.has(o):R(o))return s;if(e||k(n,0,o),t)return s;if(Ie(s)){return!i||!Object(r.v)(o)?s.value:s}return Object(r.y)(s)?e?je(s):_e(s):s}}const D=q(),U=q(!0);function q(e=!1){return function(t,n,o,c){let i=t[n];if(we(i)&&Ie(i)&&!Ie(o))return!1;if(!e&&!we(o)&&(Ee(o)||(o=Te(o),i=Te(i)),!Object(r.q)(t)&&Ie(i)&&!Ie(o)))return i.value=o,!0;const s=Object(r.q)(t)&&Object(r.v)(n)?Number(n)!0,deleteProperty:(e,t)=>!0},z=Object(r.i)({},H,{get:I,set:U}),W=Object(r.i)({},G,{get:L}),K=e=>e,J=e=>Reflect.getPrototypeOf(e);function Y(e,t,n=!1,o=!1){const r=Te(e=e.__v_raw),c=Te(t);t!==c&&!n&&k(r,0,t),!n&&k(r,0,c);const{has:i}=J(r),s=o?K:n?Re:Pe;return i.call(r,t)?s(e.get(t)):i.call(r,c)?s(e.get(c)):void(e!==r&&e.get(t))}function Q(e,t=!1){const n=this.__v_raw,o=Te(n),r=Te(e);return e!==r&&!t&&k(o,0,e),!t&&k(o,0,r),e===r?n.has(e):n.has(e)||n.has(r)}function X(e,t=!1){return e=e.__v_raw,!t&&k(Te(e),0,v),Reflect.get(e,"size",e)}function Z(e){e=Te(e);const t=Te(this);return J(t).has.call(t,e)||(t.add(e),N(t,"add",e,e)),this}function ee(e,t){t=Te(t);const n=Te(this),{has:o,get:c}=J(n);let i=o.call(n,e);i||(e=Te(e),i=o.call(n,e));const s=c.call(n,e);return n.set(e,t),i?Object(r.l)(t,s)&&N(n,"set",e,t):N(n,"add",e,t),this}function te(e){const t=Te(this),{has:n,get:o}=J(t);let r=n.call(t,e);r||(e=Te(e),r=n.call(t,e));o&&o.call(t,e);const c=t.delete(e);return r&&N(t,"delete",e,void 0),c}function ne(){const e=Te(this),t=0!==e.size,n=e.clear();return t&&N(e,"clear",void 0,void 0),n}function oe(e,t){return function(n,o){const r=this,c=r.__v_raw,i=Te(c),s=t?K:e?Re:Pe;return!e&&k(i,0,v),c.forEach((e,t)=>n.call(o,s(e),s(t),r))}}function re(e,t,n){return function(...o){const c=this.__v_raw,i=Te(c),s=Object(r.w)(i),l="entries"===e||e===Symbol.iterator&&s,u="keys"===e&&s,a=c[e](...o),d=n?K:t?Re:Pe;return!t&&k(i,0,u?y:v),{next(){const{value:e,done:t}=a.next();return t?{value:e,done:t}:{value:l?[d(e[0]),d(e[1])]:d(e),done:t}},[Symbol.iterator](){return this}}}}function ce(e){return function(...t){return"delete"!==e&&this}}function ie(){const e={get(e){return Y(this,e)},get size(){return X(this)},has:Q,add:Z,set:ee,delete:te,clear:ne,forEach:oe(!1,!1)},t={get(e){return Y(this,e,!1,!0)},get size(){return X(this)},has:Q,add:Z,set:ee,delete:te,clear:ne,forEach:oe(!1,!0)},n={get(e){return Y(this,e,!0)},get size(){return X(this,!0)},has(e){return Q.call(this,e,!0)},add:ce("add"),set:ce("set"),delete:ce("delete"),clear:ce("clear"),forEach:oe(!0,!1)},o={get(e){return Y(this,e,!0,!0)},get size(){return X(this,!0)},has(e){return Q.call(this,e,!0)},add:ce("add"),set:ce("set"),delete:ce("delete"),clear:ce("clear"),forEach:oe(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(r=>{e[r]=re(r,!1,!1),n[r]=re(r,!0,!1),t[r]=re(r,!1,!0),o[r]=re(r,!0,!0)}),[e,n,t,o]}const[se,le,ue,ae]=ie();function de(e,t){const n=t?e?ae:ue:e?le:se;return(t,o,c)=>"__v_isReactive"===o?!e:"__v_isReadonly"===o?e:"__v_raw"===o?t:Reflect.get(Object(r.m)(n,o)&&o in t?n:t,o,c)}const fe={get:de(!1,!1)},pe={get:de(!1,!0)},he={get:de(!0,!1)},me={get:de(!0,!0)};const ge=new WeakMap,be=new WeakMap,ve=new WeakMap,ye=new WeakMap;function _e(e){return we(e)?e:xe(e,!1,H,fe,ge)}function Oe(e){return xe(e,!1,z,pe,be)}function je(e){return xe(e,!0,G,he,ve)}function Se(e){return xe(e,!0,W,me,ye)}function xe(e,t,n,o,c){if(!Object(r.y)(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const i=c.get(e);if(i)return i;const s=(l=e).__v_skip||!Object.isExtensible(l)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}(Object(r.U)(l));var l;if(0===s)return e;const u=new Proxy(e,2===s?o:n);return c.set(e,u),u}function Ce(e){return we(e)?Ce(e.__v_raw):!(!e||!e.__v_isReactive)}function we(e){return!(!e||!e.__v_isReadonly)}function Ee(e){return!(!e||!e.__v_isShallow)}function ke(e){return Ce(e)||we(e)}function Te(e){const t=e&&e.__v_raw;return t?Te(t):e}function Ne(e){return Object(r.h)(e,"__v_skip",!0),e}const Pe=e=>Object(r.y)(e)?_e(e):e,Re=e=>Object(r.y)(e)?je(e):e;function Me(e){x&&b&&T((e=Te(e)).dep||(e.dep=d()))}function Ae(e,t){(e=Te(e)).dep&&P(e.dep)}function Ie(e){return!(!e||!0!==e.__v_isRef)}function Ve(e){return Fe(e,!1)}function Le(e){return Fe(e,!0)}function Fe(e,t){return Ie(e)?e:new $e(e,t)}class $e{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:Te(e),this._value=t?e:Pe(e)}get value(){return Me(this),this._value}set value(e){e=this.__v_isShallow?e:Te(e),Object(r.l)(e,this._rawValue)&&(this._rawValue=e,this._value=this.__v_isShallow?e:Pe(e),Ae(this))}}function Be(e){Ae(e)}function De(e){return Ie(e)?e.value:e}const Ue={get:(e,t,n)=>De(Reflect.get(e,t,n)),set:(e,t,n,o)=>{const r=e[t];return Ie(r)&&!Ie(n)?(r.value=n,!0):Reflect.set(e,t,n,o)}};function qe(e){return Ce(e)?e:new Proxy(e,Ue)}class He{constructor(e){this.dep=void 0,this.__v_isRef=!0;const{get:t,set:n}=e(()=>Me(this),()=>Ae(this));this._get=t,this._set=n}get value(){return this._get()}set value(e){this._set(e)}}function Ge(e){return new He(e)}function ze(e){const t=Object(r.q)(e)?new Array(e.length):{};for(const n in e)t[n]=Ke(e,n);return t}class We{constructor(e,t,n){this._object=e,this._key=t,this._defaultValue=n,this.__v_isRef=!0}get value(){const e=this._object[this._key];return void 0===e?this._defaultValue:e}set value(e){this._object[this._key]=e}}function Ke(e,t,n){const o=e[t];return Ie(o)?o:new We(e,t,n)}class Je{constructor(e,t,n,o){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this._dirty=!0,this.effect=new _(e,()=>{this._dirty||(this._dirty=!0,Ae(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=n}get value(){const e=Te(this);return Me(e),!e._dirty&&e._cacheable||(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}Promise.resolve();const Ye=[];function Qe(e,...t){w();const n=Ye.length?Ye[Ye.length-1].component:null,o=n&&n.appContext.config.warnHandler,r=function(){let e=Ye[Ye.length-1];if(!e)return[];const t=[];for(;e;){const n=t[0];n&&n.vnode===e?n.recurseCount++:t.push({vnode:e,recurseCount:0});const o=e.component&&e.component.parent;e=o&&o.vnode}return t}();if(o)Ze(o,n,11,[e+t.join(""),n&&n.proxy,r.map(({vnode:e})=>`at <${Qr(n,e.type)}>`).join("\n"),r]);else{const n=["[Vue warn]: "+e,...t];r.length&&n.push("\n",...function(e){const t=[];return e.forEach((e,n)=>{t.push(...0===n?[]:["\n"],...function({vnode:e,recurseCount:t}){const n=t>0?`... (${t} recursive calls)`:"",o=!!e.component&&null==e.component.parent,r=" at <"+Qr(e.component,e.type,o),c=">"+n;return e.props?[r,...Xe(e.props),c]:[r+c]}(e))}),t}(r)),console.warn(...n)}E()}function Xe(e){const t=[],n=Object.keys(e);return n.slice(0,3).forEach(n=>{t.push(...function e(t,n,o){return Object(r.G)(n)?(n=JSON.stringify(n),o?n:[`${t}=${n}`]):"number"==typeof n||"boolean"==typeof n||null==n?o?n:[`${t}=${n}`]:Ie(n)?(n=e(t,Te(n.value),!0),o?n:[t+"=Ref<",n,">"]):Object(r.s)(n)?[`${t}=fn${n.name?`<${n.name}>`:""}`]:(n=Te(n),o?n:[t+"=",n])}(n,e[n]))}),n.length>3&&t.push(" ..."),t}function Ze(e,t,n,o){let r;try{r=o?e(...o):e()}catch(e){tt(e,t,n)}return r}function et(e,t,n,o){if(Object(r.s)(e)){const c=Ze(e,t,n,o);return c&&Object(r.B)(c)&&c.catch(e=>{tt(e,t,n)}),c}const c=[];for(let r=0;r>>1;jt(rt[o])jt(e)-jt(t)),dt=0;dtnull==e.id?1/0:e.id;function St(e){ot=!1,nt=!0,_t(e),rt.sort((e,t)=>jt(e)-jt(t));r.d;try{for(ct=0;ctxt.emit(e,...t)),Ct=[];else if("undefined"!=typeof window&&window.HTMLElement&&!(null===(o=null===(n=window.navigator)||void 0===n?void 0:n.userAgent)||void 0===o?void 0:o.includes("jsdom"))){(t.__VUE_DEVTOOLS_HOOK_REPLAY__=t.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(e=>{kt(e,t)}),setTimeout(()=>{xt||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,wt=!0,Ct=[])},3e3)}else wt=!0,Ct=[]}const Tt=Rt("component:added"),Nt=Rt("component:updated"),Pt=Rt("component:removed");function Rt(e){return t=>{Et(e,t.appContext.app,t.uid,t.parent?t.parent.uid:void 0,t)}}function Mt(e,t,...n){const o=e.vnode.props||r.b;let c=n;const i=t.startsWith("update:"),s=i&&t.slice(7);if(s&&s in o){const e=("modelValue"===s?"model":s)+"Modifiers",{number:t,trim:i}=o[e]||r.b;i?c=n.map(e=>e.trim()):t&&(c=n.map(r.T))}let l;__VUE_PROD_DEVTOOLS__&&function(e,t,n){Et("component:emit",e.appContext.app,e,t,n)}(e,t,c);let u=o[l=Object(r.S)(t)]||o[l=Object(r.S)(Object(r.f)(t))];!u&&i&&(u=o[l=Object(r.S)(Object(r.n)(t))]),u&&et(u,e,6,c);const a=o[l+"Once"];if(a){if(e.emitted){if(e.emitted[l])return}else e.emitted={};e.emitted[l]=!0,et(a,e,6,c)}}function At(e,t,n=!1){const o=t.emitsCache,c=o.get(e);if(void 0!==c)return c;const i=e.emits;let s={},l=!1;if(__VUE_OPTIONS_API__&&!Object(r.s)(e)){const o=e=>{const n=At(e,t,!0);n&&(l=!0,Object(r.i)(s,n))};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}return i||l?(Object(r.q)(i)?i.forEach(e=>s[e]=null):Object(r.i)(s,i),o.set(e,s),s):(o.set(e,null),null)}function It(e,t){return!(!e||!Object(r.z)(t))&&(t=t.slice(2).replace(/Once$/,""),Object(r.m)(e,t[0].toLowerCase()+t.slice(1))||Object(r.m)(e,Object(r.n)(t))||Object(r.m)(e,t))}let Vt=null,Lt=null;function Ft(e){const t=Vt;return Vt=e,Lt=e&&e.type.__scopeId||null,t}function $t(e){Lt=e}function Bt(){Lt=null}const Dt=e=>Ut;function Ut(e,t=Vt,n){if(!t)return e;if(e._n)return e;const o=(...n)=>{o._d&&er(-1);const r=Ft(t),c=e(...n);return Ft(r),o._d&&er(1),__VUE_PROD_DEVTOOLS__&&Nt(t),c};return o._n=!0,o._c=!0,o._d=!0,o}function qt(e){const{type:t,vnode:n,proxy:o,withProxy:c,props:i,propsOptions:[s],slots:l,attrs:u,emit:a,render:d,renderCache:f,data:p,setupState:h,ctx:m,inheritAttrs:g}=e;let b,v;const y=Ft(e);try{if(4&n.shapeFlag){const e=c||o;b=vr(d.call(e,e,f,i,h,p,m)),v=u}else{const e=t;0,b=vr(e.length>1?e(i,{attrs:u,slots:l,emit:a}):e(i,null)),v=t.props?u:Gt(u)}}catch(t){Ko.length=0,tt(t,e,1),b=dr(zo)}let _=b;if(v&&!1!==g){const e=Object.keys(v),{shapeFlag:t}=_;e.length&&7&t&&(s&&e.some(r.x)&&(v=zt(v,s)),_=hr(_,v))}return n.dirs&&(_.dirs=_.dirs?_.dirs.concat(n.dirs):n.dirs),n.transition&&(_.transition=n.transition),b=_,Ft(y),b}function Ht(e){let t;for(let n=0;n{let t;for(const n in e)("class"===n||"style"===n||Object(r.z)(n))&&((t||(t={}))[n]=e[n]);return t},zt=(e,t)=>{const n={};for(const o in e)Object(r.x)(o)&&o.slice(9)in t||(n[o]=e[o]);return n};function Wt(e,t,n){const o=Object.keys(t);if(o.length!==Object.keys(e).length)return!0;for(let r=0;r0?(Yt(e,"onPending"),Yt(e,"onFallback"),u(null,e.ssFallback,t,n,o,null,c,i),en(f,e.ssFallback)):f.resolve()}(t,n,o,r,c,i,s,l,u):function(e,t,n,o,r,c,i,s,{p:l,um:u,o:{createElement:a}}){const d=t.suspense=e.suspense;d.vnode=t,t.el=e.el;const f=t.ssContent,p=t.ssFallback,{activeBranch:h,pendingBranch:m,isInFallback:g,isHydrating:b}=d;if(m)d.pendingBranch=f,cr(f,m)?(l(m,f,d.hiddenContainer,null,r,d,c,i,s),d.deps<=0?d.resolve():g&&(l(h,p,n,o,r,null,c,i,s),en(d,p))):(d.pendingId++,b?(d.isHydrating=!1,d.activeBranch=m):u(m,r,d),d.deps=0,d.effects.length=0,d.hiddenContainer=a("div"),g?(l(null,f,d.hiddenContainer,null,r,d,c,i,s),d.deps<=0?d.resolve():(l(h,p,n,o,r,null,c,i,s),en(d,p))):h&&cr(f,h)?(l(h,f,n,o,r,d,c,i,s),d.resolve(!0)):(l(null,f,d.hiddenContainer,null,r,d,c,i,s),d.deps<=0&&d.resolve()));else if(h&&cr(f,h))l(h,f,n,o,r,d,c,i,s),en(d,f);else if(Yt(t,"onPending"),d.pendingBranch=f,d.pendingId++,l(null,f,d.hiddenContainer,null,r,d,c,i,s),d.deps<=0)d.resolve();else{const{timeout:e,pendingId:t}=d;e>0?setTimeout(()=>{d.pendingId===t&&d.fallback(p)},e):0===e&&d.fallback(p)}}(e,t,n,o,r,i,s,l,u)},hydrate:function(e,t,n,o,r,c,i,s,l){const u=t.suspense=Qt(t,o,n,e.parentNode,document.createElement("div"),null,r,c,i,s,!0),a=l(e,u.pendingBranch=t.ssContent,n,u,c,i);0===u.deps&&u.resolve();return a},create:Qt,normalize:function(e){const{shapeFlag:t,children:n}=e,o=32&t;e.ssContent=Xt(o?n.default:n),e.ssFallback=o?Xt(n.fallback):dr(zo)}};function Yt(e,t){const n=e.props&&e.props[t];Object(r.s)(n)&&n()}function Qt(e,t,n,o,c,i,s,l,u,a,d=!1){const{p:f,m:p,um:h,n:m,o:{parentNode:g,remove:b}}=a,v=Object(r.T)(e.props&&e.props.timeout),y={vnode:e,parent:t,parentComponent:n,isSVG:s,container:o,hiddenContainer:c,anchor:i,deps:0,pendingId:0,timeout:"number"==typeof v?v:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:d,isUnmounted:!1,effects:[],resolve(e=!1){const{vnode:t,activeBranch:n,pendingBranch:o,pendingId:r,effects:c,parentComponent:i,container:s}=y;if(y.isHydrating)y.isHydrating=!1;else if(!e){const e=n&&o.transition&&"out-in"===o.transition.mode;e&&(n.transition.afterLeave=()=>{r===y.pendingId&&p(o,s,t,0)});let{anchor:t}=y;n&&(t=m(n),h(n,i,y,!0)),e||p(o,s,t,0)}en(y,o),y.pendingBranch=null,y.isInFallback=!1;let l=y.parent,u=!1;for(;l;){if(l.pendingBranch){l.effects.push(...c),u=!0;break}l=l.parent}u||yt(c),y.effects=[],Yt(t,"onResolve")},fallback(e){if(!y.pendingBranch)return;const{vnode:t,activeBranch:n,parentComponent:o,container:r,isSVG:c}=y;Yt(t,"onFallback");const i=m(n),s=()=>{y.isInFallback&&(f(null,e,r,i,o,null,c,l,u),en(y,e))},a=e.transition&&"out-in"===e.transition.mode;a&&(n.transition.afterLeave=s),y.isInFallback=!0,h(n,o,null,!0),a||s()},move(e,t,n){y.activeBranch&&p(y.activeBranch,e,t,n),y.container=e},next:()=>y.activeBranch&&m(y.activeBranch),registerDep(e,t){const n=!!y.pendingBranch;n&&y.deps++;const o=e.vnode.el;e.asyncDep.catch(t=>{tt(t,e,0)}).then(r=>{if(e.isUnmounted||y.isUnmounted||y.pendingId!==e.suspenseId)return;e.asyncResolved=!0;const{vnode:c}=e;qr(e,r,!1),o&&(c.el=o);const i=!o&&e.subTree.el;t(e,c,g(o||e.subTree.el),o?null:m(e.subTree),y,s,u),i&&b(i),Kt(e,c.el),n&&0==--y.deps&&y.resolve()})},unmount(e,t){y.isUnmounted=!0,y.activeBranch&&h(y.activeBranch,n,e,t),y.pendingBranch&&h(y.pendingBranch,n,e,t)}};return y}function Xt(e){let t;if(Object(r.s)(e)){const n=Zo&&e._c;n&&(e._d=!1,Yo()),e=e(),n&&(e._d=!0,t=Jo,Qo())}if(Object(r.q)(e)){const t=Ht(e);0,e=t}return e=vr(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(t=>t!==e)),e}function Zt(e,t){t&&t.pendingBranch?Object(r.q)(e)?t.effects.push(...e):t.effects.push(e):yt(e)}function en(e,t){e.activeBranch=t;const{vnode:n,parentComponent:o}=e,r=n.el=t.el;o&&o.subTree===n&&(o.vnode.el=r,Kt(o,r))}function tn(e,t){if(Ar){let n=Ar.provides;const o=Ar.parent&&Ar.parent.provides;o===n&&(n=Ar.provides=Object.create(o)),n[e]=t}else 0}function nn(e,t,n=!1){const o=Ar||Vt;if(o){const c=null==o.parent?o.vnode.appContext&&o.vnode.appContext.provides:o.parent.provides;if(c&&e in c)return c[e];if(arguments.length>1)return n&&Object(r.s)(t)?t.call(o.proxy):t}else 0}function on(e,t){return un(e,null,t)}function rn(e,t){return un(e,null,{flush:"post"})}function cn(e,t){return un(e,null,{flush:"sync"})}const sn={};function ln(e,t,n){return un(e,t,n)}function un(e,t,{immediate:n,deep:o,flush:c,onTrack:i,onTrigger:s}=r.b){const l=Ar;let u,a,d=!1,f=!1;if(Ie(e)?(u=()=>e.value,d=Ee(e)):Ce(e)?(u=()=>e,o=!0):Object(r.q)(e)?(f=!0,d=e.some(Ce),u=()=>e.map(e=>Ie(e)?e.value:Ce(e)?fn(e):Object(r.s)(e)?Ze(e,l,2):void 0)):u=Object(r.s)(e)?t?()=>Ze(e,l,2):()=>{if(!l||!l.isUnmounted)return a&&a(),et(e,l,3,[p])}:r.d,t&&o){const e=u;u=()=>fn(e())}let p=e=>{a=b.onStop=()=>{Ze(e,l,4)}};if(Dr)return p=r.d,t?n&&et(t,l,3,[u(),f?[]:void 0,p]):u(),r.d;let h=f?[]:sn;const m=()=>{if(b.active)if(t){const e=b.run();(o||d||(f?e.some((e,t)=>Object(r.l)(e,h[t])):Object(r.l)(e,h)))&&(a&&a(),et(t,l,3,[e,h===sn?void 0:h,p]),h=e)}else b.run()};let g;m.allowRecurse=!!t,g="sync"===c?m:"post"===c?()=>Eo(m,l&&l.suspense):()=>{!l||l.isMounted?function(e){vt(e,st,it,lt)}(m):m()};const b=new _(u,g);return t?n?m():h=b.run():"post"===c?Eo(b.run.bind(b),l&&l.suspense):b.run(),()=>{b.stop(),l&&l.scope&&Object(r.Q)(l.scope.effects,b)}}function an(e,t,n){const o=this.proxy,c=Object(r.G)(e)?e.includes(".")?dn(o,e):()=>o[e]:e.bind(o,o);let i;Object(r.s)(t)?i=t:(i=t.handler,n=t);const s=Ar;Vr(this);const l=un(c,i.bind(o),n);return s?Vr(s):Lr(),l}function dn(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e{fn(e,t)});else if(Object(r.A)(e))for(const n in e)fn(e[n],t);return e}function pn(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Fn(()=>{e.isMounted=!0}),Dn(()=>{e.isUnmounting=!0}),e}const hn=[Function,Array],mn={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:hn,onEnter:hn,onAfterEnter:hn,onEnterCancelled:hn,onBeforeLeave:hn,onLeave:hn,onAfterLeave:hn,onLeaveCancelled:hn,onBeforeAppear:hn,onAppear:hn,onAfterAppear:hn,onAppearCancelled:hn},setup(e,{slots:t}){const n=Ir(),o=pn();let r;return()=>{const c=t.default&&On(t.default(),!0);if(!c||!c.length)return;const i=Te(e),{mode:s}=i;const l=c[0];if(o.isLeaving)return vn(l);const u=yn(l);if(!u)return vn(l);const a=bn(u,i,o,n);_n(u,a);const d=n.subTree,f=d&&yn(d);let p=!1;const{getTransitionKey:h}=u.type;if(h){const e=h();void 0===r?r=e:e!==r&&(r=e,p=!0)}if(f&&f.type!==zo&&(!cr(u,f)||p)){const e=bn(f,i,o,n);if(_n(f,e),"out-in"===s)return o.isLeaving=!0,e.afterLeave=()=>{o.isLeaving=!1,n.update()},vn(l);"in-out"===s&&u.type!==zo&&(e.delayLeave=(e,t,n)=>{gn(o,f)[String(f.key)]=f,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete a.delayedLeave},a.delayedLeave=n})}return l}}};function gn(e,t){const{leavingVNodes:n}=e;let o=n.get(t.type);return o||(o=Object.create(null),n.set(t.type,o)),o}function bn(e,t,n,o){const{appear:r,mode:c,persisted:i=!1,onBeforeEnter:s,onEnter:l,onAfterEnter:u,onEnterCancelled:a,onBeforeLeave:d,onLeave:f,onAfterLeave:p,onLeaveCancelled:h,onBeforeAppear:m,onAppear:g,onAfterAppear:b,onAppearCancelled:v}=t,y=String(e.key),_=gn(n,e),O=(e,t)=>{e&&et(e,o,9,t)},j={mode:c,persisted:i,beforeEnter(t){let o=s;if(!n.isMounted){if(!r)return;o=m||s}t._leaveCb&&t._leaveCb(!0);const c=_[y];c&&cr(e,c)&&c.el._leaveCb&&c.el._leaveCb(),O(o,[t])},enter(e){let t=l,o=u,c=a;if(!n.isMounted){if(!r)return;t=g||l,o=b||u,c=v||a}let i=!1;const s=e._enterCb=t=>{i||(i=!0,O(t?c:o,[e]),j.delayedLeave&&j.delayedLeave(),e._enterCb=void 0)};t?(t(e,s),t.length<=1&&s()):s()},leave(t,o){const r=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return o();O(d,[t]);let c=!1;const i=t._leaveCb=n=>{c||(c=!0,o(),O(n?h:p,[t]),t._leaveCb=void 0,_[r]===e&&delete _[r])};_[r]=e,f?(f(t,i),f.length<=1&&i()):i()},clone:e=>bn(e,t,n,o)};return j}function vn(e){if(wn(e))return(e=hr(e)).children=null,e}function yn(e){return wn(e)?e.children?e.children[0]:void 0:e}function _n(e,t){6&e.shapeFlag&&e.component?_n(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function On(e,t=!1){let n=[],o=0;for(let r=0;r1)for(let e=0;e!!e.type.__asyncLoader;function xn(e){Object(r.s)(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:o,delay:c=200,timeout:i,suspensible:s=!0,onError:l}=e;let u,a=null,d=0;const f=()=>{let e;return a||(e=a=t().catch(e=>{if(e=e instanceof Error?e:new Error(String(e)),l)return new Promise((t,n)=>{l(e,()=>t((d++,a=null,f())),()=>n(e),d+1)});throw e}).then(t=>e!==a&&a?a:(t&&(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),u=t,t)))};return jn({name:"AsyncComponentWrapper",__asyncLoader:f,get __asyncResolved(){return u},setup(){const e=Ar;if(u)return()=>Cn(u,e);const t=t=>{a=null,tt(t,e,13,!o)};if(s&&e.suspense||Dr)return f().then(t=>()=>Cn(t,e)).catch(e=>(t(e),()=>o?dr(o,{error:e}):null));const r=Ve(!1),l=Ve(),d=Ve(!!c);return c&&setTimeout(()=>{d.value=!1},c),null!=i&&setTimeout(()=>{if(!r.value&&!l.value){const e=new Error(`Async component timed out after ${i}ms.`);t(e),l.value=e}},i),f().then(()=>{r.value=!0,e.parent&&wn(e.parent.vnode)&>(e.parent.update)}).catch(e=>{t(e),l.value=e}),()=>r.value&&u?Cn(u,e):l.value&&o?dr(o,{error:l.value}):n&&!d.value?dr(n):void 0}})}function Cn(e,{vnode:{ref:t,props:n,children:o}}){const r=dr(e,n,o);return r.ref=t,r}const wn=e=>e.type.__isKeepAlive,En={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Ir(),o=n.ctx;if(!o.renderer)return t.default;const c=new Map,i=new Set;let s=null;__VUE_PROD_DEVTOOLS__&&(n.__v_cache=c);const l=n.suspense,{renderer:{p:u,m:a,um:d,o:{createElement:f}}}=o,p=f("div");function h(e){Mn(e),d(e,n,l,!0)}function m(e){c.forEach((t,n)=>{const o=Yr(t.type);!o||e&&e(o)||g(n)})}function g(e){const t=c.get(e);s&&t.type===s.type?s&&Mn(s):h(t),c.delete(e),i.delete(e)}o.activate=(e,t,n,o,c)=>{const i=e.component;a(e,t,n,0,l),u(i.vnode,e,t,n,i,l,o,e.slotScopeIds,c),Eo(()=>{i.isDeactivated=!1,i.a&&Object(r.p)(i.a);const t=e.props&&e.props.onVnodeMounted;t&&jr(t,i.parent,e)},l),__VUE_PROD_DEVTOOLS__&&Tt(i)},o.deactivate=e=>{const t=e.component;a(e,p,null,1,l),Eo(()=>{t.da&&Object(r.p)(t.da);const n=e.props&&e.props.onVnodeUnmounted;n&&jr(n,t.parent,e),t.isDeactivated=!0},l),__VUE_PROD_DEVTOOLS__&&Tt(t)},ln(()=>[e.include,e.exclude],([e,t])=>{e&&m(t=>kn(e,t)),t&&m(e=>!kn(t,e))},{flush:"post",deep:!0});let b=null;const v=()=>{null!=b&&c.set(b,An(n.subTree))};return Fn(v),Bn(v),Dn(()=>{c.forEach(e=>{const{subTree:t,suspense:o}=n,r=An(t);if(e.type!==r.type)h(e);else{Mn(r);const e=r.component.da;e&&Eo(e,o)}})}),()=>{if(b=null,!t.default)return null;const n=t.default(),o=n[0];if(n.length>1)return s=null,n;if(!(rr(o)&&(4&o.shapeFlag||128&o.shapeFlag)))return s=null,o;let r=An(o);const l=r.type,u=Yr(Sn(r)?r.type.__asyncResolved||{}:l),{include:a,exclude:d,max:f}=e;if(a&&(!u||!kn(a,u))||d&&u&&kn(d,u))return s=r,o;const p=null==r.key?l:r.key,h=c.get(p);return r.el&&(r=hr(r),128&o.shapeFlag&&(o.ssContent=r)),b=p,h?(r.el=h.el,r.component=h.component,r.transition&&_n(r,r.transition),r.shapeFlag|=512,i.delete(p),i.add(p)):(i.add(p),f&&i.size>parseInt(f,10)&&g(i.values().next().value)),r.shapeFlag|=256,s=r,o}}};function kn(e,t){return Object(r.q)(e)?e.some(e=>kn(e,t)):Object(r.G)(e)?e.split(",").includes(t):!!e.test&&e.test(t)}function Tn(e,t){Pn(e,"a",t)}function Nn(e,t){Pn(e,"da",t)}function Pn(e,t,n=Ar){const o=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(In(t,o,n),n){let e=n.parent;for(;e&&e.parent;)wn(e.parent.vnode)&&Rn(o,t,n,e),e=e.parent}}function Rn(e,t,n,o){const c=In(t,e,o,!0);Un(()=>{Object(r.Q)(o[t],c)},n)}function Mn(e){let t=e.shapeFlag;256&t&&(t-=256),512&t&&(t-=512),e.shapeFlag=t}function An(e){return 128&e.shapeFlag?e.ssContent:e}function In(e,t,n=Ar,o=!1){if(n){const r=n[e]||(n[e]=[]),c=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;w(),Vr(n);const r=et(t,n,e,o);return Lr(),E(),r});return o?r.unshift(c):r.push(c),c}}const Vn=e=>(t,n=Ar)=>(!Dr||"sp"===e)&&In(e,t,n),Ln=Vn("bm"),Fn=Vn("m"),$n=Vn("bu"),Bn=Vn("u"),Dn=Vn("bum"),Un=Vn("um"),qn=Vn("sp"),Hn=Vn("rtg"),Gn=Vn("rtc");function zn(e,t=Ar){In("ec",e,t)}let Wn=!0;function Kn(e){const t=Qn(e),n=e.proxy,o=e.ctx;Wn=!1,t.beforeCreate&&Jn(t.beforeCreate,e,"bc");const{data:c,computed:i,methods:s,watch:l,provide:u,inject:a,created:d,beforeMount:f,mounted:p,beforeUpdate:h,updated:m,activated:g,deactivated:b,beforeDestroy:v,beforeUnmount:y,destroyed:_,unmounted:O,render:j,renderTracked:S,renderTriggered:x,errorCaptured:C,serverPrefetch:w,expose:E,inheritAttrs:k,components:T,directives:N,filters:P}=t;if(a&&function(e,t,n=r.d,o=!1){Object(r.q)(e)&&(e=to(e));for(const n in e){const c=e[n];let i;i=Object(r.y)(c)?"default"in c?nn(c.from||n,c.default,!0):nn(c.from||n):nn(c),Ie(i)&&o?Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:()=>i.value,set:e=>i.value=e}):t[n]=i}}(a,o,null,e.appContext.config.unwrapInjectedRef),s)for(const e in s){const t=s[e];Object(r.s)(t)&&(o[e]=t.bind(n))}if(c){0;const t=c.call(n,n);0,Object(r.y)(t)&&(e.data=_e(t))}if(Wn=!0,i)for(const e in i){const t=i[e],c=Object(r.s)(t)?t.bind(n,n):Object(r.s)(t.get)?t.get.bind(n,n):r.d;0;const s=!Object(r.s)(t)&&Object(r.s)(t.set)?t.set.bind(n):r.d,l=Zr({get:c,set:s});Object.defineProperty(o,e,{enumerable:!0,configurable:!0,get:()=>l.value,set:e=>l.value=e})}if(l)for(const e in l)Yn(l[e],o,n,e);if(u){const e=Object(r.s)(u)?u.call(n):u;Reflect.ownKeys(e).forEach(t=>{tn(t,e[t])})}function R(e,t){Object(r.q)(t)?t.forEach(t=>e(t.bind(n))):t&&e(t.bind(n))}if(d&&Jn(d,e,"c"),R(Ln,f),R(Fn,p),R($n,h),R(Bn,m),R(Tn,g),R(Nn,b),R(zn,C),R(Gn,S),R(Hn,x),R(Dn,y),R(Un,O),R(qn,w),Object(r.q)(E))if(E.length){const t=e.exposed||(e.exposed={});E.forEach(e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})})}else e.exposed||(e.exposed={});j&&e.render===r.d&&(e.render=j),null!=k&&(e.inheritAttrs=k),T&&(e.components=T),N&&(e.directives=N)}function Jn(e,t,n){et(Object(r.q)(e)?e.map(e=>e.bind(t.proxy)):e.bind(t.proxy),t,n)}function Yn(e,t,n,o){const c=o.includes(".")?dn(n,o):()=>n[o];if(Object(r.G)(e)){const n=t[e];Object(r.s)(n)&&ln(c,n)}else if(Object(r.s)(e))ln(c,e.bind(n));else if(Object(r.y)(e))if(Object(r.q)(e))e.forEach(e=>Yn(e,t,n,o));else{const o=Object(r.s)(e.handler)?e.handler.bind(n):t[e.handler];Object(r.s)(o)&&ln(c,o,e)}else 0}function Qn(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:r,optionsCache:c,config:{optionMergeStrategies:i}}=e.appContext,s=c.get(t);let l;return s?l=s:r.length||n||o?(l={},r.length&&r.forEach(e=>Xn(l,e,i,!0)),Xn(l,t,i)):l=t,c.set(t,l),l}function Xn(e,t,n,o=!1){const{mixins:r,extends:c}=t;c&&Xn(e,c,n,!0),r&&r.forEach(t=>Xn(e,t,n,!0));for(const r in t)if(o&&"expose"===r);else{const o=Zn[r]||n&&n[r];e[r]=o?o(e[r],t[r]):t[r]}return e}const Zn={data:eo,props:oo,emits:oo,methods:oo,computed:oo,beforeCreate:no,created:no,beforeMount:no,mounted:no,beforeUpdate:no,updated:no,beforeDestroy:no,beforeUnmount:no,destroyed:no,unmounted:no,activated:no,deactivated:no,errorCaptured:no,serverPrefetch:no,components:oo,directives:oo,watch:function(e,t){if(!e)return t;if(!t)return e;const n=Object(r.i)(Object.create(null),e);for(const o in t)n[o]=no(e[o],t[o]);return n},provide:eo,inject:function(e,t){return oo(to(e),to(t))}};function eo(e,t){return t?e?function(){return Object(r.i)(Object(r.s)(e)?e.call(this,this):e,Object(r.s)(t)?t.call(this,this):t)}:t:e}function to(e){if(Object(r.q)(e)){const t={};for(let n=0;n{u=!0;const[n,o]=io(e,t,!0);Object(r.i)(s,n),o&&l.push(...o)};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!i&&!u)return o.set(e,r.a),r.a;if(Object(r.q)(i))for(let e=0;e-1,o[1]=n<0||e-1||Object(r.m)(o,"default"))&&l.push(t)}}}}const a=[s,l];return o.set(e,a),a}function so(e){return"$"!==e[0]}function lo(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:null===e?"null":""}function uo(e,t){return lo(e)===lo(t)}function ao(e,t){return Object(r.q)(t)?t.findIndex(t=>uo(t,e)):Object(r.s)(t)&&uo(t,e)?0:-1}const fo=e=>"_"===e[0]||"$stable"===e,po=e=>Object(r.q)(e)?e.map(vr):[vr(e)],ho=(e,t,n)=>{const o=Ut((...e)=>po(t(...e)),n);return o._c=!1,o},mo=(e,t,n)=>{const o=e._ctx;for(const n in e){if(fo(n))continue;const c=e[n];if(Object(r.s)(c))t[n]=ho(0,c,o);else if(null!=c){0;const e=po(c);t[n]=()=>e}}},go=(e,t)=>{const n=po(t);e.slots.default=()=>n};function bo(e,t){if(null===Vt)return e;const n=Vt.proxy,o=e.dirs||(e.dirs=[]);for(let e=0;e(i.has(e)||(e&&Object(r.s)(e.install)?(i.add(e),e.install(l,...t)):Object(r.s)(e)&&(i.add(e),e(l,...t))),l),mixin:e=>(__VUE_OPTIONS_API__&&(c.mixins.includes(e)||c.mixins.push(e)),l),component:(e,t)=>t?(c.components[e]=t,l):c.components[e],directive:(e,t)=>t?(c.directives[e]=t,l):c.directives[e],mount(r,i,u){if(!s){const a=dr(n,o);return a.appContext=c,i&&t?t(a,r):e(a,r,u),s=!0,l._container=r,r.__vue_app__=l,__VUE_PROD_DEVTOOLS__&&(l._instance=a.component,function(e,t){Et("app:init",e,t,{Fragment:Ho,Text:Go,Comment:zo,Static:Wo})}(l,gc)),Kr(a.component)||a.component.proxy}},unmount(){s&&(e(null,l._container),__VUE_PROD_DEVTOOLS__&&(l._instance=null,function(e){Et("app:unmount",e)}(l)),delete l._container.__vue_app__)},provide:(e,t)=>(c.provides[e]=t,l)};return l}}function jo(e,t,n,o,c=!1){if(Object(r.q)(e))return void e.forEach((e,i)=>jo(e,t&&(Object(r.q)(t)?t[i]:t),n,o,c));if(Sn(o)&&!c)return;const i=4&o.shapeFlag?Kr(o.component)||o.component.proxy:o.el,s=c?null:i,{i:l,r:u}=e;const a=t&&t.r,d=l.refs===r.b?l.refs={}:l.refs,f=l.setupState;if(null!=a&&a!==u&&(Object(r.G)(a)?(d[a]=null,Object(r.m)(f,a)&&(f[a]=null)):Ie(a)&&(a.value=null)),Object(r.s)(u))Ze(u,l,12,[s,d]);else{const t=Object(r.G)(u),o=Ie(u);if(t||o){const o=()=>{if(e.f){const n=t?d[u]:u.value;c?Object(r.q)(n)&&Object(r.Q)(n,i):Object(r.q)(n)?n.includes(i)||n.push(i):t?d[u]=[i]:(u.value=[i],e.k&&(d[e.k]=u.value))}else t?(d[u]=s,Object(r.m)(f,u)&&(f[u]=s)):Ie(u)&&(u.value=s,e.k&&(d[e.k]=s))};s?(o.id=-1,Eo(o,n)):o()}else 0}}let So=!1;const xo=e=>/svg/.test(e.namespaceURI)&&"foreignObject"!==e.tagName,Co=e=>8===e.nodeType;function wo(e){const{mt:t,p:n,o:{patchProp:o,nextSibling:c,parentNode:i,remove:s,insert:l,createComment:u}}=e,a=(n,o,r,s,l,u=!1)=>{const g=Co(n)&&"["===n.data,b=()=>h(n,o,r,s,l,g),{type:v,ref:y,shapeFlag:_}=o,O=n.nodeType;o.el=n;let j=null;switch(v){case Go:3!==O?j=b():(n.data!==o.children&&(So=!0,n.data=o.children),j=c(n));break;case zo:j=8!==O||g?b():c(n);break;case Wo:if(1===O){j=n;const e=!o.children.length;for(let t=0;t{l=l||!!t.dynamicChildren;const{type:u,props:a,patchFlag:d,shapeFlag:p,dirs:h}=t,m="input"===u&&h||"option"===u;if(m||-1!==d){if(h&&vo(t,null,n,"created"),a)if(m||!l||48&d)for(const t in a)(m&&t.endsWith("value")||Object(r.z)(t)&&!Object(r.C)(t))&&o(e,t,null,a[t],!1,void 0,n);else a.onClick&&o(e,"onClick",null,a.onClick,!1,void 0,n);let u;if((u=a&&a.onVnodeBeforeMount)&&jr(u,n,t),h&&vo(t,null,n,"beforeMount"),((u=a&&a.onVnodeMounted)||h)&&Zt(()=>{u&&jr(u,n,t),h&&vo(t,null,n,"mounted")},c),16&p&&(!a||!a.innerHTML&&!a.textContent)){let o=f(e.firstChild,t,e,n,c,i,l);for(;o;){So=!0;const e=o;o=o.nextSibling,s(e)}}else 8&p&&e.textContent!==t.children&&(So=!0,e.textContent=t.children)}return e.nextSibling},f=(e,t,o,r,c,i,s)=>{s=s||!!t.dynamicChildren;const l=t.children,u=l.length;for(let t=0;t{const{slotScopeIds:a}=t;a&&(r=r?r.concat(a):a);const d=i(e),p=f(c(e),t,d,n,o,r,s);return p&&Co(p)&&"]"===p.data?c(t.anchor=p):(So=!0,l(t.anchor=u("]"),d,p),p)},h=(e,t,o,r,l,u)=>{if(So=!0,t.el=null,u){const t=m(e);for(;;){const n=c(e);if(!n||n===t)break;s(n)}}const a=c(e),d=i(e);return s(e),n(null,t,d,a,o,r,xo(d),l),a},m=e=>{let t=0;for(;e;)if((e=c(e))&&Co(e)&&("["===e.data&&t++,"]"===e.data)){if(0===t)return c(e);t--}return e};return[(e,t)=>{if(!t.hasChildNodes())return n(null,e,t),void Ot();So=!1,a(t.firstChild,e,null,null,null),Ot(),So&&console.error("Hydration completed but contains mismatches.")},a]}const Eo=Zt;function ko(e){return No(e)}function To(e){return No(e,wo)}function No(e,t){"boolean"!=typeof __VUE_OPTIONS_API__&&(Object(r.k)().__VUE_OPTIONS_API__=!0),"boolean"!=typeof __VUE_PROD_DEVTOOLS__&&(Object(r.k)().__VUE_PROD_DEVTOOLS__=!1);const n=Object(r.k)();n.__VUE__=!0,__VUE_PROD_DEVTOOLS__&&kt(n.__VUE_DEVTOOLS_GLOBAL_HOOK__,n);const{insert:o,remove:c,patchProp:i,createElement:s,createText:l,createComment:u,setText:a,setElementText:d,parentNode:f,nextSibling:p,setScopeId:h=r.d,cloneNode:m,insertStaticContent:g}=e,b=(e,t,n,o=null,r=null,c=null,i=!1,s=null,l=!!t.dynamicChildren)=>{if(e===t)return;e&&!cr(e,t)&&(o=K(e),q(e,r,c,!0),e=null),-2===t.patchFlag&&(l=!1,t.dynamicChildren=null);const{type:u,ref:a,shapeFlag:d}=t;switch(u){case Go:v(e,t,n,o);break;case zo:y(e,t,n,o);break;case Wo:null==e&&O(t,n,o,i);break;case Ho:M(e,t,n,o,r,c,i,s,l);break;default:1&d?S(e,t,n,o,r,c,i,s,l):6&d?A(e,t,n,o,r,c,i,s,l):(64&d||128&d)&&u.process(e,t,n,o,r,c,i,s,l,Y)}null!=a&&r&&jo(a,e&&e.ref,c,t||e,!t)},v=(e,t,n,r)=>{if(null==e)o(t.el=l(t.children),n,r);else{const n=t.el=e.el;t.children!==e.children&&a(n,t.children)}},y=(e,t,n,r)=>{null==e?o(t.el=u(t.children||""),n,r):t.el=e.el},O=(e,t,n,o)=>{[e.el,e.anchor]=g(e.children,t,n,o,e.el,e.anchor)},j=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=p(e),c(e),e=n;c(t)},S=(e,t,n,o,r,c,i,s,l)=>{i=i||"svg"===t.type,null==e?x(t,n,o,r,c,i,s,l):T(e,t,r,c,i,s,l)},x=(e,t,n,c,l,u,a,f)=>{let p,h;const{type:g,props:b,shapeFlag:v,transition:y,patchFlag:_,dirs:O}=e;if(e.el&&void 0!==m&&-1===_)p=e.el=m(e.el);else{if(p=e.el=s(e.type,u,b&&b.is,b),8&v?d(p,e.children):16&v&&k(e.children,p,null,c,l,u&&"foreignObject"!==g,a,f),O&&vo(e,null,c,"created"),b){for(const t in b)"value"===t||Object(r.C)(t)||i(p,t,null,b[t],u,e.children,c,l,W);"value"in b&&i(p,"value",null,b.value),(h=b.onVnodeBeforeMount)&&jr(h,c,e)}C(p,e,e.scopeId,a,c)}__VUE_PROD_DEVTOOLS__&&(Object.defineProperty(p,"__vnode",{value:e,enumerable:!1}),Object.defineProperty(p,"__vueParentComponent",{value:c,enumerable:!1})),O&&vo(e,null,c,"beforeMount");const j=(!l||l&&!l.pendingBranch)&&y&&!y.persisted;j&&y.beforeEnter(p),o(p,t,n),((h=b&&b.onVnodeMounted)||j||O)&&Eo(()=>{h&&jr(h,c,e),j&&y.enter(p),O&&vo(e,null,c,"mounted")},l)},C=(e,t,n,o,r)=>{if(n&&h(e,n),o)for(let t=0;t{for(let u=l;u{const u=t.el=e.el;let{patchFlag:a,dynamicChildren:f,dirs:p}=t;a|=16&e.patchFlag;const h=e.props||r.b,m=t.props||r.b;let g;n&&Po(n,!1),(g=m.onVnodeBeforeUpdate)&&jr(g,n,t,e),p&&vo(t,e,n,"beforeUpdate"),n&&Po(n,!0);const b=c&&"foreignObject"!==t.type;if(f?P(e.dynamicChildren,f,u,n,o,b,s):l||$(e,t,u,null,n,o,b,s,!1),a>0){if(16&a)R(u,t,h,m,n,o,c);else if(2&a&&h.class!==m.class&&i(u,"class",null,m.class,c),4&a&&i(u,"style",h.style,m.style,c),8&a){const r=t.dynamicProps;for(let t=0;t{g&&jr(g,n,t,e),p&&vo(t,e,n,"updated")},o)},P=(e,t,n,o,r,c,i)=>{for(let s=0;s{if(n!==o){for(const u in o){if(Object(r.C)(u))continue;const a=o[u],d=n[u];a!==d&&"value"!==u&&i(e,u,d,a,l,t.children,c,s,W)}if(n!==r.b)for(const u in n)Object(r.C)(u)||u in o||i(e,u,n[u],null,l,t.children,c,s,W);"value"in o&&i(e,"value",n.value,o.value)}},M=(e,t,n,r,c,i,s,u,a)=>{const d=t.el=e?e.el:l(""),f=t.anchor=e?e.anchor:l("");let{patchFlag:p,dynamicChildren:h,slotScopeIds:m}=t;m&&(u=u?u.concat(m):m),null==e?(o(d,n,r),o(f,n,r),k(t.children,n,f,c,i,s,u,a)):p>0&&64&p&&h&&e.dynamicChildren?(P(e.dynamicChildren,h,n,c,i,s,u),(null!=t.key||c&&t===c.subTree)&&Ro(e,t,!0)):$(e,t,n,f,c,i,s,u,a)},A=(e,t,n,o,r,c,i,s,l)=>{t.slotScopeIds=s,null==e?512&t.shapeFlag?r.ctx.activate(t,n,o,i,l):I(t,n,o,r,c,i,l):V(e,t,l)},I=(e,t,n,o,r,c,i)=>{const s=e.component=Mr(e,o,r);if(wn(e)&&(s.ctx.renderer=Y),Ur(s),s.asyncDep){if(r&&r.registerDep(s,L),!e.el){const e=s.subTree=dr(zo);y(null,e,t,n)}}else L(s,e,t,n,r,c,i)},V=(e,t,n)=>{const o=t.component=e.component;if(function(e,t,n){const{props:o,children:r,component:c}=e,{props:i,children:s,patchFlag:l}=t,u=c.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&l>=0))return!(!r&&!s||s&&s.$stable)||o!==i&&(o?!i||Wt(o,i,u):!!i);if(1024&l)return!0;if(16&l)return o?Wt(o,i,u):!!i;if(8&l){const e=t.dynamicProps;for(let t=0;tct&&rt.splice(t,1)}(o.update),o.update()}else t.component=e.component,t.el=e.el,o.vnode=t},L=(e,t,n,o,c,i,s)=>{const l=e.effect=new _(()=>{if(e.isMounted){let t,{next:n,bu:o,u:l,parent:u,vnode:a}=e,d=n;0,Po(e,!1),n?(n.el=a.el,F(e,n,s)):n=a,o&&Object(r.p)(o),(t=n.props&&n.props.onVnodeBeforeUpdate)&&jr(t,u,n,a),Po(e,!0);const p=qt(e);0;const h=e.subTree;e.subTree=p,b(h,p,f(h.el),K(h),e,c,i),n.el=p.el,null===d&&Kt(e,p.el),l&&Eo(l,c),(t=n.props&&n.props.onVnodeUpdated)&&Eo(()=>jr(t,u,n,a),c),__VUE_PROD_DEVTOOLS__&&Nt(e)}else{let s;const{el:l,props:u}=t,{bm:a,m:d,parent:f}=e,p=Sn(t);if(Po(e,!1),a&&Object(r.p)(a),!p&&(s=u&&u.onVnodeBeforeMount)&&jr(s,f,t),Po(e,!0),l&&X){const n=()=>{e.subTree=qt(e),X(l,e.subTree,e,c,null)};p?t.type.__asyncLoader().then(()=>!e.isUnmounted&&n()):n()}else{0;const r=e.subTree=qt(e);0,b(null,r,n,o,e,c,i),t.el=r.el}if(d&&Eo(d,c),!p&&(s=u&&u.onVnodeMounted)){const e=t;Eo(()=>jr(s,f,e),c)}256&t.shapeFlag&&e.a&&Eo(e.a,c),e.isMounted=!0,__VUE_PROD_DEVTOOLS__&&Tt(e),t=n=o=null}},()=>gt(e.update),e.scope),u=e.update=l.run.bind(l);u.id=e.uid,Po(e,!0),u()},F=(e,t,n)=>{t.component=e;const o=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,o){const{props:c,attrs:i,vnode:{patchFlag:s}}=e,l=Te(c),[u]=e.propsOptions;let a=!1;if(!(o||s>0)||16&s){let o;ro(e,t,c,i)&&(a=!0);for(const i in l)t&&(Object(r.m)(t,i)||(o=Object(r.n)(i))!==i&&Object(r.m)(t,o))||(u?!n||void 0===n[i]&&void 0===n[o]||(c[i]=co(u,l,i,void 0,e,!0)):delete c[i]);if(i!==l)for(const e in i)t&&Object(r.m)(t,e)||(delete i[e],a=!0)}else if(8&s){const n=e.vnode.dynamicProps;for(let o=0;o{const{vnode:o,slots:c}=e;let i=!0,s=r.b;if(32&o.shapeFlag){const e=t._;e?n&&1===e?i=!1:(Object(r.i)(c,t),n||1!==e||delete c._):(i=!t.$stable,mo(t,c)),s=t}else t&&(go(e,t),s={default:1});if(i)for(const e in c)fo(e)||e in s||delete c[e]})(e,t.children,n),w(),_t(void 0,e.update),E()},$=(e,t,n,o,r,c,i,s,l=!1)=>{const u=e&&e.children,a=e?e.shapeFlag:0,f=t.children,{patchFlag:p,shapeFlag:h}=t;if(p>0){if(128&p)return void D(u,f,n,o,r,c,i,s,l);if(256&p)return void B(u,f,n,o,r,c,i,s,l)}8&h?(16&a&&W(u,r,c),f!==u&&d(n,f)):16&a?16&h?D(u,f,n,o,r,c,i,s,l):W(u,r,c,!0):(8&a&&d(n,""),16&h&&k(f,n,o,r,c,i,s,l))},B=(e,t,n,o,c,i,s,l,u)=>{e=e||r.a,t=t||r.a;const a=e.length,d=t.length,f=Math.min(a,d);let p;for(p=0;pd?W(e,c,i,!0,!1,f):k(t,n,o,c,i,s,l,u,f)},D=(e,t,n,o,c,i,s,l,u)=>{let a=0;const d=t.length;let f=e.length-1,p=d-1;for(;a<=f&&a<=p;){const o=e[a],r=t[a]=u?yr(t[a]):vr(t[a]);if(!cr(o,r))break;b(o,r,n,null,c,i,s,l,u),a++}for(;a<=f&&a<=p;){const o=e[f],r=t[p]=u?yr(t[p]):vr(t[p]);if(!cr(o,r))break;b(o,r,n,null,c,i,s,l,u),f--,p--}if(a>f){if(a<=p){const e=p+1,r=ep)for(;a<=f;)q(e[a],c,i,!0),a++;else{const h=a,m=a,g=new Map;for(a=m;a<=p;a++){const e=t[a]=u?yr(t[a]):vr(t[a]);null!=e.key&&g.set(e.key,a)}let v,y=0;const _=p-m+1;let O=!1,j=0;const S=new Array(_);for(a=0;a<_;a++)S[a]=0;for(a=h;a<=f;a++){const o=e[a];if(y>=_){q(o,c,i,!0);continue}let r;if(null!=o.key)r=g.get(o.key);else for(v=m;v<=p;v++)if(0===S[v-m]&&cr(o,t[v])){r=v;break}void 0===r?q(o,c,i,!0):(S[r-m]=a+1,r>=j?j=r:O=!0,b(o,t[r],n,null,c,i,s,l,u),y++)}const x=O?function(e){const t=e.slice(),n=[0];let o,r,c,i,s;const l=e.length;for(o=0;o>1,e[n[s]]0&&(t[o]=n[c-1]),n[c]=o)}}c=n.length,i=n[c-1];for(;c-- >0;)n[c]=i,i=t[i];return n}(S):r.a;for(v=x.length-1,a=_-1;a>=0;a--){const e=m+a,r=t[e],f=e+1{const{el:i,type:s,transition:l,children:u,shapeFlag:a}=e;if(6&a)return void U(e.component.subTree,t,n,r);if(128&a)return void e.suspense.move(t,n,r);if(64&a)return void s.move(e,t,n,Y);if(s===Ho){o(i,t,n);for(let e=0;e{let c;for(;e&&e!==t;)c=p(e),o(e,n,r),e=c;o(t,n,r)})(e,t,n);if(2!==r&&1&a&&l)if(0===r)l.beforeEnter(i),o(i,t,n),Eo(()=>l.enter(i),c);else{const{leave:e,delayLeave:r,afterLeave:c}=l,s=()=>o(i,t,n),u=()=>{e(i,()=>{s(),c&&c()})};r?r(i,s,u):u()}else o(i,t,n)},q=(e,t,n,o=!1,r=!1)=>{const{type:c,props:i,ref:s,children:l,dynamicChildren:u,shapeFlag:a,patchFlag:d,dirs:f}=e;if(null!=s&&jo(s,null,n,e,!0),256&a)return void t.ctx.deactivate(e);const p=1&a&&f,h=!Sn(e);let m;if(h&&(m=i&&i.onVnodeBeforeUnmount)&&jr(m,t,e),6&a)z(e.component,n,o);else{if(128&a)return void e.suspense.unmount(n,o);p&&vo(e,null,t,"beforeUnmount"),64&a?e.type.remove(e,t,n,r,Y,o):u&&(c!==Ho||d>0&&64&d)?W(u,t,n,!1,!0):(c===Ho&&384&d||!r&&16&a)&&W(l,t,n),o&&H(e)}(h&&(m=i&&i.onVnodeUnmounted)||p)&&Eo(()=>{m&&jr(m,t,e),p&&vo(e,null,t,"unmounted")},n)},H=e=>{const{type:t,el:n,anchor:o,transition:r}=e;if(t===Ho)return void G(n,o);if(t===Wo)return void j(e);const i=()=>{c(n),r&&!r.persisted&&r.afterLeave&&r.afterLeave()};if(1&e.shapeFlag&&r&&!r.persisted){const{leave:t,delayLeave:o}=r,c=()=>t(n,i);o?o(e.el,i,c):c()}else i()},G=(e,t)=>{let n;for(;e!==t;)n=p(e),c(e),e=n;c(t)},z=(e,t,n)=>{const{bum:o,scope:c,update:i,subTree:s,um:l}=e;o&&Object(r.p)(o),c.stop(),i&&(i.active=!1,q(s,e,t,n)),l&&Eo(l,t),Eo(()=>{e.isUnmounted=!0},t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve()),__VUE_PROD_DEVTOOLS__&&Pt(e)},W=(e,t,n,o=!1,r=!1,c=0)=>{for(let i=c;i6&e.shapeFlag?K(e.component.subTree):128&e.shapeFlag?e.suspense.next():p(e.anchor||e.el),J=(e,t,n)=>{null==e?t._vnode&&q(t._vnode,null,null,!0):b(t._vnode||null,e,t,null,null,null,n),Ot(),t._vnode=e},Y={p:b,um:q,m:U,r:H,mt:I,mc:k,pc:$,pbc:P,n:K,o:e};let Q,X;return t&&([Q,X]=t(Y)),{render:J,hydrate:Q,createApp:Oo(J,Q)}}function Po({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Ro(e,t,n=!1){const o=e.children,c=t.children;if(Object(r.q)(o)&&Object(r.q)(c))for(let e=0;ee&&(e.disabled||""===e.disabled),Ao=e=>"undefined"!=typeof SVGElement&&e instanceof SVGElement,Io=(e,t)=>{const n=e&&e.to;if(Object(r.G)(n)){if(t){const e=t(n);return e}return null}return n};function Vo(e,t,n,{o:{insert:o},m:r},c=2){0===c&&o(e.targetAnchor,t,n);const{el:i,anchor:s,shapeFlag:l,children:u,props:a}=e,d=2===c;if(d&&o(i,t,n),(!d||Mo(a))&&16&l)for(let e=0;e{16&v&&a(y,e,t,r,c,i,s,l)};b?g(n,u):d&&g(d,f)}else{t.el=e.el;const o=t.anchor=e.anchor,a=t.target=e.target,p=t.targetAnchor=e.targetAnchor,m=Mo(e.props),g=m?n:a,v=m?o:p;if(i=i||Ao(a),_?(f(e.dynamicChildren,_,g,r,c,i,s),Ro(e,t,!0)):l||d(e,t,g,v,r,c,i,s,!1),b)m||Vo(t,n,o,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const e=t.target=Io(t.props,h);e&&Vo(t,e,null,u,0)}else m&&Vo(t,a,p,u,1)}},remove(e,t,n,o,{um:r,o:{remove:c}},i){const{shapeFlag:s,children:l,anchor:u,targetAnchor:a,target:d,props:f}=e;if(d&&c(a),(i||!Mo(f))&&(c(u),16&s))for(let e=0;e0?Jo||r.a:null,Qo(),Zo>0&&Jo&&Jo.push(e),e}function nr(e,t,n,o,r,c){return tr(ar(e,t,n,o,r,c,!0))}function or(e,t,n,o,r){return tr(dr(e,t,n,o,r,!0))}function rr(e){return!!e&&!0===e.__v_isVNode}function cr(e,t){return e.type===t.type&&e.key===t.key}function ir(e){Xo=e}const sr="__vInternal",lr=({key:e})=>null!=e?e:null,ur=({ref:e,ref_key:t,ref_for:n})=>null!=e?Object(r.G)(e)||Ie(e)||Object(r.s)(e)?{i:Vt,r:e,k:t,f:!!n}:e:null;function ar(e,t=null,n=null,o=0,c=null,i=(e===Ho?0:1),s=!1,l=!1){const u={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&lr(t),ref:t&&ur(t),scopeId:Lt,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:o,dynamicProps:c,dynamicChildren:null,appContext:null};return l?(_r(u,n),128&i&&e.normalize(u)):n&&(u.shapeFlag|=Object(r.G)(n)?8:16),Zo>0&&!s&&Jo&&(u.patchFlag>0||6&i)&&32!==u.patchFlag&&Jo.push(u),u}const dr=fr;function fr(e,t=null,n=null,o=0,c=null,i=!1){if(e&&e!==$o||(e=zo),rr(e)){const o=hr(e,t,!0);return n&&_r(o,n),o}if(Xr(e)&&(e=e.__vccOpts),t){t=pr(t);let{class:e,style:n}=t;e&&!Object(r.G)(e)&&(t.class=Object(r.M)(e)),Object(r.y)(n)&&(ke(n)&&!Object(r.q)(n)&&(n=Object(r.i)({},n)),t.style=Object(r.O)(n))}return ar(e,t,n,o,c,Object(r.G)(e)?1:(e=>e.__isSuspense)(e)?128:(e=>e.__isTeleport)(e)?64:Object(r.y)(e)?4:Object(r.s)(e)?2:0,i,!0)}function pr(e){return e?ke(e)||sr in e?Object(r.i)({},e):e:null}function hr(e,t,n=!1){const{props:o,ref:c,patchFlag:i,children:s}=e,l=t?Or(o||{},t):o;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&lr(l),ref:t&&t.ref?n&&c?Object(r.q)(c)?c.concat(ur(t)):[c,ur(t)]:ur(t):c,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:s,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Ho?-1===i?16:16|i:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&hr(e.ssContent),ssFallback:e.ssFallback&&hr(e.ssFallback),el:e.el,anchor:e.anchor}}function mr(e=" ",t=0){return dr(Go,null,e,t)}function gr(e,t){const n=dr(Wo,null,e);return n.staticCount=t,n}function br(e="",t=!1){return t?(Yo(),or(zo,null,e)):dr(zo,null,e)}function vr(e){return null==e||"boolean"==typeof e?dr(zo):Object(r.q)(e)?dr(Ho,null,e.slice()):"object"==typeof e?yr(e):dr(Go,null,String(e))}function yr(e){return null===e.el||e.memo?e:hr(e)}function _r(e,t){let n=0;const{shapeFlag:o}=e;if(null==t)t=null;else if(Object(r.q)(t))n=16;else if("object"==typeof t){if(65&o){const n=t.default;return void(n&&(n._c&&(n._d=!1),_r(e,n()),n._c&&(n._d=!0)))}{n=32;const o=t._;o||sr in t?3===o&&Vt&&(1===Vt.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=Vt}}else Object(r.s)(t)?(t={default:t,_ctx:Vt},n=32):(t=String(t),64&o?(n=16,t=[mr(t)]):n=8);e.children=t,e.shapeFlag|=n}function Or(...e){const t={};for(let n=0;nt(e,n,void 0,i&&i[n]));else{const n=Object.keys(e);c=new Array(n.length);for(let o=0,r=n.length;o!rr(t)||t.type!==zo&&!(t.type===Ho&&!e(t.children)))?t:null}(c(n)),s=or(Ho,{key:n.key||"_"+t},i||(o?o():[]),i&&1===e._?64:-2);return!r&&s.scopeId&&(s.slotScopeIds=[s.scopeId+"-s"]),c&&c._c&&(c._d=!0),s}function wr(e){const t={};for(const n in e)t[Object(r.S)(n)]=e[n];return t}const Er=e=>e?Fr(e)?Kr(e)||e.proxy:Er(e.parent):null,kr=Object(r.i)(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Er(e.parent),$root:e=>Er(e.root),$emit:e=>e.emit,$options:e=>__VUE_OPTIONS_API__?Qn(e):e.type,$forceUpdate:e=>()=>gt(e.update),$nextTick:e=>mt.bind(e.proxy),$watch:e=>__VUE_OPTIONS_API__?an.bind(e):r.d}),Tr={get({_:e},t){const{ctx:n,setupState:o,data:c,props:i,accessCache:s,type:l,appContext:u}=e;let a;if("$"!==t[0]){const l=s[t];if(void 0!==l)switch(l){case 1:return o[t];case 2:return c[t];case 4:return n[t];case 3:return i[t]}else{if(o!==r.b&&Object(r.m)(o,t))return s[t]=1,o[t];if(c!==r.b&&Object(r.m)(c,t))return s[t]=2,c[t];if((a=e.propsOptions[0])&&Object(r.m)(a,t))return s[t]=3,i[t];if(n!==r.b&&Object(r.m)(n,t))return s[t]=4,n[t];__VUE_OPTIONS_API__&&!Wn||(s[t]=0)}}const d=kr[t];let f,p;return d?("$attrs"===t&&k(e,0,t),d(e)):(f=l.__cssModules)&&(f=f[t])?f:n!==r.b&&Object(r.m)(n,t)?(s[t]=4,n[t]):(p=u.config.globalProperties,Object(r.m)(p,t)?p[t]:void 0)},set({_:e},t,n){const{data:o,setupState:c,ctx:i}=e;return c!==r.b&&Object(r.m)(c,t)?(c[t]=n,!0):o!==r.b&&Object(r.m)(o,t)?(o[t]=n,!0):!Object(r.m)(e.props,t)&&(("$"!==t[0]||!(t.slice(1)in e))&&(i[t]=n,!0))},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:c,propsOptions:i}},s){let l;return!!n[s]||e!==r.b&&Object(r.m)(e,s)||t!==r.b&&Object(r.m)(t,s)||(l=i[0])&&Object(r.m)(l,s)||Object(r.m)(o,s)||Object(r.m)(kr,s)||Object(r.m)(c.config.globalProperties,s)},defineProperty(e,t,n){return null!=n.get?this.set(e,t,n.get(),null):null!=n.value&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};const Nr=Object(r.i)({},Tr,{get(e,t){if(t!==Symbol.unscopables)return Tr.get(e,t,e)},has:(e,t)=>"_"!==t[0]&&!Object(r.t)(t)});const Pr=yo();let Rr=0;function Mr(e,t,n){const o=e.type,c=(t?t.appContext:e.appContext)||Pr,s={uid:Rr++,vnode:e,type:o,parent:t,appContext:c,root:null,next:null,subTree:null,effect:null,update:null,scope:new i(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(c.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:io(o,c),emitsOptions:At(o,c),emit:null,emitted:null,propsDefaults:r.b,inheritAttrs:o.inheritAttrs,ctx:r.b,data:r.b,props:r.b,attrs:r.b,slots:r.b,refs:r.b,setupState:r.b,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return s.ctx={_:s},s.root=t?t.root:s,s.emit=Mt.bind(null,s),e.ce&&e.ce(s),s}let Ar=null;const Ir=()=>Ar||Vt,Vr=e=>{Ar=e,e.scope.on()},Lr=()=>{Ar&&Ar.scope.off(),Ar=null};function Fr(e){return 4&e.vnode.shapeFlag}let $r,Br,Dr=!1;function Ur(e,t=!1){Dr=t;const{props:n,children:o}=e.vnode,c=Fr(e);!function(e,t,n,o=!1){const c={},i={};Object(r.h)(i,sr,1),e.propsDefaults=Object.create(null),ro(e,t,c,i);for(const t in e.propsOptions[0])t in c||(c[t]=void 0);n?e.props=o?c:Oe(c):e.type.props?e.props=c:e.props=i,e.attrs=i}(e,n,c,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=Te(t),Object(r.h)(t,"_",n)):mo(t,e.slots={})}else e.slots={},t&&go(e,t);Object(r.h)(e.slots,sr,1)})(e,o);const i=c?function(e,t){const n=e.type;0;e.accessCache=Object.create(null),e.proxy=Ne(new Proxy(e.ctx,Tr)),!1;const{setup:o}=n;if(o){const n=e.setupContext=o.length>1?Wr(e):null;Vr(e),w();const c=Ze(o,e,0,[e.props,n]);if(E(),Lr(),Object(r.B)(c)){if(c.then(Lr,Lr),t)return c.then(n=>{qr(e,n,t)}).catch(t=>{tt(t,e,0)});e.asyncDep=c}else qr(e,c,t)}else zr(e,t)}(e,t):void 0;return Dr=!1,i}function qr(e,t,n){Object(r.s)(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Object(r.y)(t)&&(__VUE_PROD_DEVTOOLS__&&(e.devtoolsRawSetupState=t),e.setupState=qe(t)),zr(e,n)}function Hr(e){$r=e,Br=e=>{e.render._rc&&(e.withProxy=new Proxy(e.ctx,Nr))}}const Gr=()=>!$r;function zr(e,t,n){const o=e.type;if(!e.render){if(!t&&$r&&!o.render){const t=o.template;if(t){0;const{isCustomElement:n,compilerOptions:c}=e.appContext.config,{delimiters:i,compilerOptions:s}=o,l=Object(r.i)(Object(r.i)({isCustomElement:n,delimiters:i},c),s);o.render=$r(t,l)}}e.render=o.render||r.d,Br&&Br(e)}__VUE_OPTIONS_API__&&(Vr(e),w(),Kn(e),E(),Lr())}function Wr(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=function(e){return new Proxy(e.attrs,{get:(t,n)=>(k(e,0,"$attrs"),t[n])})}(e))},slots:e.slots,emit:e.emit,expose:t}}function Kr(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(qe(Ne(e.exposed)),{get:(t,n)=>n in t?t[n]:n in kr?kr[n](e):void 0}))}const Jr=/(?:^|[-_])(\w)/g;function Yr(e){return Object(r.s)(e)&&e.displayName||e.name}function Qr(e,t,n=!1){let o=Yr(t);if(!o&&t.__file){const e=t.__file.match(/([^/\\]+)\.\w+$/);e&&(o=e[1])}if(!o&&e&&e.parent){const n=e=>{for(const n in e)if(e[n]===t)return n};o=n(e.components||e.parent.type.components)||n(e.appContext.components)}return o?o.replace(Jr,e=>e.toUpperCase()).replace(/[-_]/g,""):n?"App":"Anonymous"}function Xr(e){return Object(r.s)(e)&&"__vccOpts"in e}const Zr=(e,t)=>function(e,t,n=!1){let o,c;const i=Object(r.s)(e);return i?(o=e,c=r.d):(o=e.get,c=e.set),new Je(o,c,i||!c,n)}(e,0,Dr);function ec(){return null}function tc(){return null}function nc(e){0}function oc(e,t){return null}function rc(){return ic().slots}function cc(){return ic().attrs}function ic(){const e=Ir();return e.setupContext||(e.setupContext=Wr(e))}function sc(e,t){const n=Object(r.q)(e)?e.reduce((e,t)=>(e[t]={},e),{}):e;for(const e in t){const o=n[e];o?Object(r.q)(o)||Object(r.s)(o)?n[e]={type:o,default:t[e]}:o.default=t[e]:null===o&&(n[e]={default:t[e]})}return n}function lc(e,t){const n={};for(const o in e)t.includes(o)||Object.defineProperty(n,o,{enumerable:!0,get:()=>e[o]});return n}function uc(e){const t=Ir();let n=e();return Lr(),Object(r.B)(n)&&(n=n.catch(e=>{throw Vr(t),e})),[n,()=>Vr(t)]}function ac(e,t,n){const o=arguments.length;return 2===o?Object(r.y)(t)&&!Object(r.q)(t)?rr(t)?dr(e,null,[t]):dr(e,t):dr(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):3===o&&rr(n)&&(n=[n]),dr(e,t,n))}const dc=Symbol(""),fc=()=>{{const e=nn(dc);return e||Qe("Server rendering context not provided. Make sure to only call useSSRContext() conditionally in the server build."),e}};function pc(){return void 0}function hc(e,t,n,o){const r=n[o];if(r&&mc(r,e))return r;const c=t();return c.memo=e.slice(),n[o]=c}function mc(e,t){const n=e.memo;if(n.length!=t.length)return!1;for(let e=0;e0&&Jo&&Jo.push(e),!0}const gc="3.2.31",bc={createComponentInstance:Mr,setupComponent:Ur,renderComponentRoot:qt,setCurrentRenderingInstance:Ft,isVNode:rr,normalizeVNode:vr},vc=null,yc=null,_c="undefined"!=typeof document?document:null,Oc=_c&&_c.createElement("template"),jc={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,o)=>{const r=t?_c.createElementNS("http://www.w3.org/2000/svg",e):_c.createElement(e,n?{is:n}:void 0);return"select"===e&&o&&null!=o.multiple&&r.setAttribute("multiple",o.multiple),r},createText:e=>_c.createTextNode(e),createComment:e=>_c.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>_c.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},cloneNode(e){const t=e.cloneNode(!0);return"_value"in e&&(t._value=e._value),t},insertStaticContent(e,t,n,o,r,c){const i=n?n.previousSibling:t.lastChild;if(r&&(r===c||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),r!==c&&(r=r.nextSibling););else{Oc.innerHTML=o?`${e}`:e;const r=Oc.content;if(o){const e=r.firstChild;for(;e.firstChild;)r.appendChild(e.firstChild);r.removeChild(e)}t.insertBefore(r,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};const Sc=/\s*!important$/;function xc(e,t,n){if(Object(r.q)(n))n.forEach(n=>xc(e,t,n));else if(t.startsWith("--"))e.setProperty(t,n);else{const o=function(e,t){const n=wc[t];if(n)return n;let o=Object(r.f)(t);if("filter"!==o&&o in e)return wc[t]=o;o=Object(r.g)(o);for(let n=0;ndocument.createEvent("Event").timeStamp&&(kc=()=>performance.now());const e=navigator.userAgent.match(/firefox\/(\d+)/i);Tc=!!(e&&Number(e[1])<=53)}let Nc=0;const Pc=Promise.resolve(),Rc=()=>{Nc=0};function Mc(e,t,n,o){e.addEventListener(t,n,o)}function Ac(e,t,n,o,c=null){const i=e._vei||(e._vei={}),s=i[t];if(o&&s)s.value=o;else{const[n,l]=function(e){let t;if(Ic.test(e)){let n;for(t={};n=e.match(Ic);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[Object(r.n)(e.slice(2)),t]}(t);if(o){Mc(e,n,i[t]=function(e,t){const n=e=>{const o=e.timeStamp||kc();(Tc||o>=n.attached-1)&&et(function(e,t){if(Object(r.q)(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(e=>t=>!t._stopped&&e&&e(t))}return t}(e,n.value),t,5,[e])};return n.value=e,n.attached=(()=>Nc||(Pc.then(Rc),Nc=kc()))(),n}(o,c),l)}else s&&(!function(e,t,n,o){e.removeEventListener(t,n,o)}(e,n,s,l),i[t]=void 0)}}const Ic=/(?:Once|Passive|Capture)$/;const Vc=/^on[a-z]/;function Lc(e,t){const n=jn(e);class o extends Bc{constructor(e){super(n,e,t)}}return o.def=n,o}const Fc=e=>Lc(e,Fi),$c="undefined"!=typeof HTMLElement?HTMLElement:class{};class Bc extends $c{constructor(e,t={},n){super(),this._def=e,this._props=t,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&n?n(this._createVNode(),this.shadowRoot):this.attachShadow({mode:"open"})}connectedCallback(){this._connected=!0,this._instance||this._resolveDef()}disconnectedCallback(){this._connected=!1,mt(()=>{this._connected||(Li(null,this.shadowRoot),this._instance=null)})}_resolveDef(){if(this._resolved)return;this._resolved=!0;for(let e=0;e{for(const t of e)this._setAttr(t.attributeName)}).observe(this,{attributes:!0});const e=e=>{const{props:t,styles:n}=e,o=!Object(r.q)(t),c=t?o?Object.keys(t):t:[];let i;if(o)for(const e in this._props){const n=t[e];(n===Number||n&&n.type===Number)&&(this._props[e]=Object(r.T)(this._props[e]),(i||(i=Object.create(null)))[e]=!0)}this._numberProps=i;for(const e of Object.keys(this))"_"!==e[0]&&this._setProp(e,this[e],!0,!1);for(const e of c.map(r.f))Object.defineProperty(this,e,{get(){return this._getProp(e)},set(t){this._setProp(e,t)}});this._applyStyles(n),this._update()},t=this._def.__asyncLoader;t?t().then(e):e(this._def)}_setAttr(e){let t=this.getAttribute(e);this._numberProps&&this._numberProps[e]&&(t=Object(r.T)(t)),this._setProp(Object(r.f)(e),t,!1)}_getProp(e){return this._props[e]}_setProp(e,t,n=!0,o=!0){t!==this._props[e]&&(this._props[e]=t,o&&this._instance&&this._update(),n&&(!0===t?this.setAttribute(Object(r.n)(e),""):"string"==typeof t||"number"==typeof t?this.setAttribute(Object(r.n)(e),t+""):t||this.removeAttribute(Object(r.n)(e))))}_update(){Li(this._createVNode(),this.shadowRoot)}_createVNode(){const e=dr(this._def,Object(r.i)({},this._props));return this._instance||(e.ce=e=>{this._instance=e,e.isCE=!0,e.emit=(e,...t)=>{this.dispatchEvent(new CustomEvent(e,{detail:t}))};let t=this;for(;t=t&&(t.parentNode||t.host);)if(t instanceof Bc){e.parent=t._instance;break}}),e}_applyStyles(e){e&&e.forEach(e=>{const t=document.createElement("style");t.textContent=e,this.shadowRoot.appendChild(t)})}}function Dc(e="$style"){{const t=Ir();if(!t)return r.b;const n=t.type.__cssModules;if(!n)return r.b;const o=n[e];return o||r.b}}function Uc(e){const t=Ir();if(!t)return;const n=()=>function e(t,n){if(128&t.shapeFlag){const o=t.suspense;t=o.activeBranch,o.pendingBranch&&!o.isHydrating&&o.effects.push(()=>{e(o.activeBranch,n)})}for(;t.component;)t=t.component.subTree;if(1&t.shapeFlag&&t.el)qc(t.el,n);else if(t.type===Ho)t.children.forEach(t=>e(t,n));else if(t.type===Wo){let{el:e,anchor:o}=t;for(;e&&(qc(e,n),e!==o);)e=e.nextSibling}}(t.subTree,e(t.proxy));rn(n),Fn(()=>{const e=new MutationObserver(n);e.observe(t.subTree.el.parentNode,{childList:!0}),Un(()=>e.disconnect())})}function qc(e,t){if(1===e.nodeType){const n=e.style;for(const e in t)n.setProperty("--"+e,t[e])}}const Hc=(e,{slots:t})=>ac(mn,Jc(e),t);Hc.displayName="Transition";const Gc={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},zc=Hc.props=Object(r.i)({},mn.props,Gc),Wc=(e,t=[])=>{Object(r.q)(e)?e.forEach(e=>e(...t)):e&&e(...t)},Kc=e=>!!e&&(Object(r.q)(e)?e.some(e=>e.length>1):e.length>1);function Jc(e){const t={};for(const n in e)n in Gc||(t[n]=e[n]);if(!1===e.css)return t;const{name:n="v",type:o,duration:c,enterFromClass:i=n+"-enter-from",enterActiveClass:s=n+"-enter-active",enterToClass:l=n+"-enter-to",appearFromClass:u=i,appearActiveClass:a=s,appearToClass:d=l,leaveFromClass:f=n+"-leave-from",leaveActiveClass:p=n+"-leave-active",leaveToClass:h=n+"-leave-to"}=e,m=function(e){if(null==e)return null;if(Object(r.y)(e))return[Yc(e.enter),Yc(e.leave)];{const t=Yc(e);return[t,t]}}(c),g=m&&m[0],b=m&&m[1],{onBeforeEnter:v,onEnter:y,onEnterCancelled:_,onLeave:O,onLeaveCancelled:j,onBeforeAppear:S=v,onAppear:x=y,onAppearCancelled:C=_}=t,w=(e,t,n)=>{Xc(e,t?d:l),Xc(e,t?a:s),n&&n()},E=(e,t)=>{Xc(e,h),Xc(e,p),t&&t()},k=e=>(t,n)=>{const r=e?x:y,c=()=>w(t,e,n);Wc(r,[t,c]),Zc(()=>{Xc(t,e?u:i),Qc(t,e?d:l),Kc(r)||ti(t,o,g,c)})};return Object(r.i)(t,{onBeforeEnter(e){Wc(v,[e]),Qc(e,i),Qc(e,s)},onBeforeAppear(e){Wc(S,[e]),Qc(e,u),Qc(e,a)},onEnter:k(!1),onAppear:k(!0),onLeave(e,t){const n=()=>E(e,t);Qc(e,f),ci(),Qc(e,p),Zc(()=>{Xc(e,f),Qc(e,h),Kc(O)||ti(e,o,b,n)}),Wc(O,[e,n])},onEnterCancelled(e){w(e,!1),Wc(_,[e])},onAppearCancelled(e){w(e,!0),Wc(C,[e])},onLeaveCancelled(e){E(e),Wc(j,[e])}})}function Yc(e){return Object(r.T)(e)}function Qc(e,t){t.split(/\s+/).forEach(t=>t&&e.classList.add(t)),(e._vtc||(e._vtc=new Set)).add(t)}function Xc(e,t){t.split(/\s+/).forEach(t=>t&&e.classList.remove(t));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function Zc(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let ei=0;function ti(e,t,n,o){const r=e._endId=++ei,c=()=>{r===e._endId&&o()};if(n)return setTimeout(c,n);const{type:i,timeout:s,propCount:l}=ni(e,t);if(!i)return o();const u=i+"end";let a=0;const d=()=>{e.removeEventListener(u,f),c()},f=t=>{t.target===e&&++a>=l&&d()};setTimeout(()=>{a(n[e]||"").split(", "),r=o("transitionDelay"),c=o("transitionDuration"),i=oi(r,c),s=o("animationDelay"),l=o("animationDuration"),u=oi(s,l);let a=null,d=0,f=0;"transition"===t?i>0&&(a="transition",d=i,f=c.length):"animation"===t?u>0&&(a="animation",d=u,f=l.length):(d=Math.max(i,u),a=d>0?i>u?"transition":"animation":null,f=a?"transition"===a?c.length:l.length:0);return{type:a,timeout:d,propCount:f,hasTransform:"transition"===a&&/\b(transform|all)(,|$)/.test(n.transitionProperty)}}function oi(e,t){for(;e.lengthri(t)+ri(e[n])))}function ri(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function ci(){return document.body.offsetHeight}const ii=new WeakMap,si=new WeakMap,li={name:"TransitionGroup",props:Object(r.i)({},zc,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=Ir(),o=pn();let r,c;return Bn(()=>{if(!r.length)return;const t=e.moveClass||(e.name||"v")+"-move";if(!function(e,t,n){const o=e.cloneNode();e._vtc&&e._vtc.forEach(e=>{e.split(/\s+/).forEach(e=>e&&o.classList.remove(e))});n.split(/\s+/).forEach(e=>e&&o.classList.add(e)),o.style.display="none";const r=1===t.nodeType?t:t.parentNode;r.appendChild(o);const{hasTransform:c}=ni(o);return r.removeChild(o),c}(r[0].el,n.vnode.el,t))return;r.forEach(ui),r.forEach(ai);const o=r.filter(di);ci(),o.forEach(e=>{const n=e.el,o=n.style;Qc(n,t),o.transform=o.webkitTransform=o.transitionDuration="";const r=n._moveCb=e=>{e&&e.target!==n||e&&!/transform$/.test(e.propertyName)||(n.removeEventListener("transitionend",r),n._moveCb=null,Xc(n,t))};n.addEventListener("transitionend",r)})}),()=>{const i=Te(e),s=Jc(i);let l=i.tag||Ho;r=c,c=t.default?On(t.default()):[];for(let e=0;e{const t=e.props["onUpdate:modelValue"];return Object(r.q)(t)?e=>Object(r.p)(t,e):t};function pi(e){e.target.composing=!0}function hi(e){const t=e.target;t.composing&&(t.composing=!1,function(e,t){const n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}(t,"input"))}const mi={created(e,{modifiers:{lazy:t,trim:n,number:o}},c){e._assign=fi(c);const i=o||c.props&&"number"===c.props.type;Mc(e,t?"change":"input",t=>{if(t.target.composing)return;let o=e.value;n?o=o.trim():i&&(o=Object(r.T)(o)),e._assign(o)}),n&&Mc(e,"change",()=>{e.value=e.value.trim()}),t||(Mc(e,"compositionstart",pi),Mc(e,"compositionend",hi),Mc(e,"change",hi))},mounted(e,{value:t}){e.value=null==t?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:o,number:c}},i){if(e._assign=fi(i),e.composing)return;if(document.activeElement===e){if(n)return;if(o&&e.value.trim()===t)return;if((c||"number"===e.type)&&Object(r.T)(e.value)===t)return}const s=null==t?"":t;e.value!==s&&(e.value=s)}},gi={deep:!0,created(e,t,n){e._assign=fi(n),Mc(e,"change",()=>{const t=e._modelValue,n=Oi(e),o=e.checked,c=e._assign;if(Object(r.q)(t)){const e=Object(r.K)(t,n),i=-1!==e;if(o&&!i)c(t.concat(n));else if(!o&&i){const n=[...t];n.splice(e,1),c(n)}}else if(Object(r.E)(t)){const e=new Set(t);o?e.add(n):e.delete(n),c(e)}else c(ji(e,o))})},mounted:bi,beforeUpdate(e,t,n){e._assign=fi(n),bi(e,t,n)}};function bi(e,{value:t,oldValue:n},o){e._modelValue=t,Object(r.q)(t)?e.checked=Object(r.K)(t,o.props.value)>-1:Object(r.E)(t)?e.checked=t.has(o.props.value):t!==n&&(e.checked=Object(r.J)(t,ji(e,!0)))}const vi={created(e,{value:t},n){e.checked=Object(r.J)(t,n.props.value),e._assign=fi(n),Mc(e,"change",()=>{e._assign(Oi(e))})},beforeUpdate(e,{value:t,oldValue:n},o){e._assign=fi(o),t!==n&&(e.checked=Object(r.J)(t,o.props.value))}},yi={deep:!0,created(e,{value:t,modifiers:{number:n}},o){const c=Object(r.E)(t);Mc(e,"change",()=>{const t=Array.prototype.filter.call(e.options,e=>e.selected).map(e=>n?Object(r.T)(Oi(e)):Oi(e));e._assign(e.multiple?c?new Set(t):t:t[0])}),e._assign=fi(o)},mounted(e,{value:t}){_i(e,t)},beforeUpdate(e,t,n){e._assign=fi(n)},updated(e,{value:t}){_i(e,t)}};function _i(e,t){const n=e.multiple;if(!n||Object(r.q)(t)||Object(r.E)(t)){for(let o=0,c=e.options.length;o-1:c.selected=t.has(i);else if(Object(r.J)(Oi(c),t))return void(e.selectedIndex!==o&&(e.selectedIndex=o))}n||-1===e.selectedIndex||(e.selectedIndex=-1)}}function Oi(e){return"_value"in e?e._value:e.value}function ji(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Si={created(e,t,n){xi(e,t,n,null,"created")},mounted(e,t,n){xi(e,t,n,null,"mounted")},beforeUpdate(e,t,n,o){xi(e,t,n,o,"beforeUpdate")},updated(e,t,n,o){xi(e,t,n,o,"updated")}};function xi(e,t,n,o,r){let c;switch(e.tagName){case"SELECT":c=yi;break;case"TEXTAREA":c=mi;break;default:switch(n.props&&n.props.type){case"checkbox":c=gi;break;case"radio":c=vi;break;default:c=mi}}const i=c[r];i&&i(e,t,n,o)}const Ci=["ctrl","shift","alt","meta"],wi={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&0!==e.button,middle:e=>"button"in e&&1!==e.button,right:e=>"button"in e&&2!==e.button,exact:(e,t)=>Ci.some(n=>e[n+"Key"]&&!t.includes(n))},Ei=(e,t)=>(n,...o)=>{for(let e=0;en=>{if(!("key"in n))return;const o=Object(r.n)(n.key);return t.some(e=>e===o||ki[e]===o)?e(n):void 0},Ni={beforeMount(e,{value:t},{transition:n}){e._vod="none"===e.style.display?"":e.style.display,n&&t?n.beforeEnter(e):Pi(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:o}){!t!=!n&&(o?t?(o.beforeEnter(e),Pi(e,!0),o.enter(e)):o.leave(e,()=>{Pi(e,!1)}):Pi(e,t))},beforeUnmount(e,{value:t}){Pi(e,t)}};function Pi(e,t){e.style.display=t?e._vod:"none"}const Ri=Object(r.i)({patchProp:(e,t,n,o,c=!1,i,s,l,u)=>{"class"===t?function(e,t,n){const o=e._vtc;o&&(t=(t?[t,...o]:[...o]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,o,c):"style"===t?function(e,t,n){const o=e.style,c=Object(r.G)(n);if(n&&!c){for(const e in n)xc(o,e,n[e]);if(t&&!Object(r.G)(t))for(const e in t)null==n[e]&&xc(o,e,"")}else{const r=o.display;c?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=r)}}(e,n,o):Object(r.z)(t)?Object(r.x)(t)||Ac(e,t,0,o,s):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,o){if(o)return"innerHTML"===t||"textContent"===t||!!(t in e&&Vc.test(t)&&Object(r.s)(n));if("spellcheck"===t||"draggable"===t)return!1;if("form"===t)return!1;if("list"===t&&"INPUT"===e.tagName)return!1;if("type"===t&&"TEXTAREA"===e.tagName)return!1;if(Vc.test(t)&&Object(r.G)(n))return!1;return t in e}(e,t,o,c))?function(e,t,n,o,c,i,s){if("innerHTML"===t||"textContent"===t)return o&&s(o,c,i),void(e[t]=null==n?"":n);if("value"===t&&"PROGRESS"!==e.tagName&&!e.tagName.includes("-")){e._value=n;const o=null==n?"":n;return e.value===o&&"OPTION"!==e.tagName||(e.value=o),void(null==n&&e.removeAttribute(t))}if(""===n||null==n){const o=typeof e[t];if("boolean"===o)return void(e[t]=Object(r.o)(n));if(null==n&&"string"===o)return e[t]="",void e.removeAttribute(t);if("number"===o){try{e[t]=0}catch(e){}return void e.removeAttribute(t)}}try{e[t]=n}catch(e){0}}(e,t,o,i,s,l,u):("true-value"===t?e._trueValue=o:"false-value"===t&&(e._falseValue=o),function(e,t,n,o,c){if(o&&t.startsWith("xlink:"))null==n?e.removeAttributeNS(Ec,t.slice(6,t.length)):e.setAttributeNS(Ec,t,n);else{const o=Object(r.F)(t);null==n||o&&!Object(r.o)(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}(e,t,o,c))}},jc);let Mi,Ai=!1;function Ii(){return Mi||(Mi=ko(Ri))}function Vi(){return Mi=Ai?Mi:To(Ri),Ai=!0,Mi}const Li=(...e)=>{Ii().render(...e)},Fi=(...e)=>{Vi().hydrate(...e)},$i=(...e)=>{const t=Ii().createApp(...e);const{mount:n}=t;return t.mount=e=>{const o=Di(e);if(!o)return;const c=t._component;Object(r.s)(c)||c.render||c.template||(c.template=o.innerHTML),o.innerHTML="";const i=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},t},Bi=(...e)=>{const t=Vi().createApp(...e);const{mount:n}=t;return t.mount=e=>{const t=Di(e);if(t)return n(t,!0,t instanceof SVGElement)},t};function Di(e){if(Object(r.G)(e)){return document.querySelector(e)}return e}let Ui=!1;const qi=()=>{Ui||(Ui=!0,mi.getSSRProps=({value:e})=>({value:e}),vi.getSSRProps=({value:e},t)=>{if(t.props&&Object(r.J)(t.props.value,e))return{checked:!0}},gi.getSSRProps=({value:e},t)=>{if(Object(r.q)(e)){if(t.props&&Object(r.K)(e,t.props.value)>-1)return{checked:!0}}else if(Object(r.E)(e)){if(t.props&&e.has(t.props.value))return{checked:!0}}else if(e)return{checked:!0}},Ni.getSSRProps=({value:e})=>{if(!e)return{style:{display:"none"}}})};function Hi(e){throw e}function Gi(e){}function zi(e,t,n,o){const r=new SyntaxError(String(e));return r.code=e,r.loc=t,r}const Wi=Symbol(""),Ki=Symbol(""),Ji=Symbol(""),Yi=Symbol(""),Qi=Symbol(""),Xi=Symbol(""),Zi=Symbol(""),es=Symbol(""),ts=Symbol(""),ns=Symbol(""),os=Symbol(""),rs=Symbol(""),cs=Symbol(""),is=Symbol(""),ss=Symbol(""),ls=Symbol(""),us=Symbol(""),as=Symbol(""),ds=Symbol(""),fs=Symbol(""),ps=Symbol(""),hs=Symbol(""),ms=Symbol(""),gs=Symbol(""),bs=Symbol(""),vs=Symbol(""),ys=Symbol(""),_s=Symbol(""),Os=Symbol(""),js=Symbol(""),Ss=Symbol(""),xs=Symbol(""),Cs=Symbol(""),ws=Symbol(""),Es=Symbol(""),ks=Symbol(""),Ts=Symbol(""),Ns=Symbol(""),Ps=Symbol(""),Rs={[Wi]:"Fragment",[Ki]:"Teleport",[Ji]:"Suspense",[Yi]:"KeepAlive",[Qi]:"BaseTransition",[Xi]:"openBlock",[Zi]:"createBlock",[es]:"createElementBlock",[ts]:"createVNode",[ns]:"createElementVNode",[os]:"createCommentVNode",[rs]:"createTextVNode",[cs]:"createStaticVNode",[is]:"resolveComponent",[ss]:"resolveDynamicComponent",[ls]:"resolveDirective",[us]:"resolveFilter",[as]:"withDirectives",[ds]:"renderList",[fs]:"renderSlot",[ps]:"createSlots",[hs]:"toDisplayString",[ms]:"mergeProps",[gs]:"normalizeClass",[bs]:"normalizeStyle",[vs]:"normalizeProps",[ys]:"guardReactiveProps",[_s]:"toHandlers",[Os]:"camelize",[js]:"capitalize",[Ss]:"toHandlerKey",[xs]:"setBlockTracking",[Cs]:"pushScopeId",[ws]:"popScopeId",[Es]:"withCtx",[ks]:"unref",[Ts]:"isRef",[Ns]:"withMemo",[Ps]:"isMemoSame"};const Ms={source:"",start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0}};function As(e,t,n,o,r,c,i,s=!1,l=!1,u=!1,a=Ms){return e&&(s?(e.helper(Xi),e.helper(ul(e.inSSR,u))):e.helper(ll(e.inSSR,u)),i&&e.helper(as)),{type:13,tag:t,props:n,children:o,patchFlag:r,dynamicProps:c,directives:i,isBlock:s,disableTracking:l,isComponent:u,loc:a}}function Is(e,t=Ms){return{type:17,loc:t,elements:e}}function Vs(e,t=Ms){return{type:15,loc:t,properties:e}}function Ls(e,t){return{type:16,loc:Ms,key:Object(r.G)(e)?Fs(e,!0):e,value:t}}function Fs(e,t=!1,n=Ms,o=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:o}}function $s(e,t=Ms){return{type:8,loc:t,children:e}}function Bs(e,t=[],n=Ms){return{type:14,loc:n,callee:e,arguments:t}}function Ds(e,t,n=!1,o=!1,r=Ms){return{type:18,params:e,returns:t,newline:n,isSlot:o,loc:r}}function Us(e,t,n,o=!0){return{type:19,test:e,consequent:t,alternate:n,newline:o,loc:Ms}}const qs=e=>4===e.type&&e.isStatic,Hs=(e,t)=>e===t||e===Object(r.n)(t);function Gs(e){return Hs(e,"Teleport")?Ki:Hs(e,"Suspense")?Ji:Hs(e,"KeepAlive")?Yi:Hs(e,"BaseTransition")?Qi:void 0}const zs=/^\d|[^\$\w]/,Ws=e=>!zs.test(e),Ks=/[A-Za-z_$\xA0-\uFFFF]/,Js=/[\.\?\w$\xA0-\uFFFF]/,Ys=/\s+[.[]\s*|\s*[.[]\s+/g,Qs=(r.d,e=>{e=e.trim().replace(Ys,e=>e.trim());let t=0,n=[],o=0,r=0,c=null;for(let i=0;i4===e.key.type&&e.key.content===n)}e||i.properties.unshift(t),o=i}else o=Bs(n.helper(ms),[Vs([t]),i]),c&&c.callee===ys&&(c=s[s.length-2]);13===e.type?c?c.arguments[0]=o:e.props=o:c?c.arguments[0]=o:e.arguments[2]=o}function fl(e,t){return`_${t}_${e.replace(/[^\w]/g,(t,n)=>"-"===t?"_":e.charCodeAt(n).toString())}`}function pl(e,{helper:t,removeHelper:n,inSSR:o}){e.isBlock||(e.isBlock=!0,n(ll(o,e.isComponent)),t(Xi),t(ul(o,e.isComponent)))}function hl(e,t){const n=t.options?t.options.compatConfig:t.compatConfig,o=n&&n[e];return"MODE"===e?o||3:o}function ml(e,t){const n=hl("MODE",t),o=hl(e,t);return 3===n?!0===o:!1!==o}function gl(e,t,n,...o){return ml(e,t)}const bl=/&(gt|lt|amp|apos|quot);/g,vl={gt:">",lt:"<",amp:"&",apos:"'",quot:'"'},yl={delimiters:["{{","}}"],getNamespace:()=>0,getTextMode:()=>0,isVoidTag:r.c,isPreTag:r.c,isCustomElement:r.c,decodeEntities:e=>e.replace(bl,(e,t)=>vl[t]),onError:Hi,onWarn:Gi,comments:!1};function _l(e,t={}){const n=function(e,t){const n=Object(r.i)({},yl);let o;for(o in t)n[o]=void 0===t[o]?yl[o]:t[o];return{options:n,column:1,line:1,offset:0,originalSource:e,source:e,inPre:!1,inVPre:!1,onWarn:n.onWarn}}(e,t),o=Al(n);return function(e,t=Ms){return{type:0,children:e,helpers:[],components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:t}}(Ol(n,0,[]),Il(n,o))}function Ol(e,t,n){const o=Vl(n),c=o?o.ns:0,i=[];for(;!Ul(e,t,n);){const s=e.source;let l=void 0;if(0===t||1===t)if(!e.inVPre&&Ll(s,e.options.delimiters[0]))l=Pl(e,t);else if(0===t&&"<"===s[0])if(1===s.length)Dl(e,5,1);else if("!"===s[1])Ll(s,"\x3c!--")?l=xl(e):Ll(s,""===s[2]){Dl(e,14,2),Fl(e,3);continue}if(/[a-z]/i.test(s[2])){Dl(e,23),kl(e,1,o);continue}Dl(e,12,2),l=Cl(e)}else/[a-z]/i.test(s[1])?(l=wl(e,n),ml("COMPILER_NATIVE_TEMPLATE",e)&&l&&"template"===l.tag&&!l.props.some(e=>7===e.type&&El(e.name))&&(l=l.children)):"?"===s[1]?(Dl(e,21,1),l=Cl(e)):Dl(e,12,1);if(l||(l=Rl(e,t)),Object(r.q)(l))for(let e=0;e/.exec(e.source);if(o){o.index<=3&&Dl(e,0),o[1]&&Dl(e,10),n=e.source.slice(4,o.index);const t=e.source.slice(0,o.index);let r=1,c=0;for(;-1!==(c=t.indexOf("\x3c!--",r));)Fl(e,c-r+1),c+4");return-1===r?(o=e.source.slice(n),Fl(e,e.source.length)):(o=e.source.slice(n,r),Fl(e,r+1)),{type:3,content:o,loc:Il(e,t)}}function wl(e,t){const n=e.inPre,o=e.inVPre,r=Vl(t),c=kl(e,0,r),i=e.inPre&&!n,s=e.inVPre&&!o;if(c.isSelfClosing||e.options.isVoidTag(c.tag))return i&&(e.inPre=!1),s&&(e.inVPre=!1),c;t.push(c);const l=e.options.getTextMode(c,r),u=Ol(e,l,t);t.pop();{const t=c.props.find(e=>6===e.type&&"inline-template"===e.name);if(t&&gl("COMPILER_INLINE_TEMPLATE",e,t.loc)){const n=Il(e,c.loc.end);t.value={type:2,content:n.source,loc:n}}}if(c.children=u,ql(e.source,c.tag))kl(e,1,r);else if(Dl(e,24,0,c.loc.start),0===e.source.length&&"script"===c.tag.toLowerCase()){const t=u[0];t&&Ll(t.loc.source,"\x3c!--")&&Dl(e,8)}return c.loc=Il(e,c.loc.start),i&&(e.inPre=!1),s&&(e.inVPre=!1),c}const El=Object(r.L)("if,else,else-if,for,slot");function kl(e,t,n){const o=Al(e),c=/^<\/?([a-z][^\t\r\n\f />]*)/i.exec(e.source),i=c[1],s=e.options.getNamespace(i,n);Fl(e,c[0].length),$l(e);const l=Al(e),u=e.source;e.options.isPreTag(i)&&(e.inPre=!0);let a=Tl(e,t);0===t&&!e.inVPre&&a.some(e=>7===e.type&&"pre"===e.name)&&(e.inVPre=!0,Object(r.i)(e,l),e.source=u,a=Tl(e,t).filter(e=>"v-pre"!==e.name));let d=!1;if(0===e.source.length?Dl(e,9):(d=Ll(e.source,"/>"),1===t&&d&&Dl(e,4),Fl(e,d?2:1)),1===t)return;let f=0;return e.inVPre||("slot"===i?f=2:"template"===i?a.some(e=>7===e.type&&El(e.name))&&(f=3):function(e,t,n){const o=n.options;if(o.isCustomElement(e))return!1;if("component"===e||/^[A-Z]/.test(e)||Gs(e)||o.isBuiltInComponent&&o.isBuiltInComponent(e)||o.isNativeTag&&!o.isNativeTag(e))return!0;for(let e=0;e0&&!Ll(e.source,">")&&!Ll(e.source,"/>");){if(Ll(e.source,"/")){Dl(e,22),Fl(e,1),$l(e);continue}1===t&&Dl(e,3);const r=Nl(e,o);6===r.type&&r.value&&"class"===r.name&&(r.value.content=r.value.content.replace(/\s+/g," ").trim()),0===t&&n.push(r),/^[^\t\r\n\f />]/.test(e.source)&&Dl(e,15),$l(e)}return n}function Nl(e,t){const n=Al(e),o=/^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(e.source)[0];t.has(o)&&Dl(e,2),t.add(o),"="===o[0]&&Dl(e,19);{const t=/["'<]/g;let n;for(;n=t.exec(o);)Dl(e,17,n.index)}Fl(e,o.length);let r=void 0;/^[\t\r\n\f ]*=/.test(e.source)&&($l(e),Fl(e,1),$l(e),r=function(e){const t=Al(e);let n;const o=e.source[0],r='"'===o||"'"===o;if(r){Fl(e,1);const t=e.source.indexOf(o);-1===t?n=Ml(e,e.source.length,4):(n=Ml(e,t,4),Fl(e,1))}else{const t=/^[^\t\r\n\f >]+/.exec(e.source);if(!t)return;const o=/["'<=`]/g;let r;for(;r=o.exec(t[0]);)Dl(e,18,r.index);n=Ml(e,t[0].length,4)}return{content:n,isQuoted:r,loc:Il(e,t)}}(e),r||Dl(e,13));const c=Il(e,n);if(!e.inVPre&&/^(v-[A-Za-z0-9-]|:|\.|@|#)/.test(o)){const t=/(?:^v-([a-z0-9-]+))?(?:(?::|^\.|^@|^#)(\[[^\]]+\]|[^\.]+))?(.+)?$/i.exec(o);let i,s=Ll(o,"."),l=t[1]||(s||Ll(o,":")?"bind":Ll(o,"@")?"on":"slot");if(t[2]){const r="slot"===l,c=o.lastIndexOf(t[2]),s=Il(e,Bl(e,n,c),Bl(e,n,c+t[2].length+(r&&t[3]||"").length));let u=t[2],a=!0;u.startsWith("[")?(a=!1,u.endsWith("]")?u=u.slice(1,u.length-1):(Dl(e,27),u=u.slice(1))):r&&(u+=t[3]||""),i={type:4,content:u,isStatic:a,constType:a?3:0,loc:s}}if(r&&r.isQuoted){const e=r.loc;e.start.offset++,e.start.column++,e.end=Zs(e.start,r.content),e.source=e.source.slice(1,-1)}const u=t[3]?t[3].slice(1).split("."):[];return s&&u.push("prop"),"bind"===l&&i&&u.includes("sync")&&gl("COMPILER_V_BIND_SYNC",e,0,i.loc.source)&&(l="model",u.splice(u.indexOf("sync"),1)),{type:7,name:l,exp:r&&{type:4,content:r.content,isStatic:!1,constType:0,loc:r.loc},arg:i,modifiers:u,loc:c}}return!e.inVPre&&Ll(o,"v-")&&Dl(e,26),{type:6,name:o,value:r&&{type:2,content:r.content,loc:r.loc},loc:c}}function Pl(e,t){const[n,o]=e.options.delimiters,r=e.source.indexOf(o,n.length);if(-1===r)return void Dl(e,25);const c=Al(e);Fl(e,n.length);const i=Al(e),s=Al(e),l=r-n.length,u=e.source.slice(0,l),a=Ml(e,l,t),d=a.trim(),f=a.indexOf(d);f>0&&el(i,u,f);return el(s,u,l-(a.length-d.length-f)),Fl(e,o.length),{type:5,content:{type:4,isStatic:!1,constType:0,content:d,loc:Il(e,i,s)},loc:Il(e,c)}}function Rl(e,t){const n=3===t?["]]>"]:["<",e.options.delimiters[0]];let o=e.source.length;for(let t=0;tr&&(o=r)}const r=Al(e);return{type:2,content:Ml(e,o,t),loc:Il(e,r)}}function Ml(e,t,n){const o=e.source.slice(0,t);return Fl(e,t),2!==n&&3!==n&&o.includes("&")?e.options.decodeEntities(o,4===n):o}function Al(e){const{column:t,line:n,offset:o}=e;return{column:t,line:n,offset:o}}function Il(e,t,n){return{start:t,end:n=n||Al(e),source:e.originalSource.slice(t.offset,n.offset)}}function Vl(e){return e[e.length-1]}function Ll(e,t){return e.startsWith(t)}function Fl(e,t){const{source:n}=e;el(e,n,t),e.source=n.slice(t)}function $l(e){const t=/^[\t\r\n\f ]+/.exec(e.source);t&&Fl(e,t[0].length)}function Bl(e,t,n){return Zs(t,e.originalSource.slice(t.offset,n),n)}function Dl(e,t,n,o=Al(e)){n&&(o.offset+=n,o.column+=n),e.options.onError(zi(t,{start:o,end:o,source:""}))}function Ul(e,t,n){const o=e.source;switch(t){case 0:if(Ll(o,"=0;--e)if(ql(o,n[e].tag))return!0;break;case 1:case 2:{const e=Vl(n);if(e&&ql(o,e.tag))return!0;break}case 3:if(Ll(o,"]]>"))return!0}return!o}function ql(e,t){return Ll(e,"]/.test(e[2+t.length]||">")}function Hl(e,t){!function e(t,n,o=!1){const{children:c}=t,i=c.length;let s=0;for(let t=0;t0){if(e>=2){r.codegenNode.patchFlag="-1",r.codegenNode=n.hoist(r.codegenNode),s++;continue}}else{const e=r.codegenNode;if(13===e.type){const t=Ql(e);if((!t||512===t||1===t)&&Jl(r,n)>=2){const t=Yl(r);t&&(e.props=n.hoist(t))}e.dynamicProps&&(e.dynamicProps=n.hoist(e.dynamicProps))}}}else 12===r.type&&zl(r.content,n)>=2&&(r.codegenNode=n.hoist(r.codegenNode),s++);if(1===r.type){const t=1===r.tagType;t&&n.scopes.vSlot++,e(r,n),t&&n.scopes.vSlot--}else if(11===r.type)e(r,n,1===r.children.length);else if(9===r.type)for(let t=0;t1)for(let r=0;r"_"+Rs[x.helper(e)],replaceNode(e){x.parent.children[x.childIndex]=x.currentNode=e},removeNode(e){const t=x.parent.children,n=e?t.indexOf(e):x.currentNode?x.childIndex:-1;e&&e!==x.currentNode?x.childIndex>n&&(x.childIndex--,x.onNodeRemoved()):(x.currentNode=null,x.onNodeRemoved()),x.parent.children.splice(n,1)},onNodeRemoved:()=>{},addIdentifiers(e){},removeIdentifiers(e){},hoist(e){Object(r.G)(e)&&(e=Fs(e)),x.hoists.push(e);const t=Fs("_hoisted_"+x.hoists.length,!1,e.loc,2);return t.hoisted=e,t},cache:(e,t=!1)=>function(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:Ms}}(x.cached++,e,t)};return x.filters=new Set,x}function Zl(e,t){const n=Xl(e,t);eu(e,n),t.hoistStatic&&Hl(e,n),t.ssr||function(e,t){const{helper:n}=t,{children:o}=e;if(1===o.length){const n=o[0];if(Gl(e,n)&&n.codegenNode){const o=n.codegenNode;13===o.type&&pl(o,t),e.codegenNode=o}else e.codegenNode=n}else if(o.length>1){let o=64;r.e[64];0,e.codegenNode=As(t,n(Wi),void 0,e.children,o+"",void 0,void 0,!0,void 0,!1)}}(e,n),e.helpers=[...n.helpers.keys()],e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.filters=[...n.filters]}function eu(e,t){t.currentNode=e;const{nodeTransforms:n}=t,o=[];for(let c=0;c{n--};for(;nt===e:t=>e.test(t);return(e,o)=>{if(1===e.type){const{props:r}=e;if(3===e.tagType&&r.some(cl))return;const c=[];for(let i=0;i"_"+Rs[e],push(e,t){p.code+=e},indent(){h(++p.indentLevel)},deindent(e=!1){e?--p.indentLevel:h(--p.indentLevel)},newline(){h(p.indentLevel)}};function h(e){p.push("\n"+" ".repeat(e))}return p}(e,t);t.onContextCreated&&t.onContextCreated(n);const{mode:o,push:r,prefixIdentifiers:c,indent:i,deindent:s,newline:l,scopeId:u,ssr:a}=n,d=e.helpers.length>0,f=!c&&"module"!==o;!function(e,t){const{ssr:n,prefixIdentifiers:o,push:r,newline:c,runtimeModuleName:i,runtimeGlobalName:s,ssrRuntimeModuleName:l}=t,u=s,a=e=>`${Rs[e]}: _${Rs[e]}`;if(e.helpers.length>0&&(r(`const _Vue = ${u}\n`),e.hoists.length)){const t=[ts,ns,os,rs,cs].filter(t=>e.helpers.includes(t)).map(a).join(", ");r(`const { ${t} } = _Vue\n`)}(function(e,t){if(!e.length)return;t.pure=!0;const{push:n,newline:o,helper:r,scopeId:c,mode:i}=t;o();for(let r=0;r`${Rs[e]}: _${Rs[e]}`).join(", ")} } = _Vue`),r("\n"),l())),e.components.length&&(ou(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(ou(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),ou(e.filters,"filter",n),l()),e.temps>0){r("let ");for(let t=0;t0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(r("\n"),l()),a||r("return "),e.codegenNode?iu(e.codegenNode,n):r("null"),f&&(s(),r("}")),s(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0}}function ou(e,t,{helper:n,push:o,newline:r,isTS:c}){const i=n("filter"===t?us:"component"===t?is:ls);for(let n=0;n3||!1;t.push("["),n&&t.indent(),cu(e,t,n),n&&t.deindent(),t.push("]")}function cu(e,t,n=!1,o=!0){const{push:c,newline:i}=t;for(let s=0;se||"null")}([c,i,s,l,u]),t),n(")"),d&&n(")");a&&(n(", "),iu(a,t),n(")"))}(e,t);break;case 14:!function(e,t){const{push:n,helper:o,pure:c}=t,i=Object(r.G)(e.callee)?e.callee:o(e.callee);c&&n("/*#__PURE__*/");n(i+"(",e),cu(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){const{push:n,indent:o,deindent:r,newline:c}=t,{properties:i}=e;if(!i.length)return void n("{}",e);const s=i.length>1||!1;n(s?"{":"{ "),s&&o();for(let e=0;e "),(u||l)&&(n("{"),o());s?(u&&n("return "),Object(r.q)(s)?ru(s,t):iu(s,t)):l&&iu(l,t);(u||l)&&(c(),n("}"));a&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){const{test:n,consequent:o,alternate:r,newline:c}=e,{push:i,indent:s,deindent:l,newline:u}=t;if(4===n.type){const e=!Ws(n.content);e&&i("("),su(n,t),e&&i(")")}else i("("),iu(n,t),i(")");c&&s(),t.indentLevel++,c||i(" "),i("? "),iu(o,t),t.indentLevel--,c&&u(),c||i(" "),i(": ");const a=19===r.type;a||t.indentLevel++;iu(r,t),a||t.indentLevel--;c&&l(!0)}(e,t);break;case 20:!function(e,t){const{push:n,helper:o,indent:r,deindent:c,newline:i}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(r(),n(o(xs)+"(-1),"),i());n(`_cache[${e.index}] = `),iu(e.value,t),e.isVNode&&(n(","),i(),n(o(xs)+"(1),"),i(),n(`_cache[${e.index}]`),c());n(")")}(e,t);break;case 21:cu(e.body,t,!0,!1);break;case 22:case 23:case 24:case 25:case 26:case 10:break;default:0}}function su(e,t){const{content:n,isStatic:o}=e;t.push(o?JSON.stringify(n):n,e)}function lu(e,t){for(let n=0;nfunction(e,t,n,o){if(!("else"===t.name||t.exp&&t.exp.content.trim())){const o=t.exp?t.exp.loc:e.loc;n.onError(zi(28,t.loc)),t.exp=Fs("true",!1,o)}0;if("if"===t.name){const r=du(e,t),c={type:9,loc:e.loc,branches:[r]};if(n.replaceNode(c),o)return o(c,r,!0)}else{const r=n.parent.children;let c=r.indexOf(e);for(;c-- >=-1;){const i=r[c];if(!i||2!==i.type||i.content.trim().length){if(i&&9===i.type){"else-if"===t.name&&void 0===i.branches[i.branches.length-1].condition&&n.onError(zi(30,e.loc)),n.removeNode();const r=du(e,t);0,i.branches.push(r);const c=o&&o(i,r,!1);eu(r,n),c&&c(),n.currentNode=null}else n.onError(zi(30,e.loc));break}n.removeNode(i)}}}(e,t,n,(e,t,o)=>{const r=n.parent.children;let c=r.indexOf(e),i=0;for(;c-- >=0;){const e=r[c];e&&9===e.type&&(i+=e.branches.length)}return()=>{if(o)e.codegenNode=fu(t,i,n);else{(function(e){for(;;)if(19===e.type){if(19!==e.alternate.type)return e;e=e.alternate}else 20===e.type&&(e=e.value)}(e.codegenNode)).alternate=fu(t,i+e.branches.length-1,n)}}}));function du(e,t){return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:3!==e.tagType||tl(e,"for")?[e]:e.children,userKey:nl(e,"key")}}function fu(e,t,n){return e.condition?Us(e.condition,pu(e,t,n),Bs(n.helper(os),['""',"true"])):pu(e,t,n)}function pu(e,t,n){const{helper:o}=n,c=Ls("key",Fs(""+t,!1,Ms,2)),{children:i}=e,s=i[0];if(1!==i.length||1!==s.type){if(1===i.length&&11===s.type){const e=s.codegenNode;return dl(e,c,n),e}{let t=64;r.e[64];return As(n,o(Wi),Vs([c]),i,t+"",void 0,void 0,!0,!1,!1,e.loc)}}{const e=s.codegenNode,t=14===(l=e).type&&l.callee===Ns?l.arguments[1].returns:l;return 13===t.type&&pl(t,n),dl(t,c,n),e}var l}const hu=tu("for",(e,t,n)=>{const{helper:o,removeHelper:r}=n;return function(e,t,n,o){if(!t.exp)return void n.onError(zi(31,t.loc));const r=vu(t.exp,n);if(!r)return void n.onError(zi(32,t.loc));const{addIdentifiers:c,removeIdentifiers:i,scopes:s}=n,{source:l,value:u,key:a,index:d}=r,f={type:11,loc:t.loc,source:l,valueAlias:u,keyAlias:a,objectIndexAlias:d,parseResult:r,children:il(e)?e.children:[e]};n.replaceNode(f),s.vFor++;const p=o&&o(f);return()=>{s.vFor--,p&&p()}}(e,t,n,t=>{const c=Bs(o(ds),[t.source]),i=il(e),s=tl(e,"memo"),l=nl(e,"key"),u=l&&(6===l.type?Fs(l.value.content,!0):l.exp),a=l?Ls("key",u):null,d=4===t.source.type&&t.source.constType>0,f=d?64:l?128:256;return t.codegenNode=As(n,o(Wi),void 0,c,f+"",void 0,void 0,!0,!d,!1,e.loc),()=>{let l;const{children:f}=t;const p=1!==f.length||1!==f[0].type,h=sl(e)?e:i&&1===e.children.length&&sl(e.children[0])?e.children[0]:null;if(h?(l=h.codegenNode,i&&a&&dl(l,a,n)):p?l=As(n,o(Wi),a?Vs([a]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(l=f[0].codegenNode,i&&a&&dl(l,a,n),l.isBlock!==!d&&(l.isBlock?(r(Xi),r(ul(n.inSSR,l.isComponent))):r(ll(n.inSSR,l.isComponent))),l.isBlock=!d,l.isBlock?(o(Xi),o(ul(n.inSSR,l.isComponent))):o(ll(n.inSSR,l.isComponent))),s){const e=Ds(_u(t.parseResult,[Fs("_cached")]));e.body={type:21,body:[$s(["const _memo = (",s.exp,")"]),$s(["if (_cached",...u?[" && _cached.key === ",u]:[],` && ${n.helperString(Ps)}(_cached, _memo)) return _cached`]),$s(["const _item = ",l]),Fs("_item.memo = _memo"),Fs("return _item")],loc:Ms},c.arguments.push(e,Fs("_cache"),Fs(String(n.cached++)))}else c.arguments.push(Ds(_u(t.parseResult),l,!0))}})});const mu=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,gu=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,bu=/^\(|\)$/g;function vu(e,t){const n=e.loc,o=e.content,r=o.match(mu);if(!r)return;const[,c,i]=r,s={source:yu(n,i.trim(),o.indexOf(i,c.length)),value:void 0,key:void 0,index:void 0};let l=c.trim().replace(bu,"").trim();const u=c.indexOf(l),a=l.match(gu);if(a){l=l.replace(gu,"").trim();const e=a[1].trim();let t;if(e&&(t=o.indexOf(e,u+l.length),s.key=yu(n,e,t)),a[2]){const r=a[2].trim();r&&(s.index=yu(n,r,o.indexOf(r,s.key?t+e.length:u+l.length)))}}return l&&(s.value=yu(n,l,u)),s}function yu(e,t,n){return Fs(t,!1,Xs(e,n,t.length))}function _u({value:e,key:t,index:n},o=[]){return function(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map((e,t)=>e||Fs("_".repeat(t+1),!1))}([e,t,n,...o])}const Ou=Fs("undefined",!1),ju=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){const n=tl(e,"slot");if(n)return n.exp,t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},Su=(e,t,n)=>Ds(e,t,!1,!0,t.length?t[0].loc:n);function xu(e,t,n=Su){t.helper(Es);const{children:o,loc:r}=e,c=[],i=[];let s=t.scopes.vSlot>0||t.scopes.vFor>0;const l=tl(e,"slot",!0);if(l){const{arg:e,exp:t}=l;e&&!qs(e)&&(s=!0),c.push(Ls(e||Fs("default",!0),n(t,o,r)))}let u=!1,a=!1;const d=[],f=new Set;for(let e=0;e{const c=n(e,o,r);return t.compatConfig&&(c.isNonScopedSlot=!0),Ls("default",c)};u?d.length&&d.some(e=>function e(t){return 2!==t.type&&12!==t.type||(2===t.type?!!t.content.trim():e(t.content))}(e))&&(a?t.onError(zi(39,d[0].loc)):c.push(e(void 0,d))):c.push(e(void 0,o))}const p=s?2:function e(t){for(let n=0;nfunction(){if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;const{tag:n,props:o}=e,c=1===e.tagType;let i=c?function(e,t,n=!1){let{tag:o}=e;const r=Pu(o),c=nl(e,"is");if(c)if(r||ml("COMPILER_IS_ON_ELEMENT",t)){const e=6===c.type?c.value&&Fs(c.value.content,!0):c.exp;if(e)return Bs(t.helper(ss),[e])}else 6===c.type&&c.value.content.startsWith("vue:")&&(o=c.value.content.slice(4));const i=!r&&tl(e,"is");if(i&&i.exp)return Bs(t.helper(ss),[i.exp]);const s=Gs(o)||t.isBuiltInComponent(o);if(s)return n||t.helper(s),s;return t.helper(is),t.components.add(o),fl(o,"component")}(e,t):`"${n}"`;let s,l,u,a,d,f,p=0,h=Object(r.y)(i)&&i.callee===ss||i===Ki||i===Ji||!c&&("svg"===n||"foreignObject"===n);if(o.length>0){const n=ku(e,t);s=n.props,p=n.patchFlag,d=n.dynamicPropNames;const o=n.directives;f=o&&o.length?Is(o.map(e=>function(e,t){const n=[],o=wu.get(e);o?n.push(t.helperString(o)):(t.helper(ls),t.directives.add(e.name),n.push(fl(e.name,"directive")));const{loc:r}=e;e.exp&&n.push(e.exp);e.arg&&(e.exp||n.push("void 0"),n.push(e.arg));if(Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));const t=Fs("true",!1,r);n.push(Vs(e.modifiers.map(e=>Ls(e,t)),r))}return Is(n,e.loc)}(e,t))):void 0,n.shouldUseBlock&&(h=!0)}if(e.children.length>0){i===Yi&&(h=!0,p|=1024);if(c&&i!==Ki&&i!==Yi){const{slots:n,hasDynamicSlots:o}=xu(e,t);l=n,o&&(p|=1024)}else if(1===e.children.length&&i!==Ki){const n=e.children[0],o=n.type,r=5===o||8===o;r&&0===zl(n,t)&&(p|=1),l=r||2===o?n:e.children}else l=e.children}0!==p&&(u=String(p),d&&d.length&&(a=function(e){let t="[";for(let n=0,o=e.length;n0;let p=!1,h=0,m=!1,g=!1,b=!1,v=!1,y=!1,_=!1;const O=[],j=({key:e,value:n})=>{if(qs(e)){const o=e.content,c=Object(r.z)(o);if(l||!c||"onclick"===o.toLowerCase()||"onUpdate:modelValue"===o||Object(r.C)(o)||(v=!0),c&&Object(r.C)(o)&&(_=!0),20===n.type||(4===n.type||8===n.type)&&zl(n,t)>0)return;"ref"===o?m=!0:"class"===o?g=!0:"style"===o?b=!0:"key"===o||O.includes(o)||O.push(o),!l||"class"!==o&&"style"!==o||O.includes(o)||O.push(o)}else y=!0};for(let s=0;s0&&u.push(Ls(Fs("ref_for",!0),Fs("true")))),"is"===n&&(Pu(c)||o&&o.content.startsWith("vue:")||ml("COMPILER_IS_ON_ELEMENT",t)))continue;u.push(Ls(Fs(n,!0,Xs(e,0,n.length)),Fs(o?o.content:"",r,o?o.loc:e)))}else{const{name:n,arg:s,exp:m,loc:g}=h,b="bind"===n,v="on"===n;if("slot"===n){l||t.onError(zi(40,g));continue}if("once"===n||"memo"===n)continue;if("is"===n||b&&ol(s,"is")&&(Pu(c)||ml("COMPILER_IS_ON_ELEMENT",t)))continue;if(v&&o)continue;if((b&&ol(s,"key")||v&&f&&ol(s,"vue:before-update"))&&(p=!0),b&&ol(s,"ref")&&t.scopes.vFor>0&&u.push(Ls(Fs("ref_for",!0),Fs("true"))),!s&&(b||v)){if(y=!0,m)if(u.length&&(a.push(Vs(Tu(u),i)),u=[]),b){if(ml("COMPILER_V_BIND_OBJECT_ORDER",t)){a.unshift(m);continue}a.push(m)}else a.push({type:14,loc:g,callee:t.helper(_s),arguments:[m]});else t.onError(zi(b?34:35,g));continue}const _=t.directiveTransforms[n];if(_){const{props:n,needRuntime:c}=_(h,e,t);!o&&n.forEach(j),u.push(...n),c&&(d.push(h),Object(r.H)(c)&&wu.set(h,c))}else Object(r.r)(n)||(d.push(h),f&&(p=!0))}}let S=void 0;if(a.length?(u.length&&a.push(Vs(Tu(u),i)),S=a.length>1?Bs(t.helper(ms),a,i):a[0]):u.length&&(S=Vs(Tu(u),i)),y?h|=16:(g&&!l&&(h|=2),b&&!l&&(h|=4),O.length&&(h|=8),v&&(h|=32)),p||0!==h&&32!==h||!(m||_||d.length>0)||(h|=512),!t.inSSR&&S)switch(S.type){case 15:let e=-1,n=-1,o=!1;for(let t=0;t{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))})(e=>e.replace(Ru,(e,t)=>t?t.toUpperCase():"")),Au=(e,t)=>{if(sl(e)){const{children:n,loc:o}=e,{slotName:r,slotProps:c}=function(e,t){let n='"default"',o=void 0;const r=[];for(let t=0;t0){const{props:n,directives:c}=ku(e,t,r);o=n,c.length&&t.onError(zi(36,c[0].loc))}return{slotName:n,slotProps:o}}(e,t),i=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"];let s=2;c&&(i[2]=c,s=3),n.length&&(i[3]=Ds([],n,!1,!1,o),s=4),t.scopeId&&!t.slotted&&(s=5),i.splice(s),e.codegenNode=Bs(t.helper(fs),i,o)}};const Iu=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,Vu=(e,t,n,o)=>{const{loc:c,modifiers:i,arg:s}=e;let l;if(e.exp||i.length||n.onError(zi(35,c)),4===s.type)if(s.isStatic){let e=s.content;e.startsWith("vue:")&&(e="vnode-"+e.slice(4)),l=Fs(Object(r.S)(Object(r.f)(e)),!0,s.loc)}else l=$s([n.helperString(Ss)+"(",s,")"]);else l=s,l.children.unshift(n.helperString(Ss)+"("),l.children.push(")");let u=e.exp;u&&!u.content.trim()&&(u=void 0);let a=n.cacheHandlers&&!u&&!n.inVOnce;if(u){const e=Qs(u.content),t=!(e||Iu.test(u.content)),n=u.content.includes(";");0,(t||a&&e)&&(u=$s([`${t?"$event":"(...args)"} => ${n?"{":"("}`,u,n?"}":")"]))}let d={props:[Ls(l,u||Fs("() => {}",!1,c))]};return o&&(d=o(d)),a&&(d.props[0].value=n.cache(d.props[0].value)),d.props.forEach(e=>e.key.isHandlerKey=!0),d},Lu=(e,t,n)=>{const{exp:o,modifiers:c,loc:i}=e,s=e.arg;return 4!==s.type?(s.children.unshift("("),s.children.push(') || ""')):s.isStatic||(s.content=s.content+' || ""'),c.includes("camel")&&(4===s.type?s.isStatic?s.content=Object(r.f)(s.content):s.content=`${n.helperString(Os)}(${s.content})`:(s.children.unshift(n.helperString(Os)+"("),s.children.push(")"))),n.inSSR||(c.includes("prop")&&Fu(s,"."),c.includes("attr")&&Fu(s,"^")),!o||4===o.type&&!o.content.trim()?(n.onError(zi(34,i)),{props:[Ls(s,Fs("",!0,i))]}):{props:[Ls(s,o)]}},Fu=(e,t)=>{4===e.type?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},$u=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{const n=e.children;let o=void 0,r=!1;for(let e=0;e7===e.type&&!t.directiveTransforms[e.name])||"template"===e.tag)))for(let e=0;e{if(1===e.type&&tl(e,"once",!0)){if(Bu.has(e)||t.inVOnce)return;return Bu.add(e),t.inVOnce=!0,t.helper(xs),()=>{t.inVOnce=!1;const e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0))}}},Uu=(e,t,n)=>{const{exp:o,arg:r}=e;if(!o)return n.onError(zi(41,e.loc)),qu();const c=o.loc.source,i=4===o.type?o.content:c;n.bindingMetadata[c];if(!i.trim()||!Qs(i))return n.onError(zi(42,o.loc)),qu();const s=r||Fs("modelValue",!0),l=r?qs(r)?"onUpdate:"+r.content:$s(['"onUpdate:" + ',r]):"onUpdate:modelValue";let u;u=$s([(n.isTS?"($event: any)":"$event")+" => ((",o,") = $event)"]);const a=[Ls(s,e.exp),Ls(l,u)];if(e.modifiers.length&&1===t.tagType){const t=e.modifiers.map(e=>(Ws(e)?e:JSON.stringify(e))+": true").join(", "),n=r?qs(r)?r.content+"Modifiers":$s([r,' + "Modifiers"']):"modelModifiers";a.push(Ls(n,Fs(`{ ${t} }`,!1,e.loc,2)))}return qu(a)};function qu(e=[]){return{props:e}}const Hu=/[\w).+\-_$\]]/,Gu=(e,t)=>{ml("COMPILER_FILTER",t)&&(5===e.type&&zu(e.content,t),1===e.type&&e.props.forEach(e=>{7===e.type&&"for"!==e.name&&e.exp&&zu(e.exp,t)}))};function zu(e,t){if(4===e.type)Wu(e,t);else for(let n=0;n=0&&(e=n.charAt(t)," "===e);t--);e&&Hu.test(e)||(a=!0)}}else void 0===i?(h=c+1,i=n.slice(0,c).trim()):g();function g(){m.push(n.slice(h,c).trim()),h=c+1}if(void 0===i?i=n.slice(0,c).trim():0!==h&&g(),m.length){for(c=0;c{if(1===e.type){const n=tl(e,"memo");if(!n||Ju.has(e))return;return Ju.add(e),()=>{const o=e.codegenNode||t.currentNode.codegenNode;o&&13===o.type&&(1!==e.tagType&&pl(o,t),e.codegenNode=Bs(t.helper(Ns),[n.exp,Ds(void 0,o),"_cache",String(t.cached++)]))}}};function Qu(e,t={}){const n=t.onError||Hi,o="module"===t.mode;!0===t.prefixIdentifiers?n(zi(46)):o&&n(zi(47));t.cacheHandlers&&n(zi(48)),t.scopeId&&!o&&n(zi(49));const c=Object(r.G)(e)?_l(e,t):e,[i,s]=[[Du,au,Yu,hu,Gu,Au,Eu,ju,$u],{on:Vu,bind:Lu,model:Uu}];return Zl(c,Object(r.i)({},t,{prefixIdentifiers:!1,nodeTransforms:[...i,...t.nodeTransforms||[]],directiveTransforms:Object(r.i)({},s,t.directiveTransforms||{})})),nu(c,Object(r.i)({},t,{prefixIdentifiers:!1}))}const Xu=Symbol(""),Zu=Symbol(""),ea=Symbol(""),ta=Symbol(""),na=Symbol(""),oa=Symbol(""),ra=Symbol(""),ca=Symbol(""),ia=Symbol(""),sa=Symbol("");var la;let ua;la={[Xu]:"vModelRadio",[Zu]:"vModelCheckbox",[ea]:"vModelText",[ta]:"vModelSelect",[na]:"vModelDynamic",[oa]:"withModifiers",[ra]:"withKeys",[ca]:"vShow",[ia]:"Transition",[sa]:"TransitionGroup"},Object.getOwnPropertySymbols(la).forEach(e=>{Rs[e]=la[e]});const aa=Object(r.L)("style,iframe,script,noscript",!0),da={isVoidTag:r.I,isNativeTag:e=>Object(r.u)(e)||Object(r.D)(e),isPreTag:e=>"pre"===e,decodeEntities:function(e,t=!1){return ua||(ua=document.createElement("div")),t?(ua.innerHTML=`
`,ua.children[0].getAttribute("foo")):(ua.innerHTML=e,ua.textContent)},isBuiltInComponent:e=>Hs(e,"Transition")?ia:Hs(e,"TransitionGroup")?sa:void 0,getNamespace(e,t){let n=t?t.ns:0;if(t&&2===n)if("annotation-xml"===t.tag){if("svg"===e)return 1;t.props.some(e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content))&&(n=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(n=0);else t&&1===n&&("foreignObject"!==t.tag&&"desc"!==t.tag&&"title"!==t.tag||(n=0));if(0===n){if("svg"===e)return 1;if("math"===e)return 2}return n},getTextMode({tag:e,ns:t}){if(0===t){if("textarea"===e||"title"===e)return 1;if(aa(e))return 2}return 0}},fa=(e,t)=>{const n=Object(r.P)(e);return Fs(JSON.stringify(n),!1,t,3)};function pa(e,t){return zi(e,t)}const ha=Object(r.L)("passive,once,capture"),ma=Object(r.L)("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),ga=Object(r.L)("left,right"),ba=Object(r.L)("onkeyup,onkeydown,onkeypress",!0),va=(e,t)=>qs(e)&&"onclick"===e.content.toLowerCase()?Fs(t,!0):4!==e.type?$s(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e;const ya=(e,t)=>{1!==e.type||0!==e.tagType||"script"!==e.tag&&"style"!==e.tag||(t.onError(pa(60,e.loc)),t.removeNode())},_a=[e=>{1===e.type&&e.props.forEach((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:Fs("style",!0,t.loc),exp:fa(t.value.content,t.loc),modifiers:[],loc:t.loc})})}],Oa={cloak:()=>({props:[]}),html:(e,t,n)=>{const{exp:o,loc:r}=e;return o||n.onError(pa(50,r)),t.children.length&&(n.onError(pa(51,r)),t.children.length=0),{props:[Ls(Fs("innerHTML",!0,r),o||Fs("",!0))]}},text:(e,t,n)=>{const{exp:o,loc:r}=e;return o||n.onError(pa(52,r)),t.children.length&&(n.onError(pa(53,r)),t.children.length=0),{props:[Ls(Fs("textContent",!0),o?Bs(n.helperString(hs),[o],r):Fs("",!0))]}},model:(e,t,n)=>{const o=Uu(e,t,n);if(!o.props.length||1===t.tagType)return o;e.arg&&n.onError(pa(55,e.arg.loc));const{tag:r}=t,c=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||c){let i=ea,s=!1;if("input"===r||c){const o=nl(t,"type");if(o){if(7===o.type)i=na;else if(o.value)switch(o.value.content){case"radio":i=Xu;break;case"checkbox":i=Zu;break;case"file":s=!0,n.onError(pa(56,e.loc))}}else(function(e){return e.props.some(e=>!(7!==e.type||"bind"!==e.name||e.arg&&4===e.arg.type&&e.arg.isStatic))})(t)&&(i=na)}else"select"===r&&(i=ta);s||(o.needRuntime=n.helper(i))}else n.onError(pa(54,e.loc));return o.props=o.props.filter(e=>!(4===e.key.type&&"modelValue"===e.key.content)),o},on:(e,t,n)=>Vu(e,0,n,t=>{const{modifiers:o}=e;if(!o.length)return t;let{key:c,value:i}=t.props[0];const{keyModifiers:s,nonKeyModifiers:l,eventOptionModifiers:u}=((e,t,n,o)=>{const r=[],c=[],i=[];for(let o=0;o{const{exp:o,loc:r}=e;return o||n.onError(pa(58,r)),{props:[],needRuntime:n.helper(ca)}}};const ja=Object.create(null);Hr((function(e,t){if(!Object(r.G)(e)){if(!e.nodeType)return r.d;e=e.innerHTML}const n=e,c=ja[n];if(c)return c;if("#"===e[0]){const t=document.querySelector(e);0,e=t?t.innerHTML:""}const{code:i}=function(e,t={}){return Qu(e,Object(r.i)({},da,t,{nodeTransforms:[ya,..._a,...t.nodeTransforms||[]],directiveTransforms:Object(r.i)({},Oa,t.directiveTransforms||{}),transformHoist:null}))}(e,Object(r.i)({hoistStatic:!0,onError:void 0,onWarn:r.d},t)),s=new Function("Vue",i)(o);return s._rc=!0,ja[n]=s}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=(e,t)=>{const n=e.__vccOpts||e;for(const[e,o]of t)n[e]=o;return n}},function(e,t,n){"use strict";var o=n(1),r=["id"],c=["onClick"],i=["innerHTML"];var s=n(8),l={name:"VueSimpleContextMenu",props:{elementId:{type:String,required:!0},options:{type:Array,required:!0}},emits:["menu-closed","option-clicked"],directives:{"click-outside":n.n(s).a.directive},data:function(){return{item:null,menuWidth:null,menuHeight:null}},methods:{showMenu:function(e,t){this.item=t;var n=document.getElementById(this.elementId);n&&(this.menuWidth&&this.menuHeight||(n.style.visibility="hidden",n.style.display="block",this.menuWidth=n.offsetWidth,this.menuHeight=n.offsetHeight,n.removeAttribute("style")),this.menuWidth+e.pageX>=window.innerWidth?n.style.left=e.pageX-this.menuWidth+2+"px":n.style.left=e.pageX-2+"px",this.menuHeight+e.pageY>=window.innerHeight?n.style.top=e.pageY-this.menuHeight+2+"px":n.style.top=e.pageY-2+"px",n.classList.add("vue-simple-context-menu--active"))},hideContextMenu:function(){var e=document.getElementById(this.elementId);e&&(e.classList.remove("vue-simple-context-menu--active"),this.$emit("menu-closed"))},onClickOutside:function(){this.hideContextMenu()},optionClicked:function(e){this.hideContextMenu(),this.$emit("option-clicked",{item:this.item,option:e})},onEscKeyRelease:function(e){27===e.keyCode&&this.hideContextMenu()}},mounted:function(){document.body.addEventListener("keyup",this.onEscKeyRelease)},beforeUnmount:function(){document.removeEventListener("keyup",this.onEscKeyRelease)}},u=(n(10),n(2));const a=n.n(u)()(l,[["render",function(e,t,n,s,l,u){var a=Object(o.k)("click-outside");return Object(o.h)(),Object(o.c)("div",null,[Object(o.m)((Object(o.h)(),Object(o.c)("ul",{id:n.elementId,class:"vue-simple-context-menu"},[(Object(o.h)(!0),Object(o.c)(o.a,null,Object(o.i)(n.options,(function(e,t){return Object(o.h)(),Object(o.c)("li",{key:t,onClick:Object(o.n)((function(t){return u.optionClicked(e)}),["stop"]),class:Object(o.g)(["vue-simple-context-menu__item",[e.class,"divider"===e.type?"vue-simple-context-menu__divider":""]])},[Object(o.d)("span",{innerHTML:e.name},null,8,i)],10,c)})),128))],8,r)),[[a,u.onClickOutside]])])}]]);t.a=a},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";(function(e){var o=n(3);var r={install:function e(t){e.installed||(e.installed=!0,t.component("VueSimpleContextMenu",o.a))}},c=null;"undefined"!=typeof window?c=window.Vue:void 0!==e&&(c=e.Vue),c&&c.use(r),t.a=o.a}).call(this,n(4))},function(e,t,n){var o,r,c,i,s,l,u,a;e.exports=(o="__v-click-outside",r="undefined"!=typeof window,c="undefined"!=typeof navigator,i=r&&("ontouchstart"in window||c&&navigator.msMaxTouchPoints>0)?["touchstart"]:["click"],s=function(e){var t=e.event,n=e.handler;(0,e.middleware)(t)&&n(t)},l=function(e,t){var n=function(e){var t="function"==typeof e;if(!t&&"object"!=typeof e)throw new Error("v-click-outside: Binding value must be a function or an object");return{handler:t?e:e.handler,middleware:e.middleware||function(e){return e},events:e.events||i,isActive:!(!1===e.isActive),detectIframe:!(!1===e.detectIframe),capture:Boolean(e.capture)}}(t.value),r=n.handler,c=n.middleware,l=n.detectIframe,u=n.capture;if(n.isActive){if(e[o]=n.events.map((function(t){return{event:t,srcTarget:document.documentElement,handler:function(t){return function(e){var t=e.el,n=e.event,o=e.handler,r=e.middleware,c=n.path||n.composedPath&&n.composedPath();(c?c.indexOf(t)<0:!t.contains(n.target))&&s({event:n,handler:o,middleware:r})}({el:e,event:t,handler:r,middleware:c})},capture:u}})),l){var a={event:"blur",srcTarget:window,handler:function(t){return function(e){var t=e.el,n=e.event,o=e.handler,r=e.middleware;setTimeout((function(){var e=document.activeElement;e&&"IFRAME"===e.tagName&&!t.contains(e)&&s({event:n,handler:o,middleware:r})}),0)}({el:e,event:t,handler:r,middleware:c})},capture:u};e[o]=[].concat(e[o],[a])}e[o].forEach((function(t){var n=t.event,r=t.srcTarget,c=t.handler;return setTimeout((function(){e[o]&&r.addEventListener(n,c,u)}),0)}))}},u=function(e){(e[o]||[]).forEach((function(e){return e.srcTarget.removeEventListener(e.event,e.handler,e.capture)})),delete e[o]},{install:function(e){e.directive("click-outside",a)},directive:a=r?{beforeMount:l,updated:function(e,t){var n=t.value,o=t.oldValue;JSON.stringify(n)!==JSON.stringify(o)&&(u(e),l(e,{value:n}))},unmounted:u}:{}})},function(e,t,n){"use strict";n(5)},function(e,t,n){"use strict";n(6)},function(e,t,n){"use strict";n.r(t);var o=n(1),r={id:"app"},c=Object(o.e)('

vue-simple-context-menu

install
npm i vue-simple-context-menu

',4),i={class:"container pt-2 pb-4"},s={class:"row"},l={class:"col-lg-6 mb-4 mb-lg-0"},u=Object(o.d)("p",null,"Right click on an item below.",-1),a={class:"list-group"},d=["onContextmenu"],f={class:"col-lg-6"},p=Object(o.d)("p",null,"Left click on an item below.",-1),h={class:"list-group"},m=["onClick"];var g={name:"app",data:function(){return{itemArray1:[{name:"Jim",job:"Salesman"},{name:"Dwight",job:"Assistant to the Regional Manager"},{name:"Pam",job:"Receptionist"}],itemArray2:[{name:"Leslie",job:"Deputy Director"},{name:"Ron",job:"Parks Director"},{name:"Andy",job:"Shoeshiner"}],optionsArray1:[{name:"Duplicate",slug:"duplicate"},{type:"divider"},{name:"Edit",slug:"edit"},{name:"Delete",slug:"delete"}],optionsArray2:[{name:"Add Star",slug:"add-star",class:"my-custom-class"},{name:"Remove Star",slug:"remove-star"}]}},methods:{handleClick1:function(e,t){this.$refs.vueSimpleContextMenu1.showMenu(e,t)},handleClick2:function(e,t){this.$refs.vueSimpleContextMenu2.showMenu(e,t)},optionClicked1:function(e){window.alert(JSON.stringify(e))},optionClicked2:function(e){window.alert(JSON.stringify(e))}}},b=(n(9),n(2));var v=n.n(b)()(g,[["render",function(e,t,n,g,b,v){var y=Object(o.j)("vue-simple-context-menu");return Object(o.h)(),Object(o.c)("div",r,[c,Object(o.d)("div",i,[Object(o.d)("div",s,[Object(o.d)("div",l,[u,Object(o.d)("div",a,[(Object(o.h)(!0),Object(o.c)(o.a,null,Object(o.i)(b.itemArray1,(function(e,t){return Object(o.h)(),Object(o.c)("div",{key:t,onContextmenu:Object(o.n)((function(t){return v.handleClick1(t,e)}),["prevent","stop"]),class:"list-group-item list-group-item-action"},Object(o.l)(e.name),41,d)})),128))])]),Object(o.d)("div",f,[p,Object(o.d)("div",h,[(Object(o.h)(!0),Object(o.c)(o.a,null,Object(o.i)(b.itemArray2,(function(e,t){return Object(o.h)(),Object(o.c)("div",{key:t,onClick:Object(o.n)((function(t){return v.handleClick2(t,e)}),["prevent","stop"]),class:"list-group-item list-group-item-action"},Object(o.l)(e.name),9,m)})),128))])])])]),Object(o.f)(y,{elementId:"myFirstMenu",options:b.optionsArray1,ref:"vueSimpleContextMenu1",onOptionClicked:v.optionClicked1},null,8,["options","onOptionClicked"]),Object(o.f)(y,{elementId:"mySecondMenu",options:b.optionsArray2,ref:"vueSimpleContextMenu2",onOptionClicked:v.optionClicked2},null,8,["options","onOptionClicked"])])}]]),y=n(7),_=Object(o.b)(v);_.component("vue-simple-context-menu",y.a),_.mount("#app")}]); \ No newline at end of file +!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/vue-simple-context-menu/",n(n.s=11)}([function(e,t,n){"use strict";(function(e){function o(e,t){const n=Object.create(null),o=e.split(",");for(let e=0;e!!n[e.toLowerCase()]:e=>!!n[e]}n.d(t,"a",(function(){return x})),n.d(t,"b",(function(){return S})),n.d(t,"c",(function(){return w})),n.d(t,"d",(function(){return C})),n.d(t,"e",(function(){return r})),n.d(t,"f",(function(){return X})),n.d(t,"g",(function(){return te})),n.d(t,"h",(function(){return ce})),n.d(t,"i",(function(){return N})),n.d(t,"j",(function(){return i})),n.d(t,"k",(function(){return le})),n.d(t,"l",(function(){return oe})),n.d(t,"m",(function(){return M})),n.d(t,"n",(function(){return ee})),n.d(t,"o",(function(){return u})),n.d(t,"p",(function(){return re})),n.d(t,"q",(function(){return A})),n.d(t,"r",(function(){return J})),n.d(t,"s",(function(){return F})),n.d(t,"t",(function(){return c})),n.d(t,"u",(function(){return g})),n.d(t,"v",(function(){return W})),n.d(t,"w",(function(){return I})),n.d(t,"x",(function(){return T})),n.d(t,"y",(function(){return D})),n.d(t,"z",(function(){return k})),n.d(t,"A",(function(){return z})),n.d(t,"B",(function(){return U})),n.d(t,"C",(function(){return K})),n.d(t,"D",(function(){return b})),n.d(t,"E",(function(){return V})),n.d(t,"F",(function(){return l})),n.d(t,"G",(function(){return $})),n.d(t,"H",(function(){return B})),n.d(t,"I",(function(){return v})),n.d(t,"J",(function(){return y})),n.d(t,"K",(function(){return _})),n.d(t,"L",(function(){return o})),n.d(t,"M",(function(){return h})),n.d(t,"N",(function(){return m})),n.d(t,"O",(function(){return a})),n.d(t,"P",(function(){return p})),n.d(t,"Q",(function(){return P})),n.d(t,"R",(function(){return O})),n.d(t,"S",(function(){return ne})),n.d(t,"T",(function(){return ie})),n.d(t,"U",(function(){return G}));const r={1:"TEXT",2:"CLASS",4:"STYLE",8:"PROPS",16:"FULL_PROPS",32:"HYDRATE_EVENTS",64:"STABLE_FRAGMENT",128:"KEYED_FRAGMENT",256:"UNKEYED_FRAGMENT",512:"NEED_PATCH",1024:"DYNAMIC_SLOTS",2048:"DEV_ROOT_FRAGMENT",[-1]:"HOISTED",[-2]:"BAIL"},c=o("Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt");function i(e,t=0,n=e.length){let o=e.split(/(\r?\n)/);const r=o.filter((e,t)=>t%2==1);o=o.filter((e,t)=>t%2==0);let c=0;const i=[];for(let e=0;e=t){for(let s=e-2;s<=e+2||n>c;s++){if(s<0||s>=o.length)continue;const l=s+1;i.push(`${l}${" ".repeat(Math.max(3-String(l).length,0))}| ${o[s]}`);const u=o[s].length,a=r[s]&&r[s].length||0;if(s===e){const e=t-(c-(u+a)),o=Math.max(1,n>c?u-e:n-t);i.push(" | "+" ".repeat(e)+"^".repeat(o))}else if(s>e){if(n>c){const e=Math.max(Math.min(n-c,u),1);i.push(" | "+"^".repeat(e))}c+=u+a}}break}return i.join("\n")}const s="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",l=o(s);function u(e){return!!e||""===e}function a(e){if(A(e)){const t={};for(let n=0;n{if(e){const n=e.split(f);n.length>1&&(t[n[0].trim()]=n[1].trim())}}),t}function h(e){let t="";if($(e))t=e;else if(A(e))for(let n=0;ny(e,t))}const O=e=>$(e)?e:null==e?"":A(e)||D(e)&&(e.toString===q||!F(e.toString))?JSON.stringify(e,j,2):String(e),j=(e,t)=>t&&t.__v_isRef?j(e,t.value):I(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((e,[t,n])=>(e[t+" =>"]=n,e),{})}:V(t)?{[`Set(${t.size})`]:[...t.values()]}:!D(t)||A(t)||z(t)?t:String(t),S={},x=[],C=()=>{},w=()=>!1,E=/^on[^a-z]/,k=e=>E.test(e),T=e=>e.startsWith("onUpdate:"),N=Object.assign,P=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},R=Object.prototype.hasOwnProperty,M=(e,t)=>R.call(e,t),A=Array.isArray,I=e=>"[object Map]"===H(e),V=e=>"[object Set]"===H(e),L=e=>e instanceof Date,F=e=>"function"==typeof e,$=e=>"string"==typeof e,B=e=>"symbol"==typeof e,D=e=>null!==e&&"object"==typeof e,U=e=>D(e)&&F(e.then)&&F(e.catch),q=Object.prototype.toString,H=e=>q.call(e),G=e=>H(e).slice(8,-1),z=e=>"[object Object]"===H(e),W=e=>$(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,K=o(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),J=o("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"),Y=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Q=/-(\w)/g,X=Y(e=>e.replace(Q,(e,t)=>t?t.toUpperCase():"")),Z=/\B([A-Z])/g,ee=Y(e=>e.replace(Z,"-$1").toLowerCase()),te=Y(e=>e.charAt(0).toUpperCase()+e.slice(1)),ne=Y(e=>e?"on"+te(e):""),oe=(e,t)=>!Object.is(e,t),re=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},ie=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let se;const le=()=>se||(se="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:{})}).call(this,n(4))},function(e,t,n){"use strict";n.d(t,"g",(function(){return r.M})),n.d(t,"l",(function(){return r.R})),n.d(t,"a",(function(){return Ho})),n.d(t,"c",(function(){return nr})),n.d(t,"d",(function(){return ar})),n.d(t,"e",(function(){return gr})),n.d(t,"f",(function(){return dr})),n.d(t,"h",(function(){return Yo})),n.d(t,"i",(function(){return Sr})),n.d(t,"j",(function(){return Fo})),n.d(t,"k",(function(){return Do})),n.d(t,"m",(function(){return bo})),n.d(t,"b",(function(){return $i})),n.d(t,"n",(function(){return Ei}));var o={};n.r(o),n.d(o,"EffectScope",(function(){return i})),n.d(o,"ReactiveEffect",(function(){return _})),n.d(o,"customRef",(function(){return Ge})),n.d(o,"effect",(function(){return j})),n.d(o,"effectScope",(function(){return s})),n.d(o,"getCurrentScope",(function(){return u})),n.d(o,"isProxy",(function(){return ke})),n.d(o,"isReactive",(function(){return Ce})),n.d(o,"isReadonly",(function(){return we})),n.d(o,"isRef",(function(){return Ie})),n.d(o,"isShallow",(function(){return Ee})),n.d(o,"markRaw",(function(){return Ne})),n.d(o,"onScopeDispose",(function(){return a})),n.d(o,"proxyRefs",(function(){return qe})),n.d(o,"reactive",(function(){return _e})),n.d(o,"readonly",(function(){return je})),n.d(o,"ref",(function(){return Ve})),n.d(o,"shallowReactive",(function(){return Oe})),n.d(o,"shallowReadonly",(function(){return Se})),n.d(o,"shallowRef",(function(){return Le})),n.d(o,"stop",(function(){return S})),n.d(o,"toRaw",(function(){return Te})),n.d(o,"toRef",(function(){return Ke})),n.d(o,"toRefs",(function(){return ze})),n.d(o,"triggerRef",(function(){return Be})),n.d(o,"unref",(function(){return De})),n.d(o,"camelize",(function(){return r.f})),n.d(o,"capitalize",(function(){return r.g})),n.d(o,"normalizeClass",(function(){return r.M})),n.d(o,"normalizeProps",(function(){return r.N})),n.d(o,"normalizeStyle",(function(){return r.O})),n.d(o,"toDisplayString",(function(){return r.R})),n.d(o,"toHandlerKey",(function(){return r.S})),n.d(o,"BaseTransition",(function(){return mn})),n.d(o,"Comment",(function(){return zo})),n.d(o,"Fragment",(function(){return Ho})),n.d(o,"KeepAlive",(function(){return En})),n.d(o,"Static",(function(){return Wo})),n.d(o,"Suspense",(function(){return Jt})),n.d(o,"Teleport",(function(){return Lo})),n.d(o,"Text",(function(){return Go})),n.d(o,"callWithAsyncErrorHandling",(function(){return et})),n.d(o,"callWithErrorHandling",(function(){return Ze})),n.d(o,"cloneVNode",(function(){return hr})),n.d(o,"compatUtils",(function(){return yc})),n.d(o,"computed",(function(){return Zr})),n.d(o,"createBlock",(function(){return or})),n.d(o,"createCommentVNode",(function(){return br})),n.d(o,"createElementBlock",(function(){return nr})),n.d(o,"createElementVNode",(function(){return ar})),n.d(o,"createHydrationRenderer",(function(){return To})),n.d(o,"createPropsRestProxy",(function(){return lc})),n.d(o,"createRenderer",(function(){return ko})),n.d(o,"createSlots",(function(){return xr})),n.d(o,"createStaticVNode",(function(){return gr})),n.d(o,"createTextVNode",(function(){return mr})),n.d(o,"createVNode",(function(){return dr})),n.d(o,"defineAsyncComponent",(function(){return xn})),n.d(o,"defineComponent",(function(){return jn})),n.d(o,"defineEmits",(function(){return tc})),n.d(o,"defineExpose",(function(){return nc})),n.d(o,"defineProps",(function(){return ec})),n.d(o,"devtools",(function(){return xt})),n.d(o,"getCurrentInstance",(function(){return Ir})),n.d(o,"getTransitionRawChildren",(function(){return On})),n.d(o,"guardReactiveProps",(function(){return pr})),n.d(o,"h",(function(){return ac})),n.d(o,"handleError",(function(){return tt})),n.d(o,"initCustomFormatter",(function(){return pc})),n.d(o,"inject",(function(){return nn})),n.d(o,"isMemoSame",(function(){return mc})),n.d(o,"isRuntimeOnly",(function(){return Gr})),n.d(o,"isVNode",(function(){return rr})),n.d(o,"mergeDefaults",(function(){return sc})),n.d(o,"mergeProps",(function(){return Or})),n.d(o,"nextTick",(function(){return mt})),n.d(o,"onActivated",(function(){return Tn})),n.d(o,"onBeforeMount",(function(){return Ln})),n.d(o,"onBeforeUnmount",(function(){return Dn})),n.d(o,"onBeforeUpdate",(function(){return $n})),n.d(o,"onDeactivated",(function(){return Nn})),n.d(o,"onErrorCaptured",(function(){return zn})),n.d(o,"onMounted",(function(){return Fn})),n.d(o,"onRenderTracked",(function(){return Gn})),n.d(o,"onRenderTriggered",(function(){return Hn})),n.d(o,"onServerPrefetch",(function(){return qn})),n.d(o,"onUnmounted",(function(){return Un})),n.d(o,"onUpdated",(function(){return Bn})),n.d(o,"openBlock",(function(){return Yo})),n.d(o,"popScopeId",(function(){return Bt})),n.d(o,"provide",(function(){return tn})),n.d(o,"pushScopeId",(function(){return $t})),n.d(o,"queuePostFlushCb",(function(){return yt})),n.d(o,"registerRuntimeCompiler",(function(){return Hr})),n.d(o,"renderList",(function(){return Sr})),n.d(o,"renderSlot",(function(){return Cr})),n.d(o,"resolveComponent",(function(){return Fo})),n.d(o,"resolveDirective",(function(){return Do})),n.d(o,"resolveDynamicComponent",(function(){return Bo})),n.d(o,"resolveFilter",(function(){return vc})),n.d(o,"resolveTransitionHooks",(function(){return bn})),n.d(o,"setBlockTracking",(function(){return er})),n.d(o,"setDevtoolsHook",(function(){return kt})),n.d(o,"setTransitionHooks",(function(){return _n})),n.d(o,"ssrContextKey",(function(){return dc})),n.d(o,"ssrUtils",(function(){return bc})),n.d(o,"toHandlers",(function(){return wr})),n.d(o,"transformVNodeArgs",(function(){return ir})),n.d(o,"useAttrs",(function(){return cc})),n.d(o,"useSSRContext",(function(){return fc})),n.d(o,"useSlots",(function(){return rc})),n.d(o,"useTransitionState",(function(){return pn})),n.d(o,"version",(function(){return gc})),n.d(o,"warn",(function(){return Qe})),n.d(o,"watch",(function(){return ln})),n.d(o,"watchEffect",(function(){return on})),n.d(o,"watchPostEffect",(function(){return rn})),n.d(o,"watchSyncEffect",(function(){return cn})),n.d(o,"withAsyncContext",(function(){return uc})),n.d(o,"withCtx",(function(){return Ut})),n.d(o,"withDefaults",(function(){return oc})),n.d(o,"withDirectives",(function(){return bo})),n.d(o,"withMemo",(function(){return hc})),n.d(o,"withScopeId",(function(){return Dt})),n.d(o,"Transition",(function(){return Hc})),n.d(o,"TransitionGroup",(function(){return li})),n.d(o,"VueElement",(function(){return Bc})),n.d(o,"createApp",(function(){return $i})),n.d(o,"createSSRApp",(function(){return Bi})),n.d(o,"defineCustomElement",(function(){return Lc})),n.d(o,"defineSSRCustomElement",(function(){return Fc})),n.d(o,"hydrate",(function(){return Fi})),n.d(o,"initDirectivesForSSR",(function(){return qi})),n.d(o,"render",(function(){return Li})),n.d(o,"useCssModule",(function(){return Dc})),n.d(o,"useCssVars",(function(){return Uc})),n.d(o,"vModelCheckbox",(function(){return gi})),n.d(o,"vModelDynamic",(function(){return Si})),n.d(o,"vModelRadio",(function(){return vi})),n.d(o,"vModelSelect",(function(){return yi})),n.d(o,"vModelText",(function(){return mi})),n.d(o,"vShow",(function(){return Ni})),n.d(o,"withKeys",(function(){return Ti})),n.d(o,"withModifiers",(function(){return Ei}));var r=n(0);let c;class i{constructor(e=!1){this.active=!0,this.effects=[],this.cleanups=[],!e&&c&&(this.parent=c,this.index=(c.scopes||(c.scopes=[])).push(this)-1)}run(e){if(this.active)try{return c=this,e()}finally{c=this.parent}else 0}on(){c=this}off(){c=this.parent}stop(e){if(this.active){let t,n;for(t=0,n=this.effects.length;t{const t=new Set(e);return t.w=0,t.n=0,t},f=e=>(e.w&g)>0,p=e=>(e.n&g)>0,h=new WeakMap;let m=0,g=1;let b;const v=Symbol(""),y=Symbol("");class _{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],this.parent=void 0,l(this,n)}run(){if(!this.active)return this.fn();let e=b,t=x;for(;e;){if(e===this)return;e=e.parent}try{return this.parent=b,b=this,x=!0,g=1<<++m,m<=30?(({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o{("length"===t||t>=o)&&l.push(e)});else switch(void 0!==n&&l.push(s.get(n)),t){case"add":Object(r.q)(e)?Object(r.v)(n)&&l.push(s.get("length")):(l.push(s.get(v)),Object(r.w)(e)&&l.push(s.get(y)));break;case"delete":Object(r.q)(e)||(l.push(s.get(v)),Object(r.w)(e)&&l.push(s.get(y)));break;case"set":Object(r.w)(e)&&l.push(s.get(v))}if(1===l.length)l[0]&&P(l[0]);else{const e=[];for(const t of l)t&&e.push(...t);P(d(e))}}function P(e,t){for(const t of Object(r.q)(e)?e:[...e])(t!==b||t.allowRecurse)&&(t.scheduler?t.scheduler():t.run())}const R=Object(r.L)("__proto__,__v_isRef,__isVue"),M=new Set(Object.getOwnPropertyNames(Symbol).map(e=>Symbol[e]).filter(r.H)),A=B(),I=B(!1,!0),V=B(!0),L=B(!0,!0),F=$();function $(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...e){const n=Te(this);for(let e=0,t=this.length;e{e[t]=function(...e){w();const n=Te(this)[t].apply(this,e);return E(),n}}),e}function B(e=!1,t=!1){return function(n,o,c){if("__v_isReactive"===o)return!e;if("__v_isReadonly"===o)return e;if("__v_isShallow"===o)return t;if("__v_raw"===o&&c===(e?t?ye:ve:t?be:ge).get(n))return n;const i=Object(r.q)(n);if(!e&&i&&Object(r.m)(F,o))return Reflect.get(F,o,c);const s=Reflect.get(n,o,c);if(Object(r.H)(o)?M.has(o):R(o))return s;if(e||k(n,0,o),t)return s;if(Ie(s)){return!i||!Object(r.v)(o)?s.value:s}return Object(r.y)(s)?e?je(s):_e(s):s}}const D=q(),U=q(!0);function q(e=!1){return function(t,n,o,c){let i=t[n];if(we(i)&&Ie(i)&&!Ie(o))return!1;if(!e&&!we(o)&&(Ee(o)||(o=Te(o),i=Te(i)),!Object(r.q)(t)&&Ie(i)&&!Ie(o)))return i.value=o,!0;const s=Object(r.q)(t)&&Object(r.v)(n)?Number(n)!0,deleteProperty:(e,t)=>!0},z=Object(r.i)({},H,{get:I,set:U}),W=Object(r.i)({},G,{get:L}),K=e=>e,J=e=>Reflect.getPrototypeOf(e);function Y(e,t,n=!1,o=!1){const r=Te(e=e.__v_raw),c=Te(t);t!==c&&!n&&k(r,0,t),!n&&k(r,0,c);const{has:i}=J(r),s=o?K:n?Re:Pe;return i.call(r,t)?s(e.get(t)):i.call(r,c)?s(e.get(c)):void(e!==r&&e.get(t))}function Q(e,t=!1){const n=this.__v_raw,o=Te(n),r=Te(e);return e!==r&&!t&&k(o,0,e),!t&&k(o,0,r),e===r?n.has(e):n.has(e)||n.has(r)}function X(e,t=!1){return e=e.__v_raw,!t&&k(Te(e),0,v),Reflect.get(e,"size",e)}function Z(e){e=Te(e);const t=Te(this);return J(t).has.call(t,e)||(t.add(e),N(t,"add",e,e)),this}function ee(e,t){t=Te(t);const n=Te(this),{has:o,get:c}=J(n);let i=o.call(n,e);i||(e=Te(e),i=o.call(n,e));const s=c.call(n,e);return n.set(e,t),i?Object(r.l)(t,s)&&N(n,"set",e,t):N(n,"add",e,t),this}function te(e){const t=Te(this),{has:n,get:o}=J(t);let r=n.call(t,e);r||(e=Te(e),r=n.call(t,e));o&&o.call(t,e);const c=t.delete(e);return r&&N(t,"delete",e,void 0),c}function ne(){const e=Te(this),t=0!==e.size,n=e.clear();return t&&N(e,"clear",void 0,void 0),n}function oe(e,t){return function(n,o){const r=this,c=r.__v_raw,i=Te(c),s=t?K:e?Re:Pe;return!e&&k(i,0,v),c.forEach((e,t)=>n.call(o,s(e),s(t),r))}}function re(e,t,n){return function(...o){const c=this.__v_raw,i=Te(c),s=Object(r.w)(i),l="entries"===e||e===Symbol.iterator&&s,u="keys"===e&&s,a=c[e](...o),d=n?K:t?Re:Pe;return!t&&k(i,0,u?y:v),{next(){const{value:e,done:t}=a.next();return t?{value:e,done:t}:{value:l?[d(e[0]),d(e[1])]:d(e),done:t}},[Symbol.iterator](){return this}}}}function ce(e){return function(...t){return"delete"!==e&&this}}function ie(){const e={get(e){return Y(this,e)},get size(){return X(this)},has:Q,add:Z,set:ee,delete:te,clear:ne,forEach:oe(!1,!1)},t={get(e){return Y(this,e,!1,!0)},get size(){return X(this)},has:Q,add:Z,set:ee,delete:te,clear:ne,forEach:oe(!1,!0)},n={get(e){return Y(this,e,!0)},get size(){return X(this,!0)},has(e){return Q.call(this,e,!0)},add:ce("add"),set:ce("set"),delete:ce("delete"),clear:ce("clear"),forEach:oe(!0,!1)},o={get(e){return Y(this,e,!0,!0)},get size(){return X(this,!0)},has(e){return Q.call(this,e,!0)},add:ce("add"),set:ce("set"),delete:ce("delete"),clear:ce("clear"),forEach:oe(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(r=>{e[r]=re(r,!1,!1),n[r]=re(r,!0,!1),t[r]=re(r,!1,!0),o[r]=re(r,!0,!0)}),[e,n,t,o]}const[se,le,ue,ae]=ie();function de(e,t){const n=t?e?ae:ue:e?le:se;return(t,o,c)=>"__v_isReactive"===o?!e:"__v_isReadonly"===o?e:"__v_raw"===o?t:Reflect.get(Object(r.m)(n,o)&&o in t?n:t,o,c)}const fe={get:de(!1,!1)},pe={get:de(!1,!0)},he={get:de(!0,!1)},me={get:de(!0,!0)};const ge=new WeakMap,be=new WeakMap,ve=new WeakMap,ye=new WeakMap;function _e(e){return we(e)?e:xe(e,!1,H,fe,ge)}function Oe(e){return xe(e,!1,z,pe,be)}function je(e){return xe(e,!0,G,he,ve)}function Se(e){return xe(e,!0,W,me,ye)}function xe(e,t,n,o,c){if(!Object(r.y)(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const i=c.get(e);if(i)return i;const s=(l=e).__v_skip||!Object.isExtensible(l)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}(Object(r.U)(l));var l;if(0===s)return e;const u=new Proxy(e,2===s?o:n);return c.set(e,u),u}function Ce(e){return we(e)?Ce(e.__v_raw):!(!e||!e.__v_isReactive)}function we(e){return!(!e||!e.__v_isReadonly)}function Ee(e){return!(!e||!e.__v_isShallow)}function ke(e){return Ce(e)||we(e)}function Te(e){const t=e&&e.__v_raw;return t?Te(t):e}function Ne(e){return Object(r.h)(e,"__v_skip",!0),e}const Pe=e=>Object(r.y)(e)?_e(e):e,Re=e=>Object(r.y)(e)?je(e):e;function Me(e){x&&b&&T((e=Te(e)).dep||(e.dep=d()))}function Ae(e,t){(e=Te(e)).dep&&P(e.dep)}function Ie(e){return!(!e||!0!==e.__v_isRef)}function Ve(e){return Fe(e,!1)}function Le(e){return Fe(e,!0)}function Fe(e,t){return Ie(e)?e:new $e(e,t)}class $e{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:Te(e),this._value=t?e:Pe(e)}get value(){return Me(this),this._value}set value(e){e=this.__v_isShallow?e:Te(e),Object(r.l)(e,this._rawValue)&&(this._rawValue=e,this._value=this.__v_isShallow?e:Pe(e),Ae(this))}}function Be(e){Ae(e)}function De(e){return Ie(e)?e.value:e}const Ue={get:(e,t,n)=>De(Reflect.get(e,t,n)),set:(e,t,n,o)=>{const r=e[t];return Ie(r)&&!Ie(n)?(r.value=n,!0):Reflect.set(e,t,n,o)}};function qe(e){return Ce(e)?e:new Proxy(e,Ue)}class He{constructor(e){this.dep=void 0,this.__v_isRef=!0;const{get:t,set:n}=e(()=>Me(this),()=>Ae(this));this._get=t,this._set=n}get value(){return this._get()}set value(e){this._set(e)}}function Ge(e){return new He(e)}function ze(e){const t=Object(r.q)(e)?new Array(e.length):{};for(const n in e)t[n]=Ke(e,n);return t}class We{constructor(e,t,n){this._object=e,this._key=t,this._defaultValue=n,this.__v_isRef=!0}get value(){const e=this._object[this._key];return void 0===e?this._defaultValue:e}set value(e){this._object[this._key]=e}}function Ke(e,t,n){const o=e[t];return Ie(o)?o:new We(e,t,n)}class Je{constructor(e,t,n,o){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this._dirty=!0,this.effect=new _(e,()=>{this._dirty||(this._dirty=!0,Ae(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=n}get value(){const e=Te(this);return Me(e),!e._dirty&&e._cacheable||(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}Promise.resolve();const Ye=[];function Qe(e,...t){w();const n=Ye.length?Ye[Ye.length-1].component:null,o=n&&n.appContext.config.warnHandler,r=function(){let e=Ye[Ye.length-1];if(!e)return[];const t=[];for(;e;){const n=t[0];n&&n.vnode===e?n.recurseCount++:t.push({vnode:e,recurseCount:0});const o=e.component&&e.component.parent;e=o&&o.vnode}return t}();if(o)Ze(o,n,11,[e+t.join(""),n&&n.proxy,r.map(({vnode:e})=>`at <${Qr(n,e.type)}>`).join("\n"),r]);else{const n=["[Vue warn]: "+e,...t];r.length&&n.push("\n",...function(e){const t=[];return e.forEach((e,n)=>{t.push(...0===n?[]:["\n"],...function({vnode:e,recurseCount:t}){const n=t>0?`... (${t} recursive calls)`:"",o=!!e.component&&null==e.component.parent,r=" at <"+Qr(e.component,e.type,o),c=">"+n;return e.props?[r,...Xe(e.props),c]:[r+c]}(e))}),t}(r)),console.warn(...n)}E()}function Xe(e){const t=[],n=Object.keys(e);return n.slice(0,3).forEach(n=>{t.push(...function e(t,n,o){return Object(r.G)(n)?(n=JSON.stringify(n),o?n:[`${t}=${n}`]):"number"==typeof n||"boolean"==typeof n||null==n?o?n:[`${t}=${n}`]:Ie(n)?(n=e(t,Te(n.value),!0),o?n:[t+"=Ref<",n,">"]):Object(r.s)(n)?[`${t}=fn${n.name?`<${n.name}>`:""}`]:(n=Te(n),o?n:[t+"=",n])}(n,e[n]))}),n.length>3&&t.push(" ..."),t}function Ze(e,t,n,o){let r;try{r=o?e(...o):e()}catch(e){tt(e,t,n)}return r}function et(e,t,n,o){if(Object(r.s)(e)){const c=Ze(e,t,n,o);return c&&Object(r.B)(c)&&c.catch(e=>{tt(e,t,n)}),c}const c=[];for(let r=0;r>>1;jt(rt[o])jt(e)-jt(t)),dt=0;dtnull==e.id?1/0:e.id;function St(e){ot=!1,nt=!0,_t(e),rt.sort((e,t)=>jt(e)-jt(t));r.d;try{for(ct=0;ctxt.emit(e,...t)),Ct=[];else if("undefined"!=typeof window&&window.HTMLElement&&!(null===(o=null===(n=window.navigator)||void 0===n?void 0:n.userAgent)||void 0===o?void 0:o.includes("jsdom"))){(t.__VUE_DEVTOOLS_HOOK_REPLAY__=t.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(e=>{kt(e,t)}),setTimeout(()=>{xt||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,wt=!0,Ct=[])},3e3)}else wt=!0,Ct=[]}const Tt=Rt("component:added"),Nt=Rt("component:updated"),Pt=Rt("component:removed");function Rt(e){return t=>{Et(e,t.appContext.app,t.uid,t.parent?t.parent.uid:void 0,t)}}function Mt(e,t,...n){const o=e.vnode.props||r.b;let c=n;const i=t.startsWith("update:"),s=i&&t.slice(7);if(s&&s in o){const e=("modelValue"===s?"model":s)+"Modifiers",{number:t,trim:i}=o[e]||r.b;i?c=n.map(e=>e.trim()):t&&(c=n.map(r.T))}let l;__VUE_PROD_DEVTOOLS__&&function(e,t,n){Et("component:emit",e.appContext.app,e,t,n)}(e,t,c);let u=o[l=Object(r.S)(t)]||o[l=Object(r.S)(Object(r.f)(t))];!u&&i&&(u=o[l=Object(r.S)(Object(r.n)(t))]),u&&et(u,e,6,c);const a=o[l+"Once"];if(a){if(e.emitted){if(e.emitted[l])return}else e.emitted={};e.emitted[l]=!0,et(a,e,6,c)}}function At(e,t,n=!1){const o=t.emitsCache,c=o.get(e);if(void 0!==c)return c;const i=e.emits;let s={},l=!1;if(__VUE_OPTIONS_API__&&!Object(r.s)(e)){const o=e=>{const n=At(e,t,!0);n&&(l=!0,Object(r.i)(s,n))};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}return i||l?(Object(r.q)(i)?i.forEach(e=>s[e]=null):Object(r.i)(s,i),o.set(e,s),s):(o.set(e,null),null)}function It(e,t){return!(!e||!Object(r.z)(t))&&(t=t.slice(2).replace(/Once$/,""),Object(r.m)(e,t[0].toLowerCase()+t.slice(1))||Object(r.m)(e,Object(r.n)(t))||Object(r.m)(e,t))}let Vt=null,Lt=null;function Ft(e){const t=Vt;return Vt=e,Lt=e&&e.type.__scopeId||null,t}function $t(e){Lt=e}function Bt(){Lt=null}const Dt=e=>Ut;function Ut(e,t=Vt,n){if(!t)return e;if(e._n)return e;const o=(...n)=>{o._d&&er(-1);const r=Ft(t),c=e(...n);return Ft(r),o._d&&er(1),__VUE_PROD_DEVTOOLS__&&Nt(t),c};return o._n=!0,o._c=!0,o._d=!0,o}function qt(e){const{type:t,vnode:n,proxy:o,withProxy:c,props:i,propsOptions:[s],slots:l,attrs:u,emit:a,render:d,renderCache:f,data:p,setupState:h,ctx:m,inheritAttrs:g}=e;let b,v;const y=Ft(e);try{if(4&n.shapeFlag){const e=c||o;b=vr(d.call(e,e,f,i,h,p,m)),v=u}else{const e=t;0,b=vr(e.length>1?e(i,{attrs:u,slots:l,emit:a}):e(i,null)),v=t.props?u:Gt(u)}}catch(t){Ko.length=0,tt(t,e,1),b=dr(zo)}let _=b;if(v&&!1!==g){const e=Object.keys(v),{shapeFlag:t}=_;e.length&&7&t&&(s&&e.some(r.x)&&(v=zt(v,s)),_=hr(_,v))}return n.dirs&&(_.dirs=_.dirs?_.dirs.concat(n.dirs):n.dirs),n.transition&&(_.transition=n.transition),b=_,Ft(y),b}function Ht(e){let t;for(let n=0;n{let t;for(const n in e)("class"===n||"style"===n||Object(r.z)(n))&&((t||(t={}))[n]=e[n]);return t},zt=(e,t)=>{const n={};for(const o in e)Object(r.x)(o)&&o.slice(9)in t||(n[o]=e[o]);return n};function Wt(e,t,n){const o=Object.keys(t);if(o.length!==Object.keys(e).length)return!0;for(let r=0;r0?(Yt(e,"onPending"),Yt(e,"onFallback"),u(null,e.ssFallback,t,n,o,null,c,i),en(f,e.ssFallback)):f.resolve()}(t,n,o,r,c,i,s,l,u):function(e,t,n,o,r,c,i,s,{p:l,um:u,o:{createElement:a}}){const d=t.suspense=e.suspense;d.vnode=t,t.el=e.el;const f=t.ssContent,p=t.ssFallback,{activeBranch:h,pendingBranch:m,isInFallback:g,isHydrating:b}=d;if(m)d.pendingBranch=f,cr(f,m)?(l(m,f,d.hiddenContainer,null,r,d,c,i,s),d.deps<=0?d.resolve():g&&(l(h,p,n,o,r,null,c,i,s),en(d,p))):(d.pendingId++,b?(d.isHydrating=!1,d.activeBranch=m):u(m,r,d),d.deps=0,d.effects.length=0,d.hiddenContainer=a("div"),g?(l(null,f,d.hiddenContainer,null,r,d,c,i,s),d.deps<=0?d.resolve():(l(h,p,n,o,r,null,c,i,s),en(d,p))):h&&cr(f,h)?(l(h,f,n,o,r,d,c,i,s),d.resolve(!0)):(l(null,f,d.hiddenContainer,null,r,d,c,i,s),d.deps<=0&&d.resolve()));else if(h&&cr(f,h))l(h,f,n,o,r,d,c,i,s),en(d,f);else if(Yt(t,"onPending"),d.pendingBranch=f,d.pendingId++,l(null,f,d.hiddenContainer,null,r,d,c,i,s),d.deps<=0)d.resolve();else{const{timeout:e,pendingId:t}=d;e>0?setTimeout(()=>{d.pendingId===t&&d.fallback(p)},e):0===e&&d.fallback(p)}}(e,t,n,o,r,i,s,l,u)},hydrate:function(e,t,n,o,r,c,i,s,l){const u=t.suspense=Qt(t,o,n,e.parentNode,document.createElement("div"),null,r,c,i,s,!0),a=l(e,u.pendingBranch=t.ssContent,n,u,c,i);0===u.deps&&u.resolve();return a},create:Qt,normalize:function(e){const{shapeFlag:t,children:n}=e,o=32&t;e.ssContent=Xt(o?n.default:n),e.ssFallback=o?Xt(n.fallback):dr(zo)}};function Yt(e,t){const n=e.props&&e.props[t];Object(r.s)(n)&&n()}function Qt(e,t,n,o,c,i,s,l,u,a,d=!1){const{p:f,m:p,um:h,n:m,o:{parentNode:g,remove:b}}=a,v=Object(r.T)(e.props&&e.props.timeout),y={vnode:e,parent:t,parentComponent:n,isSVG:s,container:o,hiddenContainer:c,anchor:i,deps:0,pendingId:0,timeout:"number"==typeof v?v:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:d,isUnmounted:!1,effects:[],resolve(e=!1){const{vnode:t,activeBranch:n,pendingBranch:o,pendingId:r,effects:c,parentComponent:i,container:s}=y;if(y.isHydrating)y.isHydrating=!1;else if(!e){const e=n&&o.transition&&"out-in"===o.transition.mode;e&&(n.transition.afterLeave=()=>{r===y.pendingId&&p(o,s,t,0)});let{anchor:t}=y;n&&(t=m(n),h(n,i,y,!0)),e||p(o,s,t,0)}en(y,o),y.pendingBranch=null,y.isInFallback=!1;let l=y.parent,u=!1;for(;l;){if(l.pendingBranch){l.effects.push(...c),u=!0;break}l=l.parent}u||yt(c),y.effects=[],Yt(t,"onResolve")},fallback(e){if(!y.pendingBranch)return;const{vnode:t,activeBranch:n,parentComponent:o,container:r,isSVG:c}=y;Yt(t,"onFallback");const i=m(n),s=()=>{y.isInFallback&&(f(null,e,r,i,o,null,c,l,u),en(y,e))},a=e.transition&&"out-in"===e.transition.mode;a&&(n.transition.afterLeave=s),y.isInFallback=!0,h(n,o,null,!0),a||s()},move(e,t,n){y.activeBranch&&p(y.activeBranch,e,t,n),y.container=e},next:()=>y.activeBranch&&m(y.activeBranch),registerDep(e,t){const n=!!y.pendingBranch;n&&y.deps++;const o=e.vnode.el;e.asyncDep.catch(t=>{tt(t,e,0)}).then(r=>{if(e.isUnmounted||y.isUnmounted||y.pendingId!==e.suspenseId)return;e.asyncResolved=!0;const{vnode:c}=e;qr(e,r,!1),o&&(c.el=o);const i=!o&&e.subTree.el;t(e,c,g(o||e.subTree.el),o?null:m(e.subTree),y,s,u),i&&b(i),Kt(e,c.el),n&&0==--y.deps&&y.resolve()})},unmount(e,t){y.isUnmounted=!0,y.activeBranch&&h(y.activeBranch,n,e,t),y.pendingBranch&&h(y.pendingBranch,n,e,t)}};return y}function Xt(e){let t;if(Object(r.s)(e)){const n=Zo&&e._c;n&&(e._d=!1,Yo()),e=e(),n&&(e._d=!0,t=Jo,Qo())}if(Object(r.q)(e)){const t=Ht(e);0,e=t}return e=vr(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(t=>t!==e)),e}function Zt(e,t){t&&t.pendingBranch?Object(r.q)(e)?t.effects.push(...e):t.effects.push(e):yt(e)}function en(e,t){e.activeBranch=t;const{vnode:n,parentComponent:o}=e,r=n.el=t.el;o&&o.subTree===n&&(o.vnode.el=r,Kt(o,r))}function tn(e,t){if(Ar){let n=Ar.provides;const o=Ar.parent&&Ar.parent.provides;o===n&&(n=Ar.provides=Object.create(o)),n[e]=t}else 0}function nn(e,t,n=!1){const o=Ar||Vt;if(o){const c=null==o.parent?o.vnode.appContext&&o.vnode.appContext.provides:o.parent.provides;if(c&&e in c)return c[e];if(arguments.length>1)return n&&Object(r.s)(t)?t.call(o.proxy):t}else 0}function on(e,t){return un(e,null,t)}function rn(e,t){return un(e,null,{flush:"post"})}function cn(e,t){return un(e,null,{flush:"sync"})}const sn={};function ln(e,t,n){return un(e,t,n)}function un(e,t,{immediate:n,deep:o,flush:c,onTrack:i,onTrigger:s}=r.b){const l=Ar;let u,a,d=!1,f=!1;if(Ie(e)?(u=()=>e.value,d=Ee(e)):Ce(e)?(u=()=>e,o=!0):Object(r.q)(e)?(f=!0,d=e.some(Ce),u=()=>e.map(e=>Ie(e)?e.value:Ce(e)?fn(e):Object(r.s)(e)?Ze(e,l,2):void 0)):u=Object(r.s)(e)?t?()=>Ze(e,l,2):()=>{if(!l||!l.isUnmounted)return a&&a(),et(e,l,3,[p])}:r.d,t&&o){const e=u;u=()=>fn(e())}let p=e=>{a=b.onStop=()=>{Ze(e,l,4)}};if(Dr)return p=r.d,t?n&&et(t,l,3,[u(),f?[]:void 0,p]):u(),r.d;let h=f?[]:sn;const m=()=>{if(b.active)if(t){const e=b.run();(o||d||(f?e.some((e,t)=>Object(r.l)(e,h[t])):Object(r.l)(e,h)))&&(a&&a(),et(t,l,3,[e,h===sn?void 0:h,p]),h=e)}else b.run()};let g;m.allowRecurse=!!t,g="sync"===c?m:"post"===c?()=>Eo(m,l&&l.suspense):()=>{!l||l.isMounted?function(e){vt(e,st,it,lt)}(m):m()};const b=new _(u,g);return t?n?m():h=b.run():"post"===c?Eo(b.run.bind(b),l&&l.suspense):b.run(),()=>{b.stop(),l&&l.scope&&Object(r.Q)(l.scope.effects,b)}}function an(e,t,n){const o=this.proxy,c=Object(r.G)(e)?e.includes(".")?dn(o,e):()=>o[e]:e.bind(o,o);let i;Object(r.s)(t)?i=t:(i=t.handler,n=t);const s=Ar;Vr(this);const l=un(c,i.bind(o),n);return s?Vr(s):Lr(),l}function dn(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e{fn(e,t)});else if(Object(r.A)(e))for(const n in e)fn(e[n],t);return e}function pn(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Fn(()=>{e.isMounted=!0}),Dn(()=>{e.isUnmounting=!0}),e}const hn=[Function,Array],mn={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:hn,onEnter:hn,onAfterEnter:hn,onEnterCancelled:hn,onBeforeLeave:hn,onLeave:hn,onAfterLeave:hn,onLeaveCancelled:hn,onBeforeAppear:hn,onAppear:hn,onAfterAppear:hn,onAppearCancelled:hn},setup(e,{slots:t}){const n=Ir(),o=pn();let r;return()=>{const c=t.default&&On(t.default(),!0);if(!c||!c.length)return;const i=Te(e),{mode:s}=i;const l=c[0];if(o.isLeaving)return vn(l);const u=yn(l);if(!u)return vn(l);const a=bn(u,i,o,n);_n(u,a);const d=n.subTree,f=d&&yn(d);let p=!1;const{getTransitionKey:h}=u.type;if(h){const e=h();void 0===r?r=e:e!==r&&(r=e,p=!0)}if(f&&f.type!==zo&&(!cr(u,f)||p)){const e=bn(f,i,o,n);if(_n(f,e),"out-in"===s)return o.isLeaving=!0,e.afterLeave=()=>{o.isLeaving=!1,n.update()},vn(l);"in-out"===s&&u.type!==zo&&(e.delayLeave=(e,t,n)=>{gn(o,f)[String(f.key)]=f,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete a.delayedLeave},a.delayedLeave=n})}return l}}};function gn(e,t){const{leavingVNodes:n}=e;let o=n.get(t.type);return o||(o=Object.create(null),n.set(t.type,o)),o}function bn(e,t,n,o){const{appear:r,mode:c,persisted:i=!1,onBeforeEnter:s,onEnter:l,onAfterEnter:u,onEnterCancelled:a,onBeforeLeave:d,onLeave:f,onAfterLeave:p,onLeaveCancelled:h,onBeforeAppear:m,onAppear:g,onAfterAppear:b,onAppearCancelled:v}=t,y=String(e.key),_=gn(n,e),O=(e,t)=>{e&&et(e,o,9,t)},j={mode:c,persisted:i,beforeEnter(t){let o=s;if(!n.isMounted){if(!r)return;o=m||s}t._leaveCb&&t._leaveCb(!0);const c=_[y];c&&cr(e,c)&&c.el._leaveCb&&c.el._leaveCb(),O(o,[t])},enter(e){let t=l,o=u,c=a;if(!n.isMounted){if(!r)return;t=g||l,o=b||u,c=v||a}let i=!1;const s=e._enterCb=t=>{i||(i=!0,O(t?c:o,[e]),j.delayedLeave&&j.delayedLeave(),e._enterCb=void 0)};t?(t(e,s),t.length<=1&&s()):s()},leave(t,o){const r=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return o();O(d,[t]);let c=!1;const i=t._leaveCb=n=>{c||(c=!0,o(),O(n?h:p,[t]),t._leaveCb=void 0,_[r]===e&&delete _[r])};_[r]=e,f?(f(t,i),f.length<=1&&i()):i()},clone:e=>bn(e,t,n,o)};return j}function vn(e){if(wn(e))return(e=hr(e)).children=null,e}function yn(e){return wn(e)?e.children?e.children[0]:void 0:e}function _n(e,t){6&e.shapeFlag&&e.component?_n(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function On(e,t=!1){let n=[],o=0;for(let r=0;r1)for(let e=0;e!!e.type.__asyncLoader;function xn(e){Object(r.s)(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:o,delay:c=200,timeout:i,suspensible:s=!0,onError:l}=e;let u,a=null,d=0;const f=()=>{let e;return a||(e=a=t().catch(e=>{if(e=e instanceof Error?e:new Error(String(e)),l)return new Promise((t,n)=>{l(e,()=>t((d++,a=null,f())),()=>n(e),d+1)});throw e}).then(t=>e!==a&&a?a:(t&&(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),u=t,t)))};return jn({name:"AsyncComponentWrapper",__asyncLoader:f,get __asyncResolved(){return u},setup(){const e=Ar;if(u)return()=>Cn(u,e);const t=t=>{a=null,tt(t,e,13,!o)};if(s&&e.suspense||Dr)return f().then(t=>()=>Cn(t,e)).catch(e=>(t(e),()=>o?dr(o,{error:e}):null));const r=Ve(!1),l=Ve(),d=Ve(!!c);return c&&setTimeout(()=>{d.value=!1},c),null!=i&&setTimeout(()=>{if(!r.value&&!l.value){const e=new Error(`Async component timed out after ${i}ms.`);t(e),l.value=e}},i),f().then(()=>{r.value=!0,e.parent&&wn(e.parent.vnode)&>(e.parent.update)}).catch(e=>{t(e),l.value=e}),()=>r.value&&u?Cn(u,e):l.value&&o?dr(o,{error:l.value}):n&&!d.value?dr(n):void 0}})}function Cn(e,{vnode:{ref:t,props:n,children:o}}){const r=dr(e,n,o);return r.ref=t,r}const wn=e=>e.type.__isKeepAlive,En={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Ir(),o=n.ctx;if(!o.renderer)return t.default;const c=new Map,i=new Set;let s=null;__VUE_PROD_DEVTOOLS__&&(n.__v_cache=c);const l=n.suspense,{renderer:{p:u,m:a,um:d,o:{createElement:f}}}=o,p=f("div");function h(e){Mn(e),d(e,n,l,!0)}function m(e){c.forEach((t,n)=>{const o=Yr(t.type);!o||e&&e(o)||g(n)})}function g(e){const t=c.get(e);s&&t.type===s.type?s&&Mn(s):h(t),c.delete(e),i.delete(e)}o.activate=(e,t,n,o,c)=>{const i=e.component;a(e,t,n,0,l),u(i.vnode,e,t,n,i,l,o,e.slotScopeIds,c),Eo(()=>{i.isDeactivated=!1,i.a&&Object(r.p)(i.a);const t=e.props&&e.props.onVnodeMounted;t&&jr(t,i.parent,e)},l),__VUE_PROD_DEVTOOLS__&&Tt(i)},o.deactivate=e=>{const t=e.component;a(e,p,null,1,l),Eo(()=>{t.da&&Object(r.p)(t.da);const n=e.props&&e.props.onVnodeUnmounted;n&&jr(n,t.parent,e),t.isDeactivated=!0},l),__VUE_PROD_DEVTOOLS__&&Tt(t)},ln(()=>[e.include,e.exclude],([e,t])=>{e&&m(t=>kn(e,t)),t&&m(e=>!kn(t,e))},{flush:"post",deep:!0});let b=null;const v=()=>{null!=b&&c.set(b,An(n.subTree))};return Fn(v),Bn(v),Dn(()=>{c.forEach(e=>{const{subTree:t,suspense:o}=n,r=An(t);if(e.type!==r.type)h(e);else{Mn(r);const e=r.component.da;e&&Eo(e,o)}})}),()=>{if(b=null,!t.default)return null;const n=t.default(),o=n[0];if(n.length>1)return s=null,n;if(!(rr(o)&&(4&o.shapeFlag||128&o.shapeFlag)))return s=null,o;let r=An(o);const l=r.type,u=Yr(Sn(r)?r.type.__asyncResolved||{}:l),{include:a,exclude:d,max:f}=e;if(a&&(!u||!kn(a,u))||d&&u&&kn(d,u))return s=r,o;const p=null==r.key?l:r.key,h=c.get(p);return r.el&&(r=hr(r),128&o.shapeFlag&&(o.ssContent=r)),b=p,h?(r.el=h.el,r.component=h.component,r.transition&&_n(r,r.transition),r.shapeFlag|=512,i.delete(p),i.add(p)):(i.add(p),f&&i.size>parseInt(f,10)&&g(i.values().next().value)),r.shapeFlag|=256,s=r,o}}};function kn(e,t){return Object(r.q)(e)?e.some(e=>kn(e,t)):Object(r.G)(e)?e.split(",").includes(t):!!e.test&&e.test(t)}function Tn(e,t){Pn(e,"a",t)}function Nn(e,t){Pn(e,"da",t)}function Pn(e,t,n=Ar){const o=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(In(t,o,n),n){let e=n.parent;for(;e&&e.parent;)wn(e.parent.vnode)&&Rn(o,t,n,e),e=e.parent}}function Rn(e,t,n,o){const c=In(t,e,o,!0);Un(()=>{Object(r.Q)(o[t],c)},n)}function Mn(e){let t=e.shapeFlag;256&t&&(t-=256),512&t&&(t-=512),e.shapeFlag=t}function An(e){return 128&e.shapeFlag?e.ssContent:e}function In(e,t,n=Ar,o=!1){if(n){const r=n[e]||(n[e]=[]),c=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;w(),Vr(n);const r=et(t,n,e,o);return Lr(),E(),r});return o?r.unshift(c):r.push(c),c}}const Vn=e=>(t,n=Ar)=>(!Dr||"sp"===e)&&In(e,t,n),Ln=Vn("bm"),Fn=Vn("m"),$n=Vn("bu"),Bn=Vn("u"),Dn=Vn("bum"),Un=Vn("um"),qn=Vn("sp"),Hn=Vn("rtg"),Gn=Vn("rtc");function zn(e,t=Ar){In("ec",e,t)}let Wn=!0;function Kn(e){const t=Qn(e),n=e.proxy,o=e.ctx;Wn=!1,t.beforeCreate&&Jn(t.beforeCreate,e,"bc");const{data:c,computed:i,methods:s,watch:l,provide:u,inject:a,created:d,beforeMount:f,mounted:p,beforeUpdate:h,updated:m,activated:g,deactivated:b,beforeDestroy:v,beforeUnmount:y,destroyed:_,unmounted:O,render:j,renderTracked:S,renderTriggered:x,errorCaptured:C,serverPrefetch:w,expose:E,inheritAttrs:k,components:T,directives:N,filters:P}=t;if(a&&function(e,t,n=r.d,o=!1){Object(r.q)(e)&&(e=to(e));for(const n in e){const c=e[n];let i;i=Object(r.y)(c)?"default"in c?nn(c.from||n,c.default,!0):nn(c.from||n):nn(c),Ie(i)&&o?Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:()=>i.value,set:e=>i.value=e}):t[n]=i}}(a,o,null,e.appContext.config.unwrapInjectedRef),s)for(const e in s){const t=s[e];Object(r.s)(t)&&(o[e]=t.bind(n))}if(c){0;const t=c.call(n,n);0,Object(r.y)(t)&&(e.data=_e(t))}if(Wn=!0,i)for(const e in i){const t=i[e],c=Object(r.s)(t)?t.bind(n,n):Object(r.s)(t.get)?t.get.bind(n,n):r.d;0;const s=!Object(r.s)(t)&&Object(r.s)(t.set)?t.set.bind(n):r.d,l=Zr({get:c,set:s});Object.defineProperty(o,e,{enumerable:!0,configurable:!0,get:()=>l.value,set:e=>l.value=e})}if(l)for(const e in l)Yn(l[e],o,n,e);if(u){const e=Object(r.s)(u)?u.call(n):u;Reflect.ownKeys(e).forEach(t=>{tn(t,e[t])})}function R(e,t){Object(r.q)(t)?t.forEach(t=>e(t.bind(n))):t&&e(t.bind(n))}if(d&&Jn(d,e,"c"),R(Ln,f),R(Fn,p),R($n,h),R(Bn,m),R(Tn,g),R(Nn,b),R(zn,C),R(Gn,S),R(Hn,x),R(Dn,y),R(Un,O),R(qn,w),Object(r.q)(E))if(E.length){const t=e.exposed||(e.exposed={});E.forEach(e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})})}else e.exposed||(e.exposed={});j&&e.render===r.d&&(e.render=j),null!=k&&(e.inheritAttrs=k),T&&(e.components=T),N&&(e.directives=N)}function Jn(e,t,n){et(Object(r.q)(e)?e.map(e=>e.bind(t.proxy)):e.bind(t.proxy),t,n)}function Yn(e,t,n,o){const c=o.includes(".")?dn(n,o):()=>n[o];if(Object(r.G)(e)){const n=t[e];Object(r.s)(n)&&ln(c,n)}else if(Object(r.s)(e))ln(c,e.bind(n));else if(Object(r.y)(e))if(Object(r.q)(e))e.forEach(e=>Yn(e,t,n,o));else{const o=Object(r.s)(e.handler)?e.handler.bind(n):t[e.handler];Object(r.s)(o)&&ln(c,o,e)}else 0}function Qn(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:r,optionsCache:c,config:{optionMergeStrategies:i}}=e.appContext,s=c.get(t);let l;return s?l=s:r.length||n||o?(l={},r.length&&r.forEach(e=>Xn(l,e,i,!0)),Xn(l,t,i)):l=t,c.set(t,l),l}function Xn(e,t,n,o=!1){const{mixins:r,extends:c}=t;c&&Xn(e,c,n,!0),r&&r.forEach(t=>Xn(e,t,n,!0));for(const r in t)if(o&&"expose"===r);else{const o=Zn[r]||n&&n[r];e[r]=o?o(e[r],t[r]):t[r]}return e}const Zn={data:eo,props:oo,emits:oo,methods:oo,computed:oo,beforeCreate:no,created:no,beforeMount:no,mounted:no,beforeUpdate:no,updated:no,beforeDestroy:no,beforeUnmount:no,destroyed:no,unmounted:no,activated:no,deactivated:no,errorCaptured:no,serverPrefetch:no,components:oo,directives:oo,watch:function(e,t){if(!e)return t;if(!t)return e;const n=Object(r.i)(Object.create(null),e);for(const o in t)n[o]=no(e[o],t[o]);return n},provide:eo,inject:function(e,t){return oo(to(e),to(t))}};function eo(e,t){return t?e?function(){return Object(r.i)(Object(r.s)(e)?e.call(this,this):e,Object(r.s)(t)?t.call(this,this):t)}:t:e}function to(e){if(Object(r.q)(e)){const t={};for(let n=0;n{u=!0;const[n,o]=io(e,t,!0);Object(r.i)(s,n),o&&l.push(...o)};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!i&&!u)return o.set(e,r.a),r.a;if(Object(r.q)(i))for(let e=0;e-1,o[1]=n<0||e-1||Object(r.m)(o,"default"))&&l.push(t)}}}}const a=[s,l];return o.set(e,a),a}function so(e){return"$"!==e[0]}function lo(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:null===e?"null":""}function uo(e,t){return lo(e)===lo(t)}function ao(e,t){return Object(r.q)(t)?t.findIndex(t=>uo(t,e)):Object(r.s)(t)&&uo(t,e)?0:-1}const fo=e=>"_"===e[0]||"$stable"===e,po=e=>Object(r.q)(e)?e.map(vr):[vr(e)],ho=(e,t,n)=>{const o=Ut((...e)=>po(t(...e)),n);return o._c=!1,o},mo=(e,t,n)=>{const o=e._ctx;for(const n in e){if(fo(n))continue;const c=e[n];if(Object(r.s)(c))t[n]=ho(0,c,o);else if(null!=c){0;const e=po(c);t[n]=()=>e}}},go=(e,t)=>{const n=po(t);e.slots.default=()=>n};function bo(e,t){if(null===Vt)return e;const n=Vt.proxy,o=e.dirs||(e.dirs=[]);for(let e=0;e(i.has(e)||(e&&Object(r.s)(e.install)?(i.add(e),e.install(l,...t)):Object(r.s)(e)&&(i.add(e),e(l,...t))),l),mixin:e=>(__VUE_OPTIONS_API__&&(c.mixins.includes(e)||c.mixins.push(e)),l),component:(e,t)=>t?(c.components[e]=t,l):c.components[e],directive:(e,t)=>t?(c.directives[e]=t,l):c.directives[e],mount(r,i,u){if(!s){const a=dr(n,o);return a.appContext=c,i&&t?t(a,r):e(a,r,u),s=!0,l._container=r,r.__vue_app__=l,__VUE_PROD_DEVTOOLS__&&(l._instance=a.component,function(e,t){Et("app:init",e,t,{Fragment:Ho,Text:Go,Comment:zo,Static:Wo})}(l,gc)),Kr(a.component)||a.component.proxy}},unmount(){s&&(e(null,l._container),__VUE_PROD_DEVTOOLS__&&(l._instance=null,function(e){Et("app:unmount",e)}(l)),delete l._container.__vue_app__)},provide:(e,t)=>(c.provides[e]=t,l)};return l}}function jo(e,t,n,o,c=!1){if(Object(r.q)(e))return void e.forEach((e,i)=>jo(e,t&&(Object(r.q)(t)?t[i]:t),n,o,c));if(Sn(o)&&!c)return;const i=4&o.shapeFlag?Kr(o.component)||o.component.proxy:o.el,s=c?null:i,{i:l,r:u}=e;const a=t&&t.r,d=l.refs===r.b?l.refs={}:l.refs,f=l.setupState;if(null!=a&&a!==u&&(Object(r.G)(a)?(d[a]=null,Object(r.m)(f,a)&&(f[a]=null)):Ie(a)&&(a.value=null)),Object(r.s)(u))Ze(u,l,12,[s,d]);else{const t=Object(r.G)(u),o=Ie(u);if(t||o){const o=()=>{if(e.f){const n=t?d[u]:u.value;c?Object(r.q)(n)&&Object(r.Q)(n,i):Object(r.q)(n)?n.includes(i)||n.push(i):t?d[u]=[i]:(u.value=[i],e.k&&(d[e.k]=u.value))}else t?(d[u]=s,Object(r.m)(f,u)&&(f[u]=s)):Ie(u)&&(u.value=s,e.k&&(d[e.k]=s))};s?(o.id=-1,Eo(o,n)):o()}else 0}}let So=!1;const xo=e=>/svg/.test(e.namespaceURI)&&"foreignObject"!==e.tagName,Co=e=>8===e.nodeType;function wo(e){const{mt:t,p:n,o:{patchProp:o,nextSibling:c,parentNode:i,remove:s,insert:l,createComment:u}}=e,a=(n,o,r,s,l,u=!1)=>{const g=Co(n)&&"["===n.data,b=()=>h(n,o,r,s,l,g),{type:v,ref:y,shapeFlag:_}=o,O=n.nodeType;o.el=n;let j=null;switch(v){case Go:3!==O?j=b():(n.data!==o.children&&(So=!0,n.data=o.children),j=c(n));break;case zo:j=8!==O||g?b():c(n);break;case Wo:if(1===O){j=n;const e=!o.children.length;for(let t=0;t{l=l||!!t.dynamicChildren;const{type:u,props:a,patchFlag:d,shapeFlag:p,dirs:h}=t,m="input"===u&&h||"option"===u;if(m||-1!==d){if(h&&vo(t,null,n,"created"),a)if(m||!l||48&d)for(const t in a)(m&&t.endsWith("value")||Object(r.z)(t)&&!Object(r.C)(t))&&o(e,t,null,a[t],!1,void 0,n);else a.onClick&&o(e,"onClick",null,a.onClick,!1,void 0,n);let u;if((u=a&&a.onVnodeBeforeMount)&&jr(u,n,t),h&&vo(t,null,n,"beforeMount"),((u=a&&a.onVnodeMounted)||h)&&Zt(()=>{u&&jr(u,n,t),h&&vo(t,null,n,"mounted")},c),16&p&&(!a||!a.innerHTML&&!a.textContent)){let o=f(e.firstChild,t,e,n,c,i,l);for(;o;){So=!0;const e=o;o=o.nextSibling,s(e)}}else 8&p&&e.textContent!==t.children&&(So=!0,e.textContent=t.children)}return e.nextSibling},f=(e,t,o,r,c,i,s)=>{s=s||!!t.dynamicChildren;const l=t.children,u=l.length;for(let t=0;t{const{slotScopeIds:a}=t;a&&(r=r?r.concat(a):a);const d=i(e),p=f(c(e),t,d,n,o,r,s);return p&&Co(p)&&"]"===p.data?c(t.anchor=p):(So=!0,l(t.anchor=u("]"),d,p),p)},h=(e,t,o,r,l,u)=>{if(So=!0,t.el=null,u){const t=m(e);for(;;){const n=c(e);if(!n||n===t)break;s(n)}}const a=c(e),d=i(e);return s(e),n(null,t,d,a,o,r,xo(d),l),a},m=e=>{let t=0;for(;e;)if((e=c(e))&&Co(e)&&("["===e.data&&t++,"]"===e.data)){if(0===t)return c(e);t--}return e};return[(e,t)=>{if(!t.hasChildNodes())return n(null,e,t),void Ot();So=!1,a(t.firstChild,e,null,null,null),Ot(),So&&console.error("Hydration completed but contains mismatches.")},a]}const Eo=Zt;function ko(e){return No(e)}function To(e){return No(e,wo)}function No(e,t){"boolean"!=typeof __VUE_OPTIONS_API__&&(Object(r.k)().__VUE_OPTIONS_API__=!0),"boolean"!=typeof __VUE_PROD_DEVTOOLS__&&(Object(r.k)().__VUE_PROD_DEVTOOLS__=!1);const n=Object(r.k)();n.__VUE__=!0,__VUE_PROD_DEVTOOLS__&&kt(n.__VUE_DEVTOOLS_GLOBAL_HOOK__,n);const{insert:o,remove:c,patchProp:i,createElement:s,createText:l,createComment:u,setText:a,setElementText:d,parentNode:f,nextSibling:p,setScopeId:h=r.d,cloneNode:m,insertStaticContent:g}=e,b=(e,t,n,o=null,r=null,c=null,i=!1,s=null,l=!!t.dynamicChildren)=>{if(e===t)return;e&&!cr(e,t)&&(o=K(e),q(e,r,c,!0),e=null),-2===t.patchFlag&&(l=!1,t.dynamicChildren=null);const{type:u,ref:a,shapeFlag:d}=t;switch(u){case Go:v(e,t,n,o);break;case zo:y(e,t,n,o);break;case Wo:null==e&&O(t,n,o,i);break;case Ho:M(e,t,n,o,r,c,i,s,l);break;default:1&d?S(e,t,n,o,r,c,i,s,l):6&d?A(e,t,n,o,r,c,i,s,l):(64&d||128&d)&&u.process(e,t,n,o,r,c,i,s,l,Y)}null!=a&&r&&jo(a,e&&e.ref,c,t||e,!t)},v=(e,t,n,r)=>{if(null==e)o(t.el=l(t.children),n,r);else{const n=t.el=e.el;t.children!==e.children&&a(n,t.children)}},y=(e,t,n,r)=>{null==e?o(t.el=u(t.children||""),n,r):t.el=e.el},O=(e,t,n,o)=>{[e.el,e.anchor]=g(e.children,t,n,o,e.el,e.anchor)},j=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=p(e),c(e),e=n;c(t)},S=(e,t,n,o,r,c,i,s,l)=>{i=i||"svg"===t.type,null==e?x(t,n,o,r,c,i,s,l):T(e,t,r,c,i,s,l)},x=(e,t,n,c,l,u,a,f)=>{let p,h;const{type:g,props:b,shapeFlag:v,transition:y,patchFlag:_,dirs:O}=e;if(e.el&&void 0!==m&&-1===_)p=e.el=m(e.el);else{if(p=e.el=s(e.type,u,b&&b.is,b),8&v?d(p,e.children):16&v&&k(e.children,p,null,c,l,u&&"foreignObject"!==g,a,f),O&&vo(e,null,c,"created"),b){for(const t in b)"value"===t||Object(r.C)(t)||i(p,t,null,b[t],u,e.children,c,l,W);"value"in b&&i(p,"value",null,b.value),(h=b.onVnodeBeforeMount)&&jr(h,c,e)}C(p,e,e.scopeId,a,c)}__VUE_PROD_DEVTOOLS__&&(Object.defineProperty(p,"__vnode",{value:e,enumerable:!1}),Object.defineProperty(p,"__vueParentComponent",{value:c,enumerable:!1})),O&&vo(e,null,c,"beforeMount");const j=(!l||l&&!l.pendingBranch)&&y&&!y.persisted;j&&y.beforeEnter(p),o(p,t,n),((h=b&&b.onVnodeMounted)||j||O)&&Eo(()=>{h&&jr(h,c,e),j&&y.enter(p),O&&vo(e,null,c,"mounted")},l)},C=(e,t,n,o,r)=>{if(n&&h(e,n),o)for(let t=0;t{for(let u=l;u{const u=t.el=e.el;let{patchFlag:a,dynamicChildren:f,dirs:p}=t;a|=16&e.patchFlag;const h=e.props||r.b,m=t.props||r.b;let g;n&&Po(n,!1),(g=m.onVnodeBeforeUpdate)&&jr(g,n,t,e),p&&vo(t,e,n,"beforeUpdate"),n&&Po(n,!0);const b=c&&"foreignObject"!==t.type;if(f?P(e.dynamicChildren,f,u,n,o,b,s):l||$(e,t,u,null,n,o,b,s,!1),a>0){if(16&a)R(u,t,h,m,n,o,c);else if(2&a&&h.class!==m.class&&i(u,"class",null,m.class,c),4&a&&i(u,"style",h.style,m.style,c),8&a){const r=t.dynamicProps;for(let t=0;t{g&&jr(g,n,t,e),p&&vo(t,e,n,"updated")},o)},P=(e,t,n,o,r,c,i)=>{for(let s=0;s{if(n!==o){for(const u in o){if(Object(r.C)(u))continue;const a=o[u],d=n[u];a!==d&&"value"!==u&&i(e,u,d,a,l,t.children,c,s,W)}if(n!==r.b)for(const u in n)Object(r.C)(u)||u in o||i(e,u,n[u],null,l,t.children,c,s,W);"value"in o&&i(e,"value",n.value,o.value)}},M=(e,t,n,r,c,i,s,u,a)=>{const d=t.el=e?e.el:l(""),f=t.anchor=e?e.anchor:l("");let{patchFlag:p,dynamicChildren:h,slotScopeIds:m}=t;m&&(u=u?u.concat(m):m),null==e?(o(d,n,r),o(f,n,r),k(t.children,n,f,c,i,s,u,a)):p>0&&64&p&&h&&e.dynamicChildren?(P(e.dynamicChildren,h,n,c,i,s,u),(null!=t.key||c&&t===c.subTree)&&Ro(e,t,!0)):$(e,t,n,f,c,i,s,u,a)},A=(e,t,n,o,r,c,i,s,l)=>{t.slotScopeIds=s,null==e?512&t.shapeFlag?r.ctx.activate(t,n,o,i,l):I(t,n,o,r,c,i,l):V(e,t,l)},I=(e,t,n,o,r,c,i)=>{const s=e.component=Mr(e,o,r);if(wn(e)&&(s.ctx.renderer=Y),Ur(s),s.asyncDep){if(r&&r.registerDep(s,L),!e.el){const e=s.subTree=dr(zo);y(null,e,t,n)}}else L(s,e,t,n,r,c,i)},V=(e,t,n)=>{const o=t.component=e.component;if(function(e,t,n){const{props:o,children:r,component:c}=e,{props:i,children:s,patchFlag:l}=t,u=c.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&l>=0))return!(!r&&!s||s&&s.$stable)||o!==i&&(o?!i||Wt(o,i,u):!!i);if(1024&l)return!0;if(16&l)return o?Wt(o,i,u):!!i;if(8&l){const e=t.dynamicProps;for(let t=0;tct&&rt.splice(t,1)}(o.update),o.update()}else t.component=e.component,t.el=e.el,o.vnode=t},L=(e,t,n,o,c,i,s)=>{const l=e.effect=new _(()=>{if(e.isMounted){let t,{next:n,bu:o,u:l,parent:u,vnode:a}=e,d=n;0,Po(e,!1),n?(n.el=a.el,F(e,n,s)):n=a,o&&Object(r.p)(o),(t=n.props&&n.props.onVnodeBeforeUpdate)&&jr(t,u,n,a),Po(e,!0);const p=qt(e);0;const h=e.subTree;e.subTree=p,b(h,p,f(h.el),K(h),e,c,i),n.el=p.el,null===d&&Kt(e,p.el),l&&Eo(l,c),(t=n.props&&n.props.onVnodeUpdated)&&Eo(()=>jr(t,u,n,a),c),__VUE_PROD_DEVTOOLS__&&Nt(e)}else{let s;const{el:l,props:u}=t,{bm:a,m:d,parent:f}=e,p=Sn(t);if(Po(e,!1),a&&Object(r.p)(a),!p&&(s=u&&u.onVnodeBeforeMount)&&jr(s,f,t),Po(e,!0),l&&X){const n=()=>{e.subTree=qt(e),X(l,e.subTree,e,c,null)};p?t.type.__asyncLoader().then(()=>!e.isUnmounted&&n()):n()}else{0;const r=e.subTree=qt(e);0,b(null,r,n,o,e,c,i),t.el=r.el}if(d&&Eo(d,c),!p&&(s=u&&u.onVnodeMounted)){const e=t;Eo(()=>jr(s,f,e),c)}256&t.shapeFlag&&e.a&&Eo(e.a,c),e.isMounted=!0,__VUE_PROD_DEVTOOLS__&&Tt(e),t=n=o=null}},()=>gt(e.update),e.scope),u=e.update=l.run.bind(l);u.id=e.uid,Po(e,!0),u()},F=(e,t,n)=>{t.component=e;const o=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,o){const{props:c,attrs:i,vnode:{patchFlag:s}}=e,l=Te(c),[u]=e.propsOptions;let a=!1;if(!(o||s>0)||16&s){let o;ro(e,t,c,i)&&(a=!0);for(const i in l)t&&(Object(r.m)(t,i)||(o=Object(r.n)(i))!==i&&Object(r.m)(t,o))||(u?!n||void 0===n[i]&&void 0===n[o]||(c[i]=co(u,l,i,void 0,e,!0)):delete c[i]);if(i!==l)for(const e in i)t&&Object(r.m)(t,e)||(delete i[e],a=!0)}else if(8&s){const n=e.vnode.dynamicProps;for(let o=0;o{const{vnode:o,slots:c}=e;let i=!0,s=r.b;if(32&o.shapeFlag){const e=t._;e?n&&1===e?i=!1:(Object(r.i)(c,t),n||1!==e||delete c._):(i=!t.$stable,mo(t,c)),s=t}else t&&(go(e,t),s={default:1});if(i)for(const e in c)fo(e)||e in s||delete c[e]})(e,t.children,n),w(),_t(void 0,e.update),E()},$=(e,t,n,o,r,c,i,s,l=!1)=>{const u=e&&e.children,a=e?e.shapeFlag:0,f=t.children,{patchFlag:p,shapeFlag:h}=t;if(p>0){if(128&p)return void D(u,f,n,o,r,c,i,s,l);if(256&p)return void B(u,f,n,o,r,c,i,s,l)}8&h?(16&a&&W(u,r,c),f!==u&&d(n,f)):16&a?16&h?D(u,f,n,o,r,c,i,s,l):W(u,r,c,!0):(8&a&&d(n,""),16&h&&k(f,n,o,r,c,i,s,l))},B=(e,t,n,o,c,i,s,l,u)=>{e=e||r.a,t=t||r.a;const a=e.length,d=t.length,f=Math.min(a,d);let p;for(p=0;pd?W(e,c,i,!0,!1,f):k(t,n,o,c,i,s,l,u,f)},D=(e,t,n,o,c,i,s,l,u)=>{let a=0;const d=t.length;let f=e.length-1,p=d-1;for(;a<=f&&a<=p;){const o=e[a],r=t[a]=u?yr(t[a]):vr(t[a]);if(!cr(o,r))break;b(o,r,n,null,c,i,s,l,u),a++}for(;a<=f&&a<=p;){const o=e[f],r=t[p]=u?yr(t[p]):vr(t[p]);if(!cr(o,r))break;b(o,r,n,null,c,i,s,l,u),f--,p--}if(a>f){if(a<=p){const e=p+1,r=ep)for(;a<=f;)q(e[a],c,i,!0),a++;else{const h=a,m=a,g=new Map;for(a=m;a<=p;a++){const e=t[a]=u?yr(t[a]):vr(t[a]);null!=e.key&&g.set(e.key,a)}let v,y=0;const _=p-m+1;let O=!1,j=0;const S=new Array(_);for(a=0;a<_;a++)S[a]=0;for(a=h;a<=f;a++){const o=e[a];if(y>=_){q(o,c,i,!0);continue}let r;if(null!=o.key)r=g.get(o.key);else for(v=m;v<=p;v++)if(0===S[v-m]&&cr(o,t[v])){r=v;break}void 0===r?q(o,c,i,!0):(S[r-m]=a+1,r>=j?j=r:O=!0,b(o,t[r],n,null,c,i,s,l,u),y++)}const x=O?function(e){const t=e.slice(),n=[0];let o,r,c,i,s;const l=e.length;for(o=0;o>1,e[n[s]]0&&(t[o]=n[c-1]),n[c]=o)}}c=n.length,i=n[c-1];for(;c-- >0;)n[c]=i,i=t[i];return n}(S):r.a;for(v=x.length-1,a=_-1;a>=0;a--){const e=m+a,r=t[e],f=e+1{const{el:i,type:s,transition:l,children:u,shapeFlag:a}=e;if(6&a)return void U(e.component.subTree,t,n,r);if(128&a)return void e.suspense.move(t,n,r);if(64&a)return void s.move(e,t,n,Y);if(s===Ho){o(i,t,n);for(let e=0;e{let c;for(;e&&e!==t;)c=p(e),o(e,n,r),e=c;o(t,n,r)})(e,t,n);if(2!==r&&1&a&&l)if(0===r)l.beforeEnter(i),o(i,t,n),Eo(()=>l.enter(i),c);else{const{leave:e,delayLeave:r,afterLeave:c}=l,s=()=>o(i,t,n),u=()=>{e(i,()=>{s(),c&&c()})};r?r(i,s,u):u()}else o(i,t,n)},q=(e,t,n,o=!1,r=!1)=>{const{type:c,props:i,ref:s,children:l,dynamicChildren:u,shapeFlag:a,patchFlag:d,dirs:f}=e;if(null!=s&&jo(s,null,n,e,!0),256&a)return void t.ctx.deactivate(e);const p=1&a&&f,h=!Sn(e);let m;if(h&&(m=i&&i.onVnodeBeforeUnmount)&&jr(m,t,e),6&a)z(e.component,n,o);else{if(128&a)return void e.suspense.unmount(n,o);p&&vo(e,null,t,"beforeUnmount"),64&a?e.type.remove(e,t,n,r,Y,o):u&&(c!==Ho||d>0&&64&d)?W(u,t,n,!1,!0):(c===Ho&&384&d||!r&&16&a)&&W(l,t,n),o&&H(e)}(h&&(m=i&&i.onVnodeUnmounted)||p)&&Eo(()=>{m&&jr(m,t,e),p&&vo(e,null,t,"unmounted")},n)},H=e=>{const{type:t,el:n,anchor:o,transition:r}=e;if(t===Ho)return void G(n,o);if(t===Wo)return void j(e);const i=()=>{c(n),r&&!r.persisted&&r.afterLeave&&r.afterLeave()};if(1&e.shapeFlag&&r&&!r.persisted){const{leave:t,delayLeave:o}=r,c=()=>t(n,i);o?o(e.el,i,c):c()}else i()},G=(e,t)=>{let n;for(;e!==t;)n=p(e),c(e),e=n;c(t)},z=(e,t,n)=>{const{bum:o,scope:c,update:i,subTree:s,um:l}=e;o&&Object(r.p)(o),c.stop(),i&&(i.active=!1,q(s,e,t,n)),l&&Eo(l,t),Eo(()=>{e.isUnmounted=!0},t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve()),__VUE_PROD_DEVTOOLS__&&Pt(e)},W=(e,t,n,o=!1,r=!1,c=0)=>{for(let i=c;i6&e.shapeFlag?K(e.component.subTree):128&e.shapeFlag?e.suspense.next():p(e.anchor||e.el),J=(e,t,n)=>{null==e?t._vnode&&q(t._vnode,null,null,!0):b(t._vnode||null,e,t,null,null,null,n),Ot(),t._vnode=e},Y={p:b,um:q,m:U,r:H,mt:I,mc:k,pc:$,pbc:P,n:K,o:e};let Q,X;return t&&([Q,X]=t(Y)),{render:J,hydrate:Q,createApp:Oo(J,Q)}}function Po({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Ro(e,t,n=!1){const o=e.children,c=t.children;if(Object(r.q)(o)&&Object(r.q)(c))for(let e=0;ee&&(e.disabled||""===e.disabled),Ao=e=>"undefined"!=typeof SVGElement&&e instanceof SVGElement,Io=(e,t)=>{const n=e&&e.to;if(Object(r.G)(n)){if(t){const e=t(n);return e}return null}return n};function Vo(e,t,n,{o:{insert:o},m:r},c=2){0===c&&o(e.targetAnchor,t,n);const{el:i,anchor:s,shapeFlag:l,children:u,props:a}=e,d=2===c;if(d&&o(i,t,n),(!d||Mo(a))&&16&l)for(let e=0;e{16&v&&a(y,e,t,r,c,i,s,l)};b?g(n,u):d&&g(d,f)}else{t.el=e.el;const o=t.anchor=e.anchor,a=t.target=e.target,p=t.targetAnchor=e.targetAnchor,m=Mo(e.props),g=m?n:a,v=m?o:p;if(i=i||Ao(a),_?(f(e.dynamicChildren,_,g,r,c,i,s),Ro(e,t,!0)):l||d(e,t,g,v,r,c,i,s,!1),b)m||Vo(t,n,o,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const e=t.target=Io(t.props,h);e&&Vo(t,e,null,u,0)}else m&&Vo(t,a,p,u,1)}},remove(e,t,n,o,{um:r,o:{remove:c}},i){const{shapeFlag:s,children:l,anchor:u,targetAnchor:a,target:d,props:f}=e;if(d&&c(a),(i||!Mo(f))&&(c(u),16&s))for(let e=0;e0?Jo||r.a:null,Qo(),Zo>0&&Jo&&Jo.push(e),e}function nr(e,t,n,o,r,c){return tr(ar(e,t,n,o,r,c,!0))}function or(e,t,n,o,r){return tr(dr(e,t,n,o,r,!0))}function rr(e){return!!e&&!0===e.__v_isVNode}function cr(e,t){return e.type===t.type&&e.key===t.key}function ir(e){Xo=e}const sr="__vInternal",lr=({key:e})=>null!=e?e:null,ur=({ref:e,ref_key:t,ref_for:n})=>null!=e?Object(r.G)(e)||Ie(e)||Object(r.s)(e)?{i:Vt,r:e,k:t,f:!!n}:e:null;function ar(e,t=null,n=null,o=0,c=null,i=(e===Ho?0:1),s=!1,l=!1){const u={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&lr(t),ref:t&&ur(t),scopeId:Lt,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:o,dynamicProps:c,dynamicChildren:null,appContext:null};return l?(_r(u,n),128&i&&e.normalize(u)):n&&(u.shapeFlag|=Object(r.G)(n)?8:16),Zo>0&&!s&&Jo&&(u.patchFlag>0||6&i)&&32!==u.patchFlag&&Jo.push(u),u}const dr=fr;function fr(e,t=null,n=null,o=0,c=null,i=!1){if(e&&e!==$o||(e=zo),rr(e)){const o=hr(e,t,!0);return n&&_r(o,n),o}if(Xr(e)&&(e=e.__vccOpts),t){t=pr(t);let{class:e,style:n}=t;e&&!Object(r.G)(e)&&(t.class=Object(r.M)(e)),Object(r.y)(n)&&(ke(n)&&!Object(r.q)(n)&&(n=Object(r.i)({},n)),t.style=Object(r.O)(n))}return ar(e,t,n,o,c,Object(r.G)(e)?1:(e=>e.__isSuspense)(e)?128:(e=>e.__isTeleport)(e)?64:Object(r.y)(e)?4:Object(r.s)(e)?2:0,i,!0)}function pr(e){return e?ke(e)||sr in e?Object(r.i)({},e):e:null}function hr(e,t,n=!1){const{props:o,ref:c,patchFlag:i,children:s}=e,l=t?Or(o||{},t):o;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&lr(l),ref:t&&t.ref?n&&c?Object(r.q)(c)?c.concat(ur(t)):[c,ur(t)]:ur(t):c,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:s,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Ho?-1===i?16:16|i:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&hr(e.ssContent),ssFallback:e.ssFallback&&hr(e.ssFallback),el:e.el,anchor:e.anchor}}function mr(e=" ",t=0){return dr(Go,null,e,t)}function gr(e,t){const n=dr(Wo,null,e);return n.staticCount=t,n}function br(e="",t=!1){return t?(Yo(),or(zo,null,e)):dr(zo,null,e)}function vr(e){return null==e||"boolean"==typeof e?dr(zo):Object(r.q)(e)?dr(Ho,null,e.slice()):"object"==typeof e?yr(e):dr(Go,null,String(e))}function yr(e){return null===e.el||e.memo?e:hr(e)}function _r(e,t){let n=0;const{shapeFlag:o}=e;if(null==t)t=null;else if(Object(r.q)(t))n=16;else if("object"==typeof t){if(65&o){const n=t.default;return void(n&&(n._c&&(n._d=!1),_r(e,n()),n._c&&(n._d=!0)))}{n=32;const o=t._;o||sr in t?3===o&&Vt&&(1===Vt.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=Vt}}else Object(r.s)(t)?(t={default:t,_ctx:Vt},n=32):(t=String(t),64&o?(n=16,t=[mr(t)]):n=8);e.children=t,e.shapeFlag|=n}function Or(...e){const t={};for(let n=0;nt(e,n,void 0,i&&i[n]));else{const n=Object.keys(e);c=new Array(n.length);for(let o=0,r=n.length;o!rr(t)||t.type!==zo&&!(t.type===Ho&&!e(t.children)))?t:null}(c(n)),s=or(Ho,{key:n.key||"_"+t},i||(o?o():[]),i&&1===e._?64:-2);return!r&&s.scopeId&&(s.slotScopeIds=[s.scopeId+"-s"]),c&&c._c&&(c._d=!0),s}function wr(e){const t={};for(const n in e)t[Object(r.S)(n)]=e[n];return t}const Er=e=>e?Fr(e)?Kr(e)||e.proxy:Er(e.parent):null,kr=Object(r.i)(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Er(e.parent),$root:e=>Er(e.root),$emit:e=>e.emit,$options:e=>__VUE_OPTIONS_API__?Qn(e):e.type,$forceUpdate:e=>()=>gt(e.update),$nextTick:e=>mt.bind(e.proxy),$watch:e=>__VUE_OPTIONS_API__?an.bind(e):r.d}),Tr={get({_:e},t){const{ctx:n,setupState:o,data:c,props:i,accessCache:s,type:l,appContext:u}=e;let a;if("$"!==t[0]){const l=s[t];if(void 0!==l)switch(l){case 1:return o[t];case 2:return c[t];case 4:return n[t];case 3:return i[t]}else{if(o!==r.b&&Object(r.m)(o,t))return s[t]=1,o[t];if(c!==r.b&&Object(r.m)(c,t))return s[t]=2,c[t];if((a=e.propsOptions[0])&&Object(r.m)(a,t))return s[t]=3,i[t];if(n!==r.b&&Object(r.m)(n,t))return s[t]=4,n[t];__VUE_OPTIONS_API__&&!Wn||(s[t]=0)}}const d=kr[t];let f,p;return d?("$attrs"===t&&k(e,0,t),d(e)):(f=l.__cssModules)&&(f=f[t])?f:n!==r.b&&Object(r.m)(n,t)?(s[t]=4,n[t]):(p=u.config.globalProperties,Object(r.m)(p,t)?p[t]:void 0)},set({_:e},t,n){const{data:o,setupState:c,ctx:i}=e;return c!==r.b&&Object(r.m)(c,t)?(c[t]=n,!0):o!==r.b&&Object(r.m)(o,t)?(o[t]=n,!0):!Object(r.m)(e.props,t)&&(("$"!==t[0]||!(t.slice(1)in e))&&(i[t]=n,!0))},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:c,propsOptions:i}},s){let l;return!!n[s]||e!==r.b&&Object(r.m)(e,s)||t!==r.b&&Object(r.m)(t,s)||(l=i[0])&&Object(r.m)(l,s)||Object(r.m)(o,s)||Object(r.m)(kr,s)||Object(r.m)(c.config.globalProperties,s)},defineProperty(e,t,n){return null!=n.get?this.set(e,t,n.get(),null):null!=n.value&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};const Nr=Object(r.i)({},Tr,{get(e,t){if(t!==Symbol.unscopables)return Tr.get(e,t,e)},has:(e,t)=>"_"!==t[0]&&!Object(r.t)(t)});const Pr=yo();let Rr=0;function Mr(e,t,n){const o=e.type,c=(t?t.appContext:e.appContext)||Pr,s={uid:Rr++,vnode:e,type:o,parent:t,appContext:c,root:null,next:null,subTree:null,effect:null,update:null,scope:new i(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(c.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:io(o,c),emitsOptions:At(o,c),emit:null,emitted:null,propsDefaults:r.b,inheritAttrs:o.inheritAttrs,ctx:r.b,data:r.b,props:r.b,attrs:r.b,slots:r.b,refs:r.b,setupState:r.b,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return s.ctx={_:s},s.root=t?t.root:s,s.emit=Mt.bind(null,s),e.ce&&e.ce(s),s}let Ar=null;const Ir=()=>Ar||Vt,Vr=e=>{Ar=e,e.scope.on()},Lr=()=>{Ar&&Ar.scope.off(),Ar=null};function Fr(e){return 4&e.vnode.shapeFlag}let $r,Br,Dr=!1;function Ur(e,t=!1){Dr=t;const{props:n,children:o}=e.vnode,c=Fr(e);!function(e,t,n,o=!1){const c={},i={};Object(r.h)(i,sr,1),e.propsDefaults=Object.create(null),ro(e,t,c,i);for(const t in e.propsOptions[0])t in c||(c[t]=void 0);n?e.props=o?c:Oe(c):e.type.props?e.props=c:e.props=i,e.attrs=i}(e,n,c,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=Te(t),Object(r.h)(t,"_",n)):mo(t,e.slots={})}else e.slots={},t&&go(e,t);Object(r.h)(e.slots,sr,1)})(e,o);const i=c?function(e,t){const n=e.type;0;e.accessCache=Object.create(null),e.proxy=Ne(new Proxy(e.ctx,Tr)),!1;const{setup:o}=n;if(o){const n=e.setupContext=o.length>1?Wr(e):null;Vr(e),w();const c=Ze(o,e,0,[e.props,n]);if(E(),Lr(),Object(r.B)(c)){if(c.then(Lr,Lr),t)return c.then(n=>{qr(e,n,t)}).catch(t=>{tt(t,e,0)});e.asyncDep=c}else qr(e,c,t)}else zr(e,t)}(e,t):void 0;return Dr=!1,i}function qr(e,t,n){Object(r.s)(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Object(r.y)(t)&&(__VUE_PROD_DEVTOOLS__&&(e.devtoolsRawSetupState=t),e.setupState=qe(t)),zr(e,n)}function Hr(e){$r=e,Br=e=>{e.render._rc&&(e.withProxy=new Proxy(e.ctx,Nr))}}const Gr=()=>!$r;function zr(e,t,n){const o=e.type;if(!e.render){if(!t&&$r&&!o.render){const t=o.template;if(t){0;const{isCustomElement:n,compilerOptions:c}=e.appContext.config,{delimiters:i,compilerOptions:s}=o,l=Object(r.i)(Object(r.i)({isCustomElement:n,delimiters:i},c),s);o.render=$r(t,l)}}e.render=o.render||r.d,Br&&Br(e)}__VUE_OPTIONS_API__&&(Vr(e),w(),Kn(e),E(),Lr())}function Wr(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=function(e){return new Proxy(e.attrs,{get:(t,n)=>(k(e,0,"$attrs"),t[n])})}(e))},slots:e.slots,emit:e.emit,expose:t}}function Kr(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(qe(Ne(e.exposed)),{get:(t,n)=>n in t?t[n]:n in kr?kr[n](e):void 0}))}const Jr=/(?:^|[-_])(\w)/g;function Yr(e){return Object(r.s)(e)&&e.displayName||e.name}function Qr(e,t,n=!1){let o=Yr(t);if(!o&&t.__file){const e=t.__file.match(/([^/\\]+)\.\w+$/);e&&(o=e[1])}if(!o&&e&&e.parent){const n=e=>{for(const n in e)if(e[n]===t)return n};o=n(e.components||e.parent.type.components)||n(e.appContext.components)}return o?o.replace(Jr,e=>e.toUpperCase()).replace(/[-_]/g,""):n?"App":"Anonymous"}function Xr(e){return Object(r.s)(e)&&"__vccOpts"in e}const Zr=(e,t)=>function(e,t,n=!1){let o,c;const i=Object(r.s)(e);return i?(o=e,c=r.d):(o=e.get,c=e.set),new Je(o,c,i||!c,n)}(e,0,Dr);function ec(){return null}function tc(){return null}function nc(e){0}function oc(e,t){return null}function rc(){return ic().slots}function cc(){return ic().attrs}function ic(){const e=Ir();return e.setupContext||(e.setupContext=Wr(e))}function sc(e,t){const n=Object(r.q)(e)?e.reduce((e,t)=>(e[t]={},e),{}):e;for(const e in t){const o=n[e];o?Object(r.q)(o)||Object(r.s)(o)?n[e]={type:o,default:t[e]}:o.default=t[e]:null===o&&(n[e]={default:t[e]})}return n}function lc(e,t){const n={};for(const o in e)t.includes(o)||Object.defineProperty(n,o,{enumerable:!0,get:()=>e[o]});return n}function uc(e){const t=Ir();let n=e();return Lr(),Object(r.B)(n)&&(n=n.catch(e=>{throw Vr(t),e})),[n,()=>Vr(t)]}function ac(e,t,n){const o=arguments.length;return 2===o?Object(r.y)(t)&&!Object(r.q)(t)?rr(t)?dr(e,null,[t]):dr(e,t):dr(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):3===o&&rr(n)&&(n=[n]),dr(e,t,n))}const dc=Symbol(""),fc=()=>{{const e=nn(dc);return e||Qe("Server rendering context not provided. Make sure to only call useSSRContext() conditionally in the server build."),e}};function pc(){return void 0}function hc(e,t,n,o){const r=n[o];if(r&&mc(r,e))return r;const c=t();return c.memo=e.slice(),n[o]=c}function mc(e,t){const n=e.memo;if(n.length!=t.length)return!1;for(let e=0;e0&&Jo&&Jo.push(e),!0}const gc="3.2.31",bc={createComponentInstance:Mr,setupComponent:Ur,renderComponentRoot:qt,setCurrentRenderingInstance:Ft,isVNode:rr,normalizeVNode:vr},vc=null,yc=null,_c="undefined"!=typeof document?document:null,Oc=_c&&_c.createElement("template"),jc={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,o)=>{const r=t?_c.createElementNS("http://www.w3.org/2000/svg",e):_c.createElement(e,n?{is:n}:void 0);return"select"===e&&o&&null!=o.multiple&&r.setAttribute("multiple",o.multiple),r},createText:e=>_c.createTextNode(e),createComment:e=>_c.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>_c.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},cloneNode(e){const t=e.cloneNode(!0);return"_value"in e&&(t._value=e._value),t},insertStaticContent(e,t,n,o,r,c){const i=n?n.previousSibling:t.lastChild;if(r&&(r===c||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),r!==c&&(r=r.nextSibling););else{Oc.innerHTML=o?`${e}`:e;const r=Oc.content;if(o){const e=r.firstChild;for(;e.firstChild;)r.appendChild(e.firstChild);r.removeChild(e)}t.insertBefore(r,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};const Sc=/\s*!important$/;function xc(e,t,n){if(Object(r.q)(n))n.forEach(n=>xc(e,t,n));else if(t.startsWith("--"))e.setProperty(t,n);else{const o=function(e,t){const n=wc[t];if(n)return n;let o=Object(r.f)(t);if("filter"!==o&&o in e)return wc[t]=o;o=Object(r.g)(o);for(let n=0;ndocument.createEvent("Event").timeStamp&&(kc=()=>performance.now());const e=navigator.userAgent.match(/firefox\/(\d+)/i);Tc=!!(e&&Number(e[1])<=53)}let Nc=0;const Pc=Promise.resolve(),Rc=()=>{Nc=0};function Mc(e,t,n,o){e.addEventListener(t,n,o)}function Ac(e,t,n,o,c=null){const i=e._vei||(e._vei={}),s=i[t];if(o&&s)s.value=o;else{const[n,l]=function(e){let t;if(Ic.test(e)){let n;for(t={};n=e.match(Ic);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[Object(r.n)(e.slice(2)),t]}(t);if(o){Mc(e,n,i[t]=function(e,t){const n=e=>{const o=e.timeStamp||kc();(Tc||o>=n.attached-1)&&et(function(e,t){if(Object(r.q)(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(e=>t=>!t._stopped&&e&&e(t))}return t}(e,n.value),t,5,[e])};return n.value=e,n.attached=(()=>Nc||(Pc.then(Rc),Nc=kc()))(),n}(o,c),l)}else s&&(!function(e,t,n,o){e.removeEventListener(t,n,o)}(e,n,s,l),i[t]=void 0)}}const Ic=/(?:Once|Passive|Capture)$/;const Vc=/^on[a-z]/;function Lc(e,t){const n=jn(e);class o extends Bc{constructor(e){super(n,e,t)}}return o.def=n,o}const Fc=e=>Lc(e,Fi),$c="undefined"!=typeof HTMLElement?HTMLElement:class{};class Bc extends $c{constructor(e,t={},n){super(),this._def=e,this._props=t,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&n?n(this._createVNode(),this.shadowRoot):this.attachShadow({mode:"open"})}connectedCallback(){this._connected=!0,this._instance||this._resolveDef()}disconnectedCallback(){this._connected=!1,mt(()=>{this._connected||(Li(null,this.shadowRoot),this._instance=null)})}_resolveDef(){if(this._resolved)return;this._resolved=!0;for(let e=0;e{for(const t of e)this._setAttr(t.attributeName)}).observe(this,{attributes:!0});const e=e=>{const{props:t,styles:n}=e,o=!Object(r.q)(t),c=t?o?Object.keys(t):t:[];let i;if(o)for(const e in this._props){const n=t[e];(n===Number||n&&n.type===Number)&&(this._props[e]=Object(r.T)(this._props[e]),(i||(i=Object.create(null)))[e]=!0)}this._numberProps=i;for(const e of Object.keys(this))"_"!==e[0]&&this._setProp(e,this[e],!0,!1);for(const e of c.map(r.f))Object.defineProperty(this,e,{get(){return this._getProp(e)},set(t){this._setProp(e,t)}});this._applyStyles(n),this._update()},t=this._def.__asyncLoader;t?t().then(e):e(this._def)}_setAttr(e){let t=this.getAttribute(e);this._numberProps&&this._numberProps[e]&&(t=Object(r.T)(t)),this._setProp(Object(r.f)(e),t,!1)}_getProp(e){return this._props[e]}_setProp(e,t,n=!0,o=!0){t!==this._props[e]&&(this._props[e]=t,o&&this._instance&&this._update(),n&&(!0===t?this.setAttribute(Object(r.n)(e),""):"string"==typeof t||"number"==typeof t?this.setAttribute(Object(r.n)(e),t+""):t||this.removeAttribute(Object(r.n)(e))))}_update(){Li(this._createVNode(),this.shadowRoot)}_createVNode(){const e=dr(this._def,Object(r.i)({},this._props));return this._instance||(e.ce=e=>{this._instance=e,e.isCE=!0,e.emit=(e,...t)=>{this.dispatchEvent(new CustomEvent(e,{detail:t}))};let t=this;for(;t=t&&(t.parentNode||t.host);)if(t instanceof Bc){e.parent=t._instance;break}}),e}_applyStyles(e){e&&e.forEach(e=>{const t=document.createElement("style");t.textContent=e,this.shadowRoot.appendChild(t)})}}function Dc(e="$style"){{const t=Ir();if(!t)return r.b;const n=t.type.__cssModules;if(!n)return r.b;const o=n[e];return o||r.b}}function Uc(e){const t=Ir();if(!t)return;const n=()=>function e(t,n){if(128&t.shapeFlag){const o=t.suspense;t=o.activeBranch,o.pendingBranch&&!o.isHydrating&&o.effects.push(()=>{e(o.activeBranch,n)})}for(;t.component;)t=t.component.subTree;if(1&t.shapeFlag&&t.el)qc(t.el,n);else if(t.type===Ho)t.children.forEach(t=>e(t,n));else if(t.type===Wo){let{el:e,anchor:o}=t;for(;e&&(qc(e,n),e!==o);)e=e.nextSibling}}(t.subTree,e(t.proxy));rn(n),Fn(()=>{const e=new MutationObserver(n);e.observe(t.subTree.el.parentNode,{childList:!0}),Un(()=>e.disconnect())})}function qc(e,t){if(1===e.nodeType){const n=e.style;for(const e in t)n.setProperty("--"+e,t[e])}}const Hc=(e,{slots:t})=>ac(mn,Jc(e),t);Hc.displayName="Transition";const Gc={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},zc=Hc.props=Object(r.i)({},mn.props,Gc),Wc=(e,t=[])=>{Object(r.q)(e)?e.forEach(e=>e(...t)):e&&e(...t)},Kc=e=>!!e&&(Object(r.q)(e)?e.some(e=>e.length>1):e.length>1);function Jc(e){const t={};for(const n in e)n in Gc||(t[n]=e[n]);if(!1===e.css)return t;const{name:n="v",type:o,duration:c,enterFromClass:i=n+"-enter-from",enterActiveClass:s=n+"-enter-active",enterToClass:l=n+"-enter-to",appearFromClass:u=i,appearActiveClass:a=s,appearToClass:d=l,leaveFromClass:f=n+"-leave-from",leaveActiveClass:p=n+"-leave-active",leaveToClass:h=n+"-leave-to"}=e,m=function(e){if(null==e)return null;if(Object(r.y)(e))return[Yc(e.enter),Yc(e.leave)];{const t=Yc(e);return[t,t]}}(c),g=m&&m[0],b=m&&m[1],{onBeforeEnter:v,onEnter:y,onEnterCancelled:_,onLeave:O,onLeaveCancelled:j,onBeforeAppear:S=v,onAppear:x=y,onAppearCancelled:C=_}=t,w=(e,t,n)=>{Xc(e,t?d:l),Xc(e,t?a:s),n&&n()},E=(e,t)=>{Xc(e,h),Xc(e,p),t&&t()},k=e=>(t,n)=>{const r=e?x:y,c=()=>w(t,e,n);Wc(r,[t,c]),Zc(()=>{Xc(t,e?u:i),Qc(t,e?d:l),Kc(r)||ti(t,o,g,c)})};return Object(r.i)(t,{onBeforeEnter(e){Wc(v,[e]),Qc(e,i),Qc(e,s)},onBeforeAppear(e){Wc(S,[e]),Qc(e,u),Qc(e,a)},onEnter:k(!1),onAppear:k(!0),onLeave(e,t){const n=()=>E(e,t);Qc(e,f),ci(),Qc(e,p),Zc(()=>{Xc(e,f),Qc(e,h),Kc(O)||ti(e,o,b,n)}),Wc(O,[e,n])},onEnterCancelled(e){w(e,!1),Wc(_,[e])},onAppearCancelled(e){w(e,!0),Wc(C,[e])},onLeaveCancelled(e){E(e),Wc(j,[e])}})}function Yc(e){return Object(r.T)(e)}function Qc(e,t){t.split(/\s+/).forEach(t=>t&&e.classList.add(t)),(e._vtc||(e._vtc=new Set)).add(t)}function Xc(e,t){t.split(/\s+/).forEach(t=>t&&e.classList.remove(t));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function Zc(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let ei=0;function ti(e,t,n,o){const r=e._endId=++ei,c=()=>{r===e._endId&&o()};if(n)return setTimeout(c,n);const{type:i,timeout:s,propCount:l}=ni(e,t);if(!i)return o();const u=i+"end";let a=0;const d=()=>{e.removeEventListener(u,f),c()},f=t=>{t.target===e&&++a>=l&&d()};setTimeout(()=>{a(n[e]||"").split(", "),r=o("transitionDelay"),c=o("transitionDuration"),i=oi(r,c),s=o("animationDelay"),l=o("animationDuration"),u=oi(s,l);let a=null,d=0,f=0;"transition"===t?i>0&&(a="transition",d=i,f=c.length):"animation"===t?u>0&&(a="animation",d=u,f=l.length):(d=Math.max(i,u),a=d>0?i>u?"transition":"animation":null,f=a?"transition"===a?c.length:l.length:0);return{type:a,timeout:d,propCount:f,hasTransform:"transition"===a&&/\b(transform|all)(,|$)/.test(n.transitionProperty)}}function oi(e,t){for(;e.lengthri(t)+ri(e[n])))}function ri(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function ci(){return document.body.offsetHeight}const ii=new WeakMap,si=new WeakMap,li={name:"TransitionGroup",props:Object(r.i)({},zc,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=Ir(),o=pn();let r,c;return Bn(()=>{if(!r.length)return;const t=e.moveClass||(e.name||"v")+"-move";if(!function(e,t,n){const o=e.cloneNode();e._vtc&&e._vtc.forEach(e=>{e.split(/\s+/).forEach(e=>e&&o.classList.remove(e))});n.split(/\s+/).forEach(e=>e&&o.classList.add(e)),o.style.display="none";const r=1===t.nodeType?t:t.parentNode;r.appendChild(o);const{hasTransform:c}=ni(o);return r.removeChild(o),c}(r[0].el,n.vnode.el,t))return;r.forEach(ui),r.forEach(ai);const o=r.filter(di);ci(),o.forEach(e=>{const n=e.el,o=n.style;Qc(n,t),o.transform=o.webkitTransform=o.transitionDuration="";const r=n._moveCb=e=>{e&&e.target!==n||e&&!/transform$/.test(e.propertyName)||(n.removeEventListener("transitionend",r),n._moveCb=null,Xc(n,t))};n.addEventListener("transitionend",r)})}),()=>{const i=Te(e),s=Jc(i);let l=i.tag||Ho;r=c,c=t.default?On(t.default()):[];for(let e=0;e{const t=e.props["onUpdate:modelValue"];return Object(r.q)(t)?e=>Object(r.p)(t,e):t};function pi(e){e.target.composing=!0}function hi(e){const t=e.target;t.composing&&(t.composing=!1,function(e,t){const n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}(t,"input"))}const mi={created(e,{modifiers:{lazy:t,trim:n,number:o}},c){e._assign=fi(c);const i=o||c.props&&"number"===c.props.type;Mc(e,t?"change":"input",t=>{if(t.target.composing)return;let o=e.value;n?o=o.trim():i&&(o=Object(r.T)(o)),e._assign(o)}),n&&Mc(e,"change",()=>{e.value=e.value.trim()}),t||(Mc(e,"compositionstart",pi),Mc(e,"compositionend",hi),Mc(e,"change",hi))},mounted(e,{value:t}){e.value=null==t?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:o,number:c}},i){if(e._assign=fi(i),e.composing)return;if(document.activeElement===e){if(n)return;if(o&&e.value.trim()===t)return;if((c||"number"===e.type)&&Object(r.T)(e.value)===t)return}const s=null==t?"":t;e.value!==s&&(e.value=s)}},gi={deep:!0,created(e,t,n){e._assign=fi(n),Mc(e,"change",()=>{const t=e._modelValue,n=Oi(e),o=e.checked,c=e._assign;if(Object(r.q)(t)){const e=Object(r.K)(t,n),i=-1!==e;if(o&&!i)c(t.concat(n));else if(!o&&i){const n=[...t];n.splice(e,1),c(n)}}else if(Object(r.E)(t)){const e=new Set(t);o?e.add(n):e.delete(n),c(e)}else c(ji(e,o))})},mounted:bi,beforeUpdate(e,t,n){e._assign=fi(n),bi(e,t,n)}};function bi(e,{value:t,oldValue:n},o){e._modelValue=t,Object(r.q)(t)?e.checked=Object(r.K)(t,o.props.value)>-1:Object(r.E)(t)?e.checked=t.has(o.props.value):t!==n&&(e.checked=Object(r.J)(t,ji(e,!0)))}const vi={created(e,{value:t},n){e.checked=Object(r.J)(t,n.props.value),e._assign=fi(n),Mc(e,"change",()=>{e._assign(Oi(e))})},beforeUpdate(e,{value:t,oldValue:n},o){e._assign=fi(o),t!==n&&(e.checked=Object(r.J)(t,o.props.value))}},yi={deep:!0,created(e,{value:t,modifiers:{number:n}},o){const c=Object(r.E)(t);Mc(e,"change",()=>{const t=Array.prototype.filter.call(e.options,e=>e.selected).map(e=>n?Object(r.T)(Oi(e)):Oi(e));e._assign(e.multiple?c?new Set(t):t:t[0])}),e._assign=fi(o)},mounted(e,{value:t}){_i(e,t)},beforeUpdate(e,t,n){e._assign=fi(n)},updated(e,{value:t}){_i(e,t)}};function _i(e,t){const n=e.multiple;if(!n||Object(r.q)(t)||Object(r.E)(t)){for(let o=0,c=e.options.length;o-1:c.selected=t.has(i);else if(Object(r.J)(Oi(c),t))return void(e.selectedIndex!==o&&(e.selectedIndex=o))}n||-1===e.selectedIndex||(e.selectedIndex=-1)}}function Oi(e){return"_value"in e?e._value:e.value}function ji(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Si={created(e,t,n){xi(e,t,n,null,"created")},mounted(e,t,n){xi(e,t,n,null,"mounted")},beforeUpdate(e,t,n,o){xi(e,t,n,o,"beforeUpdate")},updated(e,t,n,o){xi(e,t,n,o,"updated")}};function xi(e,t,n,o,r){let c;switch(e.tagName){case"SELECT":c=yi;break;case"TEXTAREA":c=mi;break;default:switch(n.props&&n.props.type){case"checkbox":c=gi;break;case"radio":c=vi;break;default:c=mi}}const i=c[r];i&&i(e,t,n,o)}const Ci=["ctrl","shift","alt","meta"],wi={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&0!==e.button,middle:e=>"button"in e&&1!==e.button,right:e=>"button"in e&&2!==e.button,exact:(e,t)=>Ci.some(n=>e[n+"Key"]&&!t.includes(n))},Ei=(e,t)=>(n,...o)=>{for(let e=0;en=>{if(!("key"in n))return;const o=Object(r.n)(n.key);return t.some(e=>e===o||ki[e]===o)?e(n):void 0},Ni={beforeMount(e,{value:t},{transition:n}){e._vod="none"===e.style.display?"":e.style.display,n&&t?n.beforeEnter(e):Pi(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:o}){!t!=!n&&(o?t?(o.beforeEnter(e),Pi(e,!0),o.enter(e)):o.leave(e,()=>{Pi(e,!1)}):Pi(e,t))},beforeUnmount(e,{value:t}){Pi(e,t)}};function Pi(e,t){e.style.display=t?e._vod:"none"}const Ri=Object(r.i)({patchProp:(e,t,n,o,c=!1,i,s,l,u)=>{"class"===t?function(e,t,n){const o=e._vtc;o&&(t=(t?[t,...o]:[...o]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,o,c):"style"===t?function(e,t,n){const o=e.style,c=Object(r.G)(n);if(n&&!c){for(const e in n)xc(o,e,n[e]);if(t&&!Object(r.G)(t))for(const e in t)null==n[e]&&xc(o,e,"")}else{const r=o.display;c?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=r)}}(e,n,o):Object(r.z)(t)?Object(r.x)(t)||Ac(e,t,0,o,s):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,o){if(o)return"innerHTML"===t||"textContent"===t||!!(t in e&&Vc.test(t)&&Object(r.s)(n));if("spellcheck"===t||"draggable"===t)return!1;if("form"===t)return!1;if("list"===t&&"INPUT"===e.tagName)return!1;if("type"===t&&"TEXTAREA"===e.tagName)return!1;if(Vc.test(t)&&Object(r.G)(n))return!1;return t in e}(e,t,o,c))?function(e,t,n,o,c,i,s){if("innerHTML"===t||"textContent"===t)return o&&s(o,c,i),void(e[t]=null==n?"":n);if("value"===t&&"PROGRESS"!==e.tagName&&!e.tagName.includes("-")){e._value=n;const o=null==n?"":n;return e.value===o&&"OPTION"!==e.tagName||(e.value=o),void(null==n&&e.removeAttribute(t))}if(""===n||null==n){const o=typeof e[t];if("boolean"===o)return void(e[t]=Object(r.o)(n));if(null==n&&"string"===o)return e[t]="",void e.removeAttribute(t);if("number"===o){try{e[t]=0}catch(e){}return void e.removeAttribute(t)}}try{e[t]=n}catch(e){0}}(e,t,o,i,s,l,u):("true-value"===t?e._trueValue=o:"false-value"===t&&(e._falseValue=o),function(e,t,n,o,c){if(o&&t.startsWith("xlink:"))null==n?e.removeAttributeNS(Ec,t.slice(6,t.length)):e.setAttributeNS(Ec,t,n);else{const o=Object(r.F)(t);null==n||o&&!Object(r.o)(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}(e,t,o,c))}},jc);let Mi,Ai=!1;function Ii(){return Mi||(Mi=ko(Ri))}function Vi(){return Mi=Ai?Mi:To(Ri),Ai=!0,Mi}const Li=(...e)=>{Ii().render(...e)},Fi=(...e)=>{Vi().hydrate(...e)},$i=(...e)=>{const t=Ii().createApp(...e);const{mount:n}=t;return t.mount=e=>{const o=Di(e);if(!o)return;const c=t._component;Object(r.s)(c)||c.render||c.template||(c.template=o.innerHTML),o.innerHTML="";const i=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},t},Bi=(...e)=>{const t=Vi().createApp(...e);const{mount:n}=t;return t.mount=e=>{const t=Di(e);if(t)return n(t,!0,t instanceof SVGElement)},t};function Di(e){if(Object(r.G)(e)){return document.querySelector(e)}return e}let Ui=!1;const qi=()=>{Ui||(Ui=!0,mi.getSSRProps=({value:e})=>({value:e}),vi.getSSRProps=({value:e},t)=>{if(t.props&&Object(r.J)(t.props.value,e))return{checked:!0}},gi.getSSRProps=({value:e},t)=>{if(Object(r.q)(e)){if(t.props&&Object(r.K)(e,t.props.value)>-1)return{checked:!0}}else if(Object(r.E)(e)){if(t.props&&e.has(t.props.value))return{checked:!0}}else if(e)return{checked:!0}},Ni.getSSRProps=({value:e})=>{if(!e)return{style:{display:"none"}}})};function Hi(e){throw e}function Gi(e){}function zi(e,t,n,o){const r=new SyntaxError(String(e));return r.code=e,r.loc=t,r}const Wi=Symbol(""),Ki=Symbol(""),Ji=Symbol(""),Yi=Symbol(""),Qi=Symbol(""),Xi=Symbol(""),Zi=Symbol(""),es=Symbol(""),ts=Symbol(""),ns=Symbol(""),os=Symbol(""),rs=Symbol(""),cs=Symbol(""),is=Symbol(""),ss=Symbol(""),ls=Symbol(""),us=Symbol(""),as=Symbol(""),ds=Symbol(""),fs=Symbol(""),ps=Symbol(""),hs=Symbol(""),ms=Symbol(""),gs=Symbol(""),bs=Symbol(""),vs=Symbol(""),ys=Symbol(""),_s=Symbol(""),Os=Symbol(""),js=Symbol(""),Ss=Symbol(""),xs=Symbol(""),Cs=Symbol(""),ws=Symbol(""),Es=Symbol(""),ks=Symbol(""),Ts=Symbol(""),Ns=Symbol(""),Ps=Symbol(""),Rs={[Wi]:"Fragment",[Ki]:"Teleport",[Ji]:"Suspense",[Yi]:"KeepAlive",[Qi]:"BaseTransition",[Xi]:"openBlock",[Zi]:"createBlock",[es]:"createElementBlock",[ts]:"createVNode",[ns]:"createElementVNode",[os]:"createCommentVNode",[rs]:"createTextVNode",[cs]:"createStaticVNode",[is]:"resolveComponent",[ss]:"resolveDynamicComponent",[ls]:"resolveDirective",[us]:"resolveFilter",[as]:"withDirectives",[ds]:"renderList",[fs]:"renderSlot",[ps]:"createSlots",[hs]:"toDisplayString",[ms]:"mergeProps",[gs]:"normalizeClass",[bs]:"normalizeStyle",[vs]:"normalizeProps",[ys]:"guardReactiveProps",[_s]:"toHandlers",[Os]:"camelize",[js]:"capitalize",[Ss]:"toHandlerKey",[xs]:"setBlockTracking",[Cs]:"pushScopeId",[ws]:"popScopeId",[Es]:"withCtx",[ks]:"unref",[Ts]:"isRef",[Ns]:"withMemo",[Ps]:"isMemoSame"};const Ms={source:"",start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0}};function As(e,t,n,o,r,c,i,s=!1,l=!1,u=!1,a=Ms){return e&&(s?(e.helper(Xi),e.helper(ul(e.inSSR,u))):e.helper(ll(e.inSSR,u)),i&&e.helper(as)),{type:13,tag:t,props:n,children:o,patchFlag:r,dynamicProps:c,directives:i,isBlock:s,disableTracking:l,isComponent:u,loc:a}}function Is(e,t=Ms){return{type:17,loc:t,elements:e}}function Vs(e,t=Ms){return{type:15,loc:t,properties:e}}function Ls(e,t){return{type:16,loc:Ms,key:Object(r.G)(e)?Fs(e,!0):e,value:t}}function Fs(e,t=!1,n=Ms,o=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:o}}function $s(e,t=Ms){return{type:8,loc:t,children:e}}function Bs(e,t=[],n=Ms){return{type:14,loc:n,callee:e,arguments:t}}function Ds(e,t,n=!1,o=!1,r=Ms){return{type:18,params:e,returns:t,newline:n,isSlot:o,loc:r}}function Us(e,t,n,o=!0){return{type:19,test:e,consequent:t,alternate:n,newline:o,loc:Ms}}const qs=e=>4===e.type&&e.isStatic,Hs=(e,t)=>e===t||e===Object(r.n)(t);function Gs(e){return Hs(e,"Teleport")?Ki:Hs(e,"Suspense")?Ji:Hs(e,"KeepAlive")?Yi:Hs(e,"BaseTransition")?Qi:void 0}const zs=/^\d|[^\$\w]/,Ws=e=>!zs.test(e),Ks=/[A-Za-z_$\xA0-\uFFFF]/,Js=/[\.\?\w$\xA0-\uFFFF]/,Ys=/\s+[.[]\s*|\s*[.[]\s+/g,Qs=(r.d,e=>{e=e.trim().replace(Ys,e=>e.trim());let t=0,n=[],o=0,r=0,c=null;for(let i=0;i4===e.key.type&&e.key.content===n)}e||i.properties.unshift(t),o=i}else o=Bs(n.helper(ms),[Vs([t]),i]),c&&c.callee===ys&&(c=s[s.length-2]);13===e.type?c?c.arguments[0]=o:e.props=o:c?c.arguments[0]=o:e.arguments[2]=o}function fl(e,t){return`_${t}_${e.replace(/[^\w]/g,(t,n)=>"-"===t?"_":e.charCodeAt(n).toString())}`}function pl(e,{helper:t,removeHelper:n,inSSR:o}){e.isBlock||(e.isBlock=!0,n(ll(o,e.isComponent)),t(Xi),t(ul(o,e.isComponent)))}function hl(e,t){const n=t.options?t.options.compatConfig:t.compatConfig,o=n&&n[e];return"MODE"===e?o||3:o}function ml(e,t){const n=hl("MODE",t),o=hl(e,t);return 3===n?!0===o:!1!==o}function gl(e,t,n,...o){return ml(e,t)}const bl=/&(gt|lt|amp|apos|quot);/g,vl={gt:">",lt:"<",amp:"&",apos:"'",quot:'"'},yl={delimiters:["{{","}}"],getNamespace:()=>0,getTextMode:()=>0,isVoidTag:r.c,isPreTag:r.c,isCustomElement:r.c,decodeEntities:e=>e.replace(bl,(e,t)=>vl[t]),onError:Hi,onWarn:Gi,comments:!1};function _l(e,t={}){const n=function(e,t){const n=Object(r.i)({},yl);let o;for(o in t)n[o]=void 0===t[o]?yl[o]:t[o];return{options:n,column:1,line:1,offset:0,originalSource:e,source:e,inPre:!1,inVPre:!1,onWarn:n.onWarn}}(e,t),o=Al(n);return function(e,t=Ms){return{type:0,children:e,helpers:[],components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:t}}(Ol(n,0,[]),Il(n,o))}function Ol(e,t,n){const o=Vl(n),c=o?o.ns:0,i=[];for(;!Ul(e,t,n);){const s=e.source;let l=void 0;if(0===t||1===t)if(!e.inVPre&&Ll(s,e.options.delimiters[0]))l=Pl(e,t);else if(0===t&&"<"===s[0])if(1===s.length)Dl(e,5,1);else if("!"===s[1])Ll(s,"\x3c!--")?l=xl(e):Ll(s,""===s[2]){Dl(e,14,2),Fl(e,3);continue}if(/[a-z]/i.test(s[2])){Dl(e,23),kl(e,1,o);continue}Dl(e,12,2),l=Cl(e)}else/[a-z]/i.test(s[1])?(l=wl(e,n),ml("COMPILER_NATIVE_TEMPLATE",e)&&l&&"template"===l.tag&&!l.props.some(e=>7===e.type&&El(e.name))&&(l=l.children)):"?"===s[1]?(Dl(e,21,1),l=Cl(e)):Dl(e,12,1);if(l||(l=Rl(e,t)),Object(r.q)(l))for(let e=0;e/.exec(e.source);if(o){o.index<=3&&Dl(e,0),o[1]&&Dl(e,10),n=e.source.slice(4,o.index);const t=e.source.slice(0,o.index);let r=1,c=0;for(;-1!==(c=t.indexOf("\x3c!--",r));)Fl(e,c-r+1),c+4");return-1===r?(o=e.source.slice(n),Fl(e,e.source.length)):(o=e.source.slice(n,r),Fl(e,r+1)),{type:3,content:o,loc:Il(e,t)}}function wl(e,t){const n=e.inPre,o=e.inVPre,r=Vl(t),c=kl(e,0,r),i=e.inPre&&!n,s=e.inVPre&&!o;if(c.isSelfClosing||e.options.isVoidTag(c.tag))return i&&(e.inPre=!1),s&&(e.inVPre=!1),c;t.push(c);const l=e.options.getTextMode(c,r),u=Ol(e,l,t);t.pop();{const t=c.props.find(e=>6===e.type&&"inline-template"===e.name);if(t&&gl("COMPILER_INLINE_TEMPLATE",e,t.loc)){const n=Il(e,c.loc.end);t.value={type:2,content:n.source,loc:n}}}if(c.children=u,ql(e.source,c.tag))kl(e,1,r);else if(Dl(e,24,0,c.loc.start),0===e.source.length&&"script"===c.tag.toLowerCase()){const t=u[0];t&&Ll(t.loc.source,"\x3c!--")&&Dl(e,8)}return c.loc=Il(e,c.loc.start),i&&(e.inPre=!1),s&&(e.inVPre=!1),c}const El=Object(r.L)("if,else,else-if,for,slot");function kl(e,t,n){const o=Al(e),c=/^<\/?([a-z][^\t\r\n\f />]*)/i.exec(e.source),i=c[1],s=e.options.getNamespace(i,n);Fl(e,c[0].length),$l(e);const l=Al(e),u=e.source;e.options.isPreTag(i)&&(e.inPre=!0);let a=Tl(e,t);0===t&&!e.inVPre&&a.some(e=>7===e.type&&"pre"===e.name)&&(e.inVPre=!0,Object(r.i)(e,l),e.source=u,a=Tl(e,t).filter(e=>"v-pre"!==e.name));let d=!1;if(0===e.source.length?Dl(e,9):(d=Ll(e.source,"/>"),1===t&&d&&Dl(e,4),Fl(e,d?2:1)),1===t)return;let f=0;return e.inVPre||("slot"===i?f=2:"template"===i?a.some(e=>7===e.type&&El(e.name))&&(f=3):function(e,t,n){const o=n.options;if(o.isCustomElement(e))return!1;if("component"===e||/^[A-Z]/.test(e)||Gs(e)||o.isBuiltInComponent&&o.isBuiltInComponent(e)||o.isNativeTag&&!o.isNativeTag(e))return!0;for(let e=0;e0&&!Ll(e.source,">")&&!Ll(e.source,"/>");){if(Ll(e.source,"/")){Dl(e,22),Fl(e,1),$l(e);continue}1===t&&Dl(e,3);const r=Nl(e,o);6===r.type&&r.value&&"class"===r.name&&(r.value.content=r.value.content.replace(/\s+/g," ").trim()),0===t&&n.push(r),/^[^\t\r\n\f />]/.test(e.source)&&Dl(e,15),$l(e)}return n}function Nl(e,t){const n=Al(e),o=/^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(e.source)[0];t.has(o)&&Dl(e,2),t.add(o),"="===o[0]&&Dl(e,19);{const t=/["'<]/g;let n;for(;n=t.exec(o);)Dl(e,17,n.index)}Fl(e,o.length);let r=void 0;/^[\t\r\n\f ]*=/.test(e.source)&&($l(e),Fl(e,1),$l(e),r=function(e){const t=Al(e);let n;const o=e.source[0],r='"'===o||"'"===o;if(r){Fl(e,1);const t=e.source.indexOf(o);-1===t?n=Ml(e,e.source.length,4):(n=Ml(e,t,4),Fl(e,1))}else{const t=/^[^\t\r\n\f >]+/.exec(e.source);if(!t)return;const o=/["'<=`]/g;let r;for(;r=o.exec(t[0]);)Dl(e,18,r.index);n=Ml(e,t[0].length,4)}return{content:n,isQuoted:r,loc:Il(e,t)}}(e),r||Dl(e,13));const c=Il(e,n);if(!e.inVPre&&/^(v-[A-Za-z0-9-]|:|\.|@|#)/.test(o)){const t=/(?:^v-([a-z0-9-]+))?(?:(?::|^\.|^@|^#)(\[[^\]]+\]|[^\.]+))?(.+)?$/i.exec(o);let i,s=Ll(o,"."),l=t[1]||(s||Ll(o,":")?"bind":Ll(o,"@")?"on":"slot");if(t[2]){const r="slot"===l,c=o.lastIndexOf(t[2]),s=Il(e,Bl(e,n,c),Bl(e,n,c+t[2].length+(r&&t[3]||"").length));let u=t[2],a=!0;u.startsWith("[")?(a=!1,u.endsWith("]")?u=u.slice(1,u.length-1):(Dl(e,27),u=u.slice(1))):r&&(u+=t[3]||""),i={type:4,content:u,isStatic:a,constType:a?3:0,loc:s}}if(r&&r.isQuoted){const e=r.loc;e.start.offset++,e.start.column++,e.end=Zs(e.start,r.content),e.source=e.source.slice(1,-1)}const u=t[3]?t[3].slice(1).split("."):[];return s&&u.push("prop"),"bind"===l&&i&&u.includes("sync")&&gl("COMPILER_V_BIND_SYNC",e,0,i.loc.source)&&(l="model",u.splice(u.indexOf("sync"),1)),{type:7,name:l,exp:r&&{type:4,content:r.content,isStatic:!1,constType:0,loc:r.loc},arg:i,modifiers:u,loc:c}}return!e.inVPre&&Ll(o,"v-")&&Dl(e,26),{type:6,name:o,value:r&&{type:2,content:r.content,loc:r.loc},loc:c}}function Pl(e,t){const[n,o]=e.options.delimiters,r=e.source.indexOf(o,n.length);if(-1===r)return void Dl(e,25);const c=Al(e);Fl(e,n.length);const i=Al(e),s=Al(e),l=r-n.length,u=e.source.slice(0,l),a=Ml(e,l,t),d=a.trim(),f=a.indexOf(d);f>0&&el(i,u,f);return el(s,u,l-(a.length-d.length-f)),Fl(e,o.length),{type:5,content:{type:4,isStatic:!1,constType:0,content:d,loc:Il(e,i,s)},loc:Il(e,c)}}function Rl(e,t){const n=3===t?["]]>"]:["<",e.options.delimiters[0]];let o=e.source.length;for(let t=0;tr&&(o=r)}const r=Al(e);return{type:2,content:Ml(e,o,t),loc:Il(e,r)}}function Ml(e,t,n){const o=e.source.slice(0,t);return Fl(e,t),2!==n&&3!==n&&o.includes("&")?e.options.decodeEntities(o,4===n):o}function Al(e){const{column:t,line:n,offset:o}=e;return{column:t,line:n,offset:o}}function Il(e,t,n){return{start:t,end:n=n||Al(e),source:e.originalSource.slice(t.offset,n.offset)}}function Vl(e){return e[e.length-1]}function Ll(e,t){return e.startsWith(t)}function Fl(e,t){const{source:n}=e;el(e,n,t),e.source=n.slice(t)}function $l(e){const t=/^[\t\r\n\f ]+/.exec(e.source);t&&Fl(e,t[0].length)}function Bl(e,t,n){return Zs(t,e.originalSource.slice(t.offset,n),n)}function Dl(e,t,n,o=Al(e)){n&&(o.offset+=n,o.column+=n),e.options.onError(zi(t,{start:o,end:o,source:""}))}function Ul(e,t,n){const o=e.source;switch(t){case 0:if(Ll(o,"=0;--e)if(ql(o,n[e].tag))return!0;break;case 1:case 2:{const e=Vl(n);if(e&&ql(o,e.tag))return!0;break}case 3:if(Ll(o,"]]>"))return!0}return!o}function ql(e,t){return Ll(e,"]/.test(e[2+t.length]||">")}function Hl(e,t){!function e(t,n,o=!1){const{children:c}=t,i=c.length;let s=0;for(let t=0;t0){if(e>=2){r.codegenNode.patchFlag="-1",r.codegenNode=n.hoist(r.codegenNode),s++;continue}}else{const e=r.codegenNode;if(13===e.type){const t=Ql(e);if((!t||512===t||1===t)&&Jl(r,n)>=2){const t=Yl(r);t&&(e.props=n.hoist(t))}e.dynamicProps&&(e.dynamicProps=n.hoist(e.dynamicProps))}}}else 12===r.type&&zl(r.content,n)>=2&&(r.codegenNode=n.hoist(r.codegenNode),s++);if(1===r.type){const t=1===r.tagType;t&&n.scopes.vSlot++,e(r,n),t&&n.scopes.vSlot--}else if(11===r.type)e(r,n,1===r.children.length);else if(9===r.type)for(let t=0;t1)for(let r=0;r"_"+Rs[x.helper(e)],replaceNode(e){x.parent.children[x.childIndex]=x.currentNode=e},removeNode(e){const t=x.parent.children,n=e?t.indexOf(e):x.currentNode?x.childIndex:-1;e&&e!==x.currentNode?x.childIndex>n&&(x.childIndex--,x.onNodeRemoved()):(x.currentNode=null,x.onNodeRemoved()),x.parent.children.splice(n,1)},onNodeRemoved:()=>{},addIdentifiers(e){},removeIdentifiers(e){},hoist(e){Object(r.G)(e)&&(e=Fs(e)),x.hoists.push(e);const t=Fs("_hoisted_"+x.hoists.length,!1,e.loc,2);return t.hoisted=e,t},cache:(e,t=!1)=>function(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:Ms}}(x.cached++,e,t)};return x.filters=new Set,x}function Zl(e,t){const n=Xl(e,t);eu(e,n),t.hoistStatic&&Hl(e,n),t.ssr||function(e,t){const{helper:n}=t,{children:o}=e;if(1===o.length){const n=o[0];if(Gl(e,n)&&n.codegenNode){const o=n.codegenNode;13===o.type&&pl(o,t),e.codegenNode=o}else e.codegenNode=n}else if(o.length>1){let o=64;r.e[64];0,e.codegenNode=As(t,n(Wi),void 0,e.children,o+"",void 0,void 0,!0,void 0,!1)}}(e,n),e.helpers=[...n.helpers.keys()],e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.filters=[...n.filters]}function eu(e,t){t.currentNode=e;const{nodeTransforms:n}=t,o=[];for(let c=0;c{n--};for(;nt===e:t=>e.test(t);return(e,o)=>{if(1===e.type){const{props:r}=e;if(3===e.tagType&&r.some(cl))return;const c=[];for(let i=0;i"_"+Rs[e],push(e,t){p.code+=e},indent(){h(++p.indentLevel)},deindent(e=!1){e?--p.indentLevel:h(--p.indentLevel)},newline(){h(p.indentLevel)}};function h(e){p.push("\n"+" ".repeat(e))}return p}(e,t);t.onContextCreated&&t.onContextCreated(n);const{mode:o,push:r,prefixIdentifiers:c,indent:i,deindent:s,newline:l,scopeId:u,ssr:a}=n,d=e.helpers.length>0,f=!c&&"module"!==o;!function(e,t){const{ssr:n,prefixIdentifiers:o,push:r,newline:c,runtimeModuleName:i,runtimeGlobalName:s,ssrRuntimeModuleName:l}=t,u=s,a=e=>`${Rs[e]}: _${Rs[e]}`;if(e.helpers.length>0&&(r(`const _Vue = ${u}\n`),e.hoists.length)){const t=[ts,ns,os,rs,cs].filter(t=>e.helpers.includes(t)).map(a).join(", ");r(`const { ${t} } = _Vue\n`)}(function(e,t){if(!e.length)return;t.pure=!0;const{push:n,newline:o,helper:r,scopeId:c,mode:i}=t;o();for(let r=0;r`${Rs[e]}: _${Rs[e]}`).join(", ")} } = _Vue`),r("\n"),l())),e.components.length&&(ou(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(ou(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),ou(e.filters,"filter",n),l()),e.temps>0){r("let ");for(let t=0;t0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(r("\n"),l()),a||r("return "),e.codegenNode?iu(e.codegenNode,n):r("null"),f&&(s(),r("}")),s(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0}}function ou(e,t,{helper:n,push:o,newline:r,isTS:c}){const i=n("filter"===t?us:"component"===t?is:ls);for(let n=0;n3||!1;t.push("["),n&&t.indent(),cu(e,t,n),n&&t.deindent(),t.push("]")}function cu(e,t,n=!1,o=!0){const{push:c,newline:i}=t;for(let s=0;se||"null")}([c,i,s,l,u]),t),n(")"),d&&n(")");a&&(n(", "),iu(a,t),n(")"))}(e,t);break;case 14:!function(e,t){const{push:n,helper:o,pure:c}=t,i=Object(r.G)(e.callee)?e.callee:o(e.callee);c&&n("/*#__PURE__*/");n(i+"(",e),cu(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){const{push:n,indent:o,deindent:r,newline:c}=t,{properties:i}=e;if(!i.length)return void n("{}",e);const s=i.length>1||!1;n(s?"{":"{ "),s&&o();for(let e=0;e "),(u||l)&&(n("{"),o());s?(u&&n("return "),Object(r.q)(s)?ru(s,t):iu(s,t)):l&&iu(l,t);(u||l)&&(c(),n("}"));a&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){const{test:n,consequent:o,alternate:r,newline:c}=e,{push:i,indent:s,deindent:l,newline:u}=t;if(4===n.type){const e=!Ws(n.content);e&&i("("),su(n,t),e&&i(")")}else i("("),iu(n,t),i(")");c&&s(),t.indentLevel++,c||i(" "),i("? "),iu(o,t),t.indentLevel--,c&&u(),c||i(" "),i(": ");const a=19===r.type;a||t.indentLevel++;iu(r,t),a||t.indentLevel--;c&&l(!0)}(e,t);break;case 20:!function(e,t){const{push:n,helper:o,indent:r,deindent:c,newline:i}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(r(),n(o(xs)+"(-1),"),i());n(`_cache[${e.index}] = `),iu(e.value,t),e.isVNode&&(n(","),i(),n(o(xs)+"(1),"),i(),n(`_cache[${e.index}]`),c());n(")")}(e,t);break;case 21:cu(e.body,t,!0,!1);break;case 22:case 23:case 24:case 25:case 26:case 10:break;default:0}}function su(e,t){const{content:n,isStatic:o}=e;t.push(o?JSON.stringify(n):n,e)}function lu(e,t){for(let n=0;nfunction(e,t,n,o){if(!("else"===t.name||t.exp&&t.exp.content.trim())){const o=t.exp?t.exp.loc:e.loc;n.onError(zi(28,t.loc)),t.exp=Fs("true",!1,o)}0;if("if"===t.name){const r=du(e,t),c={type:9,loc:e.loc,branches:[r]};if(n.replaceNode(c),o)return o(c,r,!0)}else{const r=n.parent.children;let c=r.indexOf(e);for(;c-- >=-1;){const i=r[c];if(!i||2!==i.type||i.content.trim().length){if(i&&9===i.type){"else-if"===t.name&&void 0===i.branches[i.branches.length-1].condition&&n.onError(zi(30,e.loc)),n.removeNode();const r=du(e,t);0,i.branches.push(r);const c=o&&o(i,r,!1);eu(r,n),c&&c(),n.currentNode=null}else n.onError(zi(30,e.loc));break}n.removeNode(i)}}}(e,t,n,(e,t,o)=>{const r=n.parent.children;let c=r.indexOf(e),i=0;for(;c-- >=0;){const e=r[c];e&&9===e.type&&(i+=e.branches.length)}return()=>{if(o)e.codegenNode=fu(t,i,n);else{(function(e){for(;;)if(19===e.type){if(19!==e.alternate.type)return e;e=e.alternate}else 20===e.type&&(e=e.value)}(e.codegenNode)).alternate=fu(t,i+e.branches.length-1,n)}}}));function du(e,t){return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:3!==e.tagType||tl(e,"for")?[e]:e.children,userKey:nl(e,"key")}}function fu(e,t,n){return e.condition?Us(e.condition,pu(e,t,n),Bs(n.helper(os),['""',"true"])):pu(e,t,n)}function pu(e,t,n){const{helper:o}=n,c=Ls("key",Fs(""+t,!1,Ms,2)),{children:i}=e,s=i[0];if(1!==i.length||1!==s.type){if(1===i.length&&11===s.type){const e=s.codegenNode;return dl(e,c,n),e}{let t=64;r.e[64];return As(n,o(Wi),Vs([c]),i,t+"",void 0,void 0,!0,!1,!1,e.loc)}}{const e=s.codegenNode,t=14===(l=e).type&&l.callee===Ns?l.arguments[1].returns:l;return 13===t.type&&pl(t,n),dl(t,c,n),e}var l}const hu=tu("for",(e,t,n)=>{const{helper:o,removeHelper:r}=n;return function(e,t,n,o){if(!t.exp)return void n.onError(zi(31,t.loc));const r=vu(t.exp,n);if(!r)return void n.onError(zi(32,t.loc));const{addIdentifiers:c,removeIdentifiers:i,scopes:s}=n,{source:l,value:u,key:a,index:d}=r,f={type:11,loc:t.loc,source:l,valueAlias:u,keyAlias:a,objectIndexAlias:d,parseResult:r,children:il(e)?e.children:[e]};n.replaceNode(f),s.vFor++;const p=o&&o(f);return()=>{s.vFor--,p&&p()}}(e,t,n,t=>{const c=Bs(o(ds),[t.source]),i=il(e),s=tl(e,"memo"),l=nl(e,"key"),u=l&&(6===l.type?Fs(l.value.content,!0):l.exp),a=l?Ls("key",u):null,d=4===t.source.type&&t.source.constType>0,f=d?64:l?128:256;return t.codegenNode=As(n,o(Wi),void 0,c,f+"",void 0,void 0,!0,!d,!1,e.loc),()=>{let l;const{children:f}=t;const p=1!==f.length||1!==f[0].type,h=sl(e)?e:i&&1===e.children.length&&sl(e.children[0])?e.children[0]:null;if(h?(l=h.codegenNode,i&&a&&dl(l,a,n)):p?l=As(n,o(Wi),a?Vs([a]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(l=f[0].codegenNode,i&&a&&dl(l,a,n),l.isBlock!==!d&&(l.isBlock?(r(Xi),r(ul(n.inSSR,l.isComponent))):r(ll(n.inSSR,l.isComponent))),l.isBlock=!d,l.isBlock?(o(Xi),o(ul(n.inSSR,l.isComponent))):o(ll(n.inSSR,l.isComponent))),s){const e=Ds(_u(t.parseResult,[Fs("_cached")]));e.body={type:21,body:[$s(["const _memo = (",s.exp,")"]),$s(["if (_cached",...u?[" && _cached.key === ",u]:[],` && ${n.helperString(Ps)}(_cached, _memo)) return _cached`]),$s(["const _item = ",l]),Fs("_item.memo = _memo"),Fs("return _item")],loc:Ms},c.arguments.push(e,Fs("_cache"),Fs(String(n.cached++)))}else c.arguments.push(Ds(_u(t.parseResult),l,!0))}})});const mu=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,gu=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,bu=/^\(|\)$/g;function vu(e,t){const n=e.loc,o=e.content,r=o.match(mu);if(!r)return;const[,c,i]=r,s={source:yu(n,i.trim(),o.indexOf(i,c.length)),value:void 0,key:void 0,index:void 0};let l=c.trim().replace(bu,"").trim();const u=c.indexOf(l),a=l.match(gu);if(a){l=l.replace(gu,"").trim();const e=a[1].trim();let t;if(e&&(t=o.indexOf(e,u+l.length),s.key=yu(n,e,t)),a[2]){const r=a[2].trim();r&&(s.index=yu(n,r,o.indexOf(r,s.key?t+e.length:u+l.length)))}}return l&&(s.value=yu(n,l,u)),s}function yu(e,t,n){return Fs(t,!1,Xs(e,n,t.length))}function _u({value:e,key:t,index:n},o=[]){return function(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map((e,t)=>e||Fs("_".repeat(t+1),!1))}([e,t,n,...o])}const Ou=Fs("undefined",!1),ju=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){const n=tl(e,"slot");if(n)return n.exp,t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},Su=(e,t,n)=>Ds(e,t,!1,!0,t.length?t[0].loc:n);function xu(e,t,n=Su){t.helper(Es);const{children:o,loc:r}=e,c=[],i=[];let s=t.scopes.vSlot>0||t.scopes.vFor>0;const l=tl(e,"slot",!0);if(l){const{arg:e,exp:t}=l;e&&!qs(e)&&(s=!0),c.push(Ls(e||Fs("default",!0),n(t,o,r)))}let u=!1,a=!1;const d=[],f=new Set;for(let e=0;e{const c=n(e,o,r);return t.compatConfig&&(c.isNonScopedSlot=!0),Ls("default",c)};u?d.length&&d.some(e=>function e(t){return 2!==t.type&&12!==t.type||(2===t.type?!!t.content.trim():e(t.content))}(e))&&(a?t.onError(zi(39,d[0].loc)):c.push(e(void 0,d))):c.push(e(void 0,o))}const p=s?2:function e(t){for(let n=0;nfunction(){if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;const{tag:n,props:o}=e,c=1===e.tagType;let i=c?function(e,t,n=!1){let{tag:o}=e;const r=Pu(o),c=nl(e,"is");if(c)if(r||ml("COMPILER_IS_ON_ELEMENT",t)){const e=6===c.type?c.value&&Fs(c.value.content,!0):c.exp;if(e)return Bs(t.helper(ss),[e])}else 6===c.type&&c.value.content.startsWith("vue:")&&(o=c.value.content.slice(4));const i=!r&&tl(e,"is");if(i&&i.exp)return Bs(t.helper(ss),[i.exp]);const s=Gs(o)||t.isBuiltInComponent(o);if(s)return n||t.helper(s),s;return t.helper(is),t.components.add(o),fl(o,"component")}(e,t):`"${n}"`;let s,l,u,a,d,f,p=0,h=Object(r.y)(i)&&i.callee===ss||i===Ki||i===Ji||!c&&("svg"===n||"foreignObject"===n);if(o.length>0){const n=ku(e,t);s=n.props,p=n.patchFlag,d=n.dynamicPropNames;const o=n.directives;f=o&&o.length?Is(o.map(e=>function(e,t){const n=[],o=wu.get(e);o?n.push(t.helperString(o)):(t.helper(ls),t.directives.add(e.name),n.push(fl(e.name,"directive")));const{loc:r}=e;e.exp&&n.push(e.exp);e.arg&&(e.exp||n.push("void 0"),n.push(e.arg));if(Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));const t=Fs("true",!1,r);n.push(Vs(e.modifiers.map(e=>Ls(e,t)),r))}return Is(n,e.loc)}(e,t))):void 0,n.shouldUseBlock&&(h=!0)}if(e.children.length>0){i===Yi&&(h=!0,p|=1024);if(c&&i!==Ki&&i!==Yi){const{slots:n,hasDynamicSlots:o}=xu(e,t);l=n,o&&(p|=1024)}else if(1===e.children.length&&i!==Ki){const n=e.children[0],o=n.type,r=5===o||8===o;r&&0===zl(n,t)&&(p|=1),l=r||2===o?n:e.children}else l=e.children}0!==p&&(u=String(p),d&&d.length&&(a=function(e){let t="[";for(let n=0,o=e.length;n0;let p=!1,h=0,m=!1,g=!1,b=!1,v=!1,y=!1,_=!1;const O=[],j=({key:e,value:n})=>{if(qs(e)){const o=e.content,c=Object(r.z)(o);if(l||!c||"onclick"===o.toLowerCase()||"onUpdate:modelValue"===o||Object(r.C)(o)||(v=!0),c&&Object(r.C)(o)&&(_=!0),20===n.type||(4===n.type||8===n.type)&&zl(n,t)>0)return;"ref"===o?m=!0:"class"===o?g=!0:"style"===o?b=!0:"key"===o||O.includes(o)||O.push(o),!l||"class"!==o&&"style"!==o||O.includes(o)||O.push(o)}else y=!0};for(let s=0;s0&&u.push(Ls(Fs("ref_for",!0),Fs("true")))),"is"===n&&(Pu(c)||o&&o.content.startsWith("vue:")||ml("COMPILER_IS_ON_ELEMENT",t)))continue;u.push(Ls(Fs(n,!0,Xs(e,0,n.length)),Fs(o?o.content:"",r,o?o.loc:e)))}else{const{name:n,arg:s,exp:m,loc:g}=h,b="bind"===n,v="on"===n;if("slot"===n){l||t.onError(zi(40,g));continue}if("once"===n||"memo"===n)continue;if("is"===n||b&&ol(s,"is")&&(Pu(c)||ml("COMPILER_IS_ON_ELEMENT",t)))continue;if(v&&o)continue;if((b&&ol(s,"key")||v&&f&&ol(s,"vue:before-update"))&&(p=!0),b&&ol(s,"ref")&&t.scopes.vFor>0&&u.push(Ls(Fs("ref_for",!0),Fs("true"))),!s&&(b||v)){if(y=!0,m)if(u.length&&(a.push(Vs(Tu(u),i)),u=[]),b){if(ml("COMPILER_V_BIND_OBJECT_ORDER",t)){a.unshift(m);continue}a.push(m)}else a.push({type:14,loc:g,callee:t.helper(_s),arguments:[m]});else t.onError(zi(b?34:35,g));continue}const _=t.directiveTransforms[n];if(_){const{props:n,needRuntime:c}=_(h,e,t);!o&&n.forEach(j),u.push(...n),c&&(d.push(h),Object(r.H)(c)&&wu.set(h,c))}else Object(r.r)(n)||(d.push(h),f&&(p=!0))}}let S=void 0;if(a.length?(u.length&&a.push(Vs(Tu(u),i)),S=a.length>1?Bs(t.helper(ms),a,i):a[0]):u.length&&(S=Vs(Tu(u),i)),y?h|=16:(g&&!l&&(h|=2),b&&!l&&(h|=4),O.length&&(h|=8),v&&(h|=32)),p||0!==h&&32!==h||!(m||_||d.length>0)||(h|=512),!t.inSSR&&S)switch(S.type){case 15:let e=-1,n=-1,o=!1;for(let t=0;t{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))})(e=>e.replace(Ru,(e,t)=>t?t.toUpperCase():"")),Au=(e,t)=>{if(sl(e)){const{children:n,loc:o}=e,{slotName:r,slotProps:c}=function(e,t){let n='"default"',o=void 0;const r=[];for(let t=0;t0){const{props:n,directives:c}=ku(e,t,r);o=n,c.length&&t.onError(zi(36,c[0].loc))}return{slotName:n,slotProps:o}}(e,t),i=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"];let s=2;c&&(i[2]=c,s=3),n.length&&(i[3]=Ds([],n,!1,!1,o),s=4),t.scopeId&&!t.slotted&&(s=5),i.splice(s),e.codegenNode=Bs(t.helper(fs),i,o)}};const Iu=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,Vu=(e,t,n,o)=>{const{loc:c,modifiers:i,arg:s}=e;let l;if(e.exp||i.length||n.onError(zi(35,c)),4===s.type)if(s.isStatic){let e=s.content;e.startsWith("vue:")&&(e="vnode-"+e.slice(4)),l=Fs(Object(r.S)(Object(r.f)(e)),!0,s.loc)}else l=$s([n.helperString(Ss)+"(",s,")"]);else l=s,l.children.unshift(n.helperString(Ss)+"("),l.children.push(")");let u=e.exp;u&&!u.content.trim()&&(u=void 0);let a=n.cacheHandlers&&!u&&!n.inVOnce;if(u){const e=Qs(u.content),t=!(e||Iu.test(u.content)),n=u.content.includes(";");0,(t||a&&e)&&(u=$s([`${t?"$event":"(...args)"} => ${n?"{":"("}`,u,n?"}":")"]))}let d={props:[Ls(l,u||Fs("() => {}",!1,c))]};return o&&(d=o(d)),a&&(d.props[0].value=n.cache(d.props[0].value)),d.props.forEach(e=>e.key.isHandlerKey=!0),d},Lu=(e,t,n)=>{const{exp:o,modifiers:c,loc:i}=e,s=e.arg;return 4!==s.type?(s.children.unshift("("),s.children.push(') || ""')):s.isStatic||(s.content=s.content+' || ""'),c.includes("camel")&&(4===s.type?s.isStatic?s.content=Object(r.f)(s.content):s.content=`${n.helperString(Os)}(${s.content})`:(s.children.unshift(n.helperString(Os)+"("),s.children.push(")"))),n.inSSR||(c.includes("prop")&&Fu(s,"."),c.includes("attr")&&Fu(s,"^")),!o||4===o.type&&!o.content.trim()?(n.onError(zi(34,i)),{props:[Ls(s,Fs("",!0,i))]}):{props:[Ls(s,o)]}},Fu=(e,t)=>{4===e.type?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},$u=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{const n=e.children;let o=void 0,r=!1;for(let e=0;e7===e.type&&!t.directiveTransforms[e.name])||"template"===e.tag)))for(let e=0;e{if(1===e.type&&tl(e,"once",!0)){if(Bu.has(e)||t.inVOnce)return;return Bu.add(e),t.inVOnce=!0,t.helper(xs),()=>{t.inVOnce=!1;const e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0))}}},Uu=(e,t,n)=>{const{exp:o,arg:r}=e;if(!o)return n.onError(zi(41,e.loc)),qu();const c=o.loc.source,i=4===o.type?o.content:c;n.bindingMetadata[c];if(!i.trim()||!Qs(i))return n.onError(zi(42,o.loc)),qu();const s=r||Fs("modelValue",!0),l=r?qs(r)?"onUpdate:"+r.content:$s(['"onUpdate:" + ',r]):"onUpdate:modelValue";let u;u=$s([(n.isTS?"($event: any)":"$event")+" => ((",o,") = $event)"]);const a=[Ls(s,e.exp),Ls(l,u)];if(e.modifiers.length&&1===t.tagType){const t=e.modifiers.map(e=>(Ws(e)?e:JSON.stringify(e))+": true").join(", "),n=r?qs(r)?r.content+"Modifiers":$s([r,' + "Modifiers"']):"modelModifiers";a.push(Ls(n,Fs(`{ ${t} }`,!1,e.loc,2)))}return qu(a)};function qu(e=[]){return{props:e}}const Hu=/[\w).+\-_$\]]/,Gu=(e,t)=>{ml("COMPILER_FILTER",t)&&(5===e.type&&zu(e.content,t),1===e.type&&e.props.forEach(e=>{7===e.type&&"for"!==e.name&&e.exp&&zu(e.exp,t)}))};function zu(e,t){if(4===e.type)Wu(e,t);else for(let n=0;n=0&&(e=n.charAt(t)," "===e);t--);e&&Hu.test(e)||(a=!0)}}else void 0===i?(h=c+1,i=n.slice(0,c).trim()):g();function g(){m.push(n.slice(h,c).trim()),h=c+1}if(void 0===i?i=n.slice(0,c).trim():0!==h&&g(),m.length){for(c=0;c{if(1===e.type){const n=tl(e,"memo");if(!n||Ju.has(e))return;return Ju.add(e),()=>{const o=e.codegenNode||t.currentNode.codegenNode;o&&13===o.type&&(1!==e.tagType&&pl(o,t),e.codegenNode=Bs(t.helper(Ns),[n.exp,Ds(void 0,o),"_cache",String(t.cached++)]))}}};function Qu(e,t={}){const n=t.onError||Hi,o="module"===t.mode;!0===t.prefixIdentifiers?n(zi(46)):o&&n(zi(47));t.cacheHandlers&&n(zi(48)),t.scopeId&&!o&&n(zi(49));const c=Object(r.G)(e)?_l(e,t):e,[i,s]=[[Du,au,Yu,hu,Gu,Au,Eu,ju,$u],{on:Vu,bind:Lu,model:Uu}];return Zl(c,Object(r.i)({},t,{prefixIdentifiers:!1,nodeTransforms:[...i,...t.nodeTransforms||[]],directiveTransforms:Object(r.i)({},s,t.directiveTransforms||{})})),nu(c,Object(r.i)({},t,{prefixIdentifiers:!1}))}const Xu=Symbol(""),Zu=Symbol(""),ea=Symbol(""),ta=Symbol(""),na=Symbol(""),oa=Symbol(""),ra=Symbol(""),ca=Symbol(""),ia=Symbol(""),sa=Symbol("");var la;let ua;la={[Xu]:"vModelRadio",[Zu]:"vModelCheckbox",[ea]:"vModelText",[ta]:"vModelSelect",[na]:"vModelDynamic",[oa]:"withModifiers",[ra]:"withKeys",[ca]:"vShow",[ia]:"Transition",[sa]:"TransitionGroup"},Object.getOwnPropertySymbols(la).forEach(e=>{Rs[e]=la[e]});const aa=Object(r.L)("style,iframe,script,noscript",!0),da={isVoidTag:r.I,isNativeTag:e=>Object(r.u)(e)||Object(r.D)(e),isPreTag:e=>"pre"===e,decodeEntities:function(e,t=!1){return ua||(ua=document.createElement("div")),t?(ua.innerHTML=`
`,ua.children[0].getAttribute("foo")):(ua.innerHTML=e,ua.textContent)},isBuiltInComponent:e=>Hs(e,"Transition")?ia:Hs(e,"TransitionGroup")?sa:void 0,getNamespace(e,t){let n=t?t.ns:0;if(t&&2===n)if("annotation-xml"===t.tag){if("svg"===e)return 1;t.props.some(e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content))&&(n=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(n=0);else t&&1===n&&("foreignObject"!==t.tag&&"desc"!==t.tag&&"title"!==t.tag||(n=0));if(0===n){if("svg"===e)return 1;if("math"===e)return 2}return n},getTextMode({tag:e,ns:t}){if(0===t){if("textarea"===e||"title"===e)return 1;if(aa(e))return 2}return 0}},fa=(e,t)=>{const n=Object(r.P)(e);return Fs(JSON.stringify(n),!1,t,3)};function pa(e,t){return zi(e,t)}const ha=Object(r.L)("passive,once,capture"),ma=Object(r.L)("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),ga=Object(r.L)("left,right"),ba=Object(r.L)("onkeyup,onkeydown,onkeypress",!0),va=(e,t)=>qs(e)&&"onclick"===e.content.toLowerCase()?Fs(t,!0):4!==e.type?$s(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e;const ya=(e,t)=>{1!==e.type||0!==e.tagType||"script"!==e.tag&&"style"!==e.tag||(t.onError(pa(60,e.loc)),t.removeNode())},_a=[e=>{1===e.type&&e.props.forEach((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:Fs("style",!0,t.loc),exp:fa(t.value.content,t.loc),modifiers:[],loc:t.loc})})}],Oa={cloak:()=>({props:[]}),html:(e,t,n)=>{const{exp:o,loc:r}=e;return o||n.onError(pa(50,r)),t.children.length&&(n.onError(pa(51,r)),t.children.length=0),{props:[Ls(Fs("innerHTML",!0,r),o||Fs("",!0))]}},text:(e,t,n)=>{const{exp:o,loc:r}=e;return o||n.onError(pa(52,r)),t.children.length&&(n.onError(pa(53,r)),t.children.length=0),{props:[Ls(Fs("textContent",!0),o?Bs(n.helperString(hs),[o],r):Fs("",!0))]}},model:(e,t,n)=>{const o=Uu(e,t,n);if(!o.props.length||1===t.tagType)return o;e.arg&&n.onError(pa(55,e.arg.loc));const{tag:r}=t,c=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||c){let i=ea,s=!1;if("input"===r||c){const o=nl(t,"type");if(o){if(7===o.type)i=na;else if(o.value)switch(o.value.content){case"radio":i=Xu;break;case"checkbox":i=Zu;break;case"file":s=!0,n.onError(pa(56,e.loc))}}else(function(e){return e.props.some(e=>!(7!==e.type||"bind"!==e.name||e.arg&&4===e.arg.type&&e.arg.isStatic))})(t)&&(i=na)}else"select"===r&&(i=ta);s||(o.needRuntime=n.helper(i))}else n.onError(pa(54,e.loc));return o.props=o.props.filter(e=>!(4===e.key.type&&"modelValue"===e.key.content)),o},on:(e,t,n)=>Vu(e,0,n,t=>{const{modifiers:o}=e;if(!o.length)return t;let{key:c,value:i}=t.props[0];const{keyModifiers:s,nonKeyModifiers:l,eventOptionModifiers:u}=((e,t,n,o)=>{const r=[],c=[],i=[];for(let o=0;o{const{exp:o,loc:r}=e;return o||n.onError(pa(58,r)),{props:[],needRuntime:n.helper(ca)}}};const ja=Object.create(null);Hr((function(e,t){if(!Object(r.G)(e)){if(!e.nodeType)return r.d;e=e.innerHTML}const n=e,c=ja[n];if(c)return c;if("#"===e[0]){const t=document.querySelector(e);0,e=t?t.innerHTML:""}const{code:i}=function(e,t={}){return Qu(e,Object(r.i)({},da,t,{nodeTransforms:[ya,..._a,...t.nodeTransforms||[]],directiveTransforms:Object(r.i)({},Oa,t.directiveTransforms||{}),transformHoist:null}))}(e,Object(r.i)({hoistStatic:!0,onError:void 0,onWarn:r.d},t)),s=new Function("Vue",i)(o);return s._rc=!0,ja[n]=s}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=(e,t)=>{const n=e.__vccOpts||e;for(const[e,o]of t)n[e]=o;return n}},function(e,t,n){"use strict";var o=n(1),r=["id"],c=["onClick"],i=["innerHTML"];var s=n(8),l={name:"VueSimpleContextMenu",props:{elementId:{type:String,required:!0},options:{type:Array,required:!0}},emits:["menu-closed","option-clicked"],directives:{"click-outside":n.n(s).a.directive},data:function(){return{item:null,menuHeight:null,menuWidth:null}},methods:{showMenu:function(e,t){this.item=t;var n=document.getElementById(this.elementId);n&&(this.menuWidth&&this.menuHeight||(n.style.visibility="hidden",n.style.display="block",this.menuWidth=n.offsetWidth,this.menuHeight=n.offsetHeight,n.removeAttribute("style")),this.menuWidth+e.pageX>=window.innerWidth?n.style.left=e.pageX-this.menuWidth+2+"px":n.style.left=e.pageX-2+"px",this.menuHeight+e.pageY>=window.innerHeight?n.style.top=e.pageY-this.menuHeight+2+"px":n.style.top=e.pageY-2+"px",n.classList.add("vue-simple-context-menu--active"))},hideContextMenu:function(){var e=document.getElementById(this.elementId);e&&(e.classList.remove("vue-simple-context-menu--active"),this.$emit("menu-closed"))},onClickOutside:function(){this.hideContextMenu()},optionClicked:function(e){this.hideContextMenu(),this.$emit("option-clicked",{item:this.item,option:e})},onEscKeyRelease:function(e){27===e.keyCode&&this.hideContextMenu()}},mounted:function(){document.body.addEventListener("keyup",this.onEscKeyRelease)},beforeUnmount:function(){document.removeEventListener("keyup",this.onEscKeyRelease)}},u=(n(10),n(2));const a=n.n(u)()(l,[["render",function(e,t,n,s,l,u){var a=Object(o.k)("click-outside");return Object(o.h)(),Object(o.c)("div",null,[Object(o.m)((Object(o.h)(),Object(o.c)("ul",{id:n.elementId,class:"vue-simple-context-menu"},[(Object(o.h)(!0),Object(o.c)(o.a,null,Object(o.i)(n.options,(function(e,t){return Object(o.h)(),Object(o.c)("li",{key:t,onClick:Object(o.n)((function(t){return u.optionClicked(e)}),["stop"]),class:Object(o.g)(["vue-simple-context-menu__item",[e.class,"divider"===e.type?"vue-simple-context-menu__divider":""]])},[Object(o.d)("span",{innerHTML:e.name},null,8,i)],10,c)})),128))],8,r)),[[a,u.onClickOutside]])])}]]);t.a=a},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";(function(e){var o=n(3);var r={install:function e(t){e.installed||(e.installed=!0,t.component("VueSimpleContextMenu",o.a))}},c=null;"undefined"!=typeof window?c=window.Vue:void 0!==e&&(c=e.Vue),c&&c.use(r),t.a=o.a}).call(this,n(4))},function(e,t,n){var o,r,c,i,s,l,u,a;e.exports=(o="__v-click-outside",r="undefined"!=typeof window,c="undefined"!=typeof navigator,i=r&&("ontouchstart"in window||c&&navigator.msMaxTouchPoints>0)?["touchstart"]:["click"],s=function(e){var t=e.event,n=e.handler;(0,e.middleware)(t)&&n(t)},l=function(e,t){var n=function(e){var t="function"==typeof e;if(!t&&"object"!=typeof e)throw new Error("v-click-outside: Binding value must be a function or an object");return{handler:t?e:e.handler,middleware:e.middleware||function(e){return e},events:e.events||i,isActive:!(!1===e.isActive),detectIframe:!(!1===e.detectIframe),capture:Boolean(e.capture)}}(t.value),r=n.handler,c=n.middleware,l=n.detectIframe,u=n.capture;if(n.isActive){if(e[o]=n.events.map((function(t){return{event:t,srcTarget:document.documentElement,handler:function(t){return function(e){var t=e.el,n=e.event,o=e.handler,r=e.middleware,c=n.path||n.composedPath&&n.composedPath();(c?c.indexOf(t)<0:!t.contains(n.target))&&s({event:n,handler:o,middleware:r})}({el:e,event:t,handler:r,middleware:c})},capture:u}})),l){var a={event:"blur",srcTarget:window,handler:function(t){return function(e){var t=e.el,n=e.event,o=e.handler,r=e.middleware;setTimeout((function(){var e=document.activeElement;e&&"IFRAME"===e.tagName&&!t.contains(e)&&s({event:n,handler:o,middleware:r})}),0)}({el:e,event:t,handler:r,middleware:c})},capture:u};e[o]=[].concat(e[o],[a])}e[o].forEach((function(t){var n=t.event,r=t.srcTarget,c=t.handler;return setTimeout((function(){e[o]&&r.addEventListener(n,c,u)}),0)}))}},u=function(e){(e[o]||[]).forEach((function(e){return e.srcTarget.removeEventListener(e.event,e.handler,e.capture)})),delete e[o]},{install:function(e){e.directive("click-outside",a)},directive:a=r?{beforeMount:l,updated:function(e,t){var n=t.value,o=t.oldValue;JSON.stringify(n)!==JSON.stringify(o)&&(u(e),l(e,{value:n}))},unmounted:u}:{}})},function(e,t,n){"use strict";n(5)},function(e,t,n){"use strict";n(6)},function(e,t,n){"use strict";n.r(t);var o=n(1),r={id:"app"},c=Object(o.e)('

vue-simple-context-menu

To install:
yarn add vue-simple-context-menu

',4),i={class:"container pt-2 pb-4"},s={class:"row"},l={class:"col-lg-6 mb-4 mb-lg-0"},u=Object(o.d)("p",null,"Right click on an item below.",-1),a={class:"list-group"},d=["onContextmenu"],f={class:"col-lg-6"},p=Object(o.d)("p",null,"Left click on an item below.",-1),h={class:"list-group"},m=["onClick"];var g={name:"app",data:function(){return{itemArray1:[{name:"Jim",job:"Salesman"},{name:"Dwight",job:"Assistant to the Regional Manager"},{name:"Pam",job:"Receptionist"}],itemArray2:[{name:"Leslie",job:"Deputy Director"},{name:"Ron",job:"Parks Director"},{name:"Andy",job:"Shoeshiner"}],optionsArray1:[{name:"Duplicate",slug:"duplicate"},{type:"divider"},{name:"Edit",slug:"edit"},{name:"Delete",slug:"delete"}],optionsArray2:[{name:"Add Star",slug:"add-star",class:"my-custom-class"},{name:"Remove Star",slug:"remove-star"}]}},methods:{handleClick1:function(e,t){this.$refs.vueSimpleContextMenu1.showMenu(e,t)},handleClick2:function(e,t){this.$refs.vueSimpleContextMenu2.showMenu(e,t)},optionClicked1:function(e){window.alert(JSON.stringify(e))},optionClicked2:function(e){window.alert(JSON.stringify(e))}}},b=(n(9),n(2));var v=n.n(b)()(g,[["render",function(e,t,n,g,b,v){var y=Object(o.j)("vue-simple-context-menu");return Object(o.h)(),Object(o.c)("div",r,[c,Object(o.d)("div",i,[Object(o.d)("div",s,[Object(o.d)("div",l,[u,Object(o.d)("div",a,[(Object(o.h)(!0),Object(o.c)(o.a,null,Object(o.i)(b.itemArray1,(function(e,t){return Object(o.h)(),Object(o.c)("div",{key:t,onContextmenu:Object(o.n)((function(t){return v.handleClick1(t,e)}),["prevent","stop"]),class:"list-group-item list-group-item-action"},Object(o.l)(e.name),41,d)})),128))])]),Object(o.d)("div",f,[p,Object(o.d)("div",h,[(Object(o.h)(!0),Object(o.c)(o.a,null,Object(o.i)(b.itemArray2,(function(e,t){return Object(o.h)(),Object(o.c)("div",{key:t,onClick:Object(o.n)((function(t){return v.handleClick2(t,e)}),["prevent","stop"]),class:"list-group-item list-group-item-action"},Object(o.l)(e.name),9,m)})),128))])])])]),Object(o.f)(y,{"element-id":"myFirstMenu",options:b.optionsArray1,ref:"vueSimpleContextMenu1",onOptionClicked:v.optionClicked1},null,8,["options","onOptionClicked"]),Object(o.f)(y,{"element-id":"mySecondMenu",options:b.optionsArray2,ref:"vueSimpleContextMenu2",onOptionClicked:v.optionClicked2},null,8,["options","onOptionClicked"])])}]]),y=n(7),_=Object(o.b)(v);_.component("vue-simple-context-menu",y.a),_.mount("#app")}]); \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 90026b6..2153477 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,20 +1,24 @@ + + + + + + + vue-simple-context-menu + + - - - - - - - vue-simple-context-menu - - - - -
- - + +
+ diff --git a/docs/main.css b/docs/main.css index 397f28d..fb4a74d 100644 --- a/docs/main.css +++ b/docs/main.css @@ -1,5 +1,5 @@ @import url(https://fonts.googleapis.com/css?family=Muli:400,700); html{width:100%;font-size:18px;color:#333}body{margin:0;height:100%;height:100vh;width:100%;font-family:"Muli",sans-serif}#app{height:100%;height:100vh;width:100%;line-height:1.5}.code-text{background:#eee;border:1px solid #ddd;padding:10px 20px;border-radius:4px;margin-bottom:20px;text-align:center}@media(min-width: 992px){.code-text{margin-bottom:0}}.btn{text-transform:uppercase;font-weight:bold}textarea{min-height:175px}.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media(max-width: 500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}} -.vue-simple-context-menu{top:0;left:0;margin:0;padding:0;display:none;list-style:none;position:absolute;z-index:1000000;background-color:#ecf0f1;border-bottom-width:0px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;box-shadow:0 3px 6px 0 rgba(51,51,51,.2);border-radius:4px}.vue-simple-context-menu--active{display:block}.vue-simple-context-menu__item{display:flex;color:#333;cursor:pointer;padding:5px 15px;align-items:center}.vue-simple-context-menu__item:hover{background-color:#007aff;color:#fff}.vue-simple-context-menu__divider{box-sizing:content-box;height:2px;background-color:#c0cdd1;padding:4px 0;background-clip:content-box;pointer-events:none}.vue-simple-context-menu li:first-of-type{margin-top:4px}.vue-simple-context-menu li:last-of-type{margin-bottom:4px} +.vue-simple-context-menu{background-color:#ecf0f1;border-bottom-width:0px;border-radius:4px;box-shadow:0 3px 6px 0 rgba(51,51,51,.2);display:none;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;left:0;list-style:none;margin:0;padding:0;position:absolute;top:0;z-index:1000000}.vue-simple-context-menu--active{display:block}.vue-simple-context-menu__item{align-items:center;color:#333;cursor:pointer;display:flex;padding:5px 15px}.vue-simple-context-menu__item:hover{background-color:#007aff;color:#fff}.vue-simple-context-menu__divider{background-clip:content-box;background-color:#c0cdd1;box-sizing:content-box;height:2px;padding:4px 0;pointer-events:none}.vue-simple-context-menu li:first-of-type{margin-top:4px}.vue-simple-context-menu li:last-of-type{margin-bottom:4px} /*# sourceMappingURL=main.css.map*/ \ No newline at end of file diff --git a/docs/main.css.map b/docs/main.css.map index 6dec3ed..b85d373 100644 --- a/docs/main.css.map +++ b/docs/main.css.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///./example/App.vue","webpack:///./src/vue-simple-context-menu.vue"],"names":[],"mappings":";AAAA,KAAK,WAAW,eAAe,WAAW,KAAK,SAAS,YAAY,aAAa,WAAW,8BAA8B,KAAK,YAAY,aAAa,WAAW,gBAAgB,WAAW,gBAAgB,sBAAsB,kBAAkB,kBAAkB,mBAAmB,kBAAkB,yBAAyB,WAAW,iBAAiB,KAAK,yBAAyB,iBAAiB,SAAS,iBAAiB,+BAA+B,yCAAyC,wBAAwB,QAAQ,oBAAoB,QAAQ,yBAAyB,QAAQ,yBAAyB,yBAAyB,+BAA+B,eAAe,yBAAyB,0C;ACAzsB,yBAAyB,MAAM,OAAO,SAAS,UAAU,aAAa,gBAAgB,kBAAkB,gBAAgB,yBAAyB,wBAAwB,oJAAoJ,yCAAyC,kBAAkB,iCAAiC,cAAc,+BAA+B,aAAa,WAAW,eAAe,iBAAiB,mBAAmB,qCAAqC,yBAAyB,WAAW,kCAAkC,uBAAuB,WAAW,yBAAyB,cAAc,4BAA4B,oBAAoB,0CAA0C,eAAe,yCAAyC,kB","file":"main.css","sourcesContent":["html{width:100%;font-size:18px;color:#333}body{margin:0;height:100%;height:100vh;width:100%;font-family:\"Muli\",sans-serif}#app{height:100%;height:100vh;width:100%;line-height:1.5}.code-text{background:#eee;border:1px solid #ddd;padding:10px 20px;border-radius:4px;margin-bottom:20px;text-align:center}@media(min-width: 992px){.code-text{margin-bottom:0}}.btn{text-transform:uppercase;font-weight:bold}textarea{min-height:175px}.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media(max-width: 500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}",".vue-simple-context-menu{top:0;left:0;margin:0;padding:0;display:none;list-style:none;position:absolute;z-index:1000000;background-color:#ecf0f1;border-bottom-width:0px;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",\"Roboto\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Fira Sans\",\"Droid Sans\",\"Helvetica Neue\",sans-serif;box-shadow:0 3px 6px 0 rgba(51,51,51,.2);border-radius:4px}.vue-simple-context-menu--active{display:block}.vue-simple-context-menu__item{display:flex;color:#333;cursor:pointer;padding:5px 15px;align-items:center}.vue-simple-context-menu__item:hover{background-color:#007aff;color:#fff}.vue-simple-context-menu__divider{box-sizing:content-box;height:2px;background-color:#c0cdd1;padding:4px 0;background-clip:content-box;pointer-events:none}.vue-simple-context-menu li:first-of-type{margin-top:4px}.vue-simple-context-menu li:last-of-type{margin-bottom:4px}"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack:///./example/App.vue","webpack:///./src/vue-simple-context-menu.vue"],"names":[],"mappings":";AAAA,KAAK,WAAW,eAAe,WAAW,KAAK,SAAS,YAAY,aAAa,WAAW,8BAA8B,KAAK,YAAY,aAAa,WAAW,gBAAgB,WAAW,gBAAgB,sBAAsB,kBAAkB,kBAAkB,mBAAmB,kBAAkB,yBAAyB,WAAW,iBAAiB,KAAK,yBAAyB,iBAAiB,SAAS,iBAAiB,+BAA+B,yCAAyC,wBAAwB,QAAQ,oBAAoB,QAAQ,yBAAyB,QAAQ,yBAAyB,yBAAyB,+BAA+B,eAAe,yBAAyB,0C;ACAzsB,yBAAyB,yBAAyB,wBAAwB,kBAAkB,yCAAyC,aAAa,oJAAoJ,OAAO,gBAAgB,SAAS,UAAU,kBAAkB,MAAM,gBAAgB,iCAAiC,cAAc,+BAA+B,mBAAmB,WAAW,eAAe,aAAa,iBAAiB,qCAAqC,yBAAyB,WAAW,kCAAkC,4BAA4B,yBAAyB,uBAAuB,WAAW,cAAc,oBAAoB,0CAA0C,eAAe,yCAAyC,kB","file":"main.css","sourcesContent":["html{width:100%;font-size:18px;color:#333}body{margin:0;height:100%;height:100vh;width:100%;font-family:\"Muli\",sans-serif}#app{height:100%;height:100vh;width:100%;line-height:1.5}.code-text{background:#eee;border:1px solid #ddd;padding:10px 20px;border-radius:4px;margin-bottom:20px;text-align:center}@media(min-width: 992px){.code-text{margin-bottom:0}}.btn{text-transform:uppercase;font-weight:bold}textarea{min-height:175px}.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media(max-width: 500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}",".vue-simple-context-menu{background-color:#ecf0f1;border-bottom-width:0px;border-radius:4px;box-shadow:0 3px 6px 0 rgba(51,51,51,.2);display:none;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",\"Roboto\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Fira Sans\",\"Droid Sans\",\"Helvetica Neue\",sans-serif;left:0;list-style:none;margin:0;padding:0;position:absolute;top:0;z-index:1000000}.vue-simple-context-menu--active{display:block}.vue-simple-context-menu__item{align-items:center;color:#333;cursor:pointer;display:flex;padding:5px 15px}.vue-simple-context-menu__item:hover{background-color:#007aff;color:#fff}.vue-simple-context-menu__divider{background-clip:content-box;background-color:#c0cdd1;box-sizing:content-box;height:2px;padding:4px 0;pointer-events:none}.vue-simple-context-menu li:first-of-type{margin-top:4px}.vue-simple-context-menu li:last-of-type{margin-bottom:4px}"],"sourceRoot":""} \ No newline at end of file diff --git a/example/App.vue b/example/App.vue index 93bfaeb..dce5fbf 100755 --- a/example/App.vue +++ b/example/App.vue @@ -1,32 +1,31 @@