@fmidev/smartmet-alert-client 4.7.1 → 4.7.2-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@fmidev/smartmet-alert-client",
3
- "version": "4.7.1",
3
+ "version": "4.7.2-beta.0",
4
4
  "description": "Web application for viewing weather and flood alerts",
5
5
  "author": "Finnish Meteorological Institute",
6
6
  "license": "MIT",
7
7
  "main": "dist/index.mjs",
8
8
  "module": "dist/index.mjs",
9
+ "unpkg": "dist/index.js",
10
+ "jsdelivr": "dist/index.js",
9
11
  "type": "module",
10
12
  "exports": {
11
13
  ".": {
12
- "import": "./dist/index.mjs",
13
- "require": "./dist/index.js"
14
+ "import": "./dist/index.mjs"
14
15
  },
15
16
  "./vue": {
16
17
  "import": "./dist/vue/index.mjs",
@@ -15,6 +15,6 @@
15
15
 
16
16
  <body>
17
17
  <smartmet-alert-client language="fi" theme="dark"></smartmet-alert-client>
18
- <script type="module" src="./index.js"></script>
18
+ <script src="./index.js"></script>
19
19
  </body>
20
20
  </html>
@@ -10,6 +10,6 @@
10
10
 
11
11
  <body>
12
12
  <smartmet-alert-client language="en"></smartmet-alert-client>
13
- <script type="module" src="./index.js"></script>
13
+ <script src="./index.js"></script>
14
14
  </body>
15
15
  </html>
@@ -0,0 +1,15 @@
1
+ <!doctype html>
2
+ <html lang="fi">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="width=device-width, initial-scale=1.0, maximum-scale=5.0, minimum-scale=1.0, user-scalable=yes" />
8
+ <title>SmartMet Alert Client — ESM</title>
9
+ </head>
10
+
11
+ <body>
12
+ <smartmet-alert-client language="fi"></smartmet-alert-client>
13
+ <script type="module" src="./index.mjs"></script>
14
+ </body>
15
+ </html>
@@ -10,6 +10,6 @@
10
10
 
11
11
  <body>
12
12
  <smartmet-alert-client language="fi"></smartmet-alert-client>
13
- <script type="module" src="./index.js"></script>
13
+ <script src="./index.js"></script>
14
14
  </body>
15
15
  </html>
@@ -10,6 +10,6 @@
10
10
 
11
11
  <body>
12
12
  <smartmet-alert-client language="sv"></smartmet-alert-client>
13
- <script type="module" src="./index.js"></script>
13
+ <script src="./index.js"></script>
14
14
  </body>
15
15
  </html>
package/vite.config.js CHANGED
@@ -5,7 +5,6 @@ import { visualizer } from 'rollup-plugin-visualizer'
5
5
  import { defineConfig } from 'vite'
6
6
  import banner from 'vite-plugin-banner'
7
7
  import dts from 'vite-plugin-dts'
8
- import { viteStaticCopy } from 'vite-plugin-static-copy'
9
8
 
10
9
  import pkg from './package.json'
11
10
 
@@ -31,17 +30,7 @@ export default defineConfig({
31
30
  outDir: 'dist/vue',
32
31
  }),
33
32
  ]
34
- : [
35
- viteStaticCopy({
36
- targets: [
37
- {
38
- src: 'dist/index.mjs',
39
- dest: './',
40
- rename: 'index.js',
41
- },
42
- ],
43
- }),
44
- ]),
33
+ : []),
45
34
  ],
46
35
  build:
47
36
  buildMode === 'vue'
@@ -83,35 +72,55 @@ export default defineConfig({
83
72
  cssCodeSplit: false,
84
73
  cssMinify: true,
85
74
  chunkSizeWarningLimit: 1500,
75
+ lib: {
76
+ entry: fileURLToPath(new URL('./src/main.ts', import.meta.url)),
77
+ name: 'SmartMetAlertClient',
78
+ formats: ['es', 'iife'],
79
+ },
86
80
  rollupOptions: {
87
- output: {
88
- entryFileNames: 'index.mjs',
89
- compact: true,
90
- inlineDynamicImports: false,
91
- manualChunks: (id) => {
92
- // XML parsers as separate chunk
93
- if (id.includes('@xmldom/xmldom') || id.includes('xpath')) {
94
- return 'xml-parser'
95
- }
96
- // Locale files as separate chunks
97
- if (id.includes('/locales/')) {
98
- const match = id.match(/locales\/(\w+)\.json/)
99
- if (match) {
100
- return `locale-${match[1]}`
81
+ output: [
82
+ {
83
+ format: 'es',
84
+ entryFileNames: 'index.mjs',
85
+ chunkFileNames: '[name]-[hash].js',
86
+ compact: true,
87
+ inlineDynamicImports: false,
88
+ manualChunks: (id) => {
89
+ // XML parsers as separate chunk
90
+ if (id.includes('@xmldom/xmldom') || id.includes('xpath')) {
91
+ return 'xml-parser'
92
+ }
93
+ // Locale files as separate chunks
94
+ if (id.includes('/locales/')) {
95
+ const match = id.match(/locales\/(\w+)\.json/)
96
+ if (match) {
97
+ return `locale-${match[1]}`
98
+ }
101
99
  }
102
- }
103
- // Core vendor libraries
104
- if (id.includes('node_modules')) {
105
- if (id.includes('vue')) {
106
- return 'vendor'
100
+ // Core vendor libraries
101
+ if (id.includes('node_modules')) {
102
+ if (id.includes('vue')) {
103
+ return 'vendor'
104
+ }
107
105
  }
108
- }
106
+ },
107
+ generatedCode: {
108
+ constBindings: true,
109
+ objectShorthand: true,
110
+ },
109
111
  },
110
- generatedCode: {
111
- constBindings: true,
112
- objectShorthand: true,
112
+ {
113
+ format: 'iife',
114
+ name: 'SmartMetAlertClient',
115
+ entryFileNames: 'index.js',
116
+ compact: true,
117
+ inlineDynamicImports: true,
118
+ generatedCode: {
119
+ constBindings: true,
120
+ objectShorthand: true,
121
+ },
113
122
  },
114
- },
123
+ ],
115
124
  },
116
125
  },
117
126
  css: {
@@ -129,5 +138,13 @@ export default defineConfig({
129
138
  },
130
139
  define: {
131
140
  __APP_VERSION__: JSON.stringify(pkg.version),
141
+ // In lib mode Vite does NOT auto-replace process.env.NODE_ENV, so Vue 3's
142
+ // dev-mode guards end up referencing `process` in the browser. The Vue
143
+ // library build (consumed by another app's bundler) leaves it alone so the
144
+ // consumer decides; the web component build is consumed as-is and must
145
+ // hard-code production.
146
+ ...(buildMode !== 'vue'
147
+ ? { 'process.env.NODE_ENV': JSON.stringify('production') }
148
+ : {}),
132
149
  },
133
150
  })
package/dist/index.html DELETED
@@ -1,20 +0,0 @@
1
- <!doctype html>
2
- <html lang="fi">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <meta
6
- name="viewport"
7
- content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
8
- <title>SmartMet Alert Client</title>
9
- <script type="module" crossorigin src="./index.mjs"></script>
10
- <link rel="modulepreload" crossorigin href="./vendor-DlLAhxdV.js">
11
- <link rel="modulepreload" crossorigin href="./xml-parser-CQ0RiKzI.js">
12
- <link rel="modulepreload" crossorigin href="./locale-en-BQoIe2mq.js">
13
- <link rel="modulepreload" crossorigin href="./locale-fi-Ck7cQBVl.js">
14
- <link rel="modulepreload" crossorigin href="./locale-sv-TehgVmro.js">
15
- </head>
16
-
17
- <body>
18
- <smartmet-alert-client></smartmet-alert-client>
19
- </body>
20
- </html>
@@ -1,8 +0,0 @@
1
- /**
2
- * name: @fmidev/smartmet-alert-client
3
- * version: v4.7.1
4
- * description: Web application for viewing weather and flood alerts
5
- * author: Finnish Meteorological Institute
6
- * homepage: https://github.com/fmidev/smartmet-alert-client#readme
7
- */
8
- const e="Note! If the map is gray and no date is shown on the map, the warnings have not been updated.",n="Ensure network connection. Check that you have updated your browser and operating system.",i="List of supported browsers",t="https://en.ilmatieteenlaitos.fi/site-information",o="An error occurred while searching for the warnings. Please try again in a moment.",a="Warnings for following land areas",s="Warnings for following sea areas",r="Warnings in effect, 5 days",c="Warnings in effect, five days",l="Show all warnings",d="Mon",h="Tue",f="Wed",p="Thu",g="Fri",u="Sat",v="Sun",m="Monday",w="Tuesday",L="Wednesday",y="Thursday",W="Friday",D="Saturday",S="Sunday",k="January",b="February",F="March",P="April",H="May",I="June",K="July",j="August",T="September",A="October",N="November",B="December",M="",x="Warnings",C="Updated",E="at",O="warning valid between",U="Many warnings in effect",z="No particular awareness is needed",R="Potentially dangerous",V="Dangerous",G="Very dangerous",q="No warnings in effect",J="No warnings",Y="info_en",Z="Pirkanmaa",Q="Kainuu",_="Uusimaa",X="Satakunta",$="Kymenlaakso",ee="Ostrobothnia",ne="Lapland",ie="Åland",te="Quark",oe="Sea of Åland",ae="Sea of Archipelago",se="Utsjoki",re="Inari",ce="Muonio",le="Kolari",de="Savukoski",he="Pelkosenniemi",fe="Salla",pe="Pello",ge="Ylitornio",ue="Rovaniemi",ve="Tornio",me="Tervola",we="Keminmaa",Le="Kemi",ye="Simo",We="Ranua",De="Posio",Se="Kuusamo",ke="Taivalkoski",be="Cold warning",Fe="Flood warning",Pe="Wildfire warning",He="Grass fire warning",Ie="Heat wave warning",Ke="Pedestrian weather warning",je="Heavy rain warning",Te="Ice accretion warning",Ae="Thunderstorm wind gusts for sea areas",Ne="Warning for high sea level",Be="Warning for low sea level",Me="Wave height warning",xe="Wind warning for sea areas",Ce="Severe thunderstorm warning",Ee="Traffic weather warning",Oe="UV advisory",Ue="Wind warning for land areas",ze="Cold stress complicates outdoor activities. People with chronic illnesses will experience more symptoms than usual.",Re="Cold stress will significantly complicate all outdoor activities. Symptoms experienced by people with chronic illnesses will become more difficult. Risk of frostbite.",Ve="Cold stress will significantly complicate all outdoor activities. Symptoms experienced by people with chronic illnesses will become substantially more difficult. Significant risk of frostbite.",Ge="Flooding of fields and forests and minor disruptions are possible.",qe="Flood can cause damages to buildings and significant disruptions to traffic.",Je="Significant risk to human safety and to electricity, water, and telecommunication networks. Flooded buildings and traffic disruptions.",Ye="Danger of wildfires is pronounced due to soil dryness. In case of windy weather wildfires spread quickly.",Ze="Danger of wildfires is very pronounced due to soil dryness. In case of windy weather wildfires spread quickly.",Qe="Danger of uncontrolled wildfires is pronounced due to soil dryness. The fires spread likely quickly.",_e="Danger of grass fires is pronounced due to soil dryness. In case of windy weather grass fires spread quickly.",Xe="",$e="",en="Many people with chronic illness will experience more symptoms than usual.",nn="People with chronic illness will experience significant and difficult symptoms. Heat stress will limit the work capability of healthy people.",tn="This warning level is unlikely with our current climate. Causes very significant health problems. Heat stress will limit the work capability of healthy people.",on="Pavements are very slippery. Significant risk for slipping accidents.",an="",sn="",rn="Flooding expected in flood-prone underpasses and in low-lying areas. Risk for aquaplaning in road traffic.",cn="Widespread flooding in built-up regions. Underpasses may be completely filled with water. Streaming flood water can cause danger.",ln="Severe flooding in urban areas as well as rural areas. Flood ponds and streaming flood water cause danger.",dn="Heavy ice accretion may reduce a vessel's stability and cause hazard for operation.",hn="Heavy ice accretion may reduce a vessel's stability and cause hazard for operation.",fn="Heavy ice accretion may reduce a vessel's stability and cause hazard for operation.",pn="Possibly dangerous for recreational crafts and small boats.",gn="Possibly dangerous for recreational crafts and small boats.",un="Possibly dangerous for recreational crafts and small boats.",vn="High water level: Coastal flooding in low-lying areas.",mn="Flooding on coastal roads may cause roads to be closed. Flood-prone sites will get wet.",wn="Flooding on coastal roads, also in locations without known prior floods. Buildings surrounded by flood water. Significant water damage in built-up areas.",Ln="Low water level: Difficulties in cargo transport.",yn="",Wn="",Dn="Possibly dangerous for recreational crafts and small boats.",Sn="Difficulties and danger for marine traffic.",kn="Significant difficulties, delays and danger for marine traffic.",bn="Possibly dangerous for recreational crafts and small boats.",Fn="Difficulties and danger for marine traffic.",Pn="Significant difficulties, delays and danger for marine traffic.",Hn="Local and sporadic wind damage. Mostly individual fallen trees. Brief and local disruptions in electricity supply.",In="Wind damage in numerous areas, including areas of uniform damage. Locally a need for significant debris clearance, long-lasting electricity outages and disruptions in telecommunication networks.",Kn="Widespread wind damage areas with significant need for debris clearance. Long-lasting disruptions in electricity and drinking water supply as well as telecommunication networks.",jn="Disruptions in traffic flow. Enhanced risk of traffic accidents.",Tn="Major traffic disruptions possible. Significant risk of traffic accidents.",An="Major traffic disruptions likely and traffic connections may be completely broken. Significant risk of traffic accidents.",Nn="UV radiation is strong. Unprotected skin may burn when exposed to direct sunlight.",Bn="",Mn="",xn="Individual fallen trees in widespread areas. Brief electricity outages.",Cn="Wind damage in numerous areas, including areas of uniform damage. Locally a need for significant debris clearance, long-lasting electricity outages and disruptions in telecommunication networks.",En="Widespread wind damage areas with significant need for debris clearance. Long-lasting disruptions in electricity and drinking water supply as well as telecommunication networks.",On="en-US",Un="en",zn="Finnish Meteorological Institute",Rn="Flood Centre",Vn="https://www.vesi.fi/",Gn="Watershed forecasts and flood warnings",qn="Impact description",Jn="Zoom in",Yn="Zoom out",Zn="Use the arrow keys to move the map",Qn="Magnifiable map",_n="Go to text-formatted warnings",Xn="Warnings",$n="from",ei="in zero",ni="in one",ii="in two",ti="in three",oi="in four",ai="in five",si="in six",ri="in seven",ci="in eight",li="in nine",di="in ten",hi="in eleven",fi="in twelve",pi="in thirteen",gi="in fourteen",ui="in fifteen",vi="in sixteen",mi="in seventeen",wi="in eighteen",Li="in nineteen",yi="in twenty",Wi="in twenty-one",Di="in twenty-two",Si="in twenty-three",ki="in twenty-four",bi="in twenty-five",Fi="in twenty-six",Pi="in twenty-seven",Hi="in twenty-eight",Ii="in twenty-nine",Ki="in thirty",ji="in thirty-one",Ti="in thirty-two",Ai="in thirty-three",Ni="in thirty-four",Bi="in thirty-five",Mi="in thirty-six",xi="in thirty-seven",Ci="in thirty-eight",Ei="in thirty-nine",Oi="in forty",Ui="in forty-one",zi="in forty-two",Ri="in forty-three",Vi="in forty-four",Gi="in forty-five",qi="land area",Ji="land areas",Yi="sea area",Zi="sea areas",Qi="Go to next section.",_i="Show current warnings for",Xi="Close current warnings for",$i=".",et="Map legends",nt="Show legends",it="Hide legends",tt="warnings in effect in",ot="and",at="Gray scale",st="On",rt="Off",ct={notInitializedStart:e,notInitializedEnd:n,supportedBrowsers:i,supportedBrowsersLink:t,failed:o,regionLand:a,regionSea:s,validWarnings:r,validWarningsAriaLabel:c,showWarnings:l,ma:d,ti:h,ke:f,to:p,pe:g,la:u,su:v,maFull:m,tiFull:w,keFull:L,toFull:y,peFull:W,laFull:D,suFull:S,month1:k,month2:b,month3:F,month4:P,month5:H,month6:I,month7:K,month8:j,month9:T,month10:A,month11:N,month12:B,monthPartitive:M,warnings:x,updated:C,atTime:E,valid:O,severalWarnings:U,warningLevel1:z,warningLevel2:R,warningLevel3:V,warningLevel4:G,noWarnings:q,popupNoWarnings:J,womlInfoField:Y,"Kanta-Häme":"Kanta-Häme",Pirkanmaa:Z,"Päijät-Häme":"Päijät-Häme","Etelä-Karjala":"South Karelia","Etelä-Savo":"Etelä-Savo","Pohjois-Savo":"Pohjois-Savo","Pohjois-Karjala":"North Karelia","Keski-Suomi":"Central Finland","Etelä-Pohjanmaa":"South Ostrobothnia",Kainuu:Q,Uusimaa:_,"Varsinais-Suomi":"Varsinais-Suomi",Satakunta:X,Kymenlaakso:$,Pohjanmaa:ee,"Keski-Pohjanmaa":"Central Ostrobothnia","Pohjois-Pohjanmaa":"North Ostrobothnia","Pohjois-Pohjanmaan länsiosa":"Western part of Northern Ostrobothnia",Lappi:ne,Ahvenanmaa:ie,Merenkurkku:te,"Suomenlahden itäosa":"Eastern Gulf of Finland","Pohjois-Itämeren länsiosa":"Western Part of Northern Baltic","Selkämeren eteläosa":"Southern Sea of Bothnia","Perämeren pohjoisosa":"Northern Bay of Bothnia",Ahvenanmeri:oe,Saaristomeri:ae,"Perämeren eteläosa":"Southern Bay of Bothnia","Selkämeren pohjoisosa":"Northern Sea of Bothnia","Suomenlahden länsiosa":"Western Gulf of Finland","Pohjois-Itämeren itäosa":"Eastern Part of Northern Baltic","Saimaan pohjoisosa":"Northern Lake Saimaa","Saimaan eteläosa":"Southern Lake Saimaa",Enontekiö:"Enontekiö",Utsjoki:se,Inari:re,Muonio:ce,Kolari:le,Kittilä:"Kittilä",Sodankylä:"Sodankylä",Savukoski:de,Pelkosenniemi:he,Salla:fe,Pello:pe,Ylitornio:ge,Rovaniemi:ue,Kemijärvi:"Kemijärvi",Tornio:ve,Tervola:me,Keminmaa:we,Kemi:Le,Simo:ye,Ranua:We,Posio:De,Kuusamo:Se,Pudasjärvi:"Pudasjärvi",Taivalkoski:ke,coldWeather:be,floodLevel:Fe,forestFireWeather:Pe,grassFireWeather:He,hotWeather:Ie,pedestrianSafety:Ke,rain:je,seaIcing:Te,seaThunderStorm:Ae,seaWaterHeightHighWater:Ne,seaWaterHeightShallowWater:Be,seaWaveHeight:Me,seaWind:xe,thunderStorm:Ce,trafficWeather:Ee,uvNote:Oe,wind:Ue,coldWeatherDescriptionLevel2:ze,coldWeatherDescriptionLevel3:Re,coldWeatherDescriptionLevel4:Ve,floodLevelDescriptionLevel2:Ge,floodLevelDescriptionLevel3:qe,floodLevelDescriptionLevel4:Je,forestFireWeatherDescriptionLevel2:Ye,forestFireWeatherDescriptionLevel3:Ze,forestFireWeatherDescriptionLevel4:Qe,grassFireWeatherDescriptionLevel2:_e,grassFireWeatherDescriptionLevel3:Xe,grassFireWeatherDescriptionLevel4:$e,hotWeatherDescriptionLevel2:en,hotWeatherDescriptionLevel3:nn,hotWeatherDescriptionLevel4:tn,pedestrianSafetyDescriptionLevel2:on,pedestrianSafetyDescriptionLevel3:an,pedestrianSafetyDescriptionLevel4:sn,rainDescriptionLevel2:rn,rainDescriptionLevel3:cn,rainDescriptionLevel4:ln,seaIcingDescriptionLevel2:dn,seaIcingDescriptionLevel3:hn,seaIcingDescriptionLevel4:fn,seaThunderStormDescriptionLevel2:pn,seaThunderStormDescriptionLevel3:gn,seaThunderStormDescriptionLevel4:un,seaWaterHeightHighWaterDescriptionLevel2:vn,seaWaterHeightHighWaterDescriptionLevel3:mn,seaWaterHeightHighWaterDescriptionLevel4:wn,seaWaterHeightShallowWaterDescriptionLevel2:Ln,seaWaterHeightShallowWaterDescriptionLevel3:yn,seaWaterHeightShallowWaterDescriptionLevel4:Wn,seaWaveHeightDescriptionLevel2:Dn,seaWaveHeightDescriptionLevel3:Sn,seaWaveHeightDescriptionLevel4:kn,seaWindDescriptionLevel2:bn,seaWindDescriptionLevel3:Fn,seaWindDescriptionLevel4:Pn,thunderStormDescriptionLevel2:Hn,thunderStormDescriptionLevel3:In,thunderStormDescriptionLevel4:Kn,trafficWeatherDescriptionLevel2:jn,trafficWeatherDescriptionLevel3:Tn,trafficWeatherDescriptionLevel4:An,uvNoteDescriptionLevel2:Nn,uvNoteDescriptionLevel3:Bn,uvNoteDescriptionLevel4:Mn,windDescriptionLevel2:xn,windDescriptionLevel3:Cn,windDescriptionLevel4:En,capLanguage:On,metoclientLanguage:Un,dataProviderFirst:zn,dataProviderSecond:Rn,floodLink:Vn,floodLinkText:Gn,description:qn,zoomIn:Jn,zoomOut:Yn,moveMap:Zn,mapAriaLabel:Qn,toContent:_n,warningsInAreasStart:Xn,fromDirection:$n,in0:ei,in1:ni,in2:ii,in3:ti,in4:oi,in5:ai,in6:si,in7:ri,in8:ci,in9:li,in10:di,in11:hi,in12:fi,in13:pi,in14:gi,in15:ui,in16:vi,in17:mi,in18:wi,in19:Li,in20:yi,in21:Wi,in22:Di,in23:Si,in24:ki,in25:bi,in26:Fi,in27:Pi,in28:Hi,in29:Ii,in30:Ki,in31:ji,in32:Ti,in33:Ai,in34:Ni,in35:Bi,in36:Mi,in37:xi,in38:Ci,in39:Ei,in40:Oi,in41:Ui,in42:zi,in43:Ri,in44:Vi,in45:Gi,landArea:qi,landAreas:Ji,seaArea:Yi,seaAreas:Zi,toNextContent:Qi,infoButtonAriaLabelShowRegion:_i,infoButtonAriaLabelCloseRegion:Xi,infoButtonAriaLabelValidWarnings:$i,legends:et,showLegends:nt,hideLegends:it,warningsInEffect:tt,and:ot,grayScale:at,toggleOn:st,toggleOff:rt};export{ct as e};
@@ -1,8 +0,0 @@
1
- /**
2
- * name: @fmidev/smartmet-alert-client
3
- * version: v4.7.1
4
- * description: Web application for viewing weather and flood alerts
5
- * author: Finnish Meteorological Institute
6
- * homepage: https://github.com/fmidev/smartmet-alert-client#readme
7
- */
8
- const e="Huom! Jos kartta on harmaa eikä kartalla näy päivämäärää, varoitukset eivät ole päivittyneet.",a="Varmista verkkoyhteys. Tarkista, että olet päivittänyt selaimen ja käyttöjärjestelmän.",i="Lista tuetuista selaimista",t="https://www.ilmatieteenlaitos.fi/tietoa-sivustosta",n="Varoitusten haussa tapahtui virhe. Lataa sivu hetken kuluttua uudelleen.",o="Varoituksia voimassa seuraavilla maa-alueilla",s="Varoituksia voimassa seuraavilla merialueilla",l="Voimassa olevat varoitukset, 5 vrk",r="Voimassa olevat varoitukset, viisi vuorokautta",u="Näytä kaikki varoitukset",v="ma",k="ti",c="ke",m="to",h="pe",p="la",d="su",L="Maanantai",j="Tiistai",g="Keskiviikko",y="Torstai",D="Perjantai",W="Lauantai",S="Sunnuntai",f="tammikuu",P="helmikuu",w="maaliskuu",H="huhtikuu",K="toukokuu",T="kesäkuu",F="heinäkuu",I="elokuu",A="syyskuu",M="lokakuu",V="marraskuu",R="joulukuu",E="ta",N="Varoitukset",O="Päivitetty",b="klo",B="varoitus voimassa",U="Useita varoituksia voimassa",z="Ei vaaraa",C="Mahdollisesti vaarallinen",Y="Vaarallinen",x="Hyvin vaarallinen",J="Ei varoituksia voimassa",Z="Ei varoituksia",_="info_fi",q="Pirkanmaa",G="Kainuu",Q="Uusimaa",X="Satakunta",$="Kymenlaakso",ee="Pohjanmaa",ae="Lappi",ie="Ahvenanmaa",te="Merenkurkku",ne="Ahvenanmeri",oe="Saaristomeri",se="Utsjoki",le="Inari",re="Muonio",ue="Kolari",ve="Savukoski",ke="Pelkosenniemi",ce="Salla",me="Pello",he="Ylitornio",pe="Rovaniemi",de="Tornio",Le="Tervola",je="Keminmaa",ge="Kemi",ye="Simo",De="Ranua",We="Posio",Se="Kuusamo",fe="Taivalkoski",Pe="Pakkasvaroitus",we="Tulvavaroitus",He="Maastopalo&shy;varoitus",Ke="Ruohikko&shy;palovaara",Te="Hellevaroitus",Fe="Jalankulkusää",Ie="Sadevaroitus",Ae="Jäätämis&shy;varoitus",Me="Ukkospuuskia merialueilla",Ve="Varoitus korkeasta merivedestä",Re="Varoitus m&#65279;a&#65279;t&#65279;a&#65279;l&#65279;a&#65279;s&#65279;t&#65279;a merivedestä",Ee="Aallokko&shy;varoitus",Ne="Tuulivaroitus merelle",Oe="Raju ukonilma",be="Liikennesää",Be="UV-tiedote",Ue="Tuulivaroitus maa‑alueille",ze="Kylmärasitus haittaa toimintaa ulkona ja monet erilaisia kroonisia sairauksia potevat oireilevat tavallista enemmän.",Ce="Kylmärasitus haittaa toimintaa ulkona huomattavasti ja kroonisia sairauksia potevien oireet vaikeutuvat selvästi. Paleltumisvaara.",Ye="Kylmärasitus vaikeuttaa toimintaa ulkona huomattavasti ja kroonisia sairauksia potevien oireet vaikeutuvat merkittävästi. Suuri paleltumisvaara.",xe="Pelto- ja metsäalueiden tulviminen sekä lievät häiriöt mahdollisia.",Je="Tulva voi aiheuttaa rakennusvahinkoja. Liikenteelle voi aiheutua merkittäviä häiriöitä.",Ze="Merkittävä riski ihmisten turvallisuudelle sekä sähkö-, vesi-, ja tietoliikenneverkoille. Rakennusvahinkoja ja liikennehäiriöitä laajoilla alueilla.",_e="Maastopalon vaara on kuivuudesta johtuen ilmeinen. Tuulisella säällä palot leviävät erittäin nopeasti.",qe="Maastopalon vaara on kuivuudesta johtuen erittäin ilmeinen. Tuulisella säällä palot leviävät erittäin nopeasti.",Ge="Suurpalon vaara on kuivuudesta johtuen ilmeinen. Palot leviävät todennäköisesti erittäin nopeasti.",Qe="Ruohikkopalon vaara on kuivuudesta johtuen ilmeinen. Tuulisella säällä palot leviävät erittäin nopeasti.",Xe="",$e="",ea="Monet erilaisia kroonisia sairauksia potevat oireilevat tavallista enemmän.",aa="Kroonisia sairauksia potevien oireet vaikeutuvat merkittävästi. Lämpörasitus haittaa myös perusterveiden toimintakykyä.",ia="Tämä varoitustaso on erittäin harvinainen nykyilmastossa. Ennakoitavissa erittäin merkittäviä terveysvaikutuksia. Lämpörasitus haittaa myös perusterveiden toimintakykyä.",ta="Kevyen liikenteen väylät laaja-alaisesti erittäin liukkaita. Liukastumisriski huomattava.",na="",oa="",sa="Herkimmin tulvivat alikulut ja painanteet tulvivat taajama-alueilla. Liikenteessä kohonnut vesiliirtovaara.",la="Tulvia taajamissa yleisesti. Alikulkujen täyttyminen vedellä kokonaan mahdollista. Virtaava vesi voi aiheuttaa vaaran.",ra="Pahoja tulvia taajamissa sekä paikoin myös taajamien ulkopuolella. Tulvalammikot ja virtaava vesi aiheuttavat vaaran.",ua="Runsas jään kertyminen voi heikentää aluksen vakavuutta ja vaarantaa aluksen operointia.",va="Runsas jään kertyminen voi heikentää aluksen vakavuutta ja vaarantaa aluksen operointia.",ka="Runsas jään kertyminen voi heikentää aluksen vakavuutta ja vaarantaa aluksen operointia.",ca="Mahdollisesti vaarallinen huviveneille ja pienille aluksille.",ma="Mahdollisesti vaarallinen huviveneille ja pienille aluksille.",ha="Mahdollisesti vaarallinen huviveneille ja pienille aluksille.",pa="Tulva: Merivesi nousee rannikon lähellä alaville maille.",da="Rantateitä paikoin poikki. Tulvaherkimmät kohteet kastuvat.",La="Rantateitä alavilla paikoilla poikki myös aiemmin tulvimattomissa kohdissa. Rakennuksia jää veden saartamiksi. Taajama-alueilla merkittäviä vesivahinkoja.",ja="Matalan veden tapauksissa vaikeuksia satamien rahtiliikenteessä.",ga="",ya="",Da="Mahdollisesti vaarallinen huviveneille ja pienille aluksille.",Wa="Vaikeuksia ja vaaratilanteita meriliikenteelle.",Sa="Merkittäviä vaikeuksia, hidastumista ja vaaratilanteita meriliikenteessä.",fa="Mahdollisesti vaarallinen huviveneille.",Pa="Vaikeuksia ja vaaratilanteita meriliikenteelle.",wa="Merkittäviä vaikeuksia, hidastumista ja vaaratilanteita meriliikenteessä.",Ha="Pienialaisesti tuulivahinkoja. Enimmäkseen yksittäisiä kaatuneita puita. Lyhyitä ja paikallisia sähkökatkoja.",Ka="Yleisesti tuulivahinkoja, paikoin myös yhtenäisiä vahinkoalueita. Paikallisesti suurta raivaustarvetta, pitkiä sähkökatkoja sekä katkoja teleliikenteessä.",Ta="Laajoja vahinkoalueita, joissa huomattava raivaustarve. Pitkiä sähkökatkoja, katkoja juomaveden jakelussa ja teleliikenteessä.",Fa="Liikenteen sujuvuus heikentyy ja keskinopeus laskee. Onnettomuusriski on kohonnut.",Ia="Liikenteessä mahdollisesti suuria häiriöitä. Onnettomuusriski on huomattava.",Aa="Liikenteessä todennäköisesti suuria häiriöitä ja liikenneyhteydet voivat olla kokonaan poikki. Onnettomuusriski on huomattava.",Ma="UV-säteily on voimakasta. Suojaamaton iho saattaa palaa erityisesti suorassa auringonvalossa oleskeltaessa.",Va="",Ra="",Ea="Yksittäisiä kaatuneita puita laajalla alueella. Lyhyitä sähkökatkoja.",Na="Yleisesti tuulivahinkoja, paikoin myös yhtenäisiä vahinkoalueita. Paikallisesti suurta raivaustarvetta, pitkiä sähkökatkoja sekä katkoja teleliikenteessä.",Oa="Laajoja vahinkoalueita, joissa huomattava raivaustarve. Pitkiä sähkökatkoja, katkoja juomaveden jakelussa ja teleliikenteessä.",ba="fi-FI",Ba="fi",Ua="Ilmatieteen laitos",za="Tulvakeskus",Ca="https://www.vesi.fi/",Ya="Vesistöennusteet ja tulvavaroitukset",xa="Vaikutuskuvaus",Ja="Lähennä",Za="Loitonna",_a="Siirrä karttaa nuolinäppäimillä",qa="Zoomattava kartta",Ga="Siirry tekstimuotoisiin varoituksiin",Qa="Varoituksia",Xa="suunnasta",$a="nollalla",ei="yhdellä",ai="kahdella",ii="kolmella",ti="neljällä",ni="viidellä",oi="kuudella",si="seitsemällä",li="kahdeksalla",ri="yhdeksällä",ui="kymmenellä",vi="yhdellätoista",ki="kahdellatoista",ci="kolmellatoista",mi="neljällätoista",hi="viidellätoista",pi="kuudellatoista",di="seitsemällätoista",Li="kahdeksallatoista",ji="yhdeksällätoista",gi="kahdellakymmenellä",yi="kahdellakymmenelläyhdellä",Di="kahdellakymmenelläkahdella",Wi="kahdellakymmenelläkolmella",Si="kahdellakymmenelläneljällä",fi="kahdellakymmenelläviidellä",Pi="kahdellakymmenelläkuudella",wi="kahdellakymmenelläseitsemällä",Hi="kahdellakymmenelläkahdeksalla",Ki="kahdellakymmenelläyhdeksällä",Ti="kolmellakymmenellä",Fi="kolmellakymmenelläyhdellä",Ii="kolmellakymmenelläkahdella",Ai="kolmellakymmenelläkolmella",Mi="kolmellakymmenelläneljällä",Vi="kolmellakymmenelläviidellä",Ri="kolmellakymmenelläkuudella",Ei="kolmellakymmenelläseitsemällä",Ni="kolmellakymmenelläkahdeksalla",Oi="kolmellakymmenelläyhdeksällä",bi="neljälläkymmenellä",Bi="neljälläkymmenelläyhdellä",Ui="neljälläkymmenelläkahdella",zi="neljälläkymmenelläkolmella",Ci="neljälläkymmenelläneljällä",Yi="neljälläkymmenelläviidellä",xi="maa-alueella",Ji="maa-alueella",Zi="merialueella",_i="merialueella",qi="Siirry seuraavaan osioon.",Gi="Näytä alueen",Qi="Sulje alueen",Xi="voimassaolevat varoitukset",$i="Karttaselitteet",et="Näytä selitteet",at="Piilota selitteet",it="varoituksia voimassa",tt="ja",nt="Harmaasävyt",ot="On",st="Off",lt={notInitializedStart:e,notInitializedEnd:a,supportedBrowsers:i,supportedBrowsersLink:t,failed:n,regionLand:o,regionSea:s,validWarnings:l,validWarningsAriaLabel:r,showWarnings:u,ma:v,ti:k,ke:c,to:m,pe:h,la:p,su:d,maFull:L,tiFull:j,keFull:g,toFull:y,peFull:D,laFull:W,suFull:S,month1:f,month2:P,month3:w,month4:H,month5:K,month6:T,month7:F,month8:I,month9:A,month10:M,month11:V,month12:R,monthPartitive:E,warnings:N,updated:O,atTime:b,valid:B,severalWarnings:U,warningLevel1:z,warningLevel2:C,warningLevel3:Y,warningLevel4:x,noWarnings:J,popupNoWarnings:Z,womlInfoField:_,"Kanta-Häme":"Kanta-Häme",Pirkanmaa:q,"Päijät-Häme":"Päijät-Häme","Etelä-Karjala":"Etelä-Karjala","Etelä-Savo":"Etelä-Savo","Pohjois-Savo":"Pohjois-Savo","Pohjois-Karjala":"Pohjois-Karjala","Keski-Suomi":"Keski-Suomi","Etelä-Pohjanmaa":"Etelä-Pohjanmaa",Kainuu:G,Uusimaa:Q,"Varsinais-Suomi":"Varsinais-Suomi",Satakunta:X,Kymenlaakso:$,Pohjanmaa:ee,"Keski-Pohjanmaa":"Keski-Pohjanmaa","Pohjois-Pohjanmaa":"Pohjois-Pohjanmaa","Pohjois-Pohjanmaan länsiosa":"Pohjois-Pohjanmaan länsiosa",Lappi:ae,Ahvenanmaa:ie,Merenkurkku:te,"Suomenlahden itäosa":"Suomenlahden itäosa","Pohjois-Itämeren länsiosa":"Pohjois-Itämeren länsiosa","Selkämeren eteläosa":"Selkämeren eteläosa","Perämeren pohjoisosa":"Perämeren pohjoisosa",Ahvenanmeri:ne,Saaristomeri:oe,"Perämeren eteläosa":"Perämeren eteläosa","Selkämeren pohjoisosa":"Selkämeren pohjoisosa","Suomenlahden länsiosa":"Suomenlahden länsiosa","Pohjois-Itämeren itäosa":"Pohjois-Itämeren itäosa","Saimaan pohjoisosa":"Saimaa pohjoinen","Saimaan eteläosa":"Saimaa eteläinen",Enontekiö:"Enontekiö",Utsjoki:se,Inari:le,Muonio:re,Kolari:ue,Kittilä:"Kittilä",Sodankylä:"Sodankylä",Savukoski:ve,Pelkosenniemi:ke,Salla:ce,Pello:me,Ylitornio:he,Rovaniemi:pe,Kemijärvi:"Kemijärvi",Tornio:de,Tervola:Le,Keminmaa:je,Kemi:ge,Simo:ye,Ranua:De,Posio:We,Kuusamo:Se,Pudasjärvi:"Pudasjärvi",Taivalkoski:fe,coldWeather:Pe,floodLevel:we,forestFireWeather:He,grassFireWeather:Ke,hotWeather:Te,pedestrianSafety:Fe,rain:Ie,seaIcing:Ae,seaThunderStorm:Me,seaWaterHeightHighWater:Ve,seaWaterHeightShallowWater:Re,seaWaveHeight:Ee,seaWind:Ne,thunderStorm:Oe,trafficWeather:be,uvNote:Be,wind:Ue,coldWeatherDescriptionLevel2:ze,coldWeatherDescriptionLevel3:Ce,coldWeatherDescriptionLevel4:Ye,floodLevelDescriptionLevel2:xe,floodLevelDescriptionLevel3:Je,floodLevelDescriptionLevel4:Ze,forestFireWeatherDescriptionLevel2:_e,forestFireWeatherDescriptionLevel3:qe,forestFireWeatherDescriptionLevel4:Ge,grassFireWeatherDescriptionLevel2:Qe,grassFireWeatherDescriptionLevel3:Xe,grassFireWeatherDescriptionLevel4:$e,hotWeatherDescriptionLevel2:ea,hotWeatherDescriptionLevel3:aa,hotWeatherDescriptionLevel4:ia,pedestrianSafetyDescriptionLevel2:ta,pedestrianSafetyDescriptionLevel3:na,pedestrianSafetyDescriptionLevel4:oa,rainDescriptionLevel2:sa,rainDescriptionLevel3:la,rainDescriptionLevel4:ra,seaIcingDescriptionLevel2:ua,seaIcingDescriptionLevel3:va,seaIcingDescriptionLevel4:ka,seaThunderStormDescriptionLevel2:ca,seaThunderStormDescriptionLevel3:ma,seaThunderStormDescriptionLevel4:ha,seaWaterHeightHighWaterDescriptionLevel2:pa,seaWaterHeightHighWaterDescriptionLevel3:da,seaWaterHeightHighWaterDescriptionLevel4:La,seaWaterHeightShallowWaterDescriptionLevel2:ja,seaWaterHeightShallowWaterDescriptionLevel3:ga,seaWaterHeightShallowWaterDescriptionLevel4:ya,seaWaveHeightDescriptionLevel2:Da,seaWaveHeightDescriptionLevel3:Wa,seaWaveHeightDescriptionLevel4:Sa,seaWindDescriptionLevel2:fa,seaWindDescriptionLevel3:Pa,seaWindDescriptionLevel4:wa,thunderStormDescriptionLevel2:Ha,thunderStormDescriptionLevel3:Ka,thunderStormDescriptionLevel4:Ta,trafficWeatherDescriptionLevel2:Fa,trafficWeatherDescriptionLevel3:Ia,trafficWeatherDescriptionLevel4:Aa,uvNoteDescriptionLevel2:Ma,uvNoteDescriptionLevel3:Va,uvNoteDescriptionLevel4:Ra,windDescriptionLevel2:Ea,windDescriptionLevel3:Na,windDescriptionLevel4:Oa,capLanguage:ba,metoclientLanguage:Ba,dataProviderFirst:Ua,dataProviderSecond:za,floodLink:Ca,floodLinkText:Ya,description:xa,zoomIn:Ja,zoomOut:Za,moveMap:_a,mapAriaLabel:qa,toContent:Ga,warningsInAreasStart:Qa,fromDirection:Xa,in0:$a,in1:ei,in2:ai,in3:ii,in4:ti,in5:ni,in6:oi,in7:si,in8:li,in9:ri,in10:ui,in11:vi,in12:ki,in13:ci,in14:mi,in15:hi,in16:pi,in17:di,in18:Li,in19:ji,in20:gi,in21:yi,in22:Di,in23:Wi,in24:Si,in25:fi,in26:Pi,in27:wi,in28:Hi,in29:Ki,in30:Ti,in31:Fi,in32:Ii,in33:Ai,in34:Mi,in35:Vi,in36:Ri,in37:Ei,in38:Ni,in39:Oi,in40:bi,in41:Bi,in42:Ui,in43:zi,in44:Ci,in45:Yi,landArea:xi,landAreas:Ji,seaArea:Zi,seaAreas:_i,toNextContent:qi,infoButtonAriaLabelShowRegion:Gi,infoButtonAriaLabelCloseRegion:Qi,infoButtonAriaLabelValidWarnings:Xi,legends:$i,showLegends:et,hideLegends:at,warningsInEffect:it,and:tt,grayScale:nt,toggleOn:ot,toggleOff:st};export{lt as f};
@@ -1,8 +0,0 @@
1
- /**
2
- * name: @fmidev/smartmet-alert-client
3
- * version: v4.7.1
4
- * description: Web application for viewing weather and flood alerts
5
- * author: Finnish Meteorological Institute
6
- * homepage: https://github.com/fmidev/smartmet-alert-client#readme
7
- */
8
- const e="Obs! Om kartan är grå och inget datum visas på kartan har varningarna inte uppdaterats.",n="Säkerställ nätverksanslutning. Kontrollera att du har uppdaterat din webbläsare och operativsystem.",t="Lista över webbläsare som stöds",r="https://sv.ilmatieteenlaitos.fi/information-om-sidorna",i="Ett fel uppstod vid sökningen av varningar. Försök på nytt om en stund.",a="Varningar är i kraft i följande landområden",o="Varningar är i kraft i följande havsområden",s="Varningar i kraft, 5 dygn",l="Varningar i kraft, fem dygn",c="Visa alla varningar",v="må",d="ti",g="on",m="to",f="fr",h="lö",k="sö",p="Måndag",u="Tisdag",L="Onsdag",D="Torsdag",W="Fredag",S="Lördag",b="Söndag",j="januari",y="februari",w="mars",F="april",K="maj",V="juni",H="juli",P="augusti",A="september",I="oktober",T="november",N="december",B="",R="Varningar",M="Uppdaterad",E="kl.",O="varningen gäller",x="Flera varningar i kraft",z="Ej fara",U="Möjligtvis farlig",C="Farlig",G="Mycket farlig",Y="Inga varningar i kraft",Z="Inga varningar",_="info_sv",q="Birkaland",J="Kajanaland",Q="Nyland",X="Satakunta",$="Kymmenedalen",ee="Österbotten",ne="Lappland",te="Åland",re="Kvarken",ie="Ålands hav",ae="Skärgårdshavet",oe="Utsjoki",se="Enare",le="Muonio",ce="Kolari",ve="Savukoski",de="Pelkosenniemi",ge="Salla",me="Pello",fe="Övertorneå",he="Rovaniemi",ke="Torneå",pe="Tervola",ue="Keminmaa",Le="Kemi",De="Simo",We="Ranua",Se="Posio",be="Kuusamo",je="Taivalkoski",ye="Varning för köld",we="Varning för översvämning",Fe="Varning för terrängbrand",Ke="Risk för gräsbrand",Ve="Varning för värmebölja",He="Fotgängarvädret",Pe="Nederbördsvarning",Ae="Varning för nedisning av fartyg",Ie="Åskbyar på sjöområden",Te="Varning för högt vattenstånd",Ne="Varning för lågt vattenstånd",Be="Varning för hård sjögång",Re="Vindvarning för havsområden",Me="Varning för våldsamt åskväder",Ee="Trafikvädret",Oe="UV-meddelande",xe="Vindvarning för landområden",ze="Köldpåfrestningen hindrar verksamhet utomhus och hos många som lider av olika kroniska sjukdomar ökar symtomen.",Ue="Köldpåfrestningen hindrar verksamhet utomhus avsevärt och symtom hos personer som lider av kroniska sjukdomar förvärras tydligt. Risk för förfrysning.",Ce="Köldpåfrestningen försvårar verksamhet utomhus avsevärt och symtomen hos personer som lider av kroniska sjukdomar förvärras betydligt. Stor risk för förfrysning.",Ge="Översvämning av åkrar och skogar och mindre störningar är möjliga. Varning utfärdas när en översvämning orsakar en uppskattad effekt eller när dess återkomsttid i genomsnitt är 3-10 år.",Ye="Översvämningen orsakar skador på byggnader. Betydande störningar i trafiken kan uppstå. Varning utfärdas när en översvämning orsakar en uppskattad effekt eller när dess återkomsttid i genomsnitt är 10-50 år.",Ze="Betydande risk för människornas säkerhet samt el-, vatten- och kommunikationsnäten. Skador på byggnader och störningar i trafiken i stora områden. Varning utfärdas när en översvämning orsakar en uppskattad effekt eller när dess återkomsttid i genomsnitt är över 50 år.",_e="Risken för terrängbrand är uppenbar på grund av torkan. I blåsigt väder sprider sig bränderna mycket snabbt.",qe="Risken för terrängbrand är extremt uppenbar på grund av torkan. I blåsigt väder sprider sig bränderna mycket snabbt.",Je="Risken för omfattande terrängbrand är uppenbar på grund av torkan. Bränderna sannolikt sprider sig mycket snabbt.",Qe="Risken för gräsbrand är uppenbar på grund av torkan. I blåsigt väder sprider sig bränderna mycket snabbt.",Xe="",$e="",en="Symtomen hos många som lider av olika kroniska sjukdomar förvärras.",nn="Symtomen hos personer som lider av kroniska sjukdomar förvärras betydligt. Värmepåfrestningen försvagar också friska personers funktionsförmåga.",tn="I vårt nuvarande klimat är denna varningsnivå mycket osannolik. Mycket betydande hälsoeffekter förväntas. Värmepåfrestningen försvagar även friska personers funktionsförmåga.",rn="Lättrafiklederna är mycket hala i stora områden. Avsevärd halkningsrisk.",an="",on="",sn="De mest utsatta underfarterna och sänkorna i tätorterna översvämmas. Ökad fara för vattenplaning i trafiken.",ln="Allmänt översvämningar i tätorterna. Möjligt att underfarter fylls helt med vatten. Strömmande vatten kan orsaka fara.",cn="Svåra översvämningar i tätorterna och ställvis även utanför dem. Översvämningspölarna och det strömmande vattnet orsakar fara.",vn="Riklig nedisning kan försämra fartygets stabilitet och äventyra säker drift.",dn="Riklig nedisning kan försämra fartygets stabilitet och äventyra säker drift.",gn="Riklig nedisning kan försämra fartygets stabilitet och äventyra säker drift.",mn="Kan vara farligt för fritidsbåtar och mindre fartyg.",fn="Kan vara farligt för fritidsbåtar och mindre fartyg.",hn="Kan vara farligt för fritidsbåtar och mindre fartyg.",kn="Översvämning: Havsvattnet stiger nära kusten på låglänta marker.",pn="Strandvägarna är ställvis avbrutna. De mest översvämningsutsatta platserna blir våta.",un="Strandvägarna på låglänta ställen avbrutna också där det tidigare inte översvämmat. Byggnader blir omringade av vatten. I tätorterna avsevärda vattenskador.",Ln="Vid lågvatten förekommer svårigheter i hamnarnas frakttrafik.",Dn="",Wn="",Sn="Möjligtvis farligt för fritidsbåtar och mindre fartyg.",bn="Svårigheter och farosituationer för sjötrafiken.",jn="Betydande svårigheter, fördröjningar och farosituationer i sjötrafiken.",yn="Möjligtvis farligt för fritidsbåtar.",wn="Svårigheter och farosituationer för sjötrafiken.",Fn="Avsevärda svårigheter, fördröjningar och farosituationer i sjötrafiken.",Kn="Stormskador i små områden. Främst enstaka fallna träd. Korta och lokala elavbrott.",Vn="Allmänt stormskador, ställvis också enhetliga skadeområden. Lokalt stort behov av röjning, långa elavbrott och avbrott i teletrafiken.",Hn="Omfattande skadeområden med avsevärt behov av röjning. Långa elavbrott, avbrott i vattendistributionen och teletrafiken.",Pn="Trafikens smidighet försämras och medelhastigheten sjunker. Ökad olycksrisk.",An="Möjligtvis kraftiga störningar i trafiken. Avsevärd olycksrisk.",In="Kraftiga störningar i trafiken är sannolika och trafikförbindelser kan brytas helt. Avsevärd olycksrisk.",Tn="UV-strålningen är kraftig. Oskyddad hud kan få brännskador speciellt under vistelse i direkt solljus.",Nn="",Bn="",Rn="Enstaka fallna träd inom ett stort område. Korta elavbrott.",Mn="Allmänt stormskador, ställvis också enhetliga skadeområden. Lokalt stort behov av röjning, långa elavbrott och avbrott i teletrafiken.",En="Omfattande skadeområden med avsevärt behov av röjning. Långa elavbrott, avbrott i vattendistributionen och teletrafiken.",On="sv-SV",xn="sv",zn="Meteorologiska institutet",Un="Översvämningscentret",Cn="https://www.vesi.fi/",Gn="Vattenföringsprognoser och översvämningsvarningar",Yn="Effektbeskrivningen",Zn="Zooma in",_n="Zooma ut",qn="Använd piltangenterna för att flytta kartan",Jn="Förstorande karta",Qn="Gå till varningar i text format",Xn="Varningar",$n="från",et="i noll områden",nt="i ett åmrode",tt="i två",rt="i tre",it="i fyra",at="i fem",ot="i sex",st="i sju",lt="i åtta",ct="i nio",vt="i tio",dt="i elva",gt="i tolv",mt="i tretton",ft="i fjorton",ht="i femton",kt="i sexton",pt="i sjutton",ut="i arton",Lt="i nitton",Dt="i tjugo",Wt="i tjugoen",St="i tjugotvå",bt="i tjugotre",jt="i tjugofyra",yt="i tjugofem",wt="i tjugosex",Ft="i tjugosju",Kt="i tjugoåtta",Vt="i tjugonio",Ht="i trettio",Pt="i trettioen",At="i trettiotvå",It="i trettiotre",Tt="i trettiofyra",Nt="i trettiofem",Bt="i trettiosex",Rt="i trettiosju",Mt="i trettioåtta",Et="i trettionio",Ot="i fyrtio",xt="i fyrtioen",zt="i fyrtiotvå",Ut="i fyrtiotre",Ct="i fyrtiofyra",Gt="i fyrtiofem",Yt="landområde",Zt="landområden",_t="havsområde",qt="havsområden",Jt="Gå till nästa stycke.",Qt="Visa giltiga varningar för",Xt="Stäng giltiga varningar för",$t=".",er="Kartanmärkningar",nr="Visa anmärkningar",tr="Dölj anmärkningar",rr="varningar i kraft i",ir="och",ar="Gråskala",or="On",sr="Off",lr={notInitializedStart:e,notInitializedEnd:n,supportedBrowsers:t,supportedBrowsersLink:r,failed:i,regionLand:a,regionSea:o,validWarnings:s,validWarningsAriaLabel:l,showWarnings:c,ma:v,ti:d,ke:g,to:m,pe:f,la:h,su:k,maFull:p,tiFull:u,keFull:L,toFull:D,peFull:W,laFull:S,suFull:b,month1:j,month2:y,month3:w,month4:F,month5:K,month6:V,month7:H,month8:P,month9:A,month10:I,month11:T,month12:N,monthPartitive:B,warnings:R,updated:M,atTime:E,valid:O,severalWarnings:x,warningLevel1:z,warningLevel2:U,warningLevel3:C,warningLevel4:G,noWarnings:Y,popupNoWarnings:Z,womlInfoField:_,"Kanta-Häme":"Egentliga Tavastland",Pirkanmaa:q,"Päijät-Häme":"Päijänne-Tavastland","Etelä-Karjala":"Södra Karelen","Etelä-Savo":"Södra Savolax","Pohjois-Savo":"Norra Savolax","Pohjois-Karjala":"Norra Karelen","Keski-Suomi":"Mellersta Finland","Etelä-Pohjanmaa":"Södra Österbotten",Kainuu:J,Uusimaa:Q,"Varsinais-Suomi":"Egentliga Finland",Satakunta:X,Kymenlaakso:$,Pohjanmaa:ee,"Keski-Pohjanmaa":"Mellersta Österbotten","Pohjois-Pohjanmaa":"Norra Österbotten","Pohjois-Pohjanmaan länsiosa":"Västra delen av Norra Österbotten",Lappi:ne,Ahvenanmaa:te,Merenkurkku:re,"Suomenlahden itäosa":"Östra Finska viken","Pohjois-Itämeren länsiosa":"Västra delen av Norra Östersjön","Selkämeren eteläosa":"Södra Bottenhavet","Perämeren pohjoisosa":"Norra Bottenviken",Ahvenanmeri:ie,Saaristomeri:ae,"Perämeren eteläosa":"Södra Bottenviken","Selkämeren pohjoisosa":"Norra Bottenhavet","Suomenlahden länsiosa":"Västra Finska viken","Pohjois-Itämeren itäosa":"Östra delen av Norra Östersjön","Saimaan pohjoisosa":"Norra Saimen","Saimaan eteläosa":"Södra Saimen",Enontekiö:"Enontekis",Utsjoki:oe,Inari:se,Muonio:le,Kolari:ce,Kittilä:"Kittilä",Sodankylä:"Sodankylä",Savukoski:ve,Pelkosenniemi:de,Salla:ge,Pello:me,Ylitornio:fe,Rovaniemi:he,Kemijärvi:"Kemijärvi",Tornio:ke,Tervola:pe,Keminmaa:ue,Kemi:Le,Simo:De,Ranua:We,Posio:Se,Kuusamo:be,Pudasjärvi:"Pudasjärvi",Taivalkoski:je,coldWeather:ye,floodLevel:we,forestFireWeather:Fe,grassFireWeather:Ke,hotWeather:Ve,pedestrianSafety:He,rain:Pe,seaIcing:Ae,seaThunderStorm:Ie,seaWaterHeightHighWater:Te,seaWaterHeightShallowWater:Ne,seaWaveHeight:Be,seaWind:Re,thunderStorm:Me,trafficWeather:Ee,uvNote:Oe,wind:xe,coldWeatherDescriptionLevel2:ze,coldWeatherDescriptionLevel3:Ue,coldWeatherDescriptionLevel4:Ce,floodLevelDescriptionLevel2:Ge,floodLevelDescriptionLevel3:Ye,floodLevelDescriptionLevel4:Ze,forestFireWeatherDescriptionLevel2:_e,forestFireWeatherDescriptionLevel3:qe,forestFireWeatherDescriptionLevel4:Je,grassFireWeatherDescriptionLevel2:Qe,grassFireWeatherDescriptionLevel3:Xe,grassFireWeatherDescriptionLevel4:$e,hotWeatherDescriptionLevel2:en,hotWeatherDescriptionLevel3:nn,hotWeatherDescriptionLevel4:tn,pedestrianSafetyDescriptionLevel2:rn,pedestrianSafetyDescriptionLevel3:an,pedestrianSafetyDescriptionLevel4:on,rainDescriptionLevel2:sn,rainDescriptionLevel3:ln,rainDescriptionLevel4:cn,seaIcingDescriptionLevel2:vn,seaIcingDescriptionLevel3:dn,seaIcingDescriptionLevel4:gn,seaThunderStormDescriptionLevel2:mn,seaThunderStormDescriptionLevel3:fn,seaThunderStormDescriptionLevel4:hn,seaWaterHeightHighWaterDescriptionLevel2:kn,seaWaterHeightHighWaterDescriptionLevel3:pn,seaWaterHeightHighWaterDescriptionLevel4:un,seaWaterHeightShallowWaterDescriptionLevel2:Ln,seaWaterHeightShallowWaterDescriptionLevel3:Dn,seaWaterHeightShallowWaterDescriptionLevel4:Wn,seaWaveHeightDescriptionLevel2:Sn,seaWaveHeightDescriptionLevel3:bn,seaWaveHeightDescriptionLevel4:jn,seaWindDescriptionLevel2:yn,seaWindDescriptionLevel3:wn,seaWindDescriptionLevel4:Fn,thunderStormDescriptionLevel2:Kn,thunderStormDescriptionLevel3:Vn,thunderStormDescriptionLevel4:Hn,trafficWeatherDescriptionLevel2:Pn,trafficWeatherDescriptionLevel3:An,trafficWeatherDescriptionLevel4:In,uvNoteDescriptionLevel2:Tn,uvNoteDescriptionLevel3:Nn,uvNoteDescriptionLevel4:Bn,windDescriptionLevel2:Rn,windDescriptionLevel3:Mn,windDescriptionLevel4:En,capLanguage:On,metoclientLanguage:xn,dataProviderFirst:zn,dataProviderSecond:Un,floodLink:Cn,floodLinkText:Gn,description:Yn,zoomIn:Zn,zoomOut:_n,moveMap:qn,mapAriaLabel:Jn,toContent:Qn,warningsInAreasStart:Xn,fromDirection:$n,in0:et,in1:nt,in2:tt,in3:rt,in4:it,in5:at,in6:ot,in7:st,in8:lt,in9:ct,in10:vt,in11:dt,in12:gt,in13:mt,in14:ft,in15:ht,in16:kt,in17:pt,in18:ut,in19:Lt,in20:Dt,in21:Wt,in22:St,in23:bt,in24:jt,in25:yt,in26:wt,in27:Ft,in28:Kt,in29:Vt,in30:Ht,in31:Pt,in32:At,in33:It,in34:Tt,in35:Nt,in36:Bt,in37:Rt,in38:Mt,in39:Et,in40:Ot,in41:xt,in42:zt,in43:Ut,in44:Ct,in45:Gt,landArea:Yt,landAreas:Zt,seaArea:_t,seaAreas:qt,toNextContent:Jt,infoButtonAriaLabelShowRegion:Qt,infoButtonAriaLabelCloseRegion:Xt,infoButtonAriaLabelValidWarnings:$t,legends:er,showLegends:nr,hideLegends:tr,warningsInEffect:rr,and:ir,grayScale:ar,toggleOn:or,toggleOff:sr};export{lr as s};
@@ -1,21 +0,0 @@
1
- /**
2
- * @vue/shared v3.4.38
3
- * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
- * @license MIT
5
- **//*! #__NO_SIDE_EFFECTS__ */function Hn(e,t){const n=new Set(e.split(","));return t?s=>n.has(s.toLowerCase()):s=>n.has(s)}const X={},lt=[],Ee=()=>{},uo=()=>!1,Xt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),$n=e=>e.startsWith("onUpdate:"),ie=Object.assign,Dn=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},ao=Object.prototype.hasOwnProperty,$=(e,t)=>ao.call(e,t),N=Array.isArray,ct=e=>Zt(e)==="[object Map]",Js=e=>Zt(e)==="[object Set]",R=e=>typeof e=="function",ee=e=>typeof e=="string",qe=e=>typeof e=="symbol",G=e=>e!==null&&typeof e=="object",Ys=e=>(G(e)||R(e))&&R(e.then)&&R(e.catch),Xs=Object.prototype.toString,Zt=e=>Xs.call(e),ho=e=>Zt(e).slice(8,-1),Zs=e=>Zt(e)==="[object Object]",Vn=e=>ee(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,yt=Hn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Qt=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},po=/-(\w)/g,_e=Qt(e=>e.replace(po,(t,n)=>n?n.toUpperCase():"")),_o=/\B([A-Z])/g,be=Qt(e=>e.replace(_o,"-$1").toLowerCase()),en=Qt(e=>e.charAt(0).toUpperCase()+e.slice(1)),dn=Qt(e=>e?`on${en(e)}`:""),We=(e,t)=>!Object.is(e,t),hn=(e,...t)=>{for(let n=0;n<e.length;n++)e[n](...t)},Qs=(e,t,n,s=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:s,value:n})},go=e=>{const t=parseFloat(e);return isNaN(t)?e:t},xn=e=>{const t=ee(e)?Number(e):NaN;return isNaN(t)?e:t};let us;const Bn=()=>us||(us=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Un(e){if(N(e)){const t={};for(let n=0;n<e.length;n++){const s=e[n],r=ee(s)?vo(s):Un(s);if(r)for(const o in r)t[o]=r[o]}return t}else if(ee(e)||G(e))return e}const mo=/;(?![^(]*\))/g,bo=/:([^]+)/,yo=/\/\*[^]*?\*\//g;function vo(e){const t={};return e.replace(yo,"").split(mo).forEach(n=>{if(n){const s=n.split(bo);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function Kn(e){let t="";if(ee(e))t=e;else if(N(e))for(let n=0;n<e.length;n++){const s=Kn(e[n]);s&&(t+=s+" ")}else if(G(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}const Co="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Eo=Hn(Co);function er(e){return!!e||e===""}const tr=e=>!!(e&&e.__v_isRef===!0),wo=e=>ee(e)?e:e==null?"":N(e)||G(e)&&(e.toString===Xs||!R(e.toString))?tr(e)?wo(e.value):JSON.stringify(e,nr,2):String(e),nr=(e,t)=>tr(t)?nr(e,t.value):ct(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r],o)=>(n[pn(s,o)+" =>"]=r,n),{})}:Js(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>pn(n))}:qe(t)?pn(t):G(t)&&!N(t)&&!Zs(t)?String(t):t,pn=(e,t="")=>{var n;return qe(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/**
6
- * @vue/reactivity v3.4.38
7
- * (c) 2018-present Yuxi (Evan) You and Vue contributors
8
- * @license MIT
9
- **/let Se;class xo{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Se,!t&&Se&&(this.index=(Se.scopes||(Se.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=Se;try{return Se=this,t()}finally{Se=n}}}on(){Se=this}off(){Se=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 So(e,t=Se){t&&t.active&&t.effects.push(e)}function Ao(){return Se}let st;class Wn{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,So(this,r)}get dirty(){if(this._dirtyLevel===2||this._dirtyLevel===3){this._dirtyLevel=1,ze();for(let t=0;t<this._depsLength;t++){const n=this.deps[t];if(n.computed&&(To(n.computed),this._dirtyLevel>=4))break}this._dirtyLevel===1&&(this._dirtyLevel=0),Ge()}return this._dirtyLevel>=4}set dirty(t){this._dirtyLevel=t?4:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Ue,n=st;try{return Ue=!0,st=this,this._runnings++,as(this),this.fn()}finally{ds(this),this._runnings--,st=n,Ue=t}}stop(){this.active&&(as(this),ds(this),this.onStop&&this.onStop(),this.active=!1)}}function To(e){return e.value}function as(e){e._trackId++,e._depsLength=0}function ds(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t<e.deps.length;t++)sr(e.deps[t],e);e.deps.length=e._depsLength}}function sr(e,t){const n=e.get(t);n!==void 0&&t._trackId!==n&&(e.delete(t),e.size===0&&e.cleanup())}let Ue=!0,Sn=0;const rr=[];function ze(){rr.push(Ue),Ue=!1}function Ge(){const e=rr.pop();Ue=e===void 0?!0:e}function kn(){Sn++}function qn(){for(Sn--;!Sn&&An.length;)An.shift()()}function or(e,t,n){if(t.get(e)!==e._trackId){t.set(e,e._trackId);const s=e.deps[e._depsLength];s!==t?(s&&sr(s,e),e.deps[e._depsLength++]=t):e._depsLength++}}const An=[];function ir(e,t,n){kn();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&&An.push(s.scheduler)))}qn()}const lr=(e,t)=>{const n=new Map;return n.cleanup=e,n.computed=t,n},Kt=new WeakMap,rt=Symbol(""),Tn=Symbol("");function ge(e,t,n){if(Ue&&st){let s=Kt.get(e);s||Kt.set(e,s=new Map);let r=s.get(n);r||s.set(n,r=lr(()=>s.delete(n))),or(st,r)}}function Ie(e,t,n,s,r,o){const i=Kt.get(e);if(!i)return;let c=[];if(t==="clear")c=[...i.values()];else if(n==="length"&&N(e)){const f=Number(s);i.forEach((d,a)=>{(a==="length"||!qe(a)&&a>=f)&&c.push(d)})}else switch(n!==void 0&&c.push(i.get(n)),t){case"add":N(e)?Vn(n)&&c.push(i.get("length")):(c.push(i.get(rt)),ct(e)&&c.push(i.get(Tn)));break;case"delete":N(e)||(c.push(i.get(rt)),ct(e)&&c.push(i.get(Tn)));break;case"set":ct(e)&&c.push(i.get(rt));break}kn();for(const f of c)f&&ir(f,4);qn()}function Oo(e,t){const n=Kt.get(e);return n&&n.get(t)}const No=Hn("__proto__,__v_isRef,__isVue"),cr=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(qe)),hs=Po();function Po(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=D(this);for(let o=0,i=this.length;o<i;o++)ge(s,"get",o+"");const r=s[t](...n);return r===-1||r===!1?s[t](...n.map(D)):r}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){ze(),kn();const s=D(this)[t].apply(this,n);return qn(),Ge(),s}}),e}function Ro(e){qe(e)||(e=String(e));const t=D(this);return ge(t,"has",e),t.hasOwnProperty(e)}class fr{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,s){const r=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!r;if(n==="__v_isReadonly")return r;if(n==="__v_isShallow")return o;if(n==="__v_raw")return s===(r?o?Wo:hr:o?dr:ar).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const i=N(t);if(!r){if(i&&$(hs,n))return Reflect.get(hs,n,s);if(n==="hasOwnProperty")return Ro}const c=Reflect.get(t,n,s);return(qe(n)?cr.has(n):No(n))||(r||ge(t,"get",n),o)?c:ue(c)?i&&Vn(n)?c:c.value:G(c)?r?pr(c):Jn(c):c}}class ur extends fr{constructor(t=!1){super(!1,t)}set(t,n,s,r){let o=t[n];if(!this._isShallow){const f=ot(o);if(!at(s)&&!ot(s)&&(o=D(o),s=D(s)),!N(t)&&ue(o)&&!ue(s))return f?!1:(o.value=s,!0)}const i=N(t)&&Vn(n)?Number(n)<t.length:$(t,n),c=Reflect.set(t,n,s,r);return t===D(r)&&(i?We(s,o)&&Ie(t,"set",n,s):Ie(t,"add",n,s)),c}deleteProperty(t,n){const s=$(t,n);t[n];const r=Reflect.deleteProperty(t,n);return r&&s&&Ie(t,"delete",n,void 0),r}has(t,n){const s=Reflect.has(t,n);return(!qe(n)||!cr.has(n))&&ge(t,"has",n),s}ownKeys(t){return ge(t,"iterate",N(t)?"length":rt),Reflect.ownKeys(t)}}class Io extends fr{constructor(t=!1){super(!0,t)}set(t,n){return!0}deleteProperty(t,n){return!0}}const Mo=new ur,Lo=new Io,Fo=new ur(!0);const zn=e=>e,tn=e=>Reflect.getPrototypeOf(e);function It(e,t,n=!1,s=!1){e=e.__v_raw;const r=D(e),o=D(t);n||(We(t,o)&&ge(r,"get",t),ge(r,"get",o));const{has:i}=tn(r),c=s?zn:n?Xn:xt;if(i.call(r,t))return c(e.get(t));if(i.call(r,o))return c(e.get(o));e!==r&&e.get(t)}function Mt(e,t=!1){const n=this.__v_raw,s=D(n),r=D(e);return t||(We(e,r)&&ge(s,"has",e),ge(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function Lt(e,t=!1){return e=e.__v_raw,!t&&ge(D(e),"iterate",rt),Reflect.get(e,"size",e)}function ps(e,t=!1){!t&&!at(e)&&!ot(e)&&(e=D(e));const n=D(this);return tn(n).has.call(n,e)||(n.add(e),Ie(n,"add",e,e)),this}function _s(e,t,n=!1){!n&&!at(t)&&!ot(t)&&(t=D(t));const s=D(this),{has:r,get:o}=tn(s);let i=r.call(s,e);i||(e=D(e),i=r.call(s,e));const c=o.call(s,e);return s.set(e,t),i?We(t,c)&&Ie(s,"set",e,t):Ie(s,"add",e,t),this}function gs(e){const t=D(this),{has:n,get:s}=tn(t);let r=n.call(t,e);r||(e=D(e),r=n.call(t,e)),s&&s.call(t,e);const o=t.delete(e);return r&&Ie(t,"delete",e,void 0),o}function ms(){const e=D(this),t=e.size!==0,n=e.clear();return t&&Ie(e,"clear",void 0,void 0),n}function Ft(e,t){return function(s,r){const o=this,i=o.__v_raw,c=D(i),f=t?zn:e?Xn:xt;return!e&&ge(c,"iterate",rt),i.forEach((d,a)=>s.call(r,f(d),f(a),o))}}function jt(e,t,n){return function(...s){const r=this.__v_raw,o=D(r),i=ct(o),c=e==="entries"||e===Symbol.iterator&&i,f=e==="keys"&&i,d=r[e](...s),a=n?zn:t?Xn:xt;return!t&&ge(o,"iterate",f?Tn:rt),{next(){const{value:p,done:y}=d.next();return y?{value:p,done:y}:{value:c?[a(p[0]),a(p[1])]:a(p),done:y}},[Symbol.iterator](){return this}}}}function Le(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function jo(){const e={get(o){return It(this,o)},get size(){return Lt(this)},has:Mt,add:ps,set:_s,delete:gs,clear:ms,forEach:Ft(!1,!1)},t={get(o){return It(this,o,!1,!0)},get size(){return Lt(this)},has:Mt,add(o){return ps.call(this,o,!0)},set(o,i){return _s.call(this,o,i,!0)},delete:gs,clear:ms,forEach:Ft(!1,!0)},n={get(o){return It(this,o,!0)},get size(){return Lt(this,!0)},has(o){return Mt.call(this,o,!0)},add:Le("add"),set:Le("set"),delete:Le("delete"),clear:Le("clear"),forEach:Ft(!0,!1)},s={get(o){return It(this,o,!0,!0)},get size(){return Lt(this,!0)},has(o){return Mt.call(this,o,!0)},add:Le("add"),set:Le("set"),delete:Le("delete"),clear:Le("clear"),forEach:Ft(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=jt(o,!1,!1),n[o]=jt(o,!0,!1),t[o]=jt(o,!1,!0),s[o]=jt(o,!0,!0)}),[e,n,t,s]}const[Ho,$o,Do,Vo]=jo();function Gn(e,t){const n=t?e?Vo:Do:e?$o:Ho;return(s,r,o)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get($(n,r)&&r in s?n:s,r,o)}const Bo={get:Gn(!1,!1)},Uo={get:Gn(!1,!0)},Ko={get:Gn(!0,!1)};const ar=new WeakMap,dr=new WeakMap,hr=new WeakMap,Wo=new WeakMap;function ko(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function qo(e){return e.__v_skip||!Object.isExtensible(e)?0:ko(ho(e))}function Jn(e){return ot(e)?e:Yn(e,!1,Mo,Bo,ar)}function zo(e){return Yn(e,!1,Fo,Uo,dr)}function pr(e){return Yn(e,!0,Lo,Ko,hr)}function Yn(e,t,n,s,r){if(!G(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=r.get(e);if(o)return o;const i=qo(e);if(i===0)return e;const c=new Proxy(e,i===2?s:n);return r.set(e,c),c}function vt(e){return ot(e)?vt(e.__v_raw):!!(e&&e.__v_isReactive)}function ot(e){return!!(e&&e.__v_isReadonly)}function at(e){return!!(e&&e.__v_isShallow)}function _r(e){return e?!!e.__v_raw:!1}function D(e){const t=e&&e.__v_raw;return t?D(t):e}function Go(e){return Object.isExtensible(e)&&Qs(e,"__v_skip",!0),e}const xt=e=>G(e)?Jn(e):e,Xn=e=>G(e)?pr(e):e;class gr{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 Wn(()=>t(this._value),()=>Dt(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=D(this);return(!t._cacheable||t.effect.dirty)&&We(t._value,t._value=t.effect.run())&&Dt(t,4),mr(t),t.effect._dirtyLevel>=2&&Dt(t,2),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function Jo(e,t,n=!1){let s,r;const o=R(e);return o?(s=e,r=Ee):(s=e.get,r=e.set),new gr(s,r,o||!r,n)}function mr(e){var t;Ue&&st&&(e=D(e),or(st,(t=e.dep)!=null?t:e.dep=lr(()=>e.dep=void 0,e instanceof gr?e:void 0)))}function Dt(e,t=4,n,s){e=D(e);const r=e.dep;r&&ir(r,t)}function ue(e){return!!(e&&e.__v_isRef===!0)}function Yo(e){return Xo(e,!1)}function Xo(e,t){return ue(e)?e:new Zo(e,t)}class Zo{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:D(t),this._value=n?t:xt(t)}get value(){return mr(this),this._value}set value(t){const n=this.__v_isShallow||at(t)||ot(t);t=n?t:D(t),We(t,this._rawValue)&&(this._rawValue,this._rawValue=t,this._value=n?t:xt(t),Dt(this,4))}}function Qo(e){return ue(e)?e.value:e}const ei={get:(e,t,n)=>Qo(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return ue(r)&&!ue(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function br(e){return vt(e)?e:new Proxy(e,ei)}class ti{constructor(t,n,s){this._object=t,this._key=n,this._defaultValue=s,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return Oo(D(this._object),this._key)}}class ni{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function fc(e,t,n){return ue(e)?e:R(e)?new ni(e):G(e)&&arguments.length>1?si(e,t,n):Yo(e)}function si(e,t,n){const s=e[t];return ue(s)?s:new ti(e,t,n)}/**
10
- * @vue/runtime-core v3.4.38
11
- * (c) 2018-present Yuxi (Evan) You and Vue contributors
12
- * @license MIT
13
- **/function Ke(e,t,n,s){try{return s?e(...s):e()}catch(r){nn(r,t,n)}}function we(e,t,n,s){if(R(e)){const r=Ke(e,t,n,s);return r&&Ys(r)&&r.catch(o=>{nn(o,t,n)}),r}if(N(e)){const r=[];for(let o=0;o<e.length;o++)r.push(we(e[o],t,n,s));return r}}function nn(e,t,n,s=!0){const r=t?t.vnode:null;if(t){let o=t.parent;const i=t.proxy,c=`https://vuejs.org/error-reference/#runtime-${n}`;for(;o;){const d=o.ec;if(d){for(let a=0;a<d.length;a++)if(d[a](e,i,c)===!1)return}o=o.parent}const f=t.appContext.config.errorHandler;if(f){ze(),Ke(f,null,10,[e,i,c]),Ge();return}}ri(e,n,r,s)}function ri(e,t,n,s=!0){console.error(e)}let St=!1,On=!1;const ce=[];let Pe=0;const ft=[];let $e=null,tt=0;const yr=Promise.resolve();let Zn=null;function Qn(e){const t=Zn||yr;return e?t.then(this?e.bind(this):e):t}function oi(e){let t=Pe+1,n=ce.length;for(;t<n;){const s=t+n>>>1,r=ce[s],o=At(r);o<e||o===e&&r.pre?t=s+1:n=s}return t}function es(e){(!ce.length||!ce.includes(e,St&&e.allowRecurse?Pe+1:Pe))&&(e.id==null?ce.push(e):ce.splice(oi(e.id),0,e),vr())}function vr(){!St&&!On&&(On=!0,Zn=yr.then(Er))}function ii(e){const t=ce.indexOf(e);t>Pe&&ce.splice(t,1)}function li(e){N(e)?ft.push(...e):(!$e||!$e.includes(e,e.allowRecurse?tt+1:tt))&&ft.push(e),vr()}function bs(e,t,n=St?Pe+1:0){for(;n<ce.length;n++){const s=ce[n];if(s&&s.pre){if(e&&s.id!==e.uid)continue;ce.splice(n,1),n--,s()}}}function Cr(e){if(ft.length){const t=[...new Set(ft)].sort((n,s)=>At(n)-At(s));if(ft.length=0,$e){$e.push(...t);return}for($e=t,tt=0;tt<$e.length;tt++){const n=$e[tt];n.active!==!1&&n()}$e=null,tt=0}}const At=e=>e.id==null?1/0:e.id,ci=(e,t)=>{const n=At(e)-At(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Er(e){On=!1,St=!0,ce.sort(ci);try{for(Pe=0;Pe<ce.length;Pe++){const t=ce[Pe];t&&t.active!==!1&&Ke(t,t.i,t.i?15:14)}}finally{Pe=0,ce.length=0,Cr(),St=!1,Zn=null,(ce.length||ft.length)&&Er()}}let se=null,sn=null;function Wt(e){const t=se;return se=e,sn=e&&e.type.__scopeId||null,t}function uc(e){sn=e}function ac(){sn=null}function fi(e,t=se,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&Ns(-1);const o=Wt(t);let i;try{i=e(...r)}finally{Wt(o),s._d&&Ns(1)}return i};return s._n=!0,s._c=!0,s._d=!0,s}function dc(e,t){if(se===null)return e;const n=un(se),s=e.dirs||(e.dirs=[]);for(let r=0;r<t.length;r++){let[o,i,c,f=X]=t[r];o&&(R(o)&&(o={mounted:o,updated:o}),o.deep&&Be(i),s.push({dir:o,instance:n,value:i,oldValue:void 0,arg:c,modifiers:f}))}return e}function Xe(e,t,n,s){const r=e.dirs,o=t&&t.dirs;for(let i=0;i<r.length;i++){const c=r[i];o&&(c.oldValue=o[i].value);let f=c.dir[s];f&&(ze(),we(f,n,8,[e.el,c,e,t]),Ge())}}const De=Symbol("_leaveCb"),Ht=Symbol("_enterCb");function ui(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Nr(()=>{e.isMounted=!0}),Pr(()=>{e.isUnmounting=!0}),e}const ve=[Function,Array],wr={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:ve,onEnter:ve,onAfterEnter:ve,onEnterCancelled:ve,onBeforeLeave:ve,onLeave:ve,onAfterLeave:ve,onLeaveCancelled:ve,onBeforeAppear:ve,onAppear:ve,onAfterAppear:ve,onAppearCancelled:ve},xr=e=>{const t=e.subTree;return t.component?xr(t.component):t},ai={name:"BaseTransition",props:wr,setup(e,{slots:t}){const n=hl(),s=ui();return()=>{const r=t.default&&Ar(t.default(),!0);if(!r||!r.length)return;let o=r[0];if(r.length>1){for(const y of r)if(y.type!==pe){o=y;break}}const i=D(e),{mode:c}=i;if(s.isLeaving)return _n(o);const f=ys(o);if(!f)return _n(o);let d=Nn(f,i,s,n,y=>d=y);kt(f,d);const a=n.subTree,p=a&&ys(a);if(p&&p.type!==pe&&!nt(f,p)&&xr(n).type!==pe){const y=Nn(p,i,s,n);if(kt(p,y),c==="out-in"&&f.type!==pe)return s.isLeaving=!0,y.afterLeave=()=>{s.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},_n(o);c==="in-out"&&f.type!==pe&&(y.delayLeave=(S,I,L)=>{const Y=Sr(s,p);Y[String(p.key)]=p,S[De]=()=>{I(),S[De]=void 0,delete d.delayedLeave},d.delayedLeave=L})}return o}}},di=ai;function Sr(e,t){const{leavingVNodes:n}=e;let s=n.get(t.type);return s||(s=Object.create(null),n.set(t.type,s)),s}function Nn(e,t,n,s,r){const{appear:o,mode:i,persisted:c=!1,onBeforeEnter:f,onEnter:d,onAfterEnter:a,onEnterCancelled:p,onBeforeLeave:y,onLeave:S,onAfterLeave:I,onLeaveCancelled:L,onBeforeAppear:Y,onAppear:V,onAfterAppear:W,onAppearCancelled:j}=t,k=String(e.key),q=Sr(n,e),P=(O,F)=>{O&&we(O,s,9,F)},le=(O,F)=>{const U=F[1];P(O,F),N(O)?O.every(x=>x.length<=1)&&U():O.length<=1&&U()},te={mode:i,persisted:c,beforeEnter(O){let F=f;if(!n.isMounted)if(o)F=Y||f;else return;O[De]&&O[De](!0);const U=q[k];U&&nt(e,U)&&U.el[De]&&U.el[De](),P(F,[O])},enter(O){let F=d,U=a,x=p;if(!n.isMounted)if(o)F=V||d,U=W||a,x=j||p;else return;let K=!1;const Q=O[Ht]=re=>{K||(K=!0,re?P(x,[O]):P(U,[O]),te.delayedLeave&&te.delayedLeave(),O[Ht]=void 0)};F?le(F,[O,Q]):Q()},leave(O,F){const U=String(e.key);if(O[Ht]&&O[Ht](!0),n.isUnmounting)return F();P(y,[O]);let x=!1;const K=O[De]=Q=>{x||(x=!0,F(),Q?P(L,[O]):P(I,[O]),O[De]=void 0,q[U]===e&&delete q[U])};q[U]=e,S?le(S,[O,K]):K()},clone(O){const F=Nn(O,t,n,s,r);return r&&r(F),F}};return te}function _n(e){if(rn(e))return e=ke(e),e.children=null,e}function ys(e){if(!rn(e))return e;const{shapeFlag:t,children:n}=e;if(n){if(t&16)return n[0];if(t&32&&R(n.default))return n.default()}}function kt(e,t){e.shapeFlag&6&&e.component?kt(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Ar(e,t=!1,n){let s=[],r=0;for(let o=0;o<e.length;o++){let i=e[o];const c=n==null?i.key:String(n)+String(i.key!=null?i.key:o);i.type===Ce?(i.patchFlag&128&&r++,s=s.concat(Ar(i.children,t,c))):(t||i.type!==pe)&&s.push(c!=null?ke(i,{key:c}):i)}if(r>1)for(let o=0;o<s.length;o++)s[o].patchFlag=-2;return s}/*! #__NO_SIDE_EFFECTS__ */function Tr(e,t){return R(e)?ie({name:e.name},t,{setup:e}):e}const Ct=e=>!!e.type.__asyncLoader,rn=e=>e.type.__isKeepAlive;function hi(e,t){Or(e,"a",t)}function pi(e,t){Or(e,"da",t)}function Or(e,t,n=oe){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(on(t,s,n),n){let r=n.parent;for(;r&&r.parent;)rn(r.parent.vnode)&&_i(s,t,n,r),r=r.parent}}function _i(e,t,n,s){const r=on(t,e,s,!0);Rr(()=>{Dn(s[t],r)},n)}function on(e,t,n=oe,s=!1){if(n){const r=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{ze();const c=Nt(n),f=we(t,n,e,i);return c(),Ge(),f});return s?r.unshift(o):r.push(o),o}}const Me=e=>(t,n=oe)=>{(!fn||e==="sp")&&on(e,(...s)=>t(...s),n)},gi=Me("bm"),Nr=Me("m"),mi=Me("bu"),bi=Me("u"),Pr=Me("bum"),Rr=Me("um"),yi=Me("sp"),vi=Me("rtg"),Ci=Me("rtc");function Ei(e,t=oe){on("ec",e,t)}const wi="components";function hc(e,t){return Si(wi,e,!0,t)||e}const xi=Symbol.for("v-ndc");function Si(e,t,n=!0,s=!1){const r=se||oe;if(r){const o=r.type;{const c=bl(o,!1);if(c&&(c===t||c===_e(t)||c===en(_e(t))))return o}const i=vs(r[e]||o[e],t)||vs(r.appContext[e],t);return!i&&s?o:i}}function vs(e,t){return e&&(e[t]||e[_e(t)]||e[en(_e(t))])}function pc(e,t,n,s){let r;const o=n;if(N(e)||ee(e)){r=new Array(e.length);for(let i=0,c=e.length;i<c;i++)r[i]=t(e[i],i,void 0,o)}else if(typeof e=="number"){r=new Array(e);for(let i=0;i<e;i++)r[i]=t(i+1,i,void 0,o)}else if(G(e))if(e[Symbol.iterator])r=Array.from(e,(i,c)=>t(i,c,void 0,o));else{const i=Object.keys(e);r=new Array(i.length);for(let c=0,f=i.length;c<f;c++){const d=i[c];r[c]=t(e[d],d,c,o)}}else r=[];return r}function _c(e,t,n={},s,r){if(se.isCE||se.parent&&Ct(se.parent)&&se.parent.isCE)return fe("slot",n,s);let o=e[t];o&&o._c&&(o._d=!1),Yr();const i=o&&Ir(o(n)),c=Zr(Ce,{key:(n.key||i&&i.key||`_${t}`)+(!i&&s?"_fb":"")},i||[],i&&e._===1?64:-2);return o&&o._c&&(o._d=!0),c}function Ir(e){return e.some(t=>zt(t)?!(t.type===pe||t.type===Ce&&!Ir(t.children)):!0)?e:null}const Pn=e=>e?to(e)?un(e):Pn(e.parent):null,Et=ie(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=>Pn(e.parent),$root:e=>Pn(e.root),$emit:e=>e.emit,$options:e=>Lr(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,es(e.update)}),$nextTick:e=>e.n||(e.n=Qn.bind(e.proxy)),$watch:e=>Yi.bind(e)}),gn=(e,t)=>e!==X&&!e.__isScriptSetup&&$(e,t),Ai={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:s,data:r,props:o,accessCache:i,type:c,appContext:f}=e;let d;if(t[0]!=="$"){const S=i[t];if(S!==void 0)switch(S){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return o[t]}else{if(gn(s,t))return i[t]=1,s[t];if(r!==X&&$(r,t))return i[t]=2,r[t];if((d=e.propsOptions[0])&&$(d,t))return i[t]=3,o[t];if(n!==X&&$(n,t))return i[t]=4,n[t];Rn&&(i[t]=0)}}const a=Et[t];let p,y;if(a)return t==="$attrs"&&ge(e.attrs,"get",""),a(e);if((p=c.__cssModules)&&(p=p[t]))return p;if(n!==X&&$(n,t))return i[t]=4,n[t];if(y=f.config.globalProperties,$(y,t))return y[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:o}=e;return gn(r,t)?(r[t]=n,!0):s!==X&&$(s,t)?(s[t]=n,!0):$(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:o}},i){let c;return!!n[i]||e!==X&&$(e,i)||gn(t,i)||(c=o[0])&&$(c,i)||$(s,i)||$(Et,i)||$(r.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:$(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Cs(e){return N(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Rn=!0;function Ti(e){const t=Lr(e),n=e.proxy,s=e.ctx;Rn=!1,t.beforeCreate&&Es(t.beforeCreate,e,"bc");const{data:r,computed:o,methods:i,watch:c,provide:f,inject:d,created:a,beforeMount:p,mounted:y,beforeUpdate:S,updated:I,activated:L,deactivated:Y,beforeDestroy:V,beforeUnmount:W,destroyed:j,unmounted:k,render:q,renderTracked:P,renderTriggered:le,errorCaptured:te,serverPrefetch:O,expose:F,inheritAttrs:U,components:x,directives:K,filters:Q}=t;if(d&&Oi(d,s,null),i)for(const Z in i){const z=i[Z];R(z)&&(s[Z]=z.bind(n))}if(r){const Z=r.call(n,n);G(Z)&&(e.data=Jn(Z))}if(Rn=!0,o)for(const Z in o){const z=o[Z],Je=R(z)?z.bind(n,n):R(z.get)?z.get.bind(n,n):Ee,Pt=!R(z)&&R(z.set)?z.set.bind(n):Ee,Ye=vl({get:Je,set:Pt});Object.defineProperty(s,Z,{enumerable:!0,configurable:!0,get:()=>Ye.value,set:Ae=>Ye.value=Ae})}if(c)for(const Z in c)Mr(c[Z],s,n,Z);if(f){const Z=R(f)?f.call(n):f;Reflect.ownKeys(Z).forEach(z=>{Li(z,Z[z])})}a&&Es(a,e,"c");function ne(Z,z){N(z)?z.forEach(Je=>Z(Je.bind(n))):z&&Z(z.bind(n))}if(ne(gi,p),ne(Nr,y),ne(mi,S),ne(bi,I),ne(hi,L),ne(pi,Y),ne(Ei,te),ne(Ci,P),ne(vi,le),ne(Pr,W),ne(Rr,k),ne(yi,O),N(F))if(F.length){const Z=e.exposed||(e.exposed={});F.forEach(z=>{Object.defineProperty(Z,z,{get:()=>n[z],set:Je=>n[z]=Je})})}else e.exposed||(e.exposed={});q&&e.render===Ee&&(e.render=q),U!=null&&(e.inheritAttrs=U),x&&(e.components=x),K&&(e.directives=K)}function Oi(e,t,n=Ee){N(e)&&(e=In(e));for(const s in e){const r=e[s];let o;G(r)?"default"in r?o=Vt(r.from||s,r.default,!0):o=Vt(r.from||s):o=Vt(r),ue(o)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>o.value,set:i=>o.value=i}):t[s]=o}}function Es(e,t,n){we(N(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function Mr(e,t,n,s){const r=s.includes(".")?Gr(n,s):()=>n[s];if(ee(e)){const o=t[e];R(o)&&bn(r,o)}else if(R(e))bn(r,e.bind(n));else if(G(e))if(N(e))e.forEach(o=>Mr(o,t,n,s));else{const o=R(e.handler)?e.handler.bind(n):t[e.handler];R(o)&&bn(r,o,e)}}function Lr(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,c=o.get(t);let f;return c?f=c:!r.length&&!n&&!s?f=t:(f={},r.length&&r.forEach(d=>qt(f,d,i,!0)),qt(f,t,i)),G(t)&&o.set(t,f),f}function qt(e,t,n,s=!1){const{mixins:r,extends:o}=t;o&&qt(e,o,n,!0),r&&r.forEach(i=>qt(e,i,n,!0));for(const i in t)if(!(s&&i==="expose")){const c=Ni[i]||n&&n[i];e[i]=c?c(e[i],t[i]):t[i]}return e}const Ni={data:ws,props:xs,emits:xs,methods:bt,computed:bt,beforeCreate:de,created:de,beforeMount:de,mounted:de,beforeUpdate:de,updated:de,beforeDestroy:de,beforeUnmount:de,destroyed:de,unmounted:de,activated:de,deactivated:de,errorCaptured:de,serverPrefetch:de,components:bt,directives:bt,watch:Ri,provide:ws,inject:Pi};function ws(e,t){return t?e?function(){return ie(R(e)?e.call(this,this):e,R(t)?t.call(this,this):t)}:t:e}function Pi(e,t){return bt(In(e),In(t))}function In(e){if(N(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function de(e,t){return e?[...new Set([].concat(e,t))]:t}function bt(e,t){return e?ie(Object.create(null),e,t):t}function xs(e,t){return e?N(e)&&N(t)?[...new Set([...e,...t])]:ie(Object.create(null),Cs(e),Cs(t??{})):t}function Ri(e,t){if(!e)return t;if(!t)return e;const n=ie(Object.create(null),e);for(const s in t)n[s]=de(e[s],t[s]);return n}function Fr(){return{app:null,config:{isNativeTag:uo,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 Ii=0;function Mi(e,t){return function(s,r=null){R(s)||(s=ie({},s)),r!=null&&!G(r)&&(r=null);const o=Fr(),i=new WeakSet;let c=!1;const f=o.app={_uid:Ii++,_component:s,_props:r,_container:null,_context:o,_instance:null,version:Cl,get config(){return o.config},set config(d){},use(d,...a){return i.has(d)||(d&&R(d.install)?(i.add(d),d.install(f,...a)):R(d)&&(i.add(d),d(f,...a))),f},mixin(d){return o.mixins.includes(d)||o.mixins.push(d),f},component(d,a){return a?(o.components[d]=a,f):o.components[d]},directive(d,a){return a?(o.directives[d]=a,f):o.directives[d]},mount(d,a,p){if(!c){const y=fe(s,r);return y.appContext=o,p===!0?p="svg":p===!1&&(p=void 0),e(y,d,p),c=!0,f._container=d,d.__vue_app__=f,un(y.component)}},unmount(){c&&(e(null,f._container),delete f._container.__vue_app__)},provide(d,a){return o.provides[d]=a,f},runWithContext(d){const a=ut;ut=f;try{return d()}finally{ut=a}}};return f}}let ut=null;function Li(e,t){if(oe){let n=oe.provides;const s=oe.parent&&oe.parent.provides;s===n&&(n=oe.provides=Object.create(s)),n[e]=t}}function Vt(e,t,n=!1){const s=oe||se;if(s||ut){const r=ut?ut._context.provides:s?s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides:void 0;if(r&&e in r)return r[e];if(arguments.length>1)return n&&R(t)?t.call(s&&s.proxy):t}}const jr={},Hr=()=>Object.create(jr),$r=e=>Object.getPrototypeOf(e)===jr;function Fi(e,t,n,s=!1){const r={},o=Hr();e.propsDefaults=Object.create(null),Dr(e,t,r,o);for(const i in e.propsOptions[0])i in r||(r[i]=void 0);n?e.props=s?r:zo(r):e.type.props?e.props=r:e.props=o,e.attrs=o}function ji(e,t,n,s){const{props:r,attrs:o,vnode:{patchFlag:i}}=e,c=D(r),[f]=e.propsOptions;let d=!1;if((s||i>0)&&!(i&16)){if(i&8){const a=e.vnode.dynamicProps;for(let p=0;p<a.length;p++){let y=a[p];if(ln(e.emitsOptions,y))continue;const S=t[y];if(f)if($(o,y))S!==o[y]&&(o[y]=S,d=!0);else{const I=_e(y);r[I]=Mn(f,c,I,S,e,!1)}else S!==o[y]&&(o[y]=S,d=!0)}}}else{Dr(e,t,r,o)&&(d=!0);let a;for(const p in c)(!t||!$(t,p)&&((a=be(p))===p||!$(t,a)))&&(f?n&&(n[p]!==void 0||n[a]!==void 0)&&(r[p]=Mn(f,c,p,void 0,e,!0)):delete r[p]);if(o!==c)for(const p in o)(!t||!$(t,p))&&(delete o[p],d=!0)}d&&Ie(e.attrs,"set","")}function Dr(e,t,n,s){const[r,o]=e.propsOptions;let i=!1,c;if(t)for(let f in t){if(yt(f))continue;const d=t[f];let a;r&&$(r,a=_e(f))?!o||!o.includes(a)?n[a]=d:(c||(c={}))[a]=d:ln(e.emitsOptions,f)||(!(f in s)||d!==s[f])&&(s[f]=d,i=!0)}if(o){const f=D(n),d=c||X;for(let a=0;a<o.length;a++){const p=o[a];n[p]=Mn(r,f,p,d[p],e,!$(d,p))}}return i}function Mn(e,t,n,s,r,o){const i=e[n];if(i!=null){const c=$(i,"default");if(c&&s===void 0){const f=i.default;if(i.type!==Function&&!i.skipFactory&&R(f)){const{propsDefaults:d}=r;if(n in d)s=d[n];else{const a=Nt(r);s=d[n]=f.call(null,t),a()}}else s=f}i[0]&&(o&&!c?s=!1:i[1]&&(s===""||s===be(n))&&(s=!0))}return s}const Hi=new WeakMap;function Vr(e,t,n=!1){const s=n?Hi:t.propsCache,r=s.get(e);if(r)return r;const o=e.props,i={},c=[];let f=!1;if(!R(e)){const a=p=>{f=!0;const[y,S]=Vr(p,t,!0);ie(i,y),S&&c.push(...S)};!n&&t.mixins.length&&t.mixins.forEach(a),e.extends&&a(e.extends),e.mixins&&e.mixins.forEach(a)}if(!o&&!f)return G(e)&&s.set(e,lt),lt;if(N(o))for(let a=0;a<o.length;a++){const p=_e(o[a]);Ss(p)&&(i[p]=X)}else if(o)for(const a in o){const p=_e(a);if(Ss(p)){const y=o[a],S=i[p]=N(y)||R(y)?{type:y}:ie({},y),I=S.type;let L=!1,Y=!0;if(N(I))for(let V=0;V<I.length;++V){const W=I[V],j=R(W)&&W.name;if(j==="Boolean"){L=!0;break}else j==="String"&&(Y=!1)}else L=R(I)&&I.name==="Boolean";S[0]=L,S[1]=Y,(L||$(S,"default"))&&c.push(p)}}const d=[i,c];return G(e)&&s.set(e,d),d}function Ss(e){return e[0]!=="$"&&!yt(e)}const Br=e=>e[0]==="_"||e==="$stable",ts=e=>N(e)?e.map(Ne):[Ne(e)],$i=(e,t,n)=>{if(t._n)return t;const s=fi((...r)=>ts(t(...r)),n);return s._c=!1,s},Ur=(e,t,n)=>{const s=e._ctx;for(const r in e){if(Br(r))continue;const o=e[r];if(R(o))t[r]=$i(r,o,s);else if(o!=null){const i=ts(o);t[r]=()=>i}}},Kr=(e,t)=>{const n=ts(t);e.slots.default=()=>n},Wr=(e,t,n)=>{for(const s in t)(n||s!=="_")&&(e[s]=t[s])},Di=(e,t,n)=>{const s=e.slots=Hr();if(e.vnode.shapeFlag&32){const r=t._;r?(Wr(s,t,n),n&&Qs(s,"_",r,!0)):Ur(t,s)}else t&&Kr(e,t)},Vi=(e,t,n)=>{const{vnode:s,slots:r}=e;let o=!0,i=X;if(s.shapeFlag&32){const c=t._;c?n&&c===1?o=!1:Wr(r,t,n):(o=!t.$stable,Ur(t,r)),i=t}else t&&(Kr(e,t),i={default:1});if(o)for(const c in r)!Br(c)&&i[c]==null&&delete r[c]};function Ln(e,t,n,s,r=!1){if(N(e)){e.forEach((y,S)=>Ln(y,t&&(N(t)?t[S]:t),n,s,r));return}if(Ct(s)&&!r)return;const o=s.shapeFlag&4?un(s.component):s.el,i=r?null:o,{i:c,r:f}=e,d=t&&t.r,a=c.refs===X?c.refs={}:c.refs,p=c.setupState;if(d!=null&&d!==f&&(ee(d)?(a[d]=null,$(p,d)&&(p[d]=null)):ue(d)&&(d.value=null)),R(f))Ke(f,c,12,[i,a]);else{const y=ee(f),S=ue(f);if(y||S){const I=()=>{if(e.f){const L=y?$(p,f)?p[f]:a[f]:f.value;r?N(L)&&Dn(L,o):N(L)?L.includes(o)||L.push(o):y?(a[f]=[o],$(p,f)&&(p[f]=a[f])):(f.value=[o],e.k&&(a[e.k]=f.value))}else y?(a[f]=i,$(p,f)&&(p[f]=i)):S&&(f.value=i,e.k&&(a[e.k]=i))};i?(I.id=-1,he(I,n)):I()}}}const Bi=Symbol("_vte"),Ui=e=>e.__isTeleport;function Ki(){typeof __VUE_PROD_HYDRATION_MISMATCH_DETAILS__!="boolean"&&(Bn().__VUE_PROD_HYDRATION_MISMATCH_DETAILS__=!1)}const he=rl;function Wi(e){return ki(e)}function ki(e,t){Ki();const n=Bn();n.__VUE__=!0;const{insert:s,remove:r,patchProp:o,createElement:i,createText:c,createComment:f,setText:d,setElementText:a,parentNode:p,nextSibling:y,setScopeId:S=Ee,insertStaticContent:I}=e,L=(l,u,h,m=null,_=null,b=null,E=void 0,v=null,C=!!u.dynamicChildren)=>{if(l===u)return;l&&!nt(l,u)&&(m=Rt(l),Ae(l,_,b,!0),l=null),u.patchFlag===-2&&(C=!1,u.dynamicChildren=null);const{type:g,ref:w,shapeFlag:T}=u;switch(g){case cn:Y(l,u,h,m);break;case pe:V(l,u,h,m);break;case yn:l==null&&W(u,h,m,E);break;case Ce:x(l,u,h,m,_,b,E,v,C);break;default:T&1?q(l,u,h,m,_,b,E,v,C):T&6?K(l,u,h,m,_,b,E,v,C):(T&64||T&128)&&g.process(l,u,h,m,_,b,E,v,C,ht)}w!=null&&_&&Ln(w,l&&l.ref,b,u||l,!u)},Y=(l,u,h,m)=>{if(l==null)s(u.el=c(u.children),h,m);else{const _=u.el=l.el;u.children!==l.children&&d(_,u.children)}},V=(l,u,h,m)=>{l==null?s(u.el=f(u.children||""),h,m):u.el=l.el},W=(l,u,h,m)=>{[l.el,l.anchor]=I(l.children,u,h,m,l.el,l.anchor)},j=({el:l,anchor:u},h,m)=>{let _;for(;l&&l!==u;)_=y(l),s(l,h,m),l=_;s(u,h,m)},k=({el:l,anchor:u})=>{let h;for(;l&&l!==u;)h=y(l),r(l),l=h;r(u)},q=(l,u,h,m,_,b,E,v,C)=>{u.type==="svg"?E="svg":u.type==="math"&&(E="mathml"),l==null?P(u,h,m,_,b,E,v,C):O(l,u,_,b,E,v,C)},P=(l,u,h,m,_,b,E,v)=>{let C,g;const{props:w,shapeFlag:T,transition:A,dirs:M}=l;if(C=l.el=i(l.type,b,w&&w.is,w),T&8?a(C,l.children):T&16&&te(l.children,C,null,m,_,mn(l,b),E,v),M&&Xe(l,null,m,"created"),le(C,l,l.scopeId,E,m),w){for(const J in w)J!=="value"&&!yt(J)&&o(C,J,null,w[J],b,m);"value"in w&&o(C,"value",null,w.value,b),(g=w.onVnodeBeforeMount)&&Oe(g,m,l)}M&&Xe(l,null,m,"beforeMount");const H=qi(_,A);H&&A.beforeEnter(C),s(C,u,h),((g=w&&w.onVnodeMounted)||H||M)&&he(()=>{g&&Oe(g,m,l),H&&A.enter(C),M&&Xe(l,null,m,"mounted")},_)},le=(l,u,h,m,_)=>{if(h&&S(l,h),m)for(let b=0;b<m.length;b++)S(l,m[b]);if(_){let b=_.subTree;if(u===b){const E=_.vnode;le(l,E,E.scopeId,E.slotScopeIds,_.parent)}}},te=(l,u,h,m,_,b,E,v,C=0)=>{for(let g=C;g<l.length;g++){const w=l[g]=v?Ve(l[g]):Ne(l[g]);L(null,w,u,h,m,_,b,E,v)}},O=(l,u,h,m,_,b,E)=>{const v=u.el=l.el;let{patchFlag:C,dynamicChildren:g,dirs:w}=u;C|=l.patchFlag&16;const T=l.props||X,A=u.props||X;let M;if(h&&Ze(h,!1),(M=A.onVnodeBeforeUpdate)&&Oe(M,h,u,l),w&&Xe(u,l,h,"beforeUpdate"),h&&Ze(h,!0),(T.innerHTML&&A.innerHTML==null||T.textContent&&A.textContent==null)&&a(v,""),g?F(l.dynamicChildren,g,v,h,m,mn(u,_),b):E||z(l,u,v,null,h,m,mn(u,_),b,!1),C>0){if(C&16)U(v,T,A,h,_);else if(C&2&&T.class!==A.class&&o(v,"class",null,A.class,_),C&4&&o(v,"style",T.style,A.style,_),C&8){const H=u.dynamicProps;for(let J=0;J<H.length;J++){const B=H[J],ae=T[B],xe=A[B];(xe!==ae||B==="value")&&o(v,B,ae,xe,_,h)}}C&1&&l.children!==u.children&&a(v,u.children)}else!E&&g==null&&U(v,T,A,h,_);((M=A.onVnodeUpdated)||w)&&he(()=>{M&&Oe(M,h,u,l),w&&Xe(u,l,h,"updated")},m)},F=(l,u,h,m,_,b,E)=>{for(let v=0;v<u.length;v++){const C=l[v],g=u[v],w=C.el&&(C.type===Ce||!nt(C,g)||C.shapeFlag&70)?p(C.el):h;L(C,g,w,null,m,_,b,E,!0)}},U=(l,u,h,m,_)=>{if(u!==h){if(u!==X)for(const b in u)!yt(b)&&!(b in h)&&o(l,b,u[b],null,_,m);for(const b in h){if(yt(b))continue;const E=h[b],v=u[b];E!==v&&b!=="value"&&o(l,b,v,E,_,m)}"value"in h&&o(l,"value",u.value,h.value,_)}},x=(l,u,h,m,_,b,E,v,C)=>{const g=u.el=l?l.el:c(""),w=u.anchor=l?l.anchor:c("");let{patchFlag:T,dynamicChildren:A,slotScopeIds:M}=u;M&&(v=v?v.concat(M):M),l==null?(s(g,h,m),s(w,h,m),te(u.children||[],h,w,_,b,E,v,C)):T>0&&T&64&&A&&l.dynamicChildren?(F(l.dynamicChildren,A,h,_,b,E,v),(u.key!=null||_&&u===_.subTree)&&kr(l,u,!0)):z(l,u,h,w,_,b,E,v,C)},K=(l,u,h,m,_,b,E,v,C)=>{u.slotScopeIds=v,l==null?u.shapeFlag&512?_.ctx.activate(u,h,m,E,C):Q(u,h,m,_,b,E,C):re(l,u,C)},Q=(l,u,h,m,_,b,E)=>{const v=l.component=dl(l,m,_);if(rn(l)&&(v.ctx.renderer=ht),pl(v,!1,E),v.asyncDep){if(_&&_.registerDep(v,ne,E),!l.el){const C=v.subTree=fe(pe);V(null,C,u,h)}}else ne(v,l,u,h,_,b,E)},re=(l,u,h)=>{const m=u.component=l.component;if(tl(l,u,h))if(m.asyncDep&&!m.asyncResolved){Z(m,u,h);return}else m.next=u,ii(m.update),m.effect.dirty=!0,m.update();else u.el=l.el,m.vnode=u},ne=(l,u,h,m,_,b,E)=>{const v=()=>{if(l.isMounted){let{next:w,bu:T,u:A,parent:M,vnode:H}=l;{const it=qr(l);if(it){w&&(w.el=H.el,Z(l,w,E)),it.asyncDep.then(()=>{l.isUnmounted||v()});return}}let J=w,B;Ze(l,!1),w?(w.el=H.el,Z(l,w,E)):w=H,T&&hn(T),(B=w.props&&w.props.onVnodeBeforeUpdate)&&Oe(B,M,w,H),Ze(l,!0);const ae=Ts(l),xe=l.subTree;l.subTree=ae,L(xe,ae,p(xe.el),Rt(xe),l,_,b),w.el=ae.el,J===null&&nl(l,ae.el),A&&he(A,_),(B=w.props&&w.props.onVnodeUpdated)&&he(()=>Oe(B,M,w,H),_)}else{let w;const{el:T,props:A}=u,{bm:M,m:H,parent:J}=l,B=Ct(u);Ze(l,!1),M&&hn(M),!B&&(w=A&&A.onVnodeBeforeMount)&&Oe(w,J,u),Ze(l,!0);{const ae=l.subTree=Ts(l);L(null,ae,h,m,l,_,b),u.el=ae.el}if(H&&he(H,_),!B&&(w=A&&A.onVnodeMounted)){const ae=u;he(()=>Oe(w,J,ae),_)}(u.shapeFlag&256||J&&Ct(J.vnode)&&J.vnode.shapeFlag&256)&&l.a&&he(l.a,_),l.isMounted=!0,u=h=m=null}},C=l.effect=new Wn(v,Ee,()=>es(g),l.scope),g=l.update=()=>{C.dirty&&C.run()};g.i=l,g.id=l.uid,Ze(l,!0),g()},Z=(l,u,h)=>{u.component=l;const m=l.vnode.props;l.vnode=u,l.next=null,ji(l,u.props,m,h),Vi(l,u.children,h),ze(),bs(l),Ge()},z=(l,u,h,m,_,b,E,v,C=!1)=>{const g=l&&l.children,w=l?l.shapeFlag:0,T=u.children,{patchFlag:A,shapeFlag:M}=u;if(A>0){if(A&128){Pt(g,T,h,m,_,b,E,v,C);return}else if(A&256){Je(g,T,h,m,_,b,E,v,C);return}}M&8?(w&16&&dt(g,_,b),T!==g&&a(h,T)):w&16?M&16?Pt(g,T,h,m,_,b,E,v,C):dt(g,_,b,!0):(w&8&&a(h,""),M&16&&te(T,h,m,_,b,E,v,C))},Je=(l,u,h,m,_,b,E,v,C)=>{l=l||lt,u=u||lt;const g=l.length,w=u.length,T=Math.min(g,w);let A;for(A=0;A<T;A++){const M=u[A]=C?Ve(u[A]):Ne(u[A]);L(l[A],M,h,null,_,b,E,v,C)}g>w?dt(l,_,b,!0,!1,T):te(u,h,m,_,b,E,v,C,T)},Pt=(l,u,h,m,_,b,E,v,C)=>{let g=0;const w=u.length;let T=l.length-1,A=w-1;for(;g<=T&&g<=A;){const M=l[g],H=u[g]=C?Ve(u[g]):Ne(u[g]);if(nt(M,H))L(M,H,h,null,_,b,E,v,C);else break;g++}for(;g<=T&&g<=A;){const M=l[T],H=u[A]=C?Ve(u[A]):Ne(u[A]);if(nt(M,H))L(M,H,h,null,_,b,E,v,C);else break;T--,A--}if(g>T){if(g<=A){const M=A+1,H=M<w?u[M].el:m;for(;g<=A;)L(null,u[g]=C?Ve(u[g]):Ne(u[g]),h,H,_,b,E,v,C),g++}}else if(g>A)for(;g<=T;)Ae(l[g],_,b,!0),g++;else{const M=g,H=g,J=new Map;for(g=H;g<=A;g++){const me=u[g]=C?Ve(u[g]):Ne(u[g]);me.key!=null&&J.set(me.key,g)}let B,ae=0;const xe=A-H+1;let it=!1,ls=0;const pt=new Array(xe);for(g=0;g<xe;g++)pt[g]=0;for(g=M;g<=T;g++){const me=l[g];if(ae>=xe){Ae(me,_,b,!0);continue}let Te;if(me.key!=null)Te=J.get(me.key);else for(B=H;B<=A;B++)if(pt[B-H]===0&&nt(me,u[B])){Te=B;break}Te===void 0?Ae(me,_,b,!0):(pt[Te-H]=g+1,Te>=ls?ls=Te:it=!0,L(me,u[Te],h,null,_,b,E,v,C),ae++)}const cs=it?zi(pt):lt;for(B=cs.length-1,g=xe-1;g>=0;g--){const me=H+g,Te=u[me],fs=me+1<w?u[me+1].el:m;pt[g]===0?L(null,Te,h,fs,_,b,E,v,C):it&&(B<0||g!==cs[B]?Ye(Te,h,fs,2):B--)}}},Ye=(l,u,h,m,_=null)=>{const{el:b,type:E,transition:v,children:C,shapeFlag:g}=l;if(g&6){Ye(l.component.subTree,u,h,m);return}if(g&128){l.suspense.move(u,h,m);return}if(g&64){E.move(l,u,h,ht);return}if(E===Ce){s(b,u,h);for(let T=0;T<C.length;T++)Ye(C[T],u,h,m);s(l.anchor,u,h);return}if(E===yn){j(l,u,h);return}if(m!==2&&g&1&&v)if(m===0)v.beforeEnter(b),s(b,u,h),he(()=>v.enter(b),_);else{const{leave:T,delayLeave:A,afterLeave:M}=v,H=()=>s(b,u,h),J=()=>{T(b,()=>{H(),M&&M()})};A?A(b,H,J):J()}else s(b,u,h)},Ae=(l,u,h,m=!1,_=!1)=>{const{type:b,props:E,ref:v,children:C,dynamicChildren:g,shapeFlag:w,patchFlag:T,dirs:A,cacheIndex:M}=l;if(T===-2&&(_=!1),v!=null&&Ln(v,null,h,l,!0),M!=null&&(u.renderCache[M]=void 0),w&256){u.ctx.deactivate(l);return}const H=w&1&&A,J=!Ct(l);let B;if(J&&(B=E&&E.onVnodeBeforeUnmount)&&Oe(B,u,l),w&6)fo(l.component,h,m);else{if(w&128){l.suspense.unmount(h,m);return}H&&Xe(l,null,u,"beforeUnmount"),w&64?l.type.remove(l,u,h,ht,m):g&&!g.hasOnce&&(b!==Ce||T>0&&T&64)?dt(g,u,h,!1,!0):(b===Ce&&T&384||!_&&w&16)&&dt(C,u,h),m&&os(l)}(J&&(B=E&&E.onVnodeUnmounted)||H)&&he(()=>{B&&Oe(B,u,l),H&&Xe(l,null,u,"unmounted")},h)},os=l=>{const{type:u,el:h,anchor:m,transition:_}=l;if(u===Ce){co(h,m);return}if(u===yn){k(l);return}const b=()=>{r(h),_&&!_.persisted&&_.afterLeave&&_.afterLeave()};if(l.shapeFlag&1&&_&&!_.persisted){const{leave:E,delayLeave:v}=_,C=()=>E(h,b);v?v(l.el,b,C):C()}else b()},co=(l,u)=>{let h;for(;l!==u;)h=y(l),r(l),l=h;r(u)},fo=(l,u,h)=>{const{bum:m,scope:_,update:b,subTree:E,um:v,m:C,a:g}=l;As(C),As(g),m&&hn(m),_.stop(),b&&(b.active=!1,Ae(E,l,u,h)),v&&he(v,u),he(()=>{l.isUnmounted=!0},u),u&&u.pendingBranch&&!u.isUnmounted&&l.asyncDep&&!l.asyncResolved&&l.suspenseId===u.pendingId&&(u.deps--,u.deps===0&&u.resolve())},dt=(l,u,h,m=!1,_=!1,b=0)=>{for(let E=b;E<l.length;E++)Ae(l[E],u,h,m,_)},Rt=l=>{if(l.shapeFlag&6)return Rt(l.component.subTree);if(l.shapeFlag&128)return l.suspense.next();const u=y(l.anchor||l.el),h=u&&u[Bi];return h?y(h):u};let an=!1;const is=(l,u,h)=>{l==null?u._vnode&&Ae(u._vnode,null,null,!0):L(u._vnode||null,l,u,null,null,null,h),u._vnode=l,an||(an=!0,bs(),Cr(),an=!1)},ht={p:L,um:Ae,m:Ye,r:os,mt:Q,mc:te,pc:z,pbc:F,n:Rt,o:e};return{render:is,hydrate:void 0,createApp:Mi(is)}}function mn({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 Ze({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function qi(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function kr(e,t,n=!1){const s=e.children,r=t.children;if(N(s)&&N(r))for(let o=0;o<s.length;o++){const i=s[o];let c=r[o];c.shapeFlag&1&&!c.dynamicChildren&&((c.patchFlag<=0||c.patchFlag===32)&&(c=r[o]=Ve(r[o]),c.el=i.el),!n&&c.patchFlag!==-2&&kr(i,c)),c.type===cn&&(c.el=i.el)}}function zi(e){const t=e.slice(),n=[0];let s,r,o,i,c;const f=e.length;for(s=0;s<f;s++){const d=e[s];if(d!==0){if(r=n[n.length-1],e[r]<d){t[s]=r,n.push(s);continue}for(o=0,i=n.length-1;o<i;)c=o+i>>1,e[n[c]]<d?o=c+1:i=c;d<e[n[o]]&&(o>0&&(t[s]=n[o-1]),n[o]=s)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}function qr(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:qr(t)}function As(e){if(e)for(let t=0;t<e.length;t++)e[t].active=!1}const Gi=Symbol.for("v-scx"),Ji=()=>Vt(Gi),$t={};function bn(e,t,n){return zr(e,t,n)}function zr(e,t,{immediate:n,deep:s,flush:r,once:o,onTrack:i,onTrigger:c}=X){if(t&&o){const P=t;t=(...le)=>{P(...le),q()}}const f=oe,d=P=>s===!0?P:Be(P,s===!1?1:void 0);let a,p=!1,y=!1;if(ue(e)?(a=()=>e.value,p=at(e)):vt(e)?(a=()=>d(e),p=!0):N(e)?(y=!0,p=e.some(P=>vt(P)||at(P)),a=()=>e.map(P=>{if(ue(P))return P.value;if(vt(P))return d(P);if(R(P))return Ke(P,f,2)})):R(e)?t?a=()=>Ke(e,f,2):a=()=>(S&&S(),we(e,f,3,[I])):a=Ee,t&&s){const P=a;a=()=>Be(P())}let S,I=P=>{S=j.onStop=()=>{Ke(P,f,4),S=j.onStop=void 0}},L;if(fn)if(I=Ee,t?n&&we(t,f,3,[a(),y?[]:void 0,I]):a(),r==="sync"){const P=Ji();L=P.__watcherHandles||(P.__watcherHandles=[])}else return Ee;let Y=y?new Array(e.length).fill($t):$t;const V=()=>{if(!(!j.active||!j.dirty))if(t){const P=j.run();(s||p||(y?P.some((le,te)=>We(le,Y[te])):We(P,Y)))&&(S&&S(),we(t,f,3,[P,Y===$t?void 0:y&&Y[0]===$t?[]:Y,I]),Y=P)}else j.run()};V.allowRecurse=!!t;let W;r==="sync"?W=V:r==="post"?W=()=>he(V,f&&f.suspense):(V.pre=!0,f&&(V.id=f.uid),W=()=>es(V));const j=new Wn(a,Ee,W),k=Ao(),q=()=>{j.stop(),k&&Dn(k.effects,j)};return t?n?V():Y=j.run():r==="post"?he(j.run.bind(j),f&&f.suspense):j.run(),L&&L.push(q),q}function Yi(e,t,n){const s=this.proxy,r=ee(e)?e.includes(".")?Gr(s,e):()=>s[e]:e.bind(s,s);let o;R(t)?o=t:(o=t.handler,n=t);const i=Nt(this),c=zr(r,o.bind(s),n);return i(),c}function Gr(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 Be(e,t=1/0,n){if(t<=0||!G(e)||e.__v_skip||(n=n||new Set,n.has(e)))return e;if(n.add(e),t--,ue(e))Be(e.value,t,n);else if(N(e))for(let s=0;s<e.length;s++)Be(e[s],t,n);else if(Js(e)||ct(e))e.forEach(s=>{Be(s,t,n)});else if(Zs(e)){for(const s in e)Be(e[s],t,n);for(const s of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,s)&&Be(e[s],t,n)}return e}const Xi=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${_e(t)}Modifiers`]||e[`${be(t)}Modifiers`];function Zi(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||X;let r=n;const o=t.startsWith("update:"),i=o&&Xi(s,t.slice(7));i&&(i.trim&&(r=n.map(a=>ee(a)?a.trim():a)),i.number&&(r=n.map(go)));let c,f=s[c=dn(t)]||s[c=dn(_e(t))];!f&&o&&(f=s[c=dn(be(t))]),f&&we(f,e,6,r);const d=s[c+"Once"];if(d){if(!e.emitted)e.emitted={};else if(e.emitted[c])return;e.emitted[c]=!0,we(d,e,6,r)}}function Jr(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const o=e.emits;let i={},c=!1;if(!R(e)){const f=d=>{const a=Jr(d,t,!0);a&&(c=!0,ie(i,a))};!n&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}return!o&&!c?(G(e)&&s.set(e,null),null):(N(o)?o.forEach(f=>i[f]=null):ie(i,o),G(e)&&s.set(e,i),i)}function ln(e,t){return!e||!Xt(t)?!1:(t=t.slice(2).replace(/Once$/,""),$(e,t[0].toLowerCase()+t.slice(1))||$(e,be(t))||$(e,t))}function Ts(e){const{type:t,vnode:n,proxy:s,withProxy:r,propsOptions:[o],slots:i,attrs:c,emit:f,render:d,renderCache:a,props:p,data:y,setupState:S,ctx:I,inheritAttrs:L}=e,Y=Wt(e);let V,W;try{if(n.shapeFlag&4){const k=r||s,q=k;V=Ne(d.call(q,k,a,p,S,y,I)),W=c}else{const k=t;V=Ne(k.length>1?k(p,{attrs:c,slots:i,emit:f}):k(p,null)),W=t.props?c:Qi(c)}}catch(k){wt.length=0,nn(k,e,1),V=fe(pe)}let j=V;if(W&&L!==!1){const k=Object.keys(W),{shapeFlag:q}=j;k.length&&q&7&&(o&&k.some($n)&&(W=el(W,o)),j=ke(j,W,!1,!0))}return n.dirs&&(j=ke(j,null,!1,!0),j.dirs=j.dirs?j.dirs.concat(n.dirs):n.dirs),n.transition&&(j.transition=n.transition),V=j,Wt(Y),V}const Qi=e=>{let t;for(const n in e)(n==="class"||n==="style"||Xt(n))&&((t||(t={}))[n]=e[n]);return t},el=(e,t)=>{const n={};for(const s in e)(!$n(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function tl(e,t,n){const{props:s,children:r,component:o}=e,{props:i,children:c,patchFlag:f}=t,d=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&f>=0){if(f&1024)return!0;if(f&16)return s?Os(s,i,d):!!i;if(f&8){const a=t.dynamicProps;for(let p=0;p<a.length;p++){const y=a[p];if(i[y]!==s[y]&&!ln(d,y))return!0}}}else return(r||c)&&(!c||!c.$stable)?!0:s===i?!1:s?i?Os(s,i,d):!0:!!i;return!1}function Os(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 o=s[r];if(t[o]!==e[o]&&!ln(n,o))return!0}return!1}function nl({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 sl=e=>e.__isSuspense;function rl(e,t){t&&t.pendingBranch?N(e)?t.effects.push(...e):t.effects.push(e):li(e)}const Ce=Symbol.for("v-fgt"),cn=Symbol.for("v-txt"),pe=Symbol.for("v-cmt"),yn=Symbol.for("v-stc"),wt=[];let ye=null;function Yr(e=!1){wt.push(ye=e?null:[])}function ol(){wt.pop(),ye=wt[wt.length-1]||null}let Tt=1;function Ns(e){Tt+=e,e<0&&ye&&(ye.hasOnce=!0)}function Xr(e){return e.dynamicChildren=Tt>0?ye||lt:null,ol(),Tt>0&&ye&&ye.push(e),e}function gc(e,t,n,s,r,o){return Xr(eo(e,t,n,s,r,o,!0))}function Zr(e,t,n,s,r){return Xr(fe(e,t,n,s,r,!0))}function zt(e){return e?e.__v_isVNode===!0:!1}function nt(e,t){return e.type===t.type&&e.key===t.key}const Qr=({key:e})=>e??null,Bt=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?ee(e)||ue(e)||R(e)?{i:se,r:e,k:t,f:!!n}:e:null);function eo(e,t=null,n=null,s=0,r=null,o=e===Ce?0:1,i=!1,c=!1){const f={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Qr(t),ref:t&&Bt(t),scopeId:sn,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:o,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:se};return c?(ns(f,n),o&128&&e.normalize(f)):n&&(f.shapeFlag|=ee(n)?8:16),Tt>0&&!i&&ye&&(f.patchFlag>0||o&6)&&f.patchFlag!==32&&ye.push(f),f}const fe=il;function il(e,t=null,n=null,s=0,r=null,o=!1){if((!e||e===xi)&&(e=pe),zt(e)){const c=ke(e,t,!0);return n&&ns(c,n),Tt>0&&!o&&ye&&(c.shapeFlag&6?ye[ye.indexOf(e)]=c:ye.push(c)),c.patchFlag=-2,c}if(yl(e)&&(e=e.__vccOpts),t){t=ll(t);let{class:c,style:f}=t;c&&!ee(c)&&(t.class=Kn(c)),G(f)&&(_r(f)&&!N(f)&&(f=ie({},f)),t.style=Un(f))}const i=ee(e)?1:sl(e)?128:Ui(e)?64:G(e)?4:R(e)?2:0;return eo(e,t,n,s,r,i,o,!0)}function ll(e){return e?_r(e)||$r(e)?ie({},e):e:null}function ke(e,t,n=!1,s=!1){const{props:r,ref:o,patchFlag:i,children:c,transition:f}=e,d=t?fl(r||{},t):r,a={__v_isVNode:!0,__v_skip:!0,type:e.type,props:d,key:d&&Qr(d),ref:t&&t.ref?n&&o?N(o)?o.concat(Bt(t)):[o,Bt(t)]:Bt(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:c,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Ce?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:f,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&ke(e.ssContent),ssFallback:e.ssFallback&&ke(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return f&&s&&kt(a,f.clone(a)),a}function cl(e=" ",t=0){return fe(cn,null,e,t)}function mc(e="",t=!1){return t?(Yr(),Zr(pe,null,e)):fe(pe,null,e)}function Ne(e){return e==null||typeof e=="boolean"?fe(pe):N(e)?fe(Ce,null,e.slice()):typeof e=="object"?Ve(e):fe(cn,null,String(e))}function Ve(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:ke(e)}function ns(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(N(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),ns(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!$r(t)?t._ctx=se:r===3&&se&&(se.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else R(t)?(t={default:t,_ctx:se},n=32):(t=String(t),s&64?(n=16,t=[cl(t)]):n=8);e.children=t,e.shapeFlag|=n}function fl(...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=Kn([t.class,s.class]));else if(r==="style")t.style=Un([t.style,s.style]);else if(Xt(r)){const o=t[r],i=s[r];i&&o!==i&&!(N(o)&&o.includes(i))&&(t[r]=o?[].concat(o,i):i)}else r!==""&&(t[r]=s[r])}return t}function Oe(e,t,n,s=null){we(e,t,7,[n,s])}const ul=Fr();let al=0;function dl(e,t,n){const s=e.type,r=(t?t.appContext:e.appContext)||ul,o={uid:al++,vnode:e,type:s,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new xo(!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:Vr(s,r),emitsOptions:Jr(s,r),emit:null,emitted:null,propsDefaults:X,inheritAttrs:s.inheritAttrs,ctx:X,data:X,props:X,attrs:X,slots:X,refs:X,setupState:X,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 o.ctx={_:o},o.root=t?t.root:o,o.emit=Zi.bind(null,o),e.ce&&e.ce(o),o}let oe=null;const hl=()=>oe||se;let Gt,Fn;{const e=Bn(),t=(n,s)=>{let r;return(r=e[n])||(r=e[n]=[]),r.push(s),o=>{r.length>1?r.forEach(i=>i(o)):r[0](o)}};Gt=t("__VUE_INSTANCE_SETTERS__",n=>oe=n),Fn=t("__VUE_SSR_SETTERS__",n=>fn=n)}const Nt=e=>{const t=oe;return Gt(e),e.scope.on(),()=>{e.scope.off(),Gt(t)}},Ps=()=>{oe&&oe.scope.off(),Gt(null)};function to(e){return e.vnode.shapeFlag&4}let fn=!1;function pl(e,t=!1,n=!1){t&&Fn(t);const{props:s,children:r}=e.vnode,o=to(e);Fi(e,s,o,t),Di(e,r,n);const i=o?_l(e,t):void 0;return t&&Fn(!1),i}function _l(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Ai);const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?ml(e):null,o=Nt(e);ze();const i=Ke(s,e,0,[e.props,r]);if(Ge(),o(),Ys(i)){if(i.then(Ps,Ps),t)return i.then(c=>{Rs(e,c)}).catch(c=>{nn(c,e,0)});e.asyncDep=i}else Rs(e,i)}else no(e)}function Rs(e,t,n){R(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:G(t)&&(e.setupState=br(t)),no(e)}function no(e,t,n){const s=e.type;e.render||(e.render=s.render||Ee);{const r=Nt(e);ze();try{Ti(e)}finally{Ge(),r()}}}const gl={get(e,t){return ge(e,"get",""),e[t]}};function ml(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,gl),slots:e.slots,emit:e.emit,expose:t}}function un(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(br(Go(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Et)return Et[n](e)},has(t,n){return n in t||n in Et}})):e.proxy}function bl(e,t=!0){return R(e)?e.displayName||e.name:e.name||t&&e.__name}function yl(e){return R(e)&&"__vccOpts"in e}const vl=(e,t)=>Jo(e,t,fn);function jn(e,t,n){const s=arguments.length;return s===2?G(t)&&!N(t)?zt(t)?fe(e,null,[t]):fe(e,t):fe(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&zt(n)&&(n=[n]),fe(e,t,n))}const Cl="3.4.38";/**
14
- * @vue/runtime-dom v3.4.38
15
- * (c) 2018-present Yuxi (Evan) You and Vue contributors
16
- * @license MIT
17
- **/const El="http://www.w3.org/2000/svg",wl="http://www.w3.org/1998/Math/MathML",Re=typeof document<"u"?document:null,Is=Re&&Re.createElement("template"),xl={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"?Re.createElementNS(El,e):t==="mathml"?Re.createElementNS(wl,e):n?Re.createElement(e,{is:n}):Re.createElement(e);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>Re.createTextNode(e),createComment:e=>Re.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Re.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,o){const i=n?n.previousSibling:t.lastChild;if(r&&(r===o||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===o||!(r=r.nextSibling)););else{Is.innerHTML=s==="svg"?`<svg>${e}</svg>`:s==="mathml"?`<math>${e}</math>`:e;const c=Is.content;if(s==="svg"||s==="mathml"){const f=c.firstChild;for(;f.firstChild;)c.appendChild(f.firstChild);c.removeChild(f)}t.insertBefore(c,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Fe="transition",_t="animation",Ot=Symbol("_vtc"),so=(e,{slots:t})=>jn(di,Sl(e),t);so.displayName="Transition";const ro={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};so.props=ie({},wr,ro);const Qe=(e,t=[])=>{N(e)?e.forEach(n=>n(...t)):e&&e(...t)},Ms=e=>e?N(e)?e.some(t=>t.length>1):e.length>1:!1;function Sl(e){const t={};for(const x in e)x in ro||(t[x]=e[x]);if(e.css===!1)return t;const{name:n="v",type:s,duration:r,enterFromClass:o=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:f=o,appearActiveClass:d=i,appearToClass:a=c,leaveFromClass:p=`${n}-leave-from`,leaveActiveClass:y=`${n}-leave-active`,leaveToClass:S=`${n}-leave-to`}=e,I=Al(r),L=I&&I[0],Y=I&&I[1],{onBeforeEnter:V,onEnter:W,onEnterCancelled:j,onLeave:k,onLeaveCancelled:q,onBeforeAppear:P=V,onAppear:le=W,onAppearCancelled:te=j}=t,O=(x,K,Q)=>{et(x,K?a:c),et(x,K?d:i),Q&&Q()},F=(x,K)=>{x._isLeaving=!1,et(x,p),et(x,S),et(x,y),K&&K()},U=x=>(K,Q)=>{const re=x?le:W,ne=()=>O(K,x,Q);Qe(re,[K,ne]),Ls(()=>{et(K,x?f:o),je(K,x?a:c),Ms(re)||Fs(K,s,L,ne)})};return ie(t,{onBeforeEnter(x){Qe(V,[x]),je(x,o),je(x,i)},onBeforeAppear(x){Qe(P,[x]),je(x,f),je(x,d)},onEnter:U(!1),onAppear:U(!0),onLeave(x,K){x._isLeaving=!0;const Q=()=>F(x,K);je(x,p),je(x,y),Nl(),Ls(()=>{x._isLeaving&&(et(x,p),je(x,S),Ms(k)||Fs(x,s,Y,Q))}),Qe(k,[x,Q])},onEnterCancelled(x){O(x,!1),Qe(j,[x])},onAppearCancelled(x){O(x,!0),Qe(te,[x])},onLeaveCancelled(x){F(x),Qe(q,[x])}})}function Al(e){if(e==null)return null;if(G(e))return[vn(e.enter),vn(e.leave)];{const t=vn(e);return[t,t]}}function vn(e){return xn(e)}function je(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[Ot]||(e[Ot]=new Set)).add(t)}function et(e,t){t.split(/\s+/).forEach(s=>s&&e.classList.remove(s));const n=e[Ot];n&&(n.delete(t),n.size||(e[Ot]=void 0))}function Ls(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Tl=0;function Fs(e,t,n,s){const r=e._endId=++Tl,o=()=>{r===e._endId&&s()};if(n)return setTimeout(o,n);const{type:i,timeout:c,propCount:f}=Ol(e,t);if(!i)return s();const d=i+"end";let a=0;const p=()=>{e.removeEventListener(d,y),o()},y=S=>{S.target===e&&++a>=f&&p()};setTimeout(()=>{a<f&&p()},c+1),e.addEventListener(d,y)}function Ol(e,t){const n=window.getComputedStyle(e),s=I=>(n[I]||"").split(", "),r=s(`${Fe}Delay`),o=s(`${Fe}Duration`),i=js(r,o),c=s(`${_t}Delay`),f=s(`${_t}Duration`),d=js(c,f);let a=null,p=0,y=0;t===Fe?i>0&&(a=Fe,p=i,y=o.length):t===_t?d>0&&(a=_t,p=d,y=f.length):(p=Math.max(i,d),a=p>0?i>d?Fe:_t:null,y=a?a===Fe?o.length:f.length:0);const S=a===Fe&&/\b(transform|all)(,|$)/.test(s(`${Fe}Property`).toString());return{type:a,timeout:p,propCount:y,hasTransform:S}}function js(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((n,s)=>Hs(n)+Hs(e[s])))}function Hs(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function Nl(){return document.body.offsetHeight}function Pl(e,t,n){const s=e[Ot];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Jt=Symbol("_vod"),oo=Symbol("_vsh"),bc={beforeMount(e,{value:t},{transition:n}){e[Jt]=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):gt(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:s}){!t!=!n&&(s?t?(s.beforeEnter(e),gt(e,!0),s.enter(e)):s.leave(e,()=>{gt(e,!1)}):gt(e,t))},beforeUnmount(e,{value:t}){gt(e,t)}};function gt(e,t){e.style.display=t?e[Jt]:"none",e[oo]=!t}const Rl=Symbol(""),Il=/(^|;)\s*display\s*:/;function Ml(e,t,n){const s=e.style,r=ee(n);let o=!1;if(n&&!r){if(t)if(ee(t))for(const i of t.split(";")){const c=i.slice(0,i.indexOf(":")).trim();n[c]==null&&Ut(s,c,"")}else for(const i in t)n[i]==null&&Ut(s,i,"");for(const i in n)i==="display"&&(o=!0),Ut(s,i,n[i])}else if(r){if(t!==n){const i=s[Rl];i&&(n+=";"+i),s.cssText=n,o=Il.test(n)}}else t&&e.removeAttribute("style");Jt in e&&(e[Jt]=o?s.display:"",e[oo]&&(s.display="none"))}const $s=/\s*!important$/;function Ut(e,t,n){if(N(n))n.forEach(s=>Ut(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Ll(e,t);$s.test(n)?e.setProperty(be(s),n.replace($s,""),"important"):e[s]=n}}const Ds=["Webkit","Moz","ms"],Cn={};function Ll(e,t){const n=Cn[t];if(n)return n;let s=_e(t);if(s!=="filter"&&s in e)return Cn[t]=s;s=en(s);for(let r=0;r<Ds.length;r++){const o=Ds[r]+s;if(o in e)return Cn[t]=o}return t}const Vs="http://www.w3.org/1999/xlink";function Bs(e,t,n,s,r,o=Eo(t)){s&&t.startsWith("xlink:")?n==null?e.removeAttributeNS(Vs,t.slice(6,t.length)):e.setAttributeNS(Vs,t,n):n==null||o&&!er(n)?e.removeAttribute(t):e.setAttribute(t,o?"":qe(n)?String(n):n)}function Fl(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 i=r==="OPTION"?e.getAttribute("value")||"":e.value,c=n==null?"":String(n);(i!==c||!("_value"in e))&&(e.value=c),n==null&&e.removeAttribute(t),e._value=n;return}let o=!1;if(n===""||n==null){const i=typeof e[t];i==="boolean"?n=er(n):n==null&&i==="string"?(n="",o=!0):i==="number"&&(n=0,o=!0)}try{e[t]=n}catch{}o&&e.removeAttribute(t)}function jl(e,t,n,s){e.addEventListener(t,n,s)}function Hl(e,t,n,s){e.removeEventListener(t,n,s)}const Us=Symbol("_vei");function $l(e,t,n,s,r=null){const o=e[Us]||(e[Us]={}),i=o[t];if(s&&i)i.value=s;else{const[c,f]=Dl(t);if(s){const d=o[t]=Ul(s,r);jl(e,c,d,f)}else i&&(Hl(e,c,i,f),o[t]=void 0)}}const Ks=/(?:Once|Passive|Capture)$/;function Dl(e){let t;if(Ks.test(e)){t={};let s;for(;s=e.match(Ks);)e=e.slice(0,e.length-s[0].length),t[s[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):be(e.slice(2)),t]}let En=0;const Vl=Promise.resolve(),Bl=()=>En||(Vl.then(()=>En=0),En=Date.now());function Ul(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;we(Kl(s,n.value),t,5,[s])};return n.value=e,n.attached=Bl(),n}function Kl(e,t){if(N(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 Ws=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Wl=(e,t,n,s,r,o)=>{const i=r==="svg";t==="class"?Pl(e,s,i):t==="style"?Ml(e,n,s):Xt(t)?$n(t)||$l(e,t,n,s,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):kl(e,t,s,i))?(Fl(e,t,s),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Bs(e,t,s,i,o,t!=="value")):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Bs(e,t,s,i))};function kl(e,t,n,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&Ws(t)&&R(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 Ws(t)&&ee(n)?!1:t in e}/*! #__NO_SIDE_EFFECTS__ */function yc(e,t,n){const s=Tr(e,t);class r extends ss{constructor(i){super(s,i,n)}}return r.def=s,r}const ql=typeof HTMLElement<"u"?HTMLElement:class{};class ss extends ql{constructor(t,n={},s){super(),this._def=t,this._props=n,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this._ob=null,this.shadowRoot&&s?s(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,Qn(()=>{this._connected||(this._ob&&(this._ob.disconnect(),this._ob=null),Yt(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let s=0;s<this.attributes.length;s++)this._setAttr(this.attributes[s].name);this._ob=new MutationObserver(s=>{for(const r of s)this._setAttr(r.attributeName)}),this._ob.observe(this,{attributes:!0});const t=(s,r=!1)=>{const{props:o,styles:i}=s;let c;if(o&&!N(o))for(const f in o){const d=o[f];(d===Number||d&&d.type===Number)&&(f in this._props&&(this._props[f]=xn(this._props[f])),(c||(c=Object.create(null)))[_e(f)]=!0)}this._numberProps=c,r&&this._resolveProps(s),this._applyStyles(i),this._update()},n=this._def.__asyncLoader;n?n().then(s=>t(s,!0)):t(this._def)}_resolveProps(t){const{props:n}=t,s=N(n)?n:Object.keys(n||{});for(const r of Object.keys(this))r[0]!=="_"&&s.includes(r)&&this._setProp(r,this[r],!0,!1);for(const r of s.map(_e))Object.defineProperty(this,r,{get(){return this._getProp(r)},set(o){this._setProp(r,o)}})}_setAttr(t){let n=this.hasAttribute(t)?this.getAttribute(t):void 0;const s=_e(t);this._numberProps&&this._numberProps[s]&&(n=xn(n)),this._setProp(s,n,!1)}_getProp(t){return this._props[t]}_setProp(t,n,s=!0,r=!0){n!==this._props[t]&&(this._props[t]=n,r&&this._instance&&this._update(),s&&(n===!0?this.setAttribute(be(t),""):typeof n=="string"||typeof n=="number"?this.setAttribute(be(t),n+""):n||this.removeAttribute(be(t))))}_update(){Yt(this._createVNode(),this.shadowRoot)}_createVNode(){const t=fe(this._def,ie({},this._props));return this._instance||(t.ce=n=>{this._instance=n,n.isCE=!0;const s=(o,i)=>{this.dispatchEvent(new CustomEvent(o,{detail:i}))};n.emit=(o,...i)=>{s(o,i),be(o)!==o&&s(be(o),i)};let r=this;for(;r=r&&(r.parentNode||r.host);)if(r instanceof ss){n.parent=r._instance,n.provides=r._instance.provides;break}}),t}_applyStyles(t){t&&t.forEach(n=>{const s=document.createElement("style");s.textContent=n,this.shadowRoot.appendChild(s)})}}const zl={esc:"escape",space:" ",up:"arrow-up",left:"arrow-left",right:"arrow-right",down:"arrow-down",delete:"backspace"},vc=(e,t)=>{const n=e._withKeys||(e._withKeys={}),s=t.join(".");return n[s]||(n[s]=r=>{if(!("key"in r))return;const o=be(r.key);if(t.some(i=>i===o||zl[i]===o))return e(r)})},Gl=ie({patchProp:Wl},xl);let ks;function io(){return ks||(ks=Wi(Gl))}const Yt=(...e)=>{io().render(...e)},Cc=(...e)=>{const t=io().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=Yl(s);if(!r)return;const o=t._component;!R(o)&&!o.render&&!o.template&&(o.template=r.innerHTML),r.innerHTML="";const i=n(r,!1,Jl(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),i},t};function Jl(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function Yl(e){return ee(e)?document.querySelector(e):e}var Xl=Object.defineProperty,Zl=(e,t,n)=>t in e?Xl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,He=(e,t,n)=>Zl(e,typeof t!="symbol"?t+"":t,n);/**
18
- * @vue/shared v3.5.13
19
- * (c) 2018-present Yuxi (Evan) You and Vue contributors
20
- * @license MIT
21
- **/const Ql=Object.assign,qs=Array.isArray,ec=e=>typeof e=="string",lo=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},tc=/-(\w)/g,wn=lo(e=>e.replace(tc,(t,n)=>n?n.toUpperCase():"")),nc=/\B([A-Z])/g,mt=lo(e=>e.replace(nc,"-$1").toLowerCase()),zs=e=>{const t=ec(e)?Number(e):NaN;return isNaN(t)?e:t};/*!#__NO_SIDE_EFFECTS__*/function sc(e,t,n){const s=Tr(e);class r extends rs{constructor(i){super(s,i,t,n)}}return He(r,"def",s),r}const rc=typeof HTMLElement<"u"?HTMLElement:class{};class rs extends rc{constructor(t,n={},s={shadowRoot:!0},r){super(),He(this,"_instance",null),He(this,"_connected",!1),He(this,"_resolved",!1),He(this,"_numberProps",null),He(this,"_styles"),He(this,"_slots",{}),He(this,"_ob",null),this._def=t,this._props=n,this._config=s,this._root&&r?r(this._createVNode(),this._root):(this._config.shadowRoot!==!1&&this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}get _root(){return this._config.shadowRoot?this.shadowRoot:this}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,Qn(()=>{this._connected||(this._ob&&(this._ob.disconnect(),this._ob=null),Yt(null,this._root),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let s=0;s<this.attributes.length;s++)this._setAttr(this.attributes[s].name);this._ob=new MutationObserver(s=>{for(const r of s)this._setAttr(r.attributeName)}),this._ob.observe(this,{attributes:!0});const t=(s,r=!1)=>{var o;const{props:i}=s,c=this._collectNestedStyles(s);let f;if(i&&!qs(i))for(const d in i){const a=i[d];(a===Number||a&&a.type===Number)&&(d in this._props&&(this._props[d]=zs(this._props[d])),(f||(f=Object.create(null)))[wn(d)]=!0)}if(this._numberProps=f,r&&this._resolveProps(s),!this._config.shadowRoot){this._slots={};const d=a=>Array.from(a).map(p=>{var y;if(p.nodeType===Node.ELEMENT_NODE){const S=p,I=Object.fromEntries(Array.from(S.attributes).map(L=>[L.name,L.value]));return jn(S.tagName.toLowerCase(),I,d(S.childNodes))}else if(p.nodeType===Node.TEXT_NODE)return((y=p.textContent)==null?void 0:y.trim())||null;return null}).filter(p=>p!=null);for(const a of Array.from(this.childNodes)){const p=a.nodeType===Node.ELEMENT_NODE&&a.getAttribute("slot")||"default";if(this._slots[p]||(this._slots[p]=[]),a.nodeType===Node.ELEMENT_NODE){const y=a,S=Object.fromEntries(Array.from(y.attributes).map(I=>[I.name,I.value]));this._slots[p].push(jn(y.tagName.toLowerCase(),S,d(y.childNodes)))}else if(a.nodeType===Node.TEXT_NODE){const y=(o=a.textContent)==null?void 0:o.trim();y&&this._slots[p].push(y)}}this.replaceChildren()}this._applyStyles(c),this._update()},n=this._def.__asyncLoader;n?n().then(s=>t(s,!0)):t(this._def)}_resolveProps(t){const{props:n}=t,s=qs(n)?n:Object.keys(n||{});for(const r of Object.keys(this))r[0]!=="_"&&s.includes(r)&&this._setProp(r,this[r],!0,!1);for(const r of s.map(wn))Object.defineProperty(this,r,{get(){return this._getProp(r)},set(o){this._setProp(r,o)}})}_setAttr(t){let n=this.hasAttribute(t)?this.getAttribute(t):void 0;const s=wn(t);this._numberProps&&this._numberProps[s]&&(n=zs(n)),this._setProp(s,n,!1)}_getProp(t){return this._props[t]}_setProp(t,n,s=!0,r=!0){n!==this._props[t]&&(this._props[t]=n,r&&this._instance&&this._update(),s&&(n===!0?this.setAttribute(mt(t),""):typeof n=="string"||typeof n=="number"?this.setAttribute(mt(t),n+""):n||this.removeAttribute(mt(t))))}_update(){Yt(this._createVNode(),this._root)}_createVNode(){const t=fe(this._def,Ql({},this._props),this._slots);return this._instance||(t.ce=n=>{this._instance=n,n.isCE=!0;const s=(o,i)=>{this.dispatchEvent(new CustomEvent(o,{detail:i}))};n.emit=(o,...i)=>{s(o,i),mt(o)!==o&&s(mt(o),i)};let r=this;for(;r=r&&(r.parentNode||r.host);)if(r instanceof rs){n.parent=r._instance,n.provides=r._instance.provides;break}}),t}_applyStyles(t){t&&t.forEach(n=>{const s=document.createElement("style");s.textContent=n,this._root.prepend(s)})}_collectNestedStyles(t){let n=t.styles??[];return t.components&&Object.values(t.components).forEach(s=>{n=n.concat(this._collectNestedStyles(s))}),n}}const Gs=e=>{for(;e?.nodeType!==1;){if(!e.parentElement)throw new Error("No parent element found, the rootComponent must be wrapped in a HTML element (e.g. <template><div> app content </div></template>)");e=e.parentElement}return e};function oc(e){return"on"+e.charAt(0).toUpperCase()+e.slice(1)}function ic(e){return typeof e=="string"?e.replace(/:root/g,":host"):Array.isArray(e)?e.map(t=>t.replace(/:root/g,":host")):e}const lc=({rootComponent:e,plugins:t,cssFrameworkStyles:n,VueDefineCustomElement:s,h:r,createApp:o,getCurrentInstance:i,elementName:c,disableRemoveStylesOnUnmount:f,disableShadowDOM:d,replaceRootWithHostInCssFramework:a,asyncInitialization:p,loaderAttribute:y,hideSlotContentUntilMounted:S})=>{const I=d?sc:s,L=a?ic(n):n,Y=I({styles:[L],props:{...e.props,modelValue:{type:[String,Number,Boolean,Array,Object]}},emits:e?.emits,setup(V,{slots:W}){var j;const k=[...e?.emits||[],"update:modelValue"],q=o();if(q.component("app-root",e),e.provide){const O=typeof e.provide=="function"?e.provide():e.provide;Object.keys(O).forEach(F=>{q.provide(F,O[F])})}q.mixin({mounted(){var O,F,U,x;if(((F=(O=this.$)==null?void 0:O.type)==null?void 0:F.name)==="vue-custom-element-root-component")return;const K=re=>{re!=null&&re.length&&(this.__style=document.createElement("style"),this.__style.innerText=re.join().replace(/\n/g,""),Gs(this.$el).append(this.__style))};if(K((U=this.$)==null?void 0:U.type.styles),this.$options.components)for(const re of Object.values(this.$options.components))K(re.styles);const Q=((x=this.$el.getRootNode())==null?void 0:x.host)||Gs(this.$el);Q&&(console.log("hideSlotContentUntilMounted",S),S&&(console.log("hideSlotContentUntilMounted",S),Q.querySelectorAll("[hidden]").forEach(re=>{re.removeAttribute("hidden")})),Q.querySelectorAll(`[${y}]`).forEach(re=>{re.remove()}))},unmounted(){var O;f||(O=this.__style)==null||O.remove()}}),q.use(t);const P=i();Object.assign(P.appContext,q._context),Object.assign(P.provides,q._context.provides);const le=k?.reduce((O,F)=>{const U=oc(F);return O[U]=x=>{P.emit(F,x)},O},{}),te=(j=e?.namedSlots)==null?void 0:j.reduce((O,F)=>(O[F]=()=>r("slot",{name:F}),O),{});return()=>r(e,{...V,...le},{default:()=>r("slot"),...te,...W})}},d&&{shadowRoot:!1});return p().then(()=>Y)},Ec=({elementName:e,rootComponent:t,plugins:n,cssFrameworkStyles:s,VueDefineCustomElement:r,h:o,createApp:i,getCurrentInstance:c,disableRemoveStylesOnUnmount:f=!1,disableShadowDOM:d=!1,replaceRootWithHostInCssFramework:a=!1,asyncInitialization:p=()=>Promise.resolve(),loaderAttribute:y="data-web-component-loader",hideSlotContentUntilMounted:S=!1})=>{if(!t){console.warn("No root component provided. Please provide a root component to create a web component.");return}if(!r){console.warn("No VueDefineCustomElement provided. Please provide a VueDefineCustomElement to create a web component.");return}if(!o){console.warn("No h provided. Please provide an h to create a web component.");return}if(!i){console.warn("No createApp provided. Please provide a createApp to create a web component.");return}if(!c){console.warn("No getCurrentInstance provided. Please provide a getCurrentInstance to create a web component.");return}lc({rootComponent:t,plugins:n,cssFrameworkStyles:s,VueDefineCustomElement:r,h:o,createApp:i,getCurrentInstance:c,elementName:e,disableRemoveStylesOnUnmount:f,disableShadowDOM:d,replaceRootWithHostInCssFramework:a,asyncInitialization:p,loaderAttribute:y,hideSlotContentUntilMounted:S}).then(I=>{customElements.define(e,I)})};export{bi as A,fi as B,_c as C,yi as D,dc as E,Ce as F,bc as G,Ec as H,yc as I,jn as J,Cc as K,so as T,gc as a,eo as b,vl as c,Tr as d,wo as e,Nr as f,Rr as g,hc as h,ue as i,mc as j,pc as k,Un as l,Zr as m,Kn as n,Yr as o,fe as p,cl as q,Yo as r,uc as s,fc as t,Qo as u,ac as v,vc as w,bn as x,hl as y,Pr as z};