nuxt-ignis 0.5.1 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.data/content/contents.sqlite +0 -0
- package/.env +3 -2
- package/.nuxt/app.config.mjs +25 -1
- package/.nuxt/components.d.ts +480 -480
- package/.nuxt/content/components.ts +185 -208
- package/.nuxt/dev/index.mjs +660 -588
- package/.nuxt/dev/index.mjs.map +1 -1
- package/.nuxt/dist/server/client.manifest.mjs +1 -1
- package/.nuxt/dist/server/client.precomputed.mjs +1 -1
- package/.nuxt/eslint-typegen.d.ts +22 -1
- package/.nuxt/eslint.config.d.mts +3 -3
- package/.nuxt/eslint.config.mjs +10 -10
- package/.nuxt/image/providers.d.ts +52 -0
- package/.nuxt/imports.d.ts +79 -68
- package/.nuxt/manifest/latest.json +1 -1
- package/.nuxt/manifest/meta/dev.json +1 -1
- package/.nuxt/mdc-highlighter.mjs +4 -3
- package/.nuxt/mdc-image-component.mjs +1 -1
- package/.nuxt/mdc-imports.mjs +2 -2
- package/.nuxt/module/nuxt-robots.d.ts +13 -12
- package/.nuxt/module/nuxt-seo-utils.d.ts +10 -10
- package/.nuxt/module/nuxt-site-config.d.ts +8 -8
- package/.nuxt/module/nuxt-sitemap.d.ts +18 -18
- package/.nuxt/nitro.json +5 -5
- package/.nuxt/nuxt.d.ts +11 -12
- package/.nuxt/nuxt.json +2 -2
- package/.nuxt/nuxt.node.d.ts +12 -11
- package/.nuxt/nuxt.shared.d.ts +1 -0
- package/.nuxt/tsconfig.app.json +234 -241
- package/.nuxt/tsconfig.json +237 -244
- package/.nuxt/tsconfig.node.json +133 -132
- package/.nuxt/tsconfig.server.json +154 -162
- package/.nuxt/tsconfig.shared.json +69 -75
- package/.nuxt/types/app.config.d.ts +25 -1
- package/.nuxt/types/build.d.ts +1 -2
- package/.nuxt/types/components.d.ts +480 -480
- package/.nuxt/types/i18n-plugin.d.ts +2 -2
- package/.nuxt/types/imports.d.ts +395 -362
- package/.nuxt/types/modules.d.ts +24 -46
- package/.nuxt/types/nitro-imports.d.ts +390 -390
- package/.nuxt/types/nitro-nuxt.d.ts +2 -1
- package/.nuxt/types/nitro-routes.d.ts +25 -25
- package/.nuxt/types/plugins.d.ts +42 -42
- package/.nuxt/types/runtime-config.d.ts +56 -2
- package/.nuxt/types/ui.d.ts +3 -2
- package/.nuxt/ui/auth-form.ts +20 -0
- package/.nuxt/ui/badge.ts +1 -1
- package/.nuxt/ui/banner.ts +108 -0
- package/.nuxt/ui/blog-post.ts +142 -0
- package/.nuxt/ui/blog-posts.ts +9 -0
- package/.nuxt/ui/button.ts +1 -1
- package/.nuxt/ui/calendar.ts +221 -9
- package/.nuxt/ui/changelog-version.ts +41 -0
- package/.nuxt/ui/changelog-versions.ts +8 -0
- package/.nuxt/ui/chat-message.ts +136 -0
- package/.nuxt/ui/chat-messages.ts +14 -0
- package/.nuxt/ui/chat-palette.ts +8 -0
- package/.nuxt/ui/chat-prompt-submit.ts +5 -0
- package/.nuxt/ui/chat-prompt.ts +35 -0
- package/.nuxt/ui/checkbox-group.ts +4 -1
- package/.nuxt/ui/checkbox.ts +5 -4
- package/.nuxt/ui/color-picker.ts +2 -2
- package/.nuxt/ui/command-palette.ts +12 -2
- package/.nuxt/ui/content/content-navigation.ts +368 -0
- package/.nuxt/ui/content/content-search-button.ts +15 -0
- package/.nuxt/ui/content/content-search.ts +13 -0
- package/.nuxt/ui/content/content-surround.ts +34 -0
- package/.nuxt/ui/content/content-toc.ts +155 -0
- package/.nuxt/ui/context-menu.ts +3 -1
- package/.nuxt/ui/dashboard-group.ts +3 -0
- package/.nuxt/ui/dashboard-navbar.ts +21 -0
- package/.nuxt/ui/dashboard-panel.ts +17 -0
- package/.nuxt/ui/dashboard-resize-handle.ts +3 -0
- package/.nuxt/ui/dashboard-search-button.ts +15 -0
- package/.nuxt/ui/dashboard-search.ts +13 -0
- package/.nuxt/ui/dashboard-sidebar-collapse.ts +9 -0
- package/.nuxt/ui/dashboard-sidebar-toggle.ts +9 -0
- package/.nuxt/ui/dashboard-sidebar.ts +37 -0
- package/.nuxt/ui/dashboard-toolbar.ts +7 -0
- package/.nuxt/ui/dropdown-menu.ts +3 -1
- package/.nuxt/ui/empty.ts +83 -0
- package/.nuxt/ui/error.ts +9 -0
- package/.nuxt/ui/footer-columns.ts +28 -0
- package/.nuxt/ui/footer.ts +11 -0
- package/.nuxt/ui/header.ts +25 -0
- package/.nuxt/ui/index.ts +57 -2
- package/.nuxt/ui/input-date.ts +343 -0
- package/.nuxt/ui/input-menu.ts +13 -3
- package/.nuxt/ui/input-number.ts +26 -15
- package/.nuxt/ui/input-tags.ts +1 -1
- package/.nuxt/ui/input-time.ts +342 -0
- package/.nuxt/ui/input.ts +1 -1
- package/.nuxt/ui/kbd.ts +1 -1
- package/.nuxt/ui/main.ts +3 -0
- package/.nuxt/ui/marquee.ts +66 -0
- package/.nuxt/ui/modal.ts +36 -5
- package/.nuxt/ui/navigation-menu.ts +2 -0
- package/.nuxt/ui/page-anchors.ts +30 -0
- package/.nuxt/ui/page-aside.ts +10 -0
- package/.nuxt/ui/page-body.ts +3 -0
- package/.nuxt/ui/page-card.ts +279 -0
- package/.nuxt/ui/page-columns.ts +3 -0
- package/.nuxt/ui/page-cta.ts +70 -0
- package/.nuxt/ui/page-feature.ts +26 -0
- package/.nuxt/ui/page-grid.ts +3 -0
- package/.nuxt/ui/page-header.ts +18 -0
- package/.nuxt/ui/page-hero.ts +44 -0
- package/.nuxt/ui/page-links.ts +25 -0
- package/.nuxt/ui/page-list.ts +8 -0
- package/.nuxt/ui/page-logos.ts +15 -0
- package/.nuxt/ui/page-section.ts +84 -0
- package/.nuxt/ui/page.ts +32 -0
- package/.nuxt/ui/pricing-plan.ts +101 -0
- package/.nuxt/ui/pricing-plans.ts +22 -0
- package/.nuxt/ui/pricing-table.ts +51 -0
- package/.nuxt/ui/prose/a.ts +6 -0
- package/.nuxt/ui/prose/accordion-item.ts +3 -0
- package/.nuxt/ui/prose/accordion.ts +6 -0
- package/.nuxt/ui/prose/badge.ts +3 -0
- package/.nuxt/ui/prose/blockquote.ts +3 -0
- package/.nuxt/ui/prose/callout.ts +129 -0
- package/.nuxt/ui/prose/card-group.ts +3 -0
- package/.nuxt/ui/prose/card.ts +119 -0
- package/.nuxt/ui/prose/code-collapse.ts +19 -0
- package/.nuxt/ui/prose/code-group.ts +13 -0
- package/.nuxt/ui/prose/code-icon.ts +66 -0
- package/.nuxt/ui/prose/code-preview.ts +14 -0
- package/.nuxt/ui/prose/code-tree.ts +28 -0
- package/.nuxt/ui/prose/code.ts +27 -0
- package/.nuxt/ui/prose/collapsible.ts +12 -0
- package/.nuxt/ui/prose/em.ts +3 -0
- package/.nuxt/ui/prose/field-group.ts +3 -0
- package/.nuxt/ui/prose/field.ts +11 -0
- package/.nuxt/ui/prose/h1.ts +6 -0
- package/.nuxt/ui/prose/h2.ts +14 -0
- package/.nuxt/ui/prose/h3.ts +14 -0
- package/.nuxt/ui/prose/h4.ts +6 -0
- package/.nuxt/ui/prose/hr.ts +3 -0
- package/.nuxt/ui/prose/icon.ts +3 -0
- package/.nuxt/ui/prose/img.ts +23 -0
- package/.nuxt/ui/prose/index.ts +41 -0
- package/.nuxt/ui/prose/kbd.ts +3 -0
- package/.nuxt/ui/prose/li.ts +3 -0
- package/.nuxt/ui/prose/ol.ts +3 -0
- package/.nuxt/ui/prose/p.ts +3 -0
- package/.nuxt/ui/prose/pre.ts +17 -0
- package/.nuxt/ui/prose/steps.ts +19 -0
- package/.nuxt/ui/prose/strong.ts +3 -0
- package/.nuxt/ui/prose/table.ts +6 -0
- package/.nuxt/ui/prose/tabs-item.ts +3 -0
- package/.nuxt/ui/prose/tabs.ts +5 -0
- package/.nuxt/ui/prose/tbody.ts +3 -0
- package/.nuxt/ui/prose/td.ts +3 -0
- package/.nuxt/ui/prose/th.ts +3 -0
- package/.nuxt/ui/prose/thead.ts +3 -0
- package/.nuxt/ui/prose/tr.ts +3 -0
- package/.nuxt/ui/prose/ul.ts +3 -0
- package/.nuxt/ui/radio-group.ts +5 -3
- package/.nuxt/ui/select-menu.ts +13 -3
- package/.nuxt/ui/select.ts +5 -3
- package/.nuxt/ui/switch.ts +4 -3
- package/.nuxt/ui/table.ts +8 -2
- package/.nuxt/ui/textarea.ts +1 -1
- package/.nuxt/ui/tree.ts +24 -10
- package/.nuxt/ui/user.ts +101 -0
- package/.nuxt/ui-image-component.ts +1 -1
- package/.nuxt/ui.css +6 -0
- package/.output/nitro.json +3 -3
- package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-4kZc4IwOXqryLeYzsaTvEKd54SPfeeGKPyDAZei18kw.woff +0 -0
- package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-RvZUU2X45U7WIDI083h9MozPZMSPdvOCkgsORsWvPOw.woff +0 -0
- package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-mSqNnHyoMtDKNu3z_xDpL0hWMcL0lhabY3Oa0dnS5HM.woff +0 -0
- package/.output/public/_ignis-config.json +7 -1
- package/.output/public/_nuxt/-OUwOzoZ.js +1 -0
- package/.output/public/_nuxt/-z2jk33i.js +1 -0
- package/.output/public/_nuxt/3L5yAyVe.js +1 -0
- package/.output/public/_nuxt/8nlalpbc.js +1 -0
- package/.output/public/_nuxt/As5Zy5cG.js +1 -0
- package/.output/public/_nuxt/B-TDuiGE.js +1 -0
- package/.output/public/_nuxt/B04mZI32.js +1 -0
- package/.output/public/_nuxt/B3zmx-p1.js +1 -0
- package/.output/public/_nuxt/B4eQjLRH.js +1 -0
- package/.output/public/_nuxt/B6WOJ0Em.js +1 -0
- package/.output/public/_nuxt/BB2ULiwb.js +1 -0
- package/.output/public/_nuxt/BEvX3xjB.js +1 -0
- package/.output/public/_nuxt/BFcGh2xo.js +1 -0
- package/.output/public/_nuxt/BFdGKCUO.js +1 -0
- package/.output/public/_nuxt/BG-5V6Ik.js +1 -0
- package/.output/public/_nuxt/BeRTSVEP.js +1 -0
- package/.output/public/_nuxt/Bh-DZrTV.js +1 -0
- package/.output/public/_nuxt/BvFz8iHh.js +1 -0
- package/.output/public/_nuxt/BwUgVogm.js +1 -0
- package/.output/public/_nuxt/C1fHW8CN.js +1 -0
- package/.output/public/_nuxt/C1getMtX.js +49 -0
- package/.output/public/_nuxt/C4nGy0Yj.js +1 -0
- package/.output/public/_nuxt/CExm4AMI.js +1 -0
- package/.output/public/_nuxt/CHcd0nHy.js +1 -0
- package/.output/public/_nuxt/CTbEZMxa.js +1 -0
- package/.output/public/_nuxt/CZ5QNOH8.js +1 -0
- package/.output/public/_nuxt/Cna7T5zY.js +1 -0
- package/.output/public/_nuxt/CnghUxEk.js +1 -0
- package/.output/public/_nuxt/CvJSUdvI.js +1 -0
- package/.output/public/_nuxt/CwgBHvd_.js +1 -0
- package/.output/public/_nuxt/D1nIr4-J.js +1 -0
- package/.output/public/_nuxt/D2atCez-.js +1 -0
- package/.output/public/_nuxt/D3WX5Hmk.js +1 -0
- package/.output/public/_nuxt/D5duQQkG.js +1 -0
- package/.output/public/_nuxt/D9RSHNPZ.js +1 -0
- package/.output/public/_nuxt/DB3c8m3K.js +1 -0
- package/.output/public/_nuxt/DFP1sKjc.js +1 -0
- package/.output/public/_nuxt/DI5_qtj_.js +1 -0
- package/.output/public/_nuxt/DKCDh1Eq.js +1 -0
- package/.output/public/_nuxt/DN3AlbuD.js +1 -0
- package/.output/public/_nuxt/DPDbQA17.js +1 -0
- package/.output/public/_nuxt/DSErOj49.js +1 -0
- package/.output/public/_nuxt/DXrSmKSt.js +1 -0
- package/.output/public/_nuxt/DbZ1CQfQ.js +1 -0
- package/.output/public/_nuxt/DgCebJqk.js +1 -0
- package/.output/public/_nuxt/DhhwMwQM.js +1 -0
- package/.output/public/_nuxt/Djhwz52y.js +1 -0
- package/.output/public/_nuxt/DnE1KSqg.js +1 -0
- package/.output/public/_nuxt/DncFEy6i.js +1 -0
- package/.output/public/_nuxt/DpZCZGQO.js +1 -0
- package/.output/public/_nuxt/Dx95U2T3.js +1 -0
- package/.output/public/_nuxt/FUdAqSn9.js +9 -0
- package/.output/public/_nuxt/GvxWNFgu.js +1 -0
- package/.output/public/_nuxt/HgKyGH3C.js +1 -0
- package/.output/public/_nuxt/Hxhp1Hz0.js +1 -0
- package/.output/public/_nuxt/LpFrvoF7.js +1 -0
- package/.output/public/_nuxt/Pre.HegCCrfd.css +2 -0
- package/.output/public/_nuxt/Sz6HDPqh.js +1 -0
- package/.output/public/_nuxt/U1_7ggcx.js +1 -0
- package/.output/public/_nuxt/X8ZdEYzW.js +1 -0
- package/.output/public/_nuxt/ahq42_9S.js +1 -0
- package/.output/public/_nuxt/b0AtYQ73.js +1 -0
- package/.output/public/_nuxt/builds/latest.json +1 -1
- package/.output/public/_nuxt/builds/meta/78080714-55fa-441d-9998-a6fb0c7ee057.json +1 -0
- package/.output/public/_nuxt/efC_w6sP.js +1 -0
- package/.output/public/_nuxt/entry.9ygoOcLs.css +1 -0
- package/.output/public/_nuxt/error-404.0Tbhbu-E.css +1 -0
- package/.output/public/_nuxt/error-500.ClQbyW3Z.css +1 -0
- package/.output/public/_nuxt/ulE7jr93.js +1 -0
- package/.output/public/_nuxt/xHyrElgL.js +1 -0
- package/.output/server/chunks/_/error-500.mjs.map +1 -1
- package/.output/server/chunks/_/i18n.config.mjs.map +1 -1
- package/.output/server/chunks/_/nitro.mjs +1221 -1219
- package/.output/server/chunks/_/nitro.mjs.map +1 -1
- package/.output/server/chunks/build/client.precomputed.mjs +1 -1
- package/.output/server/chunks/build/client.precomputed.mjs.map +1 -1
- package/.output/server/chunks/build/database.compressed.mjs.map +1 -1
- package/.output/server/chunks/raw/headers.mjs.map +1 -1
- package/.output/server/chunks/routes/api/neonTest.mjs +2 -2
- package/.output/server/chunks/routes/api/neonTest.mjs.map +1 -1
- package/.output/server/chunks/routes/renderer.mjs +27 -2
- package/.output/server/chunks/routes/renderer.mjs.map +1 -1
- package/.output/server/chunks/virtual/_virtual_spa-template.mjs.map +1 -1
- package/.output/server/chunks/virtual/child-sources.mjs.map +1 -1
- package/.output/server/chunks/virtual/global-sources.mjs +0 -8
- package/.output/server/chunks/virtual/global-sources.mjs.map +1 -1
- package/.output/server/index.mjs +1 -1
- package/.output/server/index.mjs.map +1 -1
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/convertor/create.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/data-patch.js +6 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/data.js +95 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/SyntaxError.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/generate.js +131 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/index.js +4 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/parse.js +584 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/tokenizer.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/walk.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/create.js +98 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/sourceMap.js +92 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/token-before.js +182 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/index.js +30 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/Lexer.js +453 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/error.js +123 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-an-plus-b.js +238 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-const.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-urange.js +151 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic.js +598 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/match-graph.js +456 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/match.js +630 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/prepare-tokens.js +50 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/search.js +61 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/structure.js +164 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/trace.js +66 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/SyntaxError.js +65 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/create.js +346 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/sequence.js +43 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/font-face.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/import.js +39 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/index.js +13 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/media.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/page.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/supports.js +80 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/lexer.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/mix.js +138 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/parser.js +30 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/walker.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/create.js +53 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/function/expression.js +7 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/function/var.js +39 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/index.js +10 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AnPlusB.js +292 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Atrule.js +100 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AtrulePrelude.js +47 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AttributeSelector.js +147 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Block.js +89 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Brackets.js +35 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/CDC.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/CDO.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/ClassSelector.js +24 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Combinator.js +54 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Comment.js +33 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Declaration.js +165 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/DeclarationList.js +49 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Dimension.js +23 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Function.js +41 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Hash.js +23 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/IdSelector.js +26 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Identifier.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaFeature.js +77 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaQuery.js +60 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaQueryList.js +34 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Nth.js +47 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Number.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Operator.js +21 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Parentheses.js +34 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Percentage.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/PseudoClassSelector.js +63 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/PseudoElementSelector.js +64 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Ratio.js +59 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Raw.js +41 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Rule.js +51 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Selector.js +32 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/SelectorList.js +35 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/String.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/StyleSheet.js +82 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/TypeSelector.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/UnicodeRange.js +156 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Url.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Value.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/WhiteSpace.js +27 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/index-parse.js +40 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/index.js +40 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/pseudo/index.js +48 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/atrulePrelude.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/default.js +85 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/index.js +3 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/selector.js +90 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/value.js +25 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/OffsetToLocation.js +87 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/TokenStream.js +272 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/adopt-buffer.js +9 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/char-code-definitions.js +207 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/index.js +513 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/names.js +27 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/types.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/utils.js +254 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/List.js +469 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/clone.js +21 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/create-custom-error.js +14 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/ident.js +101 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/names.js +106 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/string.js +99 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/url.js +108 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/version.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/walker/create.js +287 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/convertor/create.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/data-patch.js +6 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/data.js +118 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/SyntaxError.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/generate.js +135 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/index.js +4 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/parse.js +552 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/scanner.js +109 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/walk.js +53 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/create.js +97 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/sourceMap.js +92 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/token-before.js +182 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/index.js +30 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/Lexer.js +511 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/error.js +123 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-an-plus-b.js +238 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-const.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-urange.js +151 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic.js +622 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/match-graph.js +527 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/match.js +630 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/prepare-tokens.js +50 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/search.js +61 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/structure.js +169 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/trace.js +66 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/units.js +27 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/SyntaxError.js +70 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/create.js +350 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/sequence.js +43 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/container.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/font-face.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/import.js +104 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/index.js +23 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/layer.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/media.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/nest.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/page.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/scope.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/starting-style.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/supports.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/lexer.js +10 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/mix.js +123 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/parser.js +45 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/walker.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/create.js +55 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/function/expression.js +7 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/function/var.js +39 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/index.js +10 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AnPlusB.js +292 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Atrule.js +100 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AtrulePrelude.js +47 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AttributeSelector.js +147 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Block.js +95 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Brackets.js +35 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/CDC.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/CDO.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/ClassSelector.js +24 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Combinator.js +54 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Comment.js +33 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Condition.js +123 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Declaration.js +165 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/DeclarationList.js +62 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Dimension.js +23 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Feature.js +103 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/FeatureFunction.js +63 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/FeatureRange.js +133 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Function.js +41 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/GeneralEnclosed.js +66 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Hash.js +23 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/IdSelector.js +26 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Identifier.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Layer.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/LayerList.js +36 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/MediaQuery.js +102 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/MediaQueryList.js +34 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/NestingSelector.js +22 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Nth.js +47 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Number.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Operator.js +21 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Parentheses.js +34 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Percentage.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/PseudoClassSelector.js +65 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/PseudoElementSelector.js +66 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Ratio.js +68 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Raw.js +41 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Rule.js +51 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Scope.js +66 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Selector.js +31 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/SelectorList.js +35 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/String.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/StyleSheet.js +82 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/SupportsDeclaration.js +34 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/TypeSelector.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/UnicodeRange.js +156 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Url.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Value.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/WhiteSpace.js +27 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/index-parse.js +49 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/index.js +49 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/pseudo/index.js +56 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/pseudo/lang.js +33 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/atrulePrelude.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/default.js +85 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/index.js +3 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/selector.js +94 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/value.js +25 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/OffsetToLocation.js +87 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/TokenStream.js +316 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/adopt-buffer.js +9 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/char-code-definitions.js +212 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/index.js +513 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/names.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/types.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/utils.js +254 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/List.js +469 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/clone.js +21 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/create-custom-error.js +14 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/ident.js +101 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/names.js +106 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/string.js +99 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/url.js +108 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/version.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/walker/create.js +287 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/package.json +125 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/decode.js +496 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/decode_codepoint.js +71 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/encode.js +69 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/escape.js +116 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/decode-data-html.js +7 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/decode-data-xml.js +7 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/encode-html.js +10 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/index.js +99 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/package.json +1 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/decode-codepoint.js +77 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/decode.js +568 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/generated/decode-data-html.js +7 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/generated/decode-data-xml.js +7 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/internal/bin-trie-flags.js +21 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/internal/decode-shared.js +31 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/package.json +3 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/package.json +113 -0
- package/.output/server/node_modules/@fastify/accept-negotiator/package.json +42 -16
- package/.output/server/node_modules/@iconify/utils/lib/colors/index.js +292 -0
- package/.output/server/node_modules/@iconify/utils/lib/colors/keywords.js +702 -0
- package/.output/server/node_modules/@iconify/utils/lib/css/common.js +76 -0
- package/.output/server/node_modules/@iconify/utils/lib/css/format.js +40 -0
- package/.output/server/node_modules/@iconify/utils/lib/css/icon.js +52 -0
- package/.output/server/node_modules/@iconify/utils/lib/css/icons.js +133 -0
- package/.output/server/node_modules/@iconify/utils/lib/customisations/bool.js +20 -0
- package/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.js +15 -0
- package/.output/server/node_modules/@iconify/utils/lib/customisations/flip.js +18 -0
- package/.output/server/node_modules/@iconify/utils/lib/customisations/merge.js +18 -0
- package/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.js +31 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.js +80 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/convert.js +102 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/data.js +29 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/format.js +60 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/parse.js +50 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.js +204 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.js +35 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.js +134 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.js +167 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.js +81 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.js +94 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.js +28 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.js +78 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.js +68 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.js +47 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.js +105 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.js +38 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.js +94 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.js +64 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon/defaults.js +26 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon/merge.js +18 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon/name.js +58 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon/square.js +34 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon/transformations.js +13 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.js +126 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.js +21 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.js +27 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.js +38 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.js +93 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.js +48 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.js +24 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.js +44 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.js +125 -0
- package/.output/server/node_modules/@iconify/utils/lib/index.js +53 -0
- package/.output/server/node_modules/@iconify/utils/lib/loader/custom.js +32 -0
- package/.output/server/node_modules/@iconify/utils/lib/loader/loader.js +28 -0
- package/.output/server/node_modules/@iconify/utils/lib/loader/modern.js +42 -0
- package/.output/server/node_modules/@iconify/utils/lib/loader/utils.js +63 -0
- package/.output/server/node_modules/@iconify/utils/lib/misc/objects.js +27 -0
- package/.output/server/node_modules/@iconify/utils/lib/misc/strings.js +27 -0
- package/.output/server/node_modules/@iconify/utils/lib/misc/title.js +10 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/build.js +115 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/defs.js +32 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.js +15 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/html.js +10 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/id.js +42 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.js +23 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/parse.js +69 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/pretty.js +55 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/size.js +28 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/trim.js +8 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/url.js +23 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.js +9 -0
- package/.output/server/node_modules/@iconify/utils/package.json +88 -417
- package/.output/server/node_modules/@img/colour/color.cjs +1594 -0
- package/.output/server/node_modules/@img/colour/index.cjs +1 -0
- package/.output/server/node_modules/@img/colour/package.json +45 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/LICENSE +191 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/lib/libvips-42.dll +0 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/lib/libvips-cpp-8.17.3.dll +0 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/lib/sharp-win32-x64.node +0 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/package.json +39 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/versions.json +30 -0
- package/.output/server/node_modules/@intlify/core/dist/core.mjs +1 -1
- package/.output/server/node_modules/@intlify/core/package.json +3 -3
- package/.output/server/node_modules/@intlify/core-base/dist/core-base.mjs +2 -2
- package/.output/server/node_modules/@intlify/core-base/package.json +4 -4
- package/.output/server/node_modules/@intlify/h3/dist/index.mjs +5 -1
- package/.output/server/node_modules/@intlify/h3/package.json +81 -48
- package/.output/server/node_modules/@intlify/message-compiler/dist/message-compiler.mjs +1 -1
- package/.output/server/node_modules/@intlify/message-compiler/package.json +2 -2
- package/.output/server/node_modules/@intlify/shared/dist/shared.mjs +1 -1
- package/.output/server/node_modules/@intlify/shared/package.json +1 -1
- package/.output/server/node_modules/@neondatabase/serverless/package.json +4 -4
- package/.output/server/node_modules/@poppinss/exception/build/index.js +36 -55
- package/.output/server/node_modules/@poppinss/exception/package.json +19 -16
- package/.output/server/node_modules/@poppinss/string/build/index.js +2 -6
- package/.output/server/node_modules/@poppinss/string/build/string-ArFSN0fl.js +464 -0
- package/.output/server/node_modules/@poppinss/string/package.json +28 -25
- package/.output/server/node_modules/@shikijs/core/dist/index.mjs +144 -41
- package/.output/server/node_modules/@shikijs/core/package.json +2 -2
- package/.output/server/node_modules/@shikijs/engine-javascript/package.json +3 -3
- package/.output/server/node_modules/@shikijs/engine-oniguruma/dist/index.mjs +3 -3
- package/.output/server/node_modules/@shikijs/engine-oniguruma/package.json +2 -2
- package/.output/server/node_modules/@shikijs/langs/dist/vue.mjs +1 -1
- package/.output/server/node_modules/@shikijs/langs/package.json +6 -3
- package/.output/server/node_modules/@shikijs/themes/dist/material-theme-lighter.mjs +2 -0
- package/.output/server/node_modules/@shikijs/themes/dist/material-theme-palenight.mjs +2 -0
- package/.output/server/node_modules/@shikijs/themes/dist/material-theme.mjs +2 -0
- package/.output/server/node_modules/@shikijs/themes/package.json +3 -3
- package/.output/server/node_modules/@shikijs/transformers/dist/index.mjs +64 -26
- package/.output/server/node_modules/@shikijs/transformers/package.json +3 -3
- package/.output/server/node_modules/@shikijs/types/package.json +1 -1
- package/.output/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +128 -106
- package/.output/server/node_modules/@vue/compiler-core/package.json +5 -5
- package/.output/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +54 -54
- package/.output/server/node_modules/@vue/compiler-dom/package.json +3 -3
- package/.output/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +35 -33
- package/.output/server/node_modules/@vue/compiler-ssr/package.json +3 -3
- package/.output/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +64 -18
- package/.output/server/node_modules/@vue/reactivity/package.json +2 -2
- package/.output/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +2048 -2010
- package/.output/server/node_modules/@vue/runtime-core/package.json +3 -3
- package/.output/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +58 -29
- package/.output/server/node_modules/@vue/runtime-dom/package.json +5 -5
- package/.output/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +1 -1
- package/.output/server/node_modules/@vue/server-renderer/package.json +4 -4
- package/.output/server/node_modules/@vue/shared/dist/shared.cjs.prod.js +1 -1
- package/.output/server/node_modules/@vue/shared/package.json +1 -1
- package/.output/server/node_modules/css-select/lib/esm/attributes.js +222 -0
- package/.output/server/node_modules/css-select/lib/esm/compile.js +115 -0
- package/.output/server/node_modules/css-select/lib/esm/general.js +144 -0
- package/.output/server/node_modules/css-select/lib/esm/index.js +115 -0
- package/.output/server/node_modules/css-select/lib/esm/package.json +1 -0
- package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
- package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
- package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
- package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
- package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
- package/.output/server/node_modules/css-select/lib/esm/sort.js +79 -0
- package/.output/server/node_modules/csso/lib/clean/Atrule.js +69 -0
- package/.output/server/node_modules/csso/lib/clean/Comment.js +3 -0
- package/.output/server/node_modules/csso/lib/clean/Declaration.js +14 -0
- package/.output/server/node_modules/csso/lib/clean/Raw.js +9 -0
- package/.output/server/node_modules/csso/lib/clean/Rule.js +100 -0
- package/.output/server/node_modules/csso/lib/clean/TypeSelector.js +19 -0
- package/.output/server/node_modules/csso/lib/clean/WhiteSpace.js +3 -0
- package/.output/server/node_modules/csso/lib/clean/index.js +28 -0
- package/.output/server/node_modules/csso/lib/clean/utils.js +7 -0
- package/.output/server/node_modules/csso/lib/compress.js +196 -0
- package/.output/server/node_modules/csso/lib/index.js +131 -0
- package/.output/server/node_modules/csso/lib/replace/Atrule.js +9 -0
- package/.output/server/node_modules/csso/lib/replace/AttributeSelector.js +28 -0
- package/.output/server/node_modules/csso/lib/replace/Dimension.js +63 -0
- package/.output/server/node_modules/csso/lib/replace/Number.js +40 -0
- package/.output/server/node_modules/csso/lib/replace/Percentage.js +37 -0
- package/.output/server/node_modules/csso/lib/replace/Url.js +4 -0
- package/.output/server/node_modules/csso/lib/replace/Value.js +26 -0
- package/.output/server/node_modules/csso/lib/replace/atrule/keyframes.js +21 -0
- package/.output/server/node_modules/csso/lib/replace/color.js +498 -0
- package/.output/server/node_modules/csso/lib/replace/index.js +32 -0
- package/.output/server/node_modules/csso/lib/replace/property/background.js +50 -0
- package/.output/server/node_modules/csso/lib/replace/property/border.js +16 -0
- package/.output/server/node_modules/csso/lib/replace/property/font-weight.js +22 -0
- package/.output/server/node_modules/csso/lib/replace/property/font.js +30 -0
- package/.output/server/node_modules/csso/lib/restructure/1-mergeAtrule.js +106 -0
- package/.output/server/node_modules/csso/lib/restructure/2-initialMergeRuleset.js +53 -0
- package/.output/server/node_modules/csso/lib/restructure/3-disjoinRuleset.js +42 -0
- package/.output/server/node_modules/csso/lib/restructure/4-restructShorthand.js +425 -0
- package/.output/server/node_modules/csso/lib/restructure/6-restructBlock.js +308 -0
- package/.output/server/node_modules/csso/lib/restructure/7-mergeRuleset.js +86 -0
- package/.output/server/node_modules/csso/lib/restructure/8-restructRuleset.js +176 -0
- package/.output/server/node_modules/csso/lib/restructure/index.js +35 -0
- package/.output/server/node_modules/csso/lib/restructure/prepare/createDeclarationIndexer.js +31 -0
- package/.output/server/node_modules/csso/lib/restructure/prepare/index.js +41 -0
- package/.output/server/node_modules/csso/lib/restructure/prepare/processSelector.js +97 -0
- package/.output/server/node_modules/csso/lib/restructure/prepare/specificity.js +131 -0
- package/.output/server/node_modules/csso/lib/restructure/utils.js +142 -0
- package/.output/server/node_modules/csso/lib/syntax.js +60 -0
- package/.output/server/node_modules/csso/lib/usage.js +71 -0
- package/.output/server/node_modules/csso/lib/utils.js +2 -0
- package/.output/server/node_modules/csso/lib/version.js +5 -0
- package/.output/server/node_modules/devalue/index.js +1 -0
- package/.output/server/node_modules/devalue/package.json +1 -1
- package/.output/server/node_modules/devalue/src/parse.js +5 -1
- package/.output/server/node_modules/devalue/src/stringify.js +10 -6
- package/.output/server/node_modules/devalue/src/uneval.js +10 -6
- package/.output/server/node_modules/devalue/src/utils.js +5 -1
- package/.output/server/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
- package/.output/server/node_modules/dom-serializer/lib/esm/index.js +190 -0
- package/.output/server/node_modules/dom-serializer/lib/esm/package.json +1 -0
- package/.output/server/node_modules/domelementtype/lib/esm/index.js +51 -0
- package/.output/server/node_modules/domelementtype/lib/esm/package.json +1 -0
- package/.output/server/node_modules/domhandler/lib/esm/index.js +146 -0
- package/.output/server/node_modules/domhandler/lib/esm/node.js +338 -0
- package/.output/server/node_modules/domhandler/lib/esm/package.json +1 -0
- package/.output/server/node_modules/domutils/lib/esm/feeds.js +183 -0
- package/.output/server/node_modules/domutils/lib/esm/helpers.js +136 -0
- package/.output/server/node_modules/domutils/lib/esm/index.js +10 -0
- package/.output/server/node_modules/domutils/lib/esm/legacy.js +152 -0
- package/.output/server/node_modules/domutils/lib/esm/manipulation.js +134 -0
- package/.output/server/node_modules/domutils/lib/esm/package.json +1 -0
- package/.output/server/node_modules/domutils/lib/esm/querying.js +142 -0
- package/.output/server/node_modules/domutils/lib/esm/stringify.js +81 -0
- package/.output/server/node_modules/domutils/lib/esm/traversal.js +112 -0
- package/.output/server/node_modules/fast-xml-parser/package.json +4 -2
- package/.output/server/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +40 -18
- package/.output/server/node_modules/hast-util-to-parse5/lib/index.js +13 -19
- package/.output/server/node_modules/hast-util-to-parse5/package.json +8 -7
- package/.output/server/node_modules/ipx/dist/index.mjs +1 -1
- package/.output/server/node_modules/ipx/dist/shared/ipx.CXJeaylD.mjs +764 -0
- package/.output/server/node_modules/ipx/package.json +29 -30
- package/.output/server/node_modules/jose/dist/webapi/index.js +4 -2
- package/.output/server/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +12 -12
- package/.output/server/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +17 -13
- package/.output/server/node_modules/jose/dist/webapi/jwe/general/decrypt.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/jwe/general/encrypt.js +16 -16
- package/.output/server/node_modules/jose/dist/webapi/jwk/embedded.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/jwk/thumbprint.js +5 -5
- package/.output/server/node_modules/jose/dist/webapi/jwks/local.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/jwks/remote.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/jws/flattened/sign.js +23 -17
- package/.output/server/node_modules/jose/dist/webapi/jws/flattened/verify.js +13 -9
- package/.output/server/node_modules/jose/dist/webapi/jws/general/verify.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/key/export.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/key/generate_key_pair.js +3 -3
- package/.output/server/node_modules/jose/dist/webapi/key/import.js +5 -5
- package/.output/server/node_modules/jose/dist/webapi/lib/aesgcmkw.js +4 -4
- package/.output/server/node_modules/jose/dist/webapi/lib/asn1.js +3 -7
- package/.output/server/node_modules/jose/dist/webapi/lib/buffer_utils.js +11 -0
- package/.output/server/node_modules/jose/dist/webapi/lib/cek.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/check_cek_length.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/check_iv_length.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/check_key_length.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/check_key_type.js +15 -19
- package/.output/server/node_modules/jose/dist/webapi/lib/crypto_key.js +2 -6
- package/.output/server/node_modules/jose/dist/webapi/lib/decrypt.js +7 -7
- package/.output/server/node_modules/jose/dist/webapi/lib/decrypt_key_management.js +4 -4
- package/.output/server/node_modules/jose/dist/webapi/lib/digest.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/ecdhes.js +5 -5
- package/.output/server/node_modules/jose/dist/webapi/lib/encrypt.js +8 -8
- package/.output/server/node_modules/jose/dist/webapi/lib/encrypt_key_management.js +4 -4
- package/.output/server/node_modules/jose/dist/webapi/lib/get_sign_verify_key.js +3 -3
- package/.output/server/node_modules/jose/dist/webapi/lib/invalid_key_input.js +2 -6
- package/.output/server/node_modules/jose/dist/webapi/lib/is_disjoint.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/is_jwk.js +6 -14
- package/.output/server/node_modules/jose/dist/webapi/lib/is_key_like.js +11 -8
- package/.output/server/node_modules/jose/dist/webapi/lib/is_object.js +3 -5
- package/.output/server/node_modules/jose/dist/webapi/lib/iv.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/lib/jwk_to_key.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +59 -6
- package/.output/server/node_modules/jose/dist/webapi/lib/key_to_jwk.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/normalize_key.js +4 -4
- package/.output/server/node_modules/jose/dist/webapi/lib/pbes2kw.js +5 -3
- package/.output/server/node_modules/jose/dist/webapi/lib/rsaes.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/lib/sign.js +6 -6
- package/.output/server/node_modules/jose/dist/webapi/lib/subtle_dsa.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/validate_algorithms.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/validate_crit.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/verify.js +6 -6
- package/.output/server/node_modules/jose/dist/webapi/util/base64url.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/util/decode_jwt.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/util/decode_protected_header.js +1 -1
- package/.output/server/node_modules/jose/package.json +1 -1
- package/.output/server/node_modules/mdast-util-to-hast/lib/footer.js +2 -4
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/break.js +3 -7
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/code.js +8 -9
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/delete.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +3 -3
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/heading.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/html.js +4 -7
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +3 -5
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/image.js +3 -4
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/index.js +5 -1
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +3 -7
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +3 -5
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/link.js +3 -4
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +3 -9
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/list.js +3 -7
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/root.js +3 -7
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/strong.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +3 -9
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table.js +3 -3
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/text.js +3 -4
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/index.js +3 -3
- package/.output/server/node_modules/mdast-util-to-hast/lib/revert.js +3 -9
- package/.output/server/node_modules/mdast-util-to-hast/lib/state.js +19 -16
- package/.output/server/node_modules/mdast-util-to-hast/package.json +2 -1
- package/.output/server/node_modules/node-mock-http/package.json +10 -10
- package/.output/server/node_modules/nth-check/lib/esm/compile.js +113 -0
- package/.output/server/node_modules/nth-check/lib/esm/index.js +63 -0
- package/.output/server/node_modules/nth-check/lib/esm/package.json +1 -0
- package/.output/server/node_modules/nth-check/lib/esm/parse.js +73 -0
- package/.output/server/node_modules/oauth4webapi/build/index.js +41 -30
- package/.output/server/node_modules/oauth4webapi/package.json +14 -15
- package/.output/server/node_modules/ofetch/dist/node.mjs +3 -3
- package/.output/server/node_modules/ofetch/dist/shared/ofetch.CWycOUEr.mjs +349 -0
- package/.output/server/node_modules/ofetch/package.json +19 -19
- package/.output/server/node_modules/oniguruma-to-es/dist/esm/index.js +4 -4
- package/.output/server/node_modules/oniguruma-to-es/package.json +4 -4
- package/.output/server/node_modules/pathe/dist/index.mjs +19 -1
- package/.output/server/node_modules/pathe/dist/shared/pathe.M-eThtNZ.mjs +249 -0
- package/.output/server/node_modules/pathe/package.json +33 -20
- package/.output/server/node_modules/regex/package.json +6 -6
- package/.output/server/node_modules/regex/src/atomic.js +6 -3
- package/.output/server/node_modules/sax/lib/sax.js +1697 -0
- package/.output/server/node_modules/sax/package.json +28 -0
- package/.output/server/node_modules/semver/classes/comparator.js +143 -0
- package/.output/server/node_modules/semver/classes/range.js +557 -0
- package/.output/server/node_modules/semver/functions/cmp.js +54 -0
- package/.output/server/node_modules/semver/functions/eq.js +5 -0
- package/.output/server/node_modules/semver/functions/gt.js +5 -0
- package/.output/server/node_modules/semver/functions/lt.js +5 -0
- package/.output/server/node_modules/semver/functions/lte.js +5 -0
- package/.output/server/node_modules/semver/functions/neq.js +5 -0
- package/.output/server/node_modules/semver/functions/satisfies.js +12 -0
- package/.output/server/node_modules/semver/internal/lrucache.js +42 -0
- package/.output/server/node_modules/sharp/lib/channel.js +10 -7
- package/.output/server/node_modules/sharp/lib/colour.js +42 -31
- package/.output/server/node_modules/sharp/lib/composite.js +12 -10
- package/.output/server/node_modules/sharp/lib/constructor.js +92 -32
- package/.output/server/node_modules/sharp/lib/index.js +4 -4
- package/.output/server/node_modules/sharp/lib/input.js +252 -74
- package/.output/server/node_modules/sharp/lib/is.js +45 -57
- package/.output/server/node_modules/sharp/lib/libvips.js +133 -66
- package/.output/server/node_modules/sharp/lib/operation.js +158 -61
- package/.output/server/node_modules/sharp/lib/output.js +350 -97
- package/.output/server/node_modules/sharp/lib/resize.js +73 -60
- package/.output/server/node_modules/sharp/lib/sharp.js +110 -27
- package/.output/server/node_modules/sharp/lib/utility.js +47 -43
- package/.output/server/node_modules/sharp/package.json +74 -76
- package/.output/server/node_modules/shiki/package.json +9 -9
- package/.output/server/node_modules/strnum/package.json +1 -1
- package/.output/server/node_modules/strnum/strnum.js +1 -1
- package/.output/server/node_modules/svgo/lib/builtin.js +116 -56
- package/.output/server/node_modules/svgo/lib/parser.js +40 -94
- package/.output/server/node_modules/svgo/lib/path.js +45 -63
- package/.output/server/node_modules/svgo/lib/stringifier.js +116 -113
- package/.output/server/node_modules/svgo/lib/style.js +51 -63
- package/.output/server/node_modules/svgo/lib/svgo/css-select-adapter.js +82 -59
- package/.output/server/node_modules/svgo/lib/svgo/plugins.js +21 -11
- package/.output/server/node_modules/svgo/lib/svgo/tools.js +39 -43
- package/.output/server/node_modules/svgo/lib/svgo-node.js +44 -31
- package/.output/server/node_modules/svgo/lib/svgo.js +55 -14
- package/.output/server/node_modules/svgo/lib/types.js +1 -0
- package/.output/server/node_modules/svgo/lib/util/map-nodes-to-parents.js +29 -0
- package/.output/server/node_modules/svgo/lib/util/visit.js +36 -0
- package/.output/server/node_modules/svgo/lib/version.js +7 -0
- package/.output/server/node_modules/svgo/lib/xast.js +32 -66
- package/.output/server/node_modules/svgo/package.json +68 -35
- package/.output/server/node_modules/svgo/plugins/_collections.js +150 -34
- package/.output/server/node_modules/svgo/plugins/_path.js +206 -173
- package/.output/server/node_modules/svgo/plugins/_transforms.js +470 -125
- package/.output/server/node_modules/svgo/plugins/addAttributesToSVGElement.js +13 -9
- package/.output/server/node_modules/svgo/plugins/addClassesToSVGElement.js +16 -8
- package/.output/server/node_modules/svgo/plugins/applyTransforms.js +26 -38
- package/.output/server/node_modules/svgo/plugins/cleanupAttrs.js +11 -7
- package/.output/server/node_modules/svgo/plugins/cleanupEnableBackground.js +12 -13
- package/.output/server/node_modules/svgo/plugins/cleanupIds.js +25 -24
- package/.output/server/node_modules/svgo/plugins/cleanupListOfValues.js +19 -16
- package/.output/server/node_modules/svgo/plugins/cleanupNumericValues.js +19 -18
- package/.output/server/node_modules/svgo/plugins/collapseGroups.js +30 -31
- package/.output/server/node_modules/svgo/plugins/convertColors.js +51 -17
- package/.output/server/node_modules/svgo/plugins/convertEllipseToCircle.js +4 -6
- package/.output/server/node_modules/svgo/plugins/convertOneStopGradients.js +13 -24
- package/.output/server/node_modules/svgo/plugins/convertPathData.js +323 -261
- package/.output/server/node_modules/svgo/plugins/convertShapeToPath.js +22 -29
- package/.output/server/node_modules/svgo/plugins/convertStyleToAttrs.js +26 -17
- package/.output/server/node_modules/svgo/plugins/convertTransform.js +62 -171
- package/.output/server/node_modules/svgo/plugins/inlineStyles.js +33 -30
- package/.output/server/node_modules/svgo/plugins/mergePaths.js +36 -15
- package/.output/server/node_modules/svgo/plugins/mergeStyles.js +9 -26
- package/.output/server/node_modules/svgo/plugins/minifyStyles.js +30 -16
- package/.output/server/node_modules/svgo/plugins/moveElemsAttrsToGroup.js +13 -12
- package/.output/server/node_modules/svgo/plugins/moveGroupAttrsToElems.js +8 -9
- package/.output/server/node_modules/svgo/plugins/prefixIds.js +26 -21
- package/.output/server/node_modules/svgo/plugins/preset-default.js +37 -42
- package/.output/server/node_modules/svgo/plugins/removeAttributesBySelector.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeAttrs.js +13 -11
- package/.output/server/node_modules/svgo/plugins/removeComments.js +9 -6
- package/.output/server/node_modules/svgo/plugins/removeDeprecatedAttrs.js +120 -0
- package/.output/server/node_modules/svgo/plugins/removeDesc.js +13 -10
- package/.output/server/node_modules/svgo/plugins/removeDimensions.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeDoctype.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeEditorsNSData.js +12 -10
- package/.output/server/node_modules/svgo/plugins/removeElementsByAttr.js +10 -6
- package/.output/server/node_modules/svgo/plugins/removeEmptyAttrs.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeEmptyContainers.js +21 -13
- package/.output/server/node_modules/svgo/plugins/removeEmptyText.js +11 -6
- package/.output/server/node_modules/svgo/plugins/removeHiddenElems.js +56 -37
- package/.output/server/node_modules/svgo/plugins/removeMetadata.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeNonInheritableGroupAttrs.js +8 -10
- package/.output/server/node_modules/svgo/plugins/removeOffCanvasPaths.js +14 -21
- package/.output/server/node_modules/svgo/plugins/removeRasterImages.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeScripts.js +63 -0
- package/.output/server/node_modules/svgo/plugins/removeStyleElement.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeTitle.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeUnknownsAndDefaults.js +32 -30
- package/.output/server/node_modules/svgo/plugins/removeUnusedNS.js +5 -9
- package/.output/server/node_modules/svgo/plugins/removeUselessDefs.js +14 -29
- package/.output/server/node_modules/svgo/plugins/removeUselessStrokeAndFill.js +17 -11
- package/.output/server/node_modules/svgo/plugins/removeViewBox.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeXMLNS.js +4 -6
- package/.output/server/node_modules/svgo/plugins/removeXMLProcInst.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeXlink.js +15 -14
- package/.output/server/node_modules/svgo/plugins/reusePaths.js +9 -29
- package/.output/server/node_modules/svgo/plugins/sortAttrs.js +15 -10
- package/.output/server/node_modules/svgo/plugins/sortDefsChildren.js +8 -11
- package/.output/server/node_modules/unhead/dist/plugins.mjs +2 -2
- package/.output/server/node_modules/unhead/dist/server.mjs +3 -3
- package/.output/server/node_modules/unhead/dist/shared/unhead.CGCfDSEL.mjs +180 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.CYpwL2hc.mjs +194 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.CbpEuj3y.mjs +71 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.ckV6dpEQ.mjs +166 -0
- package/.output/server/node_modules/unhead/dist/utils.mjs +2 -2
- package/.output/server/node_modules/unhead/package.json +1 -1
- package/.output/server/node_modules/vue/dist/vue.cjs.js +1 -1
- package/.output/server/node_modules/vue/dist/vue.cjs.prod.js +1 -1
- package/.output/server/node_modules/vue/package.json +6 -6
- package/.output/server/node_modules/vue-router/dist/devtools-EWN81iOl.mjs +1220 -0
- package/.output/server/node_modules/vue-router/dist/vue-router.mjs +3 -3
- package/.output/server/node_modules/vue-router/package.json +2 -3
- package/.output/server/node_modules/yaml/dist/compose/compose-collection.js +1 -1
- package/.output/server/node_modules/yaml/dist/compose/resolve-block-seq.js +1 -1
- package/.output/server/node_modules/yaml/dist/compose/resolve-flow-collection.js +2 -2
- package/.output/server/node_modules/yaml/dist/errors.js +1 -1
- package/.output/server/node_modules/yaml/dist/nodes/Alias.js +1 -1
- package/.output/server/node_modules/yaml/dist/parse/parser.js +2 -2
- package/.output/server/node_modules/yaml/dist/stringify/stringifyNumber.js +1 -1
- package/.output/server/node_modules/yaml/dist/stringify/stringifyPair.js +1 -1
- package/.output/server/node_modules/yaml/package.json +4 -4
- package/.output/server/package.json +50 -62
- package/app/components/ignis/IgnisContentFeatures.vue +1 -0
- package/bin/set-app-vue.js +1 -1
- package/bin/set-css.js +1 -1
- package/bin/set-eslint.js +1 -1
- package/bin/setup.js +3 -3
- package/eslint.config.mjs +7 -4
- package/features.ts +13 -0
- package/i18n/locales/en.json +1 -0
- package/nuxt.config.ts +5 -13
- package/package.json +14 -12
- package/public/_ignis-config.json +7 -1
- package/test/config/social.txt +37 -0
- package/test/config.test.ts +9 -0
- package/test/features/enable-all.txt +1 -1
- package/test/features/social.txt +4 -0
- package/test/features.test.ts +10 -0
- package/vitest.config.ts +1 -3
- package/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
- package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
- package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
- package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
- package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
- package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
- package/.output/public/_fonts/Jtqhy44WKYEjGWTSusP5YJfJv7Wf74QqgkBOI9u_77s-Rl_Bht5SvmaotE20bkavBEAJEEGEa0hcz3d_8yOeXmw.woff +0 -0
- package/.output/public/_fonts/ZHaz3DhCHNWhsElqYfuM71rfBBDgjuU2sd34vaYJwQg-71NZaZSGjxzAGjCMnCc2zS5rS_EGA0xHKPGCggWuXik.woff +0 -0
- package/.output/public/_fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-BgCmQXkW3N6talUbQSKexB2sHUT0qGEzmM4uMcnDAbI.woff +0 -0
- package/.output/public/_nuxt/1vOq3xiE.js +0 -1
- package/.output/public/_nuxt/22rhGZdI.js +0 -1
- package/.output/public/_nuxt/9eIdSibD.js +0 -1
- package/.output/public/_nuxt/BBmTy930.js +0 -35
- package/.output/public/_nuxt/BKe83Cjx.js +0 -1
- package/.output/public/_nuxt/Bc5GLloR.js +0 -1
- package/.output/public/_nuxt/BdG3SY-u.js +0 -1
- package/.output/public/_nuxt/BeyOQpYA.js +0 -1
- package/.output/public/_nuxt/BqcXd3MY.js +0 -94
- package/.output/public/_nuxt/Bz55A4y1.js +0 -1
- package/.output/public/_nuxt/C2ybsIQ4.js +0 -1
- package/.output/public/_nuxt/C4U5VOMJ.js +0 -1
- package/.output/public/_nuxt/CAJsyjAK.js +0 -1
- package/.output/public/_nuxt/CD9aBAuy.js +0 -1
- package/.output/public/_nuxt/CHOS7x_d.js +0 -1
- package/.output/public/_nuxt/CXhUbdF6.js +0 -1
- package/.output/public/_nuxt/CZWScI5k.js +0 -1
- package/.output/public/_nuxt/DHd34syF.js +0 -1
- package/.output/public/_nuxt/DMbgtwAJ.js +0 -1
- package/.output/public/_nuxt/DR8jhnFO.js +0 -1
- package/.output/public/_nuxt/DTT0LBLY.js +0 -1
- package/.output/public/_nuxt/DWV_uL6G.js +0 -6764
- package/.output/public/_nuxt/DdpTKqR-.js +0 -1
- package/.output/public/_nuxt/Df_NcBcC.js +0 -1
- package/.output/public/_nuxt/DhqOMFXQ.js +0 -1
- package/.output/public/_nuxt/Dnp9eFDR.js +0 -1
- package/.output/public/_nuxt/DnqMs_6O.js +0 -1
- package/.output/public/_nuxt/Dq7g_IfY.js +0 -1
- package/.output/public/_nuxt/DsAJWnuW.js +0 -1
- package/.output/public/_nuxt/DvVg7vM_.js +0 -1
- package/.output/public/_nuxt/DwKqLVGx.js +0 -1
- package/.output/public/_nuxt/DxzqnQKF.js +0 -1
- package/.output/public/_nuxt/ProsePre.D5orA6B_.css +0 -1
- package/.output/public/_nuxt/Y0f1tU-r.js +0 -1
- package/.output/public/_nuxt/atySmcu6.js +0 -1
- package/.output/public/_nuxt/builds/meta/7bab2b8f-93ee-4f44-a604-8cd2b41eac60.json +0 -1
- package/.output/public/_nuxt/entry.CtpkPzPO.css +0 -1
- package/.output/public/_nuxt/error-404.DzDu4Ean.css +0 -1
- package/.output/public/_nuxt/error-500.BdNqqJx7.css +0 -1
- package/.output/public/_nuxt/q3i45eMH.js +0 -1
- package/.output/public/_nuxt/vueform.CkWb7x1C.css +0 -1
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/convertor/create.cjs +0 -32
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data-patch.cjs +0 -7
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data.cjs +0 -97
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/generate.cjs +0 -135
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/index.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/parse.cjs +0 -588
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/tokenizer.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/walk.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/create.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/sourceMap.cjs +0 -96
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/token-before.cjs +0 -170
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/index.cjs +0 -63
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/Lexer.cjs +0 -459
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/error.cjs +0 -128
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-const.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-urange.cjs +0 -149
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic.cjs +0 -573
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match-graph.cjs +0 -459
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match.cjs +0 -632
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/prepare-tokens.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/search.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/structure.cjs +0 -168
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/trace.cjs +0 -73
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/SyntaxError.cjs +0 -69
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/create.cjs +0 -336
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/sequence.cjs +0 -47
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/font-face.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/import.cjs +0 -37
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/index.cjs +0 -17
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/media.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/page.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/supports.cjs +0 -77
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/lexer.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/mix.cjs +0 -142
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/parser.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/walker.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/create.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/expression.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/var.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/index.cjs +0 -14
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AnPlusB.cjs +0 -293
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Atrule.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Block.cjs +0 -90
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Brackets.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDC.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDO.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/ClassSelector.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Combinator.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Comment.cjs +0 -40
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Declaration.cjs +0 -166
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/DeclarationList.cjs +0 -50
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Dimension.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Function.cjs +0 -45
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Hash.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/IdSelector.cjs +0 -33
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Identifier.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaFeature.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQuery.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Nth.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Number.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Operator.cjs +0 -28
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Parentheses.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Percentage.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Ratio.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Raw.cjs +0 -48
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Rule.cjs +0 -58
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Selector.cjs +0 -39
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/SelectorList.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/String.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/StyleSheet.cjs +0 -83
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/TypeSelector.cjs +0 -59
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Url.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Value.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index-parse.cjs +0 -85
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index.cjs +0 -85
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/pseudo/index.cjs +0 -52
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/default.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/index.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/selector.cjs +0 -84
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/value.cjs +0 -29
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/TokenStream.cjs +0 -264
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/index.cjs +0 -554
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/names.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/types.cjs +0 -57
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/utils.cjs +0 -261
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/List.cjs +0 -473
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/clone.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/create-custom-error.cjs +0 -18
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/ident.cjs +0 -102
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/names.cjs +0 -113
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/string.cjs +0 -99
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/url.cjs +0 -108
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/version.cjs +0 -5
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/walker/create.cjs +0 -291
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/data/patch.json +0 -739
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/convertor/create.cjs +0 -32
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data-patch.cjs +0 -7
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data.cjs +0 -99
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/generate.cjs +0 -135
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/index.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/parse.cjs +0 -588
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/tokenizer.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/walk.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/create.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/sourceMap.cjs +0 -96
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/token-before.cjs +0 -170
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/index.cjs +0 -63
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/Lexer.cjs +0 -470
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/error.cjs +0 -128
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-const.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-urange.cjs +0 -149
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic.cjs +0 -573
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match-graph.cjs +0 -459
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match.cjs +0 -632
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/prepare-tokens.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/search.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/structure.cjs +0 -168
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/trace.cjs +0 -73
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/units.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/SyntaxError.cjs +0 -69
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/create.cjs +0 -336
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/sequence.cjs +0 -47
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/font-face.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/import.cjs +0 -37
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/index.cjs +0 -19
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/media.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/nest.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/page.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/supports.cjs +0 -77
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/lexer.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/mix.cjs +0 -119
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/parser.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/walker.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/create.cjs +0 -57
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/expression.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/var.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/index.cjs +0 -14
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AnPlusB.cjs +0 -293
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Atrule.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Block.cjs +0 -96
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Brackets.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDC.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDO.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/ClassSelector.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Combinator.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Comment.cjs +0 -40
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Declaration.cjs +0 -166
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/DeclarationList.cjs +0 -62
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Dimension.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Function.cjs +0 -45
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Hash.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/IdSelector.cjs +0 -33
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Identifier.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaFeature.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQuery.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/NestingSelector.cjs +0 -29
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Nth.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Number.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Operator.cjs +0 -28
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Parentheses.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Percentage.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Ratio.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Raw.cjs +0 -48
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Rule.cjs +0 -58
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Selector.cjs +0 -39
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/SelectorList.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/String.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/StyleSheet.cjs +0 -83
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/TypeSelector.cjs +0 -59
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Url.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Value.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index-parse.cjs +0 -87
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index.cjs +0 -87
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/pseudo/index.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/default.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/index.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/selector.cjs +0 -88
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/value.cjs +0 -29
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/TokenStream.cjs +0 -264
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/index.cjs +0 -554
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/names.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/types.cjs +0 -57
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/utils.cjs +0 -261
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/List.cjs +0 -473
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/clone.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/create-custom-error.cjs +0 -18
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/ident.cjs +0 -102
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/names.cjs +0 -113
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/string.cjs +0 -99
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/url.cjs +0 -108
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/version.cjs +0 -5
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/walker/create.cjs +0 -291
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/data/patch.json +0 -725
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/package.json +0 -126
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/decode.js +0 -536
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/decode_codepoint.js +0 -76
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/encode.js +0 -77
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/escape.js +0 -122
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/decode-data-html.js +0 -9
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/decode-data-xml.js +0 -9
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/encode-html.js +0 -12
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/index.js +0 -126
- package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/at-rules.json +0 -620
- package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/properties.json +0 -9297
- package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/syntaxes.json +0 -794
- package/.output/server/node_modules/.nitro/mdn-data@2.0.28/package.json +0 -38
- package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/at-rules.json +0 -620
- package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/properties.json +0 -9626
- package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/syntaxes.json +0 -866
- package/.output/server/node_modules/.nitro/mdn-data@2.0.30/package.json +0 -38
- package/.output/server/node_modules/.nitro/property-information@6.5.0/index.js +0 -18
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/aria.js +0 -59
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/find.js +0 -68
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/hast-to-react.js +0 -28
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/html.js +0 -322
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/normalize.js +0 -7
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/svg.js +0 -567
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/case-insensitive-transform.js +0 -10
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/case-sensitive-transform.js +0 -8
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/create.js +0 -58
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/defined-info.js +0 -44
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/info.js +0 -25
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/merge.js +0 -26
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/schema.js +0 -28
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xlink.js +0 -17
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xml.js +0 -9
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xmlns.js +0 -9
- package/.output/server/node_modules/.nitro/property-information@6.5.0/package.json +0 -93
- package/.output/server/node_modules/.nitro/property-information@7.1.0/lib/util/types.js +0 -13
- package/.output/server/node_modules/@iconify/utils/lib/colors/index.mjs +0 -350
- package/.output/server/node_modules/@iconify/utils/lib/colors/keywords.mjs +0 -188
- package/.output/server/node_modules/@iconify/utils/lib/css/common.mjs +0 -90
- package/.output/server/node_modules/@iconify/utils/lib/css/format.mjs +0 -38
- package/.output/server/node_modules/@iconify/utils/lib/css/icon.mjs +0 -76
- package/.output/server/node_modules/@iconify/utils/lib/css/icons.mjs +0 -168
- package/.output/server/node_modules/@iconify/utils/lib/customisations/bool.mjs +0 -22
- package/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.mjs +0 -14
- package/.output/server/node_modules/@iconify/utils/lib/customisations/flip.mjs +0 -16
- package/.output/server/node_modules/@iconify/utils/lib/customisations/merge.mjs +0 -22
- package/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.mjs +0 -33
- package/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.mjs +0 -51
- package/.output/server/node_modules/@iconify/utils/lib/emoji/convert.mjs +0 -84
- package/.output/server/node_modules/@iconify/utils/lib/emoji/data.mjs +0 -16
- package/.output/server/node_modules/@iconify/utils/lib/emoji/format.mjs +0 -44
- package/.output/server/node_modules/@iconify/utils/lib/emoji/parse.mjs +0 -58
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.mjs +0 -231
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.mjs +0 -31
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.mjs +0 -164
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.mjs +0 -216
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.mjs +0 -113
- package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.mjs +0 -104
- package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.mjs +0 -34
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.mjs +0 -75
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.mjs +0 -97
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.mjs +0 -54
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.mjs +0 -97
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.mjs +0 -45
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.mjs +0 -105
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.mjs +0 -54
- package/.output/server/node_modules/@iconify/utils/lib/icon/defaults.mjs +0 -24
- package/.output/server/node_modules/@iconify/utils/lib/icon/merge.mjs +0 -20
- package/.output/server/node_modules/@iconify/utils/lib/icon/name.mjs +0 -53
- package/.output/server/node_modules/@iconify/utils/lib/icon/square.mjs +0 -23
- package/.output/server/node_modules/@iconify/utils/lib/icon/transformations.mjs +0 -16
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.mjs +0 -182
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.mjs +0 -22
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.mjs +0 -28
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.mjs +0 -46
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.mjs +0 -66
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.mjs +0 -51
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.mjs +0 -23
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.mjs +0 -62
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.mjs +0 -161
- package/.output/server/node_modules/@iconify/utils/lib/index.mjs +0 -64
- package/.output/server/node_modules/@iconify/utils/lib/loader/custom.mjs +0 -50
- package/.output/server/node_modules/@iconify/utils/lib/loader/loader.mjs +0 -59
- package/.output/server/node_modules/@iconify/utils/lib/loader/modern.mjs +0 -80
- package/.output/server/node_modules/@iconify/utils/lib/loader/utils.mjs +0 -92
- package/.output/server/node_modules/@iconify/utils/lib/misc/objects.mjs +0 -30
- package/.output/server/node_modules/@iconify/utils/lib/misc/strings.mjs +0 -17
- package/.output/server/node_modules/@iconify/utils/lib/misc/title.mjs +0 -5
- package/.output/server/node_modules/@iconify/utils/lib/svg/build.mjs +0 -119
- package/.output/server/node_modules/@iconify/utils/lib/svg/defs.mjs +0 -30
- package/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.mjs +0 -20
- package/.output/server/node_modules/@iconify/utils/lib/svg/html.mjs +0 -9
- package/.output/server/node_modules/@iconify/utils/lib/svg/id.mjs +0 -28
- package/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.mjs +0 -19
- package/.output/server/node_modules/@iconify/utils/lib/svg/parse.mjs +0 -83
- package/.output/server/node_modules/@iconify/utils/lib/svg/pretty.mjs +0 -70
- package/.output/server/node_modules/@iconify/utils/lib/svg/size.mjs +0 -40
- package/.output/server/node_modules/@iconify/utils/lib/svg/trim.mjs +0 -5
- package/.output/server/node_modules/@iconify/utils/lib/svg/url.mjs +0 -11
- package/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.mjs +0 -8
- package/.output/server/node_modules/@lukeed/ms/dist/index.mjs +0 -34
- package/.output/server/node_modules/@lukeed/ms/package.json +0 -48
- package/.output/server/node_modules/@poppinss/string/build/chunk-LJJE2S3U.js +0 -407
- package/.output/server/node_modules/@shikijs/themes/dist/github-dark.mjs +0 -2
- package/.output/server/node_modules/@shikijs/themes/dist/github-light.mjs +0 -2
- package/.output/server/node_modules/@trysound/sax/lib/sax.js +0 -1413
- package/.output/server/node_modules/@trysound/sax/package.json +0 -30
- package/.output/server/node_modules/bytes/index.js +0 -170
- package/.output/server/node_modules/bytes/package.json +0 -42
- package/.output/server/node_modules/color/index.js +0 -496
- package/.output/server/node_modules/color/package.json +0 -47
- package/.output/server/node_modules/color-convert/conversions.js +0 -839
- package/.output/server/node_modules/color-convert/index.js +0 -81
- package/.output/server/node_modules/color-convert/package.json +0 -48
- package/.output/server/node_modules/color-convert/route.js +0 -97
- package/.output/server/node_modules/color-name/index.js +0 -152
- package/.output/server/node_modules/color-name/package.json +0 -28
- package/.output/server/node_modules/color-string/index.js +0 -242
- package/.output/server/node_modules/color-string/package.json +0 -39
- package/.output/server/node_modules/css-select/lib/attributes.js +0 -236
- package/.output/server/node_modules/css-select/lib/compile.js +0 -151
- package/.output/server/node_modules/css-select/lib/general.js +0 -148
- package/.output/server/node_modules/css-select/lib/index.js +0 -154
- package/.output/server/node_modules/css-select/lib/pseudo-selectors/aliases.js +0 -34
- package/.output/server/node_modules/css-select/lib/pseudo-selectors/filters.js +0 -157
- package/.output/server/node_modules/css-select/lib/pseudo-selectors/index.js +0 -46
- package/.output/server/node_modules/css-select/lib/pseudo-selectors/pseudos.js +0 -93
- package/.output/server/node_modules/css-select/lib/pseudo-selectors/subselects.js +0 -112
- package/.output/server/node_modules/css-select/lib/sort.js +0 -84
- package/.output/server/node_modules/csso/cjs/clean/Atrule.cjs +0 -73
- package/.output/server/node_modules/csso/cjs/clean/Comment.cjs +0 -7
- package/.output/server/node_modules/csso/cjs/clean/Declaration.cjs +0 -18
- package/.output/server/node_modules/csso/cjs/clean/Raw.cjs +0 -13
- package/.output/server/node_modules/csso/cjs/clean/Rule.cjs +0 -104
- package/.output/server/node_modules/csso/cjs/clean/TypeSelector.cjs +0 -23
- package/.output/server/node_modules/csso/cjs/clean/WhiteSpace.cjs +0 -7
- package/.output/server/node_modules/csso/cjs/clean/index.cjs +0 -32
- package/.output/server/node_modules/csso/cjs/clean/utils.cjs +0 -12
- package/.output/server/node_modules/csso/cjs/compress.cjs +0 -200
- package/.output/server/node_modules/csso/cjs/index.cjs +0 -127
- package/.output/server/node_modules/csso/cjs/replace/Atrule.cjs +0 -13
- package/.output/server/node_modules/csso/cjs/replace/AttributeSelector.cjs +0 -32
- package/.output/server/node_modules/csso/cjs/replace/Dimension.cjs +0 -67
- package/.output/server/node_modules/csso/cjs/replace/Number.cjs +0 -45
- package/.output/server/node_modules/csso/cjs/replace/Percentage.cjs +0 -41
- package/.output/server/node_modules/csso/cjs/replace/Url.cjs +0 -8
- package/.output/server/node_modules/csso/cjs/replace/Value.cjs +0 -29
- package/.output/server/node_modules/csso/cjs/replace/atrule/keyframes.cjs +0 -25
- package/.output/server/node_modules/csso/cjs/replace/color.cjs +0 -504
- package/.output/server/node_modules/csso/cjs/replace/index.cjs +0 -36
- package/.output/server/node_modules/csso/cjs/replace/property/background.cjs +0 -54
- package/.output/server/node_modules/csso/cjs/replace/property/border.cjs +0 -20
- package/.output/server/node_modules/csso/cjs/replace/property/font-weight.cjs +0 -26
- package/.output/server/node_modules/csso/cjs/replace/property/font.cjs +0 -34
- package/.output/server/node_modules/csso/cjs/restructure/1-mergeAtrule.cjs +0 -109
- package/.output/server/node_modules/csso/cjs/restructure/2-initialMergeRuleset.cjs +0 -51
- package/.output/server/node_modules/csso/cjs/restructure/3-disjoinRuleset.cjs +0 -46
- package/.output/server/node_modules/csso/cjs/restructure/4-restructShorthand.cjs +0 -429
- package/.output/server/node_modules/csso/cjs/restructure/6-restructBlock.cjs +0 -307
- package/.output/server/node_modules/csso/cjs/restructure/7-mergeRuleset.cjs +0 -90
- package/.output/server/node_modules/csso/cjs/restructure/8-restructRuleset.cjs +0 -175
- package/.output/server/node_modules/csso/cjs/restructure/index.cjs +0 -39
- package/.output/server/node_modules/csso/cjs/restructure/prepare/createDeclarationIndexer.cjs +0 -34
- package/.output/server/node_modules/csso/cjs/restructure/prepare/index.cjs +0 -45
- package/.output/server/node_modules/csso/cjs/restructure/prepare/processSelector.cjs +0 -101
- package/.output/server/node_modules/csso/cjs/restructure/prepare/specificity.cjs +0 -133
- package/.output/server/node_modules/csso/cjs/restructure/utils.cjs +0 -151
- package/.output/server/node_modules/csso/cjs/syntax.cjs +0 -60
- package/.output/server/node_modules/csso/cjs/usage.cjs +0 -75
- package/.output/server/node_modules/csso/cjs/utils.cjs +0 -14
- package/.output/server/node_modules/csso/cjs/version.cjs +0 -5
- package/.output/server/node_modules/debug/package.json +0 -64
- package/.output/server/node_modules/debug/src/browser.js +0 -272
- package/.output/server/node_modules/debug/src/common.js +0 -292
- package/.output/server/node_modules/debug/src/index.js +0 -10
- package/.output/server/node_modules/debug/src/node.js +0 -263
- package/.output/server/node_modules/dom-serializer/lib/foreignNames.js +0 -103
- package/.output/server/node_modules/dom-serializer/lib/index.js +0 -229
- package/.output/server/node_modules/domelementtype/lib/index.js +0 -55
- package/.output/server/node_modules/domhandler/lib/index.js +0 -165
- package/.output/server/node_modules/domhandler/lib/node.js +0 -474
- package/.output/server/node_modules/domutils/lib/feeds.js +0 -190
- package/.output/server/node_modules/domutils/lib/helpers.js +0 -142
- package/.output/server/node_modules/domutils/lib/index.js +0 -33
- package/.output/server/node_modules/domutils/lib/legacy.js +0 -168
- package/.output/server/node_modules/domutils/lib/manipulation.js +0 -142
- package/.output/server/node_modules/domutils/lib/querying.js +0 -155
- package/.output/server/node_modules/domutils/lib/stringify.js +0 -91
- package/.output/server/node_modules/domutils/lib/traversal.js +0 -125
- package/.output/server/node_modules/has-flag/index.js +0 -8
- package/.output/server/node_modules/has-flag/package.json +0 -46
- package/.output/server/node_modules/ipx/dist/shared/ipx.e4d5b25d.mjs +0 -761
- package/.output/server/node_modules/is-arrayish/index.js +0 -9
- package/.output/server/node_modules/is-arrayish/package.json +0 -45
- package/.output/server/node_modules/jose/dist/webapi/lib/epoch.js +0 -1
- package/.output/server/node_modules/jose/dist/webapi/lib/secs.js +0 -55
- package/.output/server/node_modules/ms/index.js +0 -162
- package/.output/server/node_modules/ms/package.json +0 -38
- package/.output/server/node_modules/nth-check/lib/compile.js +0 -121
- package/.output/server/node_modules/nth-check/lib/index.js +0 -70
- package/.output/server/node_modules/nth-check/lib/parse.js +0 -77
- package/.output/server/node_modules/ofetch/dist/shared/ofetch.03887fc3.mjs +0 -333
- package/.output/server/node_modules/pathe/dist/shared/pathe.ff20891b.mjs +0 -221
- package/.output/server/node_modules/sharp/build/Release/libglib-2.0-0.dll +0 -0
- package/.output/server/node_modules/sharp/build/Release/libgobject-2.0-0.dll +0 -0
- package/.output/server/node_modules/sharp/build/Release/libvips-42.dll +0 -0
- package/.output/server/node_modules/sharp/build/Release/libvips-cpp.dll +0 -0
- package/.output/server/node_modules/sharp/build/Release/sharp-win32-x64.node +0 -0
- package/.output/server/node_modules/sharp/lib/platform.js +0 -30
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/THIRD-PARTY-NOTICES.md +0 -43
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/include/harfbuzz/hb-cplusplus.hh +0 -223
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/include/vips/vips8 +0 -60
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libglib-2.0-0.dll +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libglib-2.0.lib +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libgobject-2.0-0.dll +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libgobject-2.0.lib +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libvips-42.dll +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libvips.lib +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/platform.json +0 -1
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/versions.json +0 -31
- package/.output/server/node_modules/simple-swizzle/index.js +0 -29
- package/.output/server/node_modules/simple-swizzle/package.json +0 -36
- package/.output/server/node_modules/supports-color/index.js +0 -135
- package/.output/server/node_modules/supports-color/package.json +0 -53
- package/.output/server/node_modules/svgo/plugins/removeScriptElement.js +0 -70
- package/.output/server/node_modules/truncatise/index.js +0 -188
- package/.output/server/node_modules/truncatise/package.json +0 -36
- package/.output/server/node_modules/unhead/dist/shared/unhead.BpRRHAhY.mjs +0 -194
- package/.output/server/node_modules/unhead/dist/shared/unhead.DH45uomy.mjs +0 -180
- package/.output/server/node_modules/unhead/dist/shared/unhead.DZbvapt-.mjs +0 -70
- package/.output/server/node_modules/unhead/dist/shared/unhead.Djo8ep_Y.mjs +0 -166
- package/.output/server/node_modules/vue-router/dist/devtools-BLCumUwL.mjs +0 -1218
- /package/.nuxt/ui/{button-group.ts → field-group.ts} +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/index.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/aria.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/find.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/hast-to-react.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/html.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/normalize.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/svg.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/case-insensitive-transform.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/case-sensitive-transform.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/create.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/defined-info.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/info.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/merge.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/schema.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@6.5.0 → property-information}/lib/util/types.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xlink.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xml.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xmlns.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/package.json +0 -0
|
@@ -0,0 +1,1220 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* vue-router v4.6.4
|
|
3
|
+
* (c) 2025 Eduardo San Martin Morote
|
|
4
|
+
* @license MIT
|
|
5
|
+
*/
|
|
6
|
+
import { getCurrentInstance, inject, onActivated, onDeactivated, onUnmounted, watch } from "vue";
|
|
7
|
+
import { setupDevtoolsPlugin } from "@vue/devtools-api";
|
|
8
|
+
|
|
9
|
+
//#region src/utils/env.ts
|
|
10
|
+
const isBrowser = typeof document !== "undefined";
|
|
11
|
+
|
|
12
|
+
//#endregion
|
|
13
|
+
//#region src/utils/index.ts
|
|
14
|
+
/**
|
|
15
|
+
* Identity function that returns the value as is.
|
|
16
|
+
*
|
|
17
|
+
* @param v - the value to return
|
|
18
|
+
*
|
|
19
|
+
* @internal
|
|
20
|
+
*/
|
|
21
|
+
const identityFn = (v) => v;
|
|
22
|
+
/**
|
|
23
|
+
* Allows differentiating lazy components from functional components and vue-class-component
|
|
24
|
+
* @internal
|
|
25
|
+
*
|
|
26
|
+
* @param component
|
|
27
|
+
*/
|
|
28
|
+
function isRouteComponent(component) {
|
|
29
|
+
return typeof component === "object" || "displayName" in component || "props" in component || "__vccOpts" in component;
|
|
30
|
+
}
|
|
31
|
+
function isESModule(obj) {
|
|
32
|
+
return obj.__esModule || obj[Symbol.toStringTag] === "Module" || obj.default && isRouteComponent(obj.default);
|
|
33
|
+
}
|
|
34
|
+
const assign = Object.assign;
|
|
35
|
+
function applyToParams(fn, params) {
|
|
36
|
+
const newParams = {};
|
|
37
|
+
for (const key in params) {
|
|
38
|
+
const value = params[key];
|
|
39
|
+
newParams[key] = isArray(value) ? value.map(fn) : fn(value);
|
|
40
|
+
}
|
|
41
|
+
return newParams;
|
|
42
|
+
}
|
|
43
|
+
const noop = () => {};
|
|
44
|
+
/**
|
|
45
|
+
* Typesafe alternative to Array.isArray
|
|
46
|
+
* https://github.com/microsoft/TypeScript/pull/48228
|
|
47
|
+
*
|
|
48
|
+
* @internal
|
|
49
|
+
*/
|
|
50
|
+
const isArray = Array.isArray;
|
|
51
|
+
function mergeOptions(defaults, partialOptions) {
|
|
52
|
+
const options = {};
|
|
53
|
+
for (const key in defaults) options[key] = key in partialOptions ? partialOptions[key] : defaults[key];
|
|
54
|
+
return options;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
//#endregion
|
|
58
|
+
//#region src/warning.ts
|
|
59
|
+
function warn$1(msg) {
|
|
60
|
+
const args = Array.from(arguments).slice(1);
|
|
61
|
+
console.warn.apply(console, ["[Vue Router warn]: " + msg].concat(args));
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
//#endregion
|
|
65
|
+
//#region src/encoding.ts
|
|
66
|
+
/**
|
|
67
|
+
* Encoding Rules (␣ = Space)
|
|
68
|
+
* - Path: ␣ " < > # ? { }
|
|
69
|
+
* - Query: ␣ " < > # & =
|
|
70
|
+
* - Hash: ␣ " < > `
|
|
71
|
+
*
|
|
72
|
+
* On top of that, the RFC3986 (https://tools.ietf.org/html/rfc3986#section-2.2)
|
|
73
|
+
* defines some extra characters to be encoded. Most browsers do not encode them
|
|
74
|
+
* in encodeURI https://github.com/whatwg/url/issues/369, so it may be safer to
|
|
75
|
+
* also encode `!'()*`. Leaving un-encoded only ASCII alphanumeric(`a-zA-Z0-9`)
|
|
76
|
+
* plus `-._~`. This extra safety should be applied to query by patching the
|
|
77
|
+
* string returned by encodeURIComponent encodeURI also encodes `[\]^`. `\`
|
|
78
|
+
* should be encoded to avoid ambiguity. Browsers (IE, FF, C) transform a `\`
|
|
79
|
+
* into a `/` if directly typed in. The _backtick_ (`````) should also be
|
|
80
|
+
* encoded everywhere because some browsers like FF encode it when directly
|
|
81
|
+
* written while others don't. Safari and IE don't encode ``"<>{}``` in hash.
|
|
82
|
+
*/
|
|
83
|
+
const HASH_RE = /#/g;
|
|
84
|
+
const AMPERSAND_RE = /&/g;
|
|
85
|
+
const SLASH_RE = /\//g;
|
|
86
|
+
const EQUAL_RE = /=/g;
|
|
87
|
+
const IM_RE = /\?/g;
|
|
88
|
+
const PLUS_RE = /\+/g;
|
|
89
|
+
/**
|
|
90
|
+
* NOTE: It's not clear to me if we should encode the + symbol in queries, it
|
|
91
|
+
* seems to be less flexible than not doing so and I can't find out the legacy
|
|
92
|
+
* systems requiring this for regular requests like text/html. In the standard,
|
|
93
|
+
* the encoding of the plus character is only mentioned for
|
|
94
|
+
* application/x-www-form-urlencoded
|
|
95
|
+
* (https://url.spec.whatwg.org/#urlencoded-parsing) and most browsers seems lo
|
|
96
|
+
* leave the plus character as is in queries. To be more flexible, we allow the
|
|
97
|
+
* plus character on the query, but it can also be manually encoded by the user.
|
|
98
|
+
*
|
|
99
|
+
* Resources:
|
|
100
|
+
* - https://url.spec.whatwg.org/#urlencoded-parsing
|
|
101
|
+
* - https://stackoverflow.com/questions/1634271/url-encoding-the-space-character-or-20
|
|
102
|
+
*/
|
|
103
|
+
const ENC_BRACKET_OPEN_RE = /%5B/g;
|
|
104
|
+
const ENC_BRACKET_CLOSE_RE = /%5D/g;
|
|
105
|
+
const ENC_CARET_RE = /%5E/g;
|
|
106
|
+
const ENC_BACKTICK_RE = /%60/g;
|
|
107
|
+
const ENC_CURLY_OPEN_RE = /%7B/g;
|
|
108
|
+
const ENC_PIPE_RE = /%7C/g;
|
|
109
|
+
const ENC_CURLY_CLOSE_RE = /%7D/g;
|
|
110
|
+
const ENC_SPACE_RE = /%20/g;
|
|
111
|
+
/**
|
|
112
|
+
* Encode characters that need to be encoded on the path, search and hash
|
|
113
|
+
* sections of the URL.
|
|
114
|
+
*
|
|
115
|
+
* @internal
|
|
116
|
+
* @param text - string to encode
|
|
117
|
+
* @returns encoded string
|
|
118
|
+
*/
|
|
119
|
+
function commonEncode(text) {
|
|
120
|
+
return text == null ? "" : encodeURI("" + text).replace(ENC_PIPE_RE, "|").replace(ENC_BRACKET_OPEN_RE, "[").replace(ENC_BRACKET_CLOSE_RE, "]");
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* Encode characters that need to be encoded on the hash section of the URL.
|
|
124
|
+
*
|
|
125
|
+
* @param text - string to encode
|
|
126
|
+
* @returns encoded string
|
|
127
|
+
*/
|
|
128
|
+
function encodeHash(text) {
|
|
129
|
+
return commonEncode(text).replace(ENC_CURLY_OPEN_RE, "{").replace(ENC_CURLY_CLOSE_RE, "}").replace(ENC_CARET_RE, "^");
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* Encode characters that need to be encoded query values on the query
|
|
133
|
+
* section of the URL.
|
|
134
|
+
*
|
|
135
|
+
* @param text - string to encode
|
|
136
|
+
* @returns encoded string
|
|
137
|
+
*/
|
|
138
|
+
function encodeQueryValue(text) {
|
|
139
|
+
return commonEncode(text).replace(PLUS_RE, "%2B").replace(ENC_SPACE_RE, "+").replace(HASH_RE, "%23").replace(AMPERSAND_RE, "%26").replace(ENC_BACKTICK_RE, "`").replace(ENC_CURLY_OPEN_RE, "{").replace(ENC_CURLY_CLOSE_RE, "}").replace(ENC_CARET_RE, "^");
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* Like `encodeQueryValue` but also encodes the `=` character.
|
|
143
|
+
*
|
|
144
|
+
* @param text - string to encode
|
|
145
|
+
*/
|
|
146
|
+
function encodeQueryKey(text) {
|
|
147
|
+
return encodeQueryValue(text).replace(EQUAL_RE, "%3D");
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* Encode characters that need to be encoded on the path section of the URL.
|
|
151
|
+
*
|
|
152
|
+
* @param text - string to encode
|
|
153
|
+
* @returns encoded string
|
|
154
|
+
*/
|
|
155
|
+
function encodePath(text) {
|
|
156
|
+
return commonEncode(text).replace(HASH_RE, "%23").replace(IM_RE, "%3F");
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* Encode characters that need to be encoded on the path section of the URL as a
|
|
160
|
+
* param. This function encodes everything {@link encodePath} does plus the
|
|
161
|
+
* slash (`/`) character. If `text` is `null` or `undefined`, returns an empty
|
|
162
|
+
* string instead.
|
|
163
|
+
*
|
|
164
|
+
* @param text - string to encode
|
|
165
|
+
* @returns encoded string
|
|
166
|
+
*/
|
|
167
|
+
function encodeParam(text) {
|
|
168
|
+
return encodePath(text).replace(SLASH_RE, "%2F");
|
|
169
|
+
}
|
|
170
|
+
function decode(text) {
|
|
171
|
+
if (text == null) return null;
|
|
172
|
+
try {
|
|
173
|
+
return decodeURIComponent("" + text);
|
|
174
|
+
} catch (err) {
|
|
175
|
+
process.env.NODE_ENV !== "production" && warn$1(`Error decoding "${text}". Using original value`);
|
|
176
|
+
}
|
|
177
|
+
return "" + text;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
//#endregion
|
|
181
|
+
//#region src/location.ts
|
|
182
|
+
const TRAILING_SLASH_RE = /\/$/;
|
|
183
|
+
const removeTrailingSlash = (path) => path.replace(TRAILING_SLASH_RE, "");
|
|
184
|
+
/**
|
|
185
|
+
* Transforms a URI into a normalized history location
|
|
186
|
+
*
|
|
187
|
+
* @param parseQuery
|
|
188
|
+
* @param location - URI to normalize
|
|
189
|
+
* @param currentLocation - current absolute location. Allows resolving relative
|
|
190
|
+
* paths. Must start with `/`. Defaults to `/`
|
|
191
|
+
* @returns a normalized history location
|
|
192
|
+
*/
|
|
193
|
+
function parseURL(parseQuery$1, location, currentLocation = "/") {
|
|
194
|
+
let path, query = {}, searchString = "", hash = "";
|
|
195
|
+
const hashPos = location.indexOf("#");
|
|
196
|
+
let searchPos = location.indexOf("?");
|
|
197
|
+
searchPos = hashPos >= 0 && searchPos > hashPos ? -1 : searchPos;
|
|
198
|
+
if (searchPos >= 0) {
|
|
199
|
+
path = location.slice(0, searchPos);
|
|
200
|
+
searchString = location.slice(searchPos, hashPos > 0 ? hashPos : location.length);
|
|
201
|
+
query = parseQuery$1(searchString.slice(1));
|
|
202
|
+
}
|
|
203
|
+
if (hashPos >= 0) {
|
|
204
|
+
path = path || location.slice(0, hashPos);
|
|
205
|
+
hash = location.slice(hashPos, location.length);
|
|
206
|
+
}
|
|
207
|
+
path = resolveRelativePath(path != null ? path : location, currentLocation);
|
|
208
|
+
return {
|
|
209
|
+
fullPath: path + searchString + hash,
|
|
210
|
+
path,
|
|
211
|
+
query,
|
|
212
|
+
hash: decode(hash)
|
|
213
|
+
};
|
|
214
|
+
}
|
|
215
|
+
function NEW_stringifyURL(stringifyQuery$1, path, query, hash = "") {
|
|
216
|
+
const searchText = stringifyQuery$1(query);
|
|
217
|
+
return path + (searchText && "?") + searchText + encodeHash(hash);
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* Stringifies a URL object
|
|
221
|
+
*
|
|
222
|
+
* @param stringifyQuery
|
|
223
|
+
* @param location
|
|
224
|
+
*/
|
|
225
|
+
function stringifyURL(stringifyQuery$1, location) {
|
|
226
|
+
const query = location.query ? stringifyQuery$1(location.query) : "";
|
|
227
|
+
return location.path + (query && "?") + query + (location.hash || "");
|
|
228
|
+
}
|
|
229
|
+
/**
|
|
230
|
+
* Strips off the base from the beginning of a location.pathname in a non-case-sensitive way.
|
|
231
|
+
*
|
|
232
|
+
* @param pathname - location.pathname
|
|
233
|
+
* @param base - base to strip off
|
|
234
|
+
*/
|
|
235
|
+
function stripBase(pathname, base) {
|
|
236
|
+
if (!base || !pathname.toLowerCase().startsWith(base.toLowerCase())) return pathname;
|
|
237
|
+
return pathname.slice(base.length) || "/";
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* Checks if two RouteLocation are equal. This means that both locations are
|
|
241
|
+
* pointing towards the same {@link RouteRecord} and that all `params`, `query`
|
|
242
|
+
* parameters and `hash` are the same
|
|
243
|
+
*
|
|
244
|
+
* @param stringifyQuery - A function that takes a query object of type LocationQueryRaw and returns a string representation of it.
|
|
245
|
+
* @param a - first {@link RouteLocation}
|
|
246
|
+
* @param b - second {@link RouteLocation}
|
|
247
|
+
*/
|
|
248
|
+
function isSameRouteLocation(stringifyQuery$1, a, b) {
|
|
249
|
+
const aLastIndex = a.matched.length - 1;
|
|
250
|
+
const bLastIndex = b.matched.length - 1;
|
|
251
|
+
return aLastIndex > -1 && aLastIndex === bLastIndex && isSameRouteRecord(a.matched[aLastIndex], b.matched[bLastIndex]) && isSameRouteLocationParams(a.params, b.params) && stringifyQuery$1(a.query) === stringifyQuery$1(b.query) && a.hash === b.hash;
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* Check if two `RouteRecords` are equal. Takes into account aliases: they are
|
|
255
|
+
* considered equal to the `RouteRecord` they are aliasing.
|
|
256
|
+
*
|
|
257
|
+
* @param a - first {@link RouteRecord}
|
|
258
|
+
* @param b - second {@link RouteRecord}
|
|
259
|
+
*/
|
|
260
|
+
function isSameRouteRecord(a, b) {
|
|
261
|
+
return (a.aliasOf || a) === (b.aliasOf || b);
|
|
262
|
+
}
|
|
263
|
+
function isSameRouteLocationParams(a, b) {
|
|
264
|
+
if (Object.keys(a).length !== Object.keys(b).length) return false;
|
|
265
|
+
for (var key in a) if (!isSameRouteLocationParamsValue(a[key], b[key])) return false;
|
|
266
|
+
return true;
|
|
267
|
+
}
|
|
268
|
+
function isSameRouteLocationParamsValue(a, b) {
|
|
269
|
+
return isArray(a) ? isEquivalentArray(a, b) : isArray(b) ? isEquivalentArray(b, a) : a?.valueOf() === b?.valueOf();
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* Check if two arrays are the same or if an array with one single entry is the
|
|
273
|
+
* same as another primitive value. Used to check query and parameters
|
|
274
|
+
*
|
|
275
|
+
* @param a - array of values
|
|
276
|
+
* @param b - array of values or a single value
|
|
277
|
+
*/
|
|
278
|
+
function isEquivalentArray(a, b) {
|
|
279
|
+
return isArray(b) ? a.length === b.length && a.every((value, i) => value === b[i]) : a.length === 1 && a[0] === b;
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* Resolves a relative path that starts with `.`.
|
|
283
|
+
*
|
|
284
|
+
* @param to - path location we are resolving
|
|
285
|
+
* @param from - currentLocation.path, should start with `/`
|
|
286
|
+
*/
|
|
287
|
+
function resolveRelativePath(to, from) {
|
|
288
|
+
if (to.startsWith("/")) return to;
|
|
289
|
+
if (process.env.NODE_ENV !== "production" && !from.startsWith("/")) {
|
|
290
|
+
warn$1(`Cannot resolve a relative location without an absolute path. Trying to resolve "${to}" from "${from}". It should look like "/${from}".`);
|
|
291
|
+
return to;
|
|
292
|
+
}
|
|
293
|
+
if (!to) return from;
|
|
294
|
+
const fromSegments = from.split("/");
|
|
295
|
+
const toSegments = to.split("/");
|
|
296
|
+
const lastToSegment = toSegments[toSegments.length - 1];
|
|
297
|
+
if (lastToSegment === ".." || lastToSegment === ".") toSegments.push("");
|
|
298
|
+
let position = fromSegments.length - 1;
|
|
299
|
+
let toPosition;
|
|
300
|
+
let segment;
|
|
301
|
+
for (toPosition = 0; toPosition < toSegments.length; toPosition++) {
|
|
302
|
+
segment = toSegments[toPosition];
|
|
303
|
+
if (segment === ".") continue;
|
|
304
|
+
if (segment === "..") {
|
|
305
|
+
if (position > 1) position--;
|
|
306
|
+
} else break;
|
|
307
|
+
}
|
|
308
|
+
return fromSegments.slice(0, position).join("/") + "/" + toSegments.slice(toPosition).join("/");
|
|
309
|
+
}
|
|
310
|
+
/**
|
|
311
|
+
* Initial route location where the router is. Can be used in navigation guards
|
|
312
|
+
* to differentiate the initial navigation.
|
|
313
|
+
*
|
|
314
|
+
* @example
|
|
315
|
+
* ```js
|
|
316
|
+
* import { START_LOCATION } from 'vue-router'
|
|
317
|
+
*
|
|
318
|
+
* router.beforeEach((to, from) => {
|
|
319
|
+
* if (from === START_LOCATION) {
|
|
320
|
+
* // initial navigation
|
|
321
|
+
* }
|
|
322
|
+
* })
|
|
323
|
+
* ```
|
|
324
|
+
*/
|
|
325
|
+
const START_LOCATION_NORMALIZED = {
|
|
326
|
+
path: "/",
|
|
327
|
+
name: void 0,
|
|
328
|
+
params: {},
|
|
329
|
+
query: {},
|
|
330
|
+
hash: "",
|
|
331
|
+
fullPath: "/",
|
|
332
|
+
matched: [],
|
|
333
|
+
meta: {},
|
|
334
|
+
redirectedFrom: void 0
|
|
335
|
+
};
|
|
336
|
+
|
|
337
|
+
//#endregion
|
|
338
|
+
//#region src/history/common.ts
|
|
339
|
+
let NavigationType = /* @__PURE__ */ function(NavigationType$1) {
|
|
340
|
+
NavigationType$1["pop"] = "pop";
|
|
341
|
+
NavigationType$1["push"] = "push";
|
|
342
|
+
return NavigationType$1;
|
|
343
|
+
}({});
|
|
344
|
+
let NavigationDirection = /* @__PURE__ */ function(NavigationDirection$1) {
|
|
345
|
+
NavigationDirection$1["back"] = "back";
|
|
346
|
+
NavigationDirection$1["forward"] = "forward";
|
|
347
|
+
NavigationDirection$1["unknown"] = "";
|
|
348
|
+
return NavigationDirection$1;
|
|
349
|
+
}({});
|
|
350
|
+
/**
|
|
351
|
+
* Starting location for Histories
|
|
352
|
+
*/
|
|
353
|
+
const START = "";
|
|
354
|
+
/**
|
|
355
|
+
* Normalizes a base by removing any trailing slash and reading the base tag if
|
|
356
|
+
* present.
|
|
357
|
+
*
|
|
358
|
+
* @param base - base to normalize
|
|
359
|
+
*/
|
|
360
|
+
function normalizeBase(base) {
|
|
361
|
+
if (!base) if (isBrowser) {
|
|
362
|
+
const baseEl = document.querySelector("base");
|
|
363
|
+
base = baseEl && baseEl.getAttribute("href") || "/";
|
|
364
|
+
base = base.replace(/^\w+:\/\/[^\/]+/, "");
|
|
365
|
+
} else base = "/";
|
|
366
|
+
if (base[0] !== "/" && base[0] !== "#") base = "/" + base;
|
|
367
|
+
return removeTrailingSlash(base);
|
|
368
|
+
}
|
|
369
|
+
const BEFORE_HASH_RE = /^[^#]+#/;
|
|
370
|
+
function createHref(base, location) {
|
|
371
|
+
return base.replace(BEFORE_HASH_RE, "#") + location;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
//#endregion
|
|
375
|
+
//#region src/scrollBehavior.ts
|
|
376
|
+
function getElementPosition(el, offset) {
|
|
377
|
+
const docRect = document.documentElement.getBoundingClientRect();
|
|
378
|
+
const elRect = el.getBoundingClientRect();
|
|
379
|
+
return {
|
|
380
|
+
behavior: offset.behavior,
|
|
381
|
+
left: elRect.left - docRect.left - (offset.left || 0),
|
|
382
|
+
top: elRect.top - docRect.top - (offset.top || 0)
|
|
383
|
+
};
|
|
384
|
+
}
|
|
385
|
+
const computeScrollPosition = () => ({
|
|
386
|
+
left: window.scrollX,
|
|
387
|
+
top: window.scrollY
|
|
388
|
+
});
|
|
389
|
+
function scrollToPosition(position) {
|
|
390
|
+
let scrollToOptions;
|
|
391
|
+
if ("el" in position) {
|
|
392
|
+
const positionEl = position.el;
|
|
393
|
+
const isIdSelector = typeof positionEl === "string" && positionEl.startsWith("#");
|
|
394
|
+
/**
|
|
395
|
+
* `id`s can accept pretty much any characters, including CSS combinators
|
|
396
|
+
* like `>` or `~`. It's still possible to retrieve elements using
|
|
397
|
+
* `document.getElementById('~')` but it needs to be escaped when using
|
|
398
|
+
* `document.querySelector('#\\~')` for it to be valid. The only
|
|
399
|
+
* requirements for `id`s are them to be unique on the page and to not be
|
|
400
|
+
* empty (`id=""`). Because of that, when passing an id selector, it should
|
|
401
|
+
* be properly escaped for it to work with `querySelector`. We could check
|
|
402
|
+
* for the id selector to be simple (no CSS combinators `+ >~`) but that
|
|
403
|
+
* would make things inconsistent since they are valid characters for an
|
|
404
|
+
* `id` but would need to be escaped when using `querySelector`, breaking
|
|
405
|
+
* their usage and ending up in no selector returned. Selectors need to be
|
|
406
|
+
* escaped:
|
|
407
|
+
*
|
|
408
|
+
* - `#1-thing` becomes `#\31 -thing`
|
|
409
|
+
* - `#with~symbols` becomes `#with\\~symbols`
|
|
410
|
+
*
|
|
411
|
+
* - More information about the topic can be found at
|
|
412
|
+
* https://mathiasbynens.be/notes/html5-id-class.
|
|
413
|
+
* - Practical example: https://mathiasbynens.be/demo/html5-id
|
|
414
|
+
*/
|
|
415
|
+
if (process.env.NODE_ENV !== "production" && typeof position.el === "string") {
|
|
416
|
+
if (!isIdSelector || !document.getElementById(position.el.slice(1))) try {
|
|
417
|
+
const foundEl = document.querySelector(position.el);
|
|
418
|
+
if (isIdSelector && foundEl) {
|
|
419
|
+
warn$1(`The selector "${position.el}" should be passed as "el: document.querySelector('${position.el}')" because it starts with "#".`);
|
|
420
|
+
return;
|
|
421
|
+
}
|
|
422
|
+
} catch (err) {
|
|
423
|
+
warn$1(`The selector "${position.el}" is invalid. If you are using an id selector, make sure to escape it. You can find more information about escaping characters in selectors at https://mathiasbynens.be/notes/css-escapes or use CSS.escape (https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape).`);
|
|
424
|
+
return;
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
const el = typeof positionEl === "string" ? isIdSelector ? document.getElementById(positionEl.slice(1)) : document.querySelector(positionEl) : positionEl;
|
|
428
|
+
if (!el) {
|
|
429
|
+
process.env.NODE_ENV !== "production" && warn$1(`Couldn't find element using selector "${position.el}" returned by scrollBehavior.`);
|
|
430
|
+
return;
|
|
431
|
+
}
|
|
432
|
+
scrollToOptions = getElementPosition(el, position);
|
|
433
|
+
} else scrollToOptions = position;
|
|
434
|
+
if ("scrollBehavior" in document.documentElement.style) window.scrollTo(scrollToOptions);
|
|
435
|
+
else window.scrollTo(scrollToOptions.left != null ? scrollToOptions.left : window.scrollX, scrollToOptions.top != null ? scrollToOptions.top : window.scrollY);
|
|
436
|
+
}
|
|
437
|
+
function getScrollKey(path, delta) {
|
|
438
|
+
return (history.state ? history.state.position - delta : -1) + path;
|
|
439
|
+
}
|
|
440
|
+
const scrollPositions = /* @__PURE__ */ new Map();
|
|
441
|
+
function saveScrollPosition(key, scrollPosition) {
|
|
442
|
+
scrollPositions.set(key, scrollPosition);
|
|
443
|
+
}
|
|
444
|
+
function getSavedScrollPosition(key) {
|
|
445
|
+
const scroll = scrollPositions.get(key);
|
|
446
|
+
scrollPositions.delete(key);
|
|
447
|
+
return scroll;
|
|
448
|
+
}
|
|
449
|
+
/**
|
|
450
|
+
* ScrollBehavior instance used by the router to compute and restore the scroll
|
|
451
|
+
* position when navigating.
|
|
452
|
+
*/
|
|
453
|
+
|
|
454
|
+
//#endregion
|
|
455
|
+
//#region src/types/typeGuards.ts
|
|
456
|
+
function isRouteLocation(route) {
|
|
457
|
+
return typeof route === "string" || route && typeof route === "object";
|
|
458
|
+
}
|
|
459
|
+
function isRouteName(name) {
|
|
460
|
+
return typeof name === "string" || typeof name === "symbol";
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
//#endregion
|
|
464
|
+
//#region src/errors.ts
|
|
465
|
+
/**
|
|
466
|
+
* Flags so we can combine them when checking for multiple errors. This is the internal version of
|
|
467
|
+
* {@link NavigationFailureType}.
|
|
468
|
+
*
|
|
469
|
+
* @internal
|
|
470
|
+
*/
|
|
471
|
+
let ErrorTypes = /* @__PURE__ */ function(ErrorTypes$1) {
|
|
472
|
+
ErrorTypes$1[ErrorTypes$1["MATCHER_NOT_FOUND"] = 1] = "MATCHER_NOT_FOUND";
|
|
473
|
+
ErrorTypes$1[ErrorTypes$1["NAVIGATION_GUARD_REDIRECT"] = 2] = "NAVIGATION_GUARD_REDIRECT";
|
|
474
|
+
ErrorTypes$1[ErrorTypes$1["NAVIGATION_ABORTED"] = 4] = "NAVIGATION_ABORTED";
|
|
475
|
+
ErrorTypes$1[ErrorTypes$1["NAVIGATION_CANCELLED"] = 8] = "NAVIGATION_CANCELLED";
|
|
476
|
+
ErrorTypes$1[ErrorTypes$1["NAVIGATION_DUPLICATED"] = 16] = "NAVIGATION_DUPLICATED";
|
|
477
|
+
return ErrorTypes$1;
|
|
478
|
+
}({});
|
|
479
|
+
const NavigationFailureSymbol = Symbol(process.env.NODE_ENV !== "production" ? "navigation failure" : "");
|
|
480
|
+
/**
|
|
481
|
+
* Enumeration with all possible types for navigation failures. Can be passed to
|
|
482
|
+
* {@link isNavigationFailure} to check for specific failures.
|
|
483
|
+
*/
|
|
484
|
+
let NavigationFailureType = /* @__PURE__ */ function(NavigationFailureType$1) {
|
|
485
|
+
/**
|
|
486
|
+
* An aborted navigation is a navigation that failed because a navigation
|
|
487
|
+
* guard returned `false` or called `next(false)`
|
|
488
|
+
*/
|
|
489
|
+
NavigationFailureType$1[NavigationFailureType$1["aborted"] = 4] = "aborted";
|
|
490
|
+
/**
|
|
491
|
+
* A cancelled navigation is a navigation that failed because a more recent
|
|
492
|
+
* navigation finished started (not necessarily finished).
|
|
493
|
+
*/
|
|
494
|
+
NavigationFailureType$1[NavigationFailureType$1["cancelled"] = 8] = "cancelled";
|
|
495
|
+
/**
|
|
496
|
+
* A duplicated navigation is a navigation that failed because it was
|
|
497
|
+
* initiated while already being at the exact same location.
|
|
498
|
+
*/
|
|
499
|
+
NavigationFailureType$1[NavigationFailureType$1["duplicated"] = 16] = "duplicated";
|
|
500
|
+
return NavigationFailureType$1;
|
|
501
|
+
}({});
|
|
502
|
+
const ErrorTypeMessages = {
|
|
503
|
+
[ErrorTypes.MATCHER_NOT_FOUND]({ location, currentLocation }) {
|
|
504
|
+
return `No match for\n ${JSON.stringify(location)}${currentLocation ? "\nwhile being at\n" + JSON.stringify(currentLocation) : ""}`;
|
|
505
|
+
},
|
|
506
|
+
[ErrorTypes.NAVIGATION_GUARD_REDIRECT]({ from, to }) {
|
|
507
|
+
return `Redirected from "${from.fullPath}" to "${stringifyRoute(to)}" via a navigation guard.`;
|
|
508
|
+
},
|
|
509
|
+
[ErrorTypes.NAVIGATION_ABORTED]({ from, to }) {
|
|
510
|
+
return `Navigation aborted from "${from.fullPath}" to "${to.fullPath}" via a navigation guard.`;
|
|
511
|
+
},
|
|
512
|
+
[ErrorTypes.NAVIGATION_CANCELLED]({ from, to }) {
|
|
513
|
+
return `Navigation cancelled from "${from.fullPath}" to "${to.fullPath}" with a new navigation.`;
|
|
514
|
+
},
|
|
515
|
+
[ErrorTypes.NAVIGATION_DUPLICATED]({ from, to }) {
|
|
516
|
+
return `Avoided redundant navigation to current location: "${from.fullPath}".`;
|
|
517
|
+
}
|
|
518
|
+
};
|
|
519
|
+
/**
|
|
520
|
+
* Creates a typed NavigationFailure object.
|
|
521
|
+
* @internal
|
|
522
|
+
* @param type - NavigationFailureType
|
|
523
|
+
* @param params - { from, to }
|
|
524
|
+
*/
|
|
525
|
+
function createRouterError(type, params) {
|
|
526
|
+
if (process.env.NODE_ENV !== "production" || false) return assign(new Error(ErrorTypeMessages[type](params)), {
|
|
527
|
+
type,
|
|
528
|
+
[NavigationFailureSymbol]: true
|
|
529
|
+
}, params);
|
|
530
|
+
else return assign(/* @__PURE__ */ new Error(), {
|
|
531
|
+
type,
|
|
532
|
+
[NavigationFailureSymbol]: true
|
|
533
|
+
}, params);
|
|
534
|
+
}
|
|
535
|
+
function isNavigationFailure(error, type) {
|
|
536
|
+
return error instanceof Error && NavigationFailureSymbol in error && (type == null || !!(error.type & type));
|
|
537
|
+
}
|
|
538
|
+
const propertiesToLog = [
|
|
539
|
+
"params",
|
|
540
|
+
"query",
|
|
541
|
+
"hash"
|
|
542
|
+
];
|
|
543
|
+
function stringifyRoute(to) {
|
|
544
|
+
if (typeof to === "string") return to;
|
|
545
|
+
if (to.path != null) return to.path;
|
|
546
|
+
const location = {};
|
|
547
|
+
for (const key of propertiesToLog) if (key in to) location[key] = to[key];
|
|
548
|
+
return JSON.stringify(location, null, 2);
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
//#endregion
|
|
552
|
+
//#region src/query.ts
|
|
553
|
+
/**
|
|
554
|
+
* Transforms a queryString into a {@link LocationQuery} object. Accept both, a
|
|
555
|
+
* version with the leading `?` and without Should work as URLSearchParams
|
|
556
|
+
|
|
557
|
+
* @internal
|
|
558
|
+
*
|
|
559
|
+
* @param search - search string to parse
|
|
560
|
+
* @returns a query object
|
|
561
|
+
*/
|
|
562
|
+
function parseQuery(search) {
|
|
563
|
+
const query = {};
|
|
564
|
+
if (search === "" || search === "?") return query;
|
|
565
|
+
const searchParams = (search[0] === "?" ? search.slice(1) : search).split("&");
|
|
566
|
+
for (let i = 0; i < searchParams.length; ++i) {
|
|
567
|
+
const searchParam = searchParams[i].replace(PLUS_RE, " ");
|
|
568
|
+
const eqPos = searchParam.indexOf("=");
|
|
569
|
+
const key = decode(eqPos < 0 ? searchParam : searchParam.slice(0, eqPos));
|
|
570
|
+
const value = eqPos < 0 ? null : decode(searchParam.slice(eqPos + 1));
|
|
571
|
+
if (key in query) {
|
|
572
|
+
let currentValue = query[key];
|
|
573
|
+
if (!isArray(currentValue)) currentValue = query[key] = [currentValue];
|
|
574
|
+
currentValue.push(value);
|
|
575
|
+
} else query[key] = value;
|
|
576
|
+
}
|
|
577
|
+
return query;
|
|
578
|
+
}
|
|
579
|
+
/**
|
|
580
|
+
* Stringifies a {@link LocationQueryRaw} object. Like `URLSearchParams`, it
|
|
581
|
+
* doesn't prepend a `?`
|
|
582
|
+
*
|
|
583
|
+
* @internal
|
|
584
|
+
*
|
|
585
|
+
* @param query - query object to stringify
|
|
586
|
+
* @returns string version of the query without the leading `?`
|
|
587
|
+
*/
|
|
588
|
+
function stringifyQuery(query) {
|
|
589
|
+
let search = "";
|
|
590
|
+
for (let key in query) {
|
|
591
|
+
const value = query[key];
|
|
592
|
+
key = encodeQueryKey(key);
|
|
593
|
+
if (value == null) {
|
|
594
|
+
if (value !== void 0) search += (search.length ? "&" : "") + key;
|
|
595
|
+
continue;
|
|
596
|
+
}
|
|
597
|
+
(isArray(value) ? value.map((v) => v && encodeQueryValue(v)) : [value && encodeQueryValue(value)]).forEach((value$1) => {
|
|
598
|
+
if (value$1 !== void 0) {
|
|
599
|
+
search += (search.length ? "&" : "") + key;
|
|
600
|
+
if (value$1 != null) search += "=" + value$1;
|
|
601
|
+
}
|
|
602
|
+
});
|
|
603
|
+
}
|
|
604
|
+
return search;
|
|
605
|
+
}
|
|
606
|
+
/**
|
|
607
|
+
* Transforms a {@link LocationQueryRaw} into a {@link LocationQuery} by casting
|
|
608
|
+
* numbers into strings, removing keys with an undefined value and replacing
|
|
609
|
+
* undefined with null in arrays
|
|
610
|
+
*
|
|
611
|
+
* @param query - query object to normalize
|
|
612
|
+
* @returns a normalized query object
|
|
613
|
+
*/
|
|
614
|
+
function normalizeQuery(query) {
|
|
615
|
+
const normalizedQuery = {};
|
|
616
|
+
for (const key in query) {
|
|
617
|
+
const value = query[key];
|
|
618
|
+
if (value !== void 0) normalizedQuery[key] = isArray(value) ? value.map((v) => v == null ? null : "" + v) : value == null ? value : "" + value;
|
|
619
|
+
}
|
|
620
|
+
return normalizedQuery;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
//#endregion
|
|
624
|
+
//#region src/injectionSymbols.ts
|
|
625
|
+
/**
|
|
626
|
+
* RouteRecord being rendered by the closest ancestor Router View. Used for
|
|
627
|
+
* `onBeforeRouteUpdate` and `onBeforeRouteLeave`. rvlm stands for Router View
|
|
628
|
+
* Location Matched
|
|
629
|
+
*
|
|
630
|
+
* @internal
|
|
631
|
+
*/
|
|
632
|
+
const matchedRouteKey = Symbol(process.env.NODE_ENV !== "production" ? "router view location matched" : "");
|
|
633
|
+
/**
|
|
634
|
+
* Allows overriding the router view depth to control which component in
|
|
635
|
+
* `matched` is rendered. rvd stands for Router View Depth
|
|
636
|
+
*
|
|
637
|
+
* @internal
|
|
638
|
+
*/
|
|
639
|
+
const viewDepthKey = Symbol(process.env.NODE_ENV !== "production" ? "router view depth" : "");
|
|
640
|
+
/**
|
|
641
|
+
* Allows overriding the router instance returned by `useRouter` in tests. r
|
|
642
|
+
* stands for router
|
|
643
|
+
*
|
|
644
|
+
* @internal
|
|
645
|
+
*/
|
|
646
|
+
const routerKey = Symbol(process.env.NODE_ENV !== "production" ? "router" : "");
|
|
647
|
+
/**
|
|
648
|
+
* Allows overriding the current route returned by `useRoute` in tests. rl
|
|
649
|
+
* stands for route location
|
|
650
|
+
*
|
|
651
|
+
* @internal
|
|
652
|
+
*/
|
|
653
|
+
const routeLocationKey = Symbol(process.env.NODE_ENV !== "production" ? "route location" : "");
|
|
654
|
+
/**
|
|
655
|
+
* Allows overriding the current route used by router-view. Internally this is
|
|
656
|
+
* used when the `route` prop is passed.
|
|
657
|
+
*
|
|
658
|
+
* @internal
|
|
659
|
+
*/
|
|
660
|
+
const routerViewLocationKey = Symbol(process.env.NODE_ENV !== "production" ? "router view location" : "");
|
|
661
|
+
|
|
662
|
+
//#endregion
|
|
663
|
+
//#region src/utils/callbacks.ts
|
|
664
|
+
/**
|
|
665
|
+
* Create a list of callbacks that can be reset. Used to create before and after navigation guards list
|
|
666
|
+
*/
|
|
667
|
+
function useCallbacks() {
|
|
668
|
+
let handlers = [];
|
|
669
|
+
function add(handler) {
|
|
670
|
+
handlers.push(handler);
|
|
671
|
+
return () => {
|
|
672
|
+
const i = handlers.indexOf(handler);
|
|
673
|
+
if (i > -1) handlers.splice(i, 1);
|
|
674
|
+
};
|
|
675
|
+
}
|
|
676
|
+
function reset() {
|
|
677
|
+
handlers = [];
|
|
678
|
+
}
|
|
679
|
+
return {
|
|
680
|
+
add,
|
|
681
|
+
list: () => handlers.slice(),
|
|
682
|
+
reset
|
|
683
|
+
};
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
//#endregion
|
|
687
|
+
//#region src/navigationGuards.ts
|
|
688
|
+
function registerGuard(record, name, guard) {
|
|
689
|
+
const removeFromList = () => {
|
|
690
|
+
record[name].delete(guard);
|
|
691
|
+
};
|
|
692
|
+
onUnmounted(removeFromList);
|
|
693
|
+
onDeactivated(removeFromList);
|
|
694
|
+
onActivated(() => {
|
|
695
|
+
record[name].add(guard);
|
|
696
|
+
});
|
|
697
|
+
record[name].add(guard);
|
|
698
|
+
}
|
|
699
|
+
/**
|
|
700
|
+
* Add a navigation guard that triggers whenever the component for the current
|
|
701
|
+
* location is about to be left. Similar to {@link beforeRouteLeave} but can be
|
|
702
|
+
* used in any component. The guard is removed when the component is unmounted.
|
|
703
|
+
*
|
|
704
|
+
* @param leaveGuard - {@link NavigationGuard}
|
|
705
|
+
*/
|
|
706
|
+
function onBeforeRouteLeave(leaveGuard) {
|
|
707
|
+
if (process.env.NODE_ENV !== "production" && !getCurrentInstance()) {
|
|
708
|
+
warn$1("getCurrentInstance() returned null. onBeforeRouteLeave() must be called at the top of a setup function");
|
|
709
|
+
return;
|
|
710
|
+
}
|
|
711
|
+
const activeRecord = inject(matchedRouteKey, {}).value;
|
|
712
|
+
if (!activeRecord) {
|
|
713
|
+
process.env.NODE_ENV !== "production" && warn$1("No active route record was found when calling `onBeforeRouteLeave()`. Make sure you call this function inside a component child of <router-view>. Maybe you called it inside of App.vue?");
|
|
714
|
+
return;
|
|
715
|
+
}
|
|
716
|
+
registerGuard(activeRecord, "leaveGuards", leaveGuard);
|
|
717
|
+
}
|
|
718
|
+
/**
|
|
719
|
+
* Add a navigation guard that triggers whenever the current location is about
|
|
720
|
+
* to be updated. Similar to {@link beforeRouteUpdate} but can be used in any
|
|
721
|
+
* component. The guard is removed when the component is unmounted.
|
|
722
|
+
*
|
|
723
|
+
* @param updateGuard - {@link NavigationGuard}
|
|
724
|
+
*/
|
|
725
|
+
function onBeforeRouteUpdate(updateGuard) {
|
|
726
|
+
if (process.env.NODE_ENV !== "production" && !getCurrentInstance()) {
|
|
727
|
+
warn$1("getCurrentInstance() returned null. onBeforeRouteUpdate() must be called at the top of a setup function");
|
|
728
|
+
return;
|
|
729
|
+
}
|
|
730
|
+
const activeRecord = inject(matchedRouteKey, {}).value;
|
|
731
|
+
if (!activeRecord) {
|
|
732
|
+
process.env.NODE_ENV !== "production" && warn$1("No active route record was found when calling `onBeforeRouteUpdate()`. Make sure you call this function inside a component child of <router-view>. Maybe you called it inside of App.vue?");
|
|
733
|
+
return;
|
|
734
|
+
}
|
|
735
|
+
registerGuard(activeRecord, "updateGuards", updateGuard);
|
|
736
|
+
}
|
|
737
|
+
function guardToPromiseFn(guard, to, from, record, name, runWithContext = (fn) => fn()) {
|
|
738
|
+
const enterCallbackArray = record && (record.enterCallbacks[name] = record.enterCallbacks[name] || []);
|
|
739
|
+
return () => new Promise((resolve, reject) => {
|
|
740
|
+
const next = (valid) => {
|
|
741
|
+
if (valid === false) reject(createRouterError(ErrorTypes.NAVIGATION_ABORTED, {
|
|
742
|
+
from,
|
|
743
|
+
to
|
|
744
|
+
}));
|
|
745
|
+
else if (valid instanceof Error) reject(valid);
|
|
746
|
+
else if (isRouteLocation(valid)) reject(createRouterError(ErrorTypes.NAVIGATION_GUARD_REDIRECT, {
|
|
747
|
+
from: to,
|
|
748
|
+
to: valid
|
|
749
|
+
}));
|
|
750
|
+
else {
|
|
751
|
+
if (enterCallbackArray && record.enterCallbacks[name] === enterCallbackArray && typeof valid === "function") enterCallbackArray.push(valid);
|
|
752
|
+
resolve();
|
|
753
|
+
}
|
|
754
|
+
};
|
|
755
|
+
const guardReturn = runWithContext(() => guard.call(record && record.instances[name], to, from, process.env.NODE_ENV !== "production" ? canOnlyBeCalledOnce(next, to, from) : next));
|
|
756
|
+
let guardCall = Promise.resolve(guardReturn);
|
|
757
|
+
if (guard.length < 3) guardCall = guardCall.then(next);
|
|
758
|
+
if (process.env.NODE_ENV !== "production" && guard.length > 2) {
|
|
759
|
+
const message = `The "next" callback was never called inside of ${guard.name ? "\"" + guard.name + "\"" : ""}:\n${guard.toString()}\n. If you are returning a value instead of calling "next", make sure to remove the "next" parameter from your function.`;
|
|
760
|
+
if (typeof guardReturn === "object" && "then" in guardReturn) guardCall = guardCall.then((resolvedValue) => {
|
|
761
|
+
if (!next._called) {
|
|
762
|
+
warn$1(message);
|
|
763
|
+
return Promise.reject(/* @__PURE__ */ new Error("Invalid navigation guard"));
|
|
764
|
+
}
|
|
765
|
+
return resolvedValue;
|
|
766
|
+
});
|
|
767
|
+
else if (guardReturn !== void 0) {
|
|
768
|
+
if (!next._called) {
|
|
769
|
+
warn$1(message);
|
|
770
|
+
reject(/* @__PURE__ */ new Error("Invalid navigation guard"));
|
|
771
|
+
return;
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
guardCall.catch((err) => reject(err));
|
|
776
|
+
});
|
|
777
|
+
}
|
|
778
|
+
function canOnlyBeCalledOnce(next, to, from) {
|
|
779
|
+
let called = 0;
|
|
780
|
+
return function() {
|
|
781
|
+
if (called++ === 1) warn$1(`The "next" callback was called more than once in one navigation guard when going from "${from.fullPath}" to "${to.fullPath}". It should be called exactly one time in each navigation guard. This will fail in production.`);
|
|
782
|
+
next._called = true;
|
|
783
|
+
if (called === 1) next.apply(null, arguments);
|
|
784
|
+
};
|
|
785
|
+
}
|
|
786
|
+
function extractComponentsGuards(matched, guardType, to, from, runWithContext = (fn) => fn()) {
|
|
787
|
+
const guards = [];
|
|
788
|
+
for (const record of matched) {
|
|
789
|
+
if (process.env.NODE_ENV !== "production" && !record.components && record.children && !record.children.length) warn$1(`Record with path "${record.path}" is either missing a "component(s)" or "children" property.`);
|
|
790
|
+
for (const name in record.components) {
|
|
791
|
+
let rawComponent = record.components[name];
|
|
792
|
+
if (process.env.NODE_ENV !== "production") {
|
|
793
|
+
if (!rawComponent || typeof rawComponent !== "object" && typeof rawComponent !== "function") {
|
|
794
|
+
warn$1(`Component "${name}" in record with path "${record.path}" is not a valid component. Received "${String(rawComponent)}".`);
|
|
795
|
+
throw new Error("Invalid route component");
|
|
796
|
+
} else if ("then" in rawComponent) {
|
|
797
|
+
warn$1(`Component "${name}" in record with path "${record.path}" is a Promise instead of a function that returns a Promise. Did you write "import('./MyPage.vue')" instead of "() => import('./MyPage.vue')" ? This will break in production if not fixed.`);
|
|
798
|
+
const promise = rawComponent;
|
|
799
|
+
rawComponent = () => promise;
|
|
800
|
+
} else if (rawComponent.__asyncLoader && !rawComponent.__warnedDefineAsync) {
|
|
801
|
+
rawComponent.__warnedDefineAsync = true;
|
|
802
|
+
warn$1(`Component "${name}" in record with path "${record.path}" is defined using "defineAsyncComponent()". Write "() => import('./MyPage.vue')" instead of "defineAsyncComponent(() => import('./MyPage.vue'))".`);
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
if (guardType !== "beforeRouteEnter" && !record.instances[name]) continue;
|
|
806
|
+
if (isRouteComponent(rawComponent)) {
|
|
807
|
+
const guard = (rawComponent.__vccOpts || rawComponent)[guardType];
|
|
808
|
+
guard && guards.push(guardToPromiseFn(guard, to, from, record, name, runWithContext));
|
|
809
|
+
} else {
|
|
810
|
+
let componentPromise = rawComponent();
|
|
811
|
+
if (process.env.NODE_ENV !== "production" && !("catch" in componentPromise)) {
|
|
812
|
+
warn$1(`Component "${name}" in record with path "${record.path}" is a function that does not return a Promise. If you were passing a functional component, make sure to add a "displayName" to the component. This will break in production if not fixed.`);
|
|
813
|
+
componentPromise = Promise.resolve(componentPromise);
|
|
814
|
+
}
|
|
815
|
+
guards.push(() => componentPromise.then((resolved) => {
|
|
816
|
+
if (!resolved) throw new Error(`Couldn't resolve component "${name}" at "${record.path}"`);
|
|
817
|
+
const resolvedComponent = isESModule(resolved) ? resolved.default : resolved;
|
|
818
|
+
record.mods[name] = resolved;
|
|
819
|
+
record.components[name] = resolvedComponent;
|
|
820
|
+
const guard = (resolvedComponent.__vccOpts || resolvedComponent)[guardType];
|
|
821
|
+
return guard && guardToPromiseFn(guard, to, from, record, name, runWithContext)();
|
|
822
|
+
}));
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
return guards;
|
|
827
|
+
}
|
|
828
|
+
/**
|
|
829
|
+
* Ensures a route is loaded, so it can be passed as o prop to `<RouterView>`.
|
|
830
|
+
*
|
|
831
|
+
* @param route - resolved route to load
|
|
832
|
+
*/
|
|
833
|
+
function loadRouteLocation(route) {
|
|
834
|
+
return route.matched.every((record) => record.redirect) ? Promise.reject(/* @__PURE__ */ new Error("Cannot load a route that redirects.")) : Promise.all(route.matched.map((record) => record.components && Promise.all(Object.keys(record.components).reduce((promises, name) => {
|
|
835
|
+
const rawComponent = record.components[name];
|
|
836
|
+
if (typeof rawComponent === "function" && !("displayName" in rawComponent)) promises.push(rawComponent().then((resolved) => {
|
|
837
|
+
if (!resolved) return Promise.reject(/* @__PURE__ */ new Error(`Couldn't resolve component "${name}" at "${record.path}". Ensure you passed a function that returns a promise.`));
|
|
838
|
+
const resolvedComponent = isESModule(resolved) ? resolved.default : resolved;
|
|
839
|
+
record.mods[name] = resolved;
|
|
840
|
+
record.components[name] = resolvedComponent;
|
|
841
|
+
}));
|
|
842
|
+
return promises;
|
|
843
|
+
}, [])))).then(() => route);
|
|
844
|
+
}
|
|
845
|
+
/**
|
|
846
|
+
* Split the leaving, updating, and entering records.
|
|
847
|
+
* @internal
|
|
848
|
+
*
|
|
849
|
+
* @param to - Location we are navigating to
|
|
850
|
+
* @param from - Location we are navigating from
|
|
851
|
+
*/
|
|
852
|
+
function extractChangingRecords(to, from) {
|
|
853
|
+
const leavingRecords = [];
|
|
854
|
+
const updatingRecords = [];
|
|
855
|
+
const enteringRecords = [];
|
|
856
|
+
const len = Math.max(from.matched.length, to.matched.length);
|
|
857
|
+
for (let i = 0; i < len; i++) {
|
|
858
|
+
const recordFrom = from.matched[i];
|
|
859
|
+
if (recordFrom) if (to.matched.find((record) => isSameRouteRecord(record, recordFrom))) updatingRecords.push(recordFrom);
|
|
860
|
+
else leavingRecords.push(recordFrom);
|
|
861
|
+
const recordTo = to.matched[i];
|
|
862
|
+
if (recordTo) {
|
|
863
|
+
if (!from.matched.find((record) => isSameRouteRecord(record, recordTo))) enteringRecords.push(recordTo);
|
|
864
|
+
}
|
|
865
|
+
}
|
|
866
|
+
return [
|
|
867
|
+
leavingRecords,
|
|
868
|
+
updatingRecords,
|
|
869
|
+
enteringRecords
|
|
870
|
+
];
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
//#endregion
|
|
874
|
+
//#region src/devtools.ts
|
|
875
|
+
/**
|
|
876
|
+
* Copies a route location and removes any problematic properties that cannot be shown in devtools (e.g. Vue instances).
|
|
877
|
+
*
|
|
878
|
+
* @param routeLocation - routeLocation to format
|
|
879
|
+
* @param tooltip - optional tooltip
|
|
880
|
+
* @returns a copy of the routeLocation
|
|
881
|
+
*/
|
|
882
|
+
function formatRouteLocation(routeLocation, tooltip) {
|
|
883
|
+
const copy = assign({}, routeLocation, { matched: routeLocation.matched.map((matched) => omit(matched, [
|
|
884
|
+
"instances",
|
|
885
|
+
"children",
|
|
886
|
+
"aliasOf"
|
|
887
|
+
])) });
|
|
888
|
+
return { _custom: {
|
|
889
|
+
type: null,
|
|
890
|
+
readOnly: true,
|
|
891
|
+
display: routeLocation.fullPath,
|
|
892
|
+
tooltip,
|
|
893
|
+
value: copy
|
|
894
|
+
} };
|
|
895
|
+
}
|
|
896
|
+
function formatDisplay(display) {
|
|
897
|
+
return { _custom: { display } };
|
|
898
|
+
}
|
|
899
|
+
let routerId = 0;
|
|
900
|
+
function addDevtools(app, router, matcher) {
|
|
901
|
+
if (router.__hasDevtools) return;
|
|
902
|
+
router.__hasDevtools = true;
|
|
903
|
+
const id = routerId++;
|
|
904
|
+
setupDevtoolsPlugin({
|
|
905
|
+
id: "org.vuejs.router" + (id ? "." + id : ""),
|
|
906
|
+
label: "Vue Router",
|
|
907
|
+
packageName: "vue-router",
|
|
908
|
+
homepage: "https://router.vuejs.org",
|
|
909
|
+
logo: "https://router.vuejs.org/logo.png",
|
|
910
|
+
componentStateTypes: ["Routing"],
|
|
911
|
+
app
|
|
912
|
+
}, (api) => {
|
|
913
|
+
if (typeof api.now !== "function") warn$1("[Vue Router]: You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.");
|
|
914
|
+
api.on.inspectComponent((payload, ctx) => {
|
|
915
|
+
if (payload.instanceData) payload.instanceData.state.push({
|
|
916
|
+
type: "Routing",
|
|
917
|
+
key: "$route",
|
|
918
|
+
editable: false,
|
|
919
|
+
value: formatRouteLocation(router.currentRoute.value, "Current Route")
|
|
920
|
+
});
|
|
921
|
+
});
|
|
922
|
+
api.on.visitComponentTree(({ treeNode: node, componentInstance }) => {
|
|
923
|
+
if (componentInstance.__vrv_devtools) {
|
|
924
|
+
const info = componentInstance.__vrv_devtools;
|
|
925
|
+
node.tags.push({
|
|
926
|
+
label: (info.name ? `${info.name.toString()}: ` : "") + info.path,
|
|
927
|
+
textColor: 0,
|
|
928
|
+
tooltip: "This component is rendered by <router-view>",
|
|
929
|
+
backgroundColor: PINK_500
|
|
930
|
+
});
|
|
931
|
+
}
|
|
932
|
+
if (isArray(componentInstance.__vrl_devtools)) {
|
|
933
|
+
componentInstance.__devtoolsApi = api;
|
|
934
|
+
componentInstance.__vrl_devtools.forEach((devtoolsData) => {
|
|
935
|
+
let label = devtoolsData.route.path;
|
|
936
|
+
let backgroundColor = ORANGE_400;
|
|
937
|
+
let tooltip = "";
|
|
938
|
+
let textColor = 0;
|
|
939
|
+
if (devtoolsData.error) {
|
|
940
|
+
label = devtoolsData.error;
|
|
941
|
+
backgroundColor = RED_100;
|
|
942
|
+
textColor = RED_700;
|
|
943
|
+
} else if (devtoolsData.isExactActive) {
|
|
944
|
+
backgroundColor = LIME_500;
|
|
945
|
+
tooltip = "This is exactly active";
|
|
946
|
+
} else if (devtoolsData.isActive) {
|
|
947
|
+
backgroundColor = BLUE_600;
|
|
948
|
+
tooltip = "This link is active";
|
|
949
|
+
}
|
|
950
|
+
node.tags.push({
|
|
951
|
+
label,
|
|
952
|
+
textColor,
|
|
953
|
+
tooltip,
|
|
954
|
+
backgroundColor
|
|
955
|
+
});
|
|
956
|
+
});
|
|
957
|
+
}
|
|
958
|
+
});
|
|
959
|
+
watch(router.currentRoute, () => {
|
|
960
|
+
refreshRoutesView();
|
|
961
|
+
api.notifyComponentUpdate();
|
|
962
|
+
api.sendInspectorTree(routerInspectorId);
|
|
963
|
+
api.sendInspectorState(routerInspectorId);
|
|
964
|
+
});
|
|
965
|
+
const navigationsLayerId = "router:navigations:" + id;
|
|
966
|
+
api.addTimelineLayer({
|
|
967
|
+
id: navigationsLayerId,
|
|
968
|
+
label: `Router${id ? " " + id : ""} Navigations`,
|
|
969
|
+
color: 4237508
|
|
970
|
+
});
|
|
971
|
+
router.onError((error, to) => {
|
|
972
|
+
api.addTimelineEvent({
|
|
973
|
+
layerId: navigationsLayerId,
|
|
974
|
+
event: {
|
|
975
|
+
title: "Error during Navigation",
|
|
976
|
+
subtitle: to.fullPath,
|
|
977
|
+
logType: "error",
|
|
978
|
+
time: api.now(),
|
|
979
|
+
data: { error },
|
|
980
|
+
groupId: to.meta.__navigationId
|
|
981
|
+
}
|
|
982
|
+
});
|
|
983
|
+
});
|
|
984
|
+
let navigationId = 0;
|
|
985
|
+
router.beforeEach((to, from) => {
|
|
986
|
+
const data = {
|
|
987
|
+
guard: formatDisplay("beforeEach"),
|
|
988
|
+
from: formatRouteLocation(from, "Current Location during this navigation"),
|
|
989
|
+
to: formatRouteLocation(to, "Target location")
|
|
990
|
+
};
|
|
991
|
+
Object.defineProperty(to.meta, "__navigationId", { value: navigationId++ });
|
|
992
|
+
api.addTimelineEvent({
|
|
993
|
+
layerId: navigationsLayerId,
|
|
994
|
+
event: {
|
|
995
|
+
time: api.now(),
|
|
996
|
+
title: "Start of navigation",
|
|
997
|
+
subtitle: to.fullPath,
|
|
998
|
+
data,
|
|
999
|
+
groupId: to.meta.__navigationId
|
|
1000
|
+
}
|
|
1001
|
+
});
|
|
1002
|
+
});
|
|
1003
|
+
router.afterEach((to, from, failure) => {
|
|
1004
|
+
const data = { guard: formatDisplay("afterEach") };
|
|
1005
|
+
if (failure) {
|
|
1006
|
+
data.failure = { _custom: {
|
|
1007
|
+
type: Error,
|
|
1008
|
+
readOnly: true,
|
|
1009
|
+
display: failure ? failure.message : "",
|
|
1010
|
+
tooltip: "Navigation Failure",
|
|
1011
|
+
value: failure
|
|
1012
|
+
} };
|
|
1013
|
+
data.status = formatDisplay("❌");
|
|
1014
|
+
} else data.status = formatDisplay("✅");
|
|
1015
|
+
data.from = formatRouteLocation(from, "Current Location during this navigation");
|
|
1016
|
+
data.to = formatRouteLocation(to, "Target location");
|
|
1017
|
+
api.addTimelineEvent({
|
|
1018
|
+
layerId: navigationsLayerId,
|
|
1019
|
+
event: {
|
|
1020
|
+
title: "End of navigation",
|
|
1021
|
+
subtitle: to.fullPath,
|
|
1022
|
+
time: api.now(),
|
|
1023
|
+
data,
|
|
1024
|
+
logType: failure ? "warning" : "default",
|
|
1025
|
+
groupId: to.meta.__navigationId
|
|
1026
|
+
}
|
|
1027
|
+
});
|
|
1028
|
+
});
|
|
1029
|
+
/**
|
|
1030
|
+
* Inspector of Existing routes
|
|
1031
|
+
*/
|
|
1032
|
+
const routerInspectorId = "router-inspector:" + id;
|
|
1033
|
+
api.addInspector({
|
|
1034
|
+
id: routerInspectorId,
|
|
1035
|
+
label: "Routes" + (id ? " " + id : ""),
|
|
1036
|
+
icon: "book",
|
|
1037
|
+
treeFilterPlaceholder: "Search routes"
|
|
1038
|
+
});
|
|
1039
|
+
function refreshRoutesView() {
|
|
1040
|
+
if (!activeRoutesPayload) return;
|
|
1041
|
+
const payload = activeRoutesPayload;
|
|
1042
|
+
let routes = matcher.getRoutes().filter((route) => !route.parent || !route.parent.record.components);
|
|
1043
|
+
routes.forEach(resetMatchStateOnRouteRecord);
|
|
1044
|
+
if (payload.filter) routes = routes.filter((route) => isRouteMatching(route, payload.filter.toLowerCase()));
|
|
1045
|
+
routes.forEach((route) => markRouteRecordActive(route, router.currentRoute.value));
|
|
1046
|
+
payload.rootNodes = routes.map(formatRouteRecordForInspector);
|
|
1047
|
+
}
|
|
1048
|
+
let activeRoutesPayload;
|
|
1049
|
+
api.on.getInspectorTree((payload) => {
|
|
1050
|
+
activeRoutesPayload = payload;
|
|
1051
|
+
if (payload.app === app && payload.inspectorId === routerInspectorId) refreshRoutesView();
|
|
1052
|
+
});
|
|
1053
|
+
/**
|
|
1054
|
+
* Display information about the currently selected route record
|
|
1055
|
+
*/
|
|
1056
|
+
api.on.getInspectorState((payload) => {
|
|
1057
|
+
if (payload.app === app && payload.inspectorId === routerInspectorId) {
|
|
1058
|
+
const route = matcher.getRoutes().find((route$1) => route$1.record.__vd_id === payload.nodeId);
|
|
1059
|
+
if (route) payload.state = { options: formatRouteRecordMatcherForStateInspector(route) };
|
|
1060
|
+
}
|
|
1061
|
+
});
|
|
1062
|
+
api.sendInspectorTree(routerInspectorId);
|
|
1063
|
+
api.sendInspectorState(routerInspectorId);
|
|
1064
|
+
});
|
|
1065
|
+
}
|
|
1066
|
+
function modifierForKey(key) {
|
|
1067
|
+
if (key.optional) return key.repeatable ? "*" : "?";
|
|
1068
|
+
else return key.repeatable ? "+" : "";
|
|
1069
|
+
}
|
|
1070
|
+
function formatRouteRecordMatcherForStateInspector(route) {
|
|
1071
|
+
const { record } = route;
|
|
1072
|
+
const fields = [{
|
|
1073
|
+
editable: false,
|
|
1074
|
+
key: "path",
|
|
1075
|
+
value: record.path
|
|
1076
|
+
}];
|
|
1077
|
+
if (record.name != null) fields.push({
|
|
1078
|
+
editable: false,
|
|
1079
|
+
key: "name",
|
|
1080
|
+
value: record.name
|
|
1081
|
+
});
|
|
1082
|
+
fields.push({
|
|
1083
|
+
editable: false,
|
|
1084
|
+
key: "regexp",
|
|
1085
|
+
value: route.re
|
|
1086
|
+
});
|
|
1087
|
+
if (route.keys.length) fields.push({
|
|
1088
|
+
editable: false,
|
|
1089
|
+
key: "keys",
|
|
1090
|
+
value: { _custom: {
|
|
1091
|
+
type: null,
|
|
1092
|
+
readOnly: true,
|
|
1093
|
+
display: route.keys.map((key) => `${key.name}${modifierForKey(key)}`).join(" "),
|
|
1094
|
+
tooltip: "Param keys",
|
|
1095
|
+
value: route.keys
|
|
1096
|
+
} }
|
|
1097
|
+
});
|
|
1098
|
+
if (record.redirect != null) fields.push({
|
|
1099
|
+
editable: false,
|
|
1100
|
+
key: "redirect",
|
|
1101
|
+
value: record.redirect
|
|
1102
|
+
});
|
|
1103
|
+
if (route.alias.length) fields.push({
|
|
1104
|
+
editable: false,
|
|
1105
|
+
key: "aliases",
|
|
1106
|
+
value: route.alias.map((alias) => alias.record.path)
|
|
1107
|
+
});
|
|
1108
|
+
if (Object.keys(route.record.meta).length) fields.push({
|
|
1109
|
+
editable: false,
|
|
1110
|
+
key: "meta",
|
|
1111
|
+
value: route.record.meta
|
|
1112
|
+
});
|
|
1113
|
+
fields.push({
|
|
1114
|
+
key: "score",
|
|
1115
|
+
editable: false,
|
|
1116
|
+
value: { _custom: {
|
|
1117
|
+
type: null,
|
|
1118
|
+
readOnly: true,
|
|
1119
|
+
display: route.score.map((score) => score.join(", ")).join(" | "),
|
|
1120
|
+
tooltip: "Score used to sort routes",
|
|
1121
|
+
value: route.score
|
|
1122
|
+
} }
|
|
1123
|
+
});
|
|
1124
|
+
return fields;
|
|
1125
|
+
}
|
|
1126
|
+
/**
|
|
1127
|
+
* Extracted from tailwind palette
|
|
1128
|
+
*/
|
|
1129
|
+
const PINK_500 = 15485081;
|
|
1130
|
+
const BLUE_600 = 2450411;
|
|
1131
|
+
const LIME_500 = 8702998;
|
|
1132
|
+
const CYAN_400 = 2282478;
|
|
1133
|
+
const ORANGE_400 = 16486972;
|
|
1134
|
+
const DARK = 6710886;
|
|
1135
|
+
const RED_100 = 16704226;
|
|
1136
|
+
const RED_700 = 12131356;
|
|
1137
|
+
function formatRouteRecordForInspector(route) {
|
|
1138
|
+
const tags = [];
|
|
1139
|
+
const { record } = route;
|
|
1140
|
+
if (record.name != null) tags.push({
|
|
1141
|
+
label: String(record.name),
|
|
1142
|
+
textColor: 0,
|
|
1143
|
+
backgroundColor: CYAN_400
|
|
1144
|
+
});
|
|
1145
|
+
if (record.aliasOf) tags.push({
|
|
1146
|
+
label: "alias",
|
|
1147
|
+
textColor: 0,
|
|
1148
|
+
backgroundColor: ORANGE_400
|
|
1149
|
+
});
|
|
1150
|
+
if (route.__vd_match) tags.push({
|
|
1151
|
+
label: "matches",
|
|
1152
|
+
textColor: 0,
|
|
1153
|
+
backgroundColor: PINK_500
|
|
1154
|
+
});
|
|
1155
|
+
if (route.__vd_exactActive) tags.push({
|
|
1156
|
+
label: "exact",
|
|
1157
|
+
textColor: 0,
|
|
1158
|
+
backgroundColor: LIME_500
|
|
1159
|
+
});
|
|
1160
|
+
if (route.__vd_active) tags.push({
|
|
1161
|
+
label: "active",
|
|
1162
|
+
textColor: 0,
|
|
1163
|
+
backgroundColor: BLUE_600
|
|
1164
|
+
});
|
|
1165
|
+
if (record.redirect) tags.push({
|
|
1166
|
+
label: typeof record.redirect === "string" ? `redirect: ${record.redirect}` : "redirects",
|
|
1167
|
+
textColor: 16777215,
|
|
1168
|
+
backgroundColor: DARK
|
|
1169
|
+
});
|
|
1170
|
+
let id = record.__vd_id;
|
|
1171
|
+
if (id == null) {
|
|
1172
|
+
id = String(routeRecordId++);
|
|
1173
|
+
record.__vd_id = id;
|
|
1174
|
+
}
|
|
1175
|
+
return {
|
|
1176
|
+
id,
|
|
1177
|
+
label: record.path,
|
|
1178
|
+
tags,
|
|
1179
|
+
children: route.children.map(formatRouteRecordForInspector)
|
|
1180
|
+
};
|
|
1181
|
+
}
|
|
1182
|
+
let routeRecordId = 0;
|
|
1183
|
+
const EXTRACT_REGEXP_RE = /^\/(.*)\/([a-z]*)$/;
|
|
1184
|
+
function markRouteRecordActive(route, currentRoute) {
|
|
1185
|
+
const isExactActive = currentRoute.matched.length && isSameRouteRecord(currentRoute.matched[currentRoute.matched.length - 1], route.record);
|
|
1186
|
+
route.__vd_exactActive = route.__vd_active = isExactActive;
|
|
1187
|
+
if (!isExactActive) route.__vd_active = currentRoute.matched.some((match) => isSameRouteRecord(match, route.record));
|
|
1188
|
+
route.children.forEach((childRoute) => markRouteRecordActive(childRoute, currentRoute));
|
|
1189
|
+
}
|
|
1190
|
+
function resetMatchStateOnRouteRecord(route) {
|
|
1191
|
+
route.__vd_match = false;
|
|
1192
|
+
route.children.forEach(resetMatchStateOnRouteRecord);
|
|
1193
|
+
}
|
|
1194
|
+
function isRouteMatching(route, filter) {
|
|
1195
|
+
const found = String(route.re).match(EXTRACT_REGEXP_RE);
|
|
1196
|
+
route.__vd_match = false;
|
|
1197
|
+
if (!found || found.length < 3) return false;
|
|
1198
|
+
if (new RegExp(found[1].replace(/\$$/, ""), found[2]).test(filter)) {
|
|
1199
|
+
route.children.forEach((child) => isRouteMatching(child, filter));
|
|
1200
|
+
if (route.record.path !== "/" || filter === "/") {
|
|
1201
|
+
route.__vd_match = route.re.test(filter);
|
|
1202
|
+
return true;
|
|
1203
|
+
}
|
|
1204
|
+
return false;
|
|
1205
|
+
}
|
|
1206
|
+
const path = route.record.path.toLowerCase();
|
|
1207
|
+
const decodedPath = decode(path);
|
|
1208
|
+
if (!filter.startsWith("/") && (decodedPath.includes(filter) || path.includes(filter))) return true;
|
|
1209
|
+
if (decodedPath.startsWith(filter) || path.startsWith(filter)) return true;
|
|
1210
|
+
if (route.record.name && String(route.record.name).includes(filter)) return true;
|
|
1211
|
+
return route.children.some((child) => isRouteMatching(child, filter));
|
|
1212
|
+
}
|
|
1213
|
+
function omit(obj, keys) {
|
|
1214
|
+
const ret = {};
|
|
1215
|
+
for (const key in obj) if (!keys.includes(key)) ret[key] = obj[key];
|
|
1216
|
+
return ret;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
//#endregion
|
|
1220
|
+
export { isBrowser as $, START as A, stringifyURL as B, computeScrollPosition as C, scrollToPosition as D, saveScrollPosition as E, isSameRouteLocation as F, encodePath as G, decode as H, isSameRouteLocationParams as I, assign as J, warn$1 as K, isSameRouteRecord as L, normalizeBase as M, NEW_stringifyURL as N, NavigationDirection as O, START_LOCATION_NORMALIZED as P, noop as Q, parseURL as R, isRouteName as S, getScrollKey as T, encodeHash as U, stripBase as V, encodeParam as W, isArray as X, identityFn as Y, mergeOptions as Z, ErrorTypes as _, loadRouteLocation as a, isNavigationFailure as b, useCallbacks as c, routerKey as d, routerViewLocationKey as f, stringifyQuery as g, parseQuery as h, guardToPromiseFn as i, createHref as j, NavigationType as k, matchedRouteKey as l, normalizeQuery as m, extractChangingRecords as n, onBeforeRouteLeave as o, viewDepthKey as p, applyToParams as q, extractComponentsGuards as r, onBeforeRouteUpdate as s, addDevtools as t, routeLocationKey as u, NavigationFailureType as v, getSavedScrollPosition as w, isRouteLocation as x, createRouterError as y, resolveRelativePath as z };
|