nuxt-ignis 0.5.1 → 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 +1209 -608
- 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 +3 -3
- package/features.ts +13 -0
- package/i18n/locales/en.json +1 -0
- package/nuxt.config.ts +5 -13
- package/package.json +11 -9
- 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/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
- package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
- package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
- package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
- package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
- package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
- package/.output/public/_fonts/Jtqhy44WKYEjGWTSusP5YJfJv7Wf74QqgkBOI9u_77s-Rl_Bht5SvmaotE20bkavBEAJEEGEa0hcz3d_8yOeXmw.woff +0 -0
- package/.output/public/_fonts/ZHaz3DhCHNWhsElqYfuM71rfBBDgjuU2sd34vaYJwQg-71NZaZSGjxzAGjCMnCc2zS5rS_EGA0xHKPGCggWuXik.woff +0 -0
- package/.output/public/_fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-BgCmQXkW3N6talUbQSKexB2sHUT0qGEzmM4uMcnDAbI.woff +0 -0
- package/.output/public/_nuxt/1vOq3xiE.js +0 -1
- package/.output/public/_nuxt/22rhGZdI.js +0 -1
- package/.output/public/_nuxt/9eIdSibD.js +0 -1
- package/.output/public/_nuxt/BBmTy930.js +0 -35
- package/.output/public/_nuxt/BKe83Cjx.js +0 -1
- package/.output/public/_nuxt/Bc5GLloR.js +0 -1
- package/.output/public/_nuxt/BdG3SY-u.js +0 -1
- package/.output/public/_nuxt/BeyOQpYA.js +0 -1
- package/.output/public/_nuxt/BqcXd3MY.js +0 -94
- package/.output/public/_nuxt/Bz55A4y1.js +0 -1
- package/.output/public/_nuxt/C2ybsIQ4.js +0 -1
- package/.output/public/_nuxt/C4U5VOMJ.js +0 -1
- package/.output/public/_nuxt/CAJsyjAK.js +0 -1
- package/.output/public/_nuxt/CD9aBAuy.js +0 -1
- package/.output/public/_nuxt/CHOS7x_d.js +0 -1
- package/.output/public/_nuxt/CXhUbdF6.js +0 -1
- package/.output/public/_nuxt/CZWScI5k.js +0 -1
- package/.output/public/_nuxt/DHd34syF.js +0 -1
- package/.output/public/_nuxt/DMbgtwAJ.js +0 -1
- package/.output/public/_nuxt/DR8jhnFO.js +0 -1
- package/.output/public/_nuxt/DTT0LBLY.js +0 -1
- package/.output/public/_nuxt/DWV_uL6G.js +0 -6764
- package/.output/public/_nuxt/DdpTKqR-.js +0 -1
- package/.output/public/_nuxt/Df_NcBcC.js +0 -1
- package/.output/public/_nuxt/DhqOMFXQ.js +0 -1
- package/.output/public/_nuxt/Dnp9eFDR.js +0 -1
- package/.output/public/_nuxt/DnqMs_6O.js +0 -1
- package/.output/public/_nuxt/Dq7g_IfY.js +0 -1
- package/.output/public/_nuxt/DsAJWnuW.js +0 -1
- package/.output/public/_nuxt/DvVg7vM_.js +0 -1
- package/.output/public/_nuxt/DwKqLVGx.js +0 -1
- package/.output/public/_nuxt/DxzqnQKF.js +0 -1
- package/.output/public/_nuxt/ProsePre.D5orA6B_.css +0 -1
- package/.output/public/_nuxt/Y0f1tU-r.js +0 -1
- package/.output/public/_nuxt/atySmcu6.js +0 -1
- package/.output/public/_nuxt/builds/meta/7bab2b8f-93ee-4f44-a604-8cd2b41eac60.json +0 -1
- package/.output/public/_nuxt/entry.CtpkPzPO.css +0 -1
- package/.output/public/_nuxt/error-404.DzDu4Ean.css +0 -1
- package/.output/public/_nuxt/error-500.BdNqqJx7.css +0 -1
- package/.output/public/_nuxt/q3i45eMH.js +0 -1
- package/.output/public/_nuxt/vueform.CkWb7x1C.css +0 -1
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/convertor/create.cjs +0 -32
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data-patch.cjs +0 -7
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data.cjs +0 -97
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/generate.cjs +0 -135
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/index.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/parse.cjs +0 -588
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/tokenizer.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/walk.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/create.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/sourceMap.cjs +0 -96
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/token-before.cjs +0 -170
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/index.cjs +0 -63
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/Lexer.cjs +0 -459
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/error.cjs +0 -128
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-const.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-urange.cjs +0 -149
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic.cjs +0 -573
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match-graph.cjs +0 -459
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match.cjs +0 -632
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/prepare-tokens.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/search.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/structure.cjs +0 -168
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/trace.cjs +0 -73
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/SyntaxError.cjs +0 -69
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/create.cjs +0 -336
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/sequence.cjs +0 -47
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/font-face.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/import.cjs +0 -37
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/index.cjs +0 -17
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/media.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/page.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/supports.cjs +0 -77
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/lexer.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/mix.cjs +0 -142
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/parser.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/walker.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/create.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/expression.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/var.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/index.cjs +0 -14
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AnPlusB.cjs +0 -293
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Atrule.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Block.cjs +0 -90
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Brackets.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDC.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDO.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/ClassSelector.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Combinator.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Comment.cjs +0 -40
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Declaration.cjs +0 -166
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/DeclarationList.cjs +0 -50
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Dimension.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Function.cjs +0 -45
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Hash.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/IdSelector.cjs +0 -33
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Identifier.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaFeature.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQuery.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Nth.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Number.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Operator.cjs +0 -28
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Parentheses.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Percentage.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Ratio.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Raw.cjs +0 -48
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Rule.cjs +0 -58
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Selector.cjs +0 -39
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/SelectorList.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/String.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/StyleSheet.cjs +0 -83
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/TypeSelector.cjs +0 -59
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Url.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Value.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index-parse.cjs +0 -85
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index.cjs +0 -85
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/pseudo/index.cjs +0 -52
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/default.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/index.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/selector.cjs +0 -84
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/value.cjs +0 -29
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/TokenStream.cjs +0 -264
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/index.cjs +0 -554
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/names.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/types.cjs +0 -57
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/utils.cjs +0 -261
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/List.cjs +0 -473
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/clone.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/create-custom-error.cjs +0 -18
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/ident.cjs +0 -102
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/names.cjs +0 -113
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/string.cjs +0 -99
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/url.cjs +0 -108
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/version.cjs +0 -5
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/walker/create.cjs +0 -291
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/data/patch.json +0 -739
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/convertor/create.cjs +0 -32
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data-patch.cjs +0 -7
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data.cjs +0 -99
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/generate.cjs +0 -135
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/index.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/parse.cjs +0 -588
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/tokenizer.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/walk.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/create.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/sourceMap.cjs +0 -96
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/token-before.cjs +0 -170
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/index.cjs +0 -63
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/Lexer.cjs +0 -470
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/error.cjs +0 -128
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-const.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-urange.cjs +0 -149
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic.cjs +0 -573
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match-graph.cjs +0 -459
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match.cjs +0 -632
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/prepare-tokens.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/search.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/structure.cjs +0 -168
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/trace.cjs +0 -73
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/units.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/SyntaxError.cjs +0 -69
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/create.cjs +0 -336
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/sequence.cjs +0 -47
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/font-face.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/import.cjs +0 -37
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/index.cjs +0 -19
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/media.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/nest.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/page.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/supports.cjs +0 -77
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/lexer.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/mix.cjs +0 -119
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/parser.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/walker.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/create.cjs +0 -57
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/expression.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/var.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/index.cjs +0 -14
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AnPlusB.cjs +0 -293
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Atrule.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Block.cjs +0 -96
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Brackets.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDC.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDO.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/ClassSelector.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Combinator.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Comment.cjs +0 -40
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Declaration.cjs +0 -166
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/DeclarationList.cjs +0 -62
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Dimension.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Function.cjs +0 -45
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Hash.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/IdSelector.cjs +0 -33
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Identifier.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaFeature.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQuery.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/NestingSelector.cjs +0 -29
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Nth.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Number.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Operator.cjs +0 -28
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Parentheses.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Percentage.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Ratio.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Raw.cjs +0 -48
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Rule.cjs +0 -58
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Selector.cjs +0 -39
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/SelectorList.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/String.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/StyleSheet.cjs +0 -83
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/TypeSelector.cjs +0 -59
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Url.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Value.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index-parse.cjs +0 -87
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index.cjs +0 -87
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/pseudo/index.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/default.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/index.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/selector.cjs +0 -88
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/value.cjs +0 -29
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/TokenStream.cjs +0 -264
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/index.cjs +0 -554
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/names.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/types.cjs +0 -57
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/utils.cjs +0 -261
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/List.cjs +0 -473
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/clone.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/create-custom-error.cjs +0 -18
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/ident.cjs +0 -102
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/names.cjs +0 -113
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/string.cjs +0 -99
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/url.cjs +0 -108
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/version.cjs +0 -5
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/walker/create.cjs +0 -291
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/data/patch.json +0 -725
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/package.json +0 -126
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/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,1697 @@
|
|
|
1
|
+
;(function (sax) {
|
|
2
|
+
// wrapper for non-node envs
|
|
3
|
+
sax.parser = function (strict, opt) {
|
|
4
|
+
return new SAXParser(strict, opt)
|
|
5
|
+
}
|
|
6
|
+
sax.SAXParser = SAXParser
|
|
7
|
+
sax.SAXStream = SAXStream
|
|
8
|
+
sax.createStream = createStream
|
|
9
|
+
|
|
10
|
+
// When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns.
|
|
11
|
+
// When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)),
|
|
12
|
+
// since that's the earliest that a buffer overrun could occur. This way, checks are
|
|
13
|
+
// as rare as required, but as often as necessary to ensure never crossing this bound.
|
|
14
|
+
// Furthermore, buffers are only tested at most once per write(), so passing a very
|
|
15
|
+
// large string into write() might have undesirable effects, but this is manageable by
|
|
16
|
+
// the caller, so it is assumed to be safe. Thus, a call to write() may, in the extreme
|
|
17
|
+
// edge case, result in creating at most one complete copy of the string passed in.
|
|
18
|
+
// Set to Infinity to have unlimited buffers.
|
|
19
|
+
sax.MAX_BUFFER_LENGTH = 64 * 1024
|
|
20
|
+
|
|
21
|
+
var buffers = [
|
|
22
|
+
'comment',
|
|
23
|
+
'sgmlDecl',
|
|
24
|
+
'textNode',
|
|
25
|
+
'tagName',
|
|
26
|
+
'doctype',
|
|
27
|
+
'procInstName',
|
|
28
|
+
'procInstBody',
|
|
29
|
+
'entity',
|
|
30
|
+
'attribName',
|
|
31
|
+
'attribValue',
|
|
32
|
+
'cdata',
|
|
33
|
+
'script',
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
sax.EVENTS = [
|
|
37
|
+
'text',
|
|
38
|
+
'processinginstruction',
|
|
39
|
+
'sgmldeclaration',
|
|
40
|
+
'doctype',
|
|
41
|
+
'comment',
|
|
42
|
+
'opentagstart',
|
|
43
|
+
'attribute',
|
|
44
|
+
'opentag',
|
|
45
|
+
'closetag',
|
|
46
|
+
'opencdata',
|
|
47
|
+
'cdata',
|
|
48
|
+
'closecdata',
|
|
49
|
+
'error',
|
|
50
|
+
'end',
|
|
51
|
+
'ready',
|
|
52
|
+
'script',
|
|
53
|
+
'opennamespace',
|
|
54
|
+
'closenamespace',
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
function SAXParser(strict, opt) {
|
|
58
|
+
if (!(this instanceof SAXParser)) {
|
|
59
|
+
return new SAXParser(strict, opt)
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
var parser = this
|
|
63
|
+
clearBuffers(parser)
|
|
64
|
+
parser.q = parser.c = ''
|
|
65
|
+
parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH
|
|
66
|
+
parser.opt = opt || {}
|
|
67
|
+
parser.opt.lowercase = parser.opt.lowercase || parser.opt.lowercasetags
|
|
68
|
+
parser.looseCase = parser.opt.lowercase ? 'toLowerCase' : 'toUpperCase'
|
|
69
|
+
parser.tags = []
|
|
70
|
+
parser.closed = parser.closedRoot = parser.sawRoot = false
|
|
71
|
+
parser.tag = parser.error = null
|
|
72
|
+
parser.strict = !!strict
|
|
73
|
+
parser.noscript = !!(strict || parser.opt.noscript)
|
|
74
|
+
parser.state = S.BEGIN
|
|
75
|
+
parser.strictEntities = parser.opt.strictEntities
|
|
76
|
+
parser.ENTITIES =
|
|
77
|
+
parser.strictEntities ?
|
|
78
|
+
Object.create(sax.XML_ENTITIES)
|
|
79
|
+
: Object.create(sax.ENTITIES)
|
|
80
|
+
parser.attribList = []
|
|
81
|
+
|
|
82
|
+
// namespaces form a prototype chain.
|
|
83
|
+
// it always points at the current tag,
|
|
84
|
+
// which protos to its parent tag.
|
|
85
|
+
if (parser.opt.xmlns) {
|
|
86
|
+
parser.ns = Object.create(rootNS)
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// disallow unquoted attribute values if not otherwise configured
|
|
90
|
+
// and strict mode is true
|
|
91
|
+
if (parser.opt.unquotedAttributeValues === undefined) {
|
|
92
|
+
parser.opt.unquotedAttributeValues = !strict
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// mostly just for error reporting
|
|
96
|
+
parser.trackPosition = parser.opt.position !== false
|
|
97
|
+
if (parser.trackPosition) {
|
|
98
|
+
parser.position = parser.line = parser.column = 0
|
|
99
|
+
}
|
|
100
|
+
emit(parser, 'onready')
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (!Object.create) {
|
|
104
|
+
Object.create = function (o) {
|
|
105
|
+
function F() {}
|
|
106
|
+
F.prototype = o
|
|
107
|
+
var newf = new F()
|
|
108
|
+
return newf
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
if (!Object.keys) {
|
|
113
|
+
Object.keys = function (o) {
|
|
114
|
+
var a = []
|
|
115
|
+
for (var i in o) if (o.hasOwnProperty(i)) a.push(i)
|
|
116
|
+
return a
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
function checkBufferLength(parser) {
|
|
121
|
+
var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10)
|
|
122
|
+
var maxActual = 0
|
|
123
|
+
for (var i = 0, l = buffers.length; i < l; i++) {
|
|
124
|
+
var len = parser[buffers[i]].length
|
|
125
|
+
if (len > maxAllowed) {
|
|
126
|
+
// Text/cdata nodes can get big, and since they're buffered,
|
|
127
|
+
// we can get here under normal conditions.
|
|
128
|
+
// Avoid issues by emitting the text node now,
|
|
129
|
+
// so at least it won't get any bigger.
|
|
130
|
+
switch (buffers[i]) {
|
|
131
|
+
case 'textNode':
|
|
132
|
+
closeText(parser)
|
|
133
|
+
break
|
|
134
|
+
|
|
135
|
+
case 'cdata':
|
|
136
|
+
emitNode(parser, 'oncdata', parser.cdata)
|
|
137
|
+
parser.cdata = ''
|
|
138
|
+
break
|
|
139
|
+
|
|
140
|
+
case 'script':
|
|
141
|
+
emitNode(parser, 'onscript', parser.script)
|
|
142
|
+
parser.script = ''
|
|
143
|
+
break
|
|
144
|
+
|
|
145
|
+
default:
|
|
146
|
+
error(parser, 'Max buffer length exceeded: ' + buffers[i])
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
maxActual = Math.max(maxActual, len)
|
|
150
|
+
}
|
|
151
|
+
// schedule the next check for the earliest possible buffer overrun.
|
|
152
|
+
var m = sax.MAX_BUFFER_LENGTH - maxActual
|
|
153
|
+
parser.bufferCheckPosition = m + parser.position
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
function clearBuffers(parser) {
|
|
157
|
+
for (var i = 0, l = buffers.length; i < l; i++) {
|
|
158
|
+
parser[buffers[i]] = ''
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
function flushBuffers(parser) {
|
|
163
|
+
closeText(parser)
|
|
164
|
+
if (parser.cdata !== '') {
|
|
165
|
+
emitNode(parser, 'oncdata', parser.cdata)
|
|
166
|
+
parser.cdata = ''
|
|
167
|
+
}
|
|
168
|
+
if (parser.script !== '') {
|
|
169
|
+
emitNode(parser, 'onscript', parser.script)
|
|
170
|
+
parser.script = ''
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
SAXParser.prototype = {
|
|
175
|
+
end: function () {
|
|
176
|
+
end(this)
|
|
177
|
+
},
|
|
178
|
+
write: write,
|
|
179
|
+
resume: function () {
|
|
180
|
+
this.error = null
|
|
181
|
+
return this
|
|
182
|
+
},
|
|
183
|
+
close: function () {
|
|
184
|
+
return this.write(null)
|
|
185
|
+
},
|
|
186
|
+
flush: function () {
|
|
187
|
+
flushBuffers(this)
|
|
188
|
+
},
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
var Stream
|
|
192
|
+
try {
|
|
193
|
+
Stream = require('stream').Stream
|
|
194
|
+
} catch (ex) {
|
|
195
|
+
Stream = function () {}
|
|
196
|
+
}
|
|
197
|
+
if (!Stream) Stream = function () {}
|
|
198
|
+
|
|
199
|
+
var streamWraps = sax.EVENTS.filter(function (ev) {
|
|
200
|
+
return ev !== 'error' && ev !== 'end'
|
|
201
|
+
})
|
|
202
|
+
|
|
203
|
+
function createStream(strict, opt) {
|
|
204
|
+
return new SAXStream(strict, opt)
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
function SAXStream(strict, opt) {
|
|
208
|
+
if (!(this instanceof SAXStream)) {
|
|
209
|
+
return new SAXStream(strict, opt)
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
Stream.apply(this)
|
|
213
|
+
|
|
214
|
+
this._parser = new SAXParser(strict, opt)
|
|
215
|
+
this.writable = true
|
|
216
|
+
this.readable = true
|
|
217
|
+
|
|
218
|
+
var me = this
|
|
219
|
+
|
|
220
|
+
this._parser.onend = function () {
|
|
221
|
+
me.emit('end')
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
this._parser.onerror = function (er) {
|
|
225
|
+
me.emit('error', er)
|
|
226
|
+
|
|
227
|
+
// if didn't throw, then means error was handled.
|
|
228
|
+
// go ahead and clear error, so we can write again.
|
|
229
|
+
me._parser.error = null
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
this._decoder = null
|
|
233
|
+
|
|
234
|
+
streamWraps.forEach(function (ev) {
|
|
235
|
+
Object.defineProperty(me, 'on' + ev, {
|
|
236
|
+
get: function () {
|
|
237
|
+
return me._parser['on' + ev]
|
|
238
|
+
},
|
|
239
|
+
set: function (h) {
|
|
240
|
+
if (!h) {
|
|
241
|
+
me.removeAllListeners(ev)
|
|
242
|
+
me._parser['on' + ev] = h
|
|
243
|
+
return h
|
|
244
|
+
}
|
|
245
|
+
me.on(ev, h)
|
|
246
|
+
},
|
|
247
|
+
enumerable: true,
|
|
248
|
+
configurable: false,
|
|
249
|
+
})
|
|
250
|
+
})
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
SAXStream.prototype = Object.create(Stream.prototype, {
|
|
254
|
+
constructor: {
|
|
255
|
+
value: SAXStream,
|
|
256
|
+
},
|
|
257
|
+
})
|
|
258
|
+
|
|
259
|
+
SAXStream.prototype.write = function (data) {
|
|
260
|
+
if (
|
|
261
|
+
typeof Buffer === 'function' &&
|
|
262
|
+
typeof Buffer.isBuffer === 'function' &&
|
|
263
|
+
Buffer.isBuffer(data)
|
|
264
|
+
) {
|
|
265
|
+
if (!this._decoder) {
|
|
266
|
+
var SD = require('string_decoder').StringDecoder
|
|
267
|
+
this._decoder = new SD('utf8')
|
|
268
|
+
}
|
|
269
|
+
data = this._decoder.write(data)
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
this._parser.write(data.toString())
|
|
273
|
+
this.emit('data', data)
|
|
274
|
+
return true
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
SAXStream.prototype.end = function (chunk) {
|
|
278
|
+
if (chunk && chunk.length) {
|
|
279
|
+
this.write(chunk)
|
|
280
|
+
}
|
|
281
|
+
this._parser.end()
|
|
282
|
+
return true
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
SAXStream.prototype.on = function (ev, handler) {
|
|
286
|
+
var me = this
|
|
287
|
+
if (!me._parser['on' + ev] && streamWraps.indexOf(ev) !== -1) {
|
|
288
|
+
me._parser['on' + ev] = function () {
|
|
289
|
+
var args =
|
|
290
|
+
arguments.length === 1 ?
|
|
291
|
+
[arguments[0]]
|
|
292
|
+
: Array.apply(null, arguments)
|
|
293
|
+
args.splice(0, 0, ev)
|
|
294
|
+
me.emit.apply(me, args)
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
return Stream.prototype.on.call(me, ev, handler)
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
// this really needs to be replaced with character classes.
|
|
302
|
+
// XML allows all manner of ridiculous numbers and digits.
|
|
303
|
+
var CDATA = '[CDATA['
|
|
304
|
+
var DOCTYPE = 'DOCTYPE'
|
|
305
|
+
var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace'
|
|
306
|
+
var XMLNS_NAMESPACE = 'http://www.w3.org/2000/xmlns/'
|
|
307
|
+
var rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE }
|
|
308
|
+
|
|
309
|
+
// http://www.w3.org/TR/REC-xml/#NT-NameStartChar
|
|
310
|
+
// This implementation works on strings, a single character at a time
|
|
311
|
+
// as such, it cannot ever support astral-plane characters (10000-EFFFF)
|
|
312
|
+
// without a significant breaking change to either this parser, or the
|
|
313
|
+
// JavaScript language. Implementation of an emoji-capable xml parser
|
|
314
|
+
// is left as an exercise for the reader.
|
|
315
|
+
var nameStart =
|
|
316
|
+
/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/
|
|
317
|
+
|
|
318
|
+
var nameBody =
|
|
319
|
+
/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/
|
|
320
|
+
|
|
321
|
+
var entityStart =
|
|
322
|
+
/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/
|
|
323
|
+
var entityBody =
|
|
324
|
+
/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/
|
|
325
|
+
|
|
326
|
+
function isWhitespace(c) {
|
|
327
|
+
return c === ' ' || c === '\n' || c === '\r' || c === '\t'
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
function isQuote(c) {
|
|
331
|
+
return c === '"' || c === "'"
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
function isAttribEnd(c) {
|
|
335
|
+
return c === '>' || isWhitespace(c)
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
function isMatch(regex, c) {
|
|
339
|
+
return regex.test(c)
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
function notMatch(regex, c) {
|
|
343
|
+
return !isMatch(regex, c)
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
var S = 0
|
|
347
|
+
sax.STATE = {
|
|
348
|
+
BEGIN: S++, // leading byte order mark or whitespace
|
|
349
|
+
BEGIN_WHITESPACE: S++, // leading whitespace
|
|
350
|
+
TEXT: S++, // general stuff
|
|
351
|
+
TEXT_ENTITY: S++, // & and such.
|
|
352
|
+
OPEN_WAKA: S++, // <
|
|
353
|
+
SGML_DECL: S++, // <!BLARG
|
|
354
|
+
SGML_DECL_QUOTED: S++, // <!BLARG foo "bar
|
|
355
|
+
DOCTYPE: S++, // <!DOCTYPE
|
|
356
|
+
DOCTYPE_QUOTED: S++, // <!DOCTYPE "//blah
|
|
357
|
+
DOCTYPE_DTD: S++, // <!DOCTYPE "//blah" [ ...
|
|
358
|
+
DOCTYPE_DTD_QUOTED: S++, // <!DOCTYPE "//blah" [ "foo
|
|
359
|
+
COMMENT_STARTING: S++, // <!-
|
|
360
|
+
COMMENT: S++, // <!--
|
|
361
|
+
COMMENT_ENDING: S++, // <!-- blah -
|
|
362
|
+
COMMENT_ENDED: S++, // <!-- blah --
|
|
363
|
+
CDATA: S++, // <![CDATA[ something
|
|
364
|
+
CDATA_ENDING: S++, // ]
|
|
365
|
+
CDATA_ENDING_2: S++, // ]]
|
|
366
|
+
PROC_INST: S++, // <?hi
|
|
367
|
+
PROC_INST_BODY: S++, // <?hi there
|
|
368
|
+
PROC_INST_ENDING: S++, // <?hi "there" ?
|
|
369
|
+
OPEN_TAG: S++, // <strong
|
|
370
|
+
OPEN_TAG_SLASH: S++, // <strong /
|
|
371
|
+
ATTRIB: S++, // <a
|
|
372
|
+
ATTRIB_NAME: S++, // <a foo
|
|
373
|
+
ATTRIB_NAME_SAW_WHITE: S++, // <a foo _
|
|
374
|
+
ATTRIB_VALUE: S++, // <a foo=
|
|
375
|
+
ATTRIB_VALUE_QUOTED: S++, // <a foo="bar
|
|
376
|
+
ATTRIB_VALUE_CLOSED: S++, // <a foo="bar"
|
|
377
|
+
ATTRIB_VALUE_UNQUOTED: S++, // <a foo=bar
|
|
378
|
+
ATTRIB_VALUE_ENTITY_Q: S++, // <foo bar="""
|
|
379
|
+
ATTRIB_VALUE_ENTITY_U: S++, // <foo bar="
|
|
380
|
+
CLOSE_TAG: S++, // </a
|
|
381
|
+
CLOSE_TAG_SAW_WHITE: S++, // </a >
|
|
382
|
+
SCRIPT: S++, // <script> ...
|
|
383
|
+
SCRIPT_ENDING: S++, // <script> ... <
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
sax.XML_ENTITIES = {
|
|
387
|
+
amp: '&',
|
|
388
|
+
gt: '>',
|
|
389
|
+
lt: '<',
|
|
390
|
+
quot: '"',
|
|
391
|
+
apos: "'",
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
sax.ENTITIES = {
|
|
395
|
+
amp: '&',
|
|
396
|
+
gt: '>',
|
|
397
|
+
lt: '<',
|
|
398
|
+
quot: '"',
|
|
399
|
+
apos: "'",
|
|
400
|
+
AElig: 198,
|
|
401
|
+
Aacute: 193,
|
|
402
|
+
Acirc: 194,
|
|
403
|
+
Agrave: 192,
|
|
404
|
+
Aring: 197,
|
|
405
|
+
Atilde: 195,
|
|
406
|
+
Auml: 196,
|
|
407
|
+
Ccedil: 199,
|
|
408
|
+
ETH: 208,
|
|
409
|
+
Eacute: 201,
|
|
410
|
+
Ecirc: 202,
|
|
411
|
+
Egrave: 200,
|
|
412
|
+
Euml: 203,
|
|
413
|
+
Iacute: 205,
|
|
414
|
+
Icirc: 206,
|
|
415
|
+
Igrave: 204,
|
|
416
|
+
Iuml: 207,
|
|
417
|
+
Ntilde: 209,
|
|
418
|
+
Oacute: 211,
|
|
419
|
+
Ocirc: 212,
|
|
420
|
+
Ograve: 210,
|
|
421
|
+
Oslash: 216,
|
|
422
|
+
Otilde: 213,
|
|
423
|
+
Ouml: 214,
|
|
424
|
+
THORN: 222,
|
|
425
|
+
Uacute: 218,
|
|
426
|
+
Ucirc: 219,
|
|
427
|
+
Ugrave: 217,
|
|
428
|
+
Uuml: 220,
|
|
429
|
+
Yacute: 221,
|
|
430
|
+
aacute: 225,
|
|
431
|
+
acirc: 226,
|
|
432
|
+
aelig: 230,
|
|
433
|
+
agrave: 224,
|
|
434
|
+
aring: 229,
|
|
435
|
+
atilde: 227,
|
|
436
|
+
auml: 228,
|
|
437
|
+
ccedil: 231,
|
|
438
|
+
eacute: 233,
|
|
439
|
+
ecirc: 234,
|
|
440
|
+
egrave: 232,
|
|
441
|
+
eth: 240,
|
|
442
|
+
euml: 235,
|
|
443
|
+
iacute: 237,
|
|
444
|
+
icirc: 238,
|
|
445
|
+
igrave: 236,
|
|
446
|
+
iuml: 239,
|
|
447
|
+
ntilde: 241,
|
|
448
|
+
oacute: 243,
|
|
449
|
+
ocirc: 244,
|
|
450
|
+
ograve: 242,
|
|
451
|
+
oslash: 248,
|
|
452
|
+
otilde: 245,
|
|
453
|
+
ouml: 246,
|
|
454
|
+
szlig: 223,
|
|
455
|
+
thorn: 254,
|
|
456
|
+
uacute: 250,
|
|
457
|
+
ucirc: 251,
|
|
458
|
+
ugrave: 249,
|
|
459
|
+
uuml: 252,
|
|
460
|
+
yacute: 253,
|
|
461
|
+
yuml: 255,
|
|
462
|
+
copy: 169,
|
|
463
|
+
reg: 174,
|
|
464
|
+
nbsp: 160,
|
|
465
|
+
iexcl: 161,
|
|
466
|
+
cent: 162,
|
|
467
|
+
pound: 163,
|
|
468
|
+
curren: 164,
|
|
469
|
+
yen: 165,
|
|
470
|
+
brvbar: 166,
|
|
471
|
+
sect: 167,
|
|
472
|
+
uml: 168,
|
|
473
|
+
ordf: 170,
|
|
474
|
+
laquo: 171,
|
|
475
|
+
not: 172,
|
|
476
|
+
shy: 173,
|
|
477
|
+
macr: 175,
|
|
478
|
+
deg: 176,
|
|
479
|
+
plusmn: 177,
|
|
480
|
+
sup1: 185,
|
|
481
|
+
sup2: 178,
|
|
482
|
+
sup3: 179,
|
|
483
|
+
acute: 180,
|
|
484
|
+
micro: 181,
|
|
485
|
+
para: 182,
|
|
486
|
+
middot: 183,
|
|
487
|
+
cedil: 184,
|
|
488
|
+
ordm: 186,
|
|
489
|
+
raquo: 187,
|
|
490
|
+
frac14: 188,
|
|
491
|
+
frac12: 189,
|
|
492
|
+
frac34: 190,
|
|
493
|
+
iquest: 191,
|
|
494
|
+
times: 215,
|
|
495
|
+
divide: 247,
|
|
496
|
+
OElig: 338,
|
|
497
|
+
oelig: 339,
|
|
498
|
+
Scaron: 352,
|
|
499
|
+
scaron: 353,
|
|
500
|
+
Yuml: 376,
|
|
501
|
+
fnof: 402,
|
|
502
|
+
circ: 710,
|
|
503
|
+
tilde: 732,
|
|
504
|
+
Alpha: 913,
|
|
505
|
+
Beta: 914,
|
|
506
|
+
Gamma: 915,
|
|
507
|
+
Delta: 916,
|
|
508
|
+
Epsilon: 917,
|
|
509
|
+
Zeta: 918,
|
|
510
|
+
Eta: 919,
|
|
511
|
+
Theta: 920,
|
|
512
|
+
Iota: 921,
|
|
513
|
+
Kappa: 922,
|
|
514
|
+
Lambda: 923,
|
|
515
|
+
Mu: 924,
|
|
516
|
+
Nu: 925,
|
|
517
|
+
Xi: 926,
|
|
518
|
+
Omicron: 927,
|
|
519
|
+
Pi: 928,
|
|
520
|
+
Rho: 929,
|
|
521
|
+
Sigma: 931,
|
|
522
|
+
Tau: 932,
|
|
523
|
+
Upsilon: 933,
|
|
524
|
+
Phi: 934,
|
|
525
|
+
Chi: 935,
|
|
526
|
+
Psi: 936,
|
|
527
|
+
Omega: 937,
|
|
528
|
+
alpha: 945,
|
|
529
|
+
beta: 946,
|
|
530
|
+
gamma: 947,
|
|
531
|
+
delta: 948,
|
|
532
|
+
epsilon: 949,
|
|
533
|
+
zeta: 950,
|
|
534
|
+
eta: 951,
|
|
535
|
+
theta: 952,
|
|
536
|
+
iota: 953,
|
|
537
|
+
kappa: 954,
|
|
538
|
+
lambda: 955,
|
|
539
|
+
mu: 956,
|
|
540
|
+
nu: 957,
|
|
541
|
+
xi: 958,
|
|
542
|
+
omicron: 959,
|
|
543
|
+
pi: 960,
|
|
544
|
+
rho: 961,
|
|
545
|
+
sigmaf: 962,
|
|
546
|
+
sigma: 963,
|
|
547
|
+
tau: 964,
|
|
548
|
+
upsilon: 965,
|
|
549
|
+
phi: 966,
|
|
550
|
+
chi: 967,
|
|
551
|
+
psi: 968,
|
|
552
|
+
omega: 969,
|
|
553
|
+
thetasym: 977,
|
|
554
|
+
upsih: 978,
|
|
555
|
+
piv: 982,
|
|
556
|
+
ensp: 8194,
|
|
557
|
+
emsp: 8195,
|
|
558
|
+
thinsp: 8201,
|
|
559
|
+
zwnj: 8204,
|
|
560
|
+
zwj: 8205,
|
|
561
|
+
lrm: 8206,
|
|
562
|
+
rlm: 8207,
|
|
563
|
+
ndash: 8211,
|
|
564
|
+
mdash: 8212,
|
|
565
|
+
lsquo: 8216,
|
|
566
|
+
rsquo: 8217,
|
|
567
|
+
sbquo: 8218,
|
|
568
|
+
ldquo: 8220,
|
|
569
|
+
rdquo: 8221,
|
|
570
|
+
bdquo: 8222,
|
|
571
|
+
dagger: 8224,
|
|
572
|
+
Dagger: 8225,
|
|
573
|
+
bull: 8226,
|
|
574
|
+
hellip: 8230,
|
|
575
|
+
permil: 8240,
|
|
576
|
+
prime: 8242,
|
|
577
|
+
Prime: 8243,
|
|
578
|
+
lsaquo: 8249,
|
|
579
|
+
rsaquo: 8250,
|
|
580
|
+
oline: 8254,
|
|
581
|
+
frasl: 8260,
|
|
582
|
+
euro: 8364,
|
|
583
|
+
image: 8465,
|
|
584
|
+
weierp: 8472,
|
|
585
|
+
real: 8476,
|
|
586
|
+
trade: 8482,
|
|
587
|
+
alefsym: 8501,
|
|
588
|
+
larr: 8592,
|
|
589
|
+
uarr: 8593,
|
|
590
|
+
rarr: 8594,
|
|
591
|
+
darr: 8595,
|
|
592
|
+
harr: 8596,
|
|
593
|
+
crarr: 8629,
|
|
594
|
+
lArr: 8656,
|
|
595
|
+
uArr: 8657,
|
|
596
|
+
rArr: 8658,
|
|
597
|
+
dArr: 8659,
|
|
598
|
+
hArr: 8660,
|
|
599
|
+
forall: 8704,
|
|
600
|
+
part: 8706,
|
|
601
|
+
exist: 8707,
|
|
602
|
+
empty: 8709,
|
|
603
|
+
nabla: 8711,
|
|
604
|
+
isin: 8712,
|
|
605
|
+
notin: 8713,
|
|
606
|
+
ni: 8715,
|
|
607
|
+
prod: 8719,
|
|
608
|
+
sum: 8721,
|
|
609
|
+
minus: 8722,
|
|
610
|
+
lowast: 8727,
|
|
611
|
+
radic: 8730,
|
|
612
|
+
prop: 8733,
|
|
613
|
+
infin: 8734,
|
|
614
|
+
ang: 8736,
|
|
615
|
+
and: 8743,
|
|
616
|
+
or: 8744,
|
|
617
|
+
cap: 8745,
|
|
618
|
+
cup: 8746,
|
|
619
|
+
int: 8747,
|
|
620
|
+
there4: 8756,
|
|
621
|
+
sim: 8764,
|
|
622
|
+
cong: 8773,
|
|
623
|
+
asymp: 8776,
|
|
624
|
+
ne: 8800,
|
|
625
|
+
equiv: 8801,
|
|
626
|
+
le: 8804,
|
|
627
|
+
ge: 8805,
|
|
628
|
+
sub: 8834,
|
|
629
|
+
sup: 8835,
|
|
630
|
+
nsub: 8836,
|
|
631
|
+
sube: 8838,
|
|
632
|
+
supe: 8839,
|
|
633
|
+
oplus: 8853,
|
|
634
|
+
otimes: 8855,
|
|
635
|
+
perp: 8869,
|
|
636
|
+
sdot: 8901,
|
|
637
|
+
lceil: 8968,
|
|
638
|
+
rceil: 8969,
|
|
639
|
+
lfloor: 8970,
|
|
640
|
+
rfloor: 8971,
|
|
641
|
+
lang: 9001,
|
|
642
|
+
rang: 9002,
|
|
643
|
+
loz: 9674,
|
|
644
|
+
spades: 9824,
|
|
645
|
+
clubs: 9827,
|
|
646
|
+
hearts: 9829,
|
|
647
|
+
diams: 9830,
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
Object.keys(sax.ENTITIES).forEach(function (key) {
|
|
651
|
+
var e = sax.ENTITIES[key]
|
|
652
|
+
var s = typeof e === 'number' ? String.fromCharCode(e) : e
|
|
653
|
+
sax.ENTITIES[key] = s
|
|
654
|
+
})
|
|
655
|
+
|
|
656
|
+
for (var s in sax.STATE) {
|
|
657
|
+
sax.STATE[sax.STATE[s]] = s
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
// shorthand
|
|
661
|
+
S = sax.STATE
|
|
662
|
+
|
|
663
|
+
function emit(parser, event, data) {
|
|
664
|
+
parser[event] && parser[event](data)
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
function emitNode(parser, nodeType, data) {
|
|
668
|
+
if (parser.textNode) closeText(parser)
|
|
669
|
+
emit(parser, nodeType, data)
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
function closeText(parser) {
|
|
673
|
+
parser.textNode = textopts(parser.opt, parser.textNode)
|
|
674
|
+
if (parser.textNode) emit(parser, 'ontext', parser.textNode)
|
|
675
|
+
parser.textNode = ''
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
function textopts(opt, text) {
|
|
679
|
+
if (opt.trim) text = text.trim()
|
|
680
|
+
if (opt.normalize) text = text.replace(/\s+/g, ' ')
|
|
681
|
+
return text
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
function error(parser, er) {
|
|
685
|
+
closeText(parser)
|
|
686
|
+
if (parser.trackPosition) {
|
|
687
|
+
er +=
|
|
688
|
+
'\nLine: ' +
|
|
689
|
+
parser.line +
|
|
690
|
+
'\nColumn: ' +
|
|
691
|
+
parser.column +
|
|
692
|
+
'\nChar: ' +
|
|
693
|
+
parser.c
|
|
694
|
+
}
|
|
695
|
+
er = new Error(er)
|
|
696
|
+
parser.error = er
|
|
697
|
+
emit(parser, 'onerror', er)
|
|
698
|
+
return parser
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
function end(parser) {
|
|
702
|
+
if (parser.sawRoot && !parser.closedRoot)
|
|
703
|
+
strictFail(parser, 'Unclosed root tag')
|
|
704
|
+
if (
|
|
705
|
+
parser.state !== S.BEGIN &&
|
|
706
|
+
parser.state !== S.BEGIN_WHITESPACE &&
|
|
707
|
+
parser.state !== S.TEXT
|
|
708
|
+
) {
|
|
709
|
+
error(parser, 'Unexpected end')
|
|
710
|
+
}
|
|
711
|
+
closeText(parser)
|
|
712
|
+
parser.c = ''
|
|
713
|
+
parser.closed = true
|
|
714
|
+
emit(parser, 'onend')
|
|
715
|
+
SAXParser.call(parser, parser.strict, parser.opt)
|
|
716
|
+
return parser
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
function strictFail(parser, message) {
|
|
720
|
+
if (typeof parser !== 'object' || !(parser instanceof SAXParser)) {
|
|
721
|
+
throw new Error('bad call to strictFail')
|
|
722
|
+
}
|
|
723
|
+
if (parser.strict) {
|
|
724
|
+
error(parser, message)
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
function newTag(parser) {
|
|
729
|
+
if (!parser.strict) parser.tagName = parser.tagName[parser.looseCase]()
|
|
730
|
+
var parent = parser.tags[parser.tags.length - 1] || parser
|
|
731
|
+
var tag = (parser.tag = { name: parser.tagName, attributes: {} })
|
|
732
|
+
|
|
733
|
+
// will be overridden if tag contails an xmlns="foo" or xmlns:foo="bar"
|
|
734
|
+
if (parser.opt.xmlns) {
|
|
735
|
+
tag.ns = parent.ns
|
|
736
|
+
}
|
|
737
|
+
parser.attribList.length = 0
|
|
738
|
+
emitNode(parser, 'onopentagstart', tag)
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
function qname(name, attribute) {
|
|
742
|
+
var i = name.indexOf(':')
|
|
743
|
+
var qualName = i < 0 ? ['', name] : name.split(':')
|
|
744
|
+
var prefix = qualName[0]
|
|
745
|
+
var local = qualName[1]
|
|
746
|
+
|
|
747
|
+
// <x "xmlns"="http://foo">
|
|
748
|
+
if (attribute && name === 'xmlns') {
|
|
749
|
+
prefix = 'xmlns'
|
|
750
|
+
local = ''
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
return { prefix: prefix, local: local }
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
function attrib(parser) {
|
|
757
|
+
if (!parser.strict) {
|
|
758
|
+
parser.attribName = parser.attribName[parser.looseCase]()
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
if (
|
|
762
|
+
parser.attribList.indexOf(parser.attribName) !== -1 ||
|
|
763
|
+
parser.tag.attributes.hasOwnProperty(parser.attribName)
|
|
764
|
+
) {
|
|
765
|
+
parser.attribName = parser.attribValue = ''
|
|
766
|
+
return
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
if (parser.opt.xmlns) {
|
|
770
|
+
var qn = qname(parser.attribName, true)
|
|
771
|
+
var prefix = qn.prefix
|
|
772
|
+
var local = qn.local
|
|
773
|
+
|
|
774
|
+
if (prefix === 'xmlns') {
|
|
775
|
+
// namespace binding attribute. push the binding into scope
|
|
776
|
+
if (local === 'xml' && parser.attribValue !== XML_NAMESPACE) {
|
|
777
|
+
strictFail(
|
|
778
|
+
parser,
|
|
779
|
+
'xml: prefix must be bound to ' +
|
|
780
|
+
XML_NAMESPACE +
|
|
781
|
+
'\n' +
|
|
782
|
+
'Actual: ' +
|
|
783
|
+
parser.attribValue
|
|
784
|
+
)
|
|
785
|
+
} else if (
|
|
786
|
+
local === 'xmlns' &&
|
|
787
|
+
parser.attribValue !== XMLNS_NAMESPACE
|
|
788
|
+
) {
|
|
789
|
+
strictFail(
|
|
790
|
+
parser,
|
|
791
|
+
'xmlns: prefix must be bound to ' +
|
|
792
|
+
XMLNS_NAMESPACE +
|
|
793
|
+
'\n' +
|
|
794
|
+
'Actual: ' +
|
|
795
|
+
parser.attribValue
|
|
796
|
+
)
|
|
797
|
+
} else {
|
|
798
|
+
var tag = parser.tag
|
|
799
|
+
var parent = parser.tags[parser.tags.length - 1] || parser
|
|
800
|
+
if (tag.ns === parent.ns) {
|
|
801
|
+
tag.ns = Object.create(parent.ns)
|
|
802
|
+
}
|
|
803
|
+
tag.ns[local] = parser.attribValue
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
// defer onattribute events until all attributes have been seen
|
|
808
|
+
// so any new bindings can take effect. preserve attribute order
|
|
809
|
+
// so deferred events can be emitted in document order
|
|
810
|
+
parser.attribList.push([parser.attribName, parser.attribValue])
|
|
811
|
+
} else {
|
|
812
|
+
// in non-xmlns mode, we can emit the event right away
|
|
813
|
+
parser.tag.attributes[parser.attribName] = parser.attribValue
|
|
814
|
+
emitNode(parser, 'onattribute', {
|
|
815
|
+
name: parser.attribName,
|
|
816
|
+
value: parser.attribValue,
|
|
817
|
+
})
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
parser.attribName = parser.attribValue = ''
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
function openTag(parser, selfClosing) {
|
|
824
|
+
if (parser.opt.xmlns) {
|
|
825
|
+
// emit namespace binding events
|
|
826
|
+
var tag = parser.tag
|
|
827
|
+
|
|
828
|
+
// add namespace info to tag
|
|
829
|
+
var qn = qname(parser.tagName)
|
|
830
|
+
tag.prefix = qn.prefix
|
|
831
|
+
tag.local = qn.local
|
|
832
|
+
tag.uri = tag.ns[qn.prefix] || ''
|
|
833
|
+
|
|
834
|
+
if (tag.prefix && !tag.uri) {
|
|
835
|
+
strictFail(
|
|
836
|
+
parser,
|
|
837
|
+
'Unbound namespace prefix: ' + JSON.stringify(parser.tagName)
|
|
838
|
+
)
|
|
839
|
+
tag.uri = qn.prefix
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
var parent = parser.tags[parser.tags.length - 1] || parser
|
|
843
|
+
if (tag.ns && parent.ns !== tag.ns) {
|
|
844
|
+
Object.keys(tag.ns).forEach(function (p) {
|
|
845
|
+
emitNode(parser, 'onopennamespace', {
|
|
846
|
+
prefix: p,
|
|
847
|
+
uri: tag.ns[p],
|
|
848
|
+
})
|
|
849
|
+
})
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
// handle deferred onattribute events
|
|
853
|
+
// Note: do not apply default ns to attributes:
|
|
854
|
+
// http://www.w3.org/TR/REC-xml-names/#defaulting
|
|
855
|
+
for (var i = 0, l = parser.attribList.length; i < l; i++) {
|
|
856
|
+
var nv = parser.attribList[i]
|
|
857
|
+
var name = nv[0]
|
|
858
|
+
var value = nv[1]
|
|
859
|
+
var qualName = qname(name, true)
|
|
860
|
+
var prefix = qualName.prefix
|
|
861
|
+
var local = qualName.local
|
|
862
|
+
var uri = prefix === '' ? '' : tag.ns[prefix] || ''
|
|
863
|
+
var a = {
|
|
864
|
+
name: name,
|
|
865
|
+
value: value,
|
|
866
|
+
prefix: prefix,
|
|
867
|
+
local: local,
|
|
868
|
+
uri: uri,
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
// if there's any attributes with an undefined namespace,
|
|
872
|
+
// then fail on them now.
|
|
873
|
+
if (prefix && prefix !== 'xmlns' && !uri) {
|
|
874
|
+
strictFail(
|
|
875
|
+
parser,
|
|
876
|
+
'Unbound namespace prefix: ' + JSON.stringify(prefix)
|
|
877
|
+
)
|
|
878
|
+
a.uri = prefix
|
|
879
|
+
}
|
|
880
|
+
parser.tag.attributes[name] = a
|
|
881
|
+
emitNode(parser, 'onattribute', a)
|
|
882
|
+
}
|
|
883
|
+
parser.attribList.length = 0
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
parser.tag.isSelfClosing = !!selfClosing
|
|
887
|
+
|
|
888
|
+
// process the tag
|
|
889
|
+
parser.sawRoot = true
|
|
890
|
+
parser.tags.push(parser.tag)
|
|
891
|
+
emitNode(parser, 'onopentag', parser.tag)
|
|
892
|
+
if (!selfClosing) {
|
|
893
|
+
// special case for <script> in non-strict mode.
|
|
894
|
+
if (!parser.noscript && parser.tagName.toLowerCase() === 'script') {
|
|
895
|
+
parser.state = S.SCRIPT
|
|
896
|
+
} else {
|
|
897
|
+
parser.state = S.TEXT
|
|
898
|
+
}
|
|
899
|
+
parser.tag = null
|
|
900
|
+
parser.tagName = ''
|
|
901
|
+
}
|
|
902
|
+
parser.attribName = parser.attribValue = ''
|
|
903
|
+
parser.attribList.length = 0
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
function closeTag(parser) {
|
|
907
|
+
if (!parser.tagName) {
|
|
908
|
+
strictFail(parser, 'Weird empty close tag.')
|
|
909
|
+
parser.textNode += '</>'
|
|
910
|
+
parser.state = S.TEXT
|
|
911
|
+
return
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
if (parser.script) {
|
|
915
|
+
if (parser.tagName !== 'script') {
|
|
916
|
+
parser.script += '</' + parser.tagName + '>'
|
|
917
|
+
parser.tagName = ''
|
|
918
|
+
parser.state = S.SCRIPT
|
|
919
|
+
return
|
|
920
|
+
}
|
|
921
|
+
emitNode(parser, 'onscript', parser.script)
|
|
922
|
+
parser.script = ''
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
// first make sure that the closing tag actually exists.
|
|
926
|
+
// <a><b></c></b></a> will close everything, otherwise.
|
|
927
|
+
var t = parser.tags.length
|
|
928
|
+
var tagName = parser.tagName
|
|
929
|
+
if (!parser.strict) {
|
|
930
|
+
tagName = tagName[parser.looseCase]()
|
|
931
|
+
}
|
|
932
|
+
var closeTo = tagName
|
|
933
|
+
while (t--) {
|
|
934
|
+
var close = parser.tags[t]
|
|
935
|
+
if (close.name !== closeTo) {
|
|
936
|
+
// fail the first time in strict mode
|
|
937
|
+
strictFail(parser, 'Unexpected close tag')
|
|
938
|
+
} else {
|
|
939
|
+
break
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
// didn't find it. we already failed for strict, so just abort.
|
|
944
|
+
if (t < 0) {
|
|
945
|
+
strictFail(parser, 'Unmatched closing tag: ' + parser.tagName)
|
|
946
|
+
parser.textNode += '</' + parser.tagName + '>'
|
|
947
|
+
parser.state = S.TEXT
|
|
948
|
+
return
|
|
949
|
+
}
|
|
950
|
+
parser.tagName = tagName
|
|
951
|
+
var s = parser.tags.length
|
|
952
|
+
while (s-- > t) {
|
|
953
|
+
var tag = (parser.tag = parser.tags.pop())
|
|
954
|
+
parser.tagName = parser.tag.name
|
|
955
|
+
emitNode(parser, 'onclosetag', parser.tagName)
|
|
956
|
+
|
|
957
|
+
var x = {}
|
|
958
|
+
for (var i in tag.ns) {
|
|
959
|
+
x[i] = tag.ns[i]
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
var parent = parser.tags[parser.tags.length - 1] || parser
|
|
963
|
+
if (parser.opt.xmlns && tag.ns !== parent.ns) {
|
|
964
|
+
// remove namespace bindings introduced by tag
|
|
965
|
+
Object.keys(tag.ns).forEach(function (p) {
|
|
966
|
+
var n = tag.ns[p]
|
|
967
|
+
emitNode(parser, 'onclosenamespace', { prefix: p, uri: n })
|
|
968
|
+
})
|
|
969
|
+
}
|
|
970
|
+
}
|
|
971
|
+
if (t === 0) parser.closedRoot = true
|
|
972
|
+
parser.tagName = parser.attribValue = parser.attribName = ''
|
|
973
|
+
parser.attribList.length = 0
|
|
974
|
+
parser.state = S.TEXT
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
function parseEntity(parser) {
|
|
978
|
+
var entity = parser.entity
|
|
979
|
+
var entityLC = entity.toLowerCase()
|
|
980
|
+
var num
|
|
981
|
+
var numStr = ''
|
|
982
|
+
|
|
983
|
+
if (parser.ENTITIES[entity]) {
|
|
984
|
+
return parser.ENTITIES[entity]
|
|
985
|
+
}
|
|
986
|
+
if (parser.ENTITIES[entityLC]) {
|
|
987
|
+
return parser.ENTITIES[entityLC]
|
|
988
|
+
}
|
|
989
|
+
entity = entityLC
|
|
990
|
+
if (entity.charAt(0) === '#') {
|
|
991
|
+
if (entity.charAt(1) === 'x') {
|
|
992
|
+
entity = entity.slice(2)
|
|
993
|
+
num = parseInt(entity, 16)
|
|
994
|
+
numStr = num.toString(16)
|
|
995
|
+
} else {
|
|
996
|
+
entity = entity.slice(1)
|
|
997
|
+
num = parseInt(entity, 10)
|
|
998
|
+
numStr = num.toString(10)
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
entity = entity.replace(/^0+/, '')
|
|
1002
|
+
if (
|
|
1003
|
+
isNaN(num) ||
|
|
1004
|
+
numStr.toLowerCase() !== entity ||
|
|
1005
|
+
num < 0 ||
|
|
1006
|
+
num > 0x10ffff
|
|
1007
|
+
) {
|
|
1008
|
+
strictFail(parser, 'Invalid character entity')
|
|
1009
|
+
return '&' + parser.entity + ';'
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
return String.fromCodePoint(num)
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
function beginWhiteSpace(parser, c) {
|
|
1016
|
+
if (c === '<') {
|
|
1017
|
+
parser.state = S.OPEN_WAKA
|
|
1018
|
+
parser.startTagPosition = parser.position
|
|
1019
|
+
} else if (!isWhitespace(c)) {
|
|
1020
|
+
// have to process this as a text node.
|
|
1021
|
+
// weird, but happens.
|
|
1022
|
+
strictFail(parser, 'Non-whitespace before first tag.')
|
|
1023
|
+
parser.textNode = c
|
|
1024
|
+
parser.state = S.TEXT
|
|
1025
|
+
}
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
function charAt(chunk, i) {
|
|
1029
|
+
var result = ''
|
|
1030
|
+
if (i < chunk.length) {
|
|
1031
|
+
result = chunk.charAt(i)
|
|
1032
|
+
}
|
|
1033
|
+
return result
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
function write(chunk) {
|
|
1037
|
+
var parser = this
|
|
1038
|
+
if (this.error) {
|
|
1039
|
+
throw this.error
|
|
1040
|
+
}
|
|
1041
|
+
if (parser.closed) {
|
|
1042
|
+
return error(
|
|
1043
|
+
parser,
|
|
1044
|
+
'Cannot write after close. Assign an onready handler.'
|
|
1045
|
+
)
|
|
1046
|
+
}
|
|
1047
|
+
if (chunk === null) {
|
|
1048
|
+
return end(parser)
|
|
1049
|
+
}
|
|
1050
|
+
if (typeof chunk === 'object') {
|
|
1051
|
+
chunk = chunk.toString()
|
|
1052
|
+
}
|
|
1053
|
+
var i = 0
|
|
1054
|
+
var c = ''
|
|
1055
|
+
while (true) {
|
|
1056
|
+
c = charAt(chunk, i++)
|
|
1057
|
+
parser.c = c
|
|
1058
|
+
|
|
1059
|
+
if (!c) {
|
|
1060
|
+
break
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
if (parser.trackPosition) {
|
|
1064
|
+
parser.position++
|
|
1065
|
+
if (c === '\n') {
|
|
1066
|
+
parser.line++
|
|
1067
|
+
parser.column = 0
|
|
1068
|
+
} else {
|
|
1069
|
+
parser.column++
|
|
1070
|
+
}
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
switch (parser.state) {
|
|
1074
|
+
case S.BEGIN:
|
|
1075
|
+
parser.state = S.BEGIN_WHITESPACE
|
|
1076
|
+
if (c === '\uFEFF') {
|
|
1077
|
+
continue
|
|
1078
|
+
}
|
|
1079
|
+
beginWhiteSpace(parser, c)
|
|
1080
|
+
continue
|
|
1081
|
+
|
|
1082
|
+
case S.BEGIN_WHITESPACE:
|
|
1083
|
+
beginWhiteSpace(parser, c)
|
|
1084
|
+
continue
|
|
1085
|
+
|
|
1086
|
+
case S.TEXT:
|
|
1087
|
+
if (parser.sawRoot && !parser.closedRoot) {
|
|
1088
|
+
var starti = i - 1
|
|
1089
|
+
while (c && c !== '<' && c !== '&') {
|
|
1090
|
+
c = charAt(chunk, i++)
|
|
1091
|
+
if (c && parser.trackPosition) {
|
|
1092
|
+
parser.position++
|
|
1093
|
+
if (c === '\n') {
|
|
1094
|
+
parser.line++
|
|
1095
|
+
parser.column = 0
|
|
1096
|
+
} else {
|
|
1097
|
+
parser.column++
|
|
1098
|
+
}
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1101
|
+
parser.textNode += chunk.substring(starti, i - 1)
|
|
1102
|
+
}
|
|
1103
|
+
if (
|
|
1104
|
+
c === '<' &&
|
|
1105
|
+
!(parser.sawRoot && parser.closedRoot && !parser.strict)
|
|
1106
|
+
) {
|
|
1107
|
+
parser.state = S.OPEN_WAKA
|
|
1108
|
+
parser.startTagPosition = parser.position
|
|
1109
|
+
} else {
|
|
1110
|
+
if (
|
|
1111
|
+
!isWhitespace(c) &&
|
|
1112
|
+
(!parser.sawRoot || parser.closedRoot)
|
|
1113
|
+
) {
|
|
1114
|
+
strictFail(parser, 'Text data outside of root node.')
|
|
1115
|
+
}
|
|
1116
|
+
if (c === '&') {
|
|
1117
|
+
parser.state = S.TEXT_ENTITY
|
|
1118
|
+
} else {
|
|
1119
|
+
parser.textNode += c
|
|
1120
|
+
}
|
|
1121
|
+
}
|
|
1122
|
+
continue
|
|
1123
|
+
|
|
1124
|
+
case S.SCRIPT:
|
|
1125
|
+
// only non-strict
|
|
1126
|
+
if (c === '<') {
|
|
1127
|
+
parser.state = S.SCRIPT_ENDING
|
|
1128
|
+
} else {
|
|
1129
|
+
parser.script += c
|
|
1130
|
+
}
|
|
1131
|
+
continue
|
|
1132
|
+
|
|
1133
|
+
case S.SCRIPT_ENDING:
|
|
1134
|
+
if (c === '/') {
|
|
1135
|
+
parser.state = S.CLOSE_TAG
|
|
1136
|
+
} else {
|
|
1137
|
+
parser.script += '<' + c
|
|
1138
|
+
parser.state = S.SCRIPT
|
|
1139
|
+
}
|
|
1140
|
+
continue
|
|
1141
|
+
|
|
1142
|
+
case S.OPEN_WAKA:
|
|
1143
|
+
// either a /, ?, !, or text is coming next.
|
|
1144
|
+
if (c === '!') {
|
|
1145
|
+
parser.state = S.SGML_DECL
|
|
1146
|
+
parser.sgmlDecl = ''
|
|
1147
|
+
} else if (isWhitespace(c)) {
|
|
1148
|
+
// wait for it...
|
|
1149
|
+
} else if (isMatch(nameStart, c)) {
|
|
1150
|
+
parser.state = S.OPEN_TAG
|
|
1151
|
+
parser.tagName = c
|
|
1152
|
+
} else if (c === '/') {
|
|
1153
|
+
parser.state = S.CLOSE_TAG
|
|
1154
|
+
parser.tagName = ''
|
|
1155
|
+
} else if (c === '?') {
|
|
1156
|
+
parser.state = S.PROC_INST
|
|
1157
|
+
parser.procInstName = parser.procInstBody = ''
|
|
1158
|
+
} else {
|
|
1159
|
+
strictFail(parser, 'Unencoded <')
|
|
1160
|
+
// if there was some whitespace, then add that in.
|
|
1161
|
+
if (parser.startTagPosition + 1 < parser.position) {
|
|
1162
|
+
var pad = parser.position - parser.startTagPosition
|
|
1163
|
+
c = new Array(pad).join(' ') + c
|
|
1164
|
+
}
|
|
1165
|
+
parser.textNode += '<' + c
|
|
1166
|
+
parser.state = S.TEXT
|
|
1167
|
+
}
|
|
1168
|
+
continue
|
|
1169
|
+
|
|
1170
|
+
case S.SGML_DECL:
|
|
1171
|
+
if (parser.sgmlDecl + c === '--') {
|
|
1172
|
+
parser.state = S.COMMENT
|
|
1173
|
+
parser.comment = ''
|
|
1174
|
+
parser.sgmlDecl = ''
|
|
1175
|
+
continue
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
if (
|
|
1179
|
+
parser.doctype &&
|
|
1180
|
+
parser.doctype !== true &&
|
|
1181
|
+
parser.sgmlDecl
|
|
1182
|
+
) {
|
|
1183
|
+
parser.state = S.DOCTYPE_DTD
|
|
1184
|
+
parser.doctype += '<!' + parser.sgmlDecl + c
|
|
1185
|
+
parser.sgmlDecl = ''
|
|
1186
|
+
} else if ((parser.sgmlDecl + c).toUpperCase() === CDATA) {
|
|
1187
|
+
emitNode(parser, 'onopencdata')
|
|
1188
|
+
parser.state = S.CDATA
|
|
1189
|
+
parser.sgmlDecl = ''
|
|
1190
|
+
parser.cdata = ''
|
|
1191
|
+
} else if ((parser.sgmlDecl + c).toUpperCase() === DOCTYPE) {
|
|
1192
|
+
parser.state = S.DOCTYPE
|
|
1193
|
+
if (parser.doctype || parser.sawRoot) {
|
|
1194
|
+
strictFail(
|
|
1195
|
+
parser,
|
|
1196
|
+
'Inappropriately located doctype declaration'
|
|
1197
|
+
)
|
|
1198
|
+
}
|
|
1199
|
+
parser.doctype = ''
|
|
1200
|
+
parser.sgmlDecl = ''
|
|
1201
|
+
} else if (c === '>') {
|
|
1202
|
+
emitNode(parser, 'onsgmldeclaration', parser.sgmlDecl)
|
|
1203
|
+
parser.sgmlDecl = ''
|
|
1204
|
+
parser.state = S.TEXT
|
|
1205
|
+
} else if (isQuote(c)) {
|
|
1206
|
+
parser.state = S.SGML_DECL_QUOTED
|
|
1207
|
+
parser.sgmlDecl += c
|
|
1208
|
+
} else {
|
|
1209
|
+
parser.sgmlDecl += c
|
|
1210
|
+
}
|
|
1211
|
+
continue
|
|
1212
|
+
|
|
1213
|
+
case S.SGML_DECL_QUOTED:
|
|
1214
|
+
if (c === parser.q) {
|
|
1215
|
+
parser.state = S.SGML_DECL
|
|
1216
|
+
parser.q = ''
|
|
1217
|
+
}
|
|
1218
|
+
parser.sgmlDecl += c
|
|
1219
|
+
continue
|
|
1220
|
+
|
|
1221
|
+
case S.DOCTYPE:
|
|
1222
|
+
if (c === '>') {
|
|
1223
|
+
parser.state = S.TEXT
|
|
1224
|
+
emitNode(parser, 'ondoctype', parser.doctype)
|
|
1225
|
+
parser.doctype = true // just remember that we saw it.
|
|
1226
|
+
} else {
|
|
1227
|
+
parser.doctype += c
|
|
1228
|
+
if (c === '[') {
|
|
1229
|
+
parser.state = S.DOCTYPE_DTD
|
|
1230
|
+
} else if (isQuote(c)) {
|
|
1231
|
+
parser.state = S.DOCTYPE_QUOTED
|
|
1232
|
+
parser.q = c
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
continue
|
|
1236
|
+
|
|
1237
|
+
case S.DOCTYPE_QUOTED:
|
|
1238
|
+
parser.doctype += c
|
|
1239
|
+
if (c === parser.q) {
|
|
1240
|
+
parser.q = ''
|
|
1241
|
+
parser.state = S.DOCTYPE
|
|
1242
|
+
}
|
|
1243
|
+
continue
|
|
1244
|
+
|
|
1245
|
+
case S.DOCTYPE_DTD:
|
|
1246
|
+
if (c === ']') {
|
|
1247
|
+
parser.doctype += c
|
|
1248
|
+
parser.state = S.DOCTYPE
|
|
1249
|
+
} else if (c === '<') {
|
|
1250
|
+
parser.state = S.OPEN_WAKA
|
|
1251
|
+
parser.startTagPosition = parser.position
|
|
1252
|
+
} else if (isQuote(c)) {
|
|
1253
|
+
parser.doctype += c
|
|
1254
|
+
parser.state = S.DOCTYPE_DTD_QUOTED
|
|
1255
|
+
parser.q = c
|
|
1256
|
+
} else {
|
|
1257
|
+
parser.doctype += c
|
|
1258
|
+
}
|
|
1259
|
+
continue
|
|
1260
|
+
|
|
1261
|
+
case S.DOCTYPE_DTD_QUOTED:
|
|
1262
|
+
parser.doctype += c
|
|
1263
|
+
if (c === parser.q) {
|
|
1264
|
+
parser.state = S.DOCTYPE_DTD
|
|
1265
|
+
parser.q = ''
|
|
1266
|
+
}
|
|
1267
|
+
continue
|
|
1268
|
+
|
|
1269
|
+
case S.COMMENT:
|
|
1270
|
+
if (c === '-') {
|
|
1271
|
+
parser.state = S.COMMENT_ENDING
|
|
1272
|
+
} else {
|
|
1273
|
+
parser.comment += c
|
|
1274
|
+
}
|
|
1275
|
+
continue
|
|
1276
|
+
|
|
1277
|
+
case S.COMMENT_ENDING:
|
|
1278
|
+
if (c === '-') {
|
|
1279
|
+
parser.state = S.COMMENT_ENDED
|
|
1280
|
+
parser.comment = textopts(parser.opt, parser.comment)
|
|
1281
|
+
if (parser.comment) {
|
|
1282
|
+
emitNode(parser, 'oncomment', parser.comment)
|
|
1283
|
+
}
|
|
1284
|
+
parser.comment = ''
|
|
1285
|
+
} else {
|
|
1286
|
+
parser.comment += '-' + c
|
|
1287
|
+
parser.state = S.COMMENT
|
|
1288
|
+
}
|
|
1289
|
+
continue
|
|
1290
|
+
|
|
1291
|
+
case S.COMMENT_ENDED:
|
|
1292
|
+
if (c !== '>') {
|
|
1293
|
+
strictFail(parser, 'Malformed comment')
|
|
1294
|
+
// allow <!-- blah -- bloo --> in non-strict mode,
|
|
1295
|
+
// which is a comment of " blah -- bloo "
|
|
1296
|
+
parser.comment += '--' + c
|
|
1297
|
+
parser.state = S.COMMENT
|
|
1298
|
+
} else if (parser.doctype && parser.doctype !== true) {
|
|
1299
|
+
parser.state = S.DOCTYPE_DTD
|
|
1300
|
+
} else {
|
|
1301
|
+
parser.state = S.TEXT
|
|
1302
|
+
}
|
|
1303
|
+
continue
|
|
1304
|
+
|
|
1305
|
+
case S.CDATA:
|
|
1306
|
+
var starti = i - 1
|
|
1307
|
+
while (c && c !== ']') {
|
|
1308
|
+
c = charAt(chunk, i++)
|
|
1309
|
+
if (c && parser.trackPosition) {
|
|
1310
|
+
parser.position++
|
|
1311
|
+
if (c === '\n') {
|
|
1312
|
+
parser.line++
|
|
1313
|
+
parser.column = 0
|
|
1314
|
+
} else {
|
|
1315
|
+
parser.column++
|
|
1316
|
+
}
|
|
1317
|
+
}
|
|
1318
|
+
}
|
|
1319
|
+
parser.cdata += chunk.substring(starti, i - 1)
|
|
1320
|
+
if (c === ']') {
|
|
1321
|
+
parser.state = S.CDATA_ENDING
|
|
1322
|
+
}
|
|
1323
|
+
continue
|
|
1324
|
+
|
|
1325
|
+
case S.CDATA_ENDING:
|
|
1326
|
+
if (c === ']') {
|
|
1327
|
+
parser.state = S.CDATA_ENDING_2
|
|
1328
|
+
} else {
|
|
1329
|
+
parser.cdata += ']' + c
|
|
1330
|
+
parser.state = S.CDATA
|
|
1331
|
+
}
|
|
1332
|
+
continue
|
|
1333
|
+
|
|
1334
|
+
case S.CDATA_ENDING_2:
|
|
1335
|
+
if (c === '>') {
|
|
1336
|
+
if (parser.cdata) {
|
|
1337
|
+
emitNode(parser, 'oncdata', parser.cdata)
|
|
1338
|
+
}
|
|
1339
|
+
emitNode(parser, 'onclosecdata')
|
|
1340
|
+
parser.cdata = ''
|
|
1341
|
+
parser.state = S.TEXT
|
|
1342
|
+
} else if (c === ']') {
|
|
1343
|
+
parser.cdata += ']'
|
|
1344
|
+
} else {
|
|
1345
|
+
parser.cdata += ']]' + c
|
|
1346
|
+
parser.state = S.CDATA
|
|
1347
|
+
}
|
|
1348
|
+
continue
|
|
1349
|
+
|
|
1350
|
+
case S.PROC_INST:
|
|
1351
|
+
if (c === '?') {
|
|
1352
|
+
parser.state = S.PROC_INST_ENDING
|
|
1353
|
+
} else if (isWhitespace(c)) {
|
|
1354
|
+
parser.state = S.PROC_INST_BODY
|
|
1355
|
+
} else {
|
|
1356
|
+
parser.procInstName += c
|
|
1357
|
+
}
|
|
1358
|
+
continue
|
|
1359
|
+
|
|
1360
|
+
case S.PROC_INST_BODY:
|
|
1361
|
+
if (!parser.procInstBody && isWhitespace(c)) {
|
|
1362
|
+
continue
|
|
1363
|
+
} else if (c === '?') {
|
|
1364
|
+
parser.state = S.PROC_INST_ENDING
|
|
1365
|
+
} else {
|
|
1366
|
+
parser.procInstBody += c
|
|
1367
|
+
}
|
|
1368
|
+
continue
|
|
1369
|
+
|
|
1370
|
+
case S.PROC_INST_ENDING:
|
|
1371
|
+
if (c === '>') {
|
|
1372
|
+
emitNode(parser, 'onprocessinginstruction', {
|
|
1373
|
+
name: parser.procInstName,
|
|
1374
|
+
body: parser.procInstBody,
|
|
1375
|
+
})
|
|
1376
|
+
parser.procInstName = parser.procInstBody = ''
|
|
1377
|
+
parser.state = S.TEXT
|
|
1378
|
+
} else {
|
|
1379
|
+
parser.procInstBody += '?' + c
|
|
1380
|
+
parser.state = S.PROC_INST_BODY
|
|
1381
|
+
}
|
|
1382
|
+
continue
|
|
1383
|
+
|
|
1384
|
+
case S.OPEN_TAG:
|
|
1385
|
+
if (isMatch(nameBody, c)) {
|
|
1386
|
+
parser.tagName += c
|
|
1387
|
+
} else {
|
|
1388
|
+
newTag(parser)
|
|
1389
|
+
if (c === '>') {
|
|
1390
|
+
openTag(parser)
|
|
1391
|
+
} else if (c === '/') {
|
|
1392
|
+
parser.state = S.OPEN_TAG_SLASH
|
|
1393
|
+
} else {
|
|
1394
|
+
if (!isWhitespace(c)) {
|
|
1395
|
+
strictFail(parser, 'Invalid character in tag name')
|
|
1396
|
+
}
|
|
1397
|
+
parser.state = S.ATTRIB
|
|
1398
|
+
}
|
|
1399
|
+
}
|
|
1400
|
+
continue
|
|
1401
|
+
|
|
1402
|
+
case S.OPEN_TAG_SLASH:
|
|
1403
|
+
if (c === '>') {
|
|
1404
|
+
openTag(parser, true)
|
|
1405
|
+
closeTag(parser)
|
|
1406
|
+
} else {
|
|
1407
|
+
strictFail(
|
|
1408
|
+
parser,
|
|
1409
|
+
'Forward-slash in opening tag not followed by >'
|
|
1410
|
+
)
|
|
1411
|
+
parser.state = S.ATTRIB
|
|
1412
|
+
}
|
|
1413
|
+
continue
|
|
1414
|
+
|
|
1415
|
+
case S.ATTRIB:
|
|
1416
|
+
// haven't read the attribute name yet.
|
|
1417
|
+
if (isWhitespace(c)) {
|
|
1418
|
+
continue
|
|
1419
|
+
} else if (c === '>') {
|
|
1420
|
+
openTag(parser)
|
|
1421
|
+
} else if (c === '/') {
|
|
1422
|
+
parser.state = S.OPEN_TAG_SLASH
|
|
1423
|
+
} else if (isMatch(nameStart, c)) {
|
|
1424
|
+
parser.attribName = c
|
|
1425
|
+
parser.attribValue = ''
|
|
1426
|
+
parser.state = S.ATTRIB_NAME
|
|
1427
|
+
} else {
|
|
1428
|
+
strictFail(parser, 'Invalid attribute name')
|
|
1429
|
+
}
|
|
1430
|
+
continue
|
|
1431
|
+
|
|
1432
|
+
case S.ATTRIB_NAME:
|
|
1433
|
+
if (c === '=') {
|
|
1434
|
+
parser.state = S.ATTRIB_VALUE
|
|
1435
|
+
} else if (c === '>') {
|
|
1436
|
+
strictFail(parser, 'Attribute without value')
|
|
1437
|
+
parser.attribValue = parser.attribName
|
|
1438
|
+
attrib(parser)
|
|
1439
|
+
openTag(parser)
|
|
1440
|
+
} else if (isWhitespace(c)) {
|
|
1441
|
+
parser.state = S.ATTRIB_NAME_SAW_WHITE
|
|
1442
|
+
} else if (isMatch(nameBody, c)) {
|
|
1443
|
+
parser.attribName += c
|
|
1444
|
+
} else {
|
|
1445
|
+
strictFail(parser, 'Invalid attribute name')
|
|
1446
|
+
}
|
|
1447
|
+
continue
|
|
1448
|
+
|
|
1449
|
+
case S.ATTRIB_NAME_SAW_WHITE:
|
|
1450
|
+
if (c === '=') {
|
|
1451
|
+
parser.state = S.ATTRIB_VALUE
|
|
1452
|
+
} else if (isWhitespace(c)) {
|
|
1453
|
+
continue
|
|
1454
|
+
} else {
|
|
1455
|
+
strictFail(parser, 'Attribute without value')
|
|
1456
|
+
parser.tag.attributes[parser.attribName] = ''
|
|
1457
|
+
parser.attribValue = ''
|
|
1458
|
+
emitNode(parser, 'onattribute', {
|
|
1459
|
+
name: parser.attribName,
|
|
1460
|
+
value: '',
|
|
1461
|
+
})
|
|
1462
|
+
parser.attribName = ''
|
|
1463
|
+
if (c === '>') {
|
|
1464
|
+
openTag(parser)
|
|
1465
|
+
} else if (isMatch(nameStart, c)) {
|
|
1466
|
+
parser.attribName = c
|
|
1467
|
+
parser.state = S.ATTRIB_NAME
|
|
1468
|
+
} else {
|
|
1469
|
+
strictFail(parser, 'Invalid attribute name')
|
|
1470
|
+
parser.state = S.ATTRIB
|
|
1471
|
+
}
|
|
1472
|
+
}
|
|
1473
|
+
continue
|
|
1474
|
+
|
|
1475
|
+
case S.ATTRIB_VALUE:
|
|
1476
|
+
if (isWhitespace(c)) {
|
|
1477
|
+
continue
|
|
1478
|
+
} else if (isQuote(c)) {
|
|
1479
|
+
parser.q = c
|
|
1480
|
+
parser.state = S.ATTRIB_VALUE_QUOTED
|
|
1481
|
+
} else {
|
|
1482
|
+
if (!parser.opt.unquotedAttributeValues) {
|
|
1483
|
+
error(parser, 'Unquoted attribute value')
|
|
1484
|
+
}
|
|
1485
|
+
parser.state = S.ATTRIB_VALUE_UNQUOTED
|
|
1486
|
+
parser.attribValue = c
|
|
1487
|
+
}
|
|
1488
|
+
continue
|
|
1489
|
+
|
|
1490
|
+
case S.ATTRIB_VALUE_QUOTED:
|
|
1491
|
+
if (c !== parser.q) {
|
|
1492
|
+
if (c === '&') {
|
|
1493
|
+
parser.state = S.ATTRIB_VALUE_ENTITY_Q
|
|
1494
|
+
} else {
|
|
1495
|
+
parser.attribValue += c
|
|
1496
|
+
}
|
|
1497
|
+
continue
|
|
1498
|
+
}
|
|
1499
|
+
attrib(parser)
|
|
1500
|
+
parser.q = ''
|
|
1501
|
+
parser.state = S.ATTRIB_VALUE_CLOSED
|
|
1502
|
+
continue
|
|
1503
|
+
|
|
1504
|
+
case S.ATTRIB_VALUE_CLOSED:
|
|
1505
|
+
if (isWhitespace(c)) {
|
|
1506
|
+
parser.state = S.ATTRIB
|
|
1507
|
+
} else if (c === '>') {
|
|
1508
|
+
openTag(parser)
|
|
1509
|
+
} else if (c === '/') {
|
|
1510
|
+
parser.state = S.OPEN_TAG_SLASH
|
|
1511
|
+
} else if (isMatch(nameStart, c)) {
|
|
1512
|
+
strictFail(parser, 'No whitespace between attributes')
|
|
1513
|
+
parser.attribName = c
|
|
1514
|
+
parser.attribValue = ''
|
|
1515
|
+
parser.state = S.ATTRIB_NAME
|
|
1516
|
+
} else {
|
|
1517
|
+
strictFail(parser, 'Invalid attribute name')
|
|
1518
|
+
}
|
|
1519
|
+
continue
|
|
1520
|
+
|
|
1521
|
+
case S.ATTRIB_VALUE_UNQUOTED:
|
|
1522
|
+
if (!isAttribEnd(c)) {
|
|
1523
|
+
if (c === '&') {
|
|
1524
|
+
parser.state = S.ATTRIB_VALUE_ENTITY_U
|
|
1525
|
+
} else {
|
|
1526
|
+
parser.attribValue += c
|
|
1527
|
+
}
|
|
1528
|
+
continue
|
|
1529
|
+
}
|
|
1530
|
+
attrib(parser)
|
|
1531
|
+
if (c === '>') {
|
|
1532
|
+
openTag(parser)
|
|
1533
|
+
} else {
|
|
1534
|
+
parser.state = S.ATTRIB
|
|
1535
|
+
}
|
|
1536
|
+
continue
|
|
1537
|
+
|
|
1538
|
+
case S.CLOSE_TAG:
|
|
1539
|
+
if (!parser.tagName) {
|
|
1540
|
+
if (isWhitespace(c)) {
|
|
1541
|
+
continue
|
|
1542
|
+
} else if (notMatch(nameStart, c)) {
|
|
1543
|
+
if (parser.script) {
|
|
1544
|
+
parser.script += '</' + c
|
|
1545
|
+
parser.state = S.SCRIPT
|
|
1546
|
+
} else {
|
|
1547
|
+
strictFail(parser, 'Invalid tagname in closing tag.')
|
|
1548
|
+
}
|
|
1549
|
+
} else {
|
|
1550
|
+
parser.tagName = c
|
|
1551
|
+
}
|
|
1552
|
+
} else if (c === '>') {
|
|
1553
|
+
closeTag(parser)
|
|
1554
|
+
} else if (isMatch(nameBody, c)) {
|
|
1555
|
+
parser.tagName += c
|
|
1556
|
+
} else if (parser.script) {
|
|
1557
|
+
parser.script += '</' + parser.tagName
|
|
1558
|
+
parser.tagName = ''
|
|
1559
|
+
parser.state = S.SCRIPT
|
|
1560
|
+
} else {
|
|
1561
|
+
if (!isWhitespace(c)) {
|
|
1562
|
+
strictFail(parser, 'Invalid tagname in closing tag')
|
|
1563
|
+
}
|
|
1564
|
+
parser.state = S.CLOSE_TAG_SAW_WHITE
|
|
1565
|
+
}
|
|
1566
|
+
continue
|
|
1567
|
+
|
|
1568
|
+
case S.CLOSE_TAG_SAW_WHITE:
|
|
1569
|
+
if (isWhitespace(c)) {
|
|
1570
|
+
continue
|
|
1571
|
+
}
|
|
1572
|
+
if (c === '>') {
|
|
1573
|
+
closeTag(parser)
|
|
1574
|
+
} else {
|
|
1575
|
+
strictFail(parser, 'Invalid characters in closing tag')
|
|
1576
|
+
}
|
|
1577
|
+
continue
|
|
1578
|
+
|
|
1579
|
+
case S.TEXT_ENTITY:
|
|
1580
|
+
case S.ATTRIB_VALUE_ENTITY_Q:
|
|
1581
|
+
case S.ATTRIB_VALUE_ENTITY_U:
|
|
1582
|
+
var returnState
|
|
1583
|
+
var buffer
|
|
1584
|
+
switch (parser.state) {
|
|
1585
|
+
case S.TEXT_ENTITY:
|
|
1586
|
+
returnState = S.TEXT
|
|
1587
|
+
buffer = 'textNode'
|
|
1588
|
+
break
|
|
1589
|
+
|
|
1590
|
+
case S.ATTRIB_VALUE_ENTITY_Q:
|
|
1591
|
+
returnState = S.ATTRIB_VALUE_QUOTED
|
|
1592
|
+
buffer = 'attribValue'
|
|
1593
|
+
break
|
|
1594
|
+
|
|
1595
|
+
case S.ATTRIB_VALUE_ENTITY_U:
|
|
1596
|
+
returnState = S.ATTRIB_VALUE_UNQUOTED
|
|
1597
|
+
buffer = 'attribValue'
|
|
1598
|
+
break
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
if (c === ';') {
|
|
1602
|
+
var parsedEntity = parseEntity(parser)
|
|
1603
|
+
if (
|
|
1604
|
+
parser.opt.unparsedEntities &&
|
|
1605
|
+
!Object.values(sax.XML_ENTITIES).includes(parsedEntity)
|
|
1606
|
+
) {
|
|
1607
|
+
parser.entity = ''
|
|
1608
|
+
parser.state = returnState
|
|
1609
|
+
parser.write(parsedEntity)
|
|
1610
|
+
} else {
|
|
1611
|
+
parser[buffer] += parsedEntity
|
|
1612
|
+
parser.entity = ''
|
|
1613
|
+
parser.state = returnState
|
|
1614
|
+
}
|
|
1615
|
+
} else if (
|
|
1616
|
+
isMatch(parser.entity.length ? entityBody : entityStart, c)
|
|
1617
|
+
) {
|
|
1618
|
+
parser.entity += c
|
|
1619
|
+
} else {
|
|
1620
|
+
strictFail(parser, 'Invalid character in entity name')
|
|
1621
|
+
parser[buffer] += '&' + parser.entity + c
|
|
1622
|
+
parser.entity = ''
|
|
1623
|
+
parser.state = returnState
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
continue
|
|
1627
|
+
|
|
1628
|
+
default: /* istanbul ignore next */ {
|
|
1629
|
+
throw new Error(parser, 'Unknown state: ' + parser.state)
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
} // while
|
|
1633
|
+
|
|
1634
|
+
if (parser.position >= parser.bufferCheckPosition) {
|
|
1635
|
+
checkBufferLength(parser)
|
|
1636
|
+
}
|
|
1637
|
+
return parser
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
/*! http://mths.be/fromcodepoint v0.1.0 by @mathias */
|
|
1641
|
+
/* istanbul ignore next */
|
|
1642
|
+
if (!String.fromCodePoint) {
|
|
1643
|
+
;(function () {
|
|
1644
|
+
var stringFromCharCode = String.fromCharCode
|
|
1645
|
+
var floor = Math.floor
|
|
1646
|
+
var fromCodePoint = function () {
|
|
1647
|
+
var MAX_SIZE = 0x4000
|
|
1648
|
+
var codeUnits = []
|
|
1649
|
+
var highSurrogate
|
|
1650
|
+
var lowSurrogate
|
|
1651
|
+
var index = -1
|
|
1652
|
+
var length = arguments.length
|
|
1653
|
+
if (!length) {
|
|
1654
|
+
return ''
|
|
1655
|
+
}
|
|
1656
|
+
var result = ''
|
|
1657
|
+
while (++index < length) {
|
|
1658
|
+
var codePoint = Number(arguments[index])
|
|
1659
|
+
if (
|
|
1660
|
+
!isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`
|
|
1661
|
+
codePoint < 0 || // not a valid Unicode code point
|
|
1662
|
+
codePoint > 0x10ffff || // not a valid Unicode code point
|
|
1663
|
+
floor(codePoint) !== codePoint // not an integer
|
|
1664
|
+
) {
|
|
1665
|
+
throw RangeError('Invalid code point: ' + codePoint)
|
|
1666
|
+
}
|
|
1667
|
+
if (codePoint <= 0xffff) {
|
|
1668
|
+
// BMP code point
|
|
1669
|
+
codeUnits.push(codePoint)
|
|
1670
|
+
} else {
|
|
1671
|
+
// Astral code point; split in surrogate halves
|
|
1672
|
+
// http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae
|
|
1673
|
+
codePoint -= 0x10000
|
|
1674
|
+
highSurrogate = (codePoint >> 10) + 0xd800
|
|
1675
|
+
lowSurrogate = (codePoint % 0x400) + 0xdc00
|
|
1676
|
+
codeUnits.push(highSurrogate, lowSurrogate)
|
|
1677
|
+
}
|
|
1678
|
+
if (index + 1 === length || codeUnits.length > MAX_SIZE) {
|
|
1679
|
+
result += stringFromCharCode.apply(null, codeUnits)
|
|
1680
|
+
codeUnits.length = 0
|
|
1681
|
+
}
|
|
1682
|
+
}
|
|
1683
|
+
return result
|
|
1684
|
+
}
|
|
1685
|
+
/* istanbul ignore next */
|
|
1686
|
+
if (Object.defineProperty) {
|
|
1687
|
+
Object.defineProperty(String, 'fromCodePoint', {
|
|
1688
|
+
value: fromCodePoint,
|
|
1689
|
+
configurable: true,
|
|
1690
|
+
writable: true,
|
|
1691
|
+
})
|
|
1692
|
+
} else {
|
|
1693
|
+
String.fromCodePoint = fromCodePoint
|
|
1694
|
+
}
|
|
1695
|
+
})()
|
|
1696
|
+
}
|
|
1697
|
+
})(typeof exports === 'undefined' ? (this.sax = {}) : exports)
|