@peak-ai/canvas 1.3.15 → 1.3.16
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/.babelrc +14 -0
- package/.eslintignore +5 -0
- package/.eslintrc.js +29 -0
- package/dist/package.json +58 -0
- package/{plugins → dist/plugins}/helpers/render-components.js +1 -5
- package/dist/plugins/helpers/render-components.js.map +1 -0
- package/{shadcn → dist/shadcn}/components/ui/chart.js +1 -1
- package/dist/shadcn/components/ui/chart.js.map +1 -0
- package/dist/shadcn/components/ui/filter.js +3 -0
- package/dist/shadcn/components/ui/filter.js.map +1 -0
- package/{shadcn → dist/shadcn}/components/ui/search.js +1 -1
- package/dist/shadcn/components/ui/search.js.map +1 -0
- package/package.json +45 -7
- package/scripts/build.ts +64 -0
- package/src/GrapesjsCanvas.tsx +280 -0
- package/src/constants/index.ts +27 -0
- package/src/helpers/css.ts +2371 -0
- package/src/helpers/date-picker.ts +807 -0
- package/src/helpers/index.ts +13 -0
- package/src/helpers/merge-json.ts +106 -0
- package/src/index.styles.ts +58 -0
- package/src/index.ts +3 -0
- package/src/plugins/grapejs-plugin.tsx +139 -0
- package/src/plugins/helpers/extra.tsx +151 -0
- package/src/plugins/helpers/render-components.tsx +1103 -0
- package/src/public/canvas.css +42 -0
- package/src/public/output.css +2195 -0
- package/src/shadcn/components/ui/button.tsx +103 -0
- package/src/shadcn/components/ui/card.tsx +92 -0
- package/src/shadcn/components/ui/chart.tsx +324 -0
- package/src/shadcn/components/ui/checkbox.tsx +27 -0
- package/src/shadcn/components/ui/date-filter.tsx +816 -0
- package/src/shadcn/components/ui/filter.tsx +355 -0
- package/src/shadcn/components/ui/hover-card.tsx +36 -0
- package/src/shadcn/components/ui/input.tsx +20 -0
- package/src/shadcn/components/ui/label.tsx +24 -0
- package/src/shadcn/components/ui/pagination.tsx +213 -0
- package/src/shadcn/components/ui/scroll-area.tsx +59 -0
- package/src/shadcn/components/ui/search.tsx +149 -0
- package/src/shadcn/components/ui/separator.tsx +26 -0
- package/src/shadcn/components/ui/skeleton.tsx +69 -0
- package/src/shadcn/components/ui/table.tsx +196 -0
- package/src/shadcn/components/ui/tabs.tsx +55 -0
- package/src/shadcn/components/ui/textarea.tsx +18 -0
- package/src/shadcn/components/ui/tooltip.tsx +87 -0
- package/src/shadcn/utils.ts +6 -0
- package/src/types/grapesjs-tailwind.d.ts +50 -0
- package/tailwind.config.js +5 -0
- package/tooling/tailwind-compiler/index.js +53 -0
- package/tooling/tailwind-compiler/node_modules/.yarn-integrity +37 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/cascade-layer-name-parser/CHANGELOG.md +10 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/cascade-layer-name-parser/LICENSE.md +20 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/cascade-layer-name-parser/README.md +32 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/cascade-layer-name-parser/dist/index.cjs +1 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/cascade-layer-name-parser/dist/index.d.ts +35 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/cascade-layer-name-parser/dist/index.mjs +1 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/cascade-layer-name-parser/package.json +67 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-parser-algorithms/CHANGELOG.md +9 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-parser-algorithms/LICENSE.md +20 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-parser-algorithms/README.md +119 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-parser-algorithms/dist/index.cjs +1 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-parser-algorithms/dist/index.d.ts +604 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-parser-algorithms/dist/index.mjs +1 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-parser-algorithms/package.json +65 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-tokenizer/CHANGELOG.md +9 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-tokenizer/LICENSE.md +20 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-tokenizer/README.md +111 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-tokenizer/dist/index.cjs +1 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-tokenizer/dist/index.d.ts +593 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-tokenizer/dist/index.mjs +1 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/css-tokenizer/package.json +62 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/utilities/CHANGELOG.md +9 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/utilities/LICENSE.md +18 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/utilities/README.md +25 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/utilities/dist/index.cjs +1 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/utilities/dist/index.d.ts +24 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/utilities/dist/index.mjs +1 -0
- package/tooling/tailwind-compiler/node_modules/@csstools/utilities/package.json +66 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/LICENSE +20 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/README.md +66 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/bin/autoprefixer +22 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/data/prefixes.js +1136 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/at-rule.js +35 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/autoprefixer.d.ts +95 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/autoprefixer.js +164 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/brackets.js +51 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/browsers.js +79 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/declaration.js +187 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/align-content.js +49 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/align-items.js +46 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/align-self.js +56 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/animation.js +17 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/appearance.js +23 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/autofill.js +26 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/backdrop-filter.js +20 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/background-clip.js +24 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/background-size.js +23 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/block-logical.js +40 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/border-image.js +15 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/border-radius.js +40 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/break-props.js +63 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/cross-fade.js +35 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/display-flex.js +65 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/display-grid.js +21 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/file-selector-button.js +26 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/filter-value.js +14 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/filter.js +19 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/flex-basis.js +39 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/flex-direction.js +72 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/flex-flow.js +53 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/flex-grow.js +30 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/flex-shrink.js +39 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/flex-spec.js +19 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/flex-wrap.js +19 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/flex.js +54 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/fullscreen.js +20 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/gradient.js +448 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/grid-area.js +34 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/grid-column-align.js +28 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/grid-end.js +52 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/grid-row-align.js +28 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/grid-row-column.js +33 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/grid-rows-columns.js +125 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/grid-start.js +33 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/grid-template-areas.js +84 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/grid-template.js +69 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/grid-utils.js +1113 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/image-rendering.js +48 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/image-set.js +18 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/inline-logical.js +34 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/intrinsic.js +61 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/justify-content.js +54 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/mask-border.js +38 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/mask-composite.js +88 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/order.js +42 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/overscroll-behavior.js +33 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/pixelated.js +34 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/place-self.js +32 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/placeholder-shown.js +19 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/placeholder.js +33 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/print-color-adjust.js +25 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/text-decoration-skip-ink.js +23 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/text-decoration.js +25 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/text-emphasis-position.js +14 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/transform-decl.js +79 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/user-select.js +33 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/hacks/writing-mode.js +42 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/info.js +123 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/old-selector.js +67 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/old-value.js +22 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/prefixer.js +144 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/prefixes.js +428 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/processor.js +709 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/resolution.js +97 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/selector.js +150 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/supports.js +302 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/transition.js +329 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/utils.js +93 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/value.js +125 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/lib/vendor.js +14 -0
- package/tooling/tailwind-compiler/node_modules/autoprefixer/package.json +49 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/LICENSE +20 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/README.md +67 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/browser.js +54 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/cli.js +156 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/error.d.ts +7 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/error.js +12 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/index.d.ts +224 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/index.js +1235 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/node.js +469 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/package.json +44 -0
- package/tooling/tailwind-compiler/node_modules/browserslist/parse.js +78 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/LICENSE +395 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/README.md +6 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/agents.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/browserVersions.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/browsers.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/aac.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/apng.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/array-find.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/audio.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/av1.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/avif.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/beacon.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/bigint.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/border-image.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/brotli.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/calc.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/canvas.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/classlist.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/colr.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/console-time.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/const.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/cors.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/cross-document-view-transitions.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-all.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-anchor-positioning.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-has.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-module-scripts.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-table.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/customevent.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/datalist.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/dataset.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/datauri.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/decorators.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/details.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/dialog.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/download.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/eme.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/eot.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/es5.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/es6.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/fetch.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/filereader.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/flac.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/fontface.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/forms.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/heif.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/hevc.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/hidden.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/history.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/http2.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/http3.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/ime.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/imports.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/innertext.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-color.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-event.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-number.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-range.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-search.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/json.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/let.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mathml.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/menu.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/meter.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/midi.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mp3.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/notifications.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/object-values.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/ogv.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/online-status.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/opus.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/outline.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/path2d.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/picture.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/ping.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/pointer.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/portals.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/progress.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/promises.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/proximity.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/proxy.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/push-api.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/rellist.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/rem.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/ruby.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/run-in.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/script-async.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/sdch.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/selectlist.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/sni.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/spdy.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/srcset.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/stream.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/streams.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/svg.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/sxg.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/template.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/temporal.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/touch.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/ttf.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/u2f.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/url.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/vibration.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/video.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-bigint.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-extended-const.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-gc.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-multi-memory.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-multi-value.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-reference-types.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-signext.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-simd.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-tail-calls.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm-threads.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wasm.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wav.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/web-share.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webgl.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webhid.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webm.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webp.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/websockets.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webusb.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webvr.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/webxr.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/will-change.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/woff.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/woff2.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/word-break.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/zstd.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AD.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AF.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AI.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AL.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AS.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AT.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AU.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AW.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AX.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/AZ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BB.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BD.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BF.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BH.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BI.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BJ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BS.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BT.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BW.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BY.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/BZ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CD.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CF.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CH.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CI.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CK.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CL.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CU.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CV.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CX.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CY.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/CZ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/DE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/DJ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/DK.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/DM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/DO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/DZ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/EC.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/EE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/EG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/ER.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/ES.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/ET.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/FI.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/FJ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/FK.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/FM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/FO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/FR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GB.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GD.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GF.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GH.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GI.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GL.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GP.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GQ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GT.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GU.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GW.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/GY.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/HK.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/HN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/HR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/HT.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/HU.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/ID.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/IE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/IL.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/IM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/IN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/IQ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/IR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/IS.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/IT.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/JE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/JM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/JO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/JP.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KH.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KI.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KP.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KW.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KY.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/KZ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LB.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LC.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LI.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LK.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LS.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LT.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LU.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LV.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/LY.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MC.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MD.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/ME.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MH.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MK.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/ML.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MP.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MQ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MS.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MT.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MU.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MV.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MW.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MX.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MY.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/MZ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NC.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NF.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NI.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NL.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NP.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NU.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/NZ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/OM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PF.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PH.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PK.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PL.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PS.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PT.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PW.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/PY.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/QA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/RE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/RO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/RS.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/RU.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/RW.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SB.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SC.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SD.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SH.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SI.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SK.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SL.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/ST.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SV.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SY.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/SZ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TC.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TD.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TH.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TJ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TL.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TO.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TR.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TT.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TV.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TW.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/TZ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/UA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/UG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/US.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/UY.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/UZ.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/VA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/VC.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/VE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/VG.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/VI.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/VN.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/VU.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/WF.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/WS.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/YE.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/YT.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/ZA.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/ZM.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/ZW.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/alt-af.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/alt-an.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/alt-as.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/alt-na.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/dist/unpacker/feature.js +52 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
- package/tooling/tailwind-compiler/node_modules/caniuse-lite/package.json +34 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/LICENSE +5 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/README.md +186 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/chromium-versions.js +78 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/chromium-versions.json +1 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/full-chromium-versions.js +2396 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/full-chromium-versions.json +1 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/full-versions.js +1550 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/full-versions.json +1 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/index.js +36 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/package.json +44 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/versions.js +192 -0
- package/tooling/tailwind-compiler/node_modules/electron-to-chromium/versions.json +1 -0
- package/tooling/tailwind-compiler/node_modules/escalade/dist/index.js +22 -0
- package/tooling/tailwind-compiler/node_modules/escalade/dist/index.mjs +22 -0
- package/tooling/tailwind-compiler/node_modules/escalade/index.d.mts +11 -0
- package/tooling/tailwind-compiler/node_modules/escalade/index.d.ts +15 -0
- package/tooling/tailwind-compiler/node_modules/escalade/license +9 -0
- package/tooling/tailwind-compiler/node_modules/escalade/package.json +74 -0
- package/tooling/tailwind-compiler/node_modules/escalade/readme.md +211 -0
- package/tooling/tailwind-compiler/node_modules/escalade/sync/index.d.mts +9 -0
- package/tooling/tailwind-compiler/node_modules/escalade/sync/index.d.ts +13 -0
- package/tooling/tailwind-compiler/node_modules/escalade/sync/index.js +18 -0
- package/tooling/tailwind-compiler/node_modules/escalade/sync/index.mjs +18 -0
- package/tooling/tailwind-compiler/node_modules/fraction.js/LICENSE +21 -0
- package/tooling/tailwind-compiler/node_modules/fraction.js/README.md +466 -0
- package/tooling/tailwind-compiler/node_modules/fraction.js/bigfraction.js +899 -0
- package/tooling/tailwind-compiler/node_modules/fraction.js/fraction.cjs +904 -0
- package/tooling/tailwind-compiler/node_modules/fraction.js/fraction.d.ts +60 -0
- package/tooling/tailwind-compiler/node_modules/fraction.js/fraction.js +891 -0
- package/tooling/tailwind-compiler/node_modules/fraction.js/fraction.min.js +18 -0
- package/tooling/tailwind-compiler/node_modules/fraction.js/package.json +55 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/LICENSE +20 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/README.md +39 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/async/index.browser.cjs +69 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/async/index.browser.js +34 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/async/index.cjs +71 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/async/index.d.ts +56 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/async/index.js +35 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/async/index.native.js +26 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/async/package.json +12 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/index.browser.cjs +72 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/index.browser.js +34 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/index.cjs +85 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/index.d.cts +91 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/index.d.ts +91 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/index.js +45 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/nanoid.js +1 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/non-secure/index.cjs +34 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/non-secure/index.js +21 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/non-secure/package.json +6 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/package.json +89 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/url-alphabet/index.cjs +7 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/url-alphabet/index.js +3 -0
- package/tooling/tailwind-compiler/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/tooling/tailwind-compiler/node_modules/node-releases/LICENSE +21 -0
- package/tooling/tailwind-compiler/node_modules/node-releases/README.md +12 -0
- package/tooling/tailwind-compiler/node_modules/node-releases/data/processed/envs.json +1 -0
- package/tooling/tailwind-compiler/node_modules/node-releases/data/release-schedule/release-schedule.json +1 -0
- package/tooling/tailwind-compiler/node_modules/node-releases/package.json +22 -0
- package/tooling/tailwind-compiler/node_modules/normalize-range/index.js +54 -0
- package/tooling/tailwind-compiler/node_modules/normalize-range/license +21 -0
- package/tooling/tailwind-compiler/node_modules/normalize-range/package.json +46 -0
- package/tooling/tailwind-compiler/node_modules/normalize-range/readme.md +148 -0
- package/tooling/tailwind-compiler/node_modules/picocolors/LICENSE +15 -0
- package/tooling/tailwind-compiler/node_modules/picocolors/README.md +21 -0
- package/tooling/tailwind-compiler/node_modules/picocolors/package.json +25 -0
- package/tooling/tailwind-compiler/node_modules/picocolors/picocolors.browser.js +4 -0
- package/tooling/tailwind-compiler/node_modules/picocolors/picocolors.d.ts +5 -0
- package/tooling/tailwind-compiler/node_modules/picocolors/picocolors.js +75 -0
- package/tooling/tailwind-compiler/node_modules/picocolors/types.d.ts +51 -0
- package/tooling/tailwind-compiler/node_modules/postcss/LICENSE +20 -0
- package/tooling/tailwind-compiler/node_modules/postcss/README.md +28 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/at-rule.d.ts +140 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/at-rule.js +25 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/comment.d.ts +68 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/comment.js +13 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/container.d.ts +480 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/container.js +447 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/css-syntax-error.d.ts +248 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/css-syntax-error.js +133 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/declaration.d.ts +151 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/declaration.js +24 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/document.d.ts +69 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/document.js +33 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/fromJSON.js +54 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/input.d.ts +206 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/input.js +251 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/lazy-result.d.ts +190 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/lazy-result.js +550 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/list.d.ts +60 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/list.js +58 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/map-generator.js +368 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/no-work-result.d.ts +46 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/no-work-result.js +138 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/node.d.ts +541 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/node.js +434 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/parse.d.ts +9 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/parse.js +42 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/parser.js +611 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/postcss.d.mts +69 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/postcss.d.ts +458 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/postcss.js +101 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/postcss.mjs +30 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/previous-map.d.ts +81 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/previous-map.js +144 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/processor.d.ts +115 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/processor.js +67 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/result.d.ts +205 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/result.js +42 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/root.d.ts +87 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/root.js +61 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/rule.d.ts +126 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/rule.js +27 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/stringifier.d.ts +46 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/stringifier.js +353 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/stringify.d.ts +9 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/stringify.js +11 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/symbols.js +5 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/tokenize.js +266 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/warn-once.js +13 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/warning.d.ts +147 -0
- package/tooling/tailwind-compiler/node_modules/postcss/lib/warning.js +37 -0
- package/tooling/tailwind-compiler/node_modules/postcss/package.json +88 -0
- package/tooling/tailwind-compiler/node_modules/postcss-custom-properties/CHANGELOG.md +11 -0
- package/tooling/tailwind-compiler/node_modules/postcss-custom-properties/LICENSE.md +21 -0
- package/tooling/tailwind-compiler/node_modules/postcss-custom-properties/README.md +173 -0
- package/tooling/tailwind-compiler/node_modules/postcss-custom-properties/dist/index.cjs +1 -0
- package/tooling/tailwind-compiler/node_modules/postcss-custom-properties/dist/index.d.ts +12 -0
- package/tooling/tailwind-compiler/node_modules/postcss-custom-properties/dist/index.mjs +1 -0
- package/tooling/tailwind-compiler/node_modules/postcss-custom-properties/package.json +75 -0
- package/tooling/tailwind-compiler/node_modules/postcss-value-parser/LICENSE +22 -0
- package/tooling/tailwind-compiler/node_modules/postcss-value-parser/README.md +263 -0
- package/tooling/tailwind-compiler/node_modules/postcss-value-parser/lib/index.d.ts +177 -0
- package/tooling/tailwind-compiler/node_modules/postcss-value-parser/lib/index.js +28 -0
- package/tooling/tailwind-compiler/node_modules/postcss-value-parser/lib/parse.js +321 -0
- package/tooling/tailwind-compiler/node_modules/postcss-value-parser/lib/stringify.js +48 -0
- package/tooling/tailwind-compiler/node_modules/postcss-value-parser/lib/unit.js +120 -0
- package/tooling/tailwind-compiler/node_modules/postcss-value-parser/lib/walk.js +22 -0
- package/tooling/tailwind-compiler/node_modules/postcss-value-parser/package.json +58 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/LICENSE +28 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/README.md +765 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/array-set.js +121 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/base64.js +67 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/source-node.d.ts +1 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/source-node.js +413 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/lib/util.js +594 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/package.json +71 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/source-map.d.ts +104 -0
- package/tooling/tailwind-compiler/node_modules/source-map-js/source-map.js +8 -0
- package/tooling/tailwind-compiler/node_modules/update-browserslist-db/LICENSE +20 -0
- package/tooling/tailwind-compiler/node_modules/update-browserslist-db/README.md +22 -0
- package/tooling/tailwind-compiler/node_modules/update-browserslist-db/check-npm-version.js +17 -0
- package/tooling/tailwind-compiler/node_modules/update-browserslist-db/cli.js +42 -0
- package/tooling/tailwind-compiler/node_modules/update-browserslist-db/index.d.ts +6 -0
- package/tooling/tailwind-compiler/node_modules/update-browserslist-db/index.js +341 -0
- package/tooling/tailwind-compiler/node_modules/update-browserslist-db/package.json +40 -0
- package/tooling/tailwind-compiler/node_modules/update-browserslist-db/utils.js +25 -0
- package/tooling/tailwind-compiler/package.json +11 -0
- package/tooling/tailwind-compiler/yarn.lock +123 -0
- package/tsconfig.build.json +15 -0
- package/tsconfig.json +8 -0
- package/yarn-error.log +10314 -0
- package/plugins/helpers/render-components.js.map +0 -1
- package/shadcn/components/ui/chart.js.map +0 -1
- package/shadcn/components/ui/filter.js +0 -3
- package/shadcn/components/ui/filter.js.map +0 -1
- package/shadcn/components/ui/search.js.map +0 -1
- /package/{GrapesjsCanvas.d.ts → dist/GrapesjsCanvas.d.ts} +0 -0
- /package/{GrapesjsCanvas.js → dist/GrapesjsCanvas.js} +0 -0
- /package/{GrapesjsCanvas.js.map → dist/GrapesjsCanvas.js.map} +0 -0
- /package/{constants → dist/constants}/index.d.ts +0 -0
- /package/{constants → dist/constants}/index.js +0 -0
- /package/{constants → dist/constants}/index.js.map +0 -0
- /package/{helpers → dist/helpers}/css.d.ts +0 -0
- /package/{helpers → dist/helpers}/css.js +0 -0
- /package/{helpers → dist/helpers}/css.js.map +0 -0
- /package/{helpers → dist/helpers}/date-picker.d.ts +0 -0
- /package/{helpers → dist/helpers}/date-picker.js +0 -0
- /package/{helpers → dist/helpers}/date-picker.js.map +0 -0
- /package/{helpers → dist/helpers}/index.d.ts +0 -0
- /package/{helpers → dist/helpers}/index.js +0 -0
- /package/{helpers → dist/helpers}/index.js.map +0 -0
- /package/{helpers → dist/helpers}/merge-json.d.ts +0 -0
- /package/{helpers → dist/helpers}/merge-json.js +0 -0
- /package/{helpers → dist/helpers}/merge-json.js.map +0 -0
- /package/{index.d.ts → dist/index.d.ts} +0 -0
- /package/{index.js → dist/index.js} +0 -0
- /package/{index.js.map → dist/index.js.map} +0 -0
- /package/{index.styles.d.ts → dist/index.styles.d.ts} +0 -0
- /package/{index.styles.js → dist/index.styles.js} +0 -0
- /package/{index.styles.js.map → dist/index.styles.js.map} +0 -0
- /package/{plugins → dist/plugins}/grapejs-plugin.d.ts +0 -0
- /package/{plugins → dist/plugins}/grapejs-plugin.js +0 -0
- /package/{plugins → dist/plugins}/grapejs-plugin.js.map +0 -0
- /package/{plugins → dist/plugins}/helpers/extra.d.ts +0 -0
- /package/{plugins → dist/plugins}/helpers/extra.js +0 -0
- /package/{plugins → dist/plugins}/helpers/extra.js.map +0 -0
- /package/{plugins → dist/plugins}/helpers/render-components.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/button.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/button.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/button.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/card.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/card.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/card.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/chart.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/checkbox.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/checkbox.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/checkbox.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/date-filter.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/date-filter.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/date-filter.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/filter.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/hover-card.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/hover-card.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/hover-card.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/input.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/input.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/input.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/label.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/label.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/label.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/pagination.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/pagination.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/pagination.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/scroll-area.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/scroll-area.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/scroll-area.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/search.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/separator.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/separator.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/separator.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/skeleton.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/skeleton.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/skeleton.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/table.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/table.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/table.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/tabs.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/tabs.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/tabs.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/textarea.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/textarea.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/textarea.js.map +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/tooltip.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/tooltip.js +0 -0
- /package/{shadcn → dist/shadcn}/components/ui/tooltip.js.map +0 -0
- /package/{shadcn → dist/shadcn}/utils.d.ts +0 -0
- /package/{shadcn → dist/shadcn}/utils.js +0 -0
- /package/{shadcn → dist/shadcn}/utils.js.map +0 -0
- /package/{types → dist/types}/grapesjs-tailwind.d.js +0 -0
- /package/{types → dist/types}/grapesjs-tailwind.d.js.map +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 pC NC J RB K D E F A B C L M G N O P SB sC tC"},D:{"1":"0 9 kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB"},E:{"1":"A B C L M G UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F uC TC vC wC xC yC"},F:{"1":"0 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD","2":"J"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:6,C:"Arrow functions",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"L M G N O P","132":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","322":"C"},C:{"1":"0 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 pC NC J RB K D E F A B C L M G N O P SB sC tC"},D:{"2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB","132":"0 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"2":"F B C 6C 7C 8C 9C HC mC AD IC","132":"0 1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"2":"NC J ZD aD bD cD nC dD eD","132":"I"},J:{"2":"D A"},K:{"2":"A B C HC mC IC","132":"H"},L:{"132":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"132":"JC"},P:{"2":"J","132":"1 2 3 4 5 6 7 8 fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"132":"qD"},R:{"132":"rD"},S:{"1":"sD tD"}},B:6,C:"asm.js",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB sC tC","132":"0 9 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},D:{"1":"0 9 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B"},E:{"1":"M G zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A B C L uC TC vC wC xC yC UC HC IC"},F:{"1":"0 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD"},H:{"2":"YD"},I:{"2":"NC J ZD aD bD cD nC dD eD","260":"I"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"6 7 8","2":"J fD gD hD iD","260":"1 2 3 4 5 jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"2":"sD","132":"tD"}},B:5,C:"Asynchronous Clipboard API",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L","194":"M"},C:{"1":"0 9 rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB sC tC"},D:{"1":"0 9 uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},E:{"1":"B C L M G HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A uC TC vC wC xC yC","258":"UC"},F:{"1":"0 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID","258":"JD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 gD hD iD jD UC kD lD mD nD oD KC LC MC pD","2":"J fD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"tD","2":"sD"}},B:6,C:"Async functions",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"A B","2":"K D E F oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC sC tC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 1 2 3 4 5 6 7 8 B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 9C HC mC AD IC","2":"F 6C 7C","16":"8C"},G:{"1":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"1":"YD"},I:{"1":"NC J I ZD aD bD cD nC dD eD"},J:{"1":"D A"},K:{"1":"B C H HC mC IC","16":"A"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"Base64 encoding and decoding",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 pC NC J RB K D E F A B C L M G N O P SB sC tC"},D:{"1":"0 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"J RB K D E F A B C L","33":"1 2 3 4 5 6 7 8 M G N O P SB TB UB VB WB XB YB"},E:{"1":"G 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB uC TC vC","33":"K D E F A B C L M wC xC yC UC HC IC zC"},F:{"1":"0 3 4 5 6 7 8 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C 6C 7C 8C 9C HC mC AD IC","33":"1 2 G N O P SB"},G:{"1":"TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC CD","33":"E DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:2,C:"Web Audio API",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"F A B","2":"K D E oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC","132":"J RB K D E F A B C L M G N O P SB sC tC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 1 2 3 4 5 6 7 8 B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 8C 9C HC mC AD IC","2":"F","4":"6C 7C"},G:{"260":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"1":"NC J I bD cD nC dD eD","2":"ZD aD"},J:{"1":"D A"},K:{"1":"B C H HC mC IC","2":"A"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"Audio element",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"A B","2":"K D E F oC"},B:{"1":"C L M G N O P","322":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB sC tC","194":"0 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC"},D:{"2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","322":"0 9 kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"D E F A B C L M G wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K uC TC vC"},F:{"2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB 6C 7C 8C 9C HC mC AD IC","322":"0 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC CD DD"},H:{"2":"YD"},I:{"2":"NC J I ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"2":"A B C HC mC IC","322":"H"},L:{"322":"I"},M:{"2":"GC"},N:{"1":"A B"},O:{"322":"JC"},P:{"2":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"322":"qD"},R:{"322":"rD"},S:{"194":"sD tD"}},B:1,C:"Audio Tracks",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"A B","2":"K D E F oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC sC tC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"J"},E:{"1":"RB K D E F A B C L M G vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J uC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 6C 7C 8C 9C HC mC AD IC","2":"F"},G:{"2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"1":"NC J I cD nC dD eD","2":"ZD aD bD"},J:{"1":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"tD","2":"sD"}},B:1,C:"Autofocus attribute",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sC tC","129":"0 9 sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC"},D:{"1":"0 9 uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},E:{"1":"iC jC kC lC 5C","2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC"},F:{"1":"0 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD","2":"J"},Q:{"1":"qD"},R:{"1":"rD"},S:{"2":"sD tD"}},B:5,C:"Auxclick",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"0 9 C L M G N O z AB BB","194":"P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y"},C:{"1":"0 9 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB sC tC","66":"uB vB wB xB OC yB PC zB 0B 1B","260":"2B","516":"3B"},D:{"1":"0 9 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B","66":"4B 5B 6B"},E:{"2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C","1028":"LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB 6C 7C 8C 9C HC mC AD IC"},G:{"2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD","1028":"LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 lD mD nD oD KC LC MC pD","2":"J fD gD hD iD jD UC kD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"2":"sD tD"}},B:6,C:"AV1 video format",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w AB BB","4162":"0 x y z"},C:{"1":"0 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC sC tC","194":"EC FC Q H R QC S T U V W X Y Z a b","257":"c d e f g h i j k l m n o p q r s t","2049":"u v"},D:{"1":"0 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T"},E:{"1":"aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC","1796":"XC YC ZC"},F:{"1":"0 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 6C 7C 8C 9C HC mC AD IC"},G:{"1":"aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD","1281":"KC XC YC ZC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 nD oD KC LC MC pD","2":"J fD gD hD iD jD UC kD lD mD"},Q:{"2":"qD"},R:{"1":"rD"},S:{"2":"sD tD"}},B:6,C:"AVIF image format",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/background-attachment.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"F A B","132":"K D E oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","132":"1 2 3 4 5 pC NC J RB K D E F A B C L M G N O P SB sC tC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"RB K D E F A B C vC wC xC yC UC HC IC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","132":"J L uC TC zC","2050":"M G 0C 1C VC"},F:{"1":"0 1 2 3 4 5 6 7 8 B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 8C 9C HC mC AD IC","132":"F 6C 7C"},G:{"1":"WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC","772":"E CD DD ED FD GD HD ID JD KD LD MD ND","2050":"OD PD QD RD SD TD UD VC"},H:{"2":"YD"},I:{"2":"NC J I ZD aD bD dD eD","132":"cD nC"},J:{"260":"D A"},K:{"1":"B C H HC mC IC","132":"A"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"2":"J","1028":"1 2 3 4 5 6 7 8 fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:4,C:"CSS background-attachment",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/background-clip-text.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"G N O P","33":"C L M","129":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","161":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB"},C:{"1":"0 9 oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB sC tC"},D:{"129":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","161":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB"},E:{"2":"uC","129":"JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","388":"RB K D E F A B C L M G vC wC xC yC UC HC IC zC 0C 1C VC WC","420":"J TC"},F:{"2":"F B C 6C 7C 8C 9C HC mC AD IC","129":"0 p q r s t u v w x y z","161":"1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o"},G:{"129":"JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","388":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC"},H:{"2":"YD"},I:{"16":"NC ZD aD bD","129":"I","161":"J cD nC dD eD"},J:{"161":"D A"},K:{"16":"A B C HC mC IC","129":"H"},L:{"129":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"161":"JC"},P:{"1":"6 7 8","161":"1 2 3 4 5 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"161":"qD"},R:{"161":"rD"},S:{"1":"sD tD"}},B:7,C:"Background-clip: text",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/background-img-opts.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"F A B","2":"K D E oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC sC","36":"tC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","516":"J RB K D E F A B C L M"},E:{"1":"D E F A B C L M G xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","772":"J RB K uC TC vC wC"},F:{"1":"0 1 2 3 4 5 6 7 8 B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 8C 9C HC mC AD IC","2":"F 6C","36":"7C"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","4":"TC BD nC DD","516":"CD"},H:{"132":"YD"},I:{"1":"I dD eD","36":"ZD","516":"NC J cD nC","548":"aD bD"},J:{"1":"D A"},K:{"1":"A B C H HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:4,C:"CSS3 Background-image options",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/background-position-x-y.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"K D E F A B oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 9 oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB sC tC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C 6C 7C 8C 9C HC mC AD IC"},G:{"1":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"1":"NC J I ZD aD bD cD nC dD eD"},J:{"1":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"tD","2":"sD"}},B:7,C:"background-position-x & background-position-y",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"A B","2":"K D E oC","132":"F"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 9 oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB sC tC"},D:{"1":"0 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB"},E:{"1":"D E F A B C L M G xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K uC TC vC wC"},F:{"1":"0 1 2 3 4 5 6 7 8 B C SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 8C 9C HC mC AD IC","2":"F G N O P 6C 7C"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC CD DD"},H:{"1":"YD"},I:{"1":"I dD eD","2":"NC J ZD aD bD cD nC"},J:{"1":"A","2":"D"},K:{"1":"B C H HC mC IC","2":"A"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"tD","2":"sD"}},B:4,C:"CSS background-repeat round and space",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC sC tC","16":"SC qC rC"},D:{"1":"0 9 oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},E:{"2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB 6C 7C 8C 9C HC mC AD IC"},G:{"2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"2":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD","2":"J"},Q:{"1":"qD"},R:{"1":"rD"},S:{"2":"sD tD"}},B:7,C:"Background Sync API",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"1":"iB jB kB lB mB nB oB pB qB","2":"0 9 pC NC J RB K D E F rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC sC tC","132":"1 2 3 4 5 6 7 8 N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","164":"A B C L M G"},D:{"1":"0 9 dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB","66":"cB"},E:{"2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 6 7 8 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 F B C G N O P SB 6C 7C 8C 9C HC mC AD IC"},G:{"2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"2":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD","2":"tD"}},B:4,C:"Battery Status API",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L"},C:{"1":"0 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB sC tC"},D:{"1":"0 9 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"C L M G HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A B uC TC vC wC xC yC UC"},F:{"1":"0 7 8 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 F B C G N O P SB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:4,C:"Beacon API",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"K D E F A B","16":"oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC J RB sC tC"},D:{"1":"0 9 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB"},E:{"1":"L M G zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A B C uC TC vC wC xC yC UC HC IC"},F:{"1":"0 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND"},H:{"2":"YD"},I:{"2":"NC J I ZD aD bD cD nC dD eD"},J:{"16":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"16":"A B"},O:{"1":"JC"},P:{"2":"1 2 3 4 5 6 7 8 fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD","16":"J"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"Printing Events",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"1":"0 9 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B sC tC","194":"2B 3B 4B"},D:{"1":"0 9 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B"},E:{"1":"M G 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A B C L uC TC vC wC xC yC UC HC IC zC"},F:{"1":"0 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 jD UC kD lD mD nD oD KC LC MC pD","2":"J fD gD hD iD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"tD","2":"sD"}},B:6,C:"BigInt",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"A B","2":"K D E F oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC J RB sC tC","36":"K D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"J RB K D","36":"E F A B C L M G N O P SB"},E:{"1":"K D E F A B C L M G wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB uC TC vC"},F:{"1":"0 1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z IC","2":"F B C 6C 7C 8C 9C HC mC AD"},G:{"1":"E DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC CD"},H:{"2":"YD"},I:{"1":"I","2":"ZD aD bD","36":"NC J cD nC dD eD"},J:{"1":"A","2":"D"},K:{"1":"H IC","2":"A B C HC mC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:5,C:"Blob constructing",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F oC","129":"A B"},B:{"1":"0 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","129":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC sC tC"},D:{"1":"0 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"J RB K D","33":"1 2 3 E F A B C L M G N O P SB"},E:{"1":"D E F A B C L M G wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB uC TC vC","33":"K"},F:{"1":"0 1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C 6C 7C 8C 9C HC mC AD IC"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC CD","33":"DD"},H:{"2":"YD"},I:{"1":"I dD eD","2":"NC ZD aD bD","33":"J cD nC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"B","2":"A"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:5,C:"Blob URLs",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"B","2":"K D E F A oC"},B:{"1":"0 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","129":"C L"},C:{"1":"0 9 pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC","260":"1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB","804":"J RB K D E F A B C L M sC tC"},D:{"1":"0 9 vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","260":"qB rB sB tB uB","388":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB","1412":"1 2 3 4 5 6 7 8 G N O P SB TB UB","1956":"J RB K D E F A B C L M"},E:{"1":"WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","129":"A B C L M G yC UC HC IC zC 0C 1C VC","1412":"K D E F wC xC","1956":"J RB uC TC vC"},F:{"1":"0 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F 6C 7C","260":"dB eB fB gB hB","388":"1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB","1796":"8C 9C","1828":"B C HC mC AD IC"},G:{"1":"WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","129":"HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC","1412":"E DD ED FD GD","1956":"TC BD nC CD"},H:{"1828":"YD"},I:{"1":"I","388":"dD eD","1956":"NC J ZD aD bD cD nC"},J:{"1412":"A","1924":"D"},K:{"1":"H","2":"A","1828":"B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"B","2":"A"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 hD iD jD UC kD lD mD nD oD KC LC MC pD","260":"fD gD","388":"J"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"tD","260":"sD"}},B:4,C:"CSS3 Border images",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"F A B","2":"K D E oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 9 pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","257":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB","289":"NC sC tC","292":"pC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","33":"J"},E:{"1":"RB D E F A B C L M G xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","33":"J uC TC","129":"K vC wC"},F:{"1":"0 1 2 3 4 5 6 7 8 B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 8C 9C HC mC AD IC","2":"F 6C 7C"},G:{"1":"E BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","33":"TC"},H:{"2":"YD"},I:{"1":"NC J I aD bD cD nC dD eD","33":"ZD"},J:{"1":"D A"},K:{"1":"B C H HC mC IC","2":"A"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"tD","257":"sD"}},B:4,C:"CSS3 Border-radius (rounded corners)",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"1":"0 9 dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB sC tC"},D:{"1":"0 9 tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB"},E:{"1":"WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC"},F:{"1":"0 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 hD iD jD UC kD lD mD nD oD KC LC MC pD","2":"J fD gD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"BroadcastChannel",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M"},C:{"1":"0 9 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB sC tC"},D:{"1":"0 9 qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","194":"oB","257":"pB"},E:{"1":"L M G zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A uC TC vC wC xC yC UC","513":"B C HC IC"},F:{"1":"0 dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB 6C 7C 8C 9C HC mC AD IC","194":"bB cB"},G:{"1":"KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD","2":"J"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E oC","260":"F","516":"A B"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC sC tC","33":"J RB K D E F A B C L M G"},D:{"1":"0 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"J RB K D E F A B C L M G N O P","33":"1 2 3 4 5 6 SB"},E:{"1":"D E F A B C L M G wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB uC TC vC","33":"K"},F:{"1":"0 1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C 6C 7C 8C 9C HC mC AD IC"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC CD","33":"DD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC","132":"dD eD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:4,C:"calc() as CSS unit value",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC J RB K D E F A B C L M G N O P SB sC tC"},D:{"1":"0 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB"},E:{"1":"D E F A B C L M G wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K uC TC vC"},F:{"1":"0 1 2 3 4 5 6 7 8 O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C G N 6C 7C 8C 9C HC mC AD IC"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC CD DD"},H:{"2":"YD"},I:{"1":"I dD eD","2":"NC J ZD aD bD cD nC"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:4,C:"Canvas blend modes",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"F A B","2":"oC","8":"K D E"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC sC tC","8":"pC NC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"J RB K D E F A B C L M G vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","8":"uC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 8C 9C HC mC AD IC","8":"F 6C 7C"},G:{"1":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"1":"NC J I ZD aD bD cD nC dD eD"},J:{"1":"D A"},K:{"1":"B C H HC mC IC","8":"A"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"Text API for Canvas",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"F A B","2":"oC","8":"K D E"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC tC","132":"pC NC sC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"J RB K D E F A B C L M G vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","132":"uC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 6C 7C 8C 9C HC mC AD IC"},G:{"1":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"260":"YD"},I:{"1":"NC J I cD nC dD eD","132":"ZD aD bD"},J:{"1":"D A"},K:{"1":"A B C H HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"Canvas (basic support)",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E oC","132":"F A B"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC sC tC"},D:{"1":"0 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 J RB K D E F A B C L M G N O P SB"},E:{"1":"D E F A B C L M G xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K uC TC vC wC"},F:{"1":"0 1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C 6C 7C 8C 9C HC mC AD IC"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC CD DD"},H:{"2":"YD"},I:{"1":"I dD eD","2":"NC J ZD aD bD cD nC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:4,C:"ch (character) unit",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/chacha20-poly1305.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"1":"0 9 mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB sC tC"},D:{"1":"0 9 oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB","129":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},E:{"1":"C L M G HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A B uC TC vC wC xC yC UC"},F:{"1":"0 bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD","16":"eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/channel-messaging.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"A B","2":"K D E F oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 9 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 pC NC J RB K D E F A B C L M G N O P SB sC tC","194":"7 8 TB UB VB WB XB YB ZB aB bB cB dB eB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"RB K D E F A B C L M G vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J uC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 9C HC mC AD IC","2":"F 6C 7C","16":"8C"},G:{"1":"E CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC"},H:{"2":"YD"},I:{"1":"I dD eD","2":"NC J ZD aD bD cD nC"},J:{"1":"D A"},K:{"1":"B C H HC mC IC","2":"A"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"Channel messaging",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","16":"C"},C:{"1":"0 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 pC NC J RB K D E F A B C L M G N O P SB sC tC"},D:{"1":"0 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 J RB K D E F A B C L M G N O P SB"},E:{"1":"D E F A B C L M G wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB uC TC vC","16":"K"},F:{"1":"0 1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C 6C 7C 8C 9C HC mC AD IC"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC CD DD"},H:{"2":"YD"},I:{"1":"I dD eD","2":"NC J ZD aD bD cD nC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"ChildNode.remove()",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"8":"K D E F oC","1924":"A B"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","8":"pC NC sC","516":"5 6","772":"1 2 3 4 J RB K D E F A B C L M G N O P SB tC"},D:{"1":"0 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","8":"J RB K D","516":"5 6 7 8","772":"4","900":"1 2 3 E F A B C L M G N O P SB"},E:{"1":"D E F A B C L M G xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","8":"J RB uC TC","900":"K vC wC"},F:{"1":"0 1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","8":"F B 6C 7C 8C 9C HC","900":"C mC AD IC"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","8":"TC BD nC","900":"CD DD"},H:{"900":"YD"},I:{"1":"I dD eD","8":"ZD aD bD","900":"NC J cD nC"},J:{"1":"A","900":"D"},K:{"1":"H","8":"A B","900":"C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"900":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"classList (DOMTokenList)",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC sC tC"},D:{"1":"0 9 lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB 6C 7C 8C 9C HC mC AD IC"},G:{"2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"2":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD","2":"J"},Q:{"1":"qD"},R:{"1":"rD"},S:{"2":"sD tD"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2436":"K D E F A B oC"},B:{"260":"O P","2436":"C L M G N","8196":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"2":"1 2 pC NC J RB K D E F A B C L M G N O P SB sC tC","772":"3 4 5 6 7 8 TB UB VB WB XB YB ZB aB bB cB dB eB fB","4100":"0 9 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC"},D:{"2":"J RB K D E F A B C","2564":"1 2 3 4 5 6 7 8 L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","8196":"0 9 xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","10244":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB"},E:{"1":"C L M G IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","16":"uC TC","2308":"A B UC HC","2820":"J RB K D E F vC wC xC yC"},F:{"2":"F B 6C 7C 8C 9C HC mC AD","16":"C","516":"IC","2564":"1 2 3 4 5 6 7 8 G N O P SB TB UB","8196":"0 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","10244":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB"},G:{"1":"MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC","2820":"E CD DD ED FD GD HD ID JD KD LD"},H:{"2":"YD"},I:{"2":"NC J ZD aD bD cD nC","260":"I","2308":"dD eD"},J:{"2":"D","2308":"A"},K:{"2":"A B C HC mC","16":"IC","8196":"H"},L:{"8196":"I"},M:{"1028":"GC"},N:{"2":"A B"},O:{"8196":"JC"},P:{"2052":"fD gD","2308":"J","8196":"1 2 3 4 5 6 7 8 hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"8196":"qD"},R:{"8196":"rD"},S:{"4100":"sD tD"}},B:5,C:"Synchronous Clipboard API",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g"},C:{"1":"0 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g sC tC","258":"h i j k l m n","578":"o p"},D:{"1":"0 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y","194":"Z a b c d e f g"},E:{"2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U 6C 7C 8C 9C HC mC AD IC"},G:{"2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"16":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"16":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 MC pD","2":"J fD gD hD iD jD UC kD lD mD nD oD KC LC"},Q:{"2":"qD"},R:{"2":"rD"},S:{"2":"sD tD"}},B:6,C:"COLR/CPAL(v1) Font Formats",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E oC","257":"F A B"},B:{"1":"0 9 C L M G N O P t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","513":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},C:{"1":"0 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB sC tC"},D:{"1":"0 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B","513":"8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},E:{"1":"M G 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A uC TC vC wC xC yC UC","129":"B C L HC IC zC","1026":"LC cC"},F:{"1":"0 f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB 6C 7C 8C 9C HC mC AD IC","513":"xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e"},G:{"1":"KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD","1026":"LC cC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"16":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"16":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 UC kD lD mD nD oD KC LC MC pD","2":"J fD gD hD iD jD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:6,C:"COLR/CPAL(v0) Font Formats",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/comparedocumentposition.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"F A B","2":"K D E oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","16":"pC NC sC tC"},D:{"1":"0 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","16":"J RB K D E F A B C L M","132":"1 2 3 4 5 6 7 8 G N O P SB TB UB"},E:{"1":"A B C L M G UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","16":"J RB K uC TC","132":"D E F wC xC yC","260":"vC"},F:{"1":"0 1 2 3 4 5 6 7 8 C O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AD IC","16":"F B 6C 7C 8C 9C HC mC","132":"G N"},G:{"1":"ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","16":"TC","132":"E BD nC CD DD ED FD GD HD"},H:{"1":"YD"},I:{"1":"I dD eD","16":"ZD aD","132":"NC J bD cD nC"},J:{"132":"D A"},K:{"1":"C H IC","16":"A B HC mC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"Node.compareDocumentPosition()",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"A B","2":"K D oC","132":"E F"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC sC tC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 1 2 3 4 5 6 7 8 B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z HC mC AD IC","2":"F 6C 7C 8C 9C"},G:{"1":"TC BD nC CD","513":"E DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"4097":"YD"},I:{"1025":"NC J I ZD aD bD cD nC dD eD"},J:{"258":"D A"},K:{"2":"A","258":"B C HC mC IC","1025":"H"},L:{"1025":"I"},M:{"2049":"GC"},N:{"258":"A B"},O:{"258":"JC"},P:{"1025":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1025":"rD"},S:{"1":"sD tD"}},B:1,C:"Basic console logging functions",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"B","2":"K D E F A oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC J RB K D E F sC tC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"J RB K D E F A B C L M G vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"uC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z HC mC AD IC","2":"F 6C 7C 8C 9C","16":"B"},G:{"1":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"1":"YD"},I:{"1":"NC J I ZD aD bD cD nC dD eD"},J:{"1":"D A"},K:{"1":"H","16":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"B","2":"A"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"console.time and console.timeEnd",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A oC","2052":"B"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","132":"pC NC J RB K D E F A B C sC tC","260":"1 2 3 4 5 6 7 8 L M G N O P SB TB UB VB WB XB YB ZB aB"},D:{"1":"0 9 oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","260":"1 J RB K D E F A B C L M G N O P SB","772":"2 3 4 5 6 7 8 TB UB VB WB XB YB ZB aB bB cB dB eB fB","1028":"gB hB iB jB kB lB mB nB"},E:{"1":"B C L M G HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","260":"J RB A uC TC UC","772":"K D E F vC wC xC yC"},F:{"1":"0 bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F 6C","132":"B 7C 8C 9C HC mC","644":"C AD IC","772":"1 2 3 4 5 6 7 8 G N O P SB","1028":"TB UB VB WB XB YB ZB aB"},G:{"1":"KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","260":"TC BD nC ID JD","772":"E CD DD ED FD GD HD"},H:{"644":"YD"},I:{"1":"I","16":"ZD aD","260":"bD","772":"NC J cD nC dD eD"},J:{"772":"D A"},K:{"1":"H","132":"A B HC mC","644":"C IC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"B","2":"A"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD","1028":"J"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:6,C:"const",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/constraint-validation.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F oC","900":"A B"},B:{"1":"0 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","388":"M G N","900":"C L"},C:{"1":"0 9 qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC sC tC","260":"oB pB","388":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","900":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB"},D:{"1":"0 9 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","16":"J RB K D E F A B C L M","388":"6 7 8 TB UB VB WB XB YB ZB aB bB cB dB eB","900":"1 2 3 4 5 G N O P SB"},E:{"1":"A B C L M G UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","16":"J RB uC TC","388":"E F xC yC","900":"K D vC wC"},F:{"1":"0 8 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F B 6C 7C 8C 9C HC mC","388":"1 2 3 4 5 6 7 G N O P SB","900":"C AD IC"},G:{"1":"ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","16":"TC BD nC","388":"E ED FD GD HD","900":"CD DD"},H:{"2":"YD"},I:{"1":"I","16":"NC ZD aD bD","388":"dD eD","900":"J cD nC"},J:{"16":"D","388":"A"},K:{"1":"H","16":"A B HC mC","900":"C IC"},L:{"1":"I"},M:{"1":"GC"},N:{"900":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"tD","388":"sD"}},B:1,C:"Constraint Validation API",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"K D E F A B oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC sC tC","2":"pC","4":"NC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"1":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 6C 7C 8C 9C HC mC AD IC"},G:{"1":"E CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC"},H:{"2":"YD"},I:{"1":"NC J I cD nC dD eD","2":"ZD aD bD"},J:{"1":"D A"},K:{"1":"H IC","2":"A B C HC mC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"contenteditable attribute (basic support)",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F oC","132":"A B"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC sC tC","129":"1 2 3 J RB K D E F A B C L M G N O P SB"},D:{"1":"0 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"J RB K D E F A B C L","257":"1 2 3 4 5 M G N O P SB"},E:{"1":"D E F A B C L M G xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB uC TC","257":"K wC","260":"vC"},F:{"1":"0 1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C 6C 7C 8C 9C HC mC AD IC"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC","257":"DD","260":"CD"},H:{"2":"YD"},I:{"1":"I dD eD","2":"NC J ZD aD bD cD nC"},J:{"2":"D","257":"A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"132":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:4,C:"Content Security Policy 1.0",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M","4100":"G N O P"},C:{"1":"0 9 kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB sC tC","132":"WB XB YB ZB","260":"aB","516":"bB cB dB eB fB gB hB iB jB"},D:{"1":"0 9 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB","1028":"bB cB dB","2052":"eB"},E:{"1":"A B C L M G UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F uC TC vC wC xC yC"},F:{"1":"0 8 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 F B C G N O P SB 6C 7C 8C 9C HC mC AD IC","1028":"4 5 6","2052":"7"},G:{"1":"ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:2,C:"Content Security Policy Level 2",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P","194":"Q H R S T U V"},C:{"1":"SC qC rC","2":"0 1 2 3 4 5 6 7 8 9 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB sC tC","322":"NB OB PB QB I GC RC"},D:{"1":"0 9 W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B","194":"1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V"},E:{"1":"kC lC 5C","2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC"},F:{"1":"0 BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB 6C 7C 8C 9C HC mC AD IC","194":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC"},G:{"1":"kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"2":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 nD oD KC LC MC pD","2":"J fD gD hD iD jD UC kD lD mD"},Q:{"2":"qD"},R:{"1":"rD"},S:{"2":"sD tD"}},B:7,C:"Cookie Store API",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"B","2":"K D oC","132":"A","260":"E F"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC sC tC","2":"pC NC","1025":"PC zB 0B 1B 2B 3B 4B 5B 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","132":"J RB K D E F A B C"},E:{"2":"uC TC","513":"K D E F A B C L M G wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","644":"J RB vC"},F:{"1":"0 1 2 3 4 5 6 7 8 C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z IC","2":"F B 6C 7C 8C 9C HC mC AD"},G:{"513":"E DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","644":"TC BD nC CD"},H:{"2":"YD"},I:{"1":"I dD eD","132":"NC J ZD aD bD cD nC"},J:{"1":"A","132":"D"},K:{"1":"C H IC","2":"A B HC mC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"B","132":"A"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:1,C:"Cross-Origin Resource Sharing",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/createimagebitmap.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB sC tC","1028":"c d e f g","3076":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b","8196":"0 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC"},D:{"1":"0 9 OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB","132":"pB qB","260":"rB sB","516":"tB uB vB wB xB"},E:{"1":"LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F A B C L M uC TC vC wC xC yC UC HC IC zC 0C","4100":"G 1C VC WC JC 2C KC XC YC ZC aC bC 3C"},F:{"1":"0 lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB 6C 7C 8C 9C HC mC AD IC","132":"cB dB","260":"eB fB","516":"gB hB iB jB kB"},G:{"1":"LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD","4100":"UD VC WC JC VD KC XC YC ZC aC bC WD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"8196":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 gD hD iD jD UC kD lD mD nD oD KC LC MC pD","16":"J fD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"3076":"sD tD"}},B:1,C:"createImageBitmap",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/credential-management.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC sC tC"},D:{"1":"0 9 wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB","66":"nB oB pB","129":"qB rB sB tB uB vB"},E:{"2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"1":"0 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"2":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 hD iD jD UC kD lD mD nD oD KC LC MC pD","2":"J fD gD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"2":"sD tD"}},B:5,C:"Credential Management API",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"HB IB JB KB LB MB NB OB PB QB I","2":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC sC tC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"0 1 2 3 4 5 6 7 8 9 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"iC jC kC lC 5C","2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC"},F:{"1":"0 v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u 6C 7C 8C 9C HC mC AD IC"},G:{"1":"iC jC kC lC","2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"2":"GC"},N:{"2":"A B"},O:{"2":"JC"},P:{"2":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"2":"qD"},R:{"2":"rD"},S:{"2":"sD tD"}},B:5,C:"View Transitions (cross-document)",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"oC","8":"K D E F A","164":"B"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","513":"C L M G N O P"},C:{"1":"0 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","8":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB sC tC","66":"XB YB"},D:{"1":"0 9 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","8":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"B C L M G HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","8":"J RB K D uC TC vC wC","289":"E F A xC yC UC"},F:{"1":"0 5 6 7 8 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","8":"1 2 3 4 F B C G N O P SB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","8":"TC BD nC CD DD ED","289":"E FD GD HD ID JD"},H:{"2":"YD"},I:{"1":"I","8":"NC J ZD aD bD cD nC dD eD"},J:{"8":"D A"},K:{"1":"H","8":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"8":"A","164":"B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:2,C:"Web Cryptography",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"1":"0 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 pC NC J RB K D E F A B C L M G N O P SB sC tC"},D:{"1":"0 9 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"A B C L M G yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K D E F uC TC vC wC xC"},F:{"1":"0 5 6 7 8 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 F B C G N O P SB 6C 7C 8C 9C HC mC AD IC"},G:{"1":"HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD GD"},H:{"2":"YD"},I:{"1":"I eD","2":"NC J ZD aD bD cD nC dD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:2,C:"CSS all property",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-anchor-positioning.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","194":"0 9 AB BB CB DB EB FB"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC sC tC"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","194":"0 9 AB BB CB DB EB FB"},E:{"1":"5C","2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC"},F:{"1":"0 u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l 6C 7C 8C 9C HC mC AD IC","194":"m n o p q r s t"},G:{"2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"2":"A B C H HC mC IC"},L:{"1":"I"},M:{"2":"GC"},N:{"2":"A B"},O:{"2":"JC"},P:{"1":"8","2":"1 2 3 4 5 6 7 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"2":"qD"},R:{"2":"rD"},S:{"2":"sD tD"}},B:5,C:"CSS Anchor Positioning",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"A B","2":"K D E F oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC J sC tC","33":"RB K D E F A B C L M G"},D:{"1":"0 9 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","33":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"F A B C L M G yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"uC TC","33":"K D E vC wC xC","292":"J RB"},F:{"1":"0 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z IC","2":"F B 6C 7C 8C 9C HC mC AD","33":"1 2 3 4 5 6 7 8 C G N O P SB TB UB"},G:{"1":"GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","33":"E DD ED FD","164":"TC BD nC CD"},H:{"2":"YD"},I:{"1":"I","33":"J cD nC dD eD","164":"NC ZD aD bD"},J:{"33":"D A"},K:{"1":"H IC","2":"A B C HC mC"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:5,C:"CSS Animation",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P"},C:{"1":"0 9 pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","16":"pC","33":"1 2 3 4 5 6 7 8 NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB sC tC"},D:{"1":"0 9 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","16":"J RB K D E F A B C L M","33":"1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B"},E:{"1":"F A B C L M G yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","16":"J RB K uC TC vC","33":"D E wC xC"},F:{"1":"0 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C 6C 7C 8C 9C HC mC AD IC","33":"1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB"},G:{"1":"GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","16":"TC BD nC CD","33":"E DD ED FD"},H:{"2":"YD"},I:{"1":"I","16":"NC J ZD aD bD cD nC","33":"dD eD"},J:{"16":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 jD UC kD lD mD nD oD KC LC MC pD","16":"J","33":"fD gD hD iD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"tD","33":"sD"}},B:5,C:"CSS :any-link selector",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","33":"S","164":"Q H R","388":"C L M G N O P"},C:{"1":"0 9 H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","164":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q","676":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB sC tC"},D:{"1":"0 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","33":"S","164":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R"},E:{"1":"WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","164":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC"},F:{"1":"0 AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C 6C 7C 8C 9C HC mC AD IC","33":"7B 8B 9B","164":"1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B"},G:{"1":"WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","164":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC"},H:{"2":"YD"},I:{"1":"I","164":"NC J ZD aD bD cD nC dD eD"},J:{"164":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A","388":"B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 nD oD KC LC MC pD","164":"J fD gD hD iD jD UC kD lD mD"},Q:{"164":"qD"},R:{"1":"rD"},S:{"1":"tD","164":"sD"}},B:5,C:"CSS Appearance",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-at-counter-style.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z","132":"0 9 a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB sC tC","132":"0 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC"},D:{"2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z","132":"0 9 a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC"},E:{"2":"J RB K D E F A B C L M G uC TC vC wC xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C","4":"LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C"},F:{"2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC 6C 7C 8C 9C HC mC AD IC","132":"0 EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD","4":"LC cC dC eC fC gC XD MC hC iC jC kC lC"},H:{"2":"YD"},I:{"2":"NC J ZD aD bD cD nC dD eD","132":"I"},J:{"2":"D A"},K:{"2":"A B C HC mC IC","132":"H"},L:{"132":"I"},M:{"132":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"2":"J fD gD hD iD jD UC kD lD mD nD oD","132":"1 2 3 4 5 6 7 8 KC LC MC pD"},Q:{"2":"qD"},R:{"132":"rD"},S:{"132":"sD tD"}},B:4,C:"CSS Counter Styles",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{D:{"1":"0 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","33":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},L:{"1":"I"},B:{"1":"0 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N O P","33":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},C:{"1":"0 9 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U sC tC"},M:{"1":"GC"},A:{"2":"K D E F A B oC"},F:{"1":"0 f g h i j k l m n o p q r s t u v w x y z","2":"F B C 6C 7C 8C 9C HC mC AD IC","33":"1 2 3 4 5 6 7 8 G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e"},K:{"1":"H","2":"A B C HC mC IC"},E:{"1":"G 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC","2":"5C","33":"J RB K D E F A B C L M uC TC vC wC xC yC UC HC IC zC 0C"},G:{"1":"UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","33":"E TC BD nC CD DD ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD"},P:{"1":"2 3 4 5 6 7 8","33":"1 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},I:{"1":"I","2":"NC J ZD aD bD cD nC","33":"dD eD"}},B:6,C:":autofill CSS pseudo-class",D:undefined};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-backdrop-filter.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"K D E F A B oC"},B:{"1":"0 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I","2":"C L M G N","257":"O P"},C:{"1":"0 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"1 2 3 4 5 6 7 8 pC NC J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B sC tC","578":"7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l"},D:{"1":"0 9 DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 6 7 8 J RB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","194":"mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC"},E:{"1":"MC hC iC jC kC lC 5C","2":"J RB K D E uC TC vC wC xC","33":"F A B C L M G yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C"},F:{"1":"0 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 F B C G N O P SB TB UB VB WB XB YB 6C 7C 8C 9C HC mC AD IC","194":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},G:{"1":"MC hC iC jC kC lC","2":"E TC BD nC CD DD ED FD","33":"GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD"},H:{"2":"YD"},I:{"1":"I","2":"NC J ZD aD bD cD nC dD eD"},J:{"2":"D A"},K:{"1":"H","2":"A B C HC mC IC"},L:{"1":"I"},M:{"1":"GC"},N:{"2":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 lD mD nD oD KC LC MC pD","2":"J","194":"fD gD hD iD jD UC kD"},Q:{"2":"qD"},R:{"1":"rD"},S:{"2":"sD tD"}},B:7,C:"CSS Backdrop Filter",D:true};
|
package/tooling/tailwind-compiler/node_modules/caniuse-lite/data/features/css-background-offsets.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"F A B","2":"K D E oC"},B:{"1":"0 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC qC rC","2":"pC NC J RB K D E F A B C sC tC"},D:{"1":"0 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB OC yB PC zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB I GC RC SC","2":"1 2 3 4 5 J RB K D E F A B C L M G N O P SB"},E:{"1":"D E F A B C L M G xC yC UC HC IC zC 0C 1C VC WC JC 2C KC XC YC ZC aC bC 3C LC cC dC eC fC gC 4C MC hC iC jC kC lC 5C","2":"J RB K uC TC vC wC"},F:{"1":"0 1 2 3 4 5 6 7 8 B C G N O P SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC Q H R QC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 8C 9C HC mC AD IC","2":"F 6C 7C"},G:{"1":"E ED FD GD HD ID JD KD LD MD ND OD PD QD RD SD TD UD VC WC JC VD KC XC YC ZC aC bC WD LC cC dC eC fC gC XD MC hC iC jC kC lC","2":"TC BD nC CD DD"},H:{"1":"YD"},I:{"1":"I dD eD","2":"NC J ZD aD bD cD nC"},J:{"1":"A","2":"D"},K:{"1":"B C H HC mC IC","2":"A"},L:{"1":"I"},M:{"1":"GC"},N:{"1":"A B"},O:{"1":"JC"},P:{"1":"1 2 3 4 5 6 7 8 J fD gD hD iD jD UC kD lD mD nD oD KC LC MC pD"},Q:{"1":"qD"},R:{"1":"rD"},S:{"1":"sD tD"}},B:4,C:"CSS background-position edge offsets",D:true};
|