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
|
@@ -1,1413 +0,0 @@
|
|
|
1
|
-
;(function (sax) { // wrapper for non-node envs
|
|
2
|
-
sax.parser = function (strict, opt) { return new SAXParser(strict, opt) }
|
|
3
|
-
sax.SAXParser = SAXParser
|
|
4
|
-
|
|
5
|
-
// When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns.
|
|
6
|
-
// When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)),
|
|
7
|
-
// since that's the earliest that a buffer overrun could occur. This way, checks are
|
|
8
|
-
// as rare as required, but as often as necessary to ensure never crossing this bound.
|
|
9
|
-
// Furthermore, buffers are only tested at most once per write(), so passing a very
|
|
10
|
-
// large string into write() might have undesirable effects, but this is manageable by
|
|
11
|
-
// the caller, so it is assumed to be safe. Thus, a call to write() may, in the extreme
|
|
12
|
-
// edge case, result in creating at most one complete copy of the string passed in.
|
|
13
|
-
// Set to Infinity to have unlimited buffers.
|
|
14
|
-
sax.MAX_BUFFER_LENGTH = 64 * 1024
|
|
15
|
-
|
|
16
|
-
var buffers = [
|
|
17
|
-
'comment', 'sgmlDecl', 'textNode', 'tagName', 'doctype',
|
|
18
|
-
'procInstName', 'procInstBody', 'entity', 'attribName',
|
|
19
|
-
'attribValue', 'cdata', 'script'
|
|
20
|
-
]
|
|
21
|
-
|
|
22
|
-
sax.EVENTS = [
|
|
23
|
-
'text',
|
|
24
|
-
'processinginstruction',
|
|
25
|
-
'sgmldeclaration',
|
|
26
|
-
'doctype',
|
|
27
|
-
'comment',
|
|
28
|
-
'opentagstart',
|
|
29
|
-
'attribute',
|
|
30
|
-
'opentag',
|
|
31
|
-
'closetag',
|
|
32
|
-
'opencdata',
|
|
33
|
-
'cdata',
|
|
34
|
-
'closecdata',
|
|
35
|
-
'error',
|
|
36
|
-
'end',
|
|
37
|
-
'ready',
|
|
38
|
-
'script',
|
|
39
|
-
'opennamespace',
|
|
40
|
-
'closenamespace'
|
|
41
|
-
]
|
|
42
|
-
|
|
43
|
-
function SAXParser (strict, opt) {
|
|
44
|
-
if (!(this instanceof SAXParser)) {
|
|
45
|
-
return new SAXParser(strict, opt)
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
var parser = this
|
|
49
|
-
clearBuffers(parser)
|
|
50
|
-
parser.q = parser.c = ''
|
|
51
|
-
parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH
|
|
52
|
-
parser.opt = opt || {}
|
|
53
|
-
parser.opt.lowercase = parser.opt.lowercase || parser.opt.lowercasetags
|
|
54
|
-
parser.looseCase = parser.opt.lowercase ? 'toLowerCase' : 'toUpperCase'
|
|
55
|
-
parser.tags = []
|
|
56
|
-
parser.closed = parser.closedRoot = parser.sawRoot = false
|
|
57
|
-
parser.tag = parser.error = null
|
|
58
|
-
parser.strict = !!strict
|
|
59
|
-
parser.noscript = !!(strict || parser.opt.noscript)
|
|
60
|
-
parser.state = S.BEGIN
|
|
61
|
-
parser.strictEntities = parser.opt.strictEntities
|
|
62
|
-
parser.ENTITIES = parser.strictEntities ? Object.create(sax.XML_ENTITIES) : Object.create(sax.ENTITIES)
|
|
63
|
-
parser.attribList = []
|
|
64
|
-
|
|
65
|
-
// namespaces form a prototype chain.
|
|
66
|
-
// it always points at the current tag,
|
|
67
|
-
// which protos to its parent tag.
|
|
68
|
-
if (parser.opt.xmlns) {
|
|
69
|
-
parser.ns = Object.create(rootNS)
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
// mostly just for error reporting
|
|
73
|
-
parser.trackPosition = parser.opt.position !== false
|
|
74
|
-
if (parser.trackPosition) {
|
|
75
|
-
parser.position = parser.line = parser.column = 0
|
|
76
|
-
}
|
|
77
|
-
emit(parser, 'onready')
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
if (!Object.create) {
|
|
81
|
-
Object.create = function (o) {
|
|
82
|
-
function F () {}
|
|
83
|
-
F.prototype = o
|
|
84
|
-
var newf = new F()
|
|
85
|
-
return newf
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
if (!Object.keys) {
|
|
90
|
-
Object.keys = function (o) {
|
|
91
|
-
var a = []
|
|
92
|
-
for (var i in o) if (o.hasOwnProperty(i)) a.push(i)
|
|
93
|
-
return a
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
function checkBufferLength (parser) {
|
|
98
|
-
var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10)
|
|
99
|
-
var maxActual = 0
|
|
100
|
-
for (var i = 0, l = buffers.length; i < l; i++) {
|
|
101
|
-
var len = parser[buffers[i]].length
|
|
102
|
-
if (len > maxAllowed) {
|
|
103
|
-
// Text/cdata nodes can get big, and since they're buffered,
|
|
104
|
-
// we can get here under normal conditions.
|
|
105
|
-
// Avoid issues by emitting the text node now,
|
|
106
|
-
// so at least it won't get any bigger.
|
|
107
|
-
switch (buffers[i]) {
|
|
108
|
-
case 'textNode':
|
|
109
|
-
closeText(parser)
|
|
110
|
-
break
|
|
111
|
-
|
|
112
|
-
case 'cdata':
|
|
113
|
-
emitNode(parser, 'oncdata', parser.cdata)
|
|
114
|
-
parser.cdata = ''
|
|
115
|
-
break
|
|
116
|
-
|
|
117
|
-
case 'script':
|
|
118
|
-
emitNode(parser, 'onscript', parser.script)
|
|
119
|
-
parser.script = ''
|
|
120
|
-
break
|
|
121
|
-
|
|
122
|
-
default:
|
|
123
|
-
error(parser, 'Max buffer length exceeded: ' + buffers[i])
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
maxActual = Math.max(maxActual, len)
|
|
127
|
-
}
|
|
128
|
-
// schedule the next check for the earliest possible buffer overrun.
|
|
129
|
-
var m = sax.MAX_BUFFER_LENGTH - maxActual
|
|
130
|
-
parser.bufferCheckPosition = m + parser.position
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
function clearBuffers (parser) {
|
|
134
|
-
for (var i = 0, l = buffers.length; i < l; i++) {
|
|
135
|
-
parser[buffers[i]] = ''
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
function flushBuffers (parser) {
|
|
140
|
-
closeText(parser)
|
|
141
|
-
if (parser.cdata !== '') {
|
|
142
|
-
emitNode(parser, 'oncdata', parser.cdata)
|
|
143
|
-
parser.cdata = ''
|
|
144
|
-
}
|
|
145
|
-
if (parser.script !== '') {
|
|
146
|
-
emitNode(parser, 'onscript', parser.script)
|
|
147
|
-
parser.script = ''
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
SAXParser.prototype = {
|
|
152
|
-
end: function () { end(this) },
|
|
153
|
-
write: write,
|
|
154
|
-
resume: function () { this.error = null; return this },
|
|
155
|
-
close: function () { return this.write(null) },
|
|
156
|
-
flush: function () { flushBuffers(this) }
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
// this really needs to be replaced with character classes.
|
|
160
|
-
// XML allows all manner of ridiculous numbers and digits.
|
|
161
|
-
var CDATA = '[CDATA['
|
|
162
|
-
var DOCTYPE = 'DOCTYPE'
|
|
163
|
-
var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace'
|
|
164
|
-
var XMLNS_NAMESPACE = 'http://www.w3.org/2000/xmlns/'
|
|
165
|
-
var rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE }
|
|
166
|
-
|
|
167
|
-
// http://www.w3.org/TR/REC-xml/#NT-NameStartChar
|
|
168
|
-
// This implementation works on strings, a single character at a time
|
|
169
|
-
// as such, it cannot ever support astral-plane characters (10000-EFFFF)
|
|
170
|
-
// without a significant breaking change to either this parser, or the
|
|
171
|
-
// JavaScript language. Implementation of an emoji-capable xml parser
|
|
172
|
-
// is left as an exercise for the reader.
|
|
173
|
-
var nameStart = /[:_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]/
|
|
174
|
-
|
|
175
|
-
var nameBody = /[:_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-]/
|
|
176
|
-
|
|
177
|
-
var entityStart = /[#:_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]/
|
|
178
|
-
var entityBody = /[#:_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-]/
|
|
179
|
-
|
|
180
|
-
function isWhitespace (c) {
|
|
181
|
-
return c === ' ' || c === '\n' || c === '\r' || c === '\t'
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
function isQuote (c) {
|
|
185
|
-
return c === '"' || c === '\''
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
function isAttribEnd (c) {
|
|
189
|
-
return c === '>' || isWhitespace(c)
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
function isMatch (regex, c) {
|
|
193
|
-
return regex.test(c)
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
function notMatch (regex, c) {
|
|
197
|
-
return !isMatch(regex, c)
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
var S = 0
|
|
201
|
-
sax.STATE = {
|
|
202
|
-
BEGIN: S++, // leading byte order mark or whitespace
|
|
203
|
-
BEGIN_WHITESPACE: S++, // leading whitespace
|
|
204
|
-
TEXT: S++, // general stuff
|
|
205
|
-
TEXT_ENTITY: S++, // & and such.
|
|
206
|
-
OPEN_WAKA: S++, // <
|
|
207
|
-
SGML_DECL: S++, // <!BLARG
|
|
208
|
-
SGML_DECL_QUOTED: S++, // <!BLARG foo "bar
|
|
209
|
-
DOCTYPE: S++, // <!DOCTYPE
|
|
210
|
-
DOCTYPE_QUOTED: S++, // <!DOCTYPE "//blah
|
|
211
|
-
DOCTYPE_DTD: S++, // <!DOCTYPE "//blah" [ ...
|
|
212
|
-
DOCTYPE_DTD_QUOTED: S++, // <!DOCTYPE "//blah" [ "foo
|
|
213
|
-
COMMENT_STARTING: S++, // <!-
|
|
214
|
-
COMMENT: S++, // <!--
|
|
215
|
-
COMMENT_ENDING: S++, // <!-- blah -
|
|
216
|
-
COMMENT_ENDED: S++, // <!-- blah --
|
|
217
|
-
CDATA: S++, // <![CDATA[ something
|
|
218
|
-
CDATA_ENDING: S++, // ]
|
|
219
|
-
CDATA_ENDING_2: S++, // ]]
|
|
220
|
-
PROC_INST: S++, // <?hi
|
|
221
|
-
PROC_INST_BODY: S++, // <?hi there
|
|
222
|
-
PROC_INST_ENDING: S++, // <?hi "there" ?
|
|
223
|
-
OPEN_TAG: S++, // <strong
|
|
224
|
-
OPEN_TAG_SLASH: S++, // <strong /
|
|
225
|
-
ATTRIB: S++, // <a
|
|
226
|
-
ATTRIB_NAME: S++, // <a foo
|
|
227
|
-
ATTRIB_NAME_SAW_WHITE: S++, // <a foo _
|
|
228
|
-
ATTRIB_VALUE: S++, // <a foo=
|
|
229
|
-
ATTRIB_VALUE_QUOTED: S++, // <a foo="bar
|
|
230
|
-
ATTRIB_VALUE_CLOSED: S++, // <a foo="bar"
|
|
231
|
-
ATTRIB_VALUE_UNQUOTED: S++, // <a foo=bar
|
|
232
|
-
ATTRIB_VALUE_ENTITY_Q: S++, // <foo bar="""
|
|
233
|
-
ATTRIB_VALUE_ENTITY_U: S++, // <foo bar="
|
|
234
|
-
CLOSE_TAG: S++, // </a
|
|
235
|
-
CLOSE_TAG_SAW_WHITE: S++, // </a >
|
|
236
|
-
SCRIPT: S++, // <script> ...
|
|
237
|
-
SCRIPT_ENDING: S++ // <script> ... <
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
sax.XML_ENTITIES = {
|
|
241
|
-
'amp': '&',
|
|
242
|
-
'gt': '>',
|
|
243
|
-
'lt': '<',
|
|
244
|
-
'quot': '"',
|
|
245
|
-
'apos': "'"
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
sax.ENTITIES = {
|
|
249
|
-
'amp': '&',
|
|
250
|
-
'gt': '>',
|
|
251
|
-
'lt': '<',
|
|
252
|
-
'quot': '"',
|
|
253
|
-
'apos': "'",
|
|
254
|
-
'AElig': 198,
|
|
255
|
-
'Aacute': 193,
|
|
256
|
-
'Acirc': 194,
|
|
257
|
-
'Agrave': 192,
|
|
258
|
-
'Aring': 197,
|
|
259
|
-
'Atilde': 195,
|
|
260
|
-
'Auml': 196,
|
|
261
|
-
'Ccedil': 199,
|
|
262
|
-
'ETH': 208,
|
|
263
|
-
'Eacute': 201,
|
|
264
|
-
'Ecirc': 202,
|
|
265
|
-
'Egrave': 200,
|
|
266
|
-
'Euml': 203,
|
|
267
|
-
'Iacute': 205,
|
|
268
|
-
'Icirc': 206,
|
|
269
|
-
'Igrave': 204,
|
|
270
|
-
'Iuml': 207,
|
|
271
|
-
'Ntilde': 209,
|
|
272
|
-
'Oacute': 211,
|
|
273
|
-
'Ocirc': 212,
|
|
274
|
-
'Ograve': 210,
|
|
275
|
-
'Oslash': 216,
|
|
276
|
-
'Otilde': 213,
|
|
277
|
-
'Ouml': 214,
|
|
278
|
-
'THORN': 222,
|
|
279
|
-
'Uacute': 218,
|
|
280
|
-
'Ucirc': 219,
|
|
281
|
-
'Ugrave': 217,
|
|
282
|
-
'Uuml': 220,
|
|
283
|
-
'Yacute': 221,
|
|
284
|
-
'aacute': 225,
|
|
285
|
-
'acirc': 226,
|
|
286
|
-
'aelig': 230,
|
|
287
|
-
'agrave': 224,
|
|
288
|
-
'aring': 229,
|
|
289
|
-
'atilde': 227,
|
|
290
|
-
'auml': 228,
|
|
291
|
-
'ccedil': 231,
|
|
292
|
-
'eacute': 233,
|
|
293
|
-
'ecirc': 234,
|
|
294
|
-
'egrave': 232,
|
|
295
|
-
'eth': 240,
|
|
296
|
-
'euml': 235,
|
|
297
|
-
'iacute': 237,
|
|
298
|
-
'icirc': 238,
|
|
299
|
-
'igrave': 236,
|
|
300
|
-
'iuml': 239,
|
|
301
|
-
'ntilde': 241,
|
|
302
|
-
'oacute': 243,
|
|
303
|
-
'ocirc': 244,
|
|
304
|
-
'ograve': 242,
|
|
305
|
-
'oslash': 248,
|
|
306
|
-
'otilde': 245,
|
|
307
|
-
'ouml': 246,
|
|
308
|
-
'szlig': 223,
|
|
309
|
-
'thorn': 254,
|
|
310
|
-
'uacute': 250,
|
|
311
|
-
'ucirc': 251,
|
|
312
|
-
'ugrave': 249,
|
|
313
|
-
'uuml': 252,
|
|
314
|
-
'yacute': 253,
|
|
315
|
-
'yuml': 255,
|
|
316
|
-
'copy': 169,
|
|
317
|
-
'reg': 174,
|
|
318
|
-
'nbsp': 160,
|
|
319
|
-
'iexcl': 161,
|
|
320
|
-
'cent': 162,
|
|
321
|
-
'pound': 163,
|
|
322
|
-
'curren': 164,
|
|
323
|
-
'yen': 165,
|
|
324
|
-
'brvbar': 166,
|
|
325
|
-
'sect': 167,
|
|
326
|
-
'uml': 168,
|
|
327
|
-
'ordf': 170,
|
|
328
|
-
'laquo': 171,
|
|
329
|
-
'not': 172,
|
|
330
|
-
'shy': 173,
|
|
331
|
-
'macr': 175,
|
|
332
|
-
'deg': 176,
|
|
333
|
-
'plusmn': 177,
|
|
334
|
-
'sup1': 185,
|
|
335
|
-
'sup2': 178,
|
|
336
|
-
'sup3': 179,
|
|
337
|
-
'acute': 180,
|
|
338
|
-
'micro': 181,
|
|
339
|
-
'para': 182,
|
|
340
|
-
'middot': 183,
|
|
341
|
-
'cedil': 184,
|
|
342
|
-
'ordm': 186,
|
|
343
|
-
'raquo': 187,
|
|
344
|
-
'frac14': 188,
|
|
345
|
-
'frac12': 189,
|
|
346
|
-
'frac34': 190,
|
|
347
|
-
'iquest': 191,
|
|
348
|
-
'times': 215,
|
|
349
|
-
'divide': 247,
|
|
350
|
-
'OElig': 338,
|
|
351
|
-
'oelig': 339,
|
|
352
|
-
'Scaron': 352,
|
|
353
|
-
'scaron': 353,
|
|
354
|
-
'Yuml': 376,
|
|
355
|
-
'fnof': 402,
|
|
356
|
-
'circ': 710,
|
|
357
|
-
'tilde': 732,
|
|
358
|
-
'Alpha': 913,
|
|
359
|
-
'Beta': 914,
|
|
360
|
-
'Gamma': 915,
|
|
361
|
-
'Delta': 916,
|
|
362
|
-
'Epsilon': 917,
|
|
363
|
-
'Zeta': 918,
|
|
364
|
-
'Eta': 919,
|
|
365
|
-
'Theta': 920,
|
|
366
|
-
'Iota': 921,
|
|
367
|
-
'Kappa': 922,
|
|
368
|
-
'Lambda': 923,
|
|
369
|
-
'Mu': 924,
|
|
370
|
-
'Nu': 925,
|
|
371
|
-
'Xi': 926,
|
|
372
|
-
'Omicron': 927,
|
|
373
|
-
'Pi': 928,
|
|
374
|
-
'Rho': 929,
|
|
375
|
-
'Sigma': 931,
|
|
376
|
-
'Tau': 932,
|
|
377
|
-
'Upsilon': 933,
|
|
378
|
-
'Phi': 934,
|
|
379
|
-
'Chi': 935,
|
|
380
|
-
'Psi': 936,
|
|
381
|
-
'Omega': 937,
|
|
382
|
-
'alpha': 945,
|
|
383
|
-
'beta': 946,
|
|
384
|
-
'gamma': 947,
|
|
385
|
-
'delta': 948,
|
|
386
|
-
'epsilon': 949,
|
|
387
|
-
'zeta': 950,
|
|
388
|
-
'eta': 951,
|
|
389
|
-
'theta': 952,
|
|
390
|
-
'iota': 953,
|
|
391
|
-
'kappa': 954,
|
|
392
|
-
'lambda': 955,
|
|
393
|
-
'mu': 956,
|
|
394
|
-
'nu': 957,
|
|
395
|
-
'xi': 958,
|
|
396
|
-
'omicron': 959,
|
|
397
|
-
'pi': 960,
|
|
398
|
-
'rho': 961,
|
|
399
|
-
'sigmaf': 962,
|
|
400
|
-
'sigma': 963,
|
|
401
|
-
'tau': 964,
|
|
402
|
-
'upsilon': 965,
|
|
403
|
-
'phi': 966,
|
|
404
|
-
'chi': 967,
|
|
405
|
-
'psi': 968,
|
|
406
|
-
'omega': 969,
|
|
407
|
-
'thetasym': 977,
|
|
408
|
-
'upsih': 978,
|
|
409
|
-
'piv': 982,
|
|
410
|
-
'ensp': 8194,
|
|
411
|
-
'emsp': 8195,
|
|
412
|
-
'thinsp': 8201,
|
|
413
|
-
'zwnj': 8204,
|
|
414
|
-
'zwj': 8205,
|
|
415
|
-
'lrm': 8206,
|
|
416
|
-
'rlm': 8207,
|
|
417
|
-
'ndash': 8211,
|
|
418
|
-
'mdash': 8212,
|
|
419
|
-
'lsquo': 8216,
|
|
420
|
-
'rsquo': 8217,
|
|
421
|
-
'sbquo': 8218,
|
|
422
|
-
'ldquo': 8220,
|
|
423
|
-
'rdquo': 8221,
|
|
424
|
-
'bdquo': 8222,
|
|
425
|
-
'dagger': 8224,
|
|
426
|
-
'Dagger': 8225,
|
|
427
|
-
'bull': 8226,
|
|
428
|
-
'hellip': 8230,
|
|
429
|
-
'permil': 8240,
|
|
430
|
-
'prime': 8242,
|
|
431
|
-
'Prime': 8243,
|
|
432
|
-
'lsaquo': 8249,
|
|
433
|
-
'rsaquo': 8250,
|
|
434
|
-
'oline': 8254,
|
|
435
|
-
'frasl': 8260,
|
|
436
|
-
'euro': 8364,
|
|
437
|
-
'image': 8465,
|
|
438
|
-
'weierp': 8472,
|
|
439
|
-
'real': 8476,
|
|
440
|
-
'trade': 8482,
|
|
441
|
-
'alefsym': 8501,
|
|
442
|
-
'larr': 8592,
|
|
443
|
-
'uarr': 8593,
|
|
444
|
-
'rarr': 8594,
|
|
445
|
-
'darr': 8595,
|
|
446
|
-
'harr': 8596,
|
|
447
|
-
'crarr': 8629,
|
|
448
|
-
'lArr': 8656,
|
|
449
|
-
'uArr': 8657,
|
|
450
|
-
'rArr': 8658,
|
|
451
|
-
'dArr': 8659,
|
|
452
|
-
'hArr': 8660,
|
|
453
|
-
'forall': 8704,
|
|
454
|
-
'part': 8706,
|
|
455
|
-
'exist': 8707,
|
|
456
|
-
'empty': 8709,
|
|
457
|
-
'nabla': 8711,
|
|
458
|
-
'isin': 8712,
|
|
459
|
-
'notin': 8713,
|
|
460
|
-
'ni': 8715,
|
|
461
|
-
'prod': 8719,
|
|
462
|
-
'sum': 8721,
|
|
463
|
-
'minus': 8722,
|
|
464
|
-
'lowast': 8727,
|
|
465
|
-
'radic': 8730,
|
|
466
|
-
'prop': 8733,
|
|
467
|
-
'infin': 8734,
|
|
468
|
-
'ang': 8736,
|
|
469
|
-
'and': 8743,
|
|
470
|
-
'or': 8744,
|
|
471
|
-
'cap': 8745,
|
|
472
|
-
'cup': 8746,
|
|
473
|
-
'int': 8747,
|
|
474
|
-
'there4': 8756,
|
|
475
|
-
'sim': 8764,
|
|
476
|
-
'cong': 8773,
|
|
477
|
-
'asymp': 8776,
|
|
478
|
-
'ne': 8800,
|
|
479
|
-
'equiv': 8801,
|
|
480
|
-
'le': 8804,
|
|
481
|
-
'ge': 8805,
|
|
482
|
-
'sub': 8834,
|
|
483
|
-
'sup': 8835,
|
|
484
|
-
'nsub': 8836,
|
|
485
|
-
'sube': 8838,
|
|
486
|
-
'supe': 8839,
|
|
487
|
-
'oplus': 8853,
|
|
488
|
-
'otimes': 8855,
|
|
489
|
-
'perp': 8869,
|
|
490
|
-
'sdot': 8901,
|
|
491
|
-
'lceil': 8968,
|
|
492
|
-
'rceil': 8969,
|
|
493
|
-
'lfloor': 8970,
|
|
494
|
-
'rfloor': 8971,
|
|
495
|
-
'lang': 9001,
|
|
496
|
-
'rang': 9002,
|
|
497
|
-
'loz': 9674,
|
|
498
|
-
'spades': 9824,
|
|
499
|
-
'clubs': 9827,
|
|
500
|
-
'hearts': 9829,
|
|
501
|
-
'diams': 9830
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
Object.keys(sax.ENTITIES).forEach(function (key) {
|
|
505
|
-
var e = sax.ENTITIES[key]
|
|
506
|
-
var s = typeof e === 'number' ? String.fromCharCode(e) : e
|
|
507
|
-
sax.ENTITIES[key] = s
|
|
508
|
-
})
|
|
509
|
-
|
|
510
|
-
for (var s in sax.STATE) {
|
|
511
|
-
sax.STATE[sax.STATE[s]] = s
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
// shorthand
|
|
515
|
-
S = sax.STATE
|
|
516
|
-
|
|
517
|
-
function emit (parser, event, data) {
|
|
518
|
-
parser[event] && parser[event](data)
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
function emitNode (parser, nodeType, data) {
|
|
522
|
-
if (parser.textNode) closeText(parser)
|
|
523
|
-
emit(parser, nodeType, data)
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
function closeText (parser) {
|
|
527
|
-
parser.textNode = textopts(parser.opt, parser.textNode)
|
|
528
|
-
if (parser.textNode) emit(parser, 'ontext', parser.textNode)
|
|
529
|
-
parser.textNode = ''
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
function textopts (opt, text) {
|
|
533
|
-
if (opt.trim) text = text.trim()
|
|
534
|
-
if (opt.normalize) text = text.replace(/\s+/g, ' ')
|
|
535
|
-
return text
|
|
536
|
-
}
|
|
537
|
-
|
|
538
|
-
function error (parser, reason) {
|
|
539
|
-
closeText(parser)
|
|
540
|
-
const message = reason +
|
|
541
|
-
'\nLine: ' + parser.line +
|
|
542
|
-
'\nColumn: ' + parser.column +
|
|
543
|
-
'\nChar: ' + parser.c
|
|
544
|
-
const error = new Error(message)
|
|
545
|
-
error.reason = reason
|
|
546
|
-
error.line = parser.line
|
|
547
|
-
error.column = parser.column
|
|
548
|
-
parser.error = error
|
|
549
|
-
emit(parser, 'onerror', error)
|
|
550
|
-
return parser
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
function end (parser) {
|
|
554
|
-
if (parser.sawRoot && !parser.closedRoot) strictFail(parser, 'Unclosed root tag')
|
|
555
|
-
if ((parser.state !== S.BEGIN) &&
|
|
556
|
-
(parser.state !== S.BEGIN_WHITESPACE) &&
|
|
557
|
-
(parser.state !== S.TEXT)) {
|
|
558
|
-
error(parser, 'Unexpected end')
|
|
559
|
-
}
|
|
560
|
-
closeText(parser)
|
|
561
|
-
parser.c = ''
|
|
562
|
-
parser.closed = true
|
|
563
|
-
emit(parser, 'onend')
|
|
564
|
-
SAXParser.call(parser, parser.strict, parser.opt)
|
|
565
|
-
return parser
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
function strictFail (parser, message) {
|
|
569
|
-
if (typeof parser !== 'object' || !(parser instanceof SAXParser)) {
|
|
570
|
-
throw new Error('bad call to strictFail')
|
|
571
|
-
}
|
|
572
|
-
if (parser.strict) {
|
|
573
|
-
error(parser, message)
|
|
574
|
-
}
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
function newTag (parser) {
|
|
578
|
-
if (!parser.strict) parser.tagName = parser.tagName[parser.looseCase]()
|
|
579
|
-
var parent = parser.tags[parser.tags.length - 1] || parser
|
|
580
|
-
var tag = parser.tag = { name: parser.tagName, attributes: {} }
|
|
581
|
-
|
|
582
|
-
// will be overridden if tag contails an xmlns="foo" or xmlns:foo="bar"
|
|
583
|
-
if (parser.opt.xmlns) {
|
|
584
|
-
tag.ns = parent.ns
|
|
585
|
-
}
|
|
586
|
-
parser.attribList.length = 0
|
|
587
|
-
emitNode(parser, 'onopentagstart', tag)
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
function qname (name, attribute) {
|
|
591
|
-
var i = name.indexOf(':')
|
|
592
|
-
var qualName = i < 0 ? [ '', name ] : name.split(':')
|
|
593
|
-
var prefix = qualName[0]
|
|
594
|
-
var local = qualName[1]
|
|
595
|
-
|
|
596
|
-
// <x "xmlns"="http://foo">
|
|
597
|
-
if (attribute && name === 'xmlns') {
|
|
598
|
-
prefix = 'xmlns'
|
|
599
|
-
local = ''
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
return { prefix: prefix, local: local }
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
function attrib (parser) {
|
|
606
|
-
if (!parser.strict) {
|
|
607
|
-
parser.attribName = parser.attribName[parser.looseCase]()
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
if (parser.attribList.indexOf(parser.attribName) !== -1 ||
|
|
611
|
-
parser.tag.attributes.hasOwnProperty(parser.attribName)) {
|
|
612
|
-
parser.attribName = parser.attribValue = ''
|
|
613
|
-
return
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
if (parser.opt.xmlns) {
|
|
617
|
-
var qn = qname(parser.attribName, true)
|
|
618
|
-
var prefix = qn.prefix
|
|
619
|
-
var local = qn.local
|
|
620
|
-
|
|
621
|
-
if (prefix === 'xmlns') {
|
|
622
|
-
// namespace binding attribute. push the binding into scope
|
|
623
|
-
if (local === 'xml' && parser.attribValue !== XML_NAMESPACE) {
|
|
624
|
-
strictFail(parser,
|
|
625
|
-
'xml: prefix must be bound to ' + XML_NAMESPACE + '\n' +
|
|
626
|
-
'Actual: ' + parser.attribValue)
|
|
627
|
-
} else if (local === 'xmlns' && parser.attribValue !== XMLNS_NAMESPACE) {
|
|
628
|
-
strictFail(parser,
|
|
629
|
-
'xmlns: prefix must be bound to ' + XMLNS_NAMESPACE + '\n' +
|
|
630
|
-
'Actual: ' + parser.attribValue)
|
|
631
|
-
} else {
|
|
632
|
-
var tag = parser.tag
|
|
633
|
-
var parent = parser.tags[parser.tags.length - 1] || parser
|
|
634
|
-
if (tag.ns === parent.ns) {
|
|
635
|
-
tag.ns = Object.create(parent.ns)
|
|
636
|
-
}
|
|
637
|
-
tag.ns[local] = parser.attribValue
|
|
638
|
-
}
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
// defer onattribute events until all attributes have been seen
|
|
642
|
-
// so any new bindings can take effect. preserve attribute order
|
|
643
|
-
// so deferred events can be emitted in document order
|
|
644
|
-
parser.attribList.push([parser.attribName, parser.attribValue])
|
|
645
|
-
} else {
|
|
646
|
-
// in non-xmlns mode, we can emit the event right away
|
|
647
|
-
parser.tag.attributes[parser.attribName] = parser.attribValue
|
|
648
|
-
emitNode(parser, 'onattribute', {
|
|
649
|
-
name: parser.attribName,
|
|
650
|
-
value: parser.attribValue
|
|
651
|
-
})
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
parser.attribName = parser.attribValue = ''
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
function openTag (parser, selfClosing) {
|
|
658
|
-
if (parser.opt.xmlns) {
|
|
659
|
-
// emit namespace binding events
|
|
660
|
-
var tag = parser.tag
|
|
661
|
-
|
|
662
|
-
// add namespace info to tag
|
|
663
|
-
var qn = qname(parser.tagName)
|
|
664
|
-
tag.prefix = qn.prefix
|
|
665
|
-
tag.local = qn.local
|
|
666
|
-
tag.uri = tag.ns[qn.prefix] || ''
|
|
667
|
-
|
|
668
|
-
if (tag.prefix && !tag.uri) {
|
|
669
|
-
strictFail(parser, 'Unbound namespace prefix: ' +
|
|
670
|
-
JSON.stringify(parser.tagName))
|
|
671
|
-
tag.uri = qn.prefix
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
var parent = parser.tags[parser.tags.length - 1] || parser
|
|
675
|
-
if (tag.ns && parent.ns !== tag.ns) {
|
|
676
|
-
Object.keys(tag.ns).forEach(function (p) {
|
|
677
|
-
emitNode(parser, 'onopennamespace', {
|
|
678
|
-
prefix: p,
|
|
679
|
-
uri: tag.ns[p]
|
|
680
|
-
})
|
|
681
|
-
})
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
// handle deferred onattribute events
|
|
685
|
-
// Note: do not apply default ns to attributes:
|
|
686
|
-
// http://www.w3.org/TR/REC-xml-names/#defaulting
|
|
687
|
-
for (var i = 0, l = parser.attribList.length; i < l; i++) {
|
|
688
|
-
var nv = parser.attribList[i]
|
|
689
|
-
var name = nv[0]
|
|
690
|
-
var value = nv[1]
|
|
691
|
-
var qualName = qname(name, true)
|
|
692
|
-
var prefix = qualName.prefix
|
|
693
|
-
var local = qualName.local
|
|
694
|
-
var uri = prefix === '' ? '' : (tag.ns[prefix] || '')
|
|
695
|
-
var a = {
|
|
696
|
-
name: name,
|
|
697
|
-
value: value,
|
|
698
|
-
prefix: prefix,
|
|
699
|
-
local: local,
|
|
700
|
-
uri: uri
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
// if there's any attributes with an undefined namespace,
|
|
704
|
-
// then fail on them now.
|
|
705
|
-
if (prefix && prefix !== 'xmlns' && !uri) {
|
|
706
|
-
strictFail(parser, 'Unbound namespace prefix: ' +
|
|
707
|
-
JSON.stringify(prefix))
|
|
708
|
-
a.uri = prefix
|
|
709
|
-
}
|
|
710
|
-
parser.tag.attributes[name] = a
|
|
711
|
-
emitNode(parser, 'onattribute', a)
|
|
712
|
-
}
|
|
713
|
-
parser.attribList.length = 0
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
parser.tag.isSelfClosing = !!selfClosing
|
|
717
|
-
|
|
718
|
-
// process the tag
|
|
719
|
-
parser.sawRoot = true
|
|
720
|
-
parser.tags.push(parser.tag)
|
|
721
|
-
emitNode(parser, 'onopentag', parser.tag)
|
|
722
|
-
if (!selfClosing) {
|
|
723
|
-
// special case for <script> in non-strict mode.
|
|
724
|
-
if (!parser.noscript && parser.tagName.toLowerCase() === 'script') {
|
|
725
|
-
parser.state = S.SCRIPT
|
|
726
|
-
} else {
|
|
727
|
-
parser.state = S.TEXT
|
|
728
|
-
}
|
|
729
|
-
parser.tag = null
|
|
730
|
-
parser.tagName = ''
|
|
731
|
-
}
|
|
732
|
-
parser.attribName = parser.attribValue = ''
|
|
733
|
-
parser.attribList.length = 0
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
function closeTag (parser) {
|
|
737
|
-
if (!parser.tagName) {
|
|
738
|
-
strictFail(parser, 'Weird empty close tag.')
|
|
739
|
-
parser.textNode += '</>'
|
|
740
|
-
parser.state = S.TEXT
|
|
741
|
-
return
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
if (parser.script) {
|
|
745
|
-
if (parser.tagName !== 'script') {
|
|
746
|
-
parser.script += '</' + parser.tagName + '>'
|
|
747
|
-
parser.tagName = ''
|
|
748
|
-
parser.state = S.SCRIPT
|
|
749
|
-
return
|
|
750
|
-
}
|
|
751
|
-
emitNode(parser, 'onscript', parser.script)
|
|
752
|
-
parser.script = ''
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
// first make sure that the closing tag actually exists.
|
|
756
|
-
// <a><b></c></b></a> will close everything, otherwise.
|
|
757
|
-
var t = parser.tags.length
|
|
758
|
-
var tagName = parser.tagName
|
|
759
|
-
if (!parser.strict) {
|
|
760
|
-
tagName = tagName[parser.looseCase]()
|
|
761
|
-
}
|
|
762
|
-
var closeTo = tagName
|
|
763
|
-
while (t--) {
|
|
764
|
-
var close = parser.tags[t]
|
|
765
|
-
if (close.name !== closeTo) {
|
|
766
|
-
// fail the first time in strict mode
|
|
767
|
-
strictFail(parser, 'Unexpected close tag')
|
|
768
|
-
} else {
|
|
769
|
-
break
|
|
770
|
-
}
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
// didn't find it. we already failed for strict, so just abort.
|
|
774
|
-
if (t < 0) {
|
|
775
|
-
strictFail(parser, 'Unmatched closing tag: ' + parser.tagName)
|
|
776
|
-
parser.textNode += '</' + parser.tagName + '>'
|
|
777
|
-
parser.state = S.TEXT
|
|
778
|
-
return
|
|
779
|
-
}
|
|
780
|
-
parser.tagName = tagName
|
|
781
|
-
var s = parser.tags.length
|
|
782
|
-
while (s-- > t) {
|
|
783
|
-
var tag = parser.tag = parser.tags.pop()
|
|
784
|
-
parser.tagName = parser.tag.name
|
|
785
|
-
emitNode(parser, 'onclosetag', parser.tagName)
|
|
786
|
-
|
|
787
|
-
var x = {}
|
|
788
|
-
for (var i in tag.ns) {
|
|
789
|
-
x[i] = tag.ns[i]
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
var parent = parser.tags[parser.tags.length - 1] || parser
|
|
793
|
-
if (parser.opt.xmlns && tag.ns !== parent.ns) {
|
|
794
|
-
// remove namespace bindings introduced by tag
|
|
795
|
-
Object.keys(tag.ns).forEach(function (p) {
|
|
796
|
-
var n = tag.ns[p]
|
|
797
|
-
emitNode(parser, 'onclosenamespace', { prefix: p, uri: n })
|
|
798
|
-
})
|
|
799
|
-
}
|
|
800
|
-
}
|
|
801
|
-
if (t === 0) parser.closedRoot = true
|
|
802
|
-
parser.tagName = parser.attribValue = parser.attribName = ''
|
|
803
|
-
parser.attribList.length = 0
|
|
804
|
-
parser.state = S.TEXT
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
function parseEntity (parser) {
|
|
808
|
-
var entity = parser.entity
|
|
809
|
-
var entityLC = entity.toLowerCase()
|
|
810
|
-
var num
|
|
811
|
-
var numStr = ''
|
|
812
|
-
|
|
813
|
-
if (parser.ENTITIES[entity]) {
|
|
814
|
-
return parser.ENTITIES[entity]
|
|
815
|
-
}
|
|
816
|
-
if (parser.ENTITIES[entityLC]) {
|
|
817
|
-
return parser.ENTITIES[entityLC]
|
|
818
|
-
}
|
|
819
|
-
entity = entityLC
|
|
820
|
-
if (entity.charAt(0) === '#') {
|
|
821
|
-
if (entity.charAt(1) === 'x') {
|
|
822
|
-
entity = entity.slice(2)
|
|
823
|
-
num = parseInt(entity, 16)
|
|
824
|
-
numStr = num.toString(16)
|
|
825
|
-
} else {
|
|
826
|
-
entity = entity.slice(1)
|
|
827
|
-
num = parseInt(entity, 10)
|
|
828
|
-
numStr = num.toString(10)
|
|
829
|
-
}
|
|
830
|
-
}
|
|
831
|
-
entity = entity.replace(/^0+/, '')
|
|
832
|
-
if (isNaN(num) || numStr.toLowerCase() !== entity) {
|
|
833
|
-
strictFail(parser, 'Invalid character entity')
|
|
834
|
-
return '&' + parser.entity + ';'
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
return String.fromCodePoint(num)
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
function beginWhiteSpace (parser, c) {
|
|
841
|
-
if (c === '<') {
|
|
842
|
-
parser.state = S.OPEN_WAKA
|
|
843
|
-
parser.startTagPosition = parser.position
|
|
844
|
-
} else if (!isWhitespace(c)) {
|
|
845
|
-
// have to process this as a text node.
|
|
846
|
-
// weird, but happens.
|
|
847
|
-
strictFail(parser, 'Non-whitespace before first tag.')
|
|
848
|
-
parser.textNode = c
|
|
849
|
-
parser.state = S.TEXT
|
|
850
|
-
}
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
function charAt (chunk, i) {
|
|
854
|
-
var result = ''
|
|
855
|
-
if (i < chunk.length) {
|
|
856
|
-
result = chunk.charAt(i)
|
|
857
|
-
}
|
|
858
|
-
return result
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
function write (chunk) {
|
|
862
|
-
var parser = this
|
|
863
|
-
if (this.error) {
|
|
864
|
-
throw this.error
|
|
865
|
-
}
|
|
866
|
-
if (parser.closed) {
|
|
867
|
-
return error(parser,
|
|
868
|
-
'Cannot write after close. Assign an onready handler.')
|
|
869
|
-
}
|
|
870
|
-
if (chunk === null) {
|
|
871
|
-
return end(parser)
|
|
872
|
-
}
|
|
873
|
-
if (typeof chunk === 'object') {
|
|
874
|
-
chunk = chunk.toString()
|
|
875
|
-
}
|
|
876
|
-
var i = 0
|
|
877
|
-
var c = ''
|
|
878
|
-
while (true) {
|
|
879
|
-
c = charAt(chunk, i++)
|
|
880
|
-
parser.c = c
|
|
881
|
-
|
|
882
|
-
if (!c) {
|
|
883
|
-
break
|
|
884
|
-
}
|
|
885
|
-
|
|
886
|
-
if (parser.trackPosition) {
|
|
887
|
-
parser.position++
|
|
888
|
-
if (c === '\n') {
|
|
889
|
-
parser.line++
|
|
890
|
-
parser.column = 0
|
|
891
|
-
} else {
|
|
892
|
-
parser.column++
|
|
893
|
-
}
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
switch (parser.state) {
|
|
897
|
-
case S.BEGIN:
|
|
898
|
-
parser.state = S.BEGIN_WHITESPACE
|
|
899
|
-
if (c === '\uFEFF') {
|
|
900
|
-
continue
|
|
901
|
-
}
|
|
902
|
-
beginWhiteSpace(parser, c)
|
|
903
|
-
continue
|
|
904
|
-
|
|
905
|
-
case S.BEGIN_WHITESPACE:
|
|
906
|
-
beginWhiteSpace(parser, c)
|
|
907
|
-
continue
|
|
908
|
-
|
|
909
|
-
case S.TEXT:
|
|
910
|
-
if (parser.sawRoot && !parser.closedRoot) {
|
|
911
|
-
var starti = i - 1
|
|
912
|
-
while (c && c !== '<' && c !== '&') {
|
|
913
|
-
c = charAt(chunk, i++)
|
|
914
|
-
if (c && parser.trackPosition) {
|
|
915
|
-
parser.position++
|
|
916
|
-
if (c === '\n') {
|
|
917
|
-
parser.line++
|
|
918
|
-
parser.column = 0
|
|
919
|
-
} else {
|
|
920
|
-
parser.column++
|
|
921
|
-
}
|
|
922
|
-
}
|
|
923
|
-
}
|
|
924
|
-
parser.textNode += chunk.substring(starti, i - 1)
|
|
925
|
-
}
|
|
926
|
-
if (c === '<' && !(parser.sawRoot && parser.closedRoot && !parser.strict)) {
|
|
927
|
-
parser.state = S.OPEN_WAKA
|
|
928
|
-
parser.startTagPosition = parser.position
|
|
929
|
-
} else {
|
|
930
|
-
if (!isWhitespace(c) && (!parser.sawRoot || parser.closedRoot)) {
|
|
931
|
-
strictFail(parser, 'Text data outside of root node.')
|
|
932
|
-
}
|
|
933
|
-
if (c === '&') {
|
|
934
|
-
parser.state = S.TEXT_ENTITY
|
|
935
|
-
} else {
|
|
936
|
-
parser.textNode += c
|
|
937
|
-
}
|
|
938
|
-
}
|
|
939
|
-
continue
|
|
940
|
-
|
|
941
|
-
case S.SCRIPT:
|
|
942
|
-
// only non-strict
|
|
943
|
-
if (c === '<') {
|
|
944
|
-
parser.state = S.SCRIPT_ENDING
|
|
945
|
-
} else {
|
|
946
|
-
parser.script += c
|
|
947
|
-
}
|
|
948
|
-
continue
|
|
949
|
-
|
|
950
|
-
case S.SCRIPT_ENDING:
|
|
951
|
-
if (c === '/') {
|
|
952
|
-
parser.state = S.CLOSE_TAG
|
|
953
|
-
} else {
|
|
954
|
-
parser.script += '<' + c
|
|
955
|
-
parser.state = S.SCRIPT
|
|
956
|
-
}
|
|
957
|
-
continue
|
|
958
|
-
|
|
959
|
-
case S.OPEN_WAKA:
|
|
960
|
-
// either a /, ?, !, or text is coming next.
|
|
961
|
-
if (c === '!') {
|
|
962
|
-
parser.state = S.SGML_DECL
|
|
963
|
-
parser.sgmlDecl = ''
|
|
964
|
-
} else if (isWhitespace(c)) {
|
|
965
|
-
// wait for it...
|
|
966
|
-
} else if (isMatch(nameStart, c)) {
|
|
967
|
-
parser.state = S.OPEN_TAG
|
|
968
|
-
parser.tagName = c
|
|
969
|
-
} else if (c === '/') {
|
|
970
|
-
parser.state = S.CLOSE_TAG
|
|
971
|
-
parser.tagName = ''
|
|
972
|
-
} else if (c === '?') {
|
|
973
|
-
parser.state = S.PROC_INST
|
|
974
|
-
parser.procInstName = parser.procInstBody = ''
|
|
975
|
-
} else {
|
|
976
|
-
strictFail(parser, 'Unencoded <')
|
|
977
|
-
// if there was some whitespace, then add that in.
|
|
978
|
-
if (parser.startTagPosition + 1 < parser.position) {
|
|
979
|
-
var pad = parser.position - parser.startTagPosition
|
|
980
|
-
c = new Array(pad).join(' ') + c
|
|
981
|
-
}
|
|
982
|
-
parser.textNode += '<' + c
|
|
983
|
-
parser.state = S.TEXT
|
|
984
|
-
}
|
|
985
|
-
continue
|
|
986
|
-
|
|
987
|
-
case S.SGML_DECL:
|
|
988
|
-
if ((parser.sgmlDecl + c).toUpperCase() === CDATA) {
|
|
989
|
-
emitNode(parser, 'onopencdata')
|
|
990
|
-
parser.state = S.CDATA
|
|
991
|
-
parser.sgmlDecl = ''
|
|
992
|
-
parser.cdata = ''
|
|
993
|
-
} else if (parser.sgmlDecl + c === '--') {
|
|
994
|
-
parser.state = S.COMMENT
|
|
995
|
-
parser.comment = ''
|
|
996
|
-
parser.sgmlDecl = ''
|
|
997
|
-
} else if ((parser.sgmlDecl + c).toUpperCase() === DOCTYPE) {
|
|
998
|
-
parser.state = S.DOCTYPE
|
|
999
|
-
if (parser.doctype || parser.sawRoot) {
|
|
1000
|
-
strictFail(parser,
|
|
1001
|
-
'Inappropriately located doctype declaration')
|
|
1002
|
-
}
|
|
1003
|
-
parser.doctype = ''
|
|
1004
|
-
parser.sgmlDecl = ''
|
|
1005
|
-
} else if (c === '>') {
|
|
1006
|
-
emitNode(parser, 'onsgmldeclaration', parser.sgmlDecl)
|
|
1007
|
-
parser.sgmlDecl = ''
|
|
1008
|
-
parser.state = S.TEXT
|
|
1009
|
-
} else if (isQuote(c)) {
|
|
1010
|
-
parser.state = S.SGML_DECL_QUOTED
|
|
1011
|
-
parser.sgmlDecl += c
|
|
1012
|
-
} else {
|
|
1013
|
-
parser.sgmlDecl += c
|
|
1014
|
-
}
|
|
1015
|
-
continue
|
|
1016
|
-
|
|
1017
|
-
case S.SGML_DECL_QUOTED:
|
|
1018
|
-
if (c === parser.q) {
|
|
1019
|
-
parser.state = S.SGML_DECL
|
|
1020
|
-
parser.q = ''
|
|
1021
|
-
}
|
|
1022
|
-
parser.sgmlDecl += c
|
|
1023
|
-
continue
|
|
1024
|
-
|
|
1025
|
-
case S.DOCTYPE:
|
|
1026
|
-
if (c === '>') {
|
|
1027
|
-
parser.state = S.TEXT
|
|
1028
|
-
emitNode(parser, 'ondoctype', parser.doctype)
|
|
1029
|
-
parser.doctype = true // just remember that we saw it.
|
|
1030
|
-
} else {
|
|
1031
|
-
parser.doctype += c
|
|
1032
|
-
if (c === '[') {
|
|
1033
|
-
parser.state = S.DOCTYPE_DTD
|
|
1034
|
-
} else if (isQuote(c)) {
|
|
1035
|
-
parser.state = S.DOCTYPE_QUOTED
|
|
1036
|
-
parser.q = c
|
|
1037
|
-
}
|
|
1038
|
-
}
|
|
1039
|
-
continue
|
|
1040
|
-
|
|
1041
|
-
case S.DOCTYPE_QUOTED:
|
|
1042
|
-
parser.doctype += c
|
|
1043
|
-
if (c === parser.q) {
|
|
1044
|
-
parser.q = ''
|
|
1045
|
-
parser.state = S.DOCTYPE
|
|
1046
|
-
}
|
|
1047
|
-
continue
|
|
1048
|
-
|
|
1049
|
-
case S.DOCTYPE_DTD:
|
|
1050
|
-
parser.doctype += c
|
|
1051
|
-
if (c === ']') {
|
|
1052
|
-
parser.state = S.DOCTYPE
|
|
1053
|
-
} else if (isQuote(c)) {
|
|
1054
|
-
parser.state = S.DOCTYPE_DTD_QUOTED
|
|
1055
|
-
parser.q = c
|
|
1056
|
-
}
|
|
1057
|
-
continue
|
|
1058
|
-
|
|
1059
|
-
case S.DOCTYPE_DTD_QUOTED:
|
|
1060
|
-
parser.doctype += c
|
|
1061
|
-
if (c === parser.q) {
|
|
1062
|
-
parser.state = S.DOCTYPE_DTD
|
|
1063
|
-
parser.q = ''
|
|
1064
|
-
}
|
|
1065
|
-
continue
|
|
1066
|
-
|
|
1067
|
-
case S.COMMENT:
|
|
1068
|
-
if (c === '-') {
|
|
1069
|
-
parser.state = S.COMMENT_ENDING
|
|
1070
|
-
} else {
|
|
1071
|
-
parser.comment += c
|
|
1072
|
-
}
|
|
1073
|
-
continue
|
|
1074
|
-
|
|
1075
|
-
case S.COMMENT_ENDING:
|
|
1076
|
-
if (c === '-') {
|
|
1077
|
-
parser.state = S.COMMENT_ENDED
|
|
1078
|
-
parser.comment = textopts(parser.opt, parser.comment)
|
|
1079
|
-
if (parser.comment) {
|
|
1080
|
-
emitNode(parser, 'oncomment', parser.comment)
|
|
1081
|
-
}
|
|
1082
|
-
parser.comment = ''
|
|
1083
|
-
} else {
|
|
1084
|
-
parser.comment += '-' + c
|
|
1085
|
-
parser.state = S.COMMENT
|
|
1086
|
-
}
|
|
1087
|
-
continue
|
|
1088
|
-
|
|
1089
|
-
case S.COMMENT_ENDED:
|
|
1090
|
-
if (c !== '>') {
|
|
1091
|
-
strictFail(parser, 'Malformed comment')
|
|
1092
|
-
// allow <!-- blah -- bloo --> in non-strict mode,
|
|
1093
|
-
// which is a comment of " blah -- bloo "
|
|
1094
|
-
parser.comment += '--' + c
|
|
1095
|
-
parser.state = S.COMMENT
|
|
1096
|
-
} else {
|
|
1097
|
-
parser.state = S.TEXT
|
|
1098
|
-
}
|
|
1099
|
-
continue
|
|
1100
|
-
|
|
1101
|
-
case S.CDATA:
|
|
1102
|
-
if (c === ']') {
|
|
1103
|
-
parser.state = S.CDATA_ENDING
|
|
1104
|
-
} else {
|
|
1105
|
-
parser.cdata += c
|
|
1106
|
-
}
|
|
1107
|
-
continue
|
|
1108
|
-
|
|
1109
|
-
case S.CDATA_ENDING:
|
|
1110
|
-
if (c === ']') {
|
|
1111
|
-
parser.state = S.CDATA_ENDING_2
|
|
1112
|
-
} else {
|
|
1113
|
-
parser.cdata += ']' + c
|
|
1114
|
-
parser.state = S.CDATA
|
|
1115
|
-
}
|
|
1116
|
-
continue
|
|
1117
|
-
|
|
1118
|
-
case S.CDATA_ENDING_2:
|
|
1119
|
-
if (c === '>') {
|
|
1120
|
-
if (parser.cdata) {
|
|
1121
|
-
emitNode(parser, 'oncdata', parser.cdata)
|
|
1122
|
-
}
|
|
1123
|
-
emitNode(parser, 'onclosecdata')
|
|
1124
|
-
parser.cdata = ''
|
|
1125
|
-
parser.state = S.TEXT
|
|
1126
|
-
} else if (c === ']') {
|
|
1127
|
-
parser.cdata += ']'
|
|
1128
|
-
} else {
|
|
1129
|
-
parser.cdata += ']]' + c
|
|
1130
|
-
parser.state = S.CDATA
|
|
1131
|
-
}
|
|
1132
|
-
continue
|
|
1133
|
-
|
|
1134
|
-
case S.PROC_INST:
|
|
1135
|
-
if (c === '?') {
|
|
1136
|
-
parser.state = S.PROC_INST_ENDING
|
|
1137
|
-
} else if (isWhitespace(c)) {
|
|
1138
|
-
parser.state = S.PROC_INST_BODY
|
|
1139
|
-
} else {
|
|
1140
|
-
parser.procInstName += c
|
|
1141
|
-
}
|
|
1142
|
-
continue
|
|
1143
|
-
|
|
1144
|
-
case S.PROC_INST_BODY:
|
|
1145
|
-
if (!parser.procInstBody && isWhitespace(c)) {
|
|
1146
|
-
continue
|
|
1147
|
-
} else if (c === '?') {
|
|
1148
|
-
parser.state = S.PROC_INST_ENDING
|
|
1149
|
-
} else {
|
|
1150
|
-
parser.procInstBody += c
|
|
1151
|
-
}
|
|
1152
|
-
continue
|
|
1153
|
-
|
|
1154
|
-
case S.PROC_INST_ENDING:
|
|
1155
|
-
if (c === '>') {
|
|
1156
|
-
emitNode(parser, 'onprocessinginstruction', {
|
|
1157
|
-
name: parser.procInstName,
|
|
1158
|
-
body: parser.procInstBody
|
|
1159
|
-
})
|
|
1160
|
-
parser.procInstName = parser.procInstBody = ''
|
|
1161
|
-
parser.state = S.TEXT
|
|
1162
|
-
} else {
|
|
1163
|
-
parser.procInstBody += '?' + c
|
|
1164
|
-
parser.state = S.PROC_INST_BODY
|
|
1165
|
-
}
|
|
1166
|
-
continue
|
|
1167
|
-
|
|
1168
|
-
case S.OPEN_TAG:
|
|
1169
|
-
if (isMatch(nameBody, c)) {
|
|
1170
|
-
parser.tagName += c
|
|
1171
|
-
} else {
|
|
1172
|
-
newTag(parser)
|
|
1173
|
-
if (c === '>') {
|
|
1174
|
-
openTag(parser)
|
|
1175
|
-
} else if (c === '/') {
|
|
1176
|
-
parser.state = S.OPEN_TAG_SLASH
|
|
1177
|
-
} else {
|
|
1178
|
-
if (!isWhitespace(c)) {
|
|
1179
|
-
strictFail(parser, 'Invalid character in tag name')
|
|
1180
|
-
}
|
|
1181
|
-
parser.state = S.ATTRIB
|
|
1182
|
-
}
|
|
1183
|
-
}
|
|
1184
|
-
continue
|
|
1185
|
-
|
|
1186
|
-
case S.OPEN_TAG_SLASH:
|
|
1187
|
-
if (c === '>') {
|
|
1188
|
-
openTag(parser, true)
|
|
1189
|
-
closeTag(parser)
|
|
1190
|
-
} else {
|
|
1191
|
-
strictFail(parser, 'Forward-slash in opening tag not followed by >')
|
|
1192
|
-
parser.state = S.ATTRIB
|
|
1193
|
-
}
|
|
1194
|
-
continue
|
|
1195
|
-
|
|
1196
|
-
case S.ATTRIB:
|
|
1197
|
-
// haven't read the attribute name yet.
|
|
1198
|
-
if (isWhitespace(c)) {
|
|
1199
|
-
continue
|
|
1200
|
-
} else if (c === '>') {
|
|
1201
|
-
openTag(parser)
|
|
1202
|
-
} else if (c === '/') {
|
|
1203
|
-
parser.state = S.OPEN_TAG_SLASH
|
|
1204
|
-
} else if (isMatch(nameStart, c)) {
|
|
1205
|
-
parser.attribName = c
|
|
1206
|
-
parser.attribValue = ''
|
|
1207
|
-
parser.state = S.ATTRIB_NAME
|
|
1208
|
-
} else {
|
|
1209
|
-
strictFail(parser, 'Invalid attribute name')
|
|
1210
|
-
}
|
|
1211
|
-
continue
|
|
1212
|
-
|
|
1213
|
-
case S.ATTRIB_NAME:
|
|
1214
|
-
if (c === '=') {
|
|
1215
|
-
parser.state = S.ATTRIB_VALUE
|
|
1216
|
-
} else if (c === '>') {
|
|
1217
|
-
strictFail(parser, 'Attribute without value')
|
|
1218
|
-
parser.attribValue = parser.attribName
|
|
1219
|
-
attrib(parser)
|
|
1220
|
-
openTag(parser)
|
|
1221
|
-
} else if (isWhitespace(c)) {
|
|
1222
|
-
parser.state = S.ATTRIB_NAME_SAW_WHITE
|
|
1223
|
-
} else if (isMatch(nameBody, c)) {
|
|
1224
|
-
parser.attribName += c
|
|
1225
|
-
} else {
|
|
1226
|
-
strictFail(parser, 'Invalid attribute name')
|
|
1227
|
-
}
|
|
1228
|
-
continue
|
|
1229
|
-
|
|
1230
|
-
case S.ATTRIB_NAME_SAW_WHITE:
|
|
1231
|
-
if (c === '=') {
|
|
1232
|
-
parser.state = S.ATTRIB_VALUE
|
|
1233
|
-
} else if (isWhitespace(c)) {
|
|
1234
|
-
continue
|
|
1235
|
-
} else {
|
|
1236
|
-
strictFail(parser, 'Attribute without value')
|
|
1237
|
-
parser.tag.attributes[parser.attribName] = ''
|
|
1238
|
-
parser.attribValue = ''
|
|
1239
|
-
emitNode(parser, 'onattribute', {
|
|
1240
|
-
name: parser.attribName,
|
|
1241
|
-
value: ''
|
|
1242
|
-
})
|
|
1243
|
-
parser.attribName = ''
|
|
1244
|
-
if (c === '>') {
|
|
1245
|
-
openTag(parser)
|
|
1246
|
-
} else if (isMatch(nameStart, c)) {
|
|
1247
|
-
parser.attribName = c
|
|
1248
|
-
parser.state = S.ATTRIB_NAME
|
|
1249
|
-
} else {
|
|
1250
|
-
strictFail(parser, 'Invalid attribute name')
|
|
1251
|
-
parser.state = S.ATTRIB
|
|
1252
|
-
}
|
|
1253
|
-
}
|
|
1254
|
-
continue
|
|
1255
|
-
|
|
1256
|
-
case S.ATTRIB_VALUE:
|
|
1257
|
-
if (isWhitespace(c)) {
|
|
1258
|
-
continue
|
|
1259
|
-
} else if (isQuote(c)) {
|
|
1260
|
-
parser.q = c
|
|
1261
|
-
parser.state = S.ATTRIB_VALUE_QUOTED
|
|
1262
|
-
} else {
|
|
1263
|
-
strictFail(parser, 'Unquoted attribute value')
|
|
1264
|
-
parser.state = S.ATTRIB_VALUE_UNQUOTED
|
|
1265
|
-
parser.attribValue = c
|
|
1266
|
-
}
|
|
1267
|
-
continue
|
|
1268
|
-
|
|
1269
|
-
case S.ATTRIB_VALUE_QUOTED:
|
|
1270
|
-
if (c !== parser.q) {
|
|
1271
|
-
if (c === '&') {
|
|
1272
|
-
parser.state = S.ATTRIB_VALUE_ENTITY_Q
|
|
1273
|
-
} else {
|
|
1274
|
-
parser.attribValue += c
|
|
1275
|
-
}
|
|
1276
|
-
continue
|
|
1277
|
-
}
|
|
1278
|
-
attrib(parser)
|
|
1279
|
-
parser.q = ''
|
|
1280
|
-
parser.state = S.ATTRIB_VALUE_CLOSED
|
|
1281
|
-
continue
|
|
1282
|
-
|
|
1283
|
-
case S.ATTRIB_VALUE_CLOSED:
|
|
1284
|
-
if (isWhitespace(c)) {
|
|
1285
|
-
parser.state = S.ATTRIB
|
|
1286
|
-
} else if (c === '>') {
|
|
1287
|
-
openTag(parser)
|
|
1288
|
-
} else if (c === '/') {
|
|
1289
|
-
parser.state = S.OPEN_TAG_SLASH
|
|
1290
|
-
} else if (isMatch(nameStart, c)) {
|
|
1291
|
-
strictFail(parser, 'No whitespace between attributes')
|
|
1292
|
-
parser.attribName = c
|
|
1293
|
-
parser.attribValue = ''
|
|
1294
|
-
parser.state = S.ATTRIB_NAME
|
|
1295
|
-
} else {
|
|
1296
|
-
strictFail(parser, 'Invalid attribute name')
|
|
1297
|
-
}
|
|
1298
|
-
continue
|
|
1299
|
-
|
|
1300
|
-
case S.ATTRIB_VALUE_UNQUOTED:
|
|
1301
|
-
if (!isAttribEnd(c)) {
|
|
1302
|
-
if (c === '&') {
|
|
1303
|
-
parser.state = S.ATTRIB_VALUE_ENTITY_U
|
|
1304
|
-
} else {
|
|
1305
|
-
parser.attribValue += c
|
|
1306
|
-
}
|
|
1307
|
-
continue
|
|
1308
|
-
}
|
|
1309
|
-
attrib(parser)
|
|
1310
|
-
if (c === '>') {
|
|
1311
|
-
openTag(parser)
|
|
1312
|
-
} else {
|
|
1313
|
-
parser.state = S.ATTRIB
|
|
1314
|
-
}
|
|
1315
|
-
continue
|
|
1316
|
-
|
|
1317
|
-
case S.CLOSE_TAG:
|
|
1318
|
-
if (!parser.tagName) {
|
|
1319
|
-
if (isWhitespace(c)) {
|
|
1320
|
-
continue
|
|
1321
|
-
} else if (notMatch(nameStart, c)) {
|
|
1322
|
-
if (parser.script) {
|
|
1323
|
-
parser.script += '</' + c
|
|
1324
|
-
parser.state = S.SCRIPT
|
|
1325
|
-
} else {
|
|
1326
|
-
strictFail(parser, 'Invalid tagname in closing tag.')
|
|
1327
|
-
}
|
|
1328
|
-
} else {
|
|
1329
|
-
parser.tagName = c
|
|
1330
|
-
}
|
|
1331
|
-
} else if (c === '>') {
|
|
1332
|
-
closeTag(parser)
|
|
1333
|
-
} else if (isMatch(nameBody, c)) {
|
|
1334
|
-
parser.tagName += c
|
|
1335
|
-
} else if (parser.script) {
|
|
1336
|
-
parser.script += '</' + parser.tagName
|
|
1337
|
-
parser.tagName = ''
|
|
1338
|
-
parser.state = S.SCRIPT
|
|
1339
|
-
} else {
|
|
1340
|
-
if (!isWhitespace(c)) {
|
|
1341
|
-
strictFail(parser, 'Invalid tagname in closing tag')
|
|
1342
|
-
}
|
|
1343
|
-
parser.state = S.CLOSE_TAG_SAW_WHITE
|
|
1344
|
-
}
|
|
1345
|
-
continue
|
|
1346
|
-
|
|
1347
|
-
case S.CLOSE_TAG_SAW_WHITE:
|
|
1348
|
-
if (isWhitespace(c)) {
|
|
1349
|
-
continue
|
|
1350
|
-
}
|
|
1351
|
-
if (c === '>') {
|
|
1352
|
-
closeTag(parser)
|
|
1353
|
-
} else {
|
|
1354
|
-
strictFail(parser, 'Invalid characters in closing tag')
|
|
1355
|
-
}
|
|
1356
|
-
continue
|
|
1357
|
-
|
|
1358
|
-
case S.TEXT_ENTITY:
|
|
1359
|
-
case S.ATTRIB_VALUE_ENTITY_Q:
|
|
1360
|
-
case S.ATTRIB_VALUE_ENTITY_U:
|
|
1361
|
-
var returnState
|
|
1362
|
-
var buffer
|
|
1363
|
-
switch (parser.state) {
|
|
1364
|
-
case S.TEXT_ENTITY:
|
|
1365
|
-
returnState = S.TEXT
|
|
1366
|
-
buffer = 'textNode'
|
|
1367
|
-
break
|
|
1368
|
-
|
|
1369
|
-
case S.ATTRIB_VALUE_ENTITY_Q:
|
|
1370
|
-
returnState = S.ATTRIB_VALUE_QUOTED
|
|
1371
|
-
buffer = 'attribValue'
|
|
1372
|
-
break
|
|
1373
|
-
|
|
1374
|
-
case S.ATTRIB_VALUE_ENTITY_U:
|
|
1375
|
-
returnState = S.ATTRIB_VALUE_UNQUOTED
|
|
1376
|
-
buffer = 'attribValue'
|
|
1377
|
-
break
|
|
1378
|
-
}
|
|
1379
|
-
|
|
1380
|
-
if (c === ';') {
|
|
1381
|
-
var parsedEntity = parseEntity(parser)
|
|
1382
|
-
|
|
1383
|
-
// Custom entities can contain tags, so we potentially need to parse the result
|
|
1384
|
-
if (parser.state === S.TEXT_ENTITY && !sax.ENTITIES[parser.entity] && parsedEntity !== '&' + parser.entity + ';') {
|
|
1385
|
-
chunk = chunk.slice(0, i) + parsedEntity + chunk.slice(i)
|
|
1386
|
-
} else {
|
|
1387
|
-
parser[buffer] += parsedEntity
|
|
1388
|
-
}
|
|
1389
|
-
|
|
1390
|
-
parser.entity = ''
|
|
1391
|
-
parser.state = returnState
|
|
1392
|
-
} else if (isMatch(parser.entity.length ? entityBody : entityStart, c)) {
|
|
1393
|
-
parser.entity += c
|
|
1394
|
-
} else {
|
|
1395
|
-
strictFail(parser, 'Invalid character in entity name')
|
|
1396
|
-
parser[buffer] += '&' + parser.entity + c
|
|
1397
|
-
parser.entity = ''
|
|
1398
|
-
parser.state = returnState
|
|
1399
|
-
}
|
|
1400
|
-
|
|
1401
|
-
continue
|
|
1402
|
-
|
|
1403
|
-
default:
|
|
1404
|
-
throw new Error(parser, 'Unknown state: ' + parser.state)
|
|
1405
|
-
}
|
|
1406
|
-
} // while
|
|
1407
|
-
|
|
1408
|
-
if (parser.position >= parser.bufferCheckPosition) {
|
|
1409
|
-
checkBufferLength(parser)
|
|
1410
|
-
}
|
|
1411
|
-
return parser
|
|
1412
|
-
}
|
|
1413
|
-
})(typeof exports === 'undefined' ? this.sax = {} : exports)
|