nuxt-ignis 0.5.0 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.data/content/contents.sqlite +0 -0
- package/.env +2 -1
- package/.nuxt/app.config.mjs +25 -1
- package/.nuxt/components.d.ts +842 -464
- package/.nuxt/content/components.ts +328 -208
- package/.nuxt/dev/index.mjs +216 -156
- 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 +111 -39
- 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 +78 -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 +12 -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 +17 -17
- package/.nuxt/nitro.json +5 -5
- package/.nuxt/nuxt.d.ts +9 -10
- package/.nuxt/nuxt.json +2 -2
- package/.nuxt/nuxt.node.d.ts +9 -9
- package/.nuxt/nuxt.shared.d.ts +1 -0
- package/.nuxt/tsconfig.app.json +230 -241
- package/.nuxt/tsconfig.json +233 -244
- package/.nuxt/tsconfig.node.json +129 -132
- package/.nuxt/tsconfig.server.json +151 -160
- 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 +842 -464
- package/.nuxt/types/i18n-plugin.d.ts +2 -2
- package/.nuxt/types/imports.d.ts +393 -362
- package/.nuxt/types/modules.d.ts +16 -36
- 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 +53 -1
- 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 +1 -1
- package/.output/public/_nuxt/-PRJHlJd.js +1 -0
- package/.output/public/_nuxt/38NkCNo_.js +0 -0
- package/.output/public/_nuxt/4p0_eEbF.js +0 -0
- package/.output/public/_nuxt/5P9Ak6Zm.js +0 -0
- package/.output/public/_nuxt/5msm7UDY.js +0 -0
- package/.output/public/_nuxt/7I_cTX05.js +1 -0
- package/.output/public/_nuxt/7N8aGG8C.js +1 -0
- package/.output/public/_nuxt/9j0d6I4O.js +0 -0
- package/.output/public/_nuxt/B7b1sBVf.js +0 -0
- package/.output/public/_nuxt/B7pFyPXj.js +1 -0
- package/.output/public/_nuxt/B8s7UrMM.js +1 -0
- package/.output/public/_nuxt/BHBmrOu8.js +1 -0
- package/.output/public/_nuxt/BHIv_dM4.js +0 -0
- package/.output/public/_nuxt/BI2n4fU-.js +0 -0
- package/.output/public/_nuxt/BJos6QuZ.js +0 -0
- package/.output/public/_nuxt/BKsXoEBs.js +0 -0
- package/.output/public/_nuxt/BNKvjWkT.js +1 -0
- package/.output/public/_nuxt/BQmtXkqc.js +1 -0
- package/.output/public/_nuxt/BQuCJQB8.js +0 -0
- package/.output/public/_nuxt/BSEIdlOb.js +0 -0
- package/.output/public/_nuxt/BST7mczs.js +1 -0
- package/.output/public/_nuxt/BTAjWPAo.js +1 -0
- package/.output/public/_nuxt/BYIIksjz.js +0 -0
- package/.output/public/_nuxt/BfZ1Ro0X.js +1 -0
- package/.output/public/_nuxt/Bg-6qayI.js +1 -0
- package/.output/public/_nuxt/BgP-osMP.js +1 -0
- package/.output/public/_nuxt/BiCkyLWS.js +1 -0
- package/.output/public/_nuxt/BjN_umGo.js +1 -0
- package/.output/public/_nuxt/BqK0HYmw.js +1 -0
- package/.output/public/_nuxt/BrSteMIA.js +1 -0
- package/.output/public/_nuxt/C-MeLOeF.js +1 -0
- package/.output/public/_nuxt/C-OKZMJp.js +1 -0
- package/.output/public/_nuxt/C6tJinWY.js +0 -0
- package/.output/public/_nuxt/C7lLQr2h.js +0 -0
- package/.output/public/_nuxt/CDLGLk8m.js +1 -0
- package/.output/public/_nuxt/CDT62st6.js +1 -0
- package/.output/public/_nuxt/CFimyBH-.js +0 -0
- package/.output/public/_nuxt/CG7cd7Sy.js +1 -0
- package/.output/public/_nuxt/CKPnIC-C.js +0 -0
- package/.output/public/_nuxt/COPw3T3p.js +1 -0
- package/.output/public/_nuxt/CQGFUxxa.js +1 -0
- package/.output/public/_nuxt/CSX_cLY6.js +1 -0
- package/.output/public/_nuxt/CaVNnfk7.js +0 -0
- package/.output/public/_nuxt/Cd1ifhTP.js +0 -0
- package/.output/public/_nuxt/CdygaddQ.js +9 -0
- package/.output/public/_nuxt/Cf-VPxfE.js +1 -0
- package/.output/public/_nuxt/CfmMK6-y.js +1 -0
- package/.output/public/_nuxt/Civ5r6YF.js +1 -0
- package/.output/public/_nuxt/CkdnMzBA.js +0 -0
- package/.output/public/_nuxt/CnlJVizr.js +1 -0
- package/.output/public/_nuxt/Coqgx10n.js +0 -0
- package/.output/public/_nuxt/CxMUMwzI.js +1 -0
- package/.output/public/_nuxt/Cyw3rpDt.js +1 -0
- package/.output/public/_nuxt/CzKgiVVn.js +1 -0
- package/.output/public/_nuxt/D-qXrpoJ.js +0 -0
- package/.output/public/_nuxt/D2vgCRoc.js +1 -0
- package/.output/public/_nuxt/D4fuXfD_.js +1 -0
- package/.output/public/_nuxt/D5IuxRu4.js +1 -0
- package/.output/public/_nuxt/D5j9Embb.js +1 -0
- package/.output/public/_nuxt/D6YL6Hhi.js +0 -0
- package/.output/public/_nuxt/DAIwjxRT.js +0 -0
- package/.output/public/_nuxt/DBEY94Mo.js +0 -0
- package/.output/public/_nuxt/DCQOMtdo.js +1 -0
- package/.output/public/_nuxt/DEQ3hSSO.js +1 -0
- package/.output/public/_nuxt/DFfCkFZ3.js +1 -0
- package/.output/public/_nuxt/DL4qe-W_.js +0 -0
- package/.output/public/_nuxt/DLKI6lgi.js +0 -0
- package/.output/public/_nuxt/DOAeoYpG.js +0 -0
- package/.output/public/_nuxt/DPQeTxQ3.js +1 -0
- package/.output/public/_nuxt/DP_txrAq.js +1 -0
- package/.output/public/_nuxt/DQKS5ddY.js +1 -0
- package/.output/public/_nuxt/DXXu9Lvl.js +1 -0
- package/.output/public/_nuxt/DcUS3ReQ.js +0 -0
- package/.output/public/_nuxt/DdWDmJe7.js +0 -0
- package/.output/public/_nuxt/Df59gZou.js +0 -0
- package/.output/public/_nuxt/DiIccoHR.js +0 -0
- package/.output/public/_nuxt/DiL3rzK6.js +1 -0
- package/.output/public/_nuxt/DkEHW4Vs.js +0 -0
- package/.output/public/_nuxt/DmRrrdJv.js +1 -0
- package/.output/public/_nuxt/Do5nYv4E.js +0 -0
- package/.output/public/_nuxt/DqyxgTAQ.js +0 -0
- package/.output/public/_nuxt/DrE64K_R.js +1 -0
- package/.output/public/_nuxt/DrskXsQH.js +1 -0
- package/.output/public/_nuxt/Ds7AWph0.js +0 -0
- package/.output/public/_nuxt/Dvcv58Mc.js +1 -0
- package/.output/public/_nuxt/FMWwyTQ_.js +0 -0
- package/.output/public/_nuxt/Pre.DHQaXnEy.css +2 -0
- package/.output/public/_nuxt/Q6bGSN8C.js +0 -0
- package/.output/public/_nuxt/QyE4cqYn.js +1 -0
- package/.output/public/_nuxt/Tcmkoyas.js +1 -0
- package/.output/public/_nuxt/Tj4XPHLn.js +1 -0
- package/.output/public/_nuxt/VOEA7UHD.js +0 -0
- package/.output/public/_nuxt/WOOfaOjG.js +1 -0
- package/.output/public/_nuxt/Y6FRsTFQ.js +0 -0
- package/.output/public/_nuxt/ZDbum-dK.js +1 -0
- package/.output/public/_nuxt/ZTY82FYd.js +0 -0
- package/.output/public/_nuxt/asVu8S_S.js +51 -0
- package/.output/public/_nuxt/builds/latest.json +1 -1
- package/.output/public/_nuxt/builds/meta/68901e1f-eb2d-48db-9c33-8ac67fff1d62.json +1 -0
- package/.output/public/_nuxt/cjlVjclE.js +1 -0
- package/.output/public/_nuxt/entry.UZgisdi2.css +1 -0
- package/.output/public/_nuxt/error-404.DQ5oEvRi.css +1 -0
- package/.output/public/_nuxt/error-500.c8JA_zlB.css +1 -0
- package/.output/public/_nuxt/gmjYz5n6.js +0 -0
- package/.output/public/_nuxt/iatO0zkI.js +1 -0
- package/.output/public/_nuxt/jieRiiOw.js +0 -0
- package/.output/public/_nuxt/lAhMwKxb.js +1 -0
- package/.output/public/_nuxt/mHcxE7OD.js +0 -0
- package/.output/public/_nuxt/n17zLPF6.js +0 -0
- package/.output/public/_nuxt/ncv2QjU2.js +1 -0
- package/.output/public/_nuxt/osXHzmfu.js +1 -0
- package/.output/public/_nuxt/plapqmiu.js +1 -0
- package/.output/public/_nuxt/pnNmDVjA.js +0 -0
- package/.output/public/_nuxt/rxAL1Pmw.js +1 -0
- package/.output/public/_nuxt/ryzXmKdZ.js +1 -0
- package/.output/public/_nuxt/t9C3L8ir.js +1 -0
- package/.output/public/_nuxt/wQgAJ5T0.js +1 -0
- package/.output/public/_nuxt/z6h75OXJ.js +1 -0
- package/.output/server/chunks/_/error-500.mjs.map +1 -1
- package/.output/server/chunks/_/nitro.mjs +1164 -563
- package/.output/server/chunks/_/nitro.mjs.map +1 -1
- package/.output/server/chunks/build/client.precomputed.mjs +1 -1
- package/.output/server/chunks/routes/renderer.mjs.map +1 -1
- package/.output/server/index.mjs.map +1 -1
- package/.output/server/node_modules/.nitro/@vue/compiler-core@3.5.25/dist/compiler-core.cjs.prod.js +6742 -0
- package/.output/server/node_modules/.nitro/@vue/compiler-core@3.5.25/package.json +58 -0
- package/.output/server/node_modules/.nitro/@vue/compiler-dom@3.5.25/dist/compiler-dom.cjs.prod.js +689 -0
- package/.output/server/node_modules/.nitro/@vue/compiler-dom@3.5.25/package.json +57 -0
- package/.output/server/node_modules/.nitro/@vue/reactivity@3.5.25/dist/reactivity.cjs.prod.js +1853 -0
- package/.output/server/node_modules/.nitro/@vue/reactivity@3.5.25/package.json +55 -0
- package/.output/server/node_modules/.nitro/@vue/runtime-core@3.5.25/dist/runtime-core.cjs.prod.js +6750 -0
- package/.output/server/node_modules/.nitro/@vue/runtime-core@3.5.25/package.json +52 -0
- package/.output/server/node_modules/.nitro/@vue/runtime-dom@3.5.25/dist/runtime-dom.cjs.prod.js +1732 -0
- package/.output/server/node_modules/.nitro/@vue/runtime-dom@3.5.25/package.json +60 -0
- package/.output/server/node_modules/.nitro/@vue/shared@3.5.25/dist/shared.cjs.prod.js +604 -0
- package/.output/server/node_modules/.nitro/@vue/shared@3.5.25/package.json +47 -0
- 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/vue@3.5.25/dist/vue.cjs.js +80 -0
- package/.output/server/node_modules/.nitro/vue@3.5.25/dist/vue.cjs.prod.js +66 -0
- package/.output/server/node_modules/.nitro/vue@3.5.25/index.js +7 -0
- package/.output/server/node_modules/.nitro/vue@3.5.25/index.mjs +1 -0
- package/.output/server/node_modules/.nitro/vue@3.5.25/package.json +112 -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/@shikijs/core/dist/index.mjs +34 -11
- 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 +8 -10
- 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-ssr/dist/compiler-ssr.cjs.js +10 -8
- package/.output/server/node_modules/@vue/compiler-ssr/package.json +3 -3
- 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/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/package.json +1 -1
- package/.output/server/node_modules/devalue/src/stringify.js +4 -4
- package/.output/server/node_modules/devalue/src/uneval.js +4 -4
- 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 +1 -1
- package/.output/server/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +21 -10
- 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/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 +13 -17
- 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/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/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/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/package.json +39 -48
- 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 +7 -7
- package/features.ts +13 -0
- package/i18n/locales/en.json +1 -0
- package/nuxt.config.ts +5 -1
- package/package.json +15 -10
- package/public/_ignis-config.json +1 -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/test/versions.test.ts +65 -0
- package/vitest.config.ts +5 -5
- 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/0gZNo08M.js +0 -1
- package/.output/public/_nuxt/4etphg87.js +0 -1
- package/.output/public/_nuxt/7oEH3i-J.js +0 -1
- package/.output/public/_nuxt/B0GskE-x.js +0 -1
- package/.output/public/_nuxt/B2rRIZLd.js +0 -1
- package/.output/public/_nuxt/B3Twp4np.js +0 -1
- package/.output/public/_nuxt/B4dafB1u.js +0 -1
- package/.output/public/_nuxt/B5v-AhRa.js +0 -1
- package/.output/public/_nuxt/BGIWR6zS.js +0 -1
- package/.output/public/_nuxt/BPF61Z69.js +0 -1
- package/.output/public/_nuxt/BX7sSsxl.js +0 -1
- package/.output/public/_nuxt/BcGXkrpD.js +0 -1
- package/.output/public/_nuxt/Bdmjn2k2.js +0 -1
- package/.output/public/_nuxt/BkwIJBVH.js +0 -1
- package/.output/public/_nuxt/Bs7HqoDE.js +0 -6764
- package/.output/public/_nuxt/BxBcowlq.js +0 -1
- package/.output/public/_nuxt/BxjWLNqQ.js +0 -1
- package/.output/public/_nuxt/CJT046op.js +0 -1
- package/.output/public/_nuxt/CNoaFijS.js +0 -1
- package/.output/public/_nuxt/COOHDsMA.js +0 -1
- package/.output/public/_nuxt/CT_jQ1c7.js +0 -1
- package/.output/public/_nuxt/CzjEkwvT.js +0 -1
- package/.output/public/_nuxt/D0gc1iwv.js +0 -35
- package/.output/public/_nuxt/DHbdVh9f.js +0 -94
- package/.output/public/_nuxt/DPk_8xPF.js +0 -1
- package/.output/public/_nuxt/DS02jnv_.js +0 -1
- package/.output/public/_nuxt/DcZxay5W.js +0 -1
- package/.output/public/_nuxt/Dj4M1E-R.js +0 -1
- package/.output/public/_nuxt/DrlW3O6H.js +0 -1
- package/.output/public/_nuxt/DzHDVFEa.js +0 -1
- package/.output/public/_nuxt/Kgt6q5rz.js +0 -1
- package/.output/public/_nuxt/ProsePre.D5orA6B_.css +0 -1
- package/.output/public/_nuxt/_RaG-8ca.js +0 -1
- package/.output/public/_nuxt/builds/meta/458d3dfb-5eef-4d52-b92b-109ceaa7a1ab.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/nE6m0q_v.js +0 -1
- package/.output/public/_nuxt/vueform.CkWb7x1C.css +0 -1
- package/.output/public/_nuxt/wTHp3vgs.js +0 -1
- package/.output/public/_nuxt/zBYuFSAQ.js +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/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/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/@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/@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/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/.nuxt/ui/{button-group.ts → field-group.ts} +0 -0
- /package/.output/server/node_modules/{@vue/compiler-core → .nitro/@vue/compiler-core@3.5.22}/dist/compiler-core.cjs.prod.js +0 -0
- /package/.output/server/node_modules/{@vue/compiler-core → .nitro/@vue/compiler-core@3.5.22}/package.json +0 -0
- /package/.output/server/node_modules/{@vue/compiler-dom → .nitro/@vue/compiler-dom@3.5.22}/dist/compiler-dom.cjs.prod.js +0 -0
- /package/.output/server/node_modules/{@vue/compiler-dom → .nitro/@vue/compiler-dom@3.5.22}/package.json +0 -0
- /package/.output/server/node_modules/{@vue/reactivity → .nitro/@vue/reactivity@3.5.22}/dist/reactivity.cjs.prod.js +0 -0
- /package/.output/server/node_modules/{@vue/reactivity → .nitro/@vue/reactivity@3.5.22}/package.json +0 -0
- /package/.output/server/node_modules/{@vue/runtime-core → .nitro/@vue/runtime-core@3.5.22}/dist/runtime-core.cjs.prod.js +0 -0
- /package/.output/server/node_modules/{@vue/runtime-core → .nitro/@vue/runtime-core@3.5.22}/package.json +0 -0
- /package/.output/server/node_modules/{@vue/runtime-dom → .nitro/@vue/runtime-dom@3.5.22}/dist/runtime-dom.cjs.prod.js +0 -0
- /package/.output/server/node_modules/{@vue/runtime-dom → .nitro/@vue/runtime-dom@3.5.22}/package.json +0 -0
- /package/.output/server/node_modules/{@vue/shared → .nitro/@vue/shared@3.5.22}/dist/shared.cjs.prod.js +0 -0
- /package/.output/server/node_modules/{@vue/shared → .nitro/@vue/shared@3.5.22}/package.json +0 -0
- /package/.output/server/node_modules/{vue → .nitro/vue@3.5.22}/dist/vue.cjs.js +0 -0
- /package/.output/server/node_modules/{vue → .nitro/vue@3.5.22}/dist/vue.cjs.prod.js +0 -0
- /package/.output/server/node_modules/{vue → .nitro/vue@3.5.22}/index.js +0 -0
- /package/.output/server/node_modules/{vue → .nitro/vue@3.5.22}/index.mjs +0 -0
- /package/.output/server/node_modules/{vue → .nitro/vue@3.5.22}/package.json +0 -0
- /package/.output/server/node_modules/{vue → .nitro/vue@3.5.25}/server-renderer/index.mjs +0 -0
|
@@ -0,0 +1,1853 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @vue/reactivity v3.5.25
|
|
3
|
+
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
|
+
* @license MIT
|
|
5
|
+
**/
|
|
6
|
+
'use strict';
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
9
|
+
|
|
10
|
+
var shared = require('@vue/shared');
|
|
11
|
+
|
|
12
|
+
let activeEffectScope;
|
|
13
|
+
class EffectScope {
|
|
14
|
+
constructor(detached = false) {
|
|
15
|
+
this.detached = detached;
|
|
16
|
+
/**
|
|
17
|
+
* @internal
|
|
18
|
+
*/
|
|
19
|
+
this._active = true;
|
|
20
|
+
/**
|
|
21
|
+
* @internal track `on` calls, allow `on` call multiple times
|
|
22
|
+
*/
|
|
23
|
+
this._on = 0;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
this.effects = [];
|
|
28
|
+
/**
|
|
29
|
+
* @internal
|
|
30
|
+
*/
|
|
31
|
+
this.cleanups = [];
|
|
32
|
+
this._isPaused = false;
|
|
33
|
+
this.parent = activeEffectScope;
|
|
34
|
+
if (!detached && activeEffectScope) {
|
|
35
|
+
this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(
|
|
36
|
+
this
|
|
37
|
+
) - 1;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
get active() {
|
|
41
|
+
return this._active;
|
|
42
|
+
}
|
|
43
|
+
pause() {
|
|
44
|
+
if (this._active) {
|
|
45
|
+
this._isPaused = true;
|
|
46
|
+
let i, l;
|
|
47
|
+
if (this.scopes) {
|
|
48
|
+
for (i = 0, l = this.scopes.length; i < l; i++) {
|
|
49
|
+
this.scopes[i].pause();
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
for (i = 0, l = this.effects.length; i < l; i++) {
|
|
53
|
+
this.effects[i].pause();
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Resumes the effect scope, including all child scopes and effects.
|
|
59
|
+
*/
|
|
60
|
+
resume() {
|
|
61
|
+
if (this._active) {
|
|
62
|
+
if (this._isPaused) {
|
|
63
|
+
this._isPaused = false;
|
|
64
|
+
let i, l;
|
|
65
|
+
if (this.scopes) {
|
|
66
|
+
for (i = 0, l = this.scopes.length; i < l; i++) {
|
|
67
|
+
this.scopes[i].resume();
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
for (i = 0, l = this.effects.length; i < l; i++) {
|
|
71
|
+
this.effects[i].resume();
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
run(fn) {
|
|
77
|
+
if (this._active) {
|
|
78
|
+
const currentEffectScope = activeEffectScope;
|
|
79
|
+
try {
|
|
80
|
+
activeEffectScope = this;
|
|
81
|
+
return fn();
|
|
82
|
+
} finally {
|
|
83
|
+
activeEffectScope = currentEffectScope;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* This should only be called on non-detached scopes
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
91
|
+
on() {
|
|
92
|
+
if (++this._on === 1) {
|
|
93
|
+
this.prevScope = activeEffectScope;
|
|
94
|
+
activeEffectScope = this;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* This should only be called on non-detached scopes
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
off() {
|
|
102
|
+
if (this._on > 0 && --this._on === 0) {
|
|
103
|
+
activeEffectScope = this.prevScope;
|
|
104
|
+
this.prevScope = void 0;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
stop(fromParent) {
|
|
108
|
+
if (this._active) {
|
|
109
|
+
this._active = false;
|
|
110
|
+
let i, l;
|
|
111
|
+
for (i = 0, l = this.effects.length; i < l; i++) {
|
|
112
|
+
this.effects[i].stop();
|
|
113
|
+
}
|
|
114
|
+
this.effects.length = 0;
|
|
115
|
+
for (i = 0, l = this.cleanups.length; i < l; i++) {
|
|
116
|
+
this.cleanups[i]();
|
|
117
|
+
}
|
|
118
|
+
this.cleanups.length = 0;
|
|
119
|
+
if (this.scopes) {
|
|
120
|
+
for (i = 0, l = this.scopes.length; i < l; i++) {
|
|
121
|
+
this.scopes[i].stop(true);
|
|
122
|
+
}
|
|
123
|
+
this.scopes.length = 0;
|
|
124
|
+
}
|
|
125
|
+
if (!this.detached && this.parent && !fromParent) {
|
|
126
|
+
const last = this.parent.scopes.pop();
|
|
127
|
+
if (last && last !== this) {
|
|
128
|
+
this.parent.scopes[this.index] = last;
|
|
129
|
+
last.index = this.index;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
this.parent = void 0;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
function effectScope(detached) {
|
|
137
|
+
return new EffectScope(detached);
|
|
138
|
+
}
|
|
139
|
+
function getCurrentScope() {
|
|
140
|
+
return activeEffectScope;
|
|
141
|
+
}
|
|
142
|
+
function onScopeDispose(fn, failSilently = false) {
|
|
143
|
+
if (activeEffectScope) {
|
|
144
|
+
activeEffectScope.cleanups.push(fn);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
let activeSub;
|
|
149
|
+
const EffectFlags = {
|
|
150
|
+
"ACTIVE": 1,
|
|
151
|
+
"1": "ACTIVE",
|
|
152
|
+
"RUNNING": 2,
|
|
153
|
+
"2": "RUNNING",
|
|
154
|
+
"TRACKING": 4,
|
|
155
|
+
"4": "TRACKING",
|
|
156
|
+
"NOTIFIED": 8,
|
|
157
|
+
"8": "NOTIFIED",
|
|
158
|
+
"DIRTY": 16,
|
|
159
|
+
"16": "DIRTY",
|
|
160
|
+
"ALLOW_RECURSE": 32,
|
|
161
|
+
"32": "ALLOW_RECURSE",
|
|
162
|
+
"PAUSED": 64,
|
|
163
|
+
"64": "PAUSED",
|
|
164
|
+
"EVALUATED": 128,
|
|
165
|
+
"128": "EVALUATED"
|
|
166
|
+
};
|
|
167
|
+
const pausedQueueEffects = /* @__PURE__ */ new WeakSet();
|
|
168
|
+
class ReactiveEffect {
|
|
169
|
+
constructor(fn) {
|
|
170
|
+
this.fn = fn;
|
|
171
|
+
/**
|
|
172
|
+
* @internal
|
|
173
|
+
*/
|
|
174
|
+
this.deps = void 0;
|
|
175
|
+
/**
|
|
176
|
+
* @internal
|
|
177
|
+
*/
|
|
178
|
+
this.depsTail = void 0;
|
|
179
|
+
/**
|
|
180
|
+
* @internal
|
|
181
|
+
*/
|
|
182
|
+
this.flags = 1 | 4;
|
|
183
|
+
/**
|
|
184
|
+
* @internal
|
|
185
|
+
*/
|
|
186
|
+
this.next = void 0;
|
|
187
|
+
/**
|
|
188
|
+
* @internal
|
|
189
|
+
*/
|
|
190
|
+
this.cleanup = void 0;
|
|
191
|
+
this.scheduler = void 0;
|
|
192
|
+
if (activeEffectScope && activeEffectScope.active) {
|
|
193
|
+
activeEffectScope.effects.push(this);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
pause() {
|
|
197
|
+
this.flags |= 64;
|
|
198
|
+
}
|
|
199
|
+
resume() {
|
|
200
|
+
if (this.flags & 64) {
|
|
201
|
+
this.flags &= -65;
|
|
202
|
+
if (pausedQueueEffects.has(this)) {
|
|
203
|
+
pausedQueueEffects.delete(this);
|
|
204
|
+
this.trigger();
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* @internal
|
|
210
|
+
*/
|
|
211
|
+
notify() {
|
|
212
|
+
if (this.flags & 2 && !(this.flags & 32)) {
|
|
213
|
+
return;
|
|
214
|
+
}
|
|
215
|
+
if (!(this.flags & 8)) {
|
|
216
|
+
batch(this);
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
run() {
|
|
220
|
+
if (!(this.flags & 1)) {
|
|
221
|
+
return this.fn();
|
|
222
|
+
}
|
|
223
|
+
this.flags |= 2;
|
|
224
|
+
cleanupEffect(this);
|
|
225
|
+
prepareDeps(this);
|
|
226
|
+
const prevEffect = activeSub;
|
|
227
|
+
const prevShouldTrack = shouldTrack;
|
|
228
|
+
activeSub = this;
|
|
229
|
+
shouldTrack = true;
|
|
230
|
+
try {
|
|
231
|
+
return this.fn();
|
|
232
|
+
} finally {
|
|
233
|
+
cleanupDeps(this);
|
|
234
|
+
activeSub = prevEffect;
|
|
235
|
+
shouldTrack = prevShouldTrack;
|
|
236
|
+
this.flags &= -3;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
stop() {
|
|
240
|
+
if (this.flags & 1) {
|
|
241
|
+
for (let link = this.deps; link; link = link.nextDep) {
|
|
242
|
+
removeSub(link);
|
|
243
|
+
}
|
|
244
|
+
this.deps = this.depsTail = void 0;
|
|
245
|
+
cleanupEffect(this);
|
|
246
|
+
this.onStop && this.onStop();
|
|
247
|
+
this.flags &= -2;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
trigger() {
|
|
251
|
+
if (this.flags & 64) {
|
|
252
|
+
pausedQueueEffects.add(this);
|
|
253
|
+
} else if (this.scheduler) {
|
|
254
|
+
this.scheduler();
|
|
255
|
+
} else {
|
|
256
|
+
this.runIfDirty();
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* @internal
|
|
261
|
+
*/
|
|
262
|
+
runIfDirty() {
|
|
263
|
+
if (isDirty(this)) {
|
|
264
|
+
this.run();
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
get dirty() {
|
|
268
|
+
return isDirty(this);
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
let batchDepth = 0;
|
|
272
|
+
let batchedSub;
|
|
273
|
+
let batchedComputed;
|
|
274
|
+
function batch(sub, isComputed = false) {
|
|
275
|
+
sub.flags |= 8;
|
|
276
|
+
if (isComputed) {
|
|
277
|
+
sub.next = batchedComputed;
|
|
278
|
+
batchedComputed = sub;
|
|
279
|
+
return;
|
|
280
|
+
}
|
|
281
|
+
sub.next = batchedSub;
|
|
282
|
+
batchedSub = sub;
|
|
283
|
+
}
|
|
284
|
+
function startBatch() {
|
|
285
|
+
batchDepth++;
|
|
286
|
+
}
|
|
287
|
+
function endBatch() {
|
|
288
|
+
if (--batchDepth > 0) {
|
|
289
|
+
return;
|
|
290
|
+
}
|
|
291
|
+
if (batchedComputed) {
|
|
292
|
+
let e = batchedComputed;
|
|
293
|
+
batchedComputed = void 0;
|
|
294
|
+
while (e) {
|
|
295
|
+
const next = e.next;
|
|
296
|
+
e.next = void 0;
|
|
297
|
+
e.flags &= -9;
|
|
298
|
+
e = next;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
let error;
|
|
302
|
+
while (batchedSub) {
|
|
303
|
+
let e = batchedSub;
|
|
304
|
+
batchedSub = void 0;
|
|
305
|
+
while (e) {
|
|
306
|
+
const next = e.next;
|
|
307
|
+
e.next = void 0;
|
|
308
|
+
e.flags &= -9;
|
|
309
|
+
if (e.flags & 1) {
|
|
310
|
+
try {
|
|
311
|
+
;
|
|
312
|
+
e.trigger();
|
|
313
|
+
} catch (err) {
|
|
314
|
+
if (!error) error = err;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
e = next;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
if (error) throw error;
|
|
321
|
+
}
|
|
322
|
+
function prepareDeps(sub) {
|
|
323
|
+
for (let link = sub.deps; link; link = link.nextDep) {
|
|
324
|
+
link.version = -1;
|
|
325
|
+
link.prevActiveLink = link.dep.activeLink;
|
|
326
|
+
link.dep.activeLink = link;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
function cleanupDeps(sub) {
|
|
330
|
+
let head;
|
|
331
|
+
let tail = sub.depsTail;
|
|
332
|
+
let link = tail;
|
|
333
|
+
while (link) {
|
|
334
|
+
const prev = link.prevDep;
|
|
335
|
+
if (link.version === -1) {
|
|
336
|
+
if (link === tail) tail = prev;
|
|
337
|
+
removeSub(link);
|
|
338
|
+
removeDep(link);
|
|
339
|
+
} else {
|
|
340
|
+
head = link;
|
|
341
|
+
}
|
|
342
|
+
link.dep.activeLink = link.prevActiveLink;
|
|
343
|
+
link.prevActiveLink = void 0;
|
|
344
|
+
link = prev;
|
|
345
|
+
}
|
|
346
|
+
sub.deps = head;
|
|
347
|
+
sub.depsTail = tail;
|
|
348
|
+
}
|
|
349
|
+
function isDirty(sub) {
|
|
350
|
+
for (let link = sub.deps; link; link = link.nextDep) {
|
|
351
|
+
if (link.dep.version !== link.version || link.dep.computed && (refreshComputed(link.dep.computed) || link.dep.version !== link.version)) {
|
|
352
|
+
return true;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
if (sub._dirty) {
|
|
356
|
+
return true;
|
|
357
|
+
}
|
|
358
|
+
return false;
|
|
359
|
+
}
|
|
360
|
+
function refreshComputed(computed) {
|
|
361
|
+
if (computed.flags & 4 && !(computed.flags & 16)) {
|
|
362
|
+
return;
|
|
363
|
+
}
|
|
364
|
+
computed.flags &= -17;
|
|
365
|
+
if (computed.globalVersion === globalVersion) {
|
|
366
|
+
return;
|
|
367
|
+
}
|
|
368
|
+
computed.globalVersion = globalVersion;
|
|
369
|
+
if (!computed.isSSR && computed.flags & 128 && (!computed.deps && !computed._dirty || !isDirty(computed))) {
|
|
370
|
+
return;
|
|
371
|
+
}
|
|
372
|
+
computed.flags |= 2;
|
|
373
|
+
const dep = computed.dep;
|
|
374
|
+
const prevSub = activeSub;
|
|
375
|
+
const prevShouldTrack = shouldTrack;
|
|
376
|
+
activeSub = computed;
|
|
377
|
+
shouldTrack = true;
|
|
378
|
+
try {
|
|
379
|
+
prepareDeps(computed);
|
|
380
|
+
const value = computed.fn(computed._value);
|
|
381
|
+
if (dep.version === 0 || shared.hasChanged(value, computed._value)) {
|
|
382
|
+
computed.flags |= 128;
|
|
383
|
+
computed._value = value;
|
|
384
|
+
dep.version++;
|
|
385
|
+
}
|
|
386
|
+
} catch (err) {
|
|
387
|
+
dep.version++;
|
|
388
|
+
throw err;
|
|
389
|
+
} finally {
|
|
390
|
+
activeSub = prevSub;
|
|
391
|
+
shouldTrack = prevShouldTrack;
|
|
392
|
+
cleanupDeps(computed);
|
|
393
|
+
computed.flags &= -3;
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
function removeSub(link, soft = false) {
|
|
397
|
+
const { dep, prevSub, nextSub } = link;
|
|
398
|
+
if (prevSub) {
|
|
399
|
+
prevSub.nextSub = nextSub;
|
|
400
|
+
link.prevSub = void 0;
|
|
401
|
+
}
|
|
402
|
+
if (nextSub) {
|
|
403
|
+
nextSub.prevSub = prevSub;
|
|
404
|
+
link.nextSub = void 0;
|
|
405
|
+
}
|
|
406
|
+
if (dep.subs === link) {
|
|
407
|
+
dep.subs = prevSub;
|
|
408
|
+
if (!prevSub && dep.computed) {
|
|
409
|
+
dep.computed.flags &= -5;
|
|
410
|
+
for (let l = dep.computed.deps; l; l = l.nextDep) {
|
|
411
|
+
removeSub(l, true);
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
if (!soft && !--dep.sc && dep.map) {
|
|
416
|
+
dep.map.delete(dep.key);
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
function removeDep(link) {
|
|
420
|
+
const { prevDep, nextDep } = link;
|
|
421
|
+
if (prevDep) {
|
|
422
|
+
prevDep.nextDep = nextDep;
|
|
423
|
+
link.prevDep = void 0;
|
|
424
|
+
}
|
|
425
|
+
if (nextDep) {
|
|
426
|
+
nextDep.prevDep = prevDep;
|
|
427
|
+
link.nextDep = void 0;
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
function effect(fn, options) {
|
|
431
|
+
if (fn.effect instanceof ReactiveEffect) {
|
|
432
|
+
fn = fn.effect.fn;
|
|
433
|
+
}
|
|
434
|
+
const e = new ReactiveEffect(fn);
|
|
435
|
+
if (options) {
|
|
436
|
+
shared.extend(e, options);
|
|
437
|
+
}
|
|
438
|
+
try {
|
|
439
|
+
e.run();
|
|
440
|
+
} catch (err) {
|
|
441
|
+
e.stop();
|
|
442
|
+
throw err;
|
|
443
|
+
}
|
|
444
|
+
const runner = e.run.bind(e);
|
|
445
|
+
runner.effect = e;
|
|
446
|
+
return runner;
|
|
447
|
+
}
|
|
448
|
+
function stop(runner) {
|
|
449
|
+
runner.effect.stop();
|
|
450
|
+
}
|
|
451
|
+
let shouldTrack = true;
|
|
452
|
+
const trackStack = [];
|
|
453
|
+
function pauseTracking() {
|
|
454
|
+
trackStack.push(shouldTrack);
|
|
455
|
+
shouldTrack = false;
|
|
456
|
+
}
|
|
457
|
+
function enableTracking() {
|
|
458
|
+
trackStack.push(shouldTrack);
|
|
459
|
+
shouldTrack = true;
|
|
460
|
+
}
|
|
461
|
+
function resetTracking() {
|
|
462
|
+
const last = trackStack.pop();
|
|
463
|
+
shouldTrack = last === void 0 ? true : last;
|
|
464
|
+
}
|
|
465
|
+
function onEffectCleanup(fn, failSilently = false) {
|
|
466
|
+
if (activeSub instanceof ReactiveEffect) {
|
|
467
|
+
activeSub.cleanup = fn;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
function cleanupEffect(e) {
|
|
471
|
+
const { cleanup } = e;
|
|
472
|
+
e.cleanup = void 0;
|
|
473
|
+
if (cleanup) {
|
|
474
|
+
const prevSub = activeSub;
|
|
475
|
+
activeSub = void 0;
|
|
476
|
+
try {
|
|
477
|
+
cleanup();
|
|
478
|
+
} finally {
|
|
479
|
+
activeSub = prevSub;
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
let globalVersion = 0;
|
|
485
|
+
class Link {
|
|
486
|
+
constructor(sub, dep) {
|
|
487
|
+
this.sub = sub;
|
|
488
|
+
this.dep = dep;
|
|
489
|
+
this.version = dep.version;
|
|
490
|
+
this.nextDep = this.prevDep = this.nextSub = this.prevSub = this.prevActiveLink = void 0;
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
class Dep {
|
|
494
|
+
// TODO isolatedDeclarations "__v_skip"
|
|
495
|
+
constructor(computed) {
|
|
496
|
+
this.computed = computed;
|
|
497
|
+
this.version = 0;
|
|
498
|
+
/**
|
|
499
|
+
* Link between this dep and the current active effect
|
|
500
|
+
*/
|
|
501
|
+
this.activeLink = void 0;
|
|
502
|
+
/**
|
|
503
|
+
* Doubly linked list representing the subscribing effects (tail)
|
|
504
|
+
*/
|
|
505
|
+
this.subs = void 0;
|
|
506
|
+
/**
|
|
507
|
+
* For object property deps cleanup
|
|
508
|
+
*/
|
|
509
|
+
this.map = void 0;
|
|
510
|
+
this.key = void 0;
|
|
511
|
+
/**
|
|
512
|
+
* Subscriber counter
|
|
513
|
+
*/
|
|
514
|
+
this.sc = 0;
|
|
515
|
+
/**
|
|
516
|
+
* @internal
|
|
517
|
+
*/
|
|
518
|
+
this.__v_skip = true;
|
|
519
|
+
}
|
|
520
|
+
track(debugInfo) {
|
|
521
|
+
if (!activeSub || !shouldTrack || activeSub === this.computed) {
|
|
522
|
+
return;
|
|
523
|
+
}
|
|
524
|
+
let link = this.activeLink;
|
|
525
|
+
if (link === void 0 || link.sub !== activeSub) {
|
|
526
|
+
link = this.activeLink = new Link(activeSub, this);
|
|
527
|
+
if (!activeSub.deps) {
|
|
528
|
+
activeSub.deps = activeSub.depsTail = link;
|
|
529
|
+
} else {
|
|
530
|
+
link.prevDep = activeSub.depsTail;
|
|
531
|
+
activeSub.depsTail.nextDep = link;
|
|
532
|
+
activeSub.depsTail = link;
|
|
533
|
+
}
|
|
534
|
+
addSub(link);
|
|
535
|
+
} else if (link.version === -1) {
|
|
536
|
+
link.version = this.version;
|
|
537
|
+
if (link.nextDep) {
|
|
538
|
+
const next = link.nextDep;
|
|
539
|
+
next.prevDep = link.prevDep;
|
|
540
|
+
if (link.prevDep) {
|
|
541
|
+
link.prevDep.nextDep = next;
|
|
542
|
+
}
|
|
543
|
+
link.prevDep = activeSub.depsTail;
|
|
544
|
+
link.nextDep = void 0;
|
|
545
|
+
activeSub.depsTail.nextDep = link;
|
|
546
|
+
activeSub.depsTail = link;
|
|
547
|
+
if (activeSub.deps === link) {
|
|
548
|
+
activeSub.deps = next;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
return link;
|
|
553
|
+
}
|
|
554
|
+
trigger(debugInfo) {
|
|
555
|
+
this.version++;
|
|
556
|
+
globalVersion++;
|
|
557
|
+
this.notify(debugInfo);
|
|
558
|
+
}
|
|
559
|
+
notify(debugInfo) {
|
|
560
|
+
startBatch();
|
|
561
|
+
try {
|
|
562
|
+
if (false) ;
|
|
563
|
+
for (let link = this.subs; link; link = link.prevSub) {
|
|
564
|
+
if (link.sub.notify()) {
|
|
565
|
+
;
|
|
566
|
+
link.sub.dep.notify();
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
} finally {
|
|
570
|
+
endBatch();
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
function addSub(link) {
|
|
575
|
+
link.dep.sc++;
|
|
576
|
+
if (link.sub.flags & 4) {
|
|
577
|
+
const computed = link.dep.computed;
|
|
578
|
+
if (computed && !link.dep.subs) {
|
|
579
|
+
computed.flags |= 4 | 16;
|
|
580
|
+
for (let l = computed.deps; l; l = l.nextDep) {
|
|
581
|
+
addSub(l);
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
const currentTail = link.dep.subs;
|
|
585
|
+
if (currentTail !== link) {
|
|
586
|
+
link.prevSub = currentTail;
|
|
587
|
+
if (currentTail) currentTail.nextSub = link;
|
|
588
|
+
}
|
|
589
|
+
link.dep.subs = link;
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
const targetMap = /* @__PURE__ */ new WeakMap();
|
|
593
|
+
const ITERATE_KEY = Symbol(
|
|
594
|
+
""
|
|
595
|
+
);
|
|
596
|
+
const MAP_KEY_ITERATE_KEY = Symbol(
|
|
597
|
+
""
|
|
598
|
+
);
|
|
599
|
+
const ARRAY_ITERATE_KEY = Symbol(
|
|
600
|
+
""
|
|
601
|
+
);
|
|
602
|
+
function track(target, type, key) {
|
|
603
|
+
if (shouldTrack && activeSub) {
|
|
604
|
+
let depsMap = targetMap.get(target);
|
|
605
|
+
if (!depsMap) {
|
|
606
|
+
targetMap.set(target, depsMap = /* @__PURE__ */ new Map());
|
|
607
|
+
}
|
|
608
|
+
let dep = depsMap.get(key);
|
|
609
|
+
if (!dep) {
|
|
610
|
+
depsMap.set(key, dep = new Dep());
|
|
611
|
+
dep.map = depsMap;
|
|
612
|
+
dep.key = key;
|
|
613
|
+
}
|
|
614
|
+
{
|
|
615
|
+
dep.track();
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
function trigger(target, type, key, newValue, oldValue, oldTarget) {
|
|
620
|
+
const depsMap = targetMap.get(target);
|
|
621
|
+
if (!depsMap) {
|
|
622
|
+
globalVersion++;
|
|
623
|
+
return;
|
|
624
|
+
}
|
|
625
|
+
const run = (dep) => {
|
|
626
|
+
if (dep) {
|
|
627
|
+
{
|
|
628
|
+
dep.trigger();
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
};
|
|
632
|
+
startBatch();
|
|
633
|
+
if (type === "clear") {
|
|
634
|
+
depsMap.forEach(run);
|
|
635
|
+
} else {
|
|
636
|
+
const targetIsArray = shared.isArray(target);
|
|
637
|
+
const isArrayIndex = targetIsArray && shared.isIntegerKey(key);
|
|
638
|
+
if (targetIsArray && key === "length") {
|
|
639
|
+
const newLength = Number(newValue);
|
|
640
|
+
depsMap.forEach((dep, key2) => {
|
|
641
|
+
if (key2 === "length" || key2 === ARRAY_ITERATE_KEY || !shared.isSymbol(key2) && key2 >= newLength) {
|
|
642
|
+
run(dep);
|
|
643
|
+
}
|
|
644
|
+
});
|
|
645
|
+
} else {
|
|
646
|
+
if (key !== void 0 || depsMap.has(void 0)) {
|
|
647
|
+
run(depsMap.get(key));
|
|
648
|
+
}
|
|
649
|
+
if (isArrayIndex) {
|
|
650
|
+
run(depsMap.get(ARRAY_ITERATE_KEY));
|
|
651
|
+
}
|
|
652
|
+
switch (type) {
|
|
653
|
+
case "add":
|
|
654
|
+
if (!targetIsArray) {
|
|
655
|
+
run(depsMap.get(ITERATE_KEY));
|
|
656
|
+
if (shared.isMap(target)) {
|
|
657
|
+
run(depsMap.get(MAP_KEY_ITERATE_KEY));
|
|
658
|
+
}
|
|
659
|
+
} else if (isArrayIndex) {
|
|
660
|
+
run(depsMap.get("length"));
|
|
661
|
+
}
|
|
662
|
+
break;
|
|
663
|
+
case "delete":
|
|
664
|
+
if (!targetIsArray) {
|
|
665
|
+
run(depsMap.get(ITERATE_KEY));
|
|
666
|
+
if (shared.isMap(target)) {
|
|
667
|
+
run(depsMap.get(MAP_KEY_ITERATE_KEY));
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
break;
|
|
671
|
+
case "set":
|
|
672
|
+
if (shared.isMap(target)) {
|
|
673
|
+
run(depsMap.get(ITERATE_KEY));
|
|
674
|
+
}
|
|
675
|
+
break;
|
|
676
|
+
}
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
endBatch();
|
|
680
|
+
}
|
|
681
|
+
function getDepFromReactive(object, key) {
|
|
682
|
+
const depMap = targetMap.get(object);
|
|
683
|
+
return depMap && depMap.get(key);
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
function reactiveReadArray(array) {
|
|
687
|
+
const raw = toRaw(array);
|
|
688
|
+
if (raw === array) return raw;
|
|
689
|
+
track(raw, "iterate", ARRAY_ITERATE_KEY);
|
|
690
|
+
return isShallow(array) ? raw : raw.map(toReactive);
|
|
691
|
+
}
|
|
692
|
+
function shallowReadArray(arr) {
|
|
693
|
+
track(arr = toRaw(arr), "iterate", ARRAY_ITERATE_KEY);
|
|
694
|
+
return arr;
|
|
695
|
+
}
|
|
696
|
+
function toWrapped(target, item) {
|
|
697
|
+
if (isReadonly(target)) {
|
|
698
|
+
return isReactive(target) ? toReadonly(toReactive(item)) : toReadonly(item);
|
|
699
|
+
}
|
|
700
|
+
return toReactive(item);
|
|
701
|
+
}
|
|
702
|
+
const arrayInstrumentations = {
|
|
703
|
+
__proto__: null,
|
|
704
|
+
[Symbol.iterator]() {
|
|
705
|
+
return iterator(this, Symbol.iterator, (item) => toWrapped(this, item));
|
|
706
|
+
},
|
|
707
|
+
concat(...args) {
|
|
708
|
+
return reactiveReadArray(this).concat(
|
|
709
|
+
...args.map((x) => shared.isArray(x) ? reactiveReadArray(x) : x)
|
|
710
|
+
);
|
|
711
|
+
},
|
|
712
|
+
entries() {
|
|
713
|
+
return iterator(this, "entries", (value) => {
|
|
714
|
+
value[1] = toWrapped(this, value[1]);
|
|
715
|
+
return value;
|
|
716
|
+
});
|
|
717
|
+
},
|
|
718
|
+
every(fn, thisArg) {
|
|
719
|
+
return apply(this, "every", fn, thisArg, void 0, arguments);
|
|
720
|
+
},
|
|
721
|
+
filter(fn, thisArg) {
|
|
722
|
+
return apply(
|
|
723
|
+
this,
|
|
724
|
+
"filter",
|
|
725
|
+
fn,
|
|
726
|
+
thisArg,
|
|
727
|
+
(v) => v.map((item) => toWrapped(this, item)),
|
|
728
|
+
arguments
|
|
729
|
+
);
|
|
730
|
+
},
|
|
731
|
+
find(fn, thisArg) {
|
|
732
|
+
return apply(
|
|
733
|
+
this,
|
|
734
|
+
"find",
|
|
735
|
+
fn,
|
|
736
|
+
thisArg,
|
|
737
|
+
(item) => toWrapped(this, item),
|
|
738
|
+
arguments
|
|
739
|
+
);
|
|
740
|
+
},
|
|
741
|
+
findIndex(fn, thisArg) {
|
|
742
|
+
return apply(this, "findIndex", fn, thisArg, void 0, arguments);
|
|
743
|
+
},
|
|
744
|
+
findLast(fn, thisArg) {
|
|
745
|
+
return apply(
|
|
746
|
+
this,
|
|
747
|
+
"findLast",
|
|
748
|
+
fn,
|
|
749
|
+
thisArg,
|
|
750
|
+
(item) => toWrapped(this, item),
|
|
751
|
+
arguments
|
|
752
|
+
);
|
|
753
|
+
},
|
|
754
|
+
findLastIndex(fn, thisArg) {
|
|
755
|
+
return apply(this, "findLastIndex", fn, thisArg, void 0, arguments);
|
|
756
|
+
},
|
|
757
|
+
// flat, flatMap could benefit from ARRAY_ITERATE but are not straight-forward to implement
|
|
758
|
+
forEach(fn, thisArg) {
|
|
759
|
+
return apply(this, "forEach", fn, thisArg, void 0, arguments);
|
|
760
|
+
},
|
|
761
|
+
includes(...args) {
|
|
762
|
+
return searchProxy(this, "includes", args);
|
|
763
|
+
},
|
|
764
|
+
indexOf(...args) {
|
|
765
|
+
return searchProxy(this, "indexOf", args);
|
|
766
|
+
},
|
|
767
|
+
join(separator) {
|
|
768
|
+
return reactiveReadArray(this).join(separator);
|
|
769
|
+
},
|
|
770
|
+
// keys() iterator only reads `length`, no optimization required
|
|
771
|
+
lastIndexOf(...args) {
|
|
772
|
+
return searchProxy(this, "lastIndexOf", args);
|
|
773
|
+
},
|
|
774
|
+
map(fn, thisArg) {
|
|
775
|
+
return apply(this, "map", fn, thisArg, void 0, arguments);
|
|
776
|
+
},
|
|
777
|
+
pop() {
|
|
778
|
+
return noTracking(this, "pop");
|
|
779
|
+
},
|
|
780
|
+
push(...args) {
|
|
781
|
+
return noTracking(this, "push", args);
|
|
782
|
+
},
|
|
783
|
+
reduce(fn, ...args) {
|
|
784
|
+
return reduce(this, "reduce", fn, args);
|
|
785
|
+
},
|
|
786
|
+
reduceRight(fn, ...args) {
|
|
787
|
+
return reduce(this, "reduceRight", fn, args);
|
|
788
|
+
},
|
|
789
|
+
shift() {
|
|
790
|
+
return noTracking(this, "shift");
|
|
791
|
+
},
|
|
792
|
+
// slice could use ARRAY_ITERATE but also seems to beg for range tracking
|
|
793
|
+
some(fn, thisArg) {
|
|
794
|
+
return apply(this, "some", fn, thisArg, void 0, arguments);
|
|
795
|
+
},
|
|
796
|
+
splice(...args) {
|
|
797
|
+
return noTracking(this, "splice", args);
|
|
798
|
+
},
|
|
799
|
+
toReversed() {
|
|
800
|
+
return reactiveReadArray(this).toReversed();
|
|
801
|
+
},
|
|
802
|
+
toSorted(comparer) {
|
|
803
|
+
return reactiveReadArray(this).toSorted(comparer);
|
|
804
|
+
},
|
|
805
|
+
toSpliced(...args) {
|
|
806
|
+
return reactiveReadArray(this).toSpliced(...args);
|
|
807
|
+
},
|
|
808
|
+
unshift(...args) {
|
|
809
|
+
return noTracking(this, "unshift", args);
|
|
810
|
+
},
|
|
811
|
+
values() {
|
|
812
|
+
return iterator(this, "values", (item) => toWrapped(this, item));
|
|
813
|
+
}
|
|
814
|
+
};
|
|
815
|
+
function iterator(self, method, wrapValue) {
|
|
816
|
+
const arr = shallowReadArray(self);
|
|
817
|
+
const iter = arr[method]();
|
|
818
|
+
if (arr !== self && !isShallow(self)) {
|
|
819
|
+
iter._next = iter.next;
|
|
820
|
+
iter.next = () => {
|
|
821
|
+
const result = iter._next();
|
|
822
|
+
if (!result.done) {
|
|
823
|
+
result.value = wrapValue(result.value);
|
|
824
|
+
}
|
|
825
|
+
return result;
|
|
826
|
+
};
|
|
827
|
+
}
|
|
828
|
+
return iter;
|
|
829
|
+
}
|
|
830
|
+
const arrayProto = Array.prototype;
|
|
831
|
+
function apply(self, method, fn, thisArg, wrappedRetFn, args) {
|
|
832
|
+
const arr = shallowReadArray(self);
|
|
833
|
+
const needsWrap = arr !== self && !isShallow(self);
|
|
834
|
+
const methodFn = arr[method];
|
|
835
|
+
if (methodFn !== arrayProto[method]) {
|
|
836
|
+
const result2 = methodFn.apply(self, args);
|
|
837
|
+
return needsWrap ? toReactive(result2) : result2;
|
|
838
|
+
}
|
|
839
|
+
let wrappedFn = fn;
|
|
840
|
+
if (arr !== self) {
|
|
841
|
+
if (needsWrap) {
|
|
842
|
+
wrappedFn = function(item, index) {
|
|
843
|
+
return fn.call(this, toWrapped(self, item), index, self);
|
|
844
|
+
};
|
|
845
|
+
} else if (fn.length > 2) {
|
|
846
|
+
wrappedFn = function(item, index) {
|
|
847
|
+
return fn.call(this, item, index, self);
|
|
848
|
+
};
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
const result = methodFn.call(arr, wrappedFn, thisArg);
|
|
852
|
+
return needsWrap && wrappedRetFn ? wrappedRetFn(result) : result;
|
|
853
|
+
}
|
|
854
|
+
function reduce(self, method, fn, args) {
|
|
855
|
+
const arr = shallowReadArray(self);
|
|
856
|
+
let wrappedFn = fn;
|
|
857
|
+
if (arr !== self) {
|
|
858
|
+
if (!isShallow(self)) {
|
|
859
|
+
wrappedFn = function(acc, item, index) {
|
|
860
|
+
return fn.call(this, acc, toWrapped(self, item), index, self);
|
|
861
|
+
};
|
|
862
|
+
} else if (fn.length > 3) {
|
|
863
|
+
wrappedFn = function(acc, item, index) {
|
|
864
|
+
return fn.call(this, acc, item, index, self);
|
|
865
|
+
};
|
|
866
|
+
}
|
|
867
|
+
}
|
|
868
|
+
return arr[method](wrappedFn, ...args);
|
|
869
|
+
}
|
|
870
|
+
function searchProxy(self, method, args) {
|
|
871
|
+
const arr = toRaw(self);
|
|
872
|
+
track(arr, "iterate", ARRAY_ITERATE_KEY);
|
|
873
|
+
const res = arr[method](...args);
|
|
874
|
+
if ((res === -1 || res === false) && isProxy(args[0])) {
|
|
875
|
+
args[0] = toRaw(args[0]);
|
|
876
|
+
return arr[method](...args);
|
|
877
|
+
}
|
|
878
|
+
return res;
|
|
879
|
+
}
|
|
880
|
+
function noTracking(self, method, args = []) {
|
|
881
|
+
pauseTracking();
|
|
882
|
+
startBatch();
|
|
883
|
+
const res = toRaw(self)[method].apply(self, args);
|
|
884
|
+
endBatch();
|
|
885
|
+
resetTracking();
|
|
886
|
+
return res;
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
const isNonTrackableKeys = /* @__PURE__ */ shared.makeMap(`__proto__,__v_isRef,__isVue`);
|
|
890
|
+
const builtInSymbols = new Set(
|
|
891
|
+
/* @__PURE__ */ Object.getOwnPropertyNames(Symbol).filter((key) => key !== "arguments" && key !== "caller").map((key) => Symbol[key]).filter(shared.isSymbol)
|
|
892
|
+
);
|
|
893
|
+
function hasOwnProperty(key) {
|
|
894
|
+
if (!shared.isSymbol(key)) key = String(key);
|
|
895
|
+
const obj = toRaw(this);
|
|
896
|
+
track(obj, "has", key);
|
|
897
|
+
return obj.hasOwnProperty(key);
|
|
898
|
+
}
|
|
899
|
+
class BaseReactiveHandler {
|
|
900
|
+
constructor(_isReadonly = false, _isShallow = false) {
|
|
901
|
+
this._isReadonly = _isReadonly;
|
|
902
|
+
this._isShallow = _isShallow;
|
|
903
|
+
}
|
|
904
|
+
get(target, key, receiver) {
|
|
905
|
+
if (key === "__v_skip") return target["__v_skip"];
|
|
906
|
+
const isReadonly2 = this._isReadonly, isShallow2 = this._isShallow;
|
|
907
|
+
if (key === "__v_isReactive") {
|
|
908
|
+
return !isReadonly2;
|
|
909
|
+
} else if (key === "__v_isReadonly") {
|
|
910
|
+
return isReadonly2;
|
|
911
|
+
} else if (key === "__v_isShallow") {
|
|
912
|
+
return isShallow2;
|
|
913
|
+
} else if (key === "__v_raw") {
|
|
914
|
+
if (receiver === (isReadonly2 ? isShallow2 ? shallowReadonlyMap : readonlyMap : isShallow2 ? shallowReactiveMap : reactiveMap).get(target) || // receiver is not the reactive proxy, but has the same prototype
|
|
915
|
+
// this means the receiver is a user proxy of the reactive proxy
|
|
916
|
+
Object.getPrototypeOf(target) === Object.getPrototypeOf(receiver)) {
|
|
917
|
+
return target;
|
|
918
|
+
}
|
|
919
|
+
return;
|
|
920
|
+
}
|
|
921
|
+
const targetIsArray = shared.isArray(target);
|
|
922
|
+
if (!isReadonly2) {
|
|
923
|
+
let fn;
|
|
924
|
+
if (targetIsArray && (fn = arrayInstrumentations[key])) {
|
|
925
|
+
return fn;
|
|
926
|
+
}
|
|
927
|
+
if (key === "hasOwnProperty") {
|
|
928
|
+
return hasOwnProperty;
|
|
929
|
+
}
|
|
930
|
+
}
|
|
931
|
+
const res = Reflect.get(
|
|
932
|
+
target,
|
|
933
|
+
key,
|
|
934
|
+
// if this is a proxy wrapping a ref, return methods using the raw ref
|
|
935
|
+
// as receiver so that we don't have to call `toRaw` on the ref in all
|
|
936
|
+
// its class methods
|
|
937
|
+
isRef(target) ? target : receiver
|
|
938
|
+
);
|
|
939
|
+
if (shared.isSymbol(key) ? builtInSymbols.has(key) : isNonTrackableKeys(key)) {
|
|
940
|
+
return res;
|
|
941
|
+
}
|
|
942
|
+
if (!isReadonly2) {
|
|
943
|
+
track(target, "get", key);
|
|
944
|
+
}
|
|
945
|
+
if (isShallow2) {
|
|
946
|
+
return res;
|
|
947
|
+
}
|
|
948
|
+
if (isRef(res)) {
|
|
949
|
+
const value = targetIsArray && shared.isIntegerKey(key) ? res : res.value;
|
|
950
|
+
return isReadonly2 && shared.isObject(value) ? readonly(value) : value;
|
|
951
|
+
}
|
|
952
|
+
if (shared.isObject(res)) {
|
|
953
|
+
return isReadonly2 ? readonly(res) : reactive(res);
|
|
954
|
+
}
|
|
955
|
+
return res;
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
class MutableReactiveHandler extends BaseReactiveHandler {
|
|
959
|
+
constructor(isShallow2 = false) {
|
|
960
|
+
super(false, isShallow2);
|
|
961
|
+
}
|
|
962
|
+
set(target, key, value, receiver) {
|
|
963
|
+
let oldValue = target[key];
|
|
964
|
+
const isArrayWithIntegerKey = shared.isArray(target) && shared.isIntegerKey(key);
|
|
965
|
+
if (!this._isShallow) {
|
|
966
|
+
const isOldValueReadonly = isReadonly(oldValue);
|
|
967
|
+
if (!isShallow(value) && !isReadonly(value)) {
|
|
968
|
+
oldValue = toRaw(oldValue);
|
|
969
|
+
value = toRaw(value);
|
|
970
|
+
}
|
|
971
|
+
if (!isArrayWithIntegerKey && isRef(oldValue) && !isRef(value)) {
|
|
972
|
+
if (isOldValueReadonly) {
|
|
973
|
+
return true;
|
|
974
|
+
} else {
|
|
975
|
+
oldValue.value = value;
|
|
976
|
+
return true;
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
}
|
|
980
|
+
const hadKey = isArrayWithIntegerKey ? Number(key) < target.length : shared.hasOwn(target, key);
|
|
981
|
+
const result = Reflect.set(
|
|
982
|
+
target,
|
|
983
|
+
key,
|
|
984
|
+
value,
|
|
985
|
+
isRef(target) ? target : receiver
|
|
986
|
+
);
|
|
987
|
+
if (target === toRaw(receiver)) {
|
|
988
|
+
if (!hadKey) {
|
|
989
|
+
trigger(target, "add", key, value);
|
|
990
|
+
} else if (shared.hasChanged(value, oldValue)) {
|
|
991
|
+
trigger(target, "set", key, value);
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
return result;
|
|
995
|
+
}
|
|
996
|
+
deleteProperty(target, key) {
|
|
997
|
+
const hadKey = shared.hasOwn(target, key);
|
|
998
|
+
target[key];
|
|
999
|
+
const result = Reflect.deleteProperty(target, key);
|
|
1000
|
+
if (result && hadKey) {
|
|
1001
|
+
trigger(target, "delete", key, void 0);
|
|
1002
|
+
}
|
|
1003
|
+
return result;
|
|
1004
|
+
}
|
|
1005
|
+
has(target, key) {
|
|
1006
|
+
const result = Reflect.has(target, key);
|
|
1007
|
+
if (!shared.isSymbol(key) || !builtInSymbols.has(key)) {
|
|
1008
|
+
track(target, "has", key);
|
|
1009
|
+
}
|
|
1010
|
+
return result;
|
|
1011
|
+
}
|
|
1012
|
+
ownKeys(target) {
|
|
1013
|
+
track(
|
|
1014
|
+
target,
|
|
1015
|
+
"iterate",
|
|
1016
|
+
shared.isArray(target) ? "length" : ITERATE_KEY
|
|
1017
|
+
);
|
|
1018
|
+
return Reflect.ownKeys(target);
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
class ReadonlyReactiveHandler extends BaseReactiveHandler {
|
|
1022
|
+
constructor(isShallow2 = false) {
|
|
1023
|
+
super(true, isShallow2);
|
|
1024
|
+
}
|
|
1025
|
+
set(target, key) {
|
|
1026
|
+
return true;
|
|
1027
|
+
}
|
|
1028
|
+
deleteProperty(target, key) {
|
|
1029
|
+
return true;
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
const mutableHandlers = /* @__PURE__ */ new MutableReactiveHandler();
|
|
1033
|
+
const readonlyHandlers = /* @__PURE__ */ new ReadonlyReactiveHandler();
|
|
1034
|
+
const shallowReactiveHandlers = /* @__PURE__ */ new MutableReactiveHandler(true);
|
|
1035
|
+
const shallowReadonlyHandlers = /* @__PURE__ */ new ReadonlyReactiveHandler(true);
|
|
1036
|
+
|
|
1037
|
+
const toShallow = (value) => value;
|
|
1038
|
+
const getProto = (v) => Reflect.getPrototypeOf(v);
|
|
1039
|
+
function createIterableMethod(method, isReadonly2, isShallow2) {
|
|
1040
|
+
return function(...args) {
|
|
1041
|
+
const target = this["__v_raw"];
|
|
1042
|
+
const rawTarget = toRaw(target);
|
|
1043
|
+
const targetIsMap = shared.isMap(rawTarget);
|
|
1044
|
+
const isPair = method === "entries" || method === Symbol.iterator && targetIsMap;
|
|
1045
|
+
const isKeyOnly = method === "keys" && targetIsMap;
|
|
1046
|
+
const innerIterator = target[method](...args);
|
|
1047
|
+
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
|
|
1048
|
+
!isReadonly2 && track(
|
|
1049
|
+
rawTarget,
|
|
1050
|
+
"iterate",
|
|
1051
|
+
isKeyOnly ? MAP_KEY_ITERATE_KEY : ITERATE_KEY
|
|
1052
|
+
);
|
|
1053
|
+
return {
|
|
1054
|
+
// iterator protocol
|
|
1055
|
+
next() {
|
|
1056
|
+
const { value, done } = innerIterator.next();
|
|
1057
|
+
return done ? { value, done } : {
|
|
1058
|
+
value: isPair ? [wrap(value[0]), wrap(value[1])] : wrap(value),
|
|
1059
|
+
done
|
|
1060
|
+
};
|
|
1061
|
+
},
|
|
1062
|
+
// iterable protocol
|
|
1063
|
+
[Symbol.iterator]() {
|
|
1064
|
+
return this;
|
|
1065
|
+
}
|
|
1066
|
+
};
|
|
1067
|
+
};
|
|
1068
|
+
}
|
|
1069
|
+
function createReadonlyMethod(type) {
|
|
1070
|
+
return function(...args) {
|
|
1071
|
+
return type === "delete" ? false : type === "clear" ? void 0 : this;
|
|
1072
|
+
};
|
|
1073
|
+
}
|
|
1074
|
+
function createInstrumentations(readonly, shallow) {
|
|
1075
|
+
const instrumentations = {
|
|
1076
|
+
get(key) {
|
|
1077
|
+
const target = this["__v_raw"];
|
|
1078
|
+
const rawTarget = toRaw(target);
|
|
1079
|
+
const rawKey = toRaw(key);
|
|
1080
|
+
if (!readonly) {
|
|
1081
|
+
if (shared.hasChanged(key, rawKey)) {
|
|
1082
|
+
track(rawTarget, "get", key);
|
|
1083
|
+
}
|
|
1084
|
+
track(rawTarget, "get", rawKey);
|
|
1085
|
+
}
|
|
1086
|
+
const { has } = getProto(rawTarget);
|
|
1087
|
+
const wrap = shallow ? toShallow : readonly ? toReadonly : toReactive;
|
|
1088
|
+
if (has.call(rawTarget, key)) {
|
|
1089
|
+
return wrap(target.get(key));
|
|
1090
|
+
} else if (has.call(rawTarget, rawKey)) {
|
|
1091
|
+
return wrap(target.get(rawKey));
|
|
1092
|
+
} else if (target !== rawTarget) {
|
|
1093
|
+
target.get(key);
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
1096
|
+
get size() {
|
|
1097
|
+
const target = this["__v_raw"];
|
|
1098
|
+
!readonly && track(toRaw(target), "iterate", ITERATE_KEY);
|
|
1099
|
+
return target.size;
|
|
1100
|
+
},
|
|
1101
|
+
has(key) {
|
|
1102
|
+
const target = this["__v_raw"];
|
|
1103
|
+
const rawTarget = toRaw(target);
|
|
1104
|
+
const rawKey = toRaw(key);
|
|
1105
|
+
if (!readonly) {
|
|
1106
|
+
if (shared.hasChanged(key, rawKey)) {
|
|
1107
|
+
track(rawTarget, "has", key);
|
|
1108
|
+
}
|
|
1109
|
+
track(rawTarget, "has", rawKey);
|
|
1110
|
+
}
|
|
1111
|
+
return key === rawKey ? target.has(key) : target.has(key) || target.has(rawKey);
|
|
1112
|
+
},
|
|
1113
|
+
forEach(callback, thisArg) {
|
|
1114
|
+
const observed = this;
|
|
1115
|
+
const target = observed["__v_raw"];
|
|
1116
|
+
const rawTarget = toRaw(target);
|
|
1117
|
+
const wrap = shallow ? toShallow : readonly ? toReadonly : toReactive;
|
|
1118
|
+
!readonly && track(rawTarget, "iterate", ITERATE_KEY);
|
|
1119
|
+
return target.forEach((value, key) => {
|
|
1120
|
+
return callback.call(thisArg, wrap(value), wrap(key), observed);
|
|
1121
|
+
});
|
|
1122
|
+
}
|
|
1123
|
+
};
|
|
1124
|
+
shared.extend(
|
|
1125
|
+
instrumentations,
|
|
1126
|
+
readonly ? {
|
|
1127
|
+
add: createReadonlyMethod("add"),
|
|
1128
|
+
set: createReadonlyMethod("set"),
|
|
1129
|
+
delete: createReadonlyMethod("delete"),
|
|
1130
|
+
clear: createReadonlyMethod("clear")
|
|
1131
|
+
} : {
|
|
1132
|
+
add(value) {
|
|
1133
|
+
if (!shallow && !isShallow(value) && !isReadonly(value)) {
|
|
1134
|
+
value = toRaw(value);
|
|
1135
|
+
}
|
|
1136
|
+
const target = toRaw(this);
|
|
1137
|
+
const proto = getProto(target);
|
|
1138
|
+
const hadKey = proto.has.call(target, value);
|
|
1139
|
+
if (!hadKey) {
|
|
1140
|
+
target.add(value);
|
|
1141
|
+
trigger(target, "add", value, value);
|
|
1142
|
+
}
|
|
1143
|
+
return this;
|
|
1144
|
+
},
|
|
1145
|
+
set(key, value) {
|
|
1146
|
+
if (!shallow && !isShallow(value) && !isReadonly(value)) {
|
|
1147
|
+
value = toRaw(value);
|
|
1148
|
+
}
|
|
1149
|
+
const target = toRaw(this);
|
|
1150
|
+
const { has, get } = getProto(target);
|
|
1151
|
+
let hadKey = has.call(target, key);
|
|
1152
|
+
if (!hadKey) {
|
|
1153
|
+
key = toRaw(key);
|
|
1154
|
+
hadKey = has.call(target, key);
|
|
1155
|
+
}
|
|
1156
|
+
const oldValue = get.call(target, key);
|
|
1157
|
+
target.set(key, value);
|
|
1158
|
+
if (!hadKey) {
|
|
1159
|
+
trigger(target, "add", key, value);
|
|
1160
|
+
} else if (shared.hasChanged(value, oldValue)) {
|
|
1161
|
+
trigger(target, "set", key, value);
|
|
1162
|
+
}
|
|
1163
|
+
return this;
|
|
1164
|
+
},
|
|
1165
|
+
delete(key) {
|
|
1166
|
+
const target = toRaw(this);
|
|
1167
|
+
const { has, get } = getProto(target);
|
|
1168
|
+
let hadKey = has.call(target, key);
|
|
1169
|
+
if (!hadKey) {
|
|
1170
|
+
key = toRaw(key);
|
|
1171
|
+
hadKey = has.call(target, key);
|
|
1172
|
+
}
|
|
1173
|
+
get ? get.call(target, key) : void 0;
|
|
1174
|
+
const result = target.delete(key);
|
|
1175
|
+
if (hadKey) {
|
|
1176
|
+
trigger(target, "delete", key, void 0);
|
|
1177
|
+
}
|
|
1178
|
+
return result;
|
|
1179
|
+
},
|
|
1180
|
+
clear() {
|
|
1181
|
+
const target = toRaw(this);
|
|
1182
|
+
const hadItems = target.size !== 0;
|
|
1183
|
+
const result = target.clear();
|
|
1184
|
+
if (hadItems) {
|
|
1185
|
+
trigger(
|
|
1186
|
+
target,
|
|
1187
|
+
"clear",
|
|
1188
|
+
void 0,
|
|
1189
|
+
void 0);
|
|
1190
|
+
}
|
|
1191
|
+
return result;
|
|
1192
|
+
}
|
|
1193
|
+
}
|
|
1194
|
+
);
|
|
1195
|
+
const iteratorMethods = [
|
|
1196
|
+
"keys",
|
|
1197
|
+
"values",
|
|
1198
|
+
"entries",
|
|
1199
|
+
Symbol.iterator
|
|
1200
|
+
];
|
|
1201
|
+
iteratorMethods.forEach((method) => {
|
|
1202
|
+
instrumentations[method] = createIterableMethod(method, readonly, shallow);
|
|
1203
|
+
});
|
|
1204
|
+
return instrumentations;
|
|
1205
|
+
}
|
|
1206
|
+
function createInstrumentationGetter(isReadonly2, shallow) {
|
|
1207
|
+
const instrumentations = createInstrumentations(isReadonly2, shallow);
|
|
1208
|
+
return (target, key, receiver) => {
|
|
1209
|
+
if (key === "__v_isReactive") {
|
|
1210
|
+
return !isReadonly2;
|
|
1211
|
+
} else if (key === "__v_isReadonly") {
|
|
1212
|
+
return isReadonly2;
|
|
1213
|
+
} else if (key === "__v_raw") {
|
|
1214
|
+
return target;
|
|
1215
|
+
}
|
|
1216
|
+
return Reflect.get(
|
|
1217
|
+
shared.hasOwn(instrumentations, key) && key in target ? instrumentations : target,
|
|
1218
|
+
key,
|
|
1219
|
+
receiver
|
|
1220
|
+
);
|
|
1221
|
+
};
|
|
1222
|
+
}
|
|
1223
|
+
const mutableCollectionHandlers = {
|
|
1224
|
+
get: /* @__PURE__ */ createInstrumentationGetter(false, false)
|
|
1225
|
+
};
|
|
1226
|
+
const shallowCollectionHandlers = {
|
|
1227
|
+
get: /* @__PURE__ */ createInstrumentationGetter(false, true)
|
|
1228
|
+
};
|
|
1229
|
+
const readonlyCollectionHandlers = {
|
|
1230
|
+
get: /* @__PURE__ */ createInstrumentationGetter(true, false)
|
|
1231
|
+
};
|
|
1232
|
+
const shallowReadonlyCollectionHandlers = {
|
|
1233
|
+
get: /* @__PURE__ */ createInstrumentationGetter(true, true)
|
|
1234
|
+
};
|
|
1235
|
+
|
|
1236
|
+
const reactiveMap = /* @__PURE__ */ new WeakMap();
|
|
1237
|
+
const shallowReactiveMap = /* @__PURE__ */ new WeakMap();
|
|
1238
|
+
const readonlyMap = /* @__PURE__ */ new WeakMap();
|
|
1239
|
+
const shallowReadonlyMap = /* @__PURE__ */ new WeakMap();
|
|
1240
|
+
function targetTypeMap(rawType) {
|
|
1241
|
+
switch (rawType) {
|
|
1242
|
+
case "Object":
|
|
1243
|
+
case "Array":
|
|
1244
|
+
return 1 /* COMMON */;
|
|
1245
|
+
case "Map":
|
|
1246
|
+
case "Set":
|
|
1247
|
+
case "WeakMap":
|
|
1248
|
+
case "WeakSet":
|
|
1249
|
+
return 2 /* COLLECTION */;
|
|
1250
|
+
default:
|
|
1251
|
+
return 0 /* INVALID */;
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
function getTargetType(value) {
|
|
1255
|
+
return value["__v_skip"] || !Object.isExtensible(value) ? 0 /* INVALID */ : targetTypeMap(shared.toRawType(value));
|
|
1256
|
+
}
|
|
1257
|
+
function reactive(target) {
|
|
1258
|
+
if (isReadonly(target)) {
|
|
1259
|
+
return target;
|
|
1260
|
+
}
|
|
1261
|
+
return createReactiveObject(
|
|
1262
|
+
target,
|
|
1263
|
+
false,
|
|
1264
|
+
mutableHandlers,
|
|
1265
|
+
mutableCollectionHandlers,
|
|
1266
|
+
reactiveMap
|
|
1267
|
+
);
|
|
1268
|
+
}
|
|
1269
|
+
function shallowReactive(target) {
|
|
1270
|
+
return createReactiveObject(
|
|
1271
|
+
target,
|
|
1272
|
+
false,
|
|
1273
|
+
shallowReactiveHandlers,
|
|
1274
|
+
shallowCollectionHandlers,
|
|
1275
|
+
shallowReactiveMap
|
|
1276
|
+
);
|
|
1277
|
+
}
|
|
1278
|
+
function readonly(target) {
|
|
1279
|
+
return createReactiveObject(
|
|
1280
|
+
target,
|
|
1281
|
+
true,
|
|
1282
|
+
readonlyHandlers,
|
|
1283
|
+
readonlyCollectionHandlers,
|
|
1284
|
+
readonlyMap
|
|
1285
|
+
);
|
|
1286
|
+
}
|
|
1287
|
+
function shallowReadonly(target) {
|
|
1288
|
+
return createReactiveObject(
|
|
1289
|
+
target,
|
|
1290
|
+
true,
|
|
1291
|
+
shallowReadonlyHandlers,
|
|
1292
|
+
shallowReadonlyCollectionHandlers,
|
|
1293
|
+
shallowReadonlyMap
|
|
1294
|
+
);
|
|
1295
|
+
}
|
|
1296
|
+
function createReactiveObject(target, isReadonly2, baseHandlers, collectionHandlers, proxyMap) {
|
|
1297
|
+
if (!shared.isObject(target)) {
|
|
1298
|
+
return target;
|
|
1299
|
+
}
|
|
1300
|
+
if (target["__v_raw"] && !(isReadonly2 && target["__v_isReactive"])) {
|
|
1301
|
+
return target;
|
|
1302
|
+
}
|
|
1303
|
+
const targetType = getTargetType(target);
|
|
1304
|
+
if (targetType === 0 /* INVALID */) {
|
|
1305
|
+
return target;
|
|
1306
|
+
}
|
|
1307
|
+
const existingProxy = proxyMap.get(target);
|
|
1308
|
+
if (existingProxy) {
|
|
1309
|
+
return existingProxy;
|
|
1310
|
+
}
|
|
1311
|
+
const proxy = new Proxy(
|
|
1312
|
+
target,
|
|
1313
|
+
targetType === 2 /* COLLECTION */ ? collectionHandlers : baseHandlers
|
|
1314
|
+
);
|
|
1315
|
+
proxyMap.set(target, proxy);
|
|
1316
|
+
return proxy;
|
|
1317
|
+
}
|
|
1318
|
+
function isReactive(value) {
|
|
1319
|
+
if (isReadonly(value)) {
|
|
1320
|
+
return isReactive(value["__v_raw"]);
|
|
1321
|
+
}
|
|
1322
|
+
return !!(value && value["__v_isReactive"]);
|
|
1323
|
+
}
|
|
1324
|
+
function isReadonly(value) {
|
|
1325
|
+
return !!(value && value["__v_isReadonly"]);
|
|
1326
|
+
}
|
|
1327
|
+
function isShallow(value) {
|
|
1328
|
+
return !!(value && value["__v_isShallow"]);
|
|
1329
|
+
}
|
|
1330
|
+
function isProxy(value) {
|
|
1331
|
+
return value ? !!value["__v_raw"] : false;
|
|
1332
|
+
}
|
|
1333
|
+
function toRaw(observed) {
|
|
1334
|
+
const raw = observed && observed["__v_raw"];
|
|
1335
|
+
return raw ? toRaw(raw) : observed;
|
|
1336
|
+
}
|
|
1337
|
+
function markRaw(value) {
|
|
1338
|
+
if (!shared.hasOwn(value, "__v_skip") && Object.isExtensible(value)) {
|
|
1339
|
+
shared.def(value, "__v_skip", true);
|
|
1340
|
+
}
|
|
1341
|
+
return value;
|
|
1342
|
+
}
|
|
1343
|
+
const toReactive = (value) => shared.isObject(value) ? reactive(value) : value;
|
|
1344
|
+
const toReadonly = (value) => shared.isObject(value) ? readonly(value) : value;
|
|
1345
|
+
|
|
1346
|
+
function isRef(r) {
|
|
1347
|
+
return r ? r["__v_isRef"] === true : false;
|
|
1348
|
+
}
|
|
1349
|
+
function ref(value) {
|
|
1350
|
+
return createRef(value, false);
|
|
1351
|
+
}
|
|
1352
|
+
function shallowRef(value) {
|
|
1353
|
+
return createRef(value, true);
|
|
1354
|
+
}
|
|
1355
|
+
function createRef(rawValue, shallow) {
|
|
1356
|
+
if (isRef(rawValue)) {
|
|
1357
|
+
return rawValue;
|
|
1358
|
+
}
|
|
1359
|
+
return new RefImpl(rawValue, shallow);
|
|
1360
|
+
}
|
|
1361
|
+
class RefImpl {
|
|
1362
|
+
constructor(value, isShallow2) {
|
|
1363
|
+
this.dep = new Dep();
|
|
1364
|
+
this["__v_isRef"] = true;
|
|
1365
|
+
this["__v_isShallow"] = false;
|
|
1366
|
+
this._rawValue = isShallow2 ? value : toRaw(value);
|
|
1367
|
+
this._value = isShallow2 ? value : toReactive(value);
|
|
1368
|
+
this["__v_isShallow"] = isShallow2;
|
|
1369
|
+
}
|
|
1370
|
+
get value() {
|
|
1371
|
+
{
|
|
1372
|
+
this.dep.track();
|
|
1373
|
+
}
|
|
1374
|
+
return this._value;
|
|
1375
|
+
}
|
|
1376
|
+
set value(newValue) {
|
|
1377
|
+
const oldValue = this._rawValue;
|
|
1378
|
+
const useDirectValue = this["__v_isShallow"] || isShallow(newValue) || isReadonly(newValue);
|
|
1379
|
+
newValue = useDirectValue ? newValue : toRaw(newValue);
|
|
1380
|
+
if (shared.hasChanged(newValue, oldValue)) {
|
|
1381
|
+
this._rawValue = newValue;
|
|
1382
|
+
this._value = useDirectValue ? newValue : toReactive(newValue);
|
|
1383
|
+
{
|
|
1384
|
+
this.dep.trigger();
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
}
|
|
1388
|
+
}
|
|
1389
|
+
function triggerRef(ref2) {
|
|
1390
|
+
if (ref2.dep) {
|
|
1391
|
+
{
|
|
1392
|
+
ref2.dep.trigger();
|
|
1393
|
+
}
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
function unref(ref2) {
|
|
1397
|
+
return isRef(ref2) ? ref2.value : ref2;
|
|
1398
|
+
}
|
|
1399
|
+
function toValue(source) {
|
|
1400
|
+
return shared.isFunction(source) ? source() : unref(source);
|
|
1401
|
+
}
|
|
1402
|
+
const shallowUnwrapHandlers = {
|
|
1403
|
+
get: (target, key, receiver) => key === "__v_raw" ? target : unref(Reflect.get(target, key, receiver)),
|
|
1404
|
+
set: (target, key, value, receiver) => {
|
|
1405
|
+
const oldValue = target[key];
|
|
1406
|
+
if (isRef(oldValue) && !isRef(value)) {
|
|
1407
|
+
oldValue.value = value;
|
|
1408
|
+
return true;
|
|
1409
|
+
} else {
|
|
1410
|
+
return Reflect.set(target, key, value, receiver);
|
|
1411
|
+
}
|
|
1412
|
+
}
|
|
1413
|
+
};
|
|
1414
|
+
function proxyRefs(objectWithRefs) {
|
|
1415
|
+
return isReactive(objectWithRefs) ? objectWithRefs : new Proxy(objectWithRefs, shallowUnwrapHandlers);
|
|
1416
|
+
}
|
|
1417
|
+
class CustomRefImpl {
|
|
1418
|
+
constructor(factory) {
|
|
1419
|
+
this["__v_isRef"] = true;
|
|
1420
|
+
this._value = void 0;
|
|
1421
|
+
const dep = this.dep = new Dep();
|
|
1422
|
+
const { get, set } = factory(dep.track.bind(dep), dep.trigger.bind(dep));
|
|
1423
|
+
this._get = get;
|
|
1424
|
+
this._set = set;
|
|
1425
|
+
}
|
|
1426
|
+
get value() {
|
|
1427
|
+
return this._value = this._get();
|
|
1428
|
+
}
|
|
1429
|
+
set value(newVal) {
|
|
1430
|
+
this._set(newVal);
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1433
|
+
function customRef(factory) {
|
|
1434
|
+
return new CustomRefImpl(factory);
|
|
1435
|
+
}
|
|
1436
|
+
function toRefs(object) {
|
|
1437
|
+
const ret = shared.isArray(object) ? new Array(object.length) : {};
|
|
1438
|
+
for (const key in object) {
|
|
1439
|
+
ret[key] = propertyToRef(object, key);
|
|
1440
|
+
}
|
|
1441
|
+
return ret;
|
|
1442
|
+
}
|
|
1443
|
+
class ObjectRefImpl {
|
|
1444
|
+
constructor(_object, _key, _defaultValue) {
|
|
1445
|
+
this._object = _object;
|
|
1446
|
+
this._key = _key;
|
|
1447
|
+
this._defaultValue = _defaultValue;
|
|
1448
|
+
this["__v_isRef"] = true;
|
|
1449
|
+
this._value = void 0;
|
|
1450
|
+
this._raw = toRaw(_object);
|
|
1451
|
+
let shallow = true;
|
|
1452
|
+
let obj = _object;
|
|
1453
|
+
if (!shared.isArray(_object) || !shared.isIntegerKey(String(_key))) {
|
|
1454
|
+
do {
|
|
1455
|
+
shallow = !isProxy(obj) || isShallow(obj);
|
|
1456
|
+
} while (shallow && (obj = obj["__v_raw"]));
|
|
1457
|
+
}
|
|
1458
|
+
this._shallow = shallow;
|
|
1459
|
+
}
|
|
1460
|
+
get value() {
|
|
1461
|
+
let val = this._object[this._key];
|
|
1462
|
+
if (this._shallow) {
|
|
1463
|
+
val = unref(val);
|
|
1464
|
+
}
|
|
1465
|
+
return this._value = val === void 0 ? this._defaultValue : val;
|
|
1466
|
+
}
|
|
1467
|
+
set value(newVal) {
|
|
1468
|
+
if (this._shallow && isRef(this._raw[this._key])) {
|
|
1469
|
+
const nestedRef = this._object[this._key];
|
|
1470
|
+
if (isRef(nestedRef)) {
|
|
1471
|
+
nestedRef.value = newVal;
|
|
1472
|
+
return;
|
|
1473
|
+
}
|
|
1474
|
+
}
|
|
1475
|
+
this._object[this._key] = newVal;
|
|
1476
|
+
}
|
|
1477
|
+
get dep() {
|
|
1478
|
+
return getDepFromReactive(this._raw, this._key);
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
class GetterRefImpl {
|
|
1482
|
+
constructor(_getter) {
|
|
1483
|
+
this._getter = _getter;
|
|
1484
|
+
this["__v_isRef"] = true;
|
|
1485
|
+
this["__v_isReadonly"] = true;
|
|
1486
|
+
this._value = void 0;
|
|
1487
|
+
}
|
|
1488
|
+
get value() {
|
|
1489
|
+
return this._value = this._getter();
|
|
1490
|
+
}
|
|
1491
|
+
}
|
|
1492
|
+
function toRef(source, key, defaultValue) {
|
|
1493
|
+
if (isRef(source)) {
|
|
1494
|
+
return source;
|
|
1495
|
+
} else if (shared.isFunction(source)) {
|
|
1496
|
+
return new GetterRefImpl(source);
|
|
1497
|
+
} else if (shared.isObject(source) && arguments.length > 1) {
|
|
1498
|
+
return propertyToRef(source, key, defaultValue);
|
|
1499
|
+
} else {
|
|
1500
|
+
return ref(source);
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
function propertyToRef(source, key, defaultValue) {
|
|
1504
|
+
return new ObjectRefImpl(source, key, defaultValue);
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
class ComputedRefImpl {
|
|
1508
|
+
constructor(fn, setter, isSSR) {
|
|
1509
|
+
this.fn = fn;
|
|
1510
|
+
this.setter = setter;
|
|
1511
|
+
/**
|
|
1512
|
+
* @internal
|
|
1513
|
+
*/
|
|
1514
|
+
this._value = void 0;
|
|
1515
|
+
/**
|
|
1516
|
+
* @internal
|
|
1517
|
+
*/
|
|
1518
|
+
this.dep = new Dep(this);
|
|
1519
|
+
/**
|
|
1520
|
+
* @internal
|
|
1521
|
+
*/
|
|
1522
|
+
this.__v_isRef = true;
|
|
1523
|
+
// TODO isolatedDeclarations "__v_isReadonly"
|
|
1524
|
+
// A computed is also a subscriber that tracks other deps
|
|
1525
|
+
/**
|
|
1526
|
+
* @internal
|
|
1527
|
+
*/
|
|
1528
|
+
this.deps = void 0;
|
|
1529
|
+
/**
|
|
1530
|
+
* @internal
|
|
1531
|
+
*/
|
|
1532
|
+
this.depsTail = void 0;
|
|
1533
|
+
/**
|
|
1534
|
+
* @internal
|
|
1535
|
+
*/
|
|
1536
|
+
this.flags = 16;
|
|
1537
|
+
/**
|
|
1538
|
+
* @internal
|
|
1539
|
+
*/
|
|
1540
|
+
this.globalVersion = globalVersion - 1;
|
|
1541
|
+
/**
|
|
1542
|
+
* @internal
|
|
1543
|
+
*/
|
|
1544
|
+
this.next = void 0;
|
|
1545
|
+
// for backwards compat
|
|
1546
|
+
this.effect = this;
|
|
1547
|
+
this["__v_isReadonly"] = !setter;
|
|
1548
|
+
this.isSSR = isSSR;
|
|
1549
|
+
}
|
|
1550
|
+
/**
|
|
1551
|
+
* @internal
|
|
1552
|
+
*/
|
|
1553
|
+
notify() {
|
|
1554
|
+
this.flags |= 16;
|
|
1555
|
+
if (!(this.flags & 8) && // avoid infinite self recursion
|
|
1556
|
+
activeSub !== this) {
|
|
1557
|
+
batch(this, true);
|
|
1558
|
+
return true;
|
|
1559
|
+
}
|
|
1560
|
+
}
|
|
1561
|
+
get value() {
|
|
1562
|
+
const link = this.dep.track();
|
|
1563
|
+
refreshComputed(this);
|
|
1564
|
+
if (link) {
|
|
1565
|
+
link.version = this.dep.version;
|
|
1566
|
+
}
|
|
1567
|
+
return this._value;
|
|
1568
|
+
}
|
|
1569
|
+
set value(newValue) {
|
|
1570
|
+
if (this.setter) {
|
|
1571
|
+
this.setter(newValue);
|
|
1572
|
+
}
|
|
1573
|
+
}
|
|
1574
|
+
}
|
|
1575
|
+
function computed(getterOrOptions, debugOptions, isSSR = false) {
|
|
1576
|
+
let getter;
|
|
1577
|
+
let setter;
|
|
1578
|
+
if (shared.isFunction(getterOrOptions)) {
|
|
1579
|
+
getter = getterOrOptions;
|
|
1580
|
+
} else {
|
|
1581
|
+
getter = getterOrOptions.get;
|
|
1582
|
+
setter = getterOrOptions.set;
|
|
1583
|
+
}
|
|
1584
|
+
const cRef = new ComputedRefImpl(getter, setter, isSSR);
|
|
1585
|
+
return cRef;
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
const TrackOpTypes = {
|
|
1589
|
+
"GET": "get",
|
|
1590
|
+
"HAS": "has",
|
|
1591
|
+
"ITERATE": "iterate"
|
|
1592
|
+
};
|
|
1593
|
+
const TriggerOpTypes = {
|
|
1594
|
+
"SET": "set",
|
|
1595
|
+
"ADD": "add",
|
|
1596
|
+
"DELETE": "delete",
|
|
1597
|
+
"CLEAR": "clear"
|
|
1598
|
+
};
|
|
1599
|
+
const ReactiveFlags = {
|
|
1600
|
+
"SKIP": "__v_skip",
|
|
1601
|
+
"IS_REACTIVE": "__v_isReactive",
|
|
1602
|
+
"IS_READONLY": "__v_isReadonly",
|
|
1603
|
+
"IS_SHALLOW": "__v_isShallow",
|
|
1604
|
+
"RAW": "__v_raw",
|
|
1605
|
+
"IS_REF": "__v_isRef"
|
|
1606
|
+
};
|
|
1607
|
+
|
|
1608
|
+
const WatchErrorCodes = {
|
|
1609
|
+
"WATCH_GETTER": 2,
|
|
1610
|
+
"2": "WATCH_GETTER",
|
|
1611
|
+
"WATCH_CALLBACK": 3,
|
|
1612
|
+
"3": "WATCH_CALLBACK",
|
|
1613
|
+
"WATCH_CLEANUP": 4,
|
|
1614
|
+
"4": "WATCH_CLEANUP"
|
|
1615
|
+
};
|
|
1616
|
+
const INITIAL_WATCHER_VALUE = {};
|
|
1617
|
+
const cleanupMap = /* @__PURE__ */ new WeakMap();
|
|
1618
|
+
let activeWatcher = void 0;
|
|
1619
|
+
function getCurrentWatcher() {
|
|
1620
|
+
return activeWatcher;
|
|
1621
|
+
}
|
|
1622
|
+
function onWatcherCleanup(cleanupFn, failSilently = false, owner = activeWatcher) {
|
|
1623
|
+
if (owner) {
|
|
1624
|
+
let cleanups = cleanupMap.get(owner);
|
|
1625
|
+
if (!cleanups) cleanupMap.set(owner, cleanups = []);
|
|
1626
|
+
cleanups.push(cleanupFn);
|
|
1627
|
+
}
|
|
1628
|
+
}
|
|
1629
|
+
function watch(source, cb, options = shared.EMPTY_OBJ) {
|
|
1630
|
+
const { immediate, deep, once, scheduler, augmentJob, call } = options;
|
|
1631
|
+
const reactiveGetter = (source2) => {
|
|
1632
|
+
if (deep) return source2;
|
|
1633
|
+
if (isShallow(source2) || deep === false || deep === 0)
|
|
1634
|
+
return traverse(source2, 1);
|
|
1635
|
+
return traverse(source2);
|
|
1636
|
+
};
|
|
1637
|
+
let effect;
|
|
1638
|
+
let getter;
|
|
1639
|
+
let cleanup;
|
|
1640
|
+
let boundCleanup;
|
|
1641
|
+
let forceTrigger = false;
|
|
1642
|
+
let isMultiSource = false;
|
|
1643
|
+
if (isRef(source)) {
|
|
1644
|
+
getter = () => source.value;
|
|
1645
|
+
forceTrigger = isShallow(source);
|
|
1646
|
+
} else if (isReactive(source)) {
|
|
1647
|
+
getter = () => reactiveGetter(source);
|
|
1648
|
+
forceTrigger = true;
|
|
1649
|
+
} else if (shared.isArray(source)) {
|
|
1650
|
+
isMultiSource = true;
|
|
1651
|
+
forceTrigger = source.some((s) => isReactive(s) || isShallow(s));
|
|
1652
|
+
getter = () => source.map((s) => {
|
|
1653
|
+
if (isRef(s)) {
|
|
1654
|
+
return s.value;
|
|
1655
|
+
} else if (isReactive(s)) {
|
|
1656
|
+
return reactiveGetter(s);
|
|
1657
|
+
} else if (shared.isFunction(s)) {
|
|
1658
|
+
return call ? call(s, 2) : s();
|
|
1659
|
+
} else ;
|
|
1660
|
+
});
|
|
1661
|
+
} else if (shared.isFunction(source)) {
|
|
1662
|
+
if (cb) {
|
|
1663
|
+
getter = call ? () => call(source, 2) : source;
|
|
1664
|
+
} else {
|
|
1665
|
+
getter = () => {
|
|
1666
|
+
if (cleanup) {
|
|
1667
|
+
pauseTracking();
|
|
1668
|
+
try {
|
|
1669
|
+
cleanup();
|
|
1670
|
+
} finally {
|
|
1671
|
+
resetTracking();
|
|
1672
|
+
}
|
|
1673
|
+
}
|
|
1674
|
+
const currentEffect = activeWatcher;
|
|
1675
|
+
activeWatcher = effect;
|
|
1676
|
+
try {
|
|
1677
|
+
return call ? call(source, 3, [boundCleanup]) : source(boundCleanup);
|
|
1678
|
+
} finally {
|
|
1679
|
+
activeWatcher = currentEffect;
|
|
1680
|
+
}
|
|
1681
|
+
};
|
|
1682
|
+
}
|
|
1683
|
+
} else {
|
|
1684
|
+
getter = shared.NOOP;
|
|
1685
|
+
}
|
|
1686
|
+
if (cb && deep) {
|
|
1687
|
+
const baseGetter = getter;
|
|
1688
|
+
const depth = deep === true ? Infinity : deep;
|
|
1689
|
+
getter = () => traverse(baseGetter(), depth);
|
|
1690
|
+
}
|
|
1691
|
+
const scope = getCurrentScope();
|
|
1692
|
+
const watchHandle = () => {
|
|
1693
|
+
effect.stop();
|
|
1694
|
+
if (scope && scope.active) {
|
|
1695
|
+
shared.remove(scope.effects, effect);
|
|
1696
|
+
}
|
|
1697
|
+
};
|
|
1698
|
+
if (once && cb) {
|
|
1699
|
+
const _cb = cb;
|
|
1700
|
+
cb = (...args) => {
|
|
1701
|
+
_cb(...args);
|
|
1702
|
+
watchHandle();
|
|
1703
|
+
};
|
|
1704
|
+
}
|
|
1705
|
+
let oldValue = isMultiSource ? new Array(source.length).fill(INITIAL_WATCHER_VALUE) : INITIAL_WATCHER_VALUE;
|
|
1706
|
+
const job = (immediateFirstRun) => {
|
|
1707
|
+
if (!(effect.flags & 1) || !effect.dirty && !immediateFirstRun) {
|
|
1708
|
+
return;
|
|
1709
|
+
}
|
|
1710
|
+
if (cb) {
|
|
1711
|
+
const newValue = effect.run();
|
|
1712
|
+
if (deep || forceTrigger || (isMultiSource ? newValue.some((v, i) => shared.hasChanged(v, oldValue[i])) : shared.hasChanged(newValue, oldValue))) {
|
|
1713
|
+
if (cleanup) {
|
|
1714
|
+
cleanup();
|
|
1715
|
+
}
|
|
1716
|
+
const currentWatcher = activeWatcher;
|
|
1717
|
+
activeWatcher = effect;
|
|
1718
|
+
try {
|
|
1719
|
+
const args = [
|
|
1720
|
+
newValue,
|
|
1721
|
+
// pass undefined as the old value when it's changed for the first time
|
|
1722
|
+
oldValue === INITIAL_WATCHER_VALUE ? void 0 : isMultiSource && oldValue[0] === INITIAL_WATCHER_VALUE ? [] : oldValue,
|
|
1723
|
+
boundCleanup
|
|
1724
|
+
];
|
|
1725
|
+
oldValue = newValue;
|
|
1726
|
+
call ? call(cb, 3, args) : (
|
|
1727
|
+
// @ts-expect-error
|
|
1728
|
+
cb(...args)
|
|
1729
|
+
);
|
|
1730
|
+
} finally {
|
|
1731
|
+
activeWatcher = currentWatcher;
|
|
1732
|
+
}
|
|
1733
|
+
}
|
|
1734
|
+
} else {
|
|
1735
|
+
effect.run();
|
|
1736
|
+
}
|
|
1737
|
+
};
|
|
1738
|
+
if (augmentJob) {
|
|
1739
|
+
augmentJob(job);
|
|
1740
|
+
}
|
|
1741
|
+
effect = new ReactiveEffect(getter);
|
|
1742
|
+
effect.scheduler = scheduler ? () => scheduler(job, false) : job;
|
|
1743
|
+
boundCleanup = (fn) => onWatcherCleanup(fn, false, effect);
|
|
1744
|
+
cleanup = effect.onStop = () => {
|
|
1745
|
+
const cleanups = cleanupMap.get(effect);
|
|
1746
|
+
if (cleanups) {
|
|
1747
|
+
if (call) {
|
|
1748
|
+
call(cleanups, 4);
|
|
1749
|
+
} else {
|
|
1750
|
+
for (const cleanup2 of cleanups) cleanup2();
|
|
1751
|
+
}
|
|
1752
|
+
cleanupMap.delete(effect);
|
|
1753
|
+
}
|
|
1754
|
+
};
|
|
1755
|
+
if (cb) {
|
|
1756
|
+
if (immediate) {
|
|
1757
|
+
job(true);
|
|
1758
|
+
} else {
|
|
1759
|
+
oldValue = effect.run();
|
|
1760
|
+
}
|
|
1761
|
+
} else if (scheduler) {
|
|
1762
|
+
scheduler(job.bind(null, true), true);
|
|
1763
|
+
} else {
|
|
1764
|
+
effect.run();
|
|
1765
|
+
}
|
|
1766
|
+
watchHandle.pause = effect.pause.bind(effect);
|
|
1767
|
+
watchHandle.resume = effect.resume.bind(effect);
|
|
1768
|
+
watchHandle.stop = watchHandle;
|
|
1769
|
+
return watchHandle;
|
|
1770
|
+
}
|
|
1771
|
+
function traverse(value, depth = Infinity, seen) {
|
|
1772
|
+
if (depth <= 0 || !shared.isObject(value) || value["__v_skip"]) {
|
|
1773
|
+
return value;
|
|
1774
|
+
}
|
|
1775
|
+
seen = seen || /* @__PURE__ */ new Map();
|
|
1776
|
+
if ((seen.get(value) || 0) >= depth) {
|
|
1777
|
+
return value;
|
|
1778
|
+
}
|
|
1779
|
+
seen.set(value, depth);
|
|
1780
|
+
depth--;
|
|
1781
|
+
if (isRef(value)) {
|
|
1782
|
+
traverse(value.value, depth, seen);
|
|
1783
|
+
} else if (shared.isArray(value)) {
|
|
1784
|
+
for (let i = 0; i < value.length; i++) {
|
|
1785
|
+
traverse(value[i], depth, seen);
|
|
1786
|
+
}
|
|
1787
|
+
} else if (shared.isSet(value) || shared.isMap(value)) {
|
|
1788
|
+
value.forEach((v) => {
|
|
1789
|
+
traverse(v, depth, seen);
|
|
1790
|
+
});
|
|
1791
|
+
} else if (shared.isPlainObject(value)) {
|
|
1792
|
+
for (const key in value) {
|
|
1793
|
+
traverse(value[key], depth, seen);
|
|
1794
|
+
}
|
|
1795
|
+
for (const key of Object.getOwnPropertySymbols(value)) {
|
|
1796
|
+
if (Object.prototype.propertyIsEnumerable.call(value, key)) {
|
|
1797
|
+
traverse(value[key], depth, seen);
|
|
1798
|
+
}
|
|
1799
|
+
}
|
|
1800
|
+
}
|
|
1801
|
+
return value;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
exports.ARRAY_ITERATE_KEY = ARRAY_ITERATE_KEY;
|
|
1805
|
+
exports.EffectFlags = EffectFlags;
|
|
1806
|
+
exports.EffectScope = EffectScope;
|
|
1807
|
+
exports.ITERATE_KEY = ITERATE_KEY;
|
|
1808
|
+
exports.MAP_KEY_ITERATE_KEY = MAP_KEY_ITERATE_KEY;
|
|
1809
|
+
exports.ReactiveEffect = ReactiveEffect;
|
|
1810
|
+
exports.ReactiveFlags = ReactiveFlags;
|
|
1811
|
+
exports.TrackOpTypes = TrackOpTypes;
|
|
1812
|
+
exports.TriggerOpTypes = TriggerOpTypes;
|
|
1813
|
+
exports.WatchErrorCodes = WatchErrorCodes;
|
|
1814
|
+
exports.computed = computed;
|
|
1815
|
+
exports.customRef = customRef;
|
|
1816
|
+
exports.effect = effect;
|
|
1817
|
+
exports.effectScope = effectScope;
|
|
1818
|
+
exports.enableTracking = enableTracking;
|
|
1819
|
+
exports.getCurrentScope = getCurrentScope;
|
|
1820
|
+
exports.getCurrentWatcher = getCurrentWatcher;
|
|
1821
|
+
exports.isProxy = isProxy;
|
|
1822
|
+
exports.isReactive = isReactive;
|
|
1823
|
+
exports.isReadonly = isReadonly;
|
|
1824
|
+
exports.isRef = isRef;
|
|
1825
|
+
exports.isShallow = isShallow;
|
|
1826
|
+
exports.markRaw = markRaw;
|
|
1827
|
+
exports.onEffectCleanup = onEffectCleanup;
|
|
1828
|
+
exports.onScopeDispose = onScopeDispose;
|
|
1829
|
+
exports.onWatcherCleanup = onWatcherCleanup;
|
|
1830
|
+
exports.pauseTracking = pauseTracking;
|
|
1831
|
+
exports.proxyRefs = proxyRefs;
|
|
1832
|
+
exports.reactive = reactive;
|
|
1833
|
+
exports.reactiveReadArray = reactiveReadArray;
|
|
1834
|
+
exports.readonly = readonly;
|
|
1835
|
+
exports.ref = ref;
|
|
1836
|
+
exports.resetTracking = resetTracking;
|
|
1837
|
+
exports.shallowReactive = shallowReactive;
|
|
1838
|
+
exports.shallowReadArray = shallowReadArray;
|
|
1839
|
+
exports.shallowReadonly = shallowReadonly;
|
|
1840
|
+
exports.shallowRef = shallowRef;
|
|
1841
|
+
exports.stop = stop;
|
|
1842
|
+
exports.toRaw = toRaw;
|
|
1843
|
+
exports.toReactive = toReactive;
|
|
1844
|
+
exports.toReadonly = toReadonly;
|
|
1845
|
+
exports.toRef = toRef;
|
|
1846
|
+
exports.toRefs = toRefs;
|
|
1847
|
+
exports.toValue = toValue;
|
|
1848
|
+
exports.track = track;
|
|
1849
|
+
exports.traverse = traverse;
|
|
1850
|
+
exports.trigger = trigger;
|
|
1851
|
+
exports.triggerRef = triggerRef;
|
|
1852
|
+
exports.unref = unref;
|
|
1853
|
+
exports.watch = watch;
|