@mirweb/mir-web-components 1.15.3 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (184) hide show
  1. package/README.md +2 -2
  2. package/dist/assets/index-Cl4fzBs2.js +17 -0
  3. package/dist/assets/scss/globals.scss +231 -0
  4. package/dist/assets/scss/index.scss +4 -0
  5. package/dist/assets/scss/normalize.scss +393 -0
  6. package/dist/assets/scss/reset.scss +102 -0
  7. package/dist/assets/scss/variables.scss +95 -0
  8. package/dist/components/atoms/button/button.vue +81 -0
  9. package/dist/components/atoms/checkbox/checkbox.vue +125 -0
  10. package/dist/components/atoms/chip/chip.vue +55 -0
  11. package/dist/components/atoms/dropdown/dropdown.vue +490 -0
  12. package/dist/components/atoms/image/image.vue +42 -0
  13. package/dist/components/atoms/label/label.vue +52 -0
  14. package/dist/components/atoms/link/link.vue +166 -0
  15. package/dist/components/atoms/radio-button/radio-button.vue +110 -0
  16. package/dist/components/atoms/select/select.vue +116 -0
  17. package/dist/components/atoms/select-multiple/select-multiple.vue +210 -0
  18. package/dist/components/atoms/slider/slider.vue +322 -0
  19. package/dist/components/atoms/text-field/text-field.vue +273 -0
  20. package/dist/components/atoms/textarea/textarea.vue +179 -0
  21. package/dist/components/atoms/video/video.vue +98 -0
  22. package/dist/components/blocks/accordion/accordion.vue +222 -0
  23. package/dist/components/blocks/card-display/card-display.vue +125 -0
  24. package/dist/components/blocks/column-grid/column-grid.vue +201 -0
  25. package/dist/components/blocks/facts/facts.vue +156 -0
  26. package/dist/components/blocks/features/features.vue +176 -0
  27. package/dist/components/blocks/flashcards/flashcards.vue +212 -0
  28. package/dist/components/blocks/form-script/form-script.vue +172 -0
  29. package/dist/components/blocks/frontpage-hero/frontpage-hero.vue +214 -0
  30. package/dist/components/blocks/headline/headline.vue +93 -0
  31. package/dist/components/blocks/hero/hero.vue +173 -0
  32. package/dist/components/blocks/image/image.vue +93 -0
  33. package/dist/components/blocks/image-gallery/image-gallery.vue +289 -0
  34. package/dist/components/blocks/logo-wall/logo-wall.vue +125 -0
  35. package/dist/components/blocks/micro-stories/micro-stories.vue +316 -0
  36. package/dist/components/blocks/pallet-jack/pallet-jack.vue +440 -0
  37. package/dist/components/blocks/policy/policy.vue +106 -0
  38. package/dist/components/blocks/product-hero/product-hero.vue +140 -0
  39. package/dist/components/blocks/promo/promo.vue +403 -0
  40. package/dist/components/blocks/quote/quote.vue +127 -0
  41. package/dist/components/blocks/rich-text/rich-text-columns.vue +159 -0
  42. package/dist/components/blocks/rich-text/rich-text.vue +296 -0
  43. package/dist/components/blocks/timeline/timeline.vue +232 -0
  44. package/dist/components/blocks/vimeo/vimeo.vue +52 -0
  45. package/dist/components/index.ts +51 -0
  46. package/dist/components/molecules/address/address.vue +123 -0
  47. package/dist/components/molecules/bullet-list/bullet-list.vue +99 -0
  48. package/dist/components/molecules/card/card.vue +302 -0
  49. package/dist/components/molecules/column-card/column-card.vue +178 -0
  50. package/dist/components/molecules/event-card/event-card.vue +111 -0
  51. package/dist/components/molecules/flashcard/flashcard.vue +293 -0
  52. package/dist/components/molecules/modal/modal.vue +113 -0
  53. package/dist/components/molecules/text-card/text-card.vue +74 -0
  54. package/dist/components/organisms/404/404.vue +79 -0
  55. package/dist/components/organisms/filter/filter.vue +89 -0
  56. package/dist/components/organisms/footer/footer.vue +356 -0
  57. package/dist/components/organisms/header/header.vue +754 -0
  58. package/dist/components/organisms/language-switcher/language-switcher.vue +68 -0
  59. package/dist/components/organisms/pagination/pagination.vue +85 -0
  60. package/dist/components/organisms/search/search.vue +153 -0
  61. package/dist/components/templates/404-error-page.vue +0 -0
  62. package/dist/directives/clickOutside.ts +15 -0
  63. package/dist/fonts/OpenSans-Light.woff2 +0 -0
  64. package/dist/fonts/OpenSans-Medium.woff2 +0 -0
  65. package/dist/fonts/OpenSans-Regular.woff2 +0 -0
  66. package/dist/fonts/OpenSans-SemiBold.woff2 +0 -0
  67. package/dist/fonts/Oscine_Bd.woff2 +0 -0
  68. package/dist/fonts/Oscine_Lt.woff2 +0 -0
  69. package/dist/fonts/Oscine_Rg.woff2 +0 -0
  70. package/dist/index.html +12 -0
  71. package/dist/main.css +1 -0
  72. package/package.json +8 -10
  73. package/dist/components/atoms/button/button.vue.d.ts +0 -5
  74. package/dist/components/atoms/button/button.vue.d.ts.map +0 -1
  75. package/dist/components/atoms/checkbox/checkbox.vue.d.ts +0 -5
  76. package/dist/components/atoms/checkbox/checkbox.vue.d.ts.map +0 -1
  77. package/dist/components/atoms/chip/chip.vue.d.ts +0 -5
  78. package/dist/components/atoms/chip/chip.vue.d.ts.map +0 -1
  79. package/dist/components/atoms/dropdown/dropdown.vue.d.ts +0 -5
  80. package/dist/components/atoms/dropdown/dropdown.vue.d.ts.map +0 -1
  81. package/dist/components/atoms/image/image.vue.d.ts +0 -5
  82. package/dist/components/atoms/image/image.vue.d.ts.map +0 -1
  83. package/dist/components/atoms/label/label.vue.d.ts +0 -5
  84. package/dist/components/atoms/label/label.vue.d.ts.map +0 -1
  85. package/dist/components/atoms/link/link.vue.d.ts +0 -5
  86. package/dist/components/atoms/link/link.vue.d.ts.map +0 -1
  87. package/dist/components/atoms/radio-button/radio-button.vue.d.ts +0 -5
  88. package/dist/components/atoms/radio-button/radio-button.vue.d.ts.map +0 -1
  89. package/dist/components/atoms/select/select.vue.d.ts +0 -5
  90. package/dist/components/atoms/select/select.vue.d.ts.map +0 -1
  91. package/dist/components/atoms/select-multiple/select-multiple.vue.d.ts +0 -5
  92. package/dist/components/atoms/select-multiple/select-multiple.vue.d.ts.map +0 -1
  93. package/dist/components/atoms/slider/slider.vue.d.ts +0 -5
  94. package/dist/components/atoms/slider/slider.vue.d.ts.map +0 -1
  95. package/dist/components/atoms/text-field/text-field.vue.d.ts +0 -5
  96. package/dist/components/atoms/text-field/text-field.vue.d.ts.map +0 -1
  97. package/dist/components/atoms/textarea/textarea.vue.d.ts +0 -5
  98. package/dist/components/atoms/textarea/textarea.vue.d.ts.map +0 -1
  99. package/dist/components/atoms/video/video.vue.d.ts +0 -5
  100. package/dist/components/atoms/video/video.vue.d.ts.map +0 -1
  101. package/dist/components/blocks/accordion/accordion.vue.d.ts +0 -5
  102. package/dist/components/blocks/accordion/accordion.vue.d.ts.map +0 -1
  103. package/dist/components/blocks/card-display/card-display.vue.d.ts +0 -6
  104. package/dist/components/blocks/card-display/card-display.vue.d.ts.map +0 -1
  105. package/dist/components/blocks/column-grid/column-grid.vue.d.ts +0 -5
  106. package/dist/components/blocks/column-grid/column-grid.vue.d.ts.map +0 -1
  107. package/dist/components/blocks/facts/facts.vue.d.ts +0 -5
  108. package/dist/components/blocks/facts/facts.vue.d.ts.map +0 -1
  109. package/dist/components/blocks/features/features.vue.d.ts +0 -5
  110. package/dist/components/blocks/features/features.vue.d.ts.map +0 -1
  111. package/dist/components/blocks/flashcards/flashcards.vue.d.ts +0 -5
  112. package/dist/components/blocks/flashcards/flashcards.vue.d.ts.map +0 -1
  113. package/dist/components/blocks/form-script/form-script.vue.d.ts +0 -5
  114. package/dist/components/blocks/form-script/form-script.vue.d.ts.map +0 -1
  115. package/dist/components/blocks/frontpage-hero/frontpage-hero.vue.d.ts +0 -5
  116. package/dist/components/blocks/frontpage-hero/frontpage-hero.vue.d.ts.map +0 -1
  117. package/dist/components/blocks/headline/headline.vue.d.ts +0 -5
  118. package/dist/components/blocks/headline/headline.vue.d.ts.map +0 -1
  119. package/dist/components/blocks/hero/hero.vue.d.ts +0 -5
  120. package/dist/components/blocks/hero/hero.vue.d.ts.map +0 -1
  121. package/dist/components/blocks/image/image.vue.d.ts +0 -5
  122. package/dist/components/blocks/image/image.vue.d.ts.map +0 -1
  123. package/dist/components/blocks/image-gallery/image-gallery.vue.d.ts +0 -5
  124. package/dist/components/blocks/image-gallery/image-gallery.vue.d.ts.map +0 -1
  125. package/dist/components/blocks/logo-wall/logo-wall.vue.d.ts +0 -5
  126. package/dist/components/blocks/logo-wall/logo-wall.vue.d.ts.map +0 -1
  127. package/dist/components/blocks/micro-stories/micro-stories.vue.d.ts +0 -5
  128. package/dist/components/blocks/micro-stories/micro-stories.vue.d.ts.map +0 -1
  129. package/dist/components/blocks/pallet-jack/pallet-jack.vue.d.ts +0 -5
  130. package/dist/components/blocks/pallet-jack/pallet-jack.vue.d.ts.map +0 -1
  131. package/dist/components/blocks/policy/policy.vue.d.ts +0 -4
  132. package/dist/components/blocks/policy/policy.vue.d.ts.map +0 -1
  133. package/dist/components/blocks/product-hero/product-hero.vue.d.ts +0 -5
  134. package/dist/components/blocks/product-hero/product-hero.vue.d.ts.map +0 -1
  135. package/dist/components/blocks/promo/promo.vue.d.ts +0 -5
  136. package/dist/components/blocks/promo/promo.vue.d.ts.map +0 -1
  137. package/dist/components/blocks/quote/quote.vue.d.ts +0 -5
  138. package/dist/components/blocks/quote/quote.vue.d.ts.map +0 -1
  139. package/dist/components/blocks/rich-text/rich-text-columns.vue.d.ts +0 -4
  140. package/dist/components/blocks/rich-text/rich-text-columns.vue.d.ts.map +0 -1
  141. package/dist/components/blocks/rich-text/rich-text.vue.d.ts +0 -5
  142. package/dist/components/blocks/rich-text/rich-text.vue.d.ts.map +0 -1
  143. package/dist/components/blocks/timeline/timeline.vue.d.ts +0 -5
  144. package/dist/components/blocks/timeline/timeline.vue.d.ts.map +0 -1
  145. package/dist/components/blocks/vimeo/vimeo.vue.d.ts +0 -5
  146. package/dist/components/blocks/vimeo/vimeo.vue.d.ts.map +0 -1
  147. package/dist/components/index.d.ts +0 -51
  148. package/dist/components/main.d.ts +0 -59
  149. package/dist/components/molecules/address/address.vue.d.ts +0 -5
  150. package/dist/components/molecules/address/address.vue.d.ts.map +0 -1
  151. package/dist/components/molecules/bullet-list/bullet-list.vue.d.ts +0 -5
  152. package/dist/components/molecules/bullet-list/bullet-list.vue.d.ts.map +0 -1
  153. package/dist/components/molecules/card/card.vue.d.ts +0 -5
  154. package/dist/components/molecules/card/card.vue.d.ts.map +0 -1
  155. package/dist/components/molecules/column-card/column-card.vue.d.ts +0 -5
  156. package/dist/components/molecules/column-card/column-card.vue.d.ts.map +0 -1
  157. package/dist/components/molecules/event-card/event-card.vue.d.ts +0 -5
  158. package/dist/components/molecules/event-card/event-card.vue.d.ts.map +0 -1
  159. package/dist/components/molecules/flashcard/flashcard.vue.d.ts +0 -5
  160. package/dist/components/molecules/flashcard/flashcard.vue.d.ts.map +0 -1
  161. package/dist/components/molecules/modal/modal.vue.d.ts +0 -5
  162. package/dist/components/molecules/modal/modal.vue.d.ts.map +0 -1
  163. package/dist/components/molecules/text-card/text-card.vue.d.ts +0 -5
  164. package/dist/components/molecules/text-card/text-card.vue.d.ts.map +0 -1
  165. package/dist/components/organisms/404/404.vue.d.ts +0 -5
  166. package/dist/components/organisms/404/404.vue.d.ts.map +0 -1
  167. package/dist/components/organisms/filter/filter.vue.d.ts +0 -5
  168. package/dist/components/organisms/filter/filter.vue.d.ts.map +0 -1
  169. package/dist/components/organisms/footer/footer.vue.d.ts +0 -5
  170. package/dist/components/organisms/footer/footer.vue.d.ts.map +0 -1
  171. package/dist/components/organisms/header/header.vue.d.ts +0 -6
  172. package/dist/components/organisms/header/header.vue.d.ts.map +0 -1
  173. package/dist/components/organisms/language-switcher/language-switcher.vue.d.ts +0 -5
  174. package/dist/components/organisms/language-switcher/language-switcher.vue.d.ts.map +0 -1
  175. package/dist/components/organisms/pagination/pagination.vue.d.ts +0 -5
  176. package/dist/components/organisms/pagination/pagination.vue.d.ts.map +0 -1
  177. package/dist/components/organisms/search/search.vue.d.ts +0 -4
  178. package/dist/components/organisms/search/search.vue.d.ts.map +0 -1
  179. package/dist/directives/clickOutside.d.ts +0 -3
  180. package/dist/main.d.ts +0 -1
  181. package/dist/mir-web-components.cjs.js +0 -1
  182. package/dist/mir-web-components.css +0 -1
  183. package/dist/mir-web-components.es.js +0 -3187
  184. package/dist/mir-web-components.umd.js +0 -2
package/README.md CHANGED
@@ -36,7 +36,7 @@ And please clean up the App.vue in the commit
36
36
  Start the development server
37
37
 
38
38
  ```bash
39
- yarn dev
39
+ pnpm dev
40
40
  ```
41
41
 
42
42
  ## Production
@@ -44,5 +44,5 @@ yarn dev
44
44
  Build the library for production:
45
45
 
46
46
  ```bash
47
- yarn build
47
+ pnpm build
48
48
  ```
@@ -0,0 +1,17 @@
1
+ (function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const i of r)if(i.type==="childList")for(const o of i.addedNodes)o.tagName==="LINK"&&o.rel==="modulepreload"&&s(o)}).observe(document,{childList:!0,subtree:!0});function n(r){const i={};return r.integrity&&(i.integrity=r.integrity),r.referrerPolicy&&(i.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?i.credentials="include":r.crossOrigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function s(r){if(r.ep)return;r.ep=!0;const i=n(r);fetch(r.href,i)}})();/**
2
+ * @vue/shared v3.4.32
3
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
+ * @license MIT
5
+ **//*! #__NO_SIDE_EFFECTS__ */function fn(e,t){const n=new Set(e.split(","));return s=>n.has(s)}const V={},Be=[],oe=()=>{},pr=()=>!1,Pt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),un=e=>e.startsWith("onUpdate:"),Q=Object.assign,an=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},gr=Object.prototype.hasOwnProperty,M=(e,t)=>gr.call(e,t),T=Array.isArray,et=e=>At(e)==="[object Map]",_r=e=>At(e)==="[object Set]",I=e=>typeof e=="function",G=e=>typeof e=="string",ze=e=>typeof e=="symbol",K=e=>e!==null&&typeof e=="object",ms=e=>(K(e)||I(e))&&I(e.then)&&I(e.catch),mr=Object.prototype.toString,At=e=>mr.call(e),br=e=>At(e).slice(8,-1),yr=e=>At(e)==="[object Object]",dn=e=>G(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,tt=fn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Mt=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},xr=/-(\w)/g,Ue=Mt(e=>e.replace(xr,(t,n)=>n?n.toUpperCase():"")),wr=/\B([A-Z])/g,De=Mt(e=>e.replace(wr,"-$1").toLowerCase()),bs=Mt(e=>e.charAt(0).toUpperCase()+e.slice(1)),Dt=Mt(e=>e?`on${bs(e)}`:""),Ve=(e,t)=>!Object.is(e,t),Kt=(e,...t)=>{for(let n=0;n<e.length;n++)e[n](...t)},ys=(e,t,n,s=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:s,value:n})},vr=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let $n;const xs=()=>$n||($n=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function hn(e){if(T(e)){const t={};for(let n=0;n<e.length;n++){const s=e[n],r=G(s)?Sr(s):hn(s);if(r)for(const i in r)t[i]=r[i]}return t}else if(G(e)||K(e))return e}const Er=/;(?![^(]*\))/g,Cr=/:([^]+)/,Or=/\/\*[^]*?\*\//g;function Sr(e){const t={};return e.replace(Or,"").split(Er).forEach(n=>{if(n){const s=n.split(Cr);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function pn(e){let t="";if(G(e))t=e;else if(T(e))for(let n=0;n<e.length;n++){const s=pn(e[n]);s&&(t+=s+" ")}else if(K(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}const Tr="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Ir=fn(Tr);function ws(e){return!!e||e===""}/**
6
+ * @vue/reactivity v3.4.32
7
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
8
+ * @license MIT
9
+ **/let ce;class Pr{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=ce,!t&&ce&&(this.index=(ce.scopes||(ce.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=ce;try{return ce=this,t()}finally{ce=n}}}on(){ce=this}off(){ce=this.parent}stop(t){if(this._active){let n,s;for(n=0,s=this.effects.length;n<s;n++)this.effects[n].stop();for(n=0,s=this.cleanups.length;n<s;n++)this.cleanups[n]();if(this.scopes)for(n=0,s=this.scopes.length;n<s;n++)this.scopes[n].stop(!0);if(!this.detached&&this.parent&&!t){const r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this._active=!1}}}function Ar(e,t=ce){t&&t.active&&t.effects.push(e)}function Mr(){return ce}let Ne;class gn{constructor(t,n,s,r){this.fn=t,this.trigger=n,this.scheduler=s,this.active=!0,this.deps=[],this._dirtyLevel=4,this._trackId=0,this._runnings=0,this._shouldSchedule=!1,this._depsLength=0,Ar(this,r)}get dirty(){if(this._dirtyLevel===2||this._dirtyLevel===3){this._dirtyLevel=1,Te();for(let t=0;t<this._depsLength;t++){const n=this.deps[t];if(n.computed&&(Rr(n.computed),this._dirtyLevel>=4))break}this._dirtyLevel===1&&(this._dirtyLevel=0),Ie()}return this._dirtyLevel>=4}set dirty(t){this._dirtyLevel=t?4:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Oe,n=Ne;try{return Oe=!0,Ne=this,this._runnings++,Un(this),this.fn()}finally{Vn(this),this._runnings--,Ne=n,Oe=t}}stop(){this.active&&(Un(this),Vn(this),this.onStop&&this.onStop(),this.active=!1)}}function Rr(e){return e.value}function Un(e){e._trackId++,e._depsLength=0}function Vn(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t<e.deps.length;t++)vs(e.deps[t],e);e.deps.length=e._depsLength}}function vs(e,t){const n=e.get(t);n!==void 0&&t._trackId!==n&&(e.delete(t),e.size===0&&e.cleanup())}let Oe=!0,Zt=0;const Es=[];function Te(){Es.push(Oe),Oe=!1}function Ie(){const e=Es.pop();Oe=e===void 0?!0:e}function _n(){Zt++}function mn(){for(Zt--;!Zt&&Qt.length;)Qt.shift()()}function Cs(e,t,n){if(t.get(e)!==e._trackId){t.set(e,e._trackId);const s=e.deps[e._depsLength];s!==t?(s&&vs(s,e),e.deps[e._depsLength++]=t):e._depsLength++}}const Qt=[];function Os(e,t,n){_n();for(const s of e.keys()){let r;s._dirtyLevel<t&&(r??(r=e.get(s)===s._trackId))&&(s._shouldSchedule||(s._shouldSchedule=s._dirtyLevel===0),s._dirtyLevel=t),s._shouldSchedule&&(r??(r=e.get(s)===s._trackId))&&(s.trigger(),(!s._runnings||s.allowRecurse)&&s._dirtyLevel!==2&&(s._shouldSchedule=!1,s.scheduler&&Qt.push(s.scheduler)))}mn()}const Ss=(e,t)=>{const n=new Map;return n.cleanup=e,n.computed=t,n},kt=new WeakMap,je=Symbol(""),en=Symbol("");function ee(e,t,n){if(Oe&&Ne){let s=kt.get(e);s||kt.set(e,s=new Map);let r=s.get(n);r||s.set(n,r=Ss(()=>s.delete(n))),Cs(Ne,r)}}function xe(e,t,n,s,r,i){const o=kt.get(e);if(!o)return;let f=[];if(t==="clear")f=[...o.values()];else if(n==="length"&&T(e)){const u=Number(s);o.forEach((h,d)=>{(d==="length"||!ze(d)&&d>=u)&&f.push(h)})}else switch(n!==void 0&&f.push(o.get(n)),t){case"add":T(e)?dn(n)&&f.push(o.get("length")):(f.push(o.get(je)),et(e)&&f.push(o.get(en)));break;case"delete":T(e)||(f.push(o.get(je)),et(e)&&f.push(o.get(en)));break;case"set":et(e)&&f.push(o.get(je));break}_n();for(const u of f)u&&Os(u,4);mn()}const Fr=fn("__proto__,__v_isRef,__isVue"),Ts=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(ze)),Dn=Lr();function Lr(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=H(this);for(let i=0,o=this.length;i<o;i++)ee(s,"get",i+"");const r=s[t](...n);return r===-1||r===!1?s[t](...n.map(H)):r}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){Te(),_n();const s=H(this)[t].apply(this,n);return mn(),Ie(),s}}),e}function Hr(e){ze(e)||(e=String(e));const t=H(this);return ee(t,"has",e),t.hasOwnProperty(e)}class Is{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,s){const r=this._isReadonly,i=this._isShallow;if(n==="__v_isReactive")return!r;if(n==="__v_isReadonly")return r;if(n==="__v_isShallow")return i;if(n==="__v_raw")return s===(r?i?Jr:Rs:i?Ms:As).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const o=T(t);if(!r){if(o&&M(Dn,n))return Reflect.get(Dn,n,s);if(n==="hasOwnProperty")return Hr}const f=Reflect.get(t,n,s);return(ze(n)?Ts.has(n):Fr(n))||(r||ee(t,"get",n),i)?f:re(f)?o&&dn(n)?f:f.value:K(f)?r?Fs(f):xn(f):f}}class Ps extends Is{constructor(t=!1){super(!1,t)}set(t,n,s,r){let i=t[n];if(!this._isShallow){const u=qe(i);if(!ot(s)&&!qe(s)&&(i=H(i),s=H(s)),!T(t)&&re(i)&&!re(s))return u?!1:(i.value=s,!0)}const o=T(t)&&dn(n)?Number(n)<t.length:M(t,n),f=Reflect.set(t,n,s,r);return t===H(r)&&(o?Ve(s,i)&&xe(t,"set",n,s):xe(t,"add",n,s)),f}deleteProperty(t,n){const s=M(t,n);t[n];const r=Reflect.deleteProperty(t,n);return r&&s&&xe(t,"delete",n,void 0),r}has(t,n){const s=Reflect.has(t,n);return(!ze(n)||!Ts.has(n))&&ee(t,"has",n),s}ownKeys(t){return ee(t,"iterate",T(t)?"length":je),Reflect.ownKeys(t)}}class Nr extends Is{constructor(t=!1){super(!0,t)}set(t,n){return!0}deleteProperty(t,n){return!0}}const jr=new Ps,$r=new Nr,Ur=new Ps(!0);const bn=e=>e,Rt=e=>Reflect.getPrototypeOf(e);function _t(e,t,n=!1,s=!1){e=e.__v_raw;const r=H(e),i=H(t);n||(Ve(t,i)&&ee(r,"get",t),ee(r,"get",i));const{has:o}=Rt(r),f=s?bn:n?En:vn;if(o.call(r,t))return f(e.get(t));if(o.call(r,i))return f(e.get(i));e!==r&&e.get(t)}function mt(e,t=!1){const n=this.__v_raw,s=H(n),r=H(e);return t||(Ve(e,r)&&ee(s,"has",e),ee(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function bt(e,t=!1){return e=e.__v_raw,!t&&ee(H(e),"iterate",je),Reflect.get(e,"size",e)}function Kn(e,t=!1){!t&&!ot(e)&&!qe(e)&&(e=H(e));const n=H(this);return Rt(n).has.call(n,e)||(n.add(e),xe(n,"add",e,e)),this}function Bn(e,t,n=!1){!n&&!ot(t)&&!qe(t)&&(t=H(t));const s=H(this),{has:r,get:i}=Rt(s);let o=r.call(s,e);o||(e=H(e),o=r.call(s,e));const f=i.call(s,e);return s.set(e,t),o?Ve(t,f)&&xe(s,"set",e,t):xe(s,"add",e,t),this}function Wn(e){const t=H(this),{has:n,get:s}=Rt(t);let r=n.call(t,e);r||(e=H(e),r=n.call(t,e)),s&&s.call(t,e);const i=t.delete(e);return r&&xe(t,"delete",e,void 0),i}function qn(){const e=H(this),t=e.size!==0,n=e.clear();return t&&xe(e,"clear",void 0,void 0),n}function yt(e,t){return function(s,r){const i=this,o=i.__v_raw,f=H(o),u=t?bn:e?En:vn;return!e&&ee(f,"iterate",je),o.forEach((h,d)=>s.call(r,u(h),u(d),i))}}function xt(e,t,n){return function(...s){const r=this.__v_raw,i=H(r),o=et(i),f=e==="entries"||e===Symbol.iterator&&o,u=e==="keys"&&o,h=r[e](...s),d=n?bn:t?En:vn;return!t&&ee(i,"iterate",u?en:je),{next(){const{value:w,done:C}=h.next();return C?{value:w,done:C}:{value:f?[d(w[0]),d(w[1])]:d(w),done:C}},[Symbol.iterator](){return this}}}}function ve(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function Vr(){const e={get(i){return _t(this,i)},get size(){return bt(this)},has:mt,add:Kn,set:Bn,delete:Wn,clear:qn,forEach:yt(!1,!1)},t={get(i){return _t(this,i,!1,!0)},get size(){return bt(this)},has:mt,add(i){return Kn.call(this,i,!0)},set(i,o){return Bn.call(this,i,o,!0)},delete:Wn,clear:qn,forEach:yt(!1,!0)},n={get(i){return _t(this,i,!0)},get size(){return bt(this,!0)},has(i){return mt.call(this,i,!0)},add:ve("add"),set:ve("set"),delete:ve("delete"),clear:ve("clear"),forEach:yt(!0,!1)},s={get(i){return _t(this,i,!0,!0)},get size(){return bt(this,!0)},has(i){return mt.call(this,i,!0)},add:ve("add"),set:ve("set"),delete:ve("delete"),clear:ve("clear"),forEach:yt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(i=>{e[i]=xt(i,!1,!1),n[i]=xt(i,!0,!1),t[i]=xt(i,!1,!0),s[i]=xt(i,!0,!0)}),[e,n,t,s]}const[Dr,Kr,Br,Wr]=Vr();function yn(e,t){const n=t?e?Wr:Br:e?Kr:Dr;return(s,r,i)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(M(n,r)&&r in s?n:s,r,i)}const qr={get:yn(!1,!1)},Gr={get:yn(!1,!0)},zr={get:yn(!0,!1)};const As=new WeakMap,Ms=new WeakMap,Rs=new WeakMap,Jr=new WeakMap;function Yr(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Xr(e){return e.__v_skip||!Object.isExtensible(e)?0:Yr(br(e))}function xn(e){return qe(e)?e:wn(e,!1,jr,qr,As)}function Zr(e){return wn(e,!1,Ur,Gr,Ms)}function Fs(e){return wn(e,!0,$r,zr,Rs)}function wn(e,t,n,s,r){if(!K(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const o=Xr(e);if(o===0)return e;const f=new Proxy(e,o===2?s:n);return r.set(e,f),f}function nt(e){return qe(e)?nt(e.__v_raw):!!(e&&e.__v_isReactive)}function qe(e){return!!(e&&e.__v_isReadonly)}function ot(e){return!!(e&&e.__v_isShallow)}function Ls(e){return e?!!e.__v_raw:!1}function H(e){const t=e&&e.__v_raw;return t?H(t):e}function Qr(e){return Object.isExtensible(e)&&ys(e,"__v_skip",!0),e}const vn=e=>K(e)?xn(e):e,En=e=>K(e)?Fs(e):e;class Hs{constructor(t,n,s,r){this.getter=t,this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new gn(()=>t(this._value),()=>Bt(this,this.effect._dirtyLevel===2?2:3)),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=H(this);return(!t._cacheable||t.effect.dirty)&&Ve(t._value,t._value=t.effect.run())&&Bt(t,4),ei(t),t.effect._dirtyLevel>=2&&Bt(t,2),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function kr(e,t,n=!1){let s,r;const i=I(e);return i?(s=e,r=oe):(s=e.get,r=e.set),new Hs(s,r,i||!r,n)}function ei(e){var t;Oe&&Ne&&(e=H(e),Cs(Ne,(t=e.dep)!=null?t:e.dep=Ss(()=>e.dep=void 0,e instanceof Hs?e:void 0)))}function Bt(e,t=4,n,s){e=H(e);const r=e.dep;r&&Os(r,t)}function re(e){return!!(e&&e.__v_isRef===!0)}function ti(e){return re(e)?e.value:e}const ni={get:(e,t,n)=>ti(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return re(r)&&!re(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function Ns(e){return nt(e)?e:new Proxy(e,ni)}/**
10
+ * @vue/runtime-core v3.4.32
11
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
12
+ * @license MIT
13
+ **/function Se(e,t,n,s){try{return s?e(...s):e()}catch(r){Ft(r,t,n)}}function fe(e,t,n,s){if(I(e)){const r=Se(e,t,n,s);return r&&ms(r)&&r.catch(i=>{Ft(i,t,n)}),r}if(T(e)){const r=[];for(let i=0;i<e.length;i++)r.push(fe(e[i],t,n,s));return r}}function Ft(e,t,n,s=!0){const r=t?t.vnode:null;if(t){let i=t.parent;const o=t.proxy,f=`https://vuejs.org/error-reference/#runtime-${n}`;for(;i;){const h=i.ec;if(h){for(let d=0;d<h.length;d++)if(h[d](e,o,f)===!1)return}i=i.parent}const u=t.appContext.config.errorHandler;if(u){Te(),Se(u,null,10,[e,o,f]),Ie();return}}si(e,n,r,s)}function si(e,t,n,s=!0){console.error(e)}let lt=!1,tn=!1;const J=[];let ge=0;const We=[];let Ee=null,Le=0;const js=Promise.resolve();let Cn=null;function ri(e){const t=Cn||js;return e?t.then(this?e.bind(this):e):t}function ii(e){let t=ge+1,n=J.length;for(;t<n;){const s=t+n>>>1,r=J[s],i=ct(r);i<e||i===e&&r.pre?t=s+1:n=s}return t}function On(e){(!J.length||!J.includes(e,lt&&e.allowRecurse?ge+1:ge))&&(e.id==null?J.push(e):J.splice(ii(e.id),0,e),$s())}function $s(){!lt&&!tn&&(tn=!0,Cn=js.then(Vs))}function oi(e){const t=J.indexOf(e);t>ge&&J.splice(t,1)}function li(e){T(e)?We.push(...e):(!Ee||!Ee.includes(e,e.allowRecurse?Le+1:Le))&&We.push(e),$s()}function Gn(e,t,n=lt?ge+1:0){for(;n<J.length;n++){const s=J[n];if(s&&s.pre){if(e&&s.id!==e.uid)continue;J.splice(n,1),n--,s()}}}function Us(e){if(We.length){const t=[...new Set(We)].sort((n,s)=>ct(n)-ct(s));if(We.length=0,Ee){Ee.push(...t);return}for(Ee=t,Le=0;Le<Ee.length;Le++){const n=Ee[Le];n.active!==!1&&n()}Ee=null,Le=0}}const ct=e=>e.id==null?1/0:e.id,ci=(e,t)=>{const n=ct(e)-ct(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Vs(e){tn=!1,lt=!0,J.sort(ci);try{for(ge=0;ge<J.length;ge++){const t=J[ge];t&&t.active!==!1&&Se(t,t.i,t.i?15:14)}}finally{ge=0,J.length=0,Us(),lt=!1,Cn=null,(J.length||We.length)&&Vs()}}let _e=null,Ds=null;function St(e){const t=_e;return _e=e,Ds=e&&e.type.__scopeId||null,t}function fi(e,t=_e,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&ss(-1);const i=St(t);let o;try{o=e(...r)}finally{St(i),s._d&&ss(1)}return o};return s._n=!0,s._c=!0,s._d=!0,s}function Re(e,t,n,s){const r=e.dirs,i=t&&t.dirs;for(let o=0;o<r.length;o++){const f=r[o];i&&(f.oldValue=i[o].value);let u=f.dir[s];u&&(Te(),fe(u,n,8,[e.el,f,e,t]),Ie())}}function Ks(e,t){e.shapeFlag&6&&e.component?Ks(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}const vt=e=>!!e.type.__asyncLoader,Bs=e=>e.type.__isKeepAlive;function ui(e,t){Ws(e,"a",t)}function ai(e,t){Ws(e,"da",t)}function Ws(e,t,n=Z){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(Lt(t,s,n),n){let r=n.parent;for(;r&&r.parent;)Bs(r.parent.vnode)&&di(s,t,n,r),r=r.parent}}function di(e,t,n,s){const r=Lt(t,e,s,!0);qs(()=>{an(s[t],r)},n)}function Lt(e,t,n=Z,s=!1){if(n){const r=n[e]||(n[e]=[]),i=t.__weh||(t.__weh=(...o)=>{Te();const f=at(n),u=fe(t,n,e,o);return f(),Ie(),u});return s?r.unshift(i):r.push(i),i}}const we=e=>(t,n=Z)=>{(!jt||e==="sp")&&Lt(e,(...s)=>t(...s),n)},hi=we("bm"),pi=we("m"),gi=we("bu"),_i=we("u"),mi=we("bum"),qs=we("um"),bi=we("sp"),yi=we("rtg"),xi=we("rtc");function wi(e,t=Z){Lt("ec",e,t)}const vi=Symbol.for("v-ndc"),nn=e=>e?ur(e)?Pn(e):nn(e.parent):null,st=Q(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=>nn(e.parent),$root:e=>nn(e.root),$emit:e=>e.emit,$options:e=>Sn(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,On(e.update)}),$nextTick:e=>e.n||(e.n=ri.bind(e.proxy)),$watch:e=>Gi.bind(e)}),Wt=(e,t)=>e!==V&&!e.__isScriptSetup&&M(e,t),Ei={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:s,data:r,props:i,accessCache:o,type:f,appContext:u}=e;let h;if(t[0]!=="$"){const P=o[t];if(P!==void 0)switch(P){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(Wt(s,t))return o[t]=1,s[t];if(r!==V&&M(r,t))return o[t]=2,r[t];if((h=e.propsOptions[0])&&M(h,t))return o[t]=3,i[t];if(n!==V&&M(n,t))return o[t]=4,n[t];sn&&(o[t]=0)}}const d=st[t];let w,C;if(d)return t==="$attrs"&&ee(e.attrs,"get",""),d(e);if((w=f.__cssModules)&&(w=w[t]))return w;if(n!==V&&M(n,t))return o[t]=4,n[t];if(C=u.config.globalProperties,M(C,t))return C[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:i}=e;return Wt(r,t)?(r[t]=n,!0):s!==V&&M(s,t)?(s[t]=n,!0):M(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:i}},o){let f;return!!n[o]||e!==V&&M(e,o)||Wt(t,o)||(f=i[0])&&M(f,o)||M(s,o)||M(st,o)||M(r.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:M(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function zn(e){return T(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let sn=!0;function Ci(e){const t=Sn(e),n=e.proxy,s=e.ctx;sn=!1,t.beforeCreate&&Jn(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:o,watch:f,provide:u,inject:h,created:d,beforeMount:w,mounted:C,beforeUpdate:P,updated:D,activated:L,deactivated:te,beforeDestroy:B,beforeUnmount:z,destroyed:N,unmounted:W,render:ie,renderTracked:R,renderTriggered:me,errorCaptured:ue,serverPrefetch:$t,expose:Pe,inheritAttrs:Je,components:dt,directives:ht,filters:Ut}=t;if(h&&Oi(h,s,null),o)for(const U in o){const j=o[U];I(j)&&(s[U]=j.bind(n))}if(r){const U=r.call(n,n);K(U)&&(e.data=xn(U))}if(sn=!0,i)for(const U in i){const j=i[U],Ae=I(j)?j.bind(n,n):I(j.get)?j.get.bind(n,n):oe,pt=!I(j)&&I(j.set)?j.set.bind(n):oe,Me=yo({get:Ae,set:pt});Object.defineProperty(s,U,{enumerable:!0,configurable:!0,get:()=>Me.value,set:ae=>Me.value=ae})}if(f)for(const U in f)Gs(f[U],s,n,U);if(u){const U=I(u)?u.call(n):u;Reflect.ownKeys(U).forEach(j=>{Mi(j,U[j])})}d&&Jn(d,e,"c");function Y(U,j){T(j)?j.forEach(Ae=>U(Ae.bind(n))):j&&U(j.bind(n))}if(Y(hi,w),Y(pi,C),Y(gi,P),Y(_i,D),Y(ui,L),Y(ai,te),Y(wi,ue),Y(xi,R),Y(yi,me),Y(mi,z),Y(qs,W),Y(bi,$t),T(Pe))if(Pe.length){const U=e.exposed||(e.exposed={});Pe.forEach(j=>{Object.defineProperty(U,j,{get:()=>n[j],set:Ae=>n[j]=Ae})})}else e.exposed||(e.exposed={});ie&&e.render===oe&&(e.render=ie),Je!=null&&(e.inheritAttrs=Je),dt&&(e.components=dt),ht&&(e.directives=ht)}function Oi(e,t,n=oe){T(e)&&(e=rn(e));for(const s in e){const r=e[s];let i;K(r)?"default"in r?i=Et(r.from||s,r.default,!0):i=Et(r.from||s):i=Et(r),re(i)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>i.value,set:o=>i.value=o}):t[s]=i}}function Jn(e,t,n){fe(T(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function Gs(e,t,n,s){const r=s.includes(".")?or(n,s):()=>n[s];if(G(e)){const i=t[e];I(i)&&Gt(r,i)}else if(I(e))Gt(r,e.bind(n));else if(K(e))if(T(e))e.forEach(i=>Gs(i,t,n,s));else{const i=I(e.handler)?e.handler.bind(n):t[e.handler];I(i)&&Gt(r,i,e)}}function Sn(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,f=i.get(t);let u;return f?u=f:!r.length&&!n&&!s?u=t:(u={},r.length&&r.forEach(h=>Tt(u,h,o,!0)),Tt(u,t,o)),K(t)&&i.set(t,u),u}function Tt(e,t,n,s=!1){const{mixins:r,extends:i}=t;i&&Tt(e,i,n,!0),r&&r.forEach(o=>Tt(e,o,n,!0));for(const o in t)if(!(s&&o==="expose")){const f=Si[o]||n&&n[o];e[o]=f?f(e[o],t[o]):t[o]}return e}const Si={data:Yn,props:Xn,emits:Xn,methods:ke,computed:ke,beforeCreate:X,created:X,beforeMount:X,mounted:X,beforeUpdate:X,updated:X,beforeDestroy:X,beforeUnmount:X,destroyed:X,unmounted:X,activated:X,deactivated:X,errorCaptured:X,serverPrefetch:X,components:ke,directives:ke,watch:Ii,provide:Yn,inject:Ti};function Yn(e,t){return t?e?function(){return Q(I(e)?e.call(this,this):e,I(t)?t.call(this,this):t)}:t:e}function Ti(e,t){return ke(rn(e),rn(t))}function rn(e){if(T(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function X(e,t){return e?[...new Set([].concat(e,t))]:t}function ke(e,t){return e?Q(Object.create(null),e,t):t}function Xn(e,t){return e?T(e)&&T(t)?[...new Set([...e,...t])]:Q(Object.create(null),zn(e),zn(t??{})):t}function Ii(e,t){if(!e)return t;if(!t)return e;const n=Q(Object.create(null),e);for(const s in t)n[s]=X(e[s],t[s]);return n}function zs(){return{app:null,config:{isNativeTag:pr,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Pi=0;function Ai(e,t){return function(s,r=null){I(s)||(s=Q({},s)),r!=null&&!K(r)&&(r=null);const i=zs(),o=new WeakSet;let f=!1;const u=i.app={_uid:Pi++,_component:s,_props:r,_container:null,_context:i,_instance:null,version:xo,get config(){return i.config},set config(h){},use(h,...d){return o.has(h)||(h&&I(h.install)?(o.add(h),h.install(u,...d)):I(h)&&(o.add(h),h(u,...d))),u},mixin(h){return i.mixins.includes(h)||i.mixins.push(h),u},component(h,d){return d?(i.components[h]=d,u):i.components[h]},directive(h,d){return d?(i.directives[h]=d,u):i.directives[h]},mount(h,d,w){if(!f){const C=$e(s,r);return C.appContext=i,w===!0?w="svg":w===!1&&(w=void 0),d&&t?t(C,h):e(C,h,w),f=!0,u._container=h,h.__vue_app__=u,Pn(C.component)}},unmount(){f&&(e(null,u._container),delete u._container.__vue_app__)},provide(h,d){return i.provides[h]=d,u},runWithContext(h){const d=rt;rt=u;try{return h()}finally{rt=d}}};return u}}let rt=null;function Mi(e,t){if(Z){let n=Z.provides;const s=Z.parent&&Z.parent.provides;s===n&&(n=Z.provides=Object.create(s)),n[e]=t}}function Et(e,t,n=!1){const s=Z||_e;if(s||rt){const r=s?s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides:rt._context.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&I(t)?t.call(s&&s.proxy):t}}const Js={},Ys=()=>Object.create(Js),Xs=e=>Object.getPrototypeOf(e)===Js;function Ri(e,t,n,s=!1){const r={},i=Ys();e.propsDefaults=Object.create(null),Zs(e,t,r,i);for(const o in e.propsOptions[0])o in r||(r[o]=void 0);n?e.props=s?r:Zr(r):e.type.props?e.props=r:e.props=i,e.attrs=i}function Fi(e,t,n,s){const{props:r,attrs:i,vnode:{patchFlag:o}}=e,f=H(r),[u]=e.propsOptions;let h=!1;if((s||o>0)&&!(o&16)){if(o&8){const d=e.vnode.dynamicProps;for(let w=0;w<d.length;w++){let C=d[w];if(Ht(e.emitsOptions,C))continue;const P=t[C];if(u)if(M(i,C))P!==i[C]&&(i[C]=P,h=!0);else{const D=Ue(C);r[D]=on(u,f,D,P,e,!1)}else P!==i[C]&&(i[C]=P,h=!0)}}}else{Zs(e,t,r,i)&&(h=!0);let d;for(const w in f)(!t||!M(t,w)&&((d=De(w))===w||!M(t,d)))&&(u?n&&(n[w]!==void 0||n[d]!==void 0)&&(r[w]=on(u,f,w,void 0,e,!0)):delete r[w]);if(i!==f)for(const w in i)(!t||!M(t,w))&&(delete i[w],h=!0)}h&&xe(e.attrs,"set","")}function Zs(e,t,n,s){const[r,i]=e.propsOptions;let o=!1,f;if(t)for(let u in t){if(tt(u))continue;const h=t[u];let d;r&&M(r,d=Ue(u))?!i||!i.includes(d)?n[d]=h:(f||(f={}))[d]=h:Ht(e.emitsOptions,u)||(!(u in s)||h!==s[u])&&(s[u]=h,o=!0)}if(i){const u=H(n),h=f||V;for(let d=0;d<i.length;d++){const w=i[d];n[w]=on(r,u,w,h[w],e,!M(h,w))}}return o}function on(e,t,n,s,r,i){const o=e[n];if(o!=null){const f=M(o,"default");if(f&&s===void 0){const u=o.default;if(o.type!==Function&&!o.skipFactory&&I(u)){const{propsDefaults:h}=r;if(n in h)s=h[n];else{const d=at(r);s=h[n]=u.call(null,t),d()}}else s=u}o[0]&&(i&&!f?s=!1:o[1]&&(s===""||s===De(n))&&(s=!0))}return s}const Li=new WeakMap;function Qs(e,t,n=!1){const s=n?Li:t.propsCache,r=s.get(e);if(r)return r;const i=e.props,o={},f=[];let u=!1;if(!I(e)){const d=w=>{u=!0;const[C,P]=Qs(w,t,!0);Q(o,C),P&&f.push(...P)};!n&&t.mixins.length&&t.mixins.forEach(d),e.extends&&d(e.extends),e.mixins&&e.mixins.forEach(d)}if(!i&&!u)return K(e)&&s.set(e,Be),Be;if(T(i))for(let d=0;d<i.length;d++){const w=Ue(i[d]);Zn(w)&&(o[w]=V)}else if(i)for(const d in i){const w=Ue(d);if(Zn(w)){const C=i[d],P=o[w]=T(C)||I(C)?{type:C}:Q({},C);if(P){const D=es(Boolean,P.type),L=es(String,P.type);P[0]=D>-1,P[1]=L<0||D<L,(D>-1||M(P,"default"))&&f.push(w)}}}const h=[o,f];return K(e)&&s.set(e,h),h}function Zn(e){return e[0]!=="$"&&!tt(e)}function Qn(e){return e===null?"null":typeof e=="function"?e.name||"":typeof e=="object"&&e.constructor&&e.constructor.name||""}function kn(e,t){return Qn(e)===Qn(t)}function es(e,t){return T(t)?t.findIndex(n=>kn(n,e)):I(t)&&kn(t,e)?0:-1}const ks=e=>e[0]==="_"||e==="$stable",Tn=e=>T(e)?e.map(pe):[pe(e)],Hi=(e,t,n)=>{if(t._n)return t;const s=fi((...r)=>Tn(t(...r)),n);return s._c=!1,s},er=(e,t,n)=>{const s=e._ctx;for(const r in e){if(ks(r))continue;const i=e[r];if(I(i))t[r]=Hi(r,i,s);else if(i!=null){const o=Tn(i);t[r]=()=>o}}},tr=(e,t)=>{const n=Tn(t);e.slots.default=()=>n},nr=(e,t,n)=>{for(const s in t)(n||s!=="_")&&(e[s]=t[s])},Ni=(e,t,n)=>{const s=e.slots=Ys();if(e.vnode.shapeFlag&32){const r=t._;r?(nr(s,t,n),n&&ys(s,"_",r,!0)):er(t,s)}else t&&tr(e,t)},ji=(e,t,n)=>{const{vnode:s,slots:r}=e;let i=!0,o=V;if(s.shapeFlag&32){const f=t._;f?n&&f===1?i=!1:nr(r,t,n):(i=!t.$stable,er(t,r)),o=t}else t&&(tr(e,t),o={default:1});if(i)for(const f in r)!ks(f)&&o[f]==null&&delete r[f]};function ln(e,t,n,s,r=!1){if(T(e)){e.forEach((C,P)=>ln(C,t&&(T(t)?t[P]:t),n,s,r));return}if(vt(s)&&!r)return;const i=s.shapeFlag&4?Pn(s.component):s.el,o=r?null:i,{i:f,r:u}=e,h=t&&t.r,d=f.refs===V?f.refs={}:f.refs,w=f.setupState;if(h!=null&&h!==u&&(G(h)?(d[h]=null,M(w,h)&&(w[h]=null)):re(h)&&(h.value=null)),I(u))Se(u,f,12,[o,d]);else{const C=G(u),P=re(u);if(C||P){const D=()=>{if(e.f){const L=C?M(w,u)?w[u]:d[u]:u.value;r?T(L)&&an(L,i):T(L)?L.includes(i)||L.push(i):C?(d[u]=[i],M(w,u)&&(w[u]=d[u])):(u.value=[i],e.k&&(d[e.k]=u.value))}else C?(d[u]=o,M(w,u)&&(w[u]=o)):P&&(u.value=o,e.k&&(d[e.k]=o))};o?(D.id=-1,k(D,n)):D()}}}const $i=Symbol("_vte"),Ui=e=>e.__isTeleport,k=eo;function Vi(e){return Di(e)}function Di(e,t){const n=xs();n.__VUE__=!0;const{insert:s,remove:r,patchProp:i,createElement:o,createText:f,createComment:u,setText:h,setElementText:d,parentNode:w,nextSibling:C,setScopeId:P=oe,insertStaticContent:D}=e,L=(l,c,a,_=null,p=null,m=null,x=void 0,b=null,y=!!c.dynamicChildren)=>{if(l===c)return;l&&!Qe(l,c)&&(_=gt(l),ae(l,p,m,!0),l=null),c.patchFlag===-2&&(y=!1,c.dynamicChildren=null);const{type:g,ref:v,shapeFlag:O}=c;switch(g){case Nt:te(l,c,a,_);break;case ft:B(l,c,a,_);break;case Jt:l==null&&z(c,a,_,x);break;case ye:dt(l,c,a,_,p,m,x,b,y);break;default:O&1?ie(l,c,a,_,p,m,x,b,y):O&6?ht(l,c,a,_,p,m,x,b,y):(O&64||O&128)&&g.process(l,c,a,_,p,m,x,b,y,Xe)}v!=null&&p&&ln(v,l&&l.ref,m,c||l,!c)},te=(l,c,a,_)=>{if(l==null)s(c.el=f(c.children),a,_);else{const p=c.el=l.el;c.children!==l.children&&h(p,c.children)}},B=(l,c,a,_)=>{l==null?s(c.el=u(c.children||""),a,_):c.el=l.el},z=(l,c,a,_)=>{[l.el,l.anchor]=D(l.children,c,a,_,l.el,l.anchor)},N=({el:l,anchor:c},a,_)=>{let p;for(;l&&l!==c;)p=C(l),s(l,a,_),l=p;s(c,a,_)},W=({el:l,anchor:c})=>{let a;for(;l&&l!==c;)a=C(l),r(l),l=a;r(c)},ie=(l,c,a,_,p,m,x,b,y)=>{c.type==="svg"?x="svg":c.type==="math"&&(x="mathml"),l==null?R(c,a,_,p,m,x,b,y):$t(l,c,p,m,x,b,y)},R=(l,c,a,_,p,m,x,b)=>{let y,g;const{props:v,shapeFlag:O,transition:E,dirs:S}=l;if(y=l.el=o(l.type,m,v&&v.is,v),O&8?d(y,l.children):O&16&&ue(l.children,y,null,_,p,qt(l,m),x,b),S&&Re(l,null,_,"created"),me(y,l,l.scopeId,x,_),v){for(const $ in v)$!=="value"&&!tt($)&&i(y,$,null,v[$],m,_);"value"in v&&i(y,"value",null,v.value,m),(g=v.onVnodeBeforeMount)&&he(g,_,l)}S&&Re(l,null,_,"beforeMount");const A=Ki(p,E);A&&E.beforeEnter(y),s(y,c,a),((g=v&&v.onVnodeMounted)||A||S)&&k(()=>{g&&he(g,_,l),A&&E.enter(y),S&&Re(l,null,_,"mounted")},p)},me=(l,c,a,_,p)=>{if(a&&P(l,a),_)for(let m=0;m<_.length;m++)P(l,_[m]);if(p){let m=p.subTree;if(c===m){const x=p.vnode;me(l,x,x.scopeId,x.slotScopeIds,p.parent)}}},ue=(l,c,a,_,p,m,x,b,y=0)=>{for(let g=y;g<l.length;g++){const v=l[g]=b?Ce(l[g]):pe(l[g]);L(null,v,c,a,_,p,m,x,b)}},$t=(l,c,a,_,p,m,x)=>{const b=c.el=l.el;let{patchFlag:y,dynamicChildren:g,dirs:v}=c;y|=l.patchFlag&16;const O=l.props||V,E=c.props||V;let S;if(a&&Fe(a,!1),(S=E.onVnodeBeforeUpdate)&&he(S,a,c,l),v&&Re(c,l,a,"beforeUpdate"),a&&Fe(a,!0),(O.innerHTML&&E.innerHTML==null||O.textContent&&E.textContent==null)&&d(b,""),g?Pe(l.dynamicChildren,g,b,a,_,qt(c,p),m):x||j(l,c,b,null,a,_,qt(c,p),m,!1),y>0){if(y&16)Je(b,O,E,a,p);else if(y&2&&O.class!==E.class&&i(b,"class",null,E.class,p),y&4&&i(b,"style",O.style,E.style,p),y&8){const A=c.dynamicProps;for(let $=0;$<A.length;$++){const F=A[$],q=O[F],le=E[F];(le!==q||F==="value")&&i(b,F,q,le,p,a)}}y&1&&l.children!==c.children&&d(b,c.children)}else!x&&g==null&&Je(b,O,E,a,p);((S=E.onVnodeUpdated)||v)&&k(()=>{S&&he(S,a,c,l),v&&Re(c,l,a,"updated")},_)},Pe=(l,c,a,_,p,m,x)=>{for(let b=0;b<c.length;b++){const y=l[b],g=c[b],v=y.el&&(y.type===ye||!Qe(y,g)||y.shapeFlag&70)?w(y.el):a;L(y,g,v,null,_,p,m,x,!0)}},Je=(l,c,a,_,p)=>{if(c!==a){if(c!==V)for(const m in c)!tt(m)&&!(m in a)&&i(l,m,c[m],null,p,_);for(const m in a){if(tt(m))continue;const x=a[m],b=c[m];x!==b&&m!=="value"&&i(l,m,b,x,p,_)}"value"in a&&i(l,"value",c.value,a.value,p)}},dt=(l,c,a,_,p,m,x,b,y)=>{const g=c.el=l?l.el:f(""),v=c.anchor=l?l.anchor:f("");let{patchFlag:O,dynamicChildren:E,slotScopeIds:S}=c;S&&(b=b?b.concat(S):S),l==null?(s(g,a,_),s(v,a,_),ue(c.children||[],a,v,p,m,x,b,y)):O>0&&O&64&&E&&l.dynamicChildren?(Pe(l.dynamicChildren,E,a,p,m,x,b),(c.key!=null||p&&c===p.subTree)&&sr(l,c,!0)):j(l,c,a,v,p,m,x,b,y)},ht=(l,c,a,_,p,m,x,b,y)=>{c.slotScopeIds=b,l==null?c.shapeFlag&512?p.ctx.activate(c,a,_,x,y):Ut(c,a,_,p,m,x,y):An(l,c,y)},Ut=(l,c,a,_,p,m,x)=>{const b=l.component=ho(l,_,p);if(Bs(l)&&(b.ctx.renderer=Xe),po(b,!1,x),b.asyncDep){if(p&&p.registerDep(b,Y,x),!l.el){const y=b.subTree=$e(ft);B(null,y,c,a)}}else Y(b,l,c,a,p,m,x)},An=(l,c,a)=>{const _=c.component=l.component;if(Zi(l,c,a))if(_.asyncDep&&!_.asyncResolved){U(_,c,a);return}else _.next=c,oi(_.update),_.effect.dirty=!0,_.update();else c.el=l.el,_.vnode=c},Y=(l,c,a,_,p,m,x)=>{const b=()=>{if(l.isMounted){let{next:v,bu:O,u:E,parent:S,vnode:A}=l;{const Ke=rr(l);if(Ke){v&&(v.el=A.el,U(l,v,x)),Ke.asyncDep.then(()=>{l.isUnmounted||b()});return}}let $=v,F;Fe(l,!1),v?(v.el=A.el,U(l,v,x)):v=A,O&&Kt(O),(F=v.props&&v.props.onVnodeBeforeUpdate)&&he(F,S,v,A),Fe(l,!0);const q=zt(l),le=l.subTree;l.subTree=q,L(le,q,w(le.el),gt(le),l,p,m),v.el=q.el,$===null&&Qi(l,q.el),E&&k(E,p),(F=v.props&&v.props.onVnodeUpdated)&&k(()=>he(F,S,v,A),p)}else{let v;const{el:O,props:E}=c,{bm:S,m:A,parent:$}=l,F=vt(c);if(Fe(l,!1),S&&Kt(S),!F&&(v=E&&E.onVnodeBeforeMount)&&he(v,$,c),Fe(l,!0),O&&Ln){const q=()=>{l.subTree=zt(l),Ln(O,l.subTree,l,p,null)};F?c.type.__asyncLoader().then(()=>!l.isUnmounted&&q()):q()}else{const q=l.subTree=zt(l);L(null,q,a,_,l,p,m),c.el=q.el}if(A&&k(A,p),!F&&(v=E&&E.onVnodeMounted)){const q=c;k(()=>he(v,$,q),p)}(c.shapeFlag&256||$&&vt($.vnode)&&$.vnode.shapeFlag&256)&&l.a&&k(l.a,p),l.isMounted=!0,c=a=_=null}},y=l.effect=new gn(b,oe,()=>On(g),l.scope),g=l.update=()=>{y.dirty&&y.run()};g.i=l,g.id=l.uid,Fe(l,!0),g()},U=(l,c,a)=>{c.component=l;const _=l.vnode.props;l.vnode=c,l.next=null,Fi(l,c.props,_,a),ji(l,c.children,a),Te(),Gn(l),Ie()},j=(l,c,a,_,p,m,x,b,y=!1)=>{const g=l&&l.children,v=l?l.shapeFlag:0,O=c.children,{patchFlag:E,shapeFlag:S}=c;if(E>0){if(E&128){pt(g,O,a,_,p,m,x,b,y);return}else if(E&256){Ae(g,O,a,_,p,m,x,b,y);return}}S&8?(v&16&&Ye(g,p,m),O!==g&&d(a,O)):v&16?S&16?pt(g,O,a,_,p,m,x,b,y):Ye(g,p,m,!0):(v&8&&d(a,""),S&16&&ue(O,a,_,p,m,x,b,y))},Ae=(l,c,a,_,p,m,x,b,y)=>{l=l||Be,c=c||Be;const g=l.length,v=c.length,O=Math.min(g,v);let E;for(E=0;E<O;E++){const S=c[E]=y?Ce(c[E]):pe(c[E]);L(l[E],S,a,null,p,m,x,b,y)}g>v?Ye(l,p,m,!0,!1,O):ue(c,a,_,p,m,x,b,y,O)},pt=(l,c,a,_,p,m,x,b,y)=>{let g=0;const v=c.length;let O=l.length-1,E=v-1;for(;g<=O&&g<=E;){const S=l[g],A=c[g]=y?Ce(c[g]):pe(c[g]);if(Qe(S,A))L(S,A,a,null,p,m,x,b,y);else break;g++}for(;g<=O&&g<=E;){const S=l[O],A=c[E]=y?Ce(c[E]):pe(c[E]);if(Qe(S,A))L(S,A,a,null,p,m,x,b,y);else break;O--,E--}if(g>O){if(g<=E){const S=E+1,A=S<v?c[S].el:_;for(;g<=E;)L(null,c[g]=y?Ce(c[g]):pe(c[g]),a,A,p,m,x,b,y),g++}}else if(g>E)for(;g<=O;)ae(l[g],p,m,!0),g++;else{const S=g,A=g,$=new Map;for(g=A;g<=E;g++){const ne=c[g]=y?Ce(c[g]):pe(c[g]);ne.key!=null&&$.set(ne.key,g)}let F,q=0;const le=E-A+1;let Ke=!1,Hn=0;const Ze=new Array(le);for(g=0;g<le;g++)Ze[g]=0;for(g=S;g<=O;g++){const ne=l[g];if(q>=le){ae(ne,p,m,!0);continue}let de;if(ne.key!=null)de=$.get(ne.key);else for(F=A;F<=E;F++)if(Ze[F-A]===0&&Qe(ne,c[F])){de=F;break}de===void 0?ae(ne,p,m,!0):(Ze[de-A]=g+1,de>=Hn?Hn=de:Ke=!0,L(ne,c[de],a,null,p,m,x,b,y),q++)}const Nn=Ke?Bi(Ze):Be;for(F=Nn.length-1,g=le-1;g>=0;g--){const ne=A+g,de=c[ne],jn=ne+1<v?c[ne+1].el:_;Ze[g]===0?L(null,de,a,jn,p,m,x,b,y):Ke&&(F<0||g!==Nn[F]?Me(de,a,jn,2):F--)}}},Me=(l,c,a,_,p=null)=>{const{el:m,type:x,transition:b,children:y,shapeFlag:g}=l;if(g&6){Me(l.component.subTree,c,a,_);return}if(g&128){l.suspense.move(c,a,_);return}if(g&64){x.move(l,c,a,Xe);return}if(x===ye){s(m,c,a);for(let O=0;O<y.length;O++)Me(y[O],c,a,_);s(l.anchor,c,a);return}if(x===Jt){N(l,c,a);return}if(_!==2&&g&1&&b)if(_===0)b.beforeEnter(m),s(m,c,a),k(()=>b.enter(m),p);else{const{leave:O,delayLeave:E,afterLeave:S}=b,A=()=>s(m,c,a),$=()=>{O(m,()=>{A(),S&&S()})};E?E(m,A,$):$()}else s(m,c,a)},ae=(l,c,a,_=!1,p=!1)=>{const{type:m,props:x,ref:b,children:y,dynamicChildren:g,shapeFlag:v,patchFlag:O,dirs:E,cacheIndex:S}=l;if(O===-2&&(p=!1),b!=null&&ln(b,null,a,l,!0),S!=null&&(c.renderCache[S]=void 0),v&256){c.ctx.deactivate(l);return}const A=v&1&&E,$=!vt(l);let F;if($&&(F=x&&x.onVnodeBeforeUnmount)&&he(F,c,l),v&6)hr(l.component,a,_);else{if(v&128){l.suspense.unmount(a,_);return}A&&Re(l,null,c,"beforeUnmount"),v&64?l.type.remove(l,c,a,Xe,_):g&&!g.hasOnce&&(m!==ye||O>0&&O&64)?Ye(g,c,a,!1,!0):(m===ye&&O&384||!p&&v&16)&&Ye(y,c,a),_&&Mn(l)}($&&(F=x&&x.onVnodeUnmounted)||A)&&k(()=>{F&&he(F,c,l),A&&Re(l,null,c,"unmounted")},a)},Mn=l=>{const{type:c,el:a,anchor:_,transition:p}=l;if(c===ye){dr(a,_);return}if(c===Jt){W(l);return}const m=()=>{r(a),p&&!p.persisted&&p.afterLeave&&p.afterLeave()};if(l.shapeFlag&1&&p&&!p.persisted){const{leave:x,delayLeave:b}=p,y=()=>x(a,m);b?b(l.el,m,y):y()}else m()},dr=(l,c)=>{let a;for(;l!==c;)a=C(l),r(l),l=a;r(c)},hr=(l,c,a)=>{const{bum:_,scope:p,update:m,subTree:x,um:b,m:y,a:g}=l;ts(y),ts(g),_&&Kt(_),p.stop(),m&&(m.active=!1,ae(x,l,c,a)),b&&k(b,c),k(()=>{l.isUnmounted=!0},c),c&&c.pendingBranch&&!c.isUnmounted&&l.asyncDep&&!l.asyncResolved&&l.suspenseId===c.pendingId&&(c.deps--,c.deps===0&&c.resolve())},Ye=(l,c,a,_=!1,p=!1,m=0)=>{for(let x=m;x<l.length;x++)ae(l[x],c,a,_,p)},gt=l=>{if(l.shapeFlag&6)return gt(l.component.subTree);if(l.shapeFlag&128)return l.suspense.next();const c=C(l.anchor||l.el),a=c&&c[$i];return a?C(a):c};let Vt=!1;const Rn=(l,c,a)=>{l==null?c._vnode&&ae(c._vnode,null,null,!0):L(c._vnode||null,l,c,null,null,null,a),Vt||(Vt=!0,Gn(),Us(),Vt=!1),c._vnode=l},Xe={p:L,um:ae,m:Me,r:Mn,mt:Ut,mc:ue,pc:j,pbc:Pe,n:gt,o:e};let Fn,Ln;return{render:Rn,hydrate:Fn,createApp:Ai(Rn,Fn)}}function qt({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function Fe({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Ki(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function sr(e,t,n=!1){const s=e.children,r=t.children;if(T(s)&&T(r))for(let i=0;i<s.length;i++){const o=s[i];let f=r[i];f.shapeFlag&1&&!f.dynamicChildren&&((f.patchFlag<=0||f.patchFlag===32)&&(f=r[i]=Ce(r[i]),f.el=o.el),!n&&f.patchFlag!==-2&&sr(o,f)),f.type===Nt&&(f.el=o.el)}}function Bi(e){const t=e.slice(),n=[0];let s,r,i,o,f;const u=e.length;for(s=0;s<u;s++){const h=e[s];if(h!==0){if(r=n[n.length-1],e[r]<h){t[s]=r,n.push(s);continue}for(i=0,o=n.length-1;i<o;)f=i+o>>1,e[n[f]]<h?i=f+1:o=f;h<e[n[i]]&&(i>0&&(t[s]=n[i-1]),n[i]=s)}}for(i=n.length,o=n[i-1];i-- >0;)n[i]=o,o=t[o];return n}function rr(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:rr(t)}function ts(e){if(e)for(let t=0;t<e.length;t++)e[t].active=!1}const Wi=Symbol.for("v-scx"),qi=()=>Et(Wi),wt={};function Gt(e,t,n){return ir(e,t,n)}function ir(e,t,{immediate:n,deep:s,flush:r,once:i,onTrack:o,onTrigger:f}=V){if(t&&i){const R=t;t=(...me)=>{R(...me),ie()}}const u=Z,h=R=>s===!0?R:He(R,s===!1?1:void 0);let d,w=!1,C=!1;if(re(e)?(d=()=>e.value,w=ot(e)):nt(e)?(d=()=>h(e),w=!0):T(e)?(C=!0,w=e.some(R=>nt(R)||ot(R)),d=()=>e.map(R=>{if(re(R))return R.value;if(nt(R))return h(R);if(I(R))return Se(R,u,2)})):I(e)?t?d=()=>Se(e,u,2):d=()=>(P&&P(),fe(e,u,3,[D])):d=oe,t&&s){const R=d;d=()=>He(R())}let P,D=R=>{P=N.onStop=()=>{Se(R,u,4),P=N.onStop=void 0}},L;if(jt)if(D=oe,t?n&&fe(t,u,3,[d(),C?[]:void 0,D]):d(),r==="sync"){const R=qi();L=R.__watcherHandles||(R.__watcherHandles=[])}else return oe;let te=C?new Array(e.length).fill(wt):wt;const B=()=>{if(!(!N.active||!N.dirty))if(t){const R=N.run();(s||w||(C?R.some((me,ue)=>Ve(me,te[ue])):Ve(R,te)))&&(P&&P(),fe(t,u,3,[R,te===wt?void 0:C&&te[0]===wt?[]:te,D]),te=R)}else N.run()};B.allowRecurse=!!t;let z;r==="sync"?z=B:r==="post"?z=()=>k(B,u&&u.suspense):(B.pre=!0,u&&(B.id=u.uid),z=()=>On(B));const N=new gn(d,oe,z),W=Mr(),ie=()=>{N.stop(),W&&an(W.effects,N)};return t?n?B():te=N.run():r==="post"?k(N.run.bind(N),u&&u.suspense):N.run(),L&&L.push(ie),ie}function Gi(e,t,n){const s=this.proxy,r=G(e)?e.includes(".")?or(s,e):()=>s[e]:e.bind(s,s);let i;I(t)?i=t:(i=t.handler,n=t);const o=at(this),f=ir(r,i.bind(s),n);return o(),f}function or(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r<n.length&&s;r++)s=s[n[r]];return s}}function He(e,t=1/0,n){if(t<=0||!K(e)||e.__v_skip||(n=n||new Set,n.has(e)))return e;if(n.add(e),t--,re(e))He(e.value,t,n);else if(T(e))for(let s=0;s<e.length;s++)He(e[s],t,n);else if(_r(e)||et(e))e.forEach(s=>{He(s,t,n)});else if(yr(e)){for(const s in e)He(e[s],t,n);for(const s of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,s)&&He(e[s],t,n)}return e}const zi=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${Ue(t)}Modifiers`]||e[`${De(t)}Modifiers`];function Ji(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||V;let r=n;const i=t.startsWith("update:"),o=i&&zi(s,t.slice(7));o&&(o.trim&&(r=n.map(d=>G(d)?d.trim():d)),o.number&&(r=n.map(vr)));let f,u=s[f=Dt(t)]||s[f=Dt(Ue(t))];!u&&i&&(u=s[f=Dt(De(t))]),u&&fe(u,e,6,r);const h=s[f+"Once"];if(h){if(!e.emitted)e.emitted={};else if(e.emitted[f])return;e.emitted[f]=!0,fe(h,e,6,r)}}function lr(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const i=e.emits;let o={},f=!1;if(!I(e)){const u=h=>{const d=lr(h,t,!0);d&&(f=!0,Q(o,d))};!n&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}return!i&&!f?(K(e)&&s.set(e,null),null):(T(i)?i.forEach(u=>o[u]=null):Q(o,i),K(e)&&s.set(e,o),o)}function Ht(e,t){return!e||!Pt(t)?!1:(t=t.slice(2).replace(/Once$/,""),M(e,t[0].toLowerCase()+t.slice(1))||M(e,De(t))||M(e,t))}function zt(e){const{type:t,vnode:n,proxy:s,withProxy:r,propsOptions:[i],slots:o,attrs:f,emit:u,render:h,renderCache:d,props:w,data:C,setupState:P,ctx:D,inheritAttrs:L}=e,te=St(e);let B,z;try{if(n.shapeFlag&4){const W=r||s,ie=W;B=pe(h.call(ie,W,d,w,P,C,D)),z=f}else{const W=t;B=pe(W.length>1?W(w,{attrs:f,slots:o,emit:u}):W(w,null)),z=t.props?f:Yi(f)}}catch(W){it.length=0,Ft(W,e,1),B=$e(ft)}let N=B;if(z&&L!==!1){const W=Object.keys(z),{shapeFlag:ie}=N;W.length&&ie&7&&(i&&W.some(un)&&(z=Xi(z,i)),N=Ge(N,z,!1,!0))}return n.dirs&&(N=Ge(N,null,!1,!0),N.dirs=N.dirs?N.dirs.concat(n.dirs):n.dirs),n.transition&&(N.transition=n.transition),B=N,St(te),B}const Yi=e=>{let t;for(const n in e)(n==="class"||n==="style"||Pt(n))&&((t||(t={}))[n]=e[n]);return t},Xi=(e,t)=>{const n={};for(const s in e)(!un(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Zi(e,t,n){const{props:s,children:r,component:i}=e,{props:o,children:f,patchFlag:u}=t,h=i.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&u>=0){if(u&1024)return!0;if(u&16)return s?ns(s,o,h):!!o;if(u&8){const d=t.dynamicProps;for(let w=0;w<d.length;w++){const C=d[w];if(o[C]!==s[C]&&!Ht(h,C))return!0}}}else return(r||f)&&(!f||!f.$stable)?!0:s===o?!1:s?o?ns(s,o,h):!0:!!o;return!1}function ns(e,t,n){const s=Object.keys(t);if(s.length!==Object.keys(e).length)return!0;for(let r=0;r<s.length;r++){const i=s[r];if(t[i]!==e[i]&&!Ht(n,i))return!0}return!1}function Qi({vnode:e,parent:t},n){for(;t;){const s=t.subTree;if(s.suspense&&s.suspense.activeBranch===e&&(s.el=e.el),s===e)(e=t.vnode).el=n,t=t.parent;else break}}const ki=e=>e.__isSuspense;function eo(e,t){t&&t.pendingBranch?T(e)?t.effects.push(...e):t.effects.push(e):li(e)}const ye=Symbol.for("v-fgt"),Nt=Symbol.for("v-txt"),ft=Symbol.for("v-cmt"),Jt=Symbol.for("v-stc"),it=[];let se=null;function to(e=!1){it.push(se=e?null:[])}function no(){it.pop(),se=it[it.length-1]||null}let ut=1;function ss(e){ut+=e,e<0&&se&&(se.hasOnce=!0)}function so(e){return e.dynamicChildren=ut>0?se||Be:null,no(),ut>0&&se&&se.push(e),e}function ro(e,t,n,s,r,i){return so(fr(e,t,n,s,r,i,!0))}function io(e){return e?e.__v_isVNode===!0:!1}function Qe(e,t){return e.type===t.type&&e.key===t.key}const cr=({key:e})=>e??null,Ct=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?G(e)||re(e)||I(e)?{i:_e,r:e,k:t,f:!!n}:e:null);function fr(e,t=null,n=null,s=0,r=null,i=e===ye?0:1,o=!1,f=!1){const u={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&cr(t),ref:t&&Ct(t),scopeId:Ds,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:_e};return f?(In(u,n),i&128&&e.normalize(u)):n&&(u.shapeFlag|=G(n)?8:16),ut>0&&!o&&se&&(u.patchFlag>0||i&6)&&u.patchFlag!==32&&se.push(u),u}const $e=oo;function oo(e,t=null,n=null,s=0,r=null,i=!1){if((!e||e===vi)&&(e=ft),io(e)){const f=Ge(e,t,!0);return n&&In(f,n),ut>0&&!i&&se&&(f.shapeFlag&6?se[se.indexOf(e)]=f:se.push(f)),f.patchFlag=-2,f}if(bo(e)&&(e=e.__vccOpts),t){t=lo(t);let{class:f,style:u}=t;f&&!G(f)&&(t.class=pn(f)),K(u)&&(Ls(u)&&!T(u)&&(u=Q({},u)),t.style=hn(u))}const o=G(e)?1:ki(e)?128:Ui(e)?64:K(e)?4:I(e)?2:0;return fr(e,t,n,s,r,o,i,!0)}function lo(e){return e?Ls(e)||Xs(e)?Q({},e):e:null}function Ge(e,t,n=!1,s=!1){const{props:r,ref:i,patchFlag:o,children:f,transition:u}=e,h=t?fo(r||{},t):r,d={__v_isVNode:!0,__v_skip:!0,type:e.type,props:h,key:h&&cr(h),ref:t&&t.ref?n&&i?T(i)?i.concat(Ct(t)):[i,Ct(t)]:Ct(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:f,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==ye?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:u,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ge(e.ssContent),ssFallback:e.ssFallback&&Ge(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return u&&s&&Ks(d,u.clone(d)),d}function co(e=" ",t=0){return $e(Nt,null,e,t)}function pe(e){return e==null||typeof e=="boolean"?$e(ft):T(e)?$e(ye,null,e.slice()):typeof e=="object"?Ce(e):$e(Nt,null,String(e))}function Ce(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ge(e)}function In(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(T(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),In(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!Xs(t)?t._ctx=_e:r===3&&_e&&(_e.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else I(t)?(t={default:t,_ctx:_e},n=32):(t=String(t),s&64?(n=16,t=[co(t)]):n=8);e.children=t,e.shapeFlag|=n}function fo(...e){const t={};for(let n=0;n<e.length;n++){const s=e[n];for(const r in s)if(r==="class")t.class!==s.class&&(t.class=pn([t.class,s.class]));else if(r==="style")t.style=hn([t.style,s.style]);else if(Pt(r)){const i=t[r],o=s[r];o&&i!==o&&!(T(i)&&i.includes(o))&&(t[r]=i?[].concat(i,o):o)}else r!==""&&(t[r]=s[r])}return t}function he(e,t,n,s=null){fe(e,t,7,[n,s])}const uo=zs();let ao=0;function ho(e,t,n){const s=e.type,r=(t?t.appContext:e.appContext)||uo,i={uid:ao++,vnode:e,type:s,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new Pr(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Qs(s,r),emitsOptions:lr(s,r),emit:null,emitted:null,propsDefaults:V,inheritAttrs:s.inheritAttrs,ctx:V,data:V,props:V,attrs:V,slots:V,refs:V,setupState:V,setupContext:null,attrsProxy:null,slotsProxy: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 i.ctx={_:i},i.root=t?t.root:i,i.emit=Ji.bind(null,i),e.ce&&e.ce(i),i}let Z=null,It,cn;{const e=xs(),t=(n,s)=>{let r;return(r=e[n])||(r=e[n]=[]),r.push(s),i=>{r.length>1?r.forEach(o=>o(i)):r[0](i)}};It=t("__VUE_INSTANCE_SETTERS__",n=>Z=n),cn=t("__VUE_SSR_SETTERS__",n=>jt=n)}const at=e=>{const t=Z;return It(e),e.scope.on(),()=>{e.scope.off(),It(t)}},rs=()=>{Z&&Z.scope.off(),It(null)};function ur(e){return e.vnode.shapeFlag&4}let jt=!1;function po(e,t=!1,n=!1){t&&cn(t);const{props:s,children:r}=e.vnode,i=ur(e);Ri(e,s,i,t),Ni(e,r,n);const o=i?go(e,t):void 0;return t&&cn(!1),o}function go(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Ei);const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?mo(e):null,i=at(e);Te();const o=Se(s,e,0,[e.props,r]);if(Ie(),i(),ms(o)){if(o.then(rs,rs),t)return o.then(f=>{is(e,f,t)}).catch(f=>{Ft(f,e,0)});e.asyncDep=o}else is(e,o,t)}else ar(e,t)}function is(e,t,n){I(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:K(t)&&(e.setupState=Ns(t)),ar(e,n)}let os;function ar(e,t,n){const s=e.type;if(!e.render){if(!t&&os&&!s.render){const r=s.template||Sn(e).template;if(r){const{isCustomElement:i,compilerOptions:o}=e.appContext.config,{delimiters:f,compilerOptions:u}=s,h=Q(Q({isCustomElement:i,delimiters:f},o),u);s.render=os(r,h)}}e.render=s.render||oe}{const r=at(e);Te();try{Ci(e)}finally{Ie(),r()}}}const _o={get(e,t){return ee(e,"get",""),e[t]}};function mo(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,_o),slots:e.slots,emit:e.emit,expose:t}}function Pn(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Ns(Qr(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in st)return st[n](e)},has(t,n){return n in t||n in st}})):e.proxy}function bo(e){return I(e)&&"__vccOpts"in e}const yo=(e,t)=>kr(e,t,jt),xo="3.4.32";/**
14
+ * @vue/runtime-dom v3.4.32
15
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
16
+ * @license MIT
17
+ **/const wo="http://www.w3.org/2000/svg",vo="http://www.w3.org/1998/Math/MathML",be=typeof document<"u"?document:null,ls=be&&be.createElement("template"),Eo={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t==="svg"?be.createElementNS(wo,e):t==="mathml"?be.createElementNS(vo,e):n?be.createElement(e,{is:n}):be.createElement(e);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>be.createTextNode(e),createComment:e=>be.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>be.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,i){const o=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===i||!(r=r.nextSibling)););else{ls.innerHTML=s==="svg"?`<svg>${e}</svg>`:s==="mathml"?`<math>${e}</math>`:e;const f=ls.content;if(s==="svg"||s==="mathml"){const u=f.firstChild;for(;u.firstChild;)f.appendChild(u.firstChild);f.removeChild(u)}t.insertBefore(f,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Co=Symbol("_vtc");function Oo(e,t,n){const s=e[Co];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const cs=Symbol("_vod"),So=Symbol("_vsh"),To=Symbol(""),Io=/(^|;)\s*display\s*:/;function Po(e,t,n){const s=e.style,r=G(n);let i=!1;if(n&&!r){if(t)if(G(t))for(const o of t.split(";")){const f=o.slice(0,o.indexOf(":")).trim();n[f]==null&&Ot(s,f,"")}else for(const o in t)n[o]==null&&Ot(s,o,"");for(const o in n)o==="display"&&(i=!0),Ot(s,o,n[o])}else if(r){if(t!==n){const o=s[To];o&&(n+=";"+o),s.cssText=n,i=Io.test(n)}}else t&&e.removeAttribute("style");cs in e&&(e[cs]=i?s.display:"",e[So]&&(s.display="none"))}const fs=/\s*!important$/;function Ot(e,t,n){if(T(n))n.forEach(s=>Ot(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Ao(e,t);fs.test(n)?e.setProperty(De(s),n.replace(fs,""),"important"):e[s]=n}}const us=["Webkit","Moz","ms"],Yt={};function Ao(e,t){const n=Yt[t];if(n)return n;let s=Ue(t);if(s!=="filter"&&s in e)return Yt[t]=s;s=bs(s);for(let r=0;r<us.length;r++){const i=us[r]+s;if(i in e)return Yt[t]=i}return t}const as="http://www.w3.org/1999/xlink";function ds(e,t,n,s,r,i=Ir(t)){s&&t.startsWith("xlink:")?n==null?e.removeAttributeNS(as,t.slice(6,t.length)):e.setAttributeNS(as,t,n):n==null||i&&!ws(n)?e.removeAttribute(t):e.setAttribute(t,i?"":ze(n)?String(n):n)}function Mo(e,t,n,s){if(t==="innerHTML"||t==="textContent"){if(n===null)return;e[t]=n;return}const r=e.tagName;if(t==="value"&&r!=="PROGRESS"&&!r.includes("-")){const o=r==="OPTION"?e.getAttribute("value")||"":e.value,f=n==null?"":String(n);(o!==f||!("_value"in e))&&(e.value=f),n==null&&e.removeAttribute(t),e._value=n;return}let i=!1;if(n===""||n==null){const o=typeof e[t];o==="boolean"?n=ws(n):n==null&&o==="string"?(n="",i=!0):o==="number"&&(n=0,i=!0)}try{e[t]=n}catch{}i&&e.removeAttribute(t)}function Ro(e,t,n,s){e.addEventListener(t,n,s)}function Fo(e,t,n,s){e.removeEventListener(t,n,s)}const hs=Symbol("_vei");function Lo(e,t,n,s,r=null){const i=e[hs]||(e[hs]={}),o=i[t];if(s&&o)o.value=s;else{const[f,u]=Ho(t);if(s){const h=i[t]=$o(s,r);Ro(e,f,h,u)}else o&&(Fo(e,f,o,u),i[t]=void 0)}}const ps=/(?:Once|Passive|Capture)$/;function Ho(e){let t;if(ps.test(e)){t={};let s;for(;s=e.match(ps);)e=e.slice(0,e.length-s[0].length),t[s[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):De(e.slice(2)),t]}let Xt=0;const No=Promise.resolve(),jo=()=>Xt||(No.then(()=>Xt=0),Xt=Date.now());function $o(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;fe(Uo(s,n.value),t,5,[s])};return n.value=e,n.attached=jo(),n}function Uo(e,t){if(T(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const gs=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Vo=(e,t,n,s,r,i)=>{const o=r==="svg";t==="class"?Oo(e,s,o):t==="style"?Po(e,n,s):Pt(t)?un(t)||Lo(e,t,n,s,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Do(e,t,s,o))?(Mo(e,t,s),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&ds(e,t,s,o,i,t!=="value")):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),ds(e,t,s,o))};function Do(e,t,n,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&gs(t)&&I(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const r=e.tagName;if(r==="IMG"||r==="VIDEO"||r==="CANVAS"||r==="SOURCE")return!1}return gs(t)&&G(n)?!1:t in e}const Ko=Q({patchProp:Vo},Eo);let _s;function Bo(){return _s||(_s=Vi(Ko))}const Wo=(...e)=>{const t=Bo().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=Go(s);if(!r)return;const i=t._component;!I(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.innerHTML="";const o=n(r,!1,qo(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o},t};function qo(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function Go(e){return G(e)?document.querySelector(e):e}const zo=(e,t)=>{const n=e.__vccOpts||e;for(const[s,r]of t)n[s]=r;return n},Jo={};function Yo(e,t){return to(),ro("div")}const Xo=zo(Jo,[["render",Yo]]),Zo=Wo(Xo);Zo.mount("#app");
@@ -0,0 +1,231 @@
1
+ @use "../../assets/scss/variables.scss" as *;
2
+
3
+ // Global button styles
4
+ .button {
5
+ border: none;
6
+ cursor: pointer;
7
+ font-weight: 600;
8
+ text-align: center;
9
+ display: inline-block;
10
+ vertical-align: middle;
11
+ font-size: $font-size-xsm;
12
+ line-height: 27px;
13
+
14
+ &:disabled {
15
+ opacity: 0.3;
16
+ cursor: auto;
17
+ pointer-events: none;
18
+ }
19
+
20
+ &--primary {
21
+ min-width: 120px;
22
+ padding: 3px 15px;
23
+ background-color: $blue-600;
24
+ color: $white;
25
+ border-radius: 0.4rem;
26
+ transition: $transition-background-color, $transition-box-shadow;
27
+
28
+ &:hover,
29
+ &:active,
30
+ &:focus,
31
+ &:target {
32
+ background-color: $blue-700;
33
+ box-shadow: $box-shadow;
34
+ }
35
+
36
+ &-dark {
37
+ min-width: 120px;
38
+ padding: 3px 15px;
39
+ background-color: $blue-600;
40
+ color: $white;
41
+ border-radius: 0.4rem;
42
+ transition: $transition-background-color, $transition-box-shadow;
43
+
44
+ &:hover,
45
+ &:active,
46
+ &:focus,
47
+ &:target {
48
+ background-color: $blue-700;
49
+ box-shadow: 0 0 15px $blue-600;
50
+ }
51
+ }
52
+ }
53
+
54
+ &--secondary {
55
+ min-width: 120px;
56
+ padding: 3px 15px;
57
+ color: $blue-600;
58
+ border: 1px solid $blue-600;
59
+ border-radius: 0.4rem;
60
+ transition: $transition-color, $transition-border;
61
+
62
+ &:hover,
63
+ &:active,
64
+ &:focus,
65
+ &:target {
66
+ color: $blue-700;
67
+ border: 1px solid $blue-700;
68
+ }
69
+
70
+ &-dark {
71
+ color: $white;
72
+ border: 1px solid $white;
73
+ min-width: 120px;
74
+ padding: 3px 15px;
75
+ border-radius: 0.4rem;
76
+
77
+ // Missing hover and active states
78
+ }
79
+ }
80
+ }
81
+
82
+ // Global font sizes classes
83
+
84
+ .font-size-xxsm {
85
+ font-size: $font-size-xxsm; // 12px
86
+ }
87
+ .font-size-xsm {
88
+ font-size: $font-size-xsm; // 14px
89
+ }
90
+ .font-size-sm {
91
+ font-size: $font-size-sm; // 16px
92
+ }
93
+
94
+ .font-size-md {
95
+ font-size: $font-size-md; // 22px
96
+ }
97
+ .font-size-lg {
98
+ font-size: $font-size-lg; // 30px
99
+ }
100
+ .font-size-xlg {
101
+ font-size: $font-size-xlg; // 40px
102
+ }
103
+
104
+ // Global sub menus styles.
105
+ .product-sub-nav-wrapper__inner {
106
+ padding: 2px 30px 10px 30px;
107
+ @include md {
108
+ padding: 1em 0 1em 0;
109
+ }
110
+ }
111
+ .product-sub-nav-wrapper h3 {
112
+ font-weight: 700;
113
+ color: $blue-800;
114
+ font-size: $font-size-lg;
115
+ }
116
+
117
+ .product-sub-nav--items-wrapper {
118
+ width: 100%;
119
+ @include md {
120
+ width: auto;
121
+ }
122
+ }
123
+
124
+ .splide__slide {
125
+ color: $blue-900;
126
+ }
127
+
128
+ // Mirsaic
129
+
130
+ .mirsaic {
131
+ &--light {
132
+ background-image: url("https://a.storyblok.com/f/230581/1202x489/1cad3b882a/mirsaic-light.svg?cv=1695126163505"),
133
+ linear-gradient(155deg, $blue-100 0%, $white 60%);
134
+ background-repeat: repeat-x, no-repeat;
135
+ background-size:
136
+ 984px auto,
137
+ 100% 763px;
138
+ background-position: center top;
139
+ }
140
+
141
+ &--dark {
142
+ background-image: url("https://a.storyblok.com/f/230581/1202x489/e76c5d687c/mirsaic-dark.svg?cv=1695126163753"),
143
+ linear-gradient(155deg, #143a67 0%, $blue-900 100%);
144
+ background-repeat: repeat-x, no-repeat;
145
+ background-size: 984px, cover;
146
+ background-position: center top;
147
+ }
148
+ }
149
+
150
+ // Tables styles
151
+
152
+ table {
153
+ width: 100%;
154
+ font-family: $font-opensans;
155
+ font-size: $font-size-sm;
156
+ strong {
157
+ font-weight: 600;
158
+ }
159
+ a {
160
+ color: $blue-600;
161
+ text-decoration: underline;
162
+ }
163
+ thead {
164
+ background-color: $blue-300;
165
+ th {
166
+ padding: 10px;
167
+ }
168
+ }
169
+ tbody {
170
+ td {
171
+ padding: 20px 10px;
172
+ }
173
+
174
+ tr:nth-child(odd) {
175
+ td {
176
+ background-color: $blue-100;
177
+ }
178
+ }
179
+ }
180
+ }
181
+
182
+ // font variables
183
+ @font-face {
184
+ font-family: "Oscine";
185
+ src: url("/fonts/Oscine_Lt.woff2") format("woff2");
186
+ font-weight: 300;
187
+ font-style: normal;
188
+ font-display: swap;
189
+ }
190
+ @font-face {
191
+ font-family: "Oscine";
192
+ src: url("/fonts/Oscine_Rg.woff2") format("woff2");
193
+ font-weight: 400;
194
+ font-style: normal;
195
+ font-display: swap;
196
+ }
197
+ @font-face {
198
+ font-family: "Oscine";
199
+ src: url("/fonts/Oscine_Bd.woff2") format("woff2");
200
+ font-weight: 700;
201
+ font-style: normal;
202
+ font-display: swap;
203
+ }
204
+ @font-face {
205
+ font-family: "OpenSans";
206
+ src: url("/fonts/OpenSans-Light.woff2") format("woff2");
207
+ font-weight: 300;
208
+ font-style: normal;
209
+ font-display: swap;
210
+ }
211
+ @font-face {
212
+ font-family: "OpenSans";
213
+ src: url("/fonts/OpenSans-Regular.woff2") format("woff2");
214
+ font-weight: 400;
215
+ font-style: normal;
216
+ font-display: swap;
217
+ }
218
+ @font-face {
219
+ font-family: "OpenSans";
220
+ src: url("/fonts/OpenSans-Medium.woff2") format("woff2");
221
+ font-weight: 500;
222
+ font-style: normal;
223
+ font-display: swap;
224
+ }
225
+ @font-face {
226
+ font-family: "OpenSans";
227
+ src: url("/fonts/OpenSans-SemiBold.woff2") format("woff2");
228
+ font-weight: 600;
229
+ font-style: normal;
230
+ font-display: swap;
231
+ }
@@ -0,0 +1,4 @@
1
+ @forward "reset";
2
+ @forward "normalize";
3
+ @forward "reset";
4
+ @forward "globals";