nuxt-ignis 0.5.0 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1432) hide show
  1. package/.data/content/contents.sqlite +0 -0
  2. package/.env +2 -1
  3. package/.nuxt/app.config.mjs +25 -1
  4. package/.nuxt/components.d.ts +842 -464
  5. package/.nuxt/content/components.ts +328 -208
  6. package/.nuxt/dev/index.mjs +216 -156
  7. package/.nuxt/dev/index.mjs.map +1 -1
  8. package/.nuxt/dist/server/client.manifest.mjs +1 -1
  9. package/.nuxt/dist/server/client.precomputed.mjs +1 -1
  10. package/.nuxt/eslint-typegen.d.ts +111 -39
  11. package/.nuxt/eslint.config.d.mts +3 -3
  12. package/.nuxt/eslint.config.mjs +10 -10
  13. package/.nuxt/image/providers.d.ts +52 -0
  14. package/.nuxt/imports.d.ts +78 -68
  15. package/.nuxt/manifest/latest.json +1 -1
  16. package/.nuxt/manifest/meta/dev.json +1 -1
  17. package/.nuxt/mdc-highlighter.mjs +4 -3
  18. package/.nuxt/mdc-image-component.mjs +1 -1
  19. package/.nuxt/mdc-imports.mjs +2 -2
  20. package/.nuxt/module/nuxt-robots.d.ts +12 -12
  21. package/.nuxt/module/nuxt-seo-utils.d.ts +10 -10
  22. package/.nuxt/module/nuxt-site-config.d.ts +8 -8
  23. package/.nuxt/module/nuxt-sitemap.d.ts +17 -17
  24. package/.nuxt/nitro.json +5 -5
  25. package/.nuxt/nuxt.d.ts +9 -10
  26. package/.nuxt/nuxt.json +2 -2
  27. package/.nuxt/nuxt.node.d.ts +9 -9
  28. package/.nuxt/nuxt.shared.d.ts +1 -0
  29. package/.nuxt/tsconfig.app.json +230 -241
  30. package/.nuxt/tsconfig.json +233 -244
  31. package/.nuxt/tsconfig.node.json +129 -132
  32. package/.nuxt/tsconfig.server.json +151 -160
  33. package/.nuxt/tsconfig.shared.json +69 -75
  34. package/.nuxt/types/app.config.d.ts +25 -1
  35. package/.nuxt/types/build.d.ts +1 -2
  36. package/.nuxt/types/components.d.ts +842 -464
  37. package/.nuxt/types/i18n-plugin.d.ts +2 -2
  38. package/.nuxt/types/imports.d.ts +393 -362
  39. package/.nuxt/types/modules.d.ts +16 -36
  40. package/.nuxt/types/nitro-imports.d.ts +390 -390
  41. package/.nuxt/types/nitro-nuxt.d.ts +2 -1
  42. package/.nuxt/types/nitro-routes.d.ts +25 -25
  43. package/.nuxt/types/plugins.d.ts +42 -42
  44. package/.nuxt/types/runtime-config.d.ts +53 -1
  45. package/.nuxt/types/ui.d.ts +3 -2
  46. package/.nuxt/ui/auth-form.ts +20 -0
  47. package/.nuxt/ui/badge.ts +1 -1
  48. package/.nuxt/ui/banner.ts +108 -0
  49. package/.nuxt/ui/blog-post.ts +142 -0
  50. package/.nuxt/ui/blog-posts.ts +9 -0
  51. package/.nuxt/ui/button.ts +1 -1
  52. package/.nuxt/ui/calendar.ts +221 -9
  53. package/.nuxt/ui/changelog-version.ts +41 -0
  54. package/.nuxt/ui/changelog-versions.ts +8 -0
  55. package/.nuxt/ui/chat-message.ts +136 -0
  56. package/.nuxt/ui/chat-messages.ts +14 -0
  57. package/.nuxt/ui/chat-palette.ts +8 -0
  58. package/.nuxt/ui/chat-prompt-submit.ts +5 -0
  59. package/.nuxt/ui/chat-prompt.ts +35 -0
  60. package/.nuxt/ui/checkbox-group.ts +4 -1
  61. package/.nuxt/ui/checkbox.ts +5 -4
  62. package/.nuxt/ui/color-picker.ts +2 -2
  63. package/.nuxt/ui/command-palette.ts +12 -2
  64. package/.nuxt/ui/content/content-navigation.ts +368 -0
  65. package/.nuxt/ui/content/content-search-button.ts +15 -0
  66. package/.nuxt/ui/content/content-search.ts +13 -0
  67. package/.nuxt/ui/content/content-surround.ts +34 -0
  68. package/.nuxt/ui/content/content-toc.ts +155 -0
  69. package/.nuxt/ui/context-menu.ts +3 -1
  70. package/.nuxt/ui/dashboard-group.ts +3 -0
  71. package/.nuxt/ui/dashboard-navbar.ts +21 -0
  72. package/.nuxt/ui/dashboard-panel.ts +17 -0
  73. package/.nuxt/ui/dashboard-resize-handle.ts +3 -0
  74. package/.nuxt/ui/dashboard-search-button.ts +15 -0
  75. package/.nuxt/ui/dashboard-search.ts +13 -0
  76. package/.nuxt/ui/dashboard-sidebar-collapse.ts +9 -0
  77. package/.nuxt/ui/dashboard-sidebar-toggle.ts +9 -0
  78. package/.nuxt/ui/dashboard-sidebar.ts +37 -0
  79. package/.nuxt/ui/dashboard-toolbar.ts +7 -0
  80. package/.nuxt/ui/dropdown-menu.ts +3 -1
  81. package/.nuxt/ui/empty.ts +83 -0
  82. package/.nuxt/ui/error.ts +9 -0
  83. package/.nuxt/ui/footer-columns.ts +28 -0
  84. package/.nuxt/ui/footer.ts +11 -0
  85. package/.nuxt/ui/header.ts +25 -0
  86. package/.nuxt/ui/index.ts +57 -2
  87. package/.nuxt/ui/input-date.ts +343 -0
  88. package/.nuxt/ui/input-menu.ts +13 -3
  89. package/.nuxt/ui/input-number.ts +26 -15
  90. package/.nuxt/ui/input-tags.ts +1 -1
  91. package/.nuxt/ui/input-time.ts +342 -0
  92. package/.nuxt/ui/input.ts +1 -1
  93. package/.nuxt/ui/kbd.ts +1 -1
  94. package/.nuxt/ui/main.ts +3 -0
  95. package/.nuxt/ui/marquee.ts +66 -0
  96. package/.nuxt/ui/modal.ts +36 -5
  97. package/.nuxt/ui/navigation-menu.ts +2 -0
  98. package/.nuxt/ui/page-anchors.ts +30 -0
  99. package/.nuxt/ui/page-aside.ts +10 -0
  100. package/.nuxt/ui/page-body.ts +3 -0
  101. package/.nuxt/ui/page-card.ts +279 -0
  102. package/.nuxt/ui/page-columns.ts +3 -0
  103. package/.nuxt/ui/page-cta.ts +70 -0
  104. package/.nuxt/ui/page-feature.ts +26 -0
  105. package/.nuxt/ui/page-grid.ts +3 -0
  106. package/.nuxt/ui/page-header.ts +18 -0
  107. package/.nuxt/ui/page-hero.ts +44 -0
  108. package/.nuxt/ui/page-links.ts +25 -0
  109. package/.nuxt/ui/page-list.ts +8 -0
  110. package/.nuxt/ui/page-logos.ts +15 -0
  111. package/.nuxt/ui/page-section.ts +84 -0
  112. package/.nuxt/ui/page.ts +32 -0
  113. package/.nuxt/ui/pricing-plan.ts +101 -0
  114. package/.nuxt/ui/pricing-plans.ts +22 -0
  115. package/.nuxt/ui/pricing-table.ts +51 -0
  116. package/.nuxt/ui/prose/a.ts +6 -0
  117. package/.nuxt/ui/prose/accordion-item.ts +3 -0
  118. package/.nuxt/ui/prose/accordion.ts +6 -0
  119. package/.nuxt/ui/prose/badge.ts +3 -0
  120. package/.nuxt/ui/prose/blockquote.ts +3 -0
  121. package/.nuxt/ui/prose/callout.ts +129 -0
  122. package/.nuxt/ui/prose/card-group.ts +3 -0
  123. package/.nuxt/ui/prose/card.ts +119 -0
  124. package/.nuxt/ui/prose/code-collapse.ts +19 -0
  125. package/.nuxt/ui/prose/code-group.ts +13 -0
  126. package/.nuxt/ui/prose/code-icon.ts +66 -0
  127. package/.nuxt/ui/prose/code-preview.ts +14 -0
  128. package/.nuxt/ui/prose/code-tree.ts +28 -0
  129. package/.nuxt/ui/prose/code.ts +27 -0
  130. package/.nuxt/ui/prose/collapsible.ts +12 -0
  131. package/.nuxt/ui/prose/em.ts +3 -0
  132. package/.nuxt/ui/prose/field-group.ts +3 -0
  133. package/.nuxt/ui/prose/field.ts +11 -0
  134. package/.nuxt/ui/prose/h1.ts +6 -0
  135. package/.nuxt/ui/prose/h2.ts +14 -0
  136. package/.nuxt/ui/prose/h3.ts +14 -0
  137. package/.nuxt/ui/prose/h4.ts +6 -0
  138. package/.nuxt/ui/prose/hr.ts +3 -0
  139. package/.nuxt/ui/prose/icon.ts +3 -0
  140. package/.nuxt/ui/prose/img.ts +23 -0
  141. package/.nuxt/ui/prose/index.ts +41 -0
  142. package/.nuxt/ui/prose/kbd.ts +3 -0
  143. package/.nuxt/ui/prose/li.ts +3 -0
  144. package/.nuxt/ui/prose/ol.ts +3 -0
  145. package/.nuxt/ui/prose/p.ts +3 -0
  146. package/.nuxt/ui/prose/pre.ts +17 -0
  147. package/.nuxt/ui/prose/steps.ts +19 -0
  148. package/.nuxt/ui/prose/strong.ts +3 -0
  149. package/.nuxt/ui/prose/table.ts +6 -0
  150. package/.nuxt/ui/prose/tabs-item.ts +3 -0
  151. package/.nuxt/ui/prose/tabs.ts +5 -0
  152. package/.nuxt/ui/prose/tbody.ts +3 -0
  153. package/.nuxt/ui/prose/td.ts +3 -0
  154. package/.nuxt/ui/prose/th.ts +3 -0
  155. package/.nuxt/ui/prose/thead.ts +3 -0
  156. package/.nuxt/ui/prose/tr.ts +3 -0
  157. package/.nuxt/ui/prose/ul.ts +3 -0
  158. package/.nuxt/ui/radio-group.ts +5 -3
  159. package/.nuxt/ui/select-menu.ts +13 -3
  160. package/.nuxt/ui/select.ts +5 -3
  161. package/.nuxt/ui/switch.ts +4 -3
  162. package/.nuxt/ui/table.ts +8 -2
  163. package/.nuxt/ui/textarea.ts +1 -1
  164. package/.nuxt/ui/tree.ts +24 -10
  165. package/.nuxt/ui/user.ts +101 -0
  166. package/.nuxt/ui-image-component.ts +1 -1
  167. package/.nuxt/ui.css +6 -0
  168. package/.output/nitro.json +3 -3
  169. package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-4kZc4IwOXqryLeYzsaTvEKd54SPfeeGKPyDAZei18kw.woff +0 -0
  170. package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-RvZUU2X45U7WIDI083h9MozPZMSPdvOCkgsORsWvPOw.woff +0 -0
  171. package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-mSqNnHyoMtDKNu3z_xDpL0hWMcL0lhabY3Oa0dnS5HM.woff +0 -0
  172. package/.output/public/_ignis-config.json +1 -1
  173. package/.output/public/_nuxt/-PRJHlJd.js +1 -0
  174. package/.output/public/_nuxt/38NkCNo_.js +0 -0
  175. package/.output/public/_nuxt/4p0_eEbF.js +0 -0
  176. package/.output/public/_nuxt/5P9Ak6Zm.js +0 -0
  177. package/.output/public/_nuxt/5msm7UDY.js +0 -0
  178. package/.output/public/_nuxt/7I_cTX05.js +1 -0
  179. package/.output/public/_nuxt/7N8aGG8C.js +1 -0
  180. package/.output/public/_nuxt/9j0d6I4O.js +0 -0
  181. package/.output/public/_nuxt/B7b1sBVf.js +0 -0
  182. package/.output/public/_nuxt/B7pFyPXj.js +1 -0
  183. package/.output/public/_nuxt/B8s7UrMM.js +1 -0
  184. package/.output/public/_nuxt/BHBmrOu8.js +1 -0
  185. package/.output/public/_nuxt/BHIv_dM4.js +0 -0
  186. package/.output/public/_nuxt/BI2n4fU-.js +0 -0
  187. package/.output/public/_nuxt/BJos6QuZ.js +0 -0
  188. package/.output/public/_nuxt/BKsXoEBs.js +0 -0
  189. package/.output/public/_nuxt/BNKvjWkT.js +1 -0
  190. package/.output/public/_nuxt/BQmtXkqc.js +1 -0
  191. package/.output/public/_nuxt/BQuCJQB8.js +0 -0
  192. package/.output/public/_nuxt/BSEIdlOb.js +0 -0
  193. package/.output/public/_nuxt/BST7mczs.js +1 -0
  194. package/.output/public/_nuxt/BTAjWPAo.js +1 -0
  195. package/.output/public/_nuxt/BYIIksjz.js +0 -0
  196. package/.output/public/_nuxt/BfZ1Ro0X.js +1 -0
  197. package/.output/public/_nuxt/Bg-6qayI.js +1 -0
  198. package/.output/public/_nuxt/BgP-osMP.js +1 -0
  199. package/.output/public/_nuxt/BiCkyLWS.js +1 -0
  200. package/.output/public/_nuxt/BjN_umGo.js +1 -0
  201. package/.output/public/_nuxt/BqK0HYmw.js +1 -0
  202. package/.output/public/_nuxt/BrSteMIA.js +1 -0
  203. package/.output/public/_nuxt/C-MeLOeF.js +1 -0
  204. package/.output/public/_nuxt/C-OKZMJp.js +1 -0
  205. package/.output/public/_nuxt/C6tJinWY.js +0 -0
  206. package/.output/public/_nuxt/C7lLQr2h.js +0 -0
  207. package/.output/public/_nuxt/CDLGLk8m.js +1 -0
  208. package/.output/public/_nuxt/CDT62st6.js +1 -0
  209. package/.output/public/_nuxt/CFimyBH-.js +0 -0
  210. package/.output/public/_nuxt/CG7cd7Sy.js +1 -0
  211. package/.output/public/_nuxt/CKPnIC-C.js +0 -0
  212. package/.output/public/_nuxt/COPw3T3p.js +1 -0
  213. package/.output/public/_nuxt/CQGFUxxa.js +1 -0
  214. package/.output/public/_nuxt/CSX_cLY6.js +1 -0
  215. package/.output/public/_nuxt/CaVNnfk7.js +0 -0
  216. package/.output/public/_nuxt/Cd1ifhTP.js +0 -0
  217. package/.output/public/_nuxt/CdygaddQ.js +9 -0
  218. package/.output/public/_nuxt/Cf-VPxfE.js +1 -0
  219. package/.output/public/_nuxt/CfmMK6-y.js +1 -0
  220. package/.output/public/_nuxt/Civ5r6YF.js +1 -0
  221. package/.output/public/_nuxt/CkdnMzBA.js +0 -0
  222. package/.output/public/_nuxt/CnlJVizr.js +1 -0
  223. package/.output/public/_nuxt/Coqgx10n.js +0 -0
  224. package/.output/public/_nuxt/CxMUMwzI.js +1 -0
  225. package/.output/public/_nuxt/Cyw3rpDt.js +1 -0
  226. package/.output/public/_nuxt/CzKgiVVn.js +1 -0
  227. package/.output/public/_nuxt/D-qXrpoJ.js +0 -0
  228. package/.output/public/_nuxt/D2vgCRoc.js +1 -0
  229. package/.output/public/_nuxt/D4fuXfD_.js +1 -0
  230. package/.output/public/_nuxt/D5IuxRu4.js +1 -0
  231. package/.output/public/_nuxt/D5j9Embb.js +1 -0
  232. package/.output/public/_nuxt/D6YL6Hhi.js +0 -0
  233. package/.output/public/_nuxt/DAIwjxRT.js +0 -0
  234. package/.output/public/_nuxt/DBEY94Mo.js +0 -0
  235. package/.output/public/_nuxt/DCQOMtdo.js +1 -0
  236. package/.output/public/_nuxt/DEQ3hSSO.js +1 -0
  237. package/.output/public/_nuxt/DFfCkFZ3.js +1 -0
  238. package/.output/public/_nuxt/DL4qe-W_.js +0 -0
  239. package/.output/public/_nuxt/DLKI6lgi.js +0 -0
  240. package/.output/public/_nuxt/DOAeoYpG.js +0 -0
  241. package/.output/public/_nuxt/DPQeTxQ3.js +1 -0
  242. package/.output/public/_nuxt/DP_txrAq.js +1 -0
  243. package/.output/public/_nuxt/DQKS5ddY.js +1 -0
  244. package/.output/public/_nuxt/DXXu9Lvl.js +1 -0
  245. package/.output/public/_nuxt/DcUS3ReQ.js +0 -0
  246. package/.output/public/_nuxt/DdWDmJe7.js +0 -0
  247. package/.output/public/_nuxt/Df59gZou.js +0 -0
  248. package/.output/public/_nuxt/DiIccoHR.js +0 -0
  249. package/.output/public/_nuxt/DiL3rzK6.js +1 -0
  250. package/.output/public/_nuxt/DkEHW4Vs.js +0 -0
  251. package/.output/public/_nuxt/DmRrrdJv.js +1 -0
  252. package/.output/public/_nuxt/Do5nYv4E.js +0 -0
  253. package/.output/public/_nuxt/DqyxgTAQ.js +0 -0
  254. package/.output/public/_nuxt/DrE64K_R.js +1 -0
  255. package/.output/public/_nuxt/DrskXsQH.js +1 -0
  256. package/.output/public/_nuxt/Ds7AWph0.js +0 -0
  257. package/.output/public/_nuxt/Dvcv58Mc.js +1 -0
  258. package/.output/public/_nuxt/FMWwyTQ_.js +0 -0
  259. package/.output/public/_nuxt/Pre.DHQaXnEy.css +2 -0
  260. package/.output/public/_nuxt/Q6bGSN8C.js +0 -0
  261. package/.output/public/_nuxt/QyE4cqYn.js +1 -0
  262. package/.output/public/_nuxt/Tcmkoyas.js +1 -0
  263. package/.output/public/_nuxt/Tj4XPHLn.js +1 -0
  264. package/.output/public/_nuxt/VOEA7UHD.js +0 -0
  265. package/.output/public/_nuxt/WOOfaOjG.js +1 -0
  266. package/.output/public/_nuxt/Y6FRsTFQ.js +0 -0
  267. package/.output/public/_nuxt/ZDbum-dK.js +1 -0
  268. package/.output/public/_nuxt/ZTY82FYd.js +0 -0
  269. package/.output/public/_nuxt/asVu8S_S.js +51 -0
  270. package/.output/public/_nuxt/builds/latest.json +1 -1
  271. package/.output/public/_nuxt/builds/meta/68901e1f-eb2d-48db-9c33-8ac67fff1d62.json +1 -0
  272. package/.output/public/_nuxt/cjlVjclE.js +1 -0
  273. package/.output/public/_nuxt/entry.UZgisdi2.css +1 -0
  274. package/.output/public/_nuxt/error-404.DQ5oEvRi.css +1 -0
  275. package/.output/public/_nuxt/error-500.c8JA_zlB.css +1 -0
  276. package/.output/public/_nuxt/gmjYz5n6.js +0 -0
  277. package/.output/public/_nuxt/iatO0zkI.js +1 -0
  278. package/.output/public/_nuxt/jieRiiOw.js +0 -0
  279. package/.output/public/_nuxt/lAhMwKxb.js +1 -0
  280. package/.output/public/_nuxt/mHcxE7OD.js +0 -0
  281. package/.output/public/_nuxt/n17zLPF6.js +0 -0
  282. package/.output/public/_nuxt/ncv2QjU2.js +1 -0
  283. package/.output/public/_nuxt/osXHzmfu.js +1 -0
  284. package/.output/public/_nuxt/plapqmiu.js +1 -0
  285. package/.output/public/_nuxt/pnNmDVjA.js +0 -0
  286. package/.output/public/_nuxt/rxAL1Pmw.js +1 -0
  287. package/.output/public/_nuxt/ryzXmKdZ.js +1 -0
  288. package/.output/public/_nuxt/t9C3L8ir.js +1 -0
  289. package/.output/public/_nuxt/wQgAJ5T0.js +1 -0
  290. package/.output/public/_nuxt/z6h75OXJ.js +1 -0
  291. package/.output/server/chunks/_/error-500.mjs.map +1 -1
  292. package/.output/server/chunks/_/nitro.mjs +1164 -563
  293. package/.output/server/chunks/_/nitro.mjs.map +1 -1
  294. package/.output/server/chunks/build/client.precomputed.mjs +1 -1
  295. package/.output/server/chunks/routes/renderer.mjs.map +1 -1
  296. package/.output/server/index.mjs.map +1 -1
  297. package/.output/server/node_modules/.nitro/@vue/compiler-core@3.5.25/dist/compiler-core.cjs.prod.js +6742 -0
  298. package/.output/server/node_modules/.nitro/@vue/compiler-core@3.5.25/package.json +58 -0
  299. package/.output/server/node_modules/.nitro/@vue/compiler-dom@3.5.25/dist/compiler-dom.cjs.prod.js +689 -0
  300. package/.output/server/node_modules/.nitro/@vue/compiler-dom@3.5.25/package.json +57 -0
  301. package/.output/server/node_modules/.nitro/@vue/reactivity@3.5.25/dist/reactivity.cjs.prod.js +1853 -0
  302. package/.output/server/node_modules/.nitro/@vue/reactivity@3.5.25/package.json +55 -0
  303. package/.output/server/node_modules/.nitro/@vue/runtime-core@3.5.25/dist/runtime-core.cjs.prod.js +6750 -0
  304. package/.output/server/node_modules/.nitro/@vue/runtime-core@3.5.25/package.json +52 -0
  305. package/.output/server/node_modules/.nitro/@vue/runtime-dom@3.5.25/dist/runtime-dom.cjs.prod.js +1732 -0
  306. package/.output/server/node_modules/.nitro/@vue/runtime-dom@3.5.25/package.json +60 -0
  307. package/.output/server/node_modules/.nitro/@vue/shared@3.5.25/dist/shared.cjs.prod.js +604 -0
  308. package/.output/server/node_modules/.nitro/@vue/shared@3.5.25/package.json +47 -0
  309. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/convertor/create.js +28 -0
  310. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/data-patch.js +6 -0
  311. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/data.js +95 -0
  312. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/SyntaxError.js +12 -0
  313. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/generate.js +131 -0
  314. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/index.js +4 -0
  315. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/parse.js +584 -0
  316. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/tokenizer.js +52 -0
  317. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/walk.js +52 -0
  318. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/create.js +98 -0
  319. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/sourceMap.js +92 -0
  320. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/token-before.js +182 -0
  321. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/index.js +30 -0
  322. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/Lexer.js +453 -0
  323. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/error.js +123 -0
  324. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-an-plus-b.js +238 -0
  325. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-const.js +8 -0
  326. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-urange.js +151 -0
  327. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic.js +598 -0
  328. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/match-graph.js +456 -0
  329. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/match.js +630 -0
  330. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/prepare-tokens.js +50 -0
  331. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/search.js +61 -0
  332. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/structure.js +164 -0
  333. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/trace.js +66 -0
  334. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/SyntaxError.js +65 -0
  335. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/create.js +346 -0
  336. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/sequence.js +43 -0
  337. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/font-face.js +8 -0
  338. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/import.js +39 -0
  339. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/index.js +13 -0
  340. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/media.js +12 -0
  341. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/page.js +12 -0
  342. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/supports.js +80 -0
  343. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/lexer.js +8 -0
  344. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/mix.js +138 -0
  345. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/parser.js +30 -0
  346. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/walker.js +5 -0
  347. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/create.js +53 -0
  348. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/function/expression.js +7 -0
  349. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/function/var.js +39 -0
  350. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/index.js +10 -0
  351. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AnPlusB.js +292 -0
  352. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Atrule.js +100 -0
  353. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AtrulePrelude.js +47 -0
  354. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AttributeSelector.js +147 -0
  355. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Block.js +89 -0
  356. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Brackets.js +35 -0
  357. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/CDC.js +19 -0
  358. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/CDO.js +19 -0
  359. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/ClassSelector.js +24 -0
  360. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Combinator.js +54 -0
  361. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Comment.js +33 -0
  362. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Declaration.js +165 -0
  363. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/DeclarationList.js +49 -0
  364. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Dimension.js +23 -0
  365. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Function.js +41 -0
  366. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Hash.js +23 -0
  367. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/IdSelector.js +26 -0
  368. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Identifier.js +18 -0
  369. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaFeature.js +77 -0
  370. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaQuery.js +60 -0
  371. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaQueryList.js +34 -0
  372. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Nth.js +47 -0
  373. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Number.js +18 -0
  374. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Operator.js +21 -0
  375. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Parentheses.js +34 -0
  376. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Percentage.js +18 -0
  377. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/PseudoClassSelector.js +63 -0
  378. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/PseudoElementSelector.js +64 -0
  379. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Ratio.js +59 -0
  380. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Raw.js +41 -0
  381. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Rule.js +51 -0
  382. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Selector.js +32 -0
  383. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/SelectorList.js +35 -0
  384. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/String.js +19 -0
  385. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/StyleSheet.js +82 -0
  386. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/TypeSelector.js +52 -0
  387. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/UnicodeRange.js +156 -0
  388. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Url.js +52 -0
  389. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Value.js +19 -0
  390. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/WhiteSpace.js +27 -0
  391. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/index-parse.js +40 -0
  392. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/index.js +40 -0
  393. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/pseudo/index.js +48 -0
  394. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/atrulePrelude.js +5 -0
  395. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/default.js +85 -0
  396. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/index.js +3 -0
  397. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/selector.js +90 -0
  398. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/value.js +25 -0
  399. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/OffsetToLocation.js +87 -0
  400. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/TokenStream.js +272 -0
  401. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/adopt-buffer.js +9 -0
  402. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/char-code-definitions.js +207 -0
  403. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/index.js +513 -0
  404. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/names.js +27 -0
  405. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/types.js +28 -0
  406. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/utils.js +254 -0
  407. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/List.js +469 -0
  408. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/clone.js +21 -0
  409. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/create-custom-error.js +14 -0
  410. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/ident.js +101 -0
  411. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/names.js +106 -0
  412. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/string.js +99 -0
  413. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/url.js +108 -0
  414. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/version.js +5 -0
  415. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/walker/create.js +287 -0
  416. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/convertor/create.js +28 -0
  417. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/data-patch.js +6 -0
  418. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/data.js +118 -0
  419. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/SyntaxError.js +12 -0
  420. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/generate.js +135 -0
  421. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/index.js +4 -0
  422. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/parse.js +552 -0
  423. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/scanner.js +109 -0
  424. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/walk.js +53 -0
  425. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/create.js +97 -0
  426. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/sourceMap.js +92 -0
  427. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/token-before.js +182 -0
  428. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/index.js +30 -0
  429. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/Lexer.js +511 -0
  430. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/error.js +123 -0
  431. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-an-plus-b.js +238 -0
  432. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-const.js +8 -0
  433. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-urange.js +151 -0
  434. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic.js +622 -0
  435. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/match-graph.js +527 -0
  436. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/match.js +630 -0
  437. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/prepare-tokens.js +50 -0
  438. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/search.js +61 -0
  439. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/structure.js +169 -0
  440. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/trace.js +66 -0
  441. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/units.js +27 -0
  442. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/SyntaxError.js +70 -0
  443. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/create.js +350 -0
  444. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/sequence.js +43 -0
  445. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/container.js +28 -0
  446. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/font-face.js +8 -0
  447. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/import.js +104 -0
  448. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/index.js +23 -0
  449. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/layer.js +12 -0
  450. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/media.js +12 -0
  451. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/nest.js +12 -0
  452. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/page.js +12 -0
  453. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/scope.js +12 -0
  454. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/starting-style.js +8 -0
  455. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/supports.js +12 -0
  456. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/lexer.js +10 -0
  457. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/mix.js +123 -0
  458. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/parser.js +45 -0
  459. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/walker.js +5 -0
  460. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/create.js +55 -0
  461. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/function/expression.js +7 -0
  462. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/function/var.js +39 -0
  463. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/index.js +10 -0
  464. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AnPlusB.js +292 -0
  465. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Atrule.js +100 -0
  466. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AtrulePrelude.js +47 -0
  467. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AttributeSelector.js +147 -0
  468. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Block.js +95 -0
  469. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Brackets.js +35 -0
  470. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/CDC.js +19 -0
  471. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/CDO.js +19 -0
  472. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/ClassSelector.js +24 -0
  473. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Combinator.js +54 -0
  474. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Comment.js +33 -0
  475. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Condition.js +123 -0
  476. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Declaration.js +165 -0
  477. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/DeclarationList.js +62 -0
  478. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Dimension.js +23 -0
  479. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Feature.js +103 -0
  480. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/FeatureFunction.js +63 -0
  481. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/FeatureRange.js +133 -0
  482. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Function.js +41 -0
  483. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/GeneralEnclosed.js +66 -0
  484. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Hash.js +23 -0
  485. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/IdSelector.js +26 -0
  486. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Identifier.js +18 -0
  487. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Layer.js +28 -0
  488. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/LayerList.js +36 -0
  489. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/MediaQuery.js +102 -0
  490. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/MediaQueryList.js +34 -0
  491. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/NestingSelector.js +22 -0
  492. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Nth.js +47 -0
  493. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Number.js +18 -0
  494. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Operator.js +21 -0
  495. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Parentheses.js +34 -0
  496. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Percentage.js +18 -0
  497. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/PseudoClassSelector.js +65 -0
  498. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/PseudoElementSelector.js +66 -0
  499. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Ratio.js +68 -0
  500. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Raw.js +41 -0
  501. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Rule.js +51 -0
  502. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Scope.js +66 -0
  503. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Selector.js +31 -0
  504. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/SelectorList.js +35 -0
  505. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/String.js +19 -0
  506. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/StyleSheet.js +82 -0
  507. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/SupportsDeclaration.js +34 -0
  508. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/TypeSelector.js +52 -0
  509. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/UnicodeRange.js +156 -0
  510. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Url.js +52 -0
  511. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Value.js +19 -0
  512. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/WhiteSpace.js +27 -0
  513. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/index-parse.js +49 -0
  514. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/index.js +49 -0
  515. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/pseudo/index.js +56 -0
  516. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/pseudo/lang.js +33 -0
  517. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/atrulePrelude.js +5 -0
  518. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/default.js +85 -0
  519. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/index.js +3 -0
  520. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/selector.js +94 -0
  521. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/value.js +25 -0
  522. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/OffsetToLocation.js +87 -0
  523. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/TokenStream.js +316 -0
  524. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/adopt-buffer.js +9 -0
  525. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/char-code-definitions.js +212 -0
  526. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/index.js +513 -0
  527. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/names.js +28 -0
  528. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/types.js +28 -0
  529. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/utils.js +254 -0
  530. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/List.js +469 -0
  531. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/clone.js +21 -0
  532. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/create-custom-error.js +14 -0
  533. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/ident.js +101 -0
  534. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/names.js +106 -0
  535. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/string.js +99 -0
  536. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/url.js +108 -0
  537. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/version.js +5 -0
  538. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/walker/create.js +287 -0
  539. package/.output/server/node_modules/.nitro/css-tree@3.1.0/package.json +125 -0
  540. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/decode.js +496 -0
  541. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/decode_codepoint.js +71 -0
  542. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/encode.js +69 -0
  543. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/escape.js +116 -0
  544. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/decode-data-html.js +7 -0
  545. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/decode-data-xml.js +7 -0
  546. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/encode-html.js +10 -0
  547. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/index.js +99 -0
  548. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/package.json +1 -0
  549. package/.output/server/node_modules/.nitro/vue@3.5.25/dist/vue.cjs.js +80 -0
  550. package/.output/server/node_modules/.nitro/vue@3.5.25/dist/vue.cjs.prod.js +66 -0
  551. package/.output/server/node_modules/.nitro/vue@3.5.25/index.js +7 -0
  552. package/.output/server/node_modules/.nitro/vue@3.5.25/index.mjs +1 -0
  553. package/.output/server/node_modules/.nitro/vue@3.5.25/package.json +112 -0
  554. package/.output/server/node_modules/@fastify/accept-negotiator/package.json +42 -16
  555. package/.output/server/node_modules/@iconify/utils/lib/colors/index.js +292 -0
  556. package/.output/server/node_modules/@iconify/utils/lib/colors/keywords.js +702 -0
  557. package/.output/server/node_modules/@iconify/utils/lib/css/common.js +76 -0
  558. package/.output/server/node_modules/@iconify/utils/lib/css/format.js +40 -0
  559. package/.output/server/node_modules/@iconify/utils/lib/css/icon.js +52 -0
  560. package/.output/server/node_modules/@iconify/utils/lib/css/icons.js +133 -0
  561. package/.output/server/node_modules/@iconify/utils/lib/customisations/bool.js +20 -0
  562. package/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.js +15 -0
  563. package/.output/server/node_modules/@iconify/utils/lib/customisations/flip.js +18 -0
  564. package/.output/server/node_modules/@iconify/utils/lib/customisations/merge.js +18 -0
  565. package/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.js +31 -0
  566. package/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.js +80 -0
  567. package/.output/server/node_modules/@iconify/utils/lib/emoji/convert.js +102 -0
  568. package/.output/server/node_modules/@iconify/utils/lib/emoji/data.js +29 -0
  569. package/.output/server/node_modules/@iconify/utils/lib/emoji/format.js +60 -0
  570. package/.output/server/node_modules/@iconify/utils/lib/emoji/parse.js +50 -0
  571. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.js +204 -0
  572. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.js +35 -0
  573. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.js +134 -0
  574. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.js +167 -0
  575. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.js +81 -0
  576. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.js +94 -0
  577. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.js +28 -0
  578. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.js +78 -0
  579. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.js +68 -0
  580. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.js +47 -0
  581. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.js +105 -0
  582. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.js +38 -0
  583. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.js +94 -0
  584. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.js +64 -0
  585. package/.output/server/node_modules/@iconify/utils/lib/icon/defaults.js +26 -0
  586. package/.output/server/node_modules/@iconify/utils/lib/icon/merge.js +18 -0
  587. package/.output/server/node_modules/@iconify/utils/lib/icon/name.js +58 -0
  588. package/.output/server/node_modules/@iconify/utils/lib/icon/square.js +34 -0
  589. package/.output/server/node_modules/@iconify/utils/lib/icon/transformations.js +13 -0
  590. package/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.js +126 -0
  591. package/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.js +21 -0
  592. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.js +27 -0
  593. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.js +38 -0
  594. package/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.js +93 -0
  595. package/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.js +48 -0
  596. package/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.js +24 -0
  597. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.js +44 -0
  598. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.js +125 -0
  599. package/.output/server/node_modules/@iconify/utils/lib/index.js +53 -0
  600. package/.output/server/node_modules/@iconify/utils/lib/loader/custom.js +32 -0
  601. package/.output/server/node_modules/@iconify/utils/lib/loader/loader.js +28 -0
  602. package/.output/server/node_modules/@iconify/utils/lib/loader/modern.js +42 -0
  603. package/.output/server/node_modules/@iconify/utils/lib/loader/utils.js +63 -0
  604. package/.output/server/node_modules/@iconify/utils/lib/misc/objects.js +27 -0
  605. package/.output/server/node_modules/@iconify/utils/lib/misc/strings.js +27 -0
  606. package/.output/server/node_modules/@iconify/utils/lib/misc/title.js +10 -0
  607. package/.output/server/node_modules/@iconify/utils/lib/svg/build.js +115 -0
  608. package/.output/server/node_modules/@iconify/utils/lib/svg/defs.js +32 -0
  609. package/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.js +15 -0
  610. package/.output/server/node_modules/@iconify/utils/lib/svg/html.js +10 -0
  611. package/.output/server/node_modules/@iconify/utils/lib/svg/id.js +42 -0
  612. package/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.js +23 -0
  613. package/.output/server/node_modules/@iconify/utils/lib/svg/parse.js +69 -0
  614. package/.output/server/node_modules/@iconify/utils/lib/svg/pretty.js +55 -0
  615. package/.output/server/node_modules/@iconify/utils/lib/svg/size.js +28 -0
  616. package/.output/server/node_modules/@iconify/utils/lib/svg/trim.js +8 -0
  617. package/.output/server/node_modules/@iconify/utils/lib/svg/url.js +23 -0
  618. package/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.js +9 -0
  619. package/.output/server/node_modules/@iconify/utils/package.json +88 -417
  620. package/.output/server/node_modules/@img/colour/color.cjs +1594 -0
  621. package/.output/server/node_modules/@img/colour/index.cjs +1 -0
  622. package/.output/server/node_modules/@img/colour/package.json +45 -0
  623. package/.output/server/node_modules/@img/sharp-win32-x64/LICENSE +191 -0
  624. package/.output/server/node_modules/@img/sharp-win32-x64/lib/libvips-42.dll +0 -0
  625. package/.output/server/node_modules/@img/sharp-win32-x64/lib/libvips-cpp-8.17.3.dll +0 -0
  626. package/.output/server/node_modules/@img/sharp-win32-x64/lib/sharp-win32-x64.node +0 -0
  627. package/.output/server/node_modules/@img/sharp-win32-x64/package.json +39 -0
  628. package/.output/server/node_modules/@img/sharp-win32-x64/versions.json +30 -0
  629. package/.output/server/node_modules/@intlify/core/dist/core.mjs +1 -1
  630. package/.output/server/node_modules/@intlify/core/package.json +3 -3
  631. package/.output/server/node_modules/@intlify/core-base/dist/core-base.mjs +2 -2
  632. package/.output/server/node_modules/@intlify/core-base/package.json +4 -4
  633. package/.output/server/node_modules/@intlify/h3/dist/index.mjs +5 -1
  634. package/.output/server/node_modules/@intlify/h3/package.json +81 -48
  635. package/.output/server/node_modules/@intlify/message-compiler/dist/message-compiler.mjs +1 -1
  636. package/.output/server/node_modules/@intlify/message-compiler/package.json +2 -2
  637. package/.output/server/node_modules/@intlify/shared/dist/shared.mjs +1 -1
  638. package/.output/server/node_modules/@intlify/shared/package.json +1 -1
  639. package/.output/server/node_modules/@shikijs/core/dist/index.mjs +34 -11
  640. package/.output/server/node_modules/@shikijs/core/package.json +2 -2
  641. package/.output/server/node_modules/@shikijs/engine-javascript/package.json +3 -3
  642. package/.output/server/node_modules/@shikijs/engine-oniguruma/dist/index.mjs +3 -3
  643. package/.output/server/node_modules/@shikijs/engine-oniguruma/package.json +2 -2
  644. package/.output/server/node_modules/@shikijs/langs/dist/vue.mjs +1 -1
  645. package/.output/server/node_modules/@shikijs/langs/package.json +6 -3
  646. package/.output/server/node_modules/@shikijs/themes/dist/material-theme-lighter.mjs +2 -0
  647. package/.output/server/node_modules/@shikijs/themes/dist/material-theme-palenight.mjs +2 -0
  648. package/.output/server/node_modules/@shikijs/themes/dist/material-theme.mjs +2 -0
  649. package/.output/server/node_modules/@shikijs/themes/package.json +3 -3
  650. package/.output/server/node_modules/@shikijs/transformers/dist/index.mjs +8 -10
  651. package/.output/server/node_modules/@shikijs/transformers/package.json +3 -3
  652. package/.output/server/node_modules/@shikijs/types/package.json +1 -1
  653. package/.output/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +10 -8
  654. package/.output/server/node_modules/@vue/compiler-ssr/package.json +3 -3
  655. package/.output/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +1 -1
  656. package/.output/server/node_modules/@vue/server-renderer/package.json +4 -4
  657. package/.output/server/node_modules/css-select/lib/esm/attributes.js +222 -0
  658. package/.output/server/node_modules/css-select/lib/esm/compile.js +115 -0
  659. package/.output/server/node_modules/css-select/lib/esm/general.js +144 -0
  660. package/.output/server/node_modules/css-select/lib/esm/index.js +115 -0
  661. package/.output/server/node_modules/css-select/lib/esm/package.json +1 -0
  662. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
  663. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
  664. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
  665. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
  666. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
  667. package/.output/server/node_modules/css-select/lib/esm/sort.js +79 -0
  668. package/.output/server/node_modules/csso/lib/clean/Atrule.js +69 -0
  669. package/.output/server/node_modules/csso/lib/clean/Comment.js +3 -0
  670. package/.output/server/node_modules/csso/lib/clean/Declaration.js +14 -0
  671. package/.output/server/node_modules/csso/lib/clean/Raw.js +9 -0
  672. package/.output/server/node_modules/csso/lib/clean/Rule.js +100 -0
  673. package/.output/server/node_modules/csso/lib/clean/TypeSelector.js +19 -0
  674. package/.output/server/node_modules/csso/lib/clean/WhiteSpace.js +3 -0
  675. package/.output/server/node_modules/csso/lib/clean/index.js +28 -0
  676. package/.output/server/node_modules/csso/lib/clean/utils.js +7 -0
  677. package/.output/server/node_modules/csso/lib/compress.js +196 -0
  678. package/.output/server/node_modules/csso/lib/index.js +131 -0
  679. package/.output/server/node_modules/csso/lib/replace/Atrule.js +9 -0
  680. package/.output/server/node_modules/csso/lib/replace/AttributeSelector.js +28 -0
  681. package/.output/server/node_modules/csso/lib/replace/Dimension.js +63 -0
  682. package/.output/server/node_modules/csso/lib/replace/Number.js +40 -0
  683. package/.output/server/node_modules/csso/lib/replace/Percentage.js +37 -0
  684. package/.output/server/node_modules/csso/lib/replace/Url.js +4 -0
  685. package/.output/server/node_modules/csso/lib/replace/Value.js +26 -0
  686. package/.output/server/node_modules/csso/lib/replace/atrule/keyframes.js +21 -0
  687. package/.output/server/node_modules/csso/lib/replace/color.js +498 -0
  688. package/.output/server/node_modules/csso/lib/replace/index.js +32 -0
  689. package/.output/server/node_modules/csso/lib/replace/property/background.js +50 -0
  690. package/.output/server/node_modules/csso/lib/replace/property/border.js +16 -0
  691. package/.output/server/node_modules/csso/lib/replace/property/font-weight.js +22 -0
  692. package/.output/server/node_modules/csso/lib/replace/property/font.js +30 -0
  693. package/.output/server/node_modules/csso/lib/restructure/1-mergeAtrule.js +106 -0
  694. package/.output/server/node_modules/csso/lib/restructure/2-initialMergeRuleset.js +53 -0
  695. package/.output/server/node_modules/csso/lib/restructure/3-disjoinRuleset.js +42 -0
  696. package/.output/server/node_modules/csso/lib/restructure/4-restructShorthand.js +425 -0
  697. package/.output/server/node_modules/csso/lib/restructure/6-restructBlock.js +308 -0
  698. package/.output/server/node_modules/csso/lib/restructure/7-mergeRuleset.js +86 -0
  699. package/.output/server/node_modules/csso/lib/restructure/8-restructRuleset.js +176 -0
  700. package/.output/server/node_modules/csso/lib/restructure/index.js +35 -0
  701. package/.output/server/node_modules/csso/lib/restructure/prepare/createDeclarationIndexer.js +31 -0
  702. package/.output/server/node_modules/csso/lib/restructure/prepare/index.js +41 -0
  703. package/.output/server/node_modules/csso/lib/restructure/prepare/processSelector.js +97 -0
  704. package/.output/server/node_modules/csso/lib/restructure/prepare/specificity.js +131 -0
  705. package/.output/server/node_modules/csso/lib/restructure/utils.js +142 -0
  706. package/.output/server/node_modules/csso/lib/syntax.js +60 -0
  707. package/.output/server/node_modules/csso/lib/usage.js +71 -0
  708. package/.output/server/node_modules/csso/lib/utils.js +2 -0
  709. package/.output/server/node_modules/csso/lib/version.js +5 -0
  710. package/.output/server/node_modules/devalue/package.json +1 -1
  711. package/.output/server/node_modules/devalue/src/stringify.js +4 -4
  712. package/.output/server/node_modules/devalue/src/uneval.js +4 -4
  713. package/.output/server/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
  714. package/.output/server/node_modules/dom-serializer/lib/esm/index.js +190 -0
  715. package/.output/server/node_modules/dom-serializer/lib/esm/package.json +1 -0
  716. package/.output/server/node_modules/domelementtype/lib/esm/index.js +51 -0
  717. package/.output/server/node_modules/domelementtype/lib/esm/package.json +1 -0
  718. package/.output/server/node_modules/domhandler/lib/esm/index.js +146 -0
  719. package/.output/server/node_modules/domhandler/lib/esm/node.js +338 -0
  720. package/.output/server/node_modules/domhandler/lib/esm/package.json +1 -0
  721. package/.output/server/node_modules/domutils/lib/esm/feeds.js +183 -0
  722. package/.output/server/node_modules/domutils/lib/esm/helpers.js +136 -0
  723. package/.output/server/node_modules/domutils/lib/esm/index.js +10 -0
  724. package/.output/server/node_modules/domutils/lib/esm/legacy.js +152 -0
  725. package/.output/server/node_modules/domutils/lib/esm/manipulation.js +134 -0
  726. package/.output/server/node_modules/domutils/lib/esm/package.json +1 -0
  727. package/.output/server/node_modules/domutils/lib/esm/querying.js +142 -0
  728. package/.output/server/node_modules/domutils/lib/esm/stringify.js +81 -0
  729. package/.output/server/node_modules/domutils/lib/esm/traversal.js +112 -0
  730. package/.output/server/node_modules/fast-xml-parser/package.json +1 -1
  731. package/.output/server/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +21 -10
  732. package/.output/server/node_modules/ipx/dist/index.mjs +1 -1
  733. package/.output/server/node_modules/ipx/dist/shared/ipx.CXJeaylD.mjs +764 -0
  734. package/.output/server/node_modules/ipx/package.json +29 -30
  735. package/.output/server/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +12 -12
  736. package/.output/server/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +17 -13
  737. package/.output/server/node_modules/jose/dist/webapi/jwe/general/decrypt.js +1 -1
  738. package/.output/server/node_modules/jose/dist/webapi/jwe/general/encrypt.js +16 -16
  739. package/.output/server/node_modules/jose/dist/webapi/jwk/embedded.js +1 -1
  740. package/.output/server/node_modules/jose/dist/webapi/jwk/thumbprint.js +5 -5
  741. package/.output/server/node_modules/jose/dist/webapi/jwks/local.js +1 -1
  742. package/.output/server/node_modules/jose/dist/webapi/jwks/remote.js +2 -2
  743. package/.output/server/node_modules/jose/dist/webapi/jws/flattened/sign.js +23 -17
  744. package/.output/server/node_modules/jose/dist/webapi/jws/flattened/verify.js +13 -9
  745. package/.output/server/node_modules/jose/dist/webapi/jws/general/verify.js +1 -1
  746. package/.output/server/node_modules/jose/dist/webapi/key/export.js +1 -1
  747. package/.output/server/node_modules/jose/dist/webapi/key/generate_key_pair.js +3 -3
  748. package/.output/server/node_modules/jose/dist/webapi/key/import.js +5 -5
  749. package/.output/server/node_modules/jose/dist/webapi/lib/aesgcmkw.js +4 -4
  750. package/.output/server/node_modules/jose/dist/webapi/lib/asn1.js +3 -7
  751. package/.output/server/node_modules/jose/dist/webapi/lib/buffer_utils.js +11 -0
  752. package/.output/server/node_modules/jose/dist/webapi/lib/cek.js +2 -2
  753. package/.output/server/node_modules/jose/dist/webapi/lib/check_cek_length.js +2 -2
  754. package/.output/server/node_modules/jose/dist/webapi/lib/check_iv_length.js +2 -2
  755. package/.output/server/node_modules/jose/dist/webapi/lib/check_key_length.js +2 -2
  756. package/.output/server/node_modules/jose/dist/webapi/lib/check_key_type.js +13 -17
  757. package/.output/server/node_modules/jose/dist/webapi/lib/crypto_key.js +2 -6
  758. package/.output/server/node_modules/jose/dist/webapi/lib/decrypt.js +7 -7
  759. package/.output/server/node_modules/jose/dist/webapi/lib/decrypt_key_management.js +4 -4
  760. package/.output/server/node_modules/jose/dist/webapi/lib/digest.js +2 -2
  761. package/.output/server/node_modules/jose/dist/webapi/lib/ecdhes.js +5 -5
  762. package/.output/server/node_modules/jose/dist/webapi/lib/encrypt.js +8 -8
  763. package/.output/server/node_modules/jose/dist/webapi/lib/encrypt_key_management.js +4 -4
  764. package/.output/server/node_modules/jose/dist/webapi/lib/get_sign_verify_key.js +3 -3
  765. package/.output/server/node_modules/jose/dist/webapi/lib/invalid_key_input.js +2 -6
  766. package/.output/server/node_modules/jose/dist/webapi/lib/is_disjoint.js +2 -2
  767. package/.output/server/node_modules/jose/dist/webapi/lib/is_jwk.js +6 -14
  768. package/.output/server/node_modules/jose/dist/webapi/lib/is_key_like.js +11 -8
  769. package/.output/server/node_modules/jose/dist/webapi/lib/is_object.js +3 -5
  770. package/.output/server/node_modules/jose/dist/webapi/lib/iv.js +1 -1
  771. package/.output/server/node_modules/jose/dist/webapi/lib/jwk_to_key.js +2 -2
  772. package/.output/server/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +59 -6
  773. package/.output/server/node_modules/jose/dist/webapi/lib/key_to_jwk.js +2 -2
  774. package/.output/server/node_modules/jose/dist/webapi/lib/normalize_key.js +4 -4
  775. package/.output/server/node_modules/jose/dist/webapi/lib/pbes2kw.js +5 -3
  776. package/.output/server/node_modules/jose/dist/webapi/lib/rsaes.js +1 -1
  777. package/.output/server/node_modules/jose/dist/webapi/lib/sign.js +6 -6
  778. package/.output/server/node_modules/jose/dist/webapi/lib/subtle_dsa.js +2 -2
  779. package/.output/server/node_modules/jose/dist/webapi/lib/validate_algorithms.js +2 -2
  780. package/.output/server/node_modules/jose/dist/webapi/lib/validate_crit.js +2 -2
  781. package/.output/server/node_modules/jose/dist/webapi/lib/verify.js +6 -6
  782. package/.output/server/node_modules/jose/dist/webapi/util/base64url.js +1 -1
  783. package/.output/server/node_modules/jose/dist/webapi/util/decode_jwt.js +1 -1
  784. package/.output/server/node_modules/jose/dist/webapi/util/decode_protected_header.js +1 -1
  785. package/.output/server/node_modules/jose/package.json +1 -1
  786. package/.output/server/node_modules/mdast-util-to-hast/lib/footer.js +2 -4
  787. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +3 -6
  788. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/break.js +3 -7
  789. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/code.js +8 -9
  790. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/delete.js +3 -6
  791. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +3 -6
  792. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +3 -3
  793. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/heading.js +3 -6
  794. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/html.js +4 -7
  795. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +3 -5
  796. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/image.js +3 -4
  797. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/index.js +5 -1
  798. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +3 -7
  799. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +3 -5
  800. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/link.js +3 -4
  801. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +3 -9
  802. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/list.js +3 -7
  803. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +3 -6
  804. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/root.js +3 -7
  805. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/strong.js +3 -6
  806. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +3 -6
  807. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +3 -9
  808. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table.js +3 -3
  809. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/text.js +3 -4
  810. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +3 -6
  811. package/.output/server/node_modules/mdast-util-to-hast/lib/index.js +3 -3
  812. package/.output/server/node_modules/mdast-util-to-hast/lib/revert.js +3 -9
  813. package/.output/server/node_modules/mdast-util-to-hast/lib/state.js +19 -16
  814. package/.output/server/node_modules/mdast-util-to-hast/package.json +2 -1
  815. package/.output/server/node_modules/nth-check/lib/esm/compile.js +113 -0
  816. package/.output/server/node_modules/nth-check/lib/esm/index.js +63 -0
  817. package/.output/server/node_modules/nth-check/lib/esm/package.json +1 -0
  818. package/.output/server/node_modules/nth-check/lib/esm/parse.js +73 -0
  819. package/.output/server/node_modules/oauth4webapi/build/index.js +41 -30
  820. package/.output/server/node_modules/oauth4webapi/package.json +14 -15
  821. package/.output/server/node_modules/ofetch/dist/node.mjs +3 -3
  822. package/.output/server/node_modules/ofetch/dist/shared/ofetch.CWycOUEr.mjs +349 -0
  823. package/.output/server/node_modules/ofetch/package.json +19 -19
  824. package/.output/server/node_modules/oniguruma-to-es/dist/esm/index.js +4 -4
  825. package/.output/server/node_modules/oniguruma-to-es/package.json +4 -4
  826. package/.output/server/node_modules/pathe/dist/index.mjs +19 -1
  827. package/.output/server/node_modules/pathe/dist/shared/pathe.M-eThtNZ.mjs +249 -0
  828. package/.output/server/node_modules/pathe/package.json +33 -20
  829. package/.output/server/node_modules/sax/lib/sax.js +1697 -0
  830. package/.output/server/node_modules/sax/package.json +28 -0
  831. package/.output/server/node_modules/semver/classes/comparator.js +143 -0
  832. package/.output/server/node_modules/semver/classes/range.js +557 -0
  833. package/.output/server/node_modules/semver/functions/cmp.js +54 -0
  834. package/.output/server/node_modules/semver/functions/eq.js +5 -0
  835. package/.output/server/node_modules/semver/functions/gt.js +5 -0
  836. package/.output/server/node_modules/semver/functions/lt.js +5 -0
  837. package/.output/server/node_modules/semver/functions/lte.js +5 -0
  838. package/.output/server/node_modules/semver/functions/neq.js +5 -0
  839. package/.output/server/node_modules/semver/functions/satisfies.js +12 -0
  840. package/.output/server/node_modules/semver/internal/lrucache.js +42 -0
  841. package/.output/server/node_modules/sharp/lib/channel.js +10 -7
  842. package/.output/server/node_modules/sharp/lib/colour.js +42 -31
  843. package/.output/server/node_modules/sharp/lib/composite.js +12 -10
  844. package/.output/server/node_modules/sharp/lib/constructor.js +92 -32
  845. package/.output/server/node_modules/sharp/lib/index.js +4 -4
  846. package/.output/server/node_modules/sharp/lib/input.js +252 -74
  847. package/.output/server/node_modules/sharp/lib/is.js +45 -57
  848. package/.output/server/node_modules/sharp/lib/libvips.js +133 -66
  849. package/.output/server/node_modules/sharp/lib/operation.js +158 -61
  850. package/.output/server/node_modules/sharp/lib/output.js +350 -97
  851. package/.output/server/node_modules/sharp/lib/resize.js +73 -60
  852. package/.output/server/node_modules/sharp/lib/sharp.js +110 -27
  853. package/.output/server/node_modules/sharp/lib/utility.js +47 -43
  854. package/.output/server/node_modules/sharp/package.json +74 -76
  855. package/.output/server/node_modules/shiki/package.json +9 -9
  856. package/.output/server/node_modules/svgo/lib/builtin.js +116 -56
  857. package/.output/server/node_modules/svgo/lib/parser.js +40 -94
  858. package/.output/server/node_modules/svgo/lib/path.js +45 -63
  859. package/.output/server/node_modules/svgo/lib/stringifier.js +116 -113
  860. package/.output/server/node_modules/svgo/lib/style.js +51 -63
  861. package/.output/server/node_modules/svgo/lib/svgo/css-select-adapter.js +82 -59
  862. package/.output/server/node_modules/svgo/lib/svgo/plugins.js +21 -11
  863. package/.output/server/node_modules/svgo/lib/svgo/tools.js +39 -43
  864. package/.output/server/node_modules/svgo/lib/svgo-node.js +44 -31
  865. package/.output/server/node_modules/svgo/lib/svgo.js +55 -14
  866. package/.output/server/node_modules/svgo/lib/types.js +1 -0
  867. package/.output/server/node_modules/svgo/lib/util/map-nodes-to-parents.js +29 -0
  868. package/.output/server/node_modules/svgo/lib/util/visit.js +36 -0
  869. package/.output/server/node_modules/svgo/lib/version.js +7 -0
  870. package/.output/server/node_modules/svgo/lib/xast.js +32 -66
  871. package/.output/server/node_modules/svgo/package.json +68 -35
  872. package/.output/server/node_modules/svgo/plugins/_collections.js +150 -34
  873. package/.output/server/node_modules/svgo/plugins/_path.js +206 -173
  874. package/.output/server/node_modules/svgo/plugins/_transforms.js +470 -125
  875. package/.output/server/node_modules/svgo/plugins/addAttributesToSVGElement.js +13 -9
  876. package/.output/server/node_modules/svgo/plugins/addClassesToSVGElement.js +16 -8
  877. package/.output/server/node_modules/svgo/plugins/applyTransforms.js +26 -38
  878. package/.output/server/node_modules/svgo/plugins/cleanupAttrs.js +11 -7
  879. package/.output/server/node_modules/svgo/plugins/cleanupEnableBackground.js +12 -13
  880. package/.output/server/node_modules/svgo/plugins/cleanupIds.js +25 -24
  881. package/.output/server/node_modules/svgo/plugins/cleanupListOfValues.js +19 -16
  882. package/.output/server/node_modules/svgo/plugins/cleanupNumericValues.js +19 -18
  883. package/.output/server/node_modules/svgo/plugins/collapseGroups.js +30 -31
  884. package/.output/server/node_modules/svgo/plugins/convertColors.js +51 -17
  885. package/.output/server/node_modules/svgo/plugins/convertEllipseToCircle.js +4 -6
  886. package/.output/server/node_modules/svgo/plugins/convertOneStopGradients.js +13 -24
  887. package/.output/server/node_modules/svgo/plugins/convertPathData.js +323 -261
  888. package/.output/server/node_modules/svgo/plugins/convertShapeToPath.js +22 -29
  889. package/.output/server/node_modules/svgo/plugins/convertStyleToAttrs.js +26 -17
  890. package/.output/server/node_modules/svgo/plugins/convertTransform.js +62 -171
  891. package/.output/server/node_modules/svgo/plugins/inlineStyles.js +33 -30
  892. package/.output/server/node_modules/svgo/plugins/mergePaths.js +36 -15
  893. package/.output/server/node_modules/svgo/plugins/mergeStyles.js +9 -26
  894. package/.output/server/node_modules/svgo/plugins/minifyStyles.js +30 -16
  895. package/.output/server/node_modules/svgo/plugins/moveElemsAttrsToGroup.js +13 -12
  896. package/.output/server/node_modules/svgo/plugins/moveGroupAttrsToElems.js +8 -9
  897. package/.output/server/node_modules/svgo/plugins/prefixIds.js +26 -21
  898. package/.output/server/node_modules/svgo/plugins/preset-default.js +37 -42
  899. package/.output/server/node_modules/svgo/plugins/removeAttributesBySelector.js +5 -7
  900. package/.output/server/node_modules/svgo/plugins/removeAttrs.js +13 -11
  901. package/.output/server/node_modules/svgo/plugins/removeComments.js +9 -6
  902. package/.output/server/node_modules/svgo/plugins/removeDeprecatedAttrs.js +120 -0
  903. package/.output/server/node_modules/svgo/plugins/removeDesc.js +13 -10
  904. package/.output/server/node_modules/svgo/plugins/removeDimensions.js +5 -7
  905. package/.output/server/node_modules/svgo/plugins/removeDoctype.js +5 -7
  906. package/.output/server/node_modules/svgo/plugins/removeEditorsNSData.js +12 -10
  907. package/.output/server/node_modules/svgo/plugins/removeElementsByAttr.js +10 -6
  908. package/.output/server/node_modules/svgo/plugins/removeEmptyAttrs.js +5 -7
  909. package/.output/server/node_modules/svgo/plugins/removeEmptyContainers.js +21 -13
  910. package/.output/server/node_modules/svgo/plugins/removeEmptyText.js +11 -6
  911. package/.output/server/node_modules/svgo/plugins/removeHiddenElems.js +56 -37
  912. package/.output/server/node_modules/svgo/plugins/removeMetadata.js +5 -7
  913. package/.output/server/node_modules/svgo/plugins/removeNonInheritableGroupAttrs.js +8 -10
  914. package/.output/server/node_modules/svgo/plugins/removeOffCanvasPaths.js +14 -21
  915. package/.output/server/node_modules/svgo/plugins/removeRasterImages.js +5 -7
  916. package/.output/server/node_modules/svgo/plugins/removeScripts.js +63 -0
  917. package/.output/server/node_modules/svgo/plugins/removeStyleElement.js +5 -7
  918. package/.output/server/node_modules/svgo/plugins/removeTitle.js +5 -7
  919. package/.output/server/node_modules/svgo/plugins/removeUnknownsAndDefaults.js +32 -30
  920. package/.output/server/node_modules/svgo/plugins/removeUnusedNS.js +5 -9
  921. package/.output/server/node_modules/svgo/plugins/removeUselessDefs.js +14 -29
  922. package/.output/server/node_modules/svgo/plugins/removeUselessStrokeAndFill.js +17 -11
  923. package/.output/server/node_modules/svgo/plugins/removeViewBox.js +5 -7
  924. package/.output/server/node_modules/svgo/plugins/removeXMLNS.js +4 -6
  925. package/.output/server/node_modules/svgo/plugins/removeXMLProcInst.js +5 -7
  926. package/.output/server/node_modules/svgo/plugins/removeXlink.js +15 -14
  927. package/.output/server/node_modules/svgo/plugins/reusePaths.js +9 -29
  928. package/.output/server/node_modules/svgo/plugins/sortAttrs.js +15 -10
  929. package/.output/server/node_modules/svgo/plugins/sortDefsChildren.js +8 -11
  930. package/.output/server/package.json +39 -48
  931. package/app/components/ignis/IgnisContentFeatures.vue +1 -0
  932. package/bin/set-app-vue.js +1 -1
  933. package/bin/set-css.js +1 -1
  934. package/bin/set-eslint.js +1 -1
  935. package/bin/setup.js +7 -7
  936. package/features.ts +13 -0
  937. package/i18n/locales/en.json +1 -0
  938. package/nuxt.config.ts +5 -1
  939. package/package.json +15 -10
  940. package/public/_ignis-config.json +1 -1
  941. package/test/config/social.txt +37 -0
  942. package/test/config.test.ts +9 -0
  943. package/test/features/enable-all.txt +1 -1
  944. package/test/features/social.txt +4 -0
  945. package/test/features.test.ts +10 -0
  946. package/test/versions.test.ts +65 -0
  947. package/vitest.config.ts +5 -5
  948. package/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
  949. package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
  950. package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
  951. package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
  952. package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
  953. package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
  954. package/.output/public/_fonts/Jtqhy44WKYEjGWTSusP5YJfJv7Wf74QqgkBOI9u_77s-Rl_Bht5SvmaotE20bkavBEAJEEGEa0hcz3d_8yOeXmw.woff +0 -0
  955. package/.output/public/_fonts/ZHaz3DhCHNWhsElqYfuM71rfBBDgjuU2sd34vaYJwQg-71NZaZSGjxzAGjCMnCc2zS5rS_EGA0xHKPGCggWuXik.woff +0 -0
  956. package/.output/public/_fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-BgCmQXkW3N6talUbQSKexB2sHUT0qGEzmM4uMcnDAbI.woff +0 -0
  957. package/.output/public/_nuxt/0gZNo08M.js +0 -1
  958. package/.output/public/_nuxt/4etphg87.js +0 -1
  959. package/.output/public/_nuxt/7oEH3i-J.js +0 -1
  960. package/.output/public/_nuxt/B0GskE-x.js +0 -1
  961. package/.output/public/_nuxt/B2rRIZLd.js +0 -1
  962. package/.output/public/_nuxt/B3Twp4np.js +0 -1
  963. package/.output/public/_nuxt/B4dafB1u.js +0 -1
  964. package/.output/public/_nuxt/B5v-AhRa.js +0 -1
  965. package/.output/public/_nuxt/BGIWR6zS.js +0 -1
  966. package/.output/public/_nuxt/BPF61Z69.js +0 -1
  967. package/.output/public/_nuxt/BX7sSsxl.js +0 -1
  968. package/.output/public/_nuxt/BcGXkrpD.js +0 -1
  969. package/.output/public/_nuxt/Bdmjn2k2.js +0 -1
  970. package/.output/public/_nuxt/BkwIJBVH.js +0 -1
  971. package/.output/public/_nuxt/Bs7HqoDE.js +0 -6764
  972. package/.output/public/_nuxt/BxBcowlq.js +0 -1
  973. package/.output/public/_nuxt/BxjWLNqQ.js +0 -1
  974. package/.output/public/_nuxt/CJT046op.js +0 -1
  975. package/.output/public/_nuxt/CNoaFijS.js +0 -1
  976. package/.output/public/_nuxt/COOHDsMA.js +0 -1
  977. package/.output/public/_nuxt/CT_jQ1c7.js +0 -1
  978. package/.output/public/_nuxt/CzjEkwvT.js +0 -1
  979. package/.output/public/_nuxt/D0gc1iwv.js +0 -35
  980. package/.output/public/_nuxt/DHbdVh9f.js +0 -94
  981. package/.output/public/_nuxt/DPk_8xPF.js +0 -1
  982. package/.output/public/_nuxt/DS02jnv_.js +0 -1
  983. package/.output/public/_nuxt/DcZxay5W.js +0 -1
  984. package/.output/public/_nuxt/Dj4M1E-R.js +0 -1
  985. package/.output/public/_nuxt/DrlW3O6H.js +0 -1
  986. package/.output/public/_nuxt/DzHDVFEa.js +0 -1
  987. package/.output/public/_nuxt/Kgt6q5rz.js +0 -1
  988. package/.output/public/_nuxt/ProsePre.D5orA6B_.css +0 -1
  989. package/.output/public/_nuxt/_RaG-8ca.js +0 -1
  990. package/.output/public/_nuxt/builds/meta/458d3dfb-5eef-4d52-b92b-109ceaa7a1ab.json +0 -1
  991. package/.output/public/_nuxt/entry.CtpkPzPO.css +0 -1
  992. package/.output/public/_nuxt/error-404.DzDu4Ean.css +0 -1
  993. package/.output/public/_nuxt/error-500.BdNqqJx7.css +0 -1
  994. package/.output/public/_nuxt/nE6m0q_v.js +0 -1
  995. package/.output/public/_nuxt/vueform.CkWb7x1C.css +0 -1
  996. package/.output/public/_nuxt/wTHp3vgs.js +0 -1
  997. package/.output/public/_nuxt/zBYuFSAQ.js +0 -1
  998. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/convertor/create.cjs +0 -32
  999. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data-patch.cjs +0 -7
  1000. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data.cjs +0 -97
  1001. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
  1002. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/generate.cjs +0 -135
  1003. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/index.cjs +0 -13
  1004. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/parse.cjs +0 -588
  1005. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/tokenizer.cjs +0 -56
  1006. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/walk.cjs +0 -56
  1007. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/create.cjs +0 -103
  1008. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/sourceMap.cjs +0 -96
  1009. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/token-before.cjs +0 -170
  1010. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/index.cjs +0 -63
  1011. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/Lexer.cjs +0 -459
  1012. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/error.cjs +0 -128
  1013. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
  1014. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-const.cjs +0 -12
  1015. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-urange.cjs +0 -149
  1016. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic.cjs +0 -573
  1017. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match-graph.cjs +0 -459
  1018. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match.cjs +0 -632
  1019. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/prepare-tokens.cjs +0 -54
  1020. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/search.cjs +0 -65
  1021. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/structure.cjs +0 -168
  1022. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/trace.cjs +0 -73
  1023. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/SyntaxError.cjs +0 -69
  1024. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/create.cjs +0 -336
  1025. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/sequence.cjs +0 -47
  1026. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/font-face.cjs +0 -12
  1027. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/import.cjs +0 -37
  1028. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/index.cjs +0 -17
  1029. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/media.cjs +0 -16
  1030. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/page.cjs +0 -16
  1031. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/supports.cjs +0 -77
  1032. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/lexer.cjs +0 -12
  1033. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/mix.cjs +0 -142
  1034. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/parser.cjs +0 -34
  1035. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/walker.cjs +0 -9
  1036. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/create.cjs +0 -56
  1037. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/expression.cjs +0 -11
  1038. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/var.cjs +0 -43
  1039. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/index.cjs +0 -14
  1040. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AnPlusB.cjs +0 -293
  1041. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Atrule.cjs +0 -103
  1042. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
  1043. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
  1044. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Block.cjs +0 -90
  1045. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Brackets.cjs +0 -38
  1046. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDC.cjs +0 -26
  1047. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDO.cjs +0 -26
  1048. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/ClassSelector.cjs +0 -31
  1049. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Combinator.cjs +0 -61
  1050. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Comment.cjs +0 -40
  1051. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Declaration.cjs +0 -166
  1052. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/DeclarationList.cjs +0 -50
  1053. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Dimension.cjs +0 -30
  1054. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Function.cjs +0 -45
  1055. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Hash.cjs +0 -30
  1056. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/IdSelector.cjs +0 -33
  1057. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Identifier.cjs +0 -25
  1058. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaFeature.cjs +0 -76
  1059. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQuery.cjs +0 -61
  1060. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
  1061. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Nth.cjs +0 -54
  1062. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Number.cjs +0 -25
  1063. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Operator.cjs +0 -28
  1064. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Parentheses.cjs +0 -38
  1065. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Percentage.cjs +0 -25
  1066. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
  1067. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
  1068. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Ratio.cjs +0 -67
  1069. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Raw.cjs +0 -48
  1070. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Rule.cjs +0 -58
  1071. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Selector.cjs +0 -39
  1072. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/SelectorList.cjs +0 -43
  1073. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/String.cjs +0 -26
  1074. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/StyleSheet.cjs +0 -83
  1075. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/TypeSelector.cjs +0 -59
  1076. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
  1077. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Url.cjs +0 -54
  1078. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Value.cjs +0 -26
  1079. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
  1080. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index-parse.cjs +0 -85
  1081. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index.cjs +0 -85
  1082. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/pseudo/index.cjs +0 -52
  1083. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
  1084. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/default.cjs +0 -76
  1085. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/index.cjs +0 -11
  1086. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/selector.cjs +0 -84
  1087. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/value.cjs +0 -29
  1088. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
  1089. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/TokenStream.cjs +0 -264
  1090. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
  1091. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
  1092. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/index.cjs +0 -554
  1093. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/names.cjs +0 -31
  1094. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/types.cjs +0 -57
  1095. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/utils.cjs +0 -261
  1096. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/List.cjs +0 -473
  1097. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/clone.cjs +0 -25
  1098. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/create-custom-error.cjs +0 -18
  1099. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/ident.cjs +0 -102
  1100. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/names.cjs +0 -113
  1101. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/string.cjs +0 -99
  1102. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/url.cjs +0 -108
  1103. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/version.cjs +0 -5
  1104. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/walker/create.cjs +0 -291
  1105. package/.output/server/node_modules/.nitro/css-tree@2.2.1/data/patch.json +0 -739
  1106. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/convertor/create.cjs +0 -32
  1107. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data-patch.cjs +0 -7
  1108. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data.cjs +0 -99
  1109. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
  1110. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/generate.cjs +0 -135
  1111. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/index.cjs +0 -13
  1112. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/parse.cjs +0 -588
  1113. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/tokenizer.cjs +0 -56
  1114. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/walk.cjs +0 -56
  1115. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/create.cjs +0 -103
  1116. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/sourceMap.cjs +0 -96
  1117. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/token-before.cjs +0 -170
  1118. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/index.cjs +0 -63
  1119. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/Lexer.cjs +0 -470
  1120. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/error.cjs +0 -128
  1121. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
  1122. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-const.cjs +0 -12
  1123. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-urange.cjs +0 -149
  1124. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic.cjs +0 -573
  1125. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match-graph.cjs +0 -459
  1126. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match.cjs +0 -632
  1127. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/prepare-tokens.cjs +0 -54
  1128. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/search.cjs +0 -65
  1129. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/structure.cjs +0 -168
  1130. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/trace.cjs +0 -73
  1131. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/units.cjs +0 -38
  1132. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/SyntaxError.cjs +0 -69
  1133. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/create.cjs +0 -336
  1134. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/sequence.cjs +0 -47
  1135. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/font-face.cjs +0 -12
  1136. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/import.cjs +0 -37
  1137. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/index.cjs +0 -19
  1138. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/media.cjs +0 -16
  1139. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/nest.cjs +0 -16
  1140. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/page.cjs +0 -16
  1141. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/supports.cjs +0 -77
  1142. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/lexer.cjs +0 -12
  1143. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/mix.cjs +0 -119
  1144. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/parser.cjs +0 -34
  1145. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/walker.cjs +0 -9
  1146. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/create.cjs +0 -57
  1147. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/expression.cjs +0 -11
  1148. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/var.cjs +0 -43
  1149. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/index.cjs +0 -14
  1150. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AnPlusB.cjs +0 -293
  1151. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Atrule.cjs +0 -103
  1152. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
  1153. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
  1154. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Block.cjs +0 -96
  1155. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Brackets.cjs +0 -38
  1156. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDC.cjs +0 -26
  1157. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDO.cjs +0 -26
  1158. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/ClassSelector.cjs +0 -31
  1159. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Combinator.cjs +0 -61
  1160. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Comment.cjs +0 -40
  1161. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Declaration.cjs +0 -166
  1162. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/DeclarationList.cjs +0 -62
  1163. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Dimension.cjs +0 -30
  1164. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Function.cjs +0 -45
  1165. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Hash.cjs +0 -30
  1166. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/IdSelector.cjs +0 -33
  1167. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Identifier.cjs +0 -25
  1168. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaFeature.cjs +0 -76
  1169. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQuery.cjs +0 -61
  1170. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
  1171. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/NestingSelector.cjs +0 -29
  1172. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Nth.cjs +0 -54
  1173. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Number.cjs +0 -25
  1174. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Operator.cjs +0 -28
  1175. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Parentheses.cjs +0 -38
  1176. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Percentage.cjs +0 -25
  1177. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
  1178. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
  1179. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Ratio.cjs +0 -67
  1180. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Raw.cjs +0 -48
  1181. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Rule.cjs +0 -58
  1182. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Selector.cjs +0 -39
  1183. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/SelectorList.cjs +0 -43
  1184. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/String.cjs +0 -26
  1185. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/StyleSheet.cjs +0 -83
  1186. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/TypeSelector.cjs +0 -59
  1187. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
  1188. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Url.cjs +0 -54
  1189. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Value.cjs +0 -26
  1190. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
  1191. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index-parse.cjs +0 -87
  1192. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index.cjs +0 -87
  1193. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/pseudo/index.cjs +0 -54
  1194. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
  1195. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/default.cjs +0 -76
  1196. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/index.cjs +0 -11
  1197. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/selector.cjs +0 -88
  1198. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/value.cjs +0 -29
  1199. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
  1200. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/TokenStream.cjs +0 -264
  1201. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
  1202. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
  1203. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/index.cjs +0 -554
  1204. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/names.cjs +0 -31
  1205. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/types.cjs +0 -57
  1206. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/utils.cjs +0 -261
  1207. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/List.cjs +0 -473
  1208. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/clone.cjs +0 -25
  1209. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/create-custom-error.cjs +0 -18
  1210. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/ident.cjs +0 -102
  1211. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/names.cjs +0 -113
  1212. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/string.cjs +0 -99
  1213. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/url.cjs +0 -108
  1214. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/version.cjs +0 -5
  1215. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/walker/create.cjs +0 -291
  1216. package/.output/server/node_modules/.nitro/css-tree@2.3.1/data/patch.json +0 -725
  1217. package/.output/server/node_modules/.nitro/css-tree@2.3.1/package.json +0 -126
  1218. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/encode.js +0 -77
  1219. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/escape.js +0 -122
  1220. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/encode-html.js +0 -12
  1221. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/index.js +0 -126
  1222. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/at-rules.json +0 -620
  1223. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/properties.json +0 -9297
  1224. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/syntaxes.json +0 -794
  1225. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/package.json +0 -38
  1226. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/at-rules.json +0 -620
  1227. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/properties.json +0 -9626
  1228. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/syntaxes.json +0 -866
  1229. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/package.json +0 -38
  1230. package/.output/server/node_modules/@iconify/utils/lib/colors/index.mjs +0 -350
  1231. package/.output/server/node_modules/@iconify/utils/lib/colors/keywords.mjs +0 -188
  1232. package/.output/server/node_modules/@iconify/utils/lib/css/common.mjs +0 -90
  1233. package/.output/server/node_modules/@iconify/utils/lib/css/format.mjs +0 -38
  1234. package/.output/server/node_modules/@iconify/utils/lib/css/icon.mjs +0 -76
  1235. package/.output/server/node_modules/@iconify/utils/lib/css/icons.mjs +0 -168
  1236. package/.output/server/node_modules/@iconify/utils/lib/customisations/bool.mjs +0 -22
  1237. package/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.mjs +0 -14
  1238. package/.output/server/node_modules/@iconify/utils/lib/customisations/flip.mjs +0 -16
  1239. package/.output/server/node_modules/@iconify/utils/lib/customisations/merge.mjs +0 -22
  1240. package/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.mjs +0 -33
  1241. package/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.mjs +0 -51
  1242. package/.output/server/node_modules/@iconify/utils/lib/emoji/convert.mjs +0 -84
  1243. package/.output/server/node_modules/@iconify/utils/lib/emoji/data.mjs +0 -16
  1244. package/.output/server/node_modules/@iconify/utils/lib/emoji/format.mjs +0 -44
  1245. package/.output/server/node_modules/@iconify/utils/lib/emoji/parse.mjs +0 -58
  1246. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.mjs +0 -231
  1247. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.mjs +0 -31
  1248. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.mjs +0 -164
  1249. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.mjs +0 -216
  1250. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.mjs +0 -113
  1251. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.mjs +0 -104
  1252. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.mjs +0 -34
  1253. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.mjs +0 -75
  1254. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.mjs +0 -97
  1255. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.mjs +0 -54
  1256. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.mjs +0 -97
  1257. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.mjs +0 -45
  1258. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.mjs +0 -105
  1259. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.mjs +0 -54
  1260. package/.output/server/node_modules/@iconify/utils/lib/icon/defaults.mjs +0 -24
  1261. package/.output/server/node_modules/@iconify/utils/lib/icon/merge.mjs +0 -20
  1262. package/.output/server/node_modules/@iconify/utils/lib/icon/name.mjs +0 -53
  1263. package/.output/server/node_modules/@iconify/utils/lib/icon/square.mjs +0 -23
  1264. package/.output/server/node_modules/@iconify/utils/lib/icon/transformations.mjs +0 -16
  1265. package/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.mjs +0 -182
  1266. package/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.mjs +0 -22
  1267. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.mjs +0 -28
  1268. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.mjs +0 -46
  1269. package/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.mjs +0 -66
  1270. package/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.mjs +0 -51
  1271. package/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.mjs +0 -23
  1272. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.mjs +0 -62
  1273. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.mjs +0 -161
  1274. package/.output/server/node_modules/@iconify/utils/lib/index.mjs +0 -64
  1275. package/.output/server/node_modules/@iconify/utils/lib/loader/custom.mjs +0 -50
  1276. package/.output/server/node_modules/@iconify/utils/lib/loader/loader.mjs +0 -59
  1277. package/.output/server/node_modules/@iconify/utils/lib/loader/modern.mjs +0 -80
  1278. package/.output/server/node_modules/@iconify/utils/lib/loader/utils.mjs +0 -92
  1279. package/.output/server/node_modules/@iconify/utils/lib/misc/objects.mjs +0 -30
  1280. package/.output/server/node_modules/@iconify/utils/lib/misc/strings.mjs +0 -17
  1281. package/.output/server/node_modules/@iconify/utils/lib/misc/title.mjs +0 -5
  1282. package/.output/server/node_modules/@iconify/utils/lib/svg/build.mjs +0 -119
  1283. package/.output/server/node_modules/@iconify/utils/lib/svg/defs.mjs +0 -30
  1284. package/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.mjs +0 -20
  1285. package/.output/server/node_modules/@iconify/utils/lib/svg/html.mjs +0 -9
  1286. package/.output/server/node_modules/@iconify/utils/lib/svg/id.mjs +0 -28
  1287. package/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.mjs +0 -19
  1288. package/.output/server/node_modules/@iconify/utils/lib/svg/parse.mjs +0 -83
  1289. package/.output/server/node_modules/@iconify/utils/lib/svg/pretty.mjs +0 -70
  1290. package/.output/server/node_modules/@iconify/utils/lib/svg/size.mjs +0 -40
  1291. package/.output/server/node_modules/@iconify/utils/lib/svg/trim.mjs +0 -5
  1292. package/.output/server/node_modules/@iconify/utils/lib/svg/url.mjs +0 -11
  1293. package/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.mjs +0 -8
  1294. package/.output/server/node_modules/@shikijs/themes/dist/github-dark.mjs +0 -2
  1295. package/.output/server/node_modules/@shikijs/themes/dist/github-light.mjs +0 -2
  1296. package/.output/server/node_modules/@trysound/sax/lib/sax.js +0 -1413
  1297. package/.output/server/node_modules/@trysound/sax/package.json +0 -30
  1298. package/.output/server/node_modules/color/index.js +0 -496
  1299. package/.output/server/node_modules/color/package.json +0 -47
  1300. package/.output/server/node_modules/color-convert/conversions.js +0 -839
  1301. package/.output/server/node_modules/color-convert/index.js +0 -81
  1302. package/.output/server/node_modules/color-convert/package.json +0 -48
  1303. package/.output/server/node_modules/color-convert/route.js +0 -97
  1304. package/.output/server/node_modules/color-name/index.js +0 -152
  1305. package/.output/server/node_modules/color-name/package.json +0 -28
  1306. package/.output/server/node_modules/color-string/index.js +0 -242
  1307. package/.output/server/node_modules/color-string/package.json +0 -39
  1308. package/.output/server/node_modules/css-select/lib/attributes.js +0 -236
  1309. package/.output/server/node_modules/css-select/lib/compile.js +0 -151
  1310. package/.output/server/node_modules/css-select/lib/general.js +0 -148
  1311. package/.output/server/node_modules/css-select/lib/index.js +0 -154
  1312. package/.output/server/node_modules/css-select/lib/pseudo-selectors/aliases.js +0 -34
  1313. package/.output/server/node_modules/css-select/lib/pseudo-selectors/filters.js +0 -157
  1314. package/.output/server/node_modules/css-select/lib/pseudo-selectors/index.js +0 -46
  1315. package/.output/server/node_modules/css-select/lib/pseudo-selectors/pseudos.js +0 -93
  1316. package/.output/server/node_modules/css-select/lib/pseudo-selectors/subselects.js +0 -112
  1317. package/.output/server/node_modules/css-select/lib/sort.js +0 -84
  1318. package/.output/server/node_modules/csso/cjs/clean/Atrule.cjs +0 -73
  1319. package/.output/server/node_modules/csso/cjs/clean/Comment.cjs +0 -7
  1320. package/.output/server/node_modules/csso/cjs/clean/Declaration.cjs +0 -18
  1321. package/.output/server/node_modules/csso/cjs/clean/Raw.cjs +0 -13
  1322. package/.output/server/node_modules/csso/cjs/clean/Rule.cjs +0 -104
  1323. package/.output/server/node_modules/csso/cjs/clean/TypeSelector.cjs +0 -23
  1324. package/.output/server/node_modules/csso/cjs/clean/WhiteSpace.cjs +0 -7
  1325. package/.output/server/node_modules/csso/cjs/clean/index.cjs +0 -32
  1326. package/.output/server/node_modules/csso/cjs/clean/utils.cjs +0 -12
  1327. package/.output/server/node_modules/csso/cjs/compress.cjs +0 -200
  1328. package/.output/server/node_modules/csso/cjs/index.cjs +0 -127
  1329. package/.output/server/node_modules/csso/cjs/replace/Atrule.cjs +0 -13
  1330. package/.output/server/node_modules/csso/cjs/replace/AttributeSelector.cjs +0 -32
  1331. package/.output/server/node_modules/csso/cjs/replace/Dimension.cjs +0 -67
  1332. package/.output/server/node_modules/csso/cjs/replace/Number.cjs +0 -45
  1333. package/.output/server/node_modules/csso/cjs/replace/Percentage.cjs +0 -41
  1334. package/.output/server/node_modules/csso/cjs/replace/Url.cjs +0 -8
  1335. package/.output/server/node_modules/csso/cjs/replace/Value.cjs +0 -29
  1336. package/.output/server/node_modules/csso/cjs/replace/atrule/keyframes.cjs +0 -25
  1337. package/.output/server/node_modules/csso/cjs/replace/color.cjs +0 -504
  1338. package/.output/server/node_modules/csso/cjs/replace/index.cjs +0 -36
  1339. package/.output/server/node_modules/csso/cjs/replace/property/background.cjs +0 -54
  1340. package/.output/server/node_modules/csso/cjs/replace/property/border.cjs +0 -20
  1341. package/.output/server/node_modules/csso/cjs/replace/property/font-weight.cjs +0 -26
  1342. package/.output/server/node_modules/csso/cjs/replace/property/font.cjs +0 -34
  1343. package/.output/server/node_modules/csso/cjs/restructure/1-mergeAtrule.cjs +0 -109
  1344. package/.output/server/node_modules/csso/cjs/restructure/2-initialMergeRuleset.cjs +0 -51
  1345. package/.output/server/node_modules/csso/cjs/restructure/3-disjoinRuleset.cjs +0 -46
  1346. package/.output/server/node_modules/csso/cjs/restructure/4-restructShorthand.cjs +0 -429
  1347. package/.output/server/node_modules/csso/cjs/restructure/6-restructBlock.cjs +0 -307
  1348. package/.output/server/node_modules/csso/cjs/restructure/7-mergeRuleset.cjs +0 -90
  1349. package/.output/server/node_modules/csso/cjs/restructure/8-restructRuleset.cjs +0 -175
  1350. package/.output/server/node_modules/csso/cjs/restructure/index.cjs +0 -39
  1351. package/.output/server/node_modules/csso/cjs/restructure/prepare/createDeclarationIndexer.cjs +0 -34
  1352. package/.output/server/node_modules/csso/cjs/restructure/prepare/index.cjs +0 -45
  1353. package/.output/server/node_modules/csso/cjs/restructure/prepare/processSelector.cjs +0 -101
  1354. package/.output/server/node_modules/csso/cjs/restructure/prepare/specificity.cjs +0 -133
  1355. package/.output/server/node_modules/csso/cjs/restructure/utils.cjs +0 -151
  1356. package/.output/server/node_modules/csso/cjs/syntax.cjs +0 -60
  1357. package/.output/server/node_modules/csso/cjs/usage.cjs +0 -75
  1358. package/.output/server/node_modules/csso/cjs/utils.cjs +0 -14
  1359. package/.output/server/node_modules/csso/cjs/version.cjs +0 -5
  1360. package/.output/server/node_modules/debug/package.json +0 -64
  1361. package/.output/server/node_modules/debug/src/browser.js +0 -272
  1362. package/.output/server/node_modules/debug/src/common.js +0 -292
  1363. package/.output/server/node_modules/debug/src/index.js +0 -10
  1364. package/.output/server/node_modules/debug/src/node.js +0 -263
  1365. package/.output/server/node_modules/dom-serializer/lib/foreignNames.js +0 -103
  1366. package/.output/server/node_modules/dom-serializer/lib/index.js +0 -229
  1367. package/.output/server/node_modules/domelementtype/lib/index.js +0 -55
  1368. package/.output/server/node_modules/domhandler/lib/index.js +0 -165
  1369. package/.output/server/node_modules/domhandler/lib/node.js +0 -474
  1370. package/.output/server/node_modules/domutils/lib/feeds.js +0 -190
  1371. package/.output/server/node_modules/domutils/lib/helpers.js +0 -142
  1372. package/.output/server/node_modules/domutils/lib/index.js +0 -33
  1373. package/.output/server/node_modules/domutils/lib/legacy.js +0 -168
  1374. package/.output/server/node_modules/domutils/lib/manipulation.js +0 -142
  1375. package/.output/server/node_modules/domutils/lib/querying.js +0 -155
  1376. package/.output/server/node_modules/domutils/lib/stringify.js +0 -91
  1377. package/.output/server/node_modules/domutils/lib/traversal.js +0 -125
  1378. package/.output/server/node_modules/has-flag/index.js +0 -8
  1379. package/.output/server/node_modules/has-flag/package.json +0 -46
  1380. package/.output/server/node_modules/ipx/dist/shared/ipx.e4d5b25d.mjs +0 -761
  1381. package/.output/server/node_modules/is-arrayish/index.js +0 -9
  1382. package/.output/server/node_modules/is-arrayish/package.json +0 -45
  1383. package/.output/server/node_modules/jose/dist/webapi/lib/epoch.js +0 -1
  1384. package/.output/server/node_modules/jose/dist/webapi/lib/secs.js +0 -55
  1385. package/.output/server/node_modules/ms/index.js +0 -162
  1386. package/.output/server/node_modules/ms/package.json +0 -38
  1387. package/.output/server/node_modules/nth-check/lib/compile.js +0 -121
  1388. package/.output/server/node_modules/nth-check/lib/index.js +0 -70
  1389. package/.output/server/node_modules/nth-check/lib/parse.js +0 -77
  1390. package/.output/server/node_modules/ofetch/dist/shared/ofetch.03887fc3.mjs +0 -333
  1391. package/.output/server/node_modules/pathe/dist/shared/pathe.ff20891b.mjs +0 -221
  1392. package/.output/server/node_modules/sharp/build/Release/libglib-2.0-0.dll +0 -0
  1393. package/.output/server/node_modules/sharp/build/Release/libgobject-2.0-0.dll +0 -0
  1394. package/.output/server/node_modules/sharp/build/Release/libvips-42.dll +0 -0
  1395. package/.output/server/node_modules/sharp/build/Release/libvips-cpp.dll +0 -0
  1396. package/.output/server/node_modules/sharp/build/Release/sharp-win32-x64.node +0 -0
  1397. package/.output/server/node_modules/sharp/lib/platform.js +0 -30
  1398. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/THIRD-PARTY-NOTICES.md +0 -43
  1399. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/include/harfbuzz/hb-cplusplus.hh +0 -223
  1400. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/include/vips/vips8 +0 -60
  1401. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libglib-2.0-0.dll +0 -0
  1402. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libglib-2.0.lib +0 -0
  1403. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libgobject-2.0-0.dll +0 -0
  1404. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libgobject-2.0.lib +0 -0
  1405. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libvips-42.dll +0 -0
  1406. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libvips.lib +0 -0
  1407. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/platform.json +0 -1
  1408. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/versions.json +0 -31
  1409. package/.output/server/node_modules/simple-swizzle/index.js +0 -29
  1410. package/.output/server/node_modules/simple-swizzle/package.json +0 -36
  1411. package/.output/server/node_modules/supports-color/index.js +0 -135
  1412. package/.output/server/node_modules/supports-color/package.json +0 -53
  1413. package/.output/server/node_modules/svgo/plugins/removeScriptElement.js +0 -70
  1414. /package/.nuxt/ui/{button-group.ts → field-group.ts} +0 -0
  1415. /package/.output/server/node_modules/{@vue/compiler-core → .nitro/@vue/compiler-core@3.5.22}/dist/compiler-core.cjs.prod.js +0 -0
  1416. /package/.output/server/node_modules/{@vue/compiler-core → .nitro/@vue/compiler-core@3.5.22}/package.json +0 -0
  1417. /package/.output/server/node_modules/{@vue/compiler-dom → .nitro/@vue/compiler-dom@3.5.22}/dist/compiler-dom.cjs.prod.js +0 -0
  1418. /package/.output/server/node_modules/{@vue/compiler-dom → .nitro/@vue/compiler-dom@3.5.22}/package.json +0 -0
  1419. /package/.output/server/node_modules/{@vue/reactivity → .nitro/@vue/reactivity@3.5.22}/dist/reactivity.cjs.prod.js +0 -0
  1420. /package/.output/server/node_modules/{@vue/reactivity → .nitro/@vue/reactivity@3.5.22}/package.json +0 -0
  1421. /package/.output/server/node_modules/{@vue/runtime-core → .nitro/@vue/runtime-core@3.5.22}/dist/runtime-core.cjs.prod.js +0 -0
  1422. /package/.output/server/node_modules/{@vue/runtime-core → .nitro/@vue/runtime-core@3.5.22}/package.json +0 -0
  1423. /package/.output/server/node_modules/{@vue/runtime-dom → .nitro/@vue/runtime-dom@3.5.22}/dist/runtime-dom.cjs.prod.js +0 -0
  1424. /package/.output/server/node_modules/{@vue/runtime-dom → .nitro/@vue/runtime-dom@3.5.22}/package.json +0 -0
  1425. /package/.output/server/node_modules/{@vue/shared → .nitro/@vue/shared@3.5.22}/dist/shared.cjs.prod.js +0 -0
  1426. /package/.output/server/node_modules/{@vue/shared → .nitro/@vue/shared@3.5.22}/package.json +0 -0
  1427. /package/.output/server/node_modules/{vue → .nitro/vue@3.5.22}/dist/vue.cjs.js +0 -0
  1428. /package/.output/server/node_modules/{vue → .nitro/vue@3.5.22}/dist/vue.cjs.prod.js +0 -0
  1429. /package/.output/server/node_modules/{vue → .nitro/vue@3.5.22}/index.js +0 -0
  1430. /package/.output/server/node_modules/{vue → .nitro/vue@3.5.22}/index.mjs +0 -0
  1431. /package/.output/server/node_modules/{vue → .nitro/vue@3.5.22}/package.json +0 -0
  1432. /package/.output/server/node_modules/{vue → .nitro/vue@3.5.25}/server-renderer/index.mjs +0 -0
@@ -0,0 +1,1732 @@
1
+ /**
2
+ * @vue/runtime-dom v3.5.25
3
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
+ * @license MIT
5
+ **/
6
+ 'use strict';
7
+
8
+ Object.defineProperty(exports, '__esModule', { value: true });
9
+
10
+ var runtimeCore = require('@vue/runtime-core');
11
+ var shared = require('@vue/shared');
12
+
13
+ let policy = void 0;
14
+ const tt = typeof window !== "undefined" && window.trustedTypes;
15
+ if (tt) {
16
+ try {
17
+ policy = /* @__PURE__ */ tt.createPolicy("vue", {
18
+ createHTML: (val) => val
19
+ });
20
+ } catch (e) {
21
+ }
22
+ }
23
+ const unsafeToTrustedHTML = policy ? (val) => policy.createHTML(val) : (val) => val;
24
+ const svgNS = "http://www.w3.org/2000/svg";
25
+ const mathmlNS = "http://www.w3.org/1998/Math/MathML";
26
+ const doc = typeof document !== "undefined" ? document : null;
27
+ const templateContainer = doc && /* @__PURE__ */ doc.createElement("template");
28
+ const nodeOps = {
29
+ insert: (child, parent, anchor) => {
30
+ parent.insertBefore(child, anchor || null);
31
+ },
32
+ remove: (child) => {
33
+ const parent = child.parentNode;
34
+ if (parent) {
35
+ parent.removeChild(child);
36
+ }
37
+ },
38
+ createElement: (tag, namespace, is, props) => {
39
+ const el = namespace === "svg" ? doc.createElementNS(svgNS, tag) : namespace === "mathml" ? doc.createElementNS(mathmlNS, tag) : is ? doc.createElement(tag, { is }) : doc.createElement(tag);
40
+ if (tag === "select" && props && props.multiple != null) {
41
+ el.setAttribute("multiple", props.multiple);
42
+ }
43
+ return el;
44
+ },
45
+ createText: (text) => doc.createTextNode(text),
46
+ createComment: (text) => doc.createComment(text),
47
+ setText: (node, text) => {
48
+ node.nodeValue = text;
49
+ },
50
+ setElementText: (el, text) => {
51
+ el.textContent = text;
52
+ },
53
+ parentNode: (node) => node.parentNode,
54
+ nextSibling: (node) => node.nextSibling,
55
+ querySelector: (selector) => doc.querySelector(selector),
56
+ setScopeId(el, id) {
57
+ el.setAttribute(id, "");
58
+ },
59
+ // __UNSAFE__
60
+ // Reason: innerHTML.
61
+ // Static content here can only come from compiled templates.
62
+ // As long as the user only uses trusted templates, this is safe.
63
+ insertStaticContent(content, parent, anchor, namespace, start, end) {
64
+ const before = anchor ? anchor.previousSibling : parent.lastChild;
65
+ if (start && (start === end || start.nextSibling)) {
66
+ while (true) {
67
+ parent.insertBefore(start.cloneNode(true), anchor);
68
+ if (start === end || !(start = start.nextSibling)) break;
69
+ }
70
+ } else {
71
+ templateContainer.innerHTML = unsafeToTrustedHTML(
72
+ namespace === "svg" ? `<svg>${content}</svg>` : namespace === "mathml" ? `<math>${content}</math>` : content
73
+ );
74
+ const template = templateContainer.content;
75
+ if (namespace === "svg" || namespace === "mathml") {
76
+ const wrapper = template.firstChild;
77
+ while (wrapper.firstChild) {
78
+ template.appendChild(wrapper.firstChild);
79
+ }
80
+ template.removeChild(wrapper);
81
+ }
82
+ parent.insertBefore(template, anchor);
83
+ }
84
+ return [
85
+ // first
86
+ before ? before.nextSibling : parent.firstChild,
87
+ // last
88
+ anchor ? anchor.previousSibling : parent.lastChild
89
+ ];
90
+ }
91
+ };
92
+
93
+ const TRANSITION = "transition";
94
+ const ANIMATION = "animation";
95
+ const vtcKey = Symbol("_vtc");
96
+ const DOMTransitionPropsValidators = {
97
+ name: String,
98
+ type: String,
99
+ css: {
100
+ type: Boolean,
101
+ default: true
102
+ },
103
+ duration: [String, Number, Object],
104
+ enterFromClass: String,
105
+ enterActiveClass: String,
106
+ enterToClass: String,
107
+ appearFromClass: String,
108
+ appearActiveClass: String,
109
+ appearToClass: String,
110
+ leaveFromClass: String,
111
+ leaveActiveClass: String,
112
+ leaveToClass: String
113
+ };
114
+ const TransitionPropsValidators = /* @__PURE__ */ shared.extend(
115
+ {},
116
+ runtimeCore.BaseTransitionPropsValidators,
117
+ DOMTransitionPropsValidators
118
+ );
119
+ const decorate$1 = (t) => {
120
+ t.displayName = "Transition";
121
+ t.props = TransitionPropsValidators;
122
+ return t;
123
+ };
124
+ const Transition = /* @__PURE__ */ decorate$1(
125
+ (props, { slots }) => runtimeCore.h(runtimeCore.BaseTransition, resolveTransitionProps(props), slots)
126
+ );
127
+ const callHook = (hook, args = []) => {
128
+ if (shared.isArray(hook)) {
129
+ hook.forEach((h2) => h2(...args));
130
+ } else if (hook) {
131
+ hook(...args);
132
+ }
133
+ };
134
+ const hasExplicitCallback = (hook) => {
135
+ return hook ? shared.isArray(hook) ? hook.some((h2) => h2.length > 1) : hook.length > 1 : false;
136
+ };
137
+ function resolveTransitionProps(rawProps) {
138
+ const baseProps = {};
139
+ for (const key in rawProps) {
140
+ if (!(key in DOMTransitionPropsValidators)) {
141
+ baseProps[key] = rawProps[key];
142
+ }
143
+ }
144
+ if (rawProps.css === false) {
145
+ return baseProps;
146
+ }
147
+ const {
148
+ name = "v",
149
+ type,
150
+ duration,
151
+ enterFromClass = `${name}-enter-from`,
152
+ enterActiveClass = `${name}-enter-active`,
153
+ enterToClass = `${name}-enter-to`,
154
+ appearFromClass = enterFromClass,
155
+ appearActiveClass = enterActiveClass,
156
+ appearToClass = enterToClass,
157
+ leaveFromClass = `${name}-leave-from`,
158
+ leaveActiveClass = `${name}-leave-active`,
159
+ leaveToClass = `${name}-leave-to`
160
+ } = rawProps;
161
+ const durations = normalizeDuration(duration);
162
+ const enterDuration = durations && durations[0];
163
+ const leaveDuration = durations && durations[1];
164
+ const {
165
+ onBeforeEnter,
166
+ onEnter,
167
+ onEnterCancelled,
168
+ onLeave,
169
+ onLeaveCancelled,
170
+ onBeforeAppear = onBeforeEnter,
171
+ onAppear = onEnter,
172
+ onAppearCancelled = onEnterCancelled
173
+ } = baseProps;
174
+ const finishEnter = (el, isAppear, done, isCancelled) => {
175
+ el._enterCancelled = isCancelled;
176
+ removeTransitionClass(el, isAppear ? appearToClass : enterToClass);
177
+ removeTransitionClass(el, isAppear ? appearActiveClass : enterActiveClass);
178
+ done && done();
179
+ };
180
+ const finishLeave = (el, done) => {
181
+ el._isLeaving = false;
182
+ removeTransitionClass(el, leaveFromClass);
183
+ removeTransitionClass(el, leaveToClass);
184
+ removeTransitionClass(el, leaveActiveClass);
185
+ done && done();
186
+ };
187
+ const makeEnterHook = (isAppear) => {
188
+ return (el, done) => {
189
+ const hook = isAppear ? onAppear : onEnter;
190
+ const resolve = () => finishEnter(el, isAppear, done);
191
+ callHook(hook, [el, resolve]);
192
+ nextFrame(() => {
193
+ removeTransitionClass(el, isAppear ? appearFromClass : enterFromClass);
194
+ addTransitionClass(el, isAppear ? appearToClass : enterToClass);
195
+ if (!hasExplicitCallback(hook)) {
196
+ whenTransitionEnds(el, type, enterDuration, resolve);
197
+ }
198
+ });
199
+ };
200
+ };
201
+ return shared.extend(baseProps, {
202
+ onBeforeEnter(el) {
203
+ callHook(onBeforeEnter, [el]);
204
+ addTransitionClass(el, enterFromClass);
205
+ addTransitionClass(el, enterActiveClass);
206
+ },
207
+ onBeforeAppear(el) {
208
+ callHook(onBeforeAppear, [el]);
209
+ addTransitionClass(el, appearFromClass);
210
+ addTransitionClass(el, appearActiveClass);
211
+ },
212
+ onEnter: makeEnterHook(false),
213
+ onAppear: makeEnterHook(true),
214
+ onLeave(el, done) {
215
+ el._isLeaving = true;
216
+ const resolve = () => finishLeave(el, done);
217
+ addTransitionClass(el, leaveFromClass);
218
+ if (!el._enterCancelled) {
219
+ forceReflow(el);
220
+ addTransitionClass(el, leaveActiveClass);
221
+ } else {
222
+ addTransitionClass(el, leaveActiveClass);
223
+ forceReflow(el);
224
+ }
225
+ nextFrame(() => {
226
+ if (!el._isLeaving) {
227
+ return;
228
+ }
229
+ removeTransitionClass(el, leaveFromClass);
230
+ addTransitionClass(el, leaveToClass);
231
+ if (!hasExplicitCallback(onLeave)) {
232
+ whenTransitionEnds(el, type, leaveDuration, resolve);
233
+ }
234
+ });
235
+ callHook(onLeave, [el, resolve]);
236
+ },
237
+ onEnterCancelled(el) {
238
+ finishEnter(el, false, void 0, true);
239
+ callHook(onEnterCancelled, [el]);
240
+ },
241
+ onAppearCancelled(el) {
242
+ finishEnter(el, true, void 0, true);
243
+ callHook(onAppearCancelled, [el]);
244
+ },
245
+ onLeaveCancelled(el) {
246
+ finishLeave(el);
247
+ callHook(onLeaveCancelled, [el]);
248
+ }
249
+ });
250
+ }
251
+ function normalizeDuration(duration) {
252
+ if (duration == null) {
253
+ return null;
254
+ } else if (shared.isObject(duration)) {
255
+ return [NumberOf(duration.enter), NumberOf(duration.leave)];
256
+ } else {
257
+ const n = NumberOf(duration);
258
+ return [n, n];
259
+ }
260
+ }
261
+ function NumberOf(val) {
262
+ const res = shared.toNumber(val);
263
+ return res;
264
+ }
265
+ function addTransitionClass(el, cls) {
266
+ cls.split(/\s+/).forEach((c) => c && el.classList.add(c));
267
+ (el[vtcKey] || (el[vtcKey] = /* @__PURE__ */ new Set())).add(cls);
268
+ }
269
+ function removeTransitionClass(el, cls) {
270
+ cls.split(/\s+/).forEach((c) => c && el.classList.remove(c));
271
+ const _vtc = el[vtcKey];
272
+ if (_vtc) {
273
+ _vtc.delete(cls);
274
+ if (!_vtc.size) {
275
+ el[vtcKey] = void 0;
276
+ }
277
+ }
278
+ }
279
+ function nextFrame(cb) {
280
+ requestAnimationFrame(() => {
281
+ requestAnimationFrame(cb);
282
+ });
283
+ }
284
+ let endId = 0;
285
+ function whenTransitionEnds(el, expectedType, explicitTimeout, resolve) {
286
+ const id = el._endId = ++endId;
287
+ const resolveIfNotStale = () => {
288
+ if (id === el._endId) {
289
+ resolve();
290
+ }
291
+ };
292
+ if (explicitTimeout != null) {
293
+ return setTimeout(resolveIfNotStale, explicitTimeout);
294
+ }
295
+ const { type, timeout, propCount } = getTransitionInfo(el, expectedType);
296
+ if (!type) {
297
+ return resolve();
298
+ }
299
+ const endEvent = type + "end";
300
+ let ended = 0;
301
+ const end = () => {
302
+ el.removeEventListener(endEvent, onEnd);
303
+ resolveIfNotStale();
304
+ };
305
+ const onEnd = (e) => {
306
+ if (e.target === el && ++ended >= propCount) {
307
+ end();
308
+ }
309
+ };
310
+ setTimeout(() => {
311
+ if (ended < propCount) {
312
+ end();
313
+ }
314
+ }, timeout + 1);
315
+ el.addEventListener(endEvent, onEnd);
316
+ }
317
+ function getTransitionInfo(el, expectedType) {
318
+ const styles = window.getComputedStyle(el);
319
+ const getStyleProperties = (key) => (styles[key] || "").split(", ");
320
+ const transitionDelays = getStyleProperties(`${TRANSITION}Delay`);
321
+ const transitionDurations = getStyleProperties(`${TRANSITION}Duration`);
322
+ const transitionTimeout = getTimeout(transitionDelays, transitionDurations);
323
+ const animationDelays = getStyleProperties(`${ANIMATION}Delay`);
324
+ const animationDurations = getStyleProperties(`${ANIMATION}Duration`);
325
+ const animationTimeout = getTimeout(animationDelays, animationDurations);
326
+ let type = null;
327
+ let timeout = 0;
328
+ let propCount = 0;
329
+ if (expectedType === TRANSITION) {
330
+ if (transitionTimeout > 0) {
331
+ type = TRANSITION;
332
+ timeout = transitionTimeout;
333
+ propCount = transitionDurations.length;
334
+ }
335
+ } else if (expectedType === ANIMATION) {
336
+ if (animationTimeout > 0) {
337
+ type = ANIMATION;
338
+ timeout = animationTimeout;
339
+ propCount = animationDurations.length;
340
+ }
341
+ } else {
342
+ timeout = Math.max(transitionTimeout, animationTimeout);
343
+ type = timeout > 0 ? transitionTimeout > animationTimeout ? TRANSITION : ANIMATION : null;
344
+ propCount = type ? type === TRANSITION ? transitionDurations.length : animationDurations.length : 0;
345
+ }
346
+ const hasTransform = type === TRANSITION && /\b(?:transform|all)(?:,|$)/.test(
347
+ getStyleProperties(`${TRANSITION}Property`).toString()
348
+ );
349
+ return {
350
+ type,
351
+ timeout,
352
+ propCount,
353
+ hasTransform
354
+ };
355
+ }
356
+ function getTimeout(delays, durations) {
357
+ while (delays.length < durations.length) {
358
+ delays = delays.concat(delays);
359
+ }
360
+ return Math.max(...durations.map((d, i) => toMs(d) + toMs(delays[i])));
361
+ }
362
+ function toMs(s) {
363
+ if (s === "auto") return 0;
364
+ return Number(s.slice(0, -1).replace(",", ".")) * 1e3;
365
+ }
366
+ function forceReflow(el) {
367
+ const targetDocument = el ? el.ownerDocument : document;
368
+ return targetDocument.body.offsetHeight;
369
+ }
370
+
371
+ function patchClass(el, value, isSVG) {
372
+ const transitionClasses = el[vtcKey];
373
+ if (transitionClasses) {
374
+ value = (value ? [value, ...transitionClasses] : [...transitionClasses]).join(" ");
375
+ }
376
+ if (value == null) {
377
+ el.removeAttribute("class");
378
+ } else if (isSVG) {
379
+ el.setAttribute("class", value);
380
+ } else {
381
+ el.className = value;
382
+ }
383
+ }
384
+
385
+ const vShowOriginalDisplay = Symbol("_vod");
386
+ const vShowHidden = Symbol("_vsh");
387
+ const vShow = {
388
+ // used for prop mismatch check during hydration
389
+ name: "show",
390
+ beforeMount(el, { value }, { transition }) {
391
+ el[vShowOriginalDisplay] = el.style.display === "none" ? "" : el.style.display;
392
+ if (transition && value) {
393
+ transition.beforeEnter(el);
394
+ } else {
395
+ setDisplay(el, value);
396
+ }
397
+ },
398
+ mounted(el, { value }, { transition }) {
399
+ if (transition && value) {
400
+ transition.enter(el);
401
+ }
402
+ },
403
+ updated(el, { value, oldValue }, { transition }) {
404
+ if (!value === !oldValue) return;
405
+ if (transition) {
406
+ if (value) {
407
+ transition.beforeEnter(el);
408
+ setDisplay(el, true);
409
+ transition.enter(el);
410
+ } else {
411
+ transition.leave(el, () => {
412
+ setDisplay(el, false);
413
+ });
414
+ }
415
+ } else {
416
+ setDisplay(el, value);
417
+ }
418
+ },
419
+ beforeUnmount(el, { value }) {
420
+ setDisplay(el, value);
421
+ }
422
+ };
423
+ function setDisplay(el, value) {
424
+ el.style.display = value ? el[vShowOriginalDisplay] : "none";
425
+ el[vShowHidden] = !value;
426
+ }
427
+ function initVShowForSSR() {
428
+ vShow.getSSRProps = ({ value }) => {
429
+ if (!value) {
430
+ return { style: { display: "none" } };
431
+ }
432
+ };
433
+ }
434
+
435
+ const CSS_VAR_TEXT = Symbol("");
436
+ function useCssVars(getter) {
437
+ return;
438
+ }
439
+
440
+ const displayRE = /(?:^|;)\s*display\s*:/;
441
+ function patchStyle(el, prev, next) {
442
+ const style = el.style;
443
+ const isCssString = shared.isString(next);
444
+ let hasControlledDisplay = false;
445
+ if (next && !isCssString) {
446
+ if (prev) {
447
+ if (!shared.isString(prev)) {
448
+ for (const key in prev) {
449
+ if (next[key] == null) {
450
+ setStyle(style, key, "");
451
+ }
452
+ }
453
+ } else {
454
+ for (const prevStyle of prev.split(";")) {
455
+ const key = prevStyle.slice(0, prevStyle.indexOf(":")).trim();
456
+ if (next[key] == null) {
457
+ setStyle(style, key, "");
458
+ }
459
+ }
460
+ }
461
+ }
462
+ for (const key in next) {
463
+ if (key === "display") {
464
+ hasControlledDisplay = true;
465
+ }
466
+ setStyle(style, key, next[key]);
467
+ }
468
+ } else {
469
+ if (isCssString) {
470
+ if (prev !== next) {
471
+ const cssVarText = style[CSS_VAR_TEXT];
472
+ if (cssVarText) {
473
+ next += ";" + cssVarText;
474
+ }
475
+ style.cssText = next;
476
+ hasControlledDisplay = displayRE.test(next);
477
+ }
478
+ } else if (prev) {
479
+ el.removeAttribute("style");
480
+ }
481
+ }
482
+ if (vShowOriginalDisplay in el) {
483
+ el[vShowOriginalDisplay] = hasControlledDisplay ? style.display : "";
484
+ if (el[vShowHidden]) {
485
+ style.display = "none";
486
+ }
487
+ }
488
+ }
489
+ const importantRE = /\s*!important$/;
490
+ function setStyle(style, name, val) {
491
+ if (shared.isArray(val)) {
492
+ val.forEach((v) => setStyle(style, name, v));
493
+ } else {
494
+ if (val == null) val = "";
495
+ if (name.startsWith("--")) {
496
+ style.setProperty(name, val);
497
+ } else {
498
+ const prefixed = autoPrefix(style, name);
499
+ if (importantRE.test(val)) {
500
+ style.setProperty(
501
+ shared.hyphenate(prefixed),
502
+ val.replace(importantRE, ""),
503
+ "important"
504
+ );
505
+ } else {
506
+ style[prefixed] = val;
507
+ }
508
+ }
509
+ }
510
+ }
511
+ const prefixes = ["Webkit", "Moz", "ms"];
512
+ const prefixCache = {};
513
+ function autoPrefix(style, rawName) {
514
+ const cached = prefixCache[rawName];
515
+ if (cached) {
516
+ return cached;
517
+ }
518
+ let name = runtimeCore.camelize(rawName);
519
+ if (name !== "filter" && name in style) {
520
+ return prefixCache[rawName] = name;
521
+ }
522
+ name = shared.capitalize(name);
523
+ for (let i = 0; i < prefixes.length; i++) {
524
+ const prefixed = prefixes[i] + name;
525
+ if (prefixed in style) {
526
+ return prefixCache[rawName] = prefixed;
527
+ }
528
+ }
529
+ return rawName;
530
+ }
531
+
532
+ const xlinkNS = "http://www.w3.org/1999/xlink";
533
+ function patchAttr(el, key, value, isSVG, instance, isBoolean = shared.isSpecialBooleanAttr(key)) {
534
+ if (isSVG && key.startsWith("xlink:")) {
535
+ if (value == null) {
536
+ el.removeAttributeNS(xlinkNS, key.slice(6, key.length));
537
+ } else {
538
+ el.setAttributeNS(xlinkNS, key, value);
539
+ }
540
+ } else {
541
+ if (value == null || isBoolean && !shared.includeBooleanAttr(value)) {
542
+ el.removeAttribute(key);
543
+ } else {
544
+ el.setAttribute(
545
+ key,
546
+ isBoolean ? "" : shared.isSymbol(value) ? String(value) : value
547
+ );
548
+ }
549
+ }
550
+ }
551
+
552
+ function patchDOMProp(el, key, value, parentComponent, attrName) {
553
+ if (key === "innerHTML" || key === "textContent") {
554
+ if (value != null) {
555
+ el[key] = key === "innerHTML" ? unsafeToTrustedHTML(value) : value;
556
+ }
557
+ return;
558
+ }
559
+ const tag = el.tagName;
560
+ if (key === "value" && tag !== "PROGRESS" && // custom elements may use _value internally
561
+ !tag.includes("-")) {
562
+ const oldValue = tag === "OPTION" ? el.getAttribute("value") || "" : el.value;
563
+ const newValue = value == null ? (
564
+ // #11647: value should be set as empty string for null and undefined,
565
+ // but <input type="checkbox"> should be set as 'on'.
566
+ el.type === "checkbox" ? "on" : ""
567
+ ) : String(value);
568
+ if (oldValue !== newValue || !("_value" in el)) {
569
+ el.value = newValue;
570
+ }
571
+ if (value == null) {
572
+ el.removeAttribute(key);
573
+ }
574
+ el._value = value;
575
+ return;
576
+ }
577
+ let needRemove = false;
578
+ if (value === "" || value == null) {
579
+ const type = typeof el[key];
580
+ if (type === "boolean") {
581
+ value = shared.includeBooleanAttr(value);
582
+ } else if (value == null && type === "string") {
583
+ value = "";
584
+ needRemove = true;
585
+ } else if (type === "number") {
586
+ value = 0;
587
+ needRemove = true;
588
+ }
589
+ }
590
+ try {
591
+ el[key] = value;
592
+ } catch (e) {
593
+ }
594
+ needRemove && el.removeAttribute(attrName || key);
595
+ }
596
+
597
+ function addEventListener(el, event, handler, options) {
598
+ el.addEventListener(event, handler, options);
599
+ }
600
+ function removeEventListener(el, event, handler, options) {
601
+ el.removeEventListener(event, handler, options);
602
+ }
603
+ const veiKey = Symbol("_vei");
604
+ function patchEvent(el, rawName, prevValue, nextValue, instance = null) {
605
+ const invokers = el[veiKey] || (el[veiKey] = {});
606
+ const existingInvoker = invokers[rawName];
607
+ if (nextValue && existingInvoker) {
608
+ existingInvoker.value = nextValue;
609
+ } else {
610
+ const [name, options] = parseName(rawName);
611
+ if (nextValue) {
612
+ const invoker = invokers[rawName] = createInvoker(
613
+ nextValue,
614
+ instance
615
+ );
616
+ addEventListener(el, name, invoker, options);
617
+ } else if (existingInvoker) {
618
+ removeEventListener(el, name, existingInvoker, options);
619
+ invokers[rawName] = void 0;
620
+ }
621
+ }
622
+ }
623
+ const optionsModifierRE = /(?:Once|Passive|Capture)$/;
624
+ function parseName(name) {
625
+ let options;
626
+ if (optionsModifierRE.test(name)) {
627
+ options = {};
628
+ let m;
629
+ while (m = name.match(optionsModifierRE)) {
630
+ name = name.slice(0, name.length - m[0].length);
631
+ options[m[0].toLowerCase()] = true;
632
+ }
633
+ }
634
+ const event = name[2] === ":" ? name.slice(3) : shared.hyphenate(name.slice(2));
635
+ return [event, options];
636
+ }
637
+ let cachedNow = 0;
638
+ const p = /* @__PURE__ */ Promise.resolve();
639
+ const getNow = () => cachedNow || (p.then(() => cachedNow = 0), cachedNow = Date.now());
640
+ function createInvoker(initialValue, instance) {
641
+ const invoker = (e) => {
642
+ if (!e._vts) {
643
+ e._vts = Date.now();
644
+ } else if (e._vts <= invoker.attached) {
645
+ return;
646
+ }
647
+ runtimeCore.callWithAsyncErrorHandling(
648
+ patchStopImmediatePropagation(e, invoker.value),
649
+ instance,
650
+ 5,
651
+ [e]
652
+ );
653
+ };
654
+ invoker.value = initialValue;
655
+ invoker.attached = getNow();
656
+ return invoker;
657
+ }
658
+ function patchStopImmediatePropagation(e, value) {
659
+ if (shared.isArray(value)) {
660
+ const originalStop = e.stopImmediatePropagation;
661
+ e.stopImmediatePropagation = () => {
662
+ originalStop.call(e);
663
+ e._stopped = true;
664
+ };
665
+ return value.map(
666
+ (fn) => (e2) => !e2._stopped && fn && fn(e2)
667
+ );
668
+ } else {
669
+ return value;
670
+ }
671
+ }
672
+
673
+ const isNativeOn = (key) => key.charCodeAt(0) === 111 && key.charCodeAt(1) === 110 && // lowercase letter
674
+ key.charCodeAt(2) > 96 && key.charCodeAt(2) < 123;
675
+ const patchProp = (el, key, prevValue, nextValue, namespace, parentComponent) => {
676
+ const isSVG = namespace === "svg";
677
+ if (key === "class") {
678
+ patchClass(el, nextValue, isSVG);
679
+ } else if (key === "style") {
680
+ patchStyle(el, prevValue, nextValue);
681
+ } else if (shared.isOn(key)) {
682
+ if (!shared.isModelListener(key)) {
683
+ patchEvent(el, key, prevValue, nextValue, parentComponent);
684
+ }
685
+ } else if (key[0] === "." ? (key = key.slice(1), true) : key[0] === "^" ? (key = key.slice(1), false) : shouldSetAsProp(el, key, nextValue, isSVG)) {
686
+ patchDOMProp(el, key, nextValue);
687
+ if (!el.tagName.includes("-") && (key === "value" || key === "checked" || key === "selected")) {
688
+ patchAttr(el, key, nextValue, isSVG, parentComponent, key !== "value");
689
+ }
690
+ } else if (
691
+ // #11081 force set props for possible async custom element
692
+ el._isVueCE && (/[A-Z]/.test(key) || !shared.isString(nextValue))
693
+ ) {
694
+ patchDOMProp(el, shared.camelize(key), nextValue, parentComponent, key);
695
+ } else {
696
+ if (key === "true-value") {
697
+ el._trueValue = nextValue;
698
+ } else if (key === "false-value") {
699
+ el._falseValue = nextValue;
700
+ }
701
+ patchAttr(el, key, nextValue, isSVG);
702
+ }
703
+ };
704
+ function shouldSetAsProp(el, key, value, isSVG) {
705
+ if (isSVG) {
706
+ if (key === "innerHTML" || key === "textContent") {
707
+ return true;
708
+ }
709
+ if (key in el && isNativeOn(key) && shared.isFunction(value)) {
710
+ return true;
711
+ }
712
+ return false;
713
+ }
714
+ if (key === "spellcheck" || key === "draggable" || key === "translate" || key === "autocorrect") {
715
+ return false;
716
+ }
717
+ if (key === "sandbox" && el.tagName === "IFRAME") {
718
+ return false;
719
+ }
720
+ if (key === "form") {
721
+ return false;
722
+ }
723
+ if (key === "list" && el.tagName === "INPUT") {
724
+ return false;
725
+ }
726
+ if (key === "type" && el.tagName === "TEXTAREA") {
727
+ return false;
728
+ }
729
+ if (key === "width" || key === "height") {
730
+ const tag = el.tagName;
731
+ if (tag === "IMG" || tag === "VIDEO" || tag === "CANVAS" || tag === "SOURCE") {
732
+ return false;
733
+ }
734
+ }
735
+ if (isNativeOn(key) && shared.isString(value)) {
736
+ return false;
737
+ }
738
+ return key in el;
739
+ }
740
+
741
+ const REMOVAL = {};
742
+ // @__NO_SIDE_EFFECTS__
743
+ function defineCustomElement(options, extraOptions, _createApp) {
744
+ let Comp = runtimeCore.defineComponent(options, extraOptions);
745
+ if (shared.isPlainObject(Comp)) Comp = shared.extend({}, Comp, extraOptions);
746
+ class VueCustomElement extends VueElement {
747
+ constructor(initialProps) {
748
+ super(Comp, initialProps, _createApp);
749
+ }
750
+ }
751
+ VueCustomElement.def = Comp;
752
+ return VueCustomElement;
753
+ }
754
+ const defineSSRCustomElement = (/* @__NO_SIDE_EFFECTS__ */ (options, extraOptions) => {
755
+ return /* @__PURE__ */ defineCustomElement(options, extraOptions, createSSRApp);
756
+ });
757
+ const BaseClass = typeof HTMLElement !== "undefined" ? HTMLElement : class {
758
+ };
759
+ class VueElement extends BaseClass {
760
+ constructor(_def, _props = {}, _createApp = createApp) {
761
+ super();
762
+ this._def = _def;
763
+ this._props = _props;
764
+ this._createApp = _createApp;
765
+ this._isVueCE = true;
766
+ /**
767
+ * @internal
768
+ */
769
+ this._instance = null;
770
+ /**
771
+ * @internal
772
+ */
773
+ this._app = null;
774
+ /**
775
+ * @internal
776
+ */
777
+ this._nonce = this._def.nonce;
778
+ this._connected = false;
779
+ this._resolved = false;
780
+ this._patching = false;
781
+ this._dirty = false;
782
+ this._numberProps = null;
783
+ this._styleChildren = /* @__PURE__ */ new WeakSet();
784
+ this._ob = null;
785
+ if (this.shadowRoot && _createApp !== createApp) {
786
+ this._root = this.shadowRoot;
787
+ } else {
788
+ if (_def.shadowRoot !== false) {
789
+ this.attachShadow(
790
+ shared.extend({}, _def.shadowRootOptions, {
791
+ mode: "open"
792
+ })
793
+ );
794
+ this._root = this.shadowRoot;
795
+ } else {
796
+ this._root = this;
797
+ }
798
+ }
799
+ }
800
+ connectedCallback() {
801
+ if (!this.isConnected) return;
802
+ if (!this.shadowRoot && !this._resolved) {
803
+ this._parseSlots();
804
+ }
805
+ this._connected = true;
806
+ let parent = this;
807
+ while (parent = parent && (parent.parentNode || parent.host)) {
808
+ if (parent instanceof VueElement) {
809
+ this._parent = parent;
810
+ break;
811
+ }
812
+ }
813
+ if (!this._instance) {
814
+ if (this._resolved) {
815
+ this._mount(this._def);
816
+ } else {
817
+ if (parent && parent._pendingResolve) {
818
+ this._pendingResolve = parent._pendingResolve.then(() => {
819
+ this._pendingResolve = void 0;
820
+ this._resolveDef();
821
+ });
822
+ } else {
823
+ this._resolveDef();
824
+ }
825
+ }
826
+ }
827
+ }
828
+ _setParent(parent = this._parent) {
829
+ if (parent) {
830
+ this._instance.parent = parent._instance;
831
+ this._inheritParentContext(parent);
832
+ }
833
+ }
834
+ _inheritParentContext(parent = this._parent) {
835
+ if (parent && this._app) {
836
+ Object.setPrototypeOf(
837
+ this._app._context.provides,
838
+ parent._instance.provides
839
+ );
840
+ }
841
+ }
842
+ disconnectedCallback() {
843
+ this._connected = false;
844
+ runtimeCore.nextTick(() => {
845
+ if (!this._connected) {
846
+ if (this._ob) {
847
+ this._ob.disconnect();
848
+ this._ob = null;
849
+ }
850
+ this._app && this._app.unmount();
851
+ if (this._instance) this._instance.ce = void 0;
852
+ this._app = this._instance = null;
853
+ if (this._teleportTargets) {
854
+ this._teleportTargets.clear();
855
+ this._teleportTargets = void 0;
856
+ }
857
+ }
858
+ });
859
+ }
860
+ _processMutations(mutations) {
861
+ for (const m of mutations) {
862
+ this._setAttr(m.attributeName);
863
+ }
864
+ }
865
+ /**
866
+ * resolve inner component definition (handle possible async component)
867
+ */
868
+ _resolveDef() {
869
+ if (this._pendingResolve) {
870
+ return;
871
+ }
872
+ for (let i = 0; i < this.attributes.length; i++) {
873
+ this._setAttr(this.attributes[i].name);
874
+ }
875
+ this._ob = new MutationObserver(this._processMutations.bind(this));
876
+ this._ob.observe(this, { attributes: true });
877
+ const resolve = (def, isAsync = false) => {
878
+ this._resolved = true;
879
+ this._pendingResolve = void 0;
880
+ const { props, styles } = def;
881
+ let numberProps;
882
+ if (props && !shared.isArray(props)) {
883
+ for (const key in props) {
884
+ const opt = props[key];
885
+ if (opt === Number || opt && opt.type === Number) {
886
+ if (key in this._props) {
887
+ this._props[key] = shared.toNumber(this._props[key]);
888
+ }
889
+ (numberProps || (numberProps = /* @__PURE__ */ Object.create(null)))[shared.camelize(key)] = true;
890
+ }
891
+ }
892
+ }
893
+ this._numberProps = numberProps;
894
+ this._resolveProps(def);
895
+ if (this.shadowRoot) {
896
+ this._applyStyles(styles);
897
+ }
898
+ this._mount(def);
899
+ };
900
+ const asyncDef = this._def.__asyncLoader;
901
+ if (asyncDef) {
902
+ this._pendingResolve = asyncDef().then((def) => {
903
+ def.configureApp = this._def.configureApp;
904
+ resolve(this._def = def, true);
905
+ });
906
+ } else {
907
+ resolve(this._def);
908
+ }
909
+ }
910
+ _mount(def) {
911
+ this._app = this._createApp(def);
912
+ this._inheritParentContext();
913
+ if (def.configureApp) {
914
+ def.configureApp(this._app);
915
+ }
916
+ this._app._ceVNode = this._createVNode();
917
+ this._app.mount(this._root);
918
+ const exposed = this._instance && this._instance.exposed;
919
+ if (!exposed) return;
920
+ for (const key in exposed) {
921
+ if (!shared.hasOwn(this, key)) {
922
+ Object.defineProperty(this, key, {
923
+ // unwrap ref to be consistent with public instance behavior
924
+ get: () => runtimeCore.unref(exposed[key])
925
+ });
926
+ }
927
+ }
928
+ }
929
+ _resolveProps(def) {
930
+ const { props } = def;
931
+ const declaredPropKeys = shared.isArray(props) ? props : Object.keys(props || {});
932
+ for (const key of Object.keys(this)) {
933
+ if (key[0] !== "_" && declaredPropKeys.includes(key)) {
934
+ this._setProp(key, this[key]);
935
+ }
936
+ }
937
+ for (const key of declaredPropKeys.map(shared.camelize)) {
938
+ Object.defineProperty(this, key, {
939
+ get() {
940
+ return this._getProp(key);
941
+ },
942
+ set(val) {
943
+ this._setProp(key, val, true, !this._patching);
944
+ }
945
+ });
946
+ }
947
+ }
948
+ _setAttr(key) {
949
+ if (key.startsWith("data-v-")) return;
950
+ const has = this.hasAttribute(key);
951
+ let value = has ? this.getAttribute(key) : REMOVAL;
952
+ const camelKey = shared.camelize(key);
953
+ if (has && this._numberProps && this._numberProps[camelKey]) {
954
+ value = shared.toNumber(value);
955
+ }
956
+ this._setProp(camelKey, value, false, true);
957
+ }
958
+ /**
959
+ * @internal
960
+ */
961
+ _getProp(key) {
962
+ return this._props[key];
963
+ }
964
+ /**
965
+ * @internal
966
+ */
967
+ _setProp(key, val, shouldReflect = true, shouldUpdate = false) {
968
+ if (val !== this._props[key]) {
969
+ this._dirty = true;
970
+ if (val === REMOVAL) {
971
+ delete this._props[key];
972
+ } else {
973
+ this._props[key] = val;
974
+ if (key === "key" && this._app) {
975
+ this._app._ceVNode.key = val;
976
+ }
977
+ }
978
+ if (shouldUpdate && this._instance) {
979
+ this._update();
980
+ }
981
+ if (shouldReflect) {
982
+ const ob = this._ob;
983
+ if (ob) {
984
+ this._processMutations(ob.takeRecords());
985
+ ob.disconnect();
986
+ }
987
+ if (val === true) {
988
+ this.setAttribute(shared.hyphenate(key), "");
989
+ } else if (typeof val === "string" || typeof val === "number") {
990
+ this.setAttribute(shared.hyphenate(key), val + "");
991
+ } else if (!val) {
992
+ this.removeAttribute(shared.hyphenate(key));
993
+ }
994
+ ob && ob.observe(this, { attributes: true });
995
+ }
996
+ }
997
+ }
998
+ _update() {
999
+ const vnode = this._createVNode();
1000
+ if (this._app) vnode.appContext = this._app._context;
1001
+ render(vnode, this._root);
1002
+ }
1003
+ _createVNode() {
1004
+ const baseProps = {};
1005
+ if (!this.shadowRoot) {
1006
+ baseProps.onVnodeMounted = baseProps.onVnodeUpdated = this._renderSlots.bind(this);
1007
+ }
1008
+ const vnode = runtimeCore.createVNode(this._def, shared.extend(baseProps, this._props));
1009
+ if (!this._instance) {
1010
+ vnode.ce = (instance) => {
1011
+ this._instance = instance;
1012
+ instance.ce = this;
1013
+ instance.isCE = true;
1014
+ const dispatch = (event, args) => {
1015
+ this.dispatchEvent(
1016
+ new CustomEvent(
1017
+ event,
1018
+ shared.isPlainObject(args[0]) ? shared.extend({ detail: args }, args[0]) : { detail: args }
1019
+ )
1020
+ );
1021
+ };
1022
+ instance.emit = (event, ...args) => {
1023
+ dispatch(event, args);
1024
+ if (shared.hyphenate(event) !== event) {
1025
+ dispatch(shared.hyphenate(event), args);
1026
+ }
1027
+ };
1028
+ this._setParent();
1029
+ };
1030
+ }
1031
+ return vnode;
1032
+ }
1033
+ _applyStyles(styles, owner) {
1034
+ if (!styles) return;
1035
+ if (owner) {
1036
+ if (owner === this._def || this._styleChildren.has(owner)) {
1037
+ return;
1038
+ }
1039
+ this._styleChildren.add(owner);
1040
+ }
1041
+ const nonce = this._nonce;
1042
+ for (let i = styles.length - 1; i >= 0; i--) {
1043
+ const s = document.createElement("style");
1044
+ if (nonce) s.setAttribute("nonce", nonce);
1045
+ s.textContent = styles[i];
1046
+ this.shadowRoot.prepend(s);
1047
+ }
1048
+ }
1049
+ /**
1050
+ * Only called when shadowRoot is false
1051
+ */
1052
+ _parseSlots() {
1053
+ const slots = this._slots = {};
1054
+ let n;
1055
+ while (n = this.firstChild) {
1056
+ const slotName = n.nodeType === 1 && n.getAttribute("slot") || "default";
1057
+ (slots[slotName] || (slots[slotName] = [])).push(n);
1058
+ this.removeChild(n);
1059
+ }
1060
+ }
1061
+ /**
1062
+ * Only called when shadowRoot is false
1063
+ */
1064
+ _renderSlots() {
1065
+ const outlets = this._getSlots();
1066
+ const scopeId = this._instance.type.__scopeId;
1067
+ for (let i = 0; i < outlets.length; i++) {
1068
+ const o = outlets[i];
1069
+ const slotName = o.getAttribute("name") || "default";
1070
+ const content = this._slots[slotName];
1071
+ const parent = o.parentNode;
1072
+ if (content) {
1073
+ for (const n of content) {
1074
+ if (scopeId && n.nodeType === 1) {
1075
+ const id = scopeId + "-s";
1076
+ const walker = document.createTreeWalker(n, 1);
1077
+ n.setAttribute(id, "");
1078
+ let child;
1079
+ while (child = walker.nextNode()) {
1080
+ child.setAttribute(id, "");
1081
+ }
1082
+ }
1083
+ parent.insertBefore(n, o);
1084
+ }
1085
+ } else {
1086
+ while (o.firstChild) parent.insertBefore(o.firstChild, o);
1087
+ }
1088
+ parent.removeChild(o);
1089
+ }
1090
+ }
1091
+ /**
1092
+ * @internal
1093
+ */
1094
+ _getSlots() {
1095
+ const roots = [this];
1096
+ if (this._teleportTargets) {
1097
+ roots.push(...this._teleportTargets);
1098
+ }
1099
+ const slots = /* @__PURE__ */ new Set();
1100
+ for (const root of roots) {
1101
+ const found = root.querySelectorAll("slot");
1102
+ for (let i = 0; i < found.length; i++) {
1103
+ slots.add(found[i]);
1104
+ }
1105
+ }
1106
+ return Array.from(slots);
1107
+ }
1108
+ /**
1109
+ * @internal
1110
+ */
1111
+ _injectChildStyle(comp) {
1112
+ this._applyStyles(comp.styles, comp);
1113
+ }
1114
+ /**
1115
+ * @internal
1116
+ */
1117
+ _beginPatch() {
1118
+ this._patching = true;
1119
+ this._dirty = false;
1120
+ }
1121
+ /**
1122
+ * @internal
1123
+ */
1124
+ _endPatch() {
1125
+ this._patching = false;
1126
+ if (this._dirty && this._instance) {
1127
+ this._update();
1128
+ }
1129
+ }
1130
+ /**
1131
+ * @internal
1132
+ */
1133
+ _removeChildStyle(comp) {
1134
+ }
1135
+ }
1136
+ function useHost(caller) {
1137
+ const instance = runtimeCore.getCurrentInstance();
1138
+ const el = instance && instance.ce;
1139
+ if (el) {
1140
+ return el;
1141
+ }
1142
+ return null;
1143
+ }
1144
+ function useShadowRoot() {
1145
+ const el = useHost();
1146
+ return el && el.shadowRoot;
1147
+ }
1148
+
1149
+ function useCssModule(name = "$style") {
1150
+ {
1151
+ const instance = runtimeCore.getCurrentInstance();
1152
+ if (!instance) {
1153
+ return shared.EMPTY_OBJ;
1154
+ }
1155
+ const modules = instance.type.__cssModules;
1156
+ if (!modules) {
1157
+ return shared.EMPTY_OBJ;
1158
+ }
1159
+ const mod = modules[name];
1160
+ if (!mod) {
1161
+ return shared.EMPTY_OBJ;
1162
+ }
1163
+ return mod;
1164
+ }
1165
+ }
1166
+
1167
+ const positionMap = /* @__PURE__ */ new WeakMap();
1168
+ const newPositionMap = /* @__PURE__ */ new WeakMap();
1169
+ const moveCbKey = Symbol("_moveCb");
1170
+ const enterCbKey = Symbol("_enterCb");
1171
+ const decorate = (t) => {
1172
+ delete t.props.mode;
1173
+ return t;
1174
+ };
1175
+ const TransitionGroupImpl = /* @__PURE__ */ decorate({
1176
+ name: "TransitionGroup",
1177
+ props: /* @__PURE__ */ shared.extend({}, TransitionPropsValidators, {
1178
+ tag: String,
1179
+ moveClass: String
1180
+ }),
1181
+ setup(props, { slots }) {
1182
+ const instance = runtimeCore.getCurrentInstance();
1183
+ const state = runtimeCore.useTransitionState();
1184
+ let prevChildren;
1185
+ let children;
1186
+ runtimeCore.onUpdated(() => {
1187
+ if (!prevChildren.length) {
1188
+ return;
1189
+ }
1190
+ const moveClass = props.moveClass || `${props.name || "v"}-move`;
1191
+ if (!hasCSSTransform(
1192
+ prevChildren[0].el,
1193
+ instance.vnode.el,
1194
+ moveClass
1195
+ )) {
1196
+ prevChildren = [];
1197
+ return;
1198
+ }
1199
+ prevChildren.forEach(callPendingCbs);
1200
+ prevChildren.forEach(recordPosition);
1201
+ const movedChildren = prevChildren.filter(applyTranslation);
1202
+ forceReflow(instance.vnode.el);
1203
+ movedChildren.forEach((c) => {
1204
+ const el = c.el;
1205
+ const style = el.style;
1206
+ addTransitionClass(el, moveClass);
1207
+ style.transform = style.webkitTransform = style.transitionDuration = "";
1208
+ const cb = el[moveCbKey] = (e) => {
1209
+ if (e && e.target !== el) {
1210
+ return;
1211
+ }
1212
+ if (!e || e.propertyName.endsWith("transform")) {
1213
+ el.removeEventListener("transitionend", cb);
1214
+ el[moveCbKey] = null;
1215
+ removeTransitionClass(el, moveClass);
1216
+ }
1217
+ };
1218
+ el.addEventListener("transitionend", cb);
1219
+ });
1220
+ prevChildren = [];
1221
+ });
1222
+ return () => {
1223
+ const rawProps = runtimeCore.toRaw(props);
1224
+ const cssTransitionProps = resolveTransitionProps(rawProps);
1225
+ let tag = rawProps.tag || runtimeCore.Fragment;
1226
+ prevChildren = [];
1227
+ if (children) {
1228
+ for (let i = 0; i < children.length; i++) {
1229
+ const child = children[i];
1230
+ if (child.el && child.el instanceof Element) {
1231
+ prevChildren.push(child);
1232
+ runtimeCore.setTransitionHooks(
1233
+ child,
1234
+ runtimeCore.resolveTransitionHooks(
1235
+ child,
1236
+ cssTransitionProps,
1237
+ state,
1238
+ instance
1239
+ )
1240
+ );
1241
+ positionMap.set(child, {
1242
+ left: child.el.offsetLeft,
1243
+ top: child.el.offsetTop
1244
+ });
1245
+ }
1246
+ }
1247
+ }
1248
+ children = slots.default ? runtimeCore.getTransitionRawChildren(slots.default()) : [];
1249
+ for (let i = 0; i < children.length; i++) {
1250
+ const child = children[i];
1251
+ if (child.key != null) {
1252
+ runtimeCore.setTransitionHooks(
1253
+ child,
1254
+ runtimeCore.resolveTransitionHooks(child, cssTransitionProps, state, instance)
1255
+ );
1256
+ }
1257
+ }
1258
+ return runtimeCore.createVNode(tag, null, children);
1259
+ };
1260
+ }
1261
+ });
1262
+ const TransitionGroup = TransitionGroupImpl;
1263
+ function callPendingCbs(c) {
1264
+ const el = c.el;
1265
+ if (el[moveCbKey]) {
1266
+ el[moveCbKey]();
1267
+ }
1268
+ if (el[enterCbKey]) {
1269
+ el[enterCbKey]();
1270
+ }
1271
+ }
1272
+ function recordPosition(c) {
1273
+ newPositionMap.set(c, {
1274
+ left: c.el.offsetLeft,
1275
+ top: c.el.offsetTop
1276
+ });
1277
+ }
1278
+ function applyTranslation(c) {
1279
+ const oldPos = positionMap.get(c);
1280
+ const newPos = newPositionMap.get(c);
1281
+ const dx = oldPos.left - newPos.left;
1282
+ const dy = oldPos.top - newPos.top;
1283
+ if (dx || dy) {
1284
+ const s = c.el.style;
1285
+ s.transform = s.webkitTransform = `translate(${dx}px,${dy}px)`;
1286
+ s.transitionDuration = "0s";
1287
+ return c;
1288
+ }
1289
+ }
1290
+ function hasCSSTransform(el, root, moveClass) {
1291
+ const clone = el.cloneNode();
1292
+ const _vtc = el[vtcKey];
1293
+ if (_vtc) {
1294
+ _vtc.forEach((cls) => {
1295
+ cls.split(/\s+/).forEach((c) => c && clone.classList.remove(c));
1296
+ });
1297
+ }
1298
+ moveClass.split(/\s+/).forEach((c) => c && clone.classList.add(c));
1299
+ clone.style.display = "none";
1300
+ const container = root.nodeType === 1 ? root : root.parentNode;
1301
+ container.appendChild(clone);
1302
+ const { hasTransform } = getTransitionInfo(clone);
1303
+ container.removeChild(clone);
1304
+ return hasTransform;
1305
+ }
1306
+
1307
+ const getModelAssigner = (vnode) => {
1308
+ const fn = vnode.props["onUpdate:modelValue"] || false;
1309
+ return shared.isArray(fn) ? (value) => shared.invokeArrayFns(fn, value) : fn;
1310
+ };
1311
+ function onCompositionStart(e) {
1312
+ e.target.composing = true;
1313
+ }
1314
+ function onCompositionEnd(e) {
1315
+ const target = e.target;
1316
+ if (target.composing) {
1317
+ target.composing = false;
1318
+ target.dispatchEvent(new Event("input"));
1319
+ }
1320
+ }
1321
+ const assignKey = Symbol("_assign");
1322
+ function castValue(value, trim, number) {
1323
+ if (trim) value = value.trim();
1324
+ if (number) value = shared.looseToNumber(value);
1325
+ return value;
1326
+ }
1327
+ const vModelText = {
1328
+ created(el, { modifiers: { lazy, trim, number } }, vnode) {
1329
+ el[assignKey] = getModelAssigner(vnode);
1330
+ const castToNumber = number || vnode.props && vnode.props.type === "number";
1331
+ addEventListener(el, lazy ? "change" : "input", (e) => {
1332
+ if (e.target.composing) return;
1333
+ el[assignKey](castValue(el.value, trim, castToNumber));
1334
+ });
1335
+ if (trim || castToNumber) {
1336
+ addEventListener(el, "change", () => {
1337
+ el.value = castValue(el.value, trim, castToNumber);
1338
+ });
1339
+ }
1340
+ if (!lazy) {
1341
+ addEventListener(el, "compositionstart", onCompositionStart);
1342
+ addEventListener(el, "compositionend", onCompositionEnd);
1343
+ addEventListener(el, "change", onCompositionEnd);
1344
+ }
1345
+ },
1346
+ // set value on mounted so it's after min/max for type="range"
1347
+ mounted(el, { value }) {
1348
+ el.value = value == null ? "" : value;
1349
+ },
1350
+ beforeUpdate(el, { value, oldValue, modifiers: { lazy, trim, number } }, vnode) {
1351
+ el[assignKey] = getModelAssigner(vnode);
1352
+ if (el.composing) return;
1353
+ const elValue = (number || el.type === "number") && !/^0\d/.test(el.value) ? shared.looseToNumber(el.value) : el.value;
1354
+ const newValue = value == null ? "" : value;
1355
+ if (elValue === newValue) {
1356
+ return;
1357
+ }
1358
+ if (document.activeElement === el && el.type !== "range") {
1359
+ if (lazy && value === oldValue) {
1360
+ return;
1361
+ }
1362
+ if (trim && el.value.trim() === newValue) {
1363
+ return;
1364
+ }
1365
+ }
1366
+ el.value = newValue;
1367
+ }
1368
+ };
1369
+ const vModelCheckbox = {
1370
+ // #4096 array checkboxes need to be deep traversed
1371
+ deep: true,
1372
+ created(el, _, vnode) {
1373
+ el[assignKey] = getModelAssigner(vnode);
1374
+ addEventListener(el, "change", () => {
1375
+ const modelValue = el._modelValue;
1376
+ const elementValue = getValue(el);
1377
+ const checked = el.checked;
1378
+ const assign = el[assignKey];
1379
+ if (shared.isArray(modelValue)) {
1380
+ const index = shared.looseIndexOf(modelValue, elementValue);
1381
+ const found = index !== -1;
1382
+ if (checked && !found) {
1383
+ assign(modelValue.concat(elementValue));
1384
+ } else if (!checked && found) {
1385
+ const filtered = [...modelValue];
1386
+ filtered.splice(index, 1);
1387
+ assign(filtered);
1388
+ }
1389
+ } else if (shared.isSet(modelValue)) {
1390
+ const cloned = new Set(modelValue);
1391
+ if (checked) {
1392
+ cloned.add(elementValue);
1393
+ } else {
1394
+ cloned.delete(elementValue);
1395
+ }
1396
+ assign(cloned);
1397
+ } else {
1398
+ assign(getCheckboxValue(el, checked));
1399
+ }
1400
+ });
1401
+ },
1402
+ // set initial checked on mount to wait for true-value/false-value
1403
+ mounted: setChecked,
1404
+ beforeUpdate(el, binding, vnode) {
1405
+ el[assignKey] = getModelAssigner(vnode);
1406
+ setChecked(el, binding, vnode);
1407
+ }
1408
+ };
1409
+ function setChecked(el, { value, oldValue }, vnode) {
1410
+ el._modelValue = value;
1411
+ let checked;
1412
+ if (shared.isArray(value)) {
1413
+ checked = shared.looseIndexOf(value, vnode.props.value) > -1;
1414
+ } else if (shared.isSet(value)) {
1415
+ checked = value.has(vnode.props.value);
1416
+ } else {
1417
+ if (value === oldValue) return;
1418
+ checked = shared.looseEqual(value, getCheckboxValue(el, true));
1419
+ }
1420
+ if (el.checked !== checked) {
1421
+ el.checked = checked;
1422
+ }
1423
+ }
1424
+ const vModelRadio = {
1425
+ created(el, { value }, vnode) {
1426
+ el.checked = shared.looseEqual(value, vnode.props.value);
1427
+ el[assignKey] = getModelAssigner(vnode);
1428
+ addEventListener(el, "change", () => {
1429
+ el[assignKey](getValue(el));
1430
+ });
1431
+ },
1432
+ beforeUpdate(el, { value, oldValue }, vnode) {
1433
+ el[assignKey] = getModelAssigner(vnode);
1434
+ if (value !== oldValue) {
1435
+ el.checked = shared.looseEqual(value, vnode.props.value);
1436
+ }
1437
+ }
1438
+ };
1439
+ const vModelSelect = {
1440
+ // <select multiple> value need to be deep traversed
1441
+ deep: true,
1442
+ created(el, { value, modifiers: { number } }, vnode) {
1443
+ const isSetModel = shared.isSet(value);
1444
+ addEventListener(el, "change", () => {
1445
+ const selectedVal = Array.prototype.filter.call(el.options, (o) => o.selected).map(
1446
+ (o) => number ? shared.looseToNumber(getValue(o)) : getValue(o)
1447
+ );
1448
+ el[assignKey](
1449
+ el.multiple ? isSetModel ? new Set(selectedVal) : selectedVal : selectedVal[0]
1450
+ );
1451
+ el._assigning = true;
1452
+ runtimeCore.nextTick(() => {
1453
+ el._assigning = false;
1454
+ });
1455
+ });
1456
+ el[assignKey] = getModelAssigner(vnode);
1457
+ },
1458
+ // set value in mounted & updated because <select> relies on its children
1459
+ // <option>s.
1460
+ mounted(el, { value }) {
1461
+ setSelected(el, value);
1462
+ },
1463
+ beforeUpdate(el, _binding, vnode) {
1464
+ el[assignKey] = getModelAssigner(vnode);
1465
+ },
1466
+ updated(el, { value }) {
1467
+ if (!el._assigning) {
1468
+ setSelected(el, value);
1469
+ }
1470
+ }
1471
+ };
1472
+ function setSelected(el, value) {
1473
+ const isMultiple = el.multiple;
1474
+ const isArrayValue = shared.isArray(value);
1475
+ if (isMultiple && !isArrayValue && !shared.isSet(value)) {
1476
+ return;
1477
+ }
1478
+ for (let i = 0, l = el.options.length; i < l; i++) {
1479
+ const option = el.options[i];
1480
+ const optionValue = getValue(option);
1481
+ if (isMultiple) {
1482
+ if (isArrayValue) {
1483
+ const optionType = typeof optionValue;
1484
+ if (optionType === "string" || optionType === "number") {
1485
+ option.selected = value.some((v) => String(v) === String(optionValue));
1486
+ } else {
1487
+ option.selected = shared.looseIndexOf(value, optionValue) > -1;
1488
+ }
1489
+ } else {
1490
+ option.selected = value.has(optionValue);
1491
+ }
1492
+ } else if (shared.looseEqual(getValue(option), value)) {
1493
+ if (el.selectedIndex !== i) el.selectedIndex = i;
1494
+ return;
1495
+ }
1496
+ }
1497
+ if (!isMultiple && el.selectedIndex !== -1) {
1498
+ el.selectedIndex = -1;
1499
+ }
1500
+ }
1501
+ function getValue(el) {
1502
+ return "_value" in el ? el._value : el.value;
1503
+ }
1504
+ function getCheckboxValue(el, checked) {
1505
+ const key = checked ? "_trueValue" : "_falseValue";
1506
+ return key in el ? el[key] : checked;
1507
+ }
1508
+ const vModelDynamic = {
1509
+ created(el, binding, vnode) {
1510
+ callModelHook(el, binding, vnode, null, "created");
1511
+ },
1512
+ mounted(el, binding, vnode) {
1513
+ callModelHook(el, binding, vnode, null, "mounted");
1514
+ },
1515
+ beforeUpdate(el, binding, vnode, prevVNode) {
1516
+ callModelHook(el, binding, vnode, prevVNode, "beforeUpdate");
1517
+ },
1518
+ updated(el, binding, vnode, prevVNode) {
1519
+ callModelHook(el, binding, vnode, prevVNode, "updated");
1520
+ }
1521
+ };
1522
+ function resolveDynamicModel(tagName, type) {
1523
+ switch (tagName) {
1524
+ case "SELECT":
1525
+ return vModelSelect;
1526
+ case "TEXTAREA":
1527
+ return vModelText;
1528
+ default:
1529
+ switch (type) {
1530
+ case "checkbox":
1531
+ return vModelCheckbox;
1532
+ case "radio":
1533
+ return vModelRadio;
1534
+ default:
1535
+ return vModelText;
1536
+ }
1537
+ }
1538
+ }
1539
+ function callModelHook(el, binding, vnode, prevVNode, hook) {
1540
+ const modelToUse = resolveDynamicModel(
1541
+ el.tagName,
1542
+ vnode.props && vnode.props.type
1543
+ );
1544
+ const fn = modelToUse[hook];
1545
+ fn && fn(el, binding, vnode, prevVNode);
1546
+ }
1547
+ function initVModelForSSR() {
1548
+ vModelText.getSSRProps = ({ value }) => ({ value });
1549
+ vModelRadio.getSSRProps = ({ value }, vnode) => {
1550
+ if (vnode.props && shared.looseEqual(vnode.props.value, value)) {
1551
+ return { checked: true };
1552
+ }
1553
+ };
1554
+ vModelCheckbox.getSSRProps = ({ value }, vnode) => {
1555
+ if (shared.isArray(value)) {
1556
+ if (vnode.props && shared.looseIndexOf(value, vnode.props.value) > -1) {
1557
+ return { checked: true };
1558
+ }
1559
+ } else if (shared.isSet(value)) {
1560
+ if (vnode.props && value.has(vnode.props.value)) {
1561
+ return { checked: true };
1562
+ }
1563
+ } else if (value) {
1564
+ return { checked: true };
1565
+ }
1566
+ };
1567
+ vModelDynamic.getSSRProps = (binding, vnode) => {
1568
+ if (typeof vnode.type !== "string") {
1569
+ return;
1570
+ }
1571
+ const modelToUse = resolveDynamicModel(
1572
+ // resolveDynamicModel expects an uppercase tag name, but vnode.type is lowercase
1573
+ vnode.type.toUpperCase(),
1574
+ vnode.props && vnode.props.type
1575
+ );
1576
+ if (modelToUse.getSSRProps) {
1577
+ return modelToUse.getSSRProps(binding, vnode);
1578
+ }
1579
+ };
1580
+ }
1581
+
1582
+ const systemModifiers = ["ctrl", "shift", "alt", "meta"];
1583
+ const modifierGuards = {
1584
+ stop: (e) => e.stopPropagation(),
1585
+ prevent: (e) => e.preventDefault(),
1586
+ self: (e) => e.target !== e.currentTarget,
1587
+ ctrl: (e) => !e.ctrlKey,
1588
+ shift: (e) => !e.shiftKey,
1589
+ alt: (e) => !e.altKey,
1590
+ meta: (e) => !e.metaKey,
1591
+ left: (e) => "button" in e && e.button !== 0,
1592
+ middle: (e) => "button" in e && e.button !== 1,
1593
+ right: (e) => "button" in e && e.button !== 2,
1594
+ exact: (e, modifiers) => systemModifiers.some((m) => e[`${m}Key`] && !modifiers.includes(m))
1595
+ };
1596
+ const withModifiers = (fn, modifiers) => {
1597
+ const cache = fn._withMods || (fn._withMods = {});
1598
+ const cacheKey = modifiers.join(".");
1599
+ return cache[cacheKey] || (cache[cacheKey] = ((event, ...args) => {
1600
+ for (let i = 0; i < modifiers.length; i++) {
1601
+ const guard = modifierGuards[modifiers[i]];
1602
+ if (guard && guard(event, modifiers)) return;
1603
+ }
1604
+ return fn(event, ...args);
1605
+ }));
1606
+ };
1607
+ const keyNames = {
1608
+ esc: "escape",
1609
+ space: " ",
1610
+ up: "arrow-up",
1611
+ left: "arrow-left",
1612
+ right: "arrow-right",
1613
+ down: "arrow-down",
1614
+ delete: "backspace"
1615
+ };
1616
+ const withKeys = (fn, modifiers) => {
1617
+ const cache = fn._withKeys || (fn._withKeys = {});
1618
+ const cacheKey = modifiers.join(".");
1619
+ return cache[cacheKey] || (cache[cacheKey] = ((event) => {
1620
+ if (!("key" in event)) {
1621
+ return;
1622
+ }
1623
+ const eventKey = shared.hyphenate(event.key);
1624
+ if (modifiers.some(
1625
+ (k) => k === eventKey || keyNames[k] === eventKey
1626
+ )) {
1627
+ return fn(event);
1628
+ }
1629
+ }));
1630
+ };
1631
+
1632
+ const rendererOptions = /* @__PURE__ */ shared.extend({ patchProp }, nodeOps);
1633
+ let renderer;
1634
+ let enabledHydration = false;
1635
+ function ensureRenderer() {
1636
+ return renderer || (renderer = runtimeCore.createRenderer(rendererOptions));
1637
+ }
1638
+ function ensureHydrationRenderer() {
1639
+ renderer = enabledHydration ? renderer : runtimeCore.createHydrationRenderer(rendererOptions);
1640
+ enabledHydration = true;
1641
+ return renderer;
1642
+ }
1643
+ const render = ((...args) => {
1644
+ ensureRenderer().render(...args);
1645
+ });
1646
+ const hydrate = ((...args) => {
1647
+ ensureHydrationRenderer().hydrate(...args);
1648
+ });
1649
+ const createApp = ((...args) => {
1650
+ const app = ensureRenderer().createApp(...args);
1651
+ const { mount } = app;
1652
+ app.mount = (containerOrSelector) => {
1653
+ const container = normalizeContainer(containerOrSelector);
1654
+ if (!container) return;
1655
+ const component = app._component;
1656
+ if (!shared.isFunction(component) && !component.render && !component.template) {
1657
+ component.template = container.innerHTML;
1658
+ }
1659
+ if (container.nodeType === 1) {
1660
+ container.textContent = "";
1661
+ }
1662
+ const proxy = mount(container, false, resolveRootNamespace(container));
1663
+ if (container instanceof Element) {
1664
+ container.removeAttribute("v-cloak");
1665
+ container.setAttribute("data-v-app", "");
1666
+ }
1667
+ return proxy;
1668
+ };
1669
+ return app;
1670
+ });
1671
+ const createSSRApp = ((...args) => {
1672
+ const app = ensureHydrationRenderer().createApp(...args);
1673
+ const { mount } = app;
1674
+ app.mount = (containerOrSelector) => {
1675
+ const container = normalizeContainer(containerOrSelector);
1676
+ if (container) {
1677
+ return mount(container, true, resolveRootNamespace(container));
1678
+ }
1679
+ };
1680
+ return app;
1681
+ });
1682
+ function resolveRootNamespace(container) {
1683
+ if (container instanceof SVGElement) {
1684
+ return "svg";
1685
+ }
1686
+ if (typeof MathMLElement === "function" && container instanceof MathMLElement) {
1687
+ return "mathml";
1688
+ }
1689
+ }
1690
+ function normalizeContainer(container) {
1691
+ if (shared.isString(container)) {
1692
+ const res = document.querySelector(container);
1693
+ return res;
1694
+ }
1695
+ return container;
1696
+ }
1697
+ let ssrDirectiveInitialized = false;
1698
+ const initDirectivesForSSR = () => {
1699
+ if (!ssrDirectiveInitialized) {
1700
+ ssrDirectiveInitialized = true;
1701
+ initVModelForSSR();
1702
+ initVShowForSSR();
1703
+ }
1704
+ } ;
1705
+
1706
+ exports.Transition = Transition;
1707
+ exports.TransitionGroup = TransitionGroup;
1708
+ exports.VueElement = VueElement;
1709
+ exports.createApp = createApp;
1710
+ exports.createSSRApp = createSSRApp;
1711
+ exports.defineCustomElement = defineCustomElement;
1712
+ exports.defineSSRCustomElement = defineSSRCustomElement;
1713
+ exports.hydrate = hydrate;
1714
+ exports.initDirectivesForSSR = initDirectivesForSSR;
1715
+ exports.nodeOps = nodeOps;
1716
+ exports.patchProp = patchProp;
1717
+ exports.render = render;
1718
+ exports.useCssModule = useCssModule;
1719
+ exports.useCssVars = useCssVars;
1720
+ exports.useHost = useHost;
1721
+ exports.useShadowRoot = useShadowRoot;
1722
+ exports.vModelCheckbox = vModelCheckbox;
1723
+ exports.vModelDynamic = vModelDynamic;
1724
+ exports.vModelRadio = vModelRadio;
1725
+ exports.vModelSelect = vModelSelect;
1726
+ exports.vModelText = vModelText;
1727
+ exports.vShow = vShow;
1728
+ exports.withKeys = withKeys;
1729
+ exports.withModifiers = withModifiers;
1730
+ Object.keys(runtimeCore).forEach(function (k) {
1731
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = runtimeCore[k];
1732
+ });