vaderjs 1.1.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +3 -0
- package/package.json +1 -1
- package/readme.md +68 -5
- package/vader.js +249 -119
- package/vaderRouter.js +110 -28
- package/website/dist/init.js +9 -0
- package/website/dist/styles/main.css +9704 -0
- package/website/dist/vader/vader.js +592 -0
- package/website/dist/vader/vaderRouter.js +488 -0
- package/website/index.html +23 -0
- package/website/node_modules/.bin/cssesc +12 -0
- package/website/node_modules/.bin/cssesc.cmd +17 -0
- package/website/node_modules/.bin/cssesc.ps1 +28 -0
- package/website/node_modules/.bin/jiti +12 -0
- package/website/node_modules/.bin/jiti.cmd +17 -0
- package/website/node_modules/.bin/jiti.ps1 +28 -0
- package/website/node_modules/.bin/nanoid +12 -0
- package/website/node_modules/.bin/nanoid.cmd +17 -0
- package/website/node_modules/.bin/nanoid.ps1 +28 -0
- package/website/node_modules/.bin/resolve +12 -0
- package/website/node_modules/.bin/resolve.cmd +17 -0
- package/website/node_modules/.bin/resolve.ps1 +28 -0
- package/website/node_modules/.bin/sucrase +12 -0
- package/website/node_modules/.bin/sucrase-node +12 -0
- package/website/node_modules/.bin/sucrase-node.cmd +17 -0
- package/website/node_modules/.bin/sucrase-node.ps1 +28 -0
- package/website/node_modules/.bin/sucrase.cmd +17 -0
- package/website/node_modules/.bin/sucrase.ps1 +28 -0
- package/website/node_modules/.bin/tailwind +12 -0
- package/website/node_modules/.bin/tailwind.cmd +17 -0
- package/website/node_modules/.bin/tailwind.ps1 +28 -0
- package/website/node_modules/.bin/tailwindcss +12 -0
- package/website/node_modules/.bin/tailwindcss.cmd +17 -0
- package/website/node_modules/.bin/tailwindcss.ps1 +28 -0
- package/website/node_modules/.package-lock.json +919 -0
- package/website/node_modules/@alloc/quick-lru/index.d.ts +128 -0
- package/website/node_modules/@alloc/quick-lru/index.js +263 -0
- package/website/node_modules/@alloc/quick-lru/license +9 -0
- package/website/node_modules/@alloc/quick-lru/package.json +43 -0
- package/website/node_modules/@alloc/quick-lru/readme.md +139 -0
- package/website/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
- package/website/node_modules/@jridgewell/gen-mapping/README.md +227 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +230 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +1 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +236 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +1 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +90 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +35 -0
- package/website/node_modules/@jridgewell/gen-mapping/package.json +77 -0
- package/website/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
- package/website/node_modules/@jridgewell/resolve-uri/README.md +40 -0
- package/website/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +242 -0
- package/website/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
- package/website/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +250 -0
- package/website/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
- package/website/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
- package/website/node_modules/@jridgewell/resolve-uri/package.json +69 -0
- package/website/node_modules/@jridgewell/set-array/LICENSE +19 -0
- package/website/node_modules/@jridgewell/set-array/README.md +37 -0
- package/website/node_modules/@jridgewell/set-array/dist/set-array.mjs +48 -0
- package/website/node_modules/@jridgewell/set-array/dist/set-array.mjs.map +1 -0
- package/website/node_modules/@jridgewell/set-array/dist/set-array.umd.js +58 -0
- package/website/node_modules/@jridgewell/set-array/dist/set-array.umd.js.map +1 -0
- package/website/node_modules/@jridgewell/set-array/dist/types/set-array.d.ts +26 -0
- package/website/node_modules/@jridgewell/set-array/package.json +66 -0
- package/website/node_modules/@jridgewell/set-array/src/set-array.ts +55 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/package.json +74 -0
- package/website/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
- package/website/node_modules/@jridgewell/trace-mapping/README.md +252 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +552 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +566 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +74 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +92 -0
- package/website/node_modules/@jridgewell/trace-mapping/package.json +75 -0
- package/website/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
- package/website/node_modules/@nodelib/fs.scandir/README.md +171 -0
- package/website/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
- package/website/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
- package/website/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
- package/website/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
- package/website/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
- package/website/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
- package/website/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
- package/website/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
- package/website/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
- package/website/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
- package/website/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
- package/website/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
- package/website/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
- package/website/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
- package/website/node_modules/@nodelib/fs.scandir/package.json +44 -0
- package/website/node_modules/@nodelib/fs.stat/LICENSE +21 -0
- package/website/node_modules/@nodelib/fs.stat/README.md +126 -0
- package/website/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
- package/website/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
- package/website/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
- package/website/node_modules/@nodelib/fs.stat/out/index.js +26 -0
- package/website/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
- package/website/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
- package/website/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
- package/website/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
- package/website/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
- package/website/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
- package/website/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
- package/website/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
- package/website/node_modules/@nodelib/fs.stat/package.json +37 -0
- package/website/node_modules/@nodelib/fs.walk/LICENSE +21 -0
- package/website/node_modules/@nodelib/fs.walk/README.md +215 -0
- package/website/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
- package/website/node_modules/@nodelib/fs.walk/out/index.js +34 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
- package/website/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
- package/website/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
- package/website/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
- package/website/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
- package/website/node_modules/@nodelib/fs.walk/package.json +44 -0
- package/website/node_modules/any-promise/.jshintrc +4 -0
- package/website/node_modules/any-promise/LICENSE +19 -0
- package/website/node_modules/any-promise/README.md +161 -0
- package/website/node_modules/any-promise/implementation.d.ts +3 -0
- package/website/node_modules/any-promise/implementation.js +1 -0
- package/website/node_modules/any-promise/index.d.ts +73 -0
- package/website/node_modules/any-promise/index.js +1 -0
- package/website/node_modules/any-promise/loader.js +78 -0
- package/website/node_modules/any-promise/optional.js +6 -0
- package/website/node_modules/any-promise/package.json +45 -0
- package/website/node_modules/any-promise/register/bluebird.d.ts +1 -0
- package/website/node_modules/any-promise/register/bluebird.js +2 -0
- package/website/node_modules/any-promise/register/es6-promise.d.ts +1 -0
- package/website/node_modules/any-promise/register/es6-promise.js +2 -0
- package/website/node_modules/any-promise/register/lie.d.ts +1 -0
- package/website/node_modules/any-promise/register/lie.js +2 -0
- package/website/node_modules/any-promise/register/native-promise-only.d.ts +1 -0
- package/website/node_modules/any-promise/register/native-promise-only.js +2 -0
- package/website/node_modules/any-promise/register/pinkie.d.ts +1 -0
- package/website/node_modules/any-promise/register/pinkie.js +2 -0
- package/website/node_modules/any-promise/register/promise.d.ts +1 -0
- package/website/node_modules/any-promise/register/promise.js +2 -0
- package/website/node_modules/any-promise/register/q.d.ts +1 -0
- package/website/node_modules/any-promise/register/q.js +2 -0
- package/website/node_modules/any-promise/register/rsvp.d.ts +1 -0
- package/website/node_modules/any-promise/register/rsvp.js +2 -0
- package/website/node_modules/any-promise/register/vow.d.ts +1 -0
- package/website/node_modules/any-promise/register/vow.js +2 -0
- package/website/node_modules/any-promise/register/when.d.ts +1 -0
- package/website/node_modules/any-promise/register/when.js +2 -0
- package/website/node_modules/any-promise/register-shim.js +18 -0
- package/website/node_modules/any-promise/register.d.ts +17 -0
- package/website/node_modules/any-promise/register.js +94 -0
- package/website/node_modules/anymatch/LICENSE +15 -0
- package/website/node_modules/anymatch/README.md +87 -0
- package/website/node_modules/anymatch/index.d.ts +20 -0
- package/website/node_modules/anymatch/index.js +104 -0
- package/website/node_modules/anymatch/package.json +48 -0
- package/website/node_modules/arg/LICENSE.md +21 -0
- package/website/node_modules/arg/README.md +317 -0
- package/website/node_modules/arg/index.d.ts +44 -0
- package/website/node_modules/arg/index.js +195 -0
- package/website/node_modules/arg/package.json +28 -0
- package/website/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/website/node_modules/balanced-match/LICENSE.md +21 -0
- package/website/node_modules/balanced-match/README.md +97 -0
- package/website/node_modules/balanced-match/index.js +62 -0
- package/website/node_modules/balanced-match/package.json +48 -0
- package/website/node_modules/binary-extensions/binary-extensions.json +260 -0
- package/website/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
- package/website/node_modules/binary-extensions/index.d.ts +14 -0
- package/website/node_modules/binary-extensions/index.js +1 -0
- package/website/node_modules/binary-extensions/license +9 -0
- package/website/node_modules/binary-extensions/package.json +38 -0
- package/website/node_modules/binary-extensions/readme.md +41 -0
- package/website/node_modules/brace-expansion/LICENSE +21 -0
- package/website/node_modules/brace-expansion/README.md +129 -0
- package/website/node_modules/brace-expansion/index.js +201 -0
- package/website/node_modules/brace-expansion/package.json +47 -0
- package/website/node_modules/braces/CHANGELOG.md +184 -0
- package/website/node_modules/braces/LICENSE +21 -0
- package/website/node_modules/braces/README.md +593 -0
- package/website/node_modules/braces/index.js +170 -0
- package/website/node_modules/braces/lib/compile.js +57 -0
- package/website/node_modules/braces/lib/constants.js +57 -0
- package/website/node_modules/braces/lib/expand.js +113 -0
- package/website/node_modules/braces/lib/parse.js +333 -0
- package/website/node_modules/braces/lib/stringify.js +32 -0
- package/website/node_modules/braces/lib/utils.js +112 -0
- package/website/node_modules/braces/package.json +77 -0
- package/website/node_modules/camelcase-css/README.md +27 -0
- package/website/node_modules/camelcase-css/index-es5.js +24 -0
- package/website/node_modules/camelcase-css/index.js +30 -0
- package/website/node_modules/camelcase-css/license +21 -0
- package/website/node_modules/camelcase-css/package.json +34 -0
- package/website/node_modules/chokidar/LICENSE +21 -0
- package/website/node_modules/chokidar/README.md +308 -0
- package/website/node_modules/chokidar/index.js +973 -0
- package/website/node_modules/chokidar/lib/constants.js +65 -0
- package/website/node_modules/chokidar/lib/fsevents-handler.js +524 -0
- package/website/node_modules/chokidar/lib/nodefs-handler.js +654 -0
- package/website/node_modules/chokidar/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/website/node_modules/chokidar/node_modules/glob-parent/LICENSE +15 -0
- package/website/node_modules/chokidar/node_modules/glob-parent/README.md +137 -0
- package/website/node_modules/chokidar/node_modules/glob-parent/index.js +42 -0
- package/website/node_modules/chokidar/node_modules/glob-parent/package.json +48 -0
- package/website/node_modules/chokidar/package.json +85 -0
- package/website/node_modules/chokidar/types/index.d.ts +188 -0
- package/website/node_modules/colord/CHANGELOG.md +188 -0
- package/website/node_modules/colord/LICENSE.md +21 -0
- package/website/node_modules/colord/README.md +1053 -0
- package/website/node_modules/colord/colord.d.ts +103 -0
- package/website/node_modules/colord/constants.d.ts +10 -0
- package/website/node_modules/colord/extend.d.ts +4 -0
- package/website/node_modules/colord/helpers.d.ts +20 -0
- package/website/node_modules/colord/index.d.ts +5 -0
- package/website/node_modules/colord/index.js +1 -0
- package/website/node_modules/colord/index.mjs +1 -0
- package/website/node_modules/colord/package.json +210 -0
- package/website/node_modules/colord/parse.d.ts +8 -0
- package/website/node_modules/colord/plugins/a11y.d.ts +38 -0
- package/website/node_modules/colord/plugins/a11y.js +1 -0
- package/website/node_modules/colord/plugins/a11y.mjs +1 -0
- package/website/node_modules/colord/plugins/cmyk.d.ts +24 -0
- package/website/node_modules/colord/plugins/cmyk.js +1 -0
- package/website/node_modules/colord/plugins/cmyk.mjs +1 -0
- package/website/node_modules/colord/plugins/harmonies.d.ts +16 -0
- package/website/node_modules/colord/plugins/harmonies.js +1 -0
- package/website/node_modules/colord/plugins/harmonies.mjs +1 -0
- package/website/node_modules/colord/plugins/hwb.d.ts +23 -0
- package/website/node_modules/colord/plugins/hwb.js +1 -0
- package/website/node_modules/colord/plugins/hwb.mjs +1 -0
- package/website/node_modules/colord/plugins/lab.d.ts +23 -0
- package/website/node_modules/colord/plugins/lab.js +1 -0
- package/website/node_modules/colord/plugins/lab.mjs +1 -0
- package/website/node_modules/colord/plugins/lch.d.ts +24 -0
- package/website/node_modules/colord/plugins/lch.js +1 -0
- package/website/node_modules/colord/plugins/lch.mjs +1 -0
- package/website/node_modules/colord/plugins/minify.d.ts +20 -0
- package/website/node_modules/colord/plugins/minify.js +1 -0
- package/website/node_modules/colord/plugins/minify.mjs +1 -0
- package/website/node_modules/colord/plugins/mix.d.ts +27 -0
- package/website/node_modules/colord/plugins/mix.js +1 -0
- package/website/node_modules/colord/plugins/mix.mjs +1 -0
- package/website/node_modules/colord/plugins/names.d.ts +19 -0
- package/website/node_modules/colord/plugins/names.js +1 -0
- package/website/node_modules/colord/plugins/names.mjs +1 -0
- package/website/node_modules/colord/plugins/xyz.d.ts +14 -0
- package/website/node_modules/colord/plugins/xyz.js +1 -0
- package/website/node_modules/colord/plugins/xyz.mjs +1 -0
- package/website/node_modules/colord/random.d.ts +2 -0
- package/website/node_modules/colord/types.d.ts +67 -0
- package/website/node_modules/commander/CHANGELOG.md +436 -0
- package/website/node_modules/commander/LICENSE +22 -0
- package/website/node_modules/commander/Readme.md +713 -0
- package/website/node_modules/commander/index.js +1649 -0
- package/website/node_modules/commander/package.json +41 -0
- package/website/node_modules/commander/typings/index.d.ts +311 -0
- package/website/node_modules/concat-map/.travis.yml +4 -0
- package/website/node_modules/concat-map/LICENSE +18 -0
- package/website/node_modules/concat-map/README.markdown +62 -0
- package/website/node_modules/concat-map/example/map.js +6 -0
- package/website/node_modules/concat-map/index.js +13 -0
- package/website/node_modules/concat-map/package.json +43 -0
- package/website/node_modules/concat-map/test/map.js +39 -0
- package/website/node_modules/css-selector-tokenizer/LICENSE +7 -0
- package/website/node_modules/css-selector-tokenizer/README.md +92 -0
- package/website/node_modules/css-selector-tokenizer/lib/index.js +4 -0
- package/website/node_modules/css-selector-tokenizer/lib/parse.js +239 -0
- package/website/node_modules/css-selector-tokenizer/lib/parseValues.js +167 -0
- package/website/node_modules/css-selector-tokenizer/lib/stringify.js +62 -0
- package/website/node_modules/css-selector-tokenizer/lib/stringifyValues.js +62 -0
- package/website/node_modules/css-selector-tokenizer/lib/uni-regexp.js +6 -0
- package/website/node_modules/css-selector-tokenizer/package.json +48 -0
- package/website/node_modules/cssesc/LICENSE-MIT.txt +20 -0
- package/website/node_modules/cssesc/README.md +201 -0
- package/website/node_modules/cssesc/bin/cssesc +116 -0
- package/website/node_modules/cssesc/cssesc.js +110 -0
- package/website/node_modules/cssesc/man/cssesc.1 +70 -0
- package/website/node_modules/cssesc/package.json +51 -0
- package/website/node_modules/daisyui/LICENSE +21 -0
- package/website/node_modules/daisyui/README.md +231 -0
- package/website/node_modules/daisyui/dist/base.js +1 -0
- package/website/node_modules/daisyui/dist/full.css +50393 -0
- package/website/node_modules/daisyui/dist/styled.css +4874 -0
- package/website/node_modules/daisyui/dist/styled.js +1 -0
- package/website/node_modules/daisyui/dist/styled.rtl.js +1 -0
- package/website/node_modules/daisyui/dist/themes.css +1151 -0
- package/website/node_modules/daisyui/dist/unstyled.css +1212 -0
- package/website/node_modules/daisyui/dist/unstyled.js +1 -0
- package/website/node_modules/daisyui/dist/unstyled.rtl.js +1 -0
- package/website/node_modules/daisyui/dist/utilities-styled.js +1 -0
- package/website/node_modules/daisyui/dist/utilities-unstyled.js +1 -0
- package/website/node_modules/daisyui/dist/utilities.js +1 -0
- package/website/node_modules/daisyui/package.json +109 -0
- package/website/node_modules/daisyui/src/index.d.ts +111 -0
- package/website/node_modules/daisyui/src/index.js +186 -0
- package/website/node_modules/daisyui/src/lib/addPrefix.js +104 -0
- package/website/node_modules/daisyui/src/lib/responsiveRegex.js +45 -0
- package/website/node_modules/daisyui/src/theming/colorNames.js +34 -0
- package/website/node_modules/daisyui/src/theming/functions.js +269 -0
- package/website/node_modules/daisyui/src/theming/index.js +39 -0
- package/website/node_modules/daisyui/src/theming/themeDefaults.js +45 -0
- package/website/node_modules/daisyui/src/theming/themes.d.ts +5 -0
- package/website/node_modules/daisyui/src/theming/themes.js +435 -0
- package/website/node_modules/didyoumean/LICENSE +14 -0
- package/website/node_modules/didyoumean/README.md +134 -0
- package/website/node_modules/didyoumean/didYouMean-1.2.1.js +274 -0
- package/website/node_modules/didyoumean/didYouMean-1.2.1.min.js +17 -0
- package/website/node_modules/didyoumean/package.json +27 -0
- package/website/node_modules/dlv/README.md +76 -0
- package/website/node_modules/dlv/dist/dlv.es.js +2 -0
- package/website/node_modules/dlv/dist/dlv.es.js.map +1 -0
- package/website/node_modules/dlv/dist/dlv.js +2 -0
- package/website/node_modules/dlv/dist/dlv.js.map +1 -0
- package/website/node_modules/dlv/dist/dlv.umd.js +2 -0
- package/website/node_modules/dlv/dist/dlv.umd.js.map +1 -0
- package/website/node_modules/dlv/index.js +7 -0
- package/website/node_modules/dlv/package.json +30 -0
- package/website/node_modules/fast-glob/LICENSE +21 -0
- package/website/node_modules/fast-glob/README.md +830 -0
- package/website/node_modules/fast-glob/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/website/node_modules/fast-glob/node_modules/glob-parent/LICENSE +15 -0
- package/website/node_modules/fast-glob/node_modules/glob-parent/README.md +137 -0
- package/website/node_modules/fast-glob/node_modules/glob-parent/index.js +42 -0
- package/website/node_modules/fast-glob/node_modules/glob-parent/package.json +48 -0
- package/website/node_modules/fast-glob/out/index.d.ts +40 -0
- package/website/node_modules/fast-glob/out/index.js +102 -0
- package/website/node_modules/fast-glob/out/managers/tasks.d.ts +22 -0
- package/website/node_modules/fast-glob/out/managers/tasks.js +110 -0
- package/website/node_modules/fast-glob/out/providers/async.d.ts +9 -0
- package/website/node_modules/fast-glob/out/providers/async.js +23 -0
- package/website/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -0
- package/website/node_modules/fast-glob/out/providers/filters/deep.js +62 -0
- package/website/node_modules/fast-glob/out/providers/filters/entry.d.ts +16 -0
- package/website/node_modules/fast-glob/out/providers/filters/entry.js +63 -0
- package/website/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -0
- package/website/node_modules/fast-glob/out/providers/filters/error.js +15 -0
- package/website/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -0
- package/website/node_modules/fast-glob/out/providers/matchers/matcher.js +45 -0
- package/website/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -0
- package/website/node_modules/fast-glob/out/providers/matchers/partial.js +38 -0
- package/website/node_modules/fast-glob/out/providers/provider.d.ts +19 -0
- package/website/node_modules/fast-glob/out/providers/provider.js +48 -0
- package/website/node_modules/fast-glob/out/providers/stream.d.ts +11 -0
- package/website/node_modules/fast-glob/out/providers/stream.js +31 -0
- package/website/node_modules/fast-glob/out/providers/sync.d.ts +9 -0
- package/website/node_modules/fast-glob/out/providers/sync.js +23 -0
- package/website/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -0
- package/website/node_modules/fast-glob/out/providers/transformers/entry.js +26 -0
- package/website/node_modules/fast-glob/out/readers/async.d.ts +10 -0
- package/website/node_modules/fast-glob/out/readers/async.js +35 -0
- package/website/node_modules/fast-glob/out/readers/reader.d.ts +15 -0
- package/website/node_modules/fast-glob/out/readers/reader.js +33 -0
- package/website/node_modules/fast-glob/out/readers/stream.d.ts +14 -0
- package/website/node_modules/fast-glob/out/readers/stream.js +55 -0
- package/website/node_modules/fast-glob/out/readers/sync.d.ts +12 -0
- package/website/node_modules/fast-glob/out/readers/sync.js +43 -0
- package/website/node_modules/fast-glob/out/settings.d.ts +164 -0
- package/website/node_modules/fast-glob/out/settings.js +59 -0
- package/website/node_modules/fast-glob/out/types/index.d.ts +31 -0
- package/website/node_modules/fast-glob/out/types/index.js +2 -0
- package/website/node_modules/fast-glob/out/utils/array.d.ts +2 -0
- package/website/node_modules/fast-glob/out/utils/array.js +22 -0
- package/website/node_modules/fast-glob/out/utils/errno.d.ts +2 -0
- package/website/node_modules/fast-glob/out/utils/errno.js +7 -0
- package/website/node_modules/fast-glob/out/utils/fs.d.ts +4 -0
- package/website/node_modules/fast-glob/out/utils/fs.js +19 -0
- package/website/node_modules/fast-glob/out/utils/index.d.ts +8 -0
- package/website/node_modules/fast-glob/out/utils/index.js +17 -0
- package/website/node_modules/fast-glob/out/utils/path.d.ts +13 -0
- package/website/node_modules/fast-glob/out/utils/path.js +68 -0
- package/website/node_modules/fast-glob/out/utils/pattern.d.ts +47 -0
- package/website/node_modules/fast-glob/out/utils/pattern.js +188 -0
- package/website/node_modules/fast-glob/out/utils/stream.d.ts +4 -0
- package/website/node_modules/fast-glob/out/utils/stream.js +17 -0
- package/website/node_modules/fast-glob/out/utils/string.d.ts +2 -0
- package/website/node_modules/fast-glob/out/utils/string.js +11 -0
- package/website/node_modules/fast-glob/package.json +81 -0
- package/website/node_modules/fastparse/LICENSE +7 -0
- package/website/node_modules/fastparse/README.md +118 -0
- package/website/node_modules/fastparse/lib/Parser.js +108 -0
- package/website/node_modules/fastparse/package.json +39 -0
- package/website/node_modules/fastq/.github/dependabot.yml +11 -0
- package/website/node_modules/fastq/.github/workflows/ci.yml +50 -0
- package/website/node_modules/fastq/LICENSE +13 -0
- package/website/node_modules/fastq/README.md +309 -0
- package/website/node_modules/fastq/bench.js +66 -0
- package/website/node_modules/fastq/example.js +14 -0
- package/website/node_modules/fastq/example.mjs +11 -0
- package/website/node_modules/fastq/index.d.ts +37 -0
- package/website/node_modules/fastq/package.json +52 -0
- package/website/node_modules/fastq/queue.js +289 -0
- package/website/node_modules/fastq/test/example.ts +81 -0
- package/website/node_modules/fastq/test/promise.js +248 -0
- package/website/node_modules/fastq/test/test.js +566 -0
- package/website/node_modules/fastq/test/tsconfig.json +11 -0
- package/website/node_modules/fill-range/LICENSE +21 -0
- package/website/node_modules/fill-range/README.md +237 -0
- package/website/node_modules/fill-range/index.js +249 -0
- package/website/node_modules/fill-range/package.json +69 -0
- package/website/node_modules/fs.realpath/LICENSE +43 -0
- package/website/node_modules/fs.realpath/README.md +33 -0
- package/website/node_modules/fs.realpath/index.js +66 -0
- package/website/node_modules/fs.realpath/old.js +303 -0
- package/website/node_modules/fs.realpath/package.json +26 -0
- package/website/node_modules/function-bind/.editorconfig +20 -0
- package/website/node_modules/function-bind/.eslintrc +15 -0
- package/website/node_modules/function-bind/.jscs.json +176 -0
- package/website/node_modules/function-bind/.travis.yml +168 -0
- package/website/node_modules/function-bind/LICENSE +20 -0
- package/website/node_modules/function-bind/README.md +48 -0
- package/website/node_modules/function-bind/implementation.js +52 -0
- package/website/node_modules/function-bind/index.js +5 -0
- package/website/node_modules/function-bind/package.json +63 -0
- package/website/node_modules/function-bind/test/.eslintrc +9 -0
- package/website/node_modules/function-bind/test/index.js +252 -0
- package/website/node_modules/glob/LICENSE +21 -0
- package/website/node_modules/glob/README.md +375 -0
- package/website/node_modules/glob/changelog.md +67 -0
- package/website/node_modules/glob/common.js +240 -0
- package/website/node_modules/glob/glob.js +790 -0
- package/website/node_modules/glob/package.json +46 -0
- package/website/node_modules/glob/sync.js +486 -0
- package/website/node_modules/glob-parent/LICENSE +15 -0
- package/website/node_modules/glob-parent/README.md +134 -0
- package/website/node_modules/glob-parent/index.js +75 -0
- package/website/node_modules/glob-parent/package.json +54 -0
- package/website/node_modules/has/LICENSE-MIT +22 -0
- package/website/node_modules/has/README.md +18 -0
- package/website/node_modules/has/package.json +48 -0
- package/website/node_modules/has/src/index.js +5 -0
- package/website/node_modules/has/test/index.js +10 -0
- package/website/node_modules/inflight/LICENSE +15 -0
- package/website/node_modules/inflight/README.md +37 -0
- package/website/node_modules/inflight/inflight.js +54 -0
- package/website/node_modules/inflight/package.json +29 -0
- package/website/node_modules/inherits/LICENSE +16 -0
- package/website/node_modules/inherits/README.md +42 -0
- package/website/node_modules/inherits/inherits.js +9 -0
- package/website/node_modules/inherits/inherits_browser.js +27 -0
- package/website/node_modules/inherits/package.json +29 -0
- package/website/node_modules/is-binary-path/index.d.ts +17 -0
- package/website/node_modules/is-binary-path/index.js +7 -0
- package/website/node_modules/is-binary-path/license +9 -0
- package/website/node_modules/is-binary-path/package.json +40 -0
- package/website/node_modules/is-binary-path/readme.md +34 -0
- package/website/node_modules/is-core-module/.eslintrc +18 -0
- package/website/node_modules/is-core-module/.nycrc +9 -0
- package/website/node_modules/is-core-module/CHANGELOG.md +173 -0
- package/website/node_modules/is-core-module/LICENSE +20 -0
- package/website/node_modules/is-core-module/README.md +40 -0
- package/website/node_modules/is-core-module/core.json +158 -0
- package/website/node_modules/is-core-module/index.js +69 -0
- package/website/node_modules/is-core-module/package.json +73 -0
- package/website/node_modules/is-core-module/test/index.js +133 -0
- package/website/node_modules/is-extglob/LICENSE +21 -0
- package/website/node_modules/is-extglob/README.md +107 -0
- package/website/node_modules/is-extglob/index.js +20 -0
- package/website/node_modules/is-extglob/package.json +69 -0
- package/website/node_modules/is-glob/LICENSE +21 -0
- package/website/node_modules/is-glob/README.md +206 -0
- package/website/node_modules/is-glob/index.js +150 -0
- package/website/node_modules/is-glob/package.json +81 -0
- package/website/node_modules/is-number/LICENSE +21 -0
- package/website/node_modules/is-number/README.md +187 -0
- package/website/node_modules/is-number/index.js +18 -0
- package/website/node_modules/is-number/package.json +82 -0
- package/website/node_modules/jiti/LICENSE +21 -0
- package/website/node_modules/jiti/README.md +161 -0
- package/website/node_modules/jiti/bin/jiti.js +16 -0
- package/website/node_modules/jiti/dist/babel.d.ts +2 -0
- package/website/node_modules/jiti/dist/babel.js +1885 -0
- package/website/node_modules/jiti/dist/jiti.d.ts +19 -0
- package/website/node_modules/jiti/dist/jiti.js +1 -0
- package/website/node_modules/jiti/dist/plugins/babel-plugin-transform-import-meta.d.ts +4 -0
- package/website/node_modules/jiti/dist/plugins/import-meta-env.d.ts +5 -0
- package/website/node_modules/jiti/dist/types.d.ts +31 -0
- package/website/node_modules/jiti/dist/utils.d.ts +8 -0
- package/website/node_modules/jiti/lib/index.js +15 -0
- package/website/node_modules/jiti/package.json +81 -0
- package/website/node_modules/jiti/register.js +3 -0
- package/website/node_modules/lilconfig/LICENSE +21 -0
- package/website/node_modules/lilconfig/dist/index.d.ts +38 -0
- package/website/node_modules/lilconfig/dist/index.js +251 -0
- package/website/node_modules/lilconfig/package.json +48 -0
- package/website/node_modules/lilconfig/readme.md +118 -0
- package/website/node_modules/lines-and-columns/LICENSE +21 -0
- package/website/node_modules/lines-and-columns/README.md +33 -0
- package/website/node_modules/lines-and-columns/build/index.d.ts +13 -0
- package/website/node_modules/lines-and-columns/build/index.js +62 -0
- package/website/node_modules/lines-and-columns/package.json +49 -0
- package/website/node_modules/merge2/LICENSE +21 -0
- package/website/node_modules/merge2/README.md +144 -0
- package/website/node_modules/merge2/index.js +144 -0
- package/website/node_modules/merge2/package.json +43 -0
- package/website/node_modules/micromatch/LICENSE +21 -0
- package/website/node_modules/micromatch/README.md +1011 -0
- package/website/node_modules/micromatch/index.js +467 -0
- package/website/node_modules/micromatch/package.json +119 -0
- package/website/node_modules/minimatch/LICENSE +15 -0
- package/website/node_modules/minimatch/README.md +230 -0
- package/website/node_modules/minimatch/minimatch.js +947 -0
- package/website/node_modules/minimatch/package.json +33 -0
- package/website/node_modules/mz/HISTORY.md +66 -0
- package/website/node_modules/mz/LICENSE +22 -0
- package/website/node_modules/mz/README.md +106 -0
- package/website/node_modules/mz/child_process.js +8 -0
- package/website/node_modules/mz/crypto.js +9 -0
- package/website/node_modules/mz/dns.js +16 -0
- package/website/node_modules/mz/fs.js +62 -0
- package/website/node_modules/mz/index.js +8 -0
- package/website/node_modules/mz/package.json +44 -0
- package/website/node_modules/mz/readline.js +64 -0
- package/website/node_modules/mz/zlib.js +13 -0
- package/website/node_modules/nanoid/LICENSE +20 -0
- package/website/node_modules/nanoid/README.md +39 -0
- package/website/node_modules/nanoid/async/index.browser.cjs +34 -0
- package/website/node_modules/nanoid/async/index.browser.js +34 -0
- package/website/node_modules/nanoid/async/index.cjs +35 -0
- package/website/node_modules/nanoid/async/index.d.ts +56 -0
- package/website/node_modules/nanoid/async/index.js +35 -0
- package/website/node_modules/nanoid/async/index.native.js +26 -0
- package/website/node_modules/nanoid/async/package.json +12 -0
- package/website/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/website/node_modules/nanoid/index.browser.cjs +34 -0
- package/website/node_modules/nanoid/index.browser.js +34 -0
- package/website/node_modules/nanoid/index.cjs +45 -0
- package/website/node_modules/nanoid/index.d.ts +91 -0
- package/website/node_modules/nanoid/index.js +45 -0
- package/website/node_modules/nanoid/nanoid.js +1 -0
- package/website/node_modules/nanoid/non-secure/index.cjs +21 -0
- package/website/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/website/node_modules/nanoid/non-secure/index.js +21 -0
- package/website/node_modules/nanoid/non-secure/package.json +6 -0
- package/website/node_modules/nanoid/package.json +66 -0
- package/website/node_modules/nanoid/url-alphabet/index.cjs +3 -0
- package/website/node_modules/nanoid/url-alphabet/index.js +3 -0
- package/website/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/website/node_modules/normalize-path/LICENSE +21 -0
- package/website/node_modules/normalize-path/README.md +127 -0
- package/website/node_modules/normalize-path/index.js +35 -0
- package/website/node_modules/normalize-path/package.json +77 -0
- package/website/node_modules/object-assign/index.js +90 -0
- package/website/node_modules/object-assign/license +21 -0
- package/website/node_modules/object-assign/package.json +42 -0
- package/website/node_modules/object-assign/readme.md +61 -0
- package/website/node_modules/object-hash/LICENSE +22 -0
- package/website/node_modules/object-hash/dist/object_hash.js +1 -0
- package/website/node_modules/object-hash/index.js +453 -0
- package/website/node_modules/object-hash/package.json +53 -0
- package/website/node_modules/object-hash/readme.markdown +198 -0
- package/website/node_modules/once/LICENSE +15 -0
- package/website/node_modules/once/README.md +79 -0
- package/website/node_modules/once/once.js +42 -0
- package/website/node_modules/once/package.json +33 -0
- package/website/node_modules/path-is-absolute/index.js +20 -0
- package/website/node_modules/path-is-absolute/license +21 -0
- package/website/node_modules/path-is-absolute/package.json +43 -0
- package/website/node_modules/path-is-absolute/readme.md +59 -0
- package/website/node_modules/path-parse/LICENSE +21 -0
- package/website/node_modules/path-parse/README.md +42 -0
- package/website/node_modules/path-parse/index.js +75 -0
- package/website/node_modules/path-parse/package.json +33 -0
- package/website/node_modules/picocolors/LICENSE +15 -0
- package/website/node_modules/picocolors/README.md +21 -0
- package/website/node_modules/picocolors/package.json +25 -0
- package/website/node_modules/picocolors/picocolors.browser.js +4 -0
- package/website/node_modules/picocolors/picocolors.d.ts +5 -0
- package/website/node_modules/picocolors/picocolors.js +58 -0
- package/website/node_modules/picocolors/types.ts +30 -0
- package/website/node_modules/picomatch/CHANGELOG.md +136 -0
- package/website/node_modules/picomatch/LICENSE +21 -0
- package/website/node_modules/picomatch/README.md +708 -0
- package/website/node_modules/picomatch/index.js +3 -0
- package/website/node_modules/picomatch/lib/constants.js +179 -0
- package/website/node_modules/picomatch/lib/parse.js +1091 -0
- package/website/node_modules/picomatch/lib/picomatch.js +342 -0
- package/website/node_modules/picomatch/lib/scan.js +391 -0
- package/website/node_modules/picomatch/lib/utils.js +64 -0
- package/website/node_modules/picomatch/package.json +81 -0
- package/website/node_modules/pify/index.js +68 -0
- package/website/node_modules/pify/license +21 -0
- package/website/node_modules/pify/package.json +48 -0
- package/website/node_modules/pify/readme.md +119 -0
- package/website/node_modules/pirates/LICENSE +21 -0
- package/website/node_modules/pirates/README.md +69 -0
- package/website/node_modules/pirates/index.d.ts +82 -0
- package/website/node_modules/pirates/lib/index.js +139 -0
- package/website/node_modules/pirates/package.json +74 -0
- package/website/node_modules/postcss/LICENSE +20 -0
- package/website/node_modules/postcss/README.md +28 -0
- package/website/node_modules/postcss/lib/at-rule.d.ts +115 -0
- package/website/node_modules/postcss/lib/at-rule.js +25 -0
- package/website/node_modules/postcss/lib/comment.d.ts +67 -0
- package/website/node_modules/postcss/lib/comment.js +13 -0
- package/website/node_modules/postcss/lib/container.d.ts +452 -0
- package/website/node_modules/postcss/lib/container.js +439 -0
- package/website/node_modules/postcss/lib/css-syntax-error.d.ts +248 -0
- package/website/node_modules/postcss/lib/css-syntax-error.js +100 -0
- package/website/node_modules/postcss/lib/declaration.d.ts +148 -0
- package/website/node_modules/postcss/lib/declaration.js +24 -0
- package/website/node_modules/postcss/lib/document.d.ts +68 -0
- package/website/node_modules/postcss/lib/document.js +33 -0
- package/website/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- package/website/node_modules/postcss/lib/fromJSON.js +54 -0
- package/website/node_modules/postcss/lib/input.d.ts +194 -0
- package/website/node_modules/postcss/lib/input.js +248 -0
- package/website/node_modules/postcss/lib/lazy-result.d.ts +190 -0
- package/website/node_modules/postcss/lib/lazy-result.js +550 -0
- package/website/node_modules/postcss/lib/list.d.ts +57 -0
- package/website/node_modules/postcss/lib/list.js +58 -0
- package/website/node_modules/postcss/lib/map-generator.js +359 -0
- package/website/node_modules/postcss/lib/no-work-result.d.ts +46 -0
- package/website/node_modules/postcss/lib/no-work-result.js +135 -0
- package/website/node_modules/postcss/lib/node.d.ts +536 -0
- package/website/node_modules/postcss/lib/node.js +381 -0
- package/website/node_modules/postcss/lib/parse.d.ts +9 -0
- package/website/node_modules/postcss/lib/parse.js +42 -0
- package/website/node_modules/postcss/lib/parser.js +610 -0
- package/website/node_modules/postcss/lib/postcss.d.mts +72 -0
- package/website/node_modules/postcss/lib/postcss.d.ts +441 -0
- package/website/node_modules/postcss/lib/postcss.js +101 -0
- package/website/node_modules/postcss/lib/postcss.mjs +30 -0
- package/website/node_modules/postcss/lib/previous-map.d.ts +81 -0
- package/website/node_modules/postcss/lib/previous-map.js +142 -0
- package/website/node_modules/postcss/lib/processor.d.ts +115 -0
- package/website/node_modules/postcss/lib/processor.js +67 -0
- package/website/node_modules/postcss/lib/result.d.ts +206 -0
- package/website/node_modules/postcss/lib/result.js +42 -0
- package/website/node_modules/postcss/lib/root.d.ts +86 -0
- package/website/node_modules/postcss/lib/root.js +61 -0
- package/website/node_modules/postcss/lib/rule.d.ts +113 -0
- package/website/node_modules/postcss/lib/rule.js +27 -0
- package/website/node_modules/postcss/lib/stringifier.d.ts +46 -0
- package/website/node_modules/postcss/lib/stringifier.js +353 -0
- package/website/node_modules/postcss/lib/stringify.d.ts +9 -0
- package/website/node_modules/postcss/lib/stringify.js +11 -0
- package/website/node_modules/postcss/lib/symbols.js +5 -0
- package/website/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/website/node_modules/postcss/lib/tokenize.js +266 -0
- package/website/node_modules/postcss/lib/warn-once.js +13 -0
- package/website/node_modules/postcss/lib/warning.d.ts +147 -0
- package/website/node_modules/postcss/lib/warning.js +37 -0
- package/website/node_modules/postcss/package.json +88 -0
- package/website/node_modules/postcss-import/LICENSE +20 -0
- package/website/node_modules/postcss-import/README.md +244 -0
- package/website/node_modules/postcss-import/index.js +420 -0
- package/website/node_modules/postcss-import/lib/assign-layer-names.js +17 -0
- package/website/node_modules/postcss-import/lib/data-url.js +17 -0
- package/website/node_modules/postcss-import/lib/join-layer.js +9 -0
- package/website/node_modules/postcss-import/lib/join-media.js +28 -0
- package/website/node_modules/postcss-import/lib/load-content.js +12 -0
- package/website/node_modules/postcss-import/lib/parse-statements.js +172 -0
- package/website/node_modules/postcss-import/lib/process-content.js +59 -0
- package/website/node_modules/postcss-import/lib/resolve-id.js +42 -0
- package/website/node_modules/postcss-import/package.json +65 -0
- package/website/node_modules/postcss-js/LICENSE +20 -0
- package/website/node_modules/postcss-js/README.md +22 -0
- package/website/node_modules/postcss-js/async.js +15 -0
- package/website/node_modules/postcss-js/index.js +11 -0
- package/website/node_modules/postcss-js/index.mjs +8 -0
- package/website/node_modules/postcss-js/objectifier.js +85 -0
- package/website/node_modules/postcss-js/package.json +42 -0
- package/website/node_modules/postcss-js/parser.js +104 -0
- package/website/node_modules/postcss-js/process-result.js +11 -0
- package/website/node_modules/postcss-js/sync.js +12 -0
- package/website/node_modules/postcss-load-config/LICENSE +20 -0
- package/website/node_modules/postcss-load-config/README.md +491 -0
- package/website/node_modules/postcss-load-config/package.json +48 -0
- package/website/node_modules/postcss-load-config/src/index.d.ts +65 -0
- package/website/node_modules/postcss-load-config/src/index.js +179 -0
- package/website/node_modules/postcss-load-config/src/options.js +47 -0
- package/website/node_modules/postcss-load-config/src/plugins.js +85 -0
- package/website/node_modules/postcss-load-config/src/req.js +10 -0
- package/website/node_modules/postcss-nested/LICENSE +20 -0
- package/website/node_modules/postcss-nested/README.md +86 -0
- package/website/node_modules/postcss-nested/index.d.ts +41 -0
- package/website/node_modules/postcss-nested/index.js +361 -0
- package/website/node_modules/postcss-nested/package.json +28 -0
- package/website/node_modules/postcss-selector-parser/API.md +872 -0
- package/website/node_modules/postcss-selector-parser/CHANGELOG.md +525 -0
- package/website/node_modules/postcss-selector-parser/LICENSE-MIT +22 -0
- package/website/node_modules/postcss-selector-parser/README.md +49 -0
- package/website/node_modules/postcss-selector-parser/dist/index.js +17 -0
- package/website/node_modules/postcss-selector-parser/dist/parser.js +1012 -0
- package/website/node_modules/postcss-selector-parser/dist/processor.js +170 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/attribute.js +448 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/className.js +50 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/combinator.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/comment.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/constructors.js +65 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/container.js +308 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/guards.js +58 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/id.js +25 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/index.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/namespace.js +80 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/nesting.js +22 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/node.js +192 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/pseudo.js +26 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/root.js +44 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/selector.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/string.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/tag.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/types.js +28 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/universal.js +22 -0
- package/website/node_modules/postcss-selector-parser/dist/sortAscending.js +11 -0
- package/website/node_modules/postcss-selector-parser/dist/tokenTypes.js +70 -0
- package/website/node_modules/postcss-selector-parser/dist/tokenize.js +239 -0
- package/website/node_modules/postcss-selector-parser/dist/util/ensureObject.js +17 -0
- package/website/node_modules/postcss-selector-parser/dist/util/getProp.js +18 -0
- package/website/node_modules/postcss-selector-parser/dist/util/index.js +13 -0
- package/website/node_modules/postcss-selector-parser/dist/util/stripComments.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/util/unesc.js +76 -0
- package/website/node_modules/postcss-selector-parser/package.json +79 -0
- package/website/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts +555 -0
- package/website/node_modules/postcss-value-parser/LICENSE +22 -0
- package/website/node_modules/postcss-value-parser/README.md +263 -0
- package/website/node_modules/postcss-value-parser/lib/index.d.ts +177 -0
- package/website/node_modules/postcss-value-parser/lib/index.js +28 -0
- package/website/node_modules/postcss-value-parser/lib/parse.js +321 -0
- package/website/node_modules/postcss-value-parser/lib/stringify.js +48 -0
- package/website/node_modules/postcss-value-parser/lib/unit.js +120 -0
- package/website/node_modules/postcss-value-parser/lib/walk.js +22 -0
- package/website/node_modules/postcss-value-parser/package.json +58 -0
- package/website/node_modules/queue-microtask/LICENSE +20 -0
- package/website/node_modules/queue-microtask/README.md +90 -0
- package/website/node_modules/queue-microtask/index.d.ts +2 -0
- package/website/node_modules/queue-microtask/index.js +9 -0
- package/website/node_modules/queue-microtask/package.json +55 -0
- package/website/node_modules/read-cache/LICENSE +20 -0
- package/website/node_modules/read-cache/README.md +46 -0
- package/website/node_modules/read-cache/index.js +78 -0
- package/website/node_modules/read-cache/package.json +34 -0
- package/website/node_modules/readdirp/LICENSE +21 -0
- package/website/node_modules/readdirp/README.md +122 -0
- package/website/node_modules/readdirp/index.d.ts +43 -0
- package/website/node_modules/readdirp/index.js +287 -0
- package/website/node_modules/readdirp/package.json +122 -0
- package/website/node_modules/resolve/.editorconfig +37 -0
- package/website/node_modules/resolve/.eslintrc +65 -0
- package/website/node_modules/resolve/.github/FUNDING.yml +12 -0
- package/website/node_modules/resolve/LICENSE +21 -0
- package/website/node_modules/resolve/SECURITY.md +3 -0
- package/website/node_modules/resolve/async.js +3 -0
- package/website/node_modules/resolve/bin/resolve +50 -0
- package/website/node_modules/resolve/example/async.js +5 -0
- package/website/node_modules/resolve/example/sync.js +3 -0
- package/website/node_modules/resolve/index.js +6 -0
- package/website/node_modules/resolve/lib/async.js +329 -0
- package/website/node_modules/resolve/lib/caller.js +8 -0
- package/website/node_modules/resolve/lib/core.js +12 -0
- package/website/node_modules/resolve/lib/core.json +158 -0
- package/website/node_modules/resolve/lib/homedir.js +24 -0
- package/website/node_modules/resolve/lib/is-core.js +5 -0
- package/website/node_modules/resolve/lib/node-modules-paths.js +42 -0
- package/website/node_modules/resolve/lib/normalize-options.js +10 -0
- package/website/node_modules/resolve/lib/sync.js +208 -0
- package/website/node_modules/resolve/package.json +71 -0
- package/website/node_modules/resolve/readme.markdown +301 -0
- package/website/node_modules/resolve/sync.js +3 -0
- package/website/node_modules/resolve/test/core.js +88 -0
- package/website/node_modules/resolve/test/dotdot/abc/index.js +2 -0
- package/website/node_modules/resolve/test/dotdot/index.js +1 -0
- package/website/node_modules/resolve/test/dotdot.js +29 -0
- package/website/node_modules/resolve/test/faulty_basedir.js +29 -0
- package/website/node_modules/resolve/test/filter.js +34 -0
- package/website/node_modules/resolve/test/filter_sync.js +33 -0
- package/website/node_modules/resolve/test/home_paths.js +127 -0
- package/website/node_modules/resolve/test/home_paths_sync.js +114 -0
- package/website/node_modules/resolve/test/mock.js +315 -0
- package/website/node_modules/resolve/test/mock_sync.js +214 -0
- package/website/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
- package/website/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
- package/website/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
- package/website/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
- package/website/node_modules/resolve/test/module_dir.js +56 -0
- package/website/node_modules/resolve/test/node-modules-paths.js +143 -0
- package/website/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
- package/website/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
- package/website/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
- package/website/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
- package/website/node_modules/resolve/test/node_path.js +70 -0
- package/website/node_modules/resolve/test/nonstring.js +9 -0
- package/website/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
- package/website/node_modules/resolve/test/pathfilter.js +75 -0
- package/website/node_modules/resolve/test/precedence/aaa/index.js +1 -0
- package/website/node_modules/resolve/test/precedence/aaa/main.js +1 -0
- package/website/node_modules/resolve/test/precedence/aaa.js +1 -0
- package/website/node_modules/resolve/test/precedence/bbb/main.js +1 -0
- package/website/node_modules/resolve/test/precedence/bbb.js +1 -0
- package/website/node_modules/resolve/test/precedence.js +23 -0
- package/website/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- package/website/node_modules/resolve/test/resolver/baz/package.json +4 -0
- package/website/node_modules/resolve/test/resolver/baz/quux.js +1 -0
- package/website/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
- package/website/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
- package/website/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
- package/website/node_modules/resolve/test/resolver/cup.coffee +1 -0
- package/website/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
- package/website/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
- package/website/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
- package/website/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
- package/website/node_modules/resolve/test/resolver/false_main/index.js +0 -0
- package/website/node_modules/resolve/test/resolver/false_main/package.json +4 -0
- package/website/node_modules/resolve/test/resolver/foo.js +1 -0
- package/website/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
- package/website/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
- package/website/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
- package/website/node_modules/resolve/test/resolver/malformed_package_json/index.js +0 -0
- package/website/node_modules/resolve/test/resolver/malformed_package_json/package.json +1 -0
- package/website/node_modules/resolve/test/resolver/mug.coffee +0 -0
- package/website/node_modules/resolve/test/resolver/mug.js +0 -0
- package/website/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
- package/website/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
- package/website/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
- package/website/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
- package/website/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
- package/website/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
- package/website/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +26 -0
- package/website/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +15 -0
- package/website/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +12 -0
- package/website/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- package/website/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- package/website/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
- package/website/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
- package/website/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
- package/website/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/website/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
- package/website/node_modules/resolve/test/resolver/symlinked/package/bar.js +1 -0
- package/website/node_modules/resolve/test/resolver/symlinked/package/package.json +3 -0
- package/website/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
- package/website/node_modules/resolve/test/resolver.js +595 -0
- package/website/node_modules/resolve/test/resolver_sync.js +726 -0
- package/website/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
- package/website/node_modules/resolve/test/shadowed_core.js +54 -0
- package/website/node_modules/resolve/test/subdirs.js +13 -0
- package/website/node_modules/resolve/test/symlinks.js +176 -0
- package/website/node_modules/reusify/.coveralls.yml +1 -0
- package/website/node_modules/reusify/.travis.yml +28 -0
- package/website/node_modules/reusify/LICENSE +22 -0
- package/website/node_modules/reusify/README.md +145 -0
- package/website/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
- package/website/node_modules/reusify/benchmarks/fib.js +13 -0
- package/website/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
- package/website/node_modules/reusify/package.json +45 -0
- package/website/node_modules/reusify/reusify.js +33 -0
- package/website/node_modules/reusify/test.js +66 -0
- package/website/node_modules/run-parallel/LICENSE +20 -0
- package/website/node_modules/run-parallel/README.md +85 -0
- package/website/node_modules/run-parallel/index.js +51 -0
- package/website/node_modules/run-parallel/package.json +58 -0
- package/website/node_modules/source-map-js/CHANGELOG.md +320 -0
- package/website/node_modules/source-map-js/LICENSE +28 -0
- package/website/node_modules/source-map-js/README.md +758 -0
- package/website/node_modules/source-map-js/lib/array-set.js +121 -0
- package/website/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/website/node_modules/source-map-js/lib/base64.js +67 -0
- package/website/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/website/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/website/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/website/node_modules/source-map-js/lib/source-map-consumer.js +1184 -0
- package/website/node_modules/source-map-js/lib/source-map-generator.js +425 -0
- package/website/node_modules/source-map-js/lib/source-node.js +413 -0
- package/website/node_modules/source-map-js/lib/util.js +594 -0
- package/website/node_modules/source-map-js/package.json +71 -0
- package/website/node_modules/source-map-js/source-map.d.ts +115 -0
- package/website/node_modules/source-map-js/source-map.js +8 -0
- package/website/node_modules/sucrase/LICENSE +21 -0
- package/website/node_modules/sucrase/README.md +295 -0
- package/website/node_modules/sucrase/bin/sucrase +3 -0
- package/website/node_modules/sucrase/bin/sucrase-node +18 -0
- package/website/node_modules/sucrase/dist/CJSImportProcessor.js +456 -0
- package/website/node_modules/sucrase/dist/HelperManager.js +176 -0
- package/website/node_modules/sucrase/dist/NameManager.js +27 -0
- package/website/node_modules/sucrase/dist/Options-gen-types.js +42 -0
- package/website/node_modules/sucrase/dist/Options.js +101 -0
- package/website/node_modules/sucrase/dist/TokenProcessor.js +357 -0
- package/website/node_modules/sucrase/dist/cli.js +320 -0
- package/website/node_modules/sucrase/dist/computeSourceMap.js +89 -0
- package/website/node_modules/sucrase/dist/esm/CJSImportProcessor.js +456 -0
- package/website/node_modules/sucrase/dist/esm/HelperManager.js +176 -0
- package/website/node_modules/sucrase/dist/esm/NameManager.js +27 -0
- package/website/node_modules/sucrase/dist/esm/Options-gen-types.js +42 -0
- package/website/node_modules/sucrase/dist/esm/Options.js +101 -0
- package/website/node_modules/sucrase/dist/esm/TokenProcessor.js +357 -0
- package/website/node_modules/sucrase/dist/esm/cli.js +320 -0
- package/website/node_modules/sucrase/dist/esm/computeSourceMap.js +89 -0
- package/website/node_modules/sucrase/dist/esm/identifyShadowedGlobals.js +98 -0
- package/website/node_modules/sucrase/dist/esm/index.js +133 -0
- package/website/node_modules/sucrase/dist/esm/parser/index.js +31 -0
- package/website/node_modules/sucrase/dist/esm/parser/plugins/flow.js +1105 -0
- package/website/node_modules/sucrase/dist/esm/parser/plugins/jsx/index.js +367 -0
- package/website/node_modules/sucrase/dist/esm/parser/plugins/jsx/xhtml.js +256 -0
- package/website/node_modules/sucrase/dist/esm/parser/plugins/types.js +37 -0
- package/website/node_modules/sucrase/dist/esm/parser/plugins/typescript.js +1632 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/index.js +1004 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/keywords.js +43 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/readWord.js +64 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/readWordTree.js +671 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/state.js +106 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/types.js +361 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/base.js +60 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/expression.js +1022 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/index.js +18 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/lval.js +159 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/statement.js +1332 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/util.js +104 -0
- package/website/node_modules/sucrase/dist/esm/parser/util/charcodes.js +115 -0
- package/website/node_modules/sucrase/dist/esm/parser/util/identifier.js +34 -0
- package/website/node_modules/sucrase/dist/esm/parser/util/whitespace.js +33 -0
- package/website/node_modules/sucrase/dist/esm/register.js +88 -0
- package/website/node_modules/sucrase/dist/esm/transformers/CJSImportTransformer.js +916 -0
- package/website/node_modules/sucrase/dist/esm/transformers/ESMImportTransformer.js +415 -0
- package/website/node_modules/sucrase/dist/esm/transformers/FlowTransformer.js +182 -0
- package/website/node_modules/sucrase/dist/esm/transformers/JSXTransformer.js +733 -0
- package/website/node_modules/sucrase/dist/esm/transformers/JestHoistTransformer.js +111 -0
- package/website/node_modules/sucrase/dist/esm/transformers/NumericSeparatorTransformer.js +20 -0
- package/website/node_modules/sucrase/dist/esm/transformers/OptionalCatchBindingTransformer.js +19 -0
- package/website/node_modules/sucrase/dist/esm/transformers/OptionalChainingNullishTransformer.js +155 -0
- package/website/node_modules/sucrase/dist/esm/transformers/ReactDisplayNameTransformer.js +160 -0
- package/website/node_modules/sucrase/dist/esm/transformers/ReactHotLoaderTransformer.js +69 -0
- package/website/node_modules/sucrase/dist/esm/transformers/RootTransformer.js +462 -0
- package/website/node_modules/sucrase/dist/esm/transformers/Transformer.js +16 -0
- package/website/node_modules/sucrase/dist/esm/transformers/TypeScriptTransformer.js +279 -0
- package/website/node_modules/sucrase/dist/esm/util/elideImportEquals.js +29 -0
- package/website/node_modules/sucrase/dist/esm/util/formatTokens.js +74 -0
- package/website/node_modules/sucrase/dist/esm/util/getClassInfo.js +352 -0
- package/website/node_modules/sucrase/dist/esm/util/getDeclarationInfo.js +40 -0
- package/website/node_modules/sucrase/dist/esm/util/getIdentifierNames.js +15 -0
- package/website/node_modules/sucrase/dist/esm/util/getImportExportSpecifierInfo.js +92 -0
- package/website/node_modules/sucrase/dist/esm/util/getJSXPragmaInfo.js +22 -0
- package/website/node_modules/sucrase/dist/esm/util/getNonTypeIdentifiers.js +43 -0
- package/website/node_modules/sucrase/dist/esm/util/getTSImportedNames.js +84 -0
- package/website/node_modules/sucrase/dist/esm/util/isAsyncOperation.js +38 -0
- package/website/node_modules/sucrase/dist/esm/util/isExportFrom.js +18 -0
- package/website/node_modules/sucrase/dist/esm/util/isIdentifier.js +81 -0
- package/website/node_modules/sucrase/dist/esm/util/removeMaybeImportAttributes.js +22 -0
- package/website/node_modules/sucrase/dist/esm/util/shouldElideDefaultExport.js +38 -0
- package/website/node_modules/sucrase/dist/identifyShadowedGlobals.js +98 -0
- package/website/node_modules/sucrase/dist/index.js +133 -0
- package/website/node_modules/sucrase/dist/parser/index.js +31 -0
- package/website/node_modules/sucrase/dist/parser/plugins/flow.js +1105 -0
- package/website/node_modules/sucrase/dist/parser/plugins/jsx/index.js +367 -0
- package/website/node_modules/sucrase/dist/parser/plugins/jsx/xhtml.js +256 -0
- package/website/node_modules/sucrase/dist/parser/plugins/types.js +37 -0
- package/website/node_modules/sucrase/dist/parser/plugins/typescript.js +1632 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/index.js +1004 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/keywords.js +43 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/readWord.js +64 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/readWordTree.js +671 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/state.js +106 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/types.js +361 -0
- package/website/node_modules/sucrase/dist/parser/traverser/base.js +60 -0
- package/website/node_modules/sucrase/dist/parser/traverser/expression.js +1022 -0
- package/website/node_modules/sucrase/dist/parser/traverser/index.js +18 -0
- package/website/node_modules/sucrase/dist/parser/traverser/lval.js +159 -0
- package/website/node_modules/sucrase/dist/parser/traverser/statement.js +1332 -0
- package/website/node_modules/sucrase/dist/parser/traverser/util.js +104 -0
- package/website/node_modules/sucrase/dist/parser/util/charcodes.js +115 -0
- package/website/node_modules/sucrase/dist/parser/util/identifier.js +34 -0
- package/website/node_modules/sucrase/dist/parser/util/whitespace.js +33 -0
- package/website/node_modules/sucrase/dist/register.js +88 -0
- package/website/node_modules/sucrase/dist/transformers/CJSImportTransformer.js +916 -0
- package/website/node_modules/sucrase/dist/transformers/ESMImportTransformer.js +415 -0
- package/website/node_modules/sucrase/dist/transformers/FlowTransformer.js +182 -0
- package/website/node_modules/sucrase/dist/transformers/JSXTransformer.js +733 -0
- package/website/node_modules/sucrase/dist/transformers/JestHoistTransformer.js +111 -0
- package/website/node_modules/sucrase/dist/transformers/NumericSeparatorTransformer.js +20 -0
- package/website/node_modules/sucrase/dist/transformers/OptionalCatchBindingTransformer.js +19 -0
- package/website/node_modules/sucrase/dist/transformers/OptionalChainingNullishTransformer.js +155 -0
- package/website/node_modules/sucrase/dist/transformers/ReactDisplayNameTransformer.js +160 -0
- package/website/node_modules/sucrase/dist/transformers/ReactHotLoaderTransformer.js +69 -0
- package/website/node_modules/sucrase/dist/transformers/RootTransformer.js +462 -0
- package/website/node_modules/sucrase/dist/transformers/Transformer.js +16 -0
- package/website/node_modules/sucrase/dist/transformers/TypeScriptTransformer.js +279 -0
- package/website/node_modules/sucrase/dist/types/CJSImportProcessor.d.ts +67 -0
- package/website/node_modules/sucrase/dist/types/HelperManager.d.ts +15 -0
- package/website/node_modules/sucrase/dist/types/NameManager.d.ts +7 -0
- package/website/node_modules/sucrase/dist/types/Options-gen-types.d.ts +9 -0
- package/website/node_modules/sucrase/dist/types/Options.d.ts +90 -0
- package/website/node_modules/sucrase/dist/types/TokenProcessor.d.ts +87 -0
- package/website/node_modules/sucrase/dist/types/cli.d.ts +1 -0
- package/website/node_modules/sucrase/dist/types/computeSourceMap.d.ts +17 -0
- package/website/node_modules/sucrase/dist/types/identifyShadowedGlobals.d.ts +12 -0
- package/website/node_modules/sucrase/dist/types/index.d.ts +26 -0
- package/website/node_modules/sucrase/dist/types/parser/index.d.ts +8 -0
- package/website/node_modules/sucrase/dist/types/parser/plugins/flow.d.ts +27 -0
- package/website/node_modules/sucrase/dist/types/parser/plugins/jsx/index.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/parser/plugins/jsx/xhtml.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/parser/plugins/types.d.ts +5 -0
- package/website/node_modules/sucrase/dist/types/parser/plugins/typescript.d.ts +49 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/index.d.ts +93 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/keywords.d.ts +43 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/readWord.d.ts +7 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/readWordTree.d.ts +1 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/state.d.ts +50 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/types.d.ts +126 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/base.d.ts +16 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/expression.d.ts +34 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/index.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/lval.d.ts +9 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/statement.d.ts +20 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/util.d.ts +17 -0
- package/website/node_modules/sucrase/dist/types/parser/util/charcodes.d.ts +107 -0
- package/website/node_modules/sucrase/dist/types/parser/util/identifier.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/parser/util/whitespace.d.ts +3 -0
- package/website/node_modules/sucrase/dist/types/register.d.ts +14 -0
- package/website/node_modules/sucrase/dist/types/transformers/CJSImportTransformer.d.ts +149 -0
- package/website/node_modules/sucrase/dist/types/transformers/ESMImportTransformer.d.ts +52 -0
- package/website/node_modules/sucrase/dist/types/transformers/FlowTransformer.d.ts +79 -0
- package/website/node_modules/sucrase/dist/types/transformers/JSXTransformer.d.ts +144 -0
- package/website/node_modules/sucrase/dist/types/transformers/JestHoistTransformer.d.ts +32 -0
- package/website/node_modules/sucrase/dist/types/transformers/NumericSeparatorTransformer.d.ts +7 -0
- package/website/node_modules/sucrase/dist/types/transformers/OptionalCatchBindingTransformer.d.ts +9 -0
- package/website/node_modules/sucrase/dist/types/transformers/OptionalChainingNullishTransformer.d.ts +36 -0
- package/website/node_modules/sucrase/dist/types/transformers/ReactDisplayNameTransformer.d.ts +29 -0
- package/website/node_modules/sucrase/dist/types/transformers/ReactHotLoaderTransformer.d.ts +12 -0
- package/website/node_modules/sucrase/dist/types/transformers/RootTransformer.d.ts +52 -0
- package/website/node_modules/sucrase/dist/types/transformers/Transformer.d.ts +6 -0
- package/website/node_modules/sucrase/dist/types/transformers/TypeScriptTransformer.d.ts +104 -0
- package/website/node_modules/sucrase/dist/types/util/elideImportEquals.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/util/formatTokens.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/util/getClassInfo.d.ts +34 -0
- package/website/node_modules/sucrase/dist/types/util/getDeclarationInfo.d.ts +18 -0
- package/website/node_modules/sucrase/dist/types/util/getIdentifierNames.d.ts +5 -0
- package/website/node_modules/sucrase/dist/types/util/getImportExportSpecifierInfo.d.ts +36 -0
- package/website/node_modules/sucrase/dist/types/util/getJSXPragmaInfo.d.ts +8 -0
- package/website/node_modules/sucrase/dist/types/util/getNonTypeIdentifiers.d.ts +3 -0
- package/website/node_modules/sucrase/dist/types/util/getTSImportedNames.d.ts +9 -0
- package/website/node_modules/sucrase/dist/types/util/isAsyncOperation.d.ts +11 -0
- package/website/node_modules/sucrase/dist/types/util/isExportFrom.d.ts +6 -0
- package/website/node_modules/sucrase/dist/types/util/isIdentifier.d.ts +8 -0
- package/website/node_modules/sucrase/dist/types/util/removeMaybeImportAttributes.d.ts +6 -0
- package/website/node_modules/sucrase/dist/types/util/shouldElideDefaultExport.d.ts +6 -0
- package/website/node_modules/sucrase/dist/util/elideImportEquals.js +29 -0
- package/website/node_modules/sucrase/dist/util/formatTokens.js +74 -0
- package/website/node_modules/sucrase/dist/util/getClassInfo.js +352 -0
- package/website/node_modules/sucrase/dist/util/getDeclarationInfo.js +40 -0
- package/website/node_modules/sucrase/dist/util/getIdentifierNames.js +15 -0
- package/website/node_modules/sucrase/dist/util/getImportExportSpecifierInfo.js +92 -0
- package/website/node_modules/sucrase/dist/util/getJSXPragmaInfo.js +22 -0
- package/website/node_modules/sucrase/dist/util/getNonTypeIdentifiers.js +43 -0
- package/website/node_modules/sucrase/dist/util/getTSImportedNames.js +84 -0
- package/website/node_modules/sucrase/dist/util/isAsyncOperation.js +38 -0
- package/website/node_modules/sucrase/dist/util/isExportFrom.js +18 -0
- package/website/node_modules/sucrase/dist/util/isIdentifier.js +81 -0
- package/website/node_modules/sucrase/dist/util/removeMaybeImportAttributes.js +22 -0
- package/website/node_modules/sucrase/dist/util/shouldElideDefaultExport.js +38 -0
- package/website/node_modules/sucrase/package.json +89 -0
- package/website/node_modules/sucrase/register/index.js +1 -0
- package/website/node_modules/sucrase/register/js.js +1 -0
- package/website/node_modules/sucrase/register/jsx.js +1 -0
- package/website/node_modules/sucrase/register/ts-legacy-module-interop.js +1 -0
- package/website/node_modules/sucrase/register/ts.js +1 -0
- package/website/node_modules/sucrase/register/tsx-legacy-module-interop.js +1 -0
- package/website/node_modules/sucrase/register/tsx.js +1 -0
- package/website/node_modules/sucrase/ts-node-plugin/index.js +83 -0
- package/website/node_modules/supports-preserve-symlinks-flag/.eslintrc +14 -0
- package/website/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +12 -0
- package/website/node_modules/supports-preserve-symlinks-flag/.nycrc +9 -0
- package/website/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +22 -0
- package/website/node_modules/supports-preserve-symlinks-flag/LICENSE +21 -0
- package/website/node_modules/supports-preserve-symlinks-flag/README.md +42 -0
- package/website/node_modules/supports-preserve-symlinks-flag/browser.js +3 -0
- package/website/node_modules/supports-preserve-symlinks-flag/index.js +9 -0
- package/website/node_modules/supports-preserve-symlinks-flag/package.json +70 -0
- package/website/node_modules/supports-preserve-symlinks-flag/test/index.js +29 -0
- package/website/node_modules/tailwindcss/CHANGELOG.md +2474 -0
- package/website/node_modules/tailwindcss/LICENSE +21 -0
- package/website/node_modules/tailwindcss/README.md +41 -0
- package/website/node_modules/tailwindcss/base.css +1 -0
- package/website/node_modules/tailwindcss/colors.d.ts +3 -0
- package/website/node_modules/tailwindcss/colors.js +2 -0
- package/website/node_modules/tailwindcss/components.css +1 -0
- package/website/node_modules/tailwindcss/defaultConfig.d.ts +3 -0
- package/website/node_modules/tailwindcss/defaultConfig.js +2 -0
- package/website/node_modules/tailwindcss/defaultTheme.d.ts +4 -0
- package/website/node_modules/tailwindcss/defaultTheme.js +2 -0
- package/website/node_modules/tailwindcss/lib/cli/build/deps.js +62 -0
- package/website/node_modules/tailwindcss/lib/cli/build/index.js +54 -0
- package/website/node_modules/tailwindcss/lib/cli/build/plugin.js +378 -0
- package/website/node_modules/tailwindcss/lib/cli/build/utils.js +88 -0
- package/website/node_modules/tailwindcss/lib/cli/build/watching.js +182 -0
- package/website/node_modules/tailwindcss/lib/cli/help/index.js +73 -0
- package/website/node_modules/tailwindcss/lib/cli/index.js +230 -0
- package/website/node_modules/tailwindcss/lib/cli/init/index.js +63 -0
- package/website/node_modules/tailwindcss/lib/cli-peer-dependencies.js +36 -0
- package/website/node_modules/tailwindcss/lib/cli.js +7 -0
- package/website/node_modules/tailwindcss/lib/corePluginList.js +187 -0
- package/website/node_modules/tailwindcss/lib/corePlugins.js +4177 -0
- package/website/node_modules/tailwindcss/lib/css/LICENSE +25 -0
- package/website/node_modules/tailwindcss/lib/css/preflight.css +378 -0
- package/website/node_modules/tailwindcss/lib/featureFlags.js +83 -0
- package/website/node_modules/tailwindcss/lib/index.js +2 -0
- package/website/node_modules/tailwindcss/lib/lib/cacheInvalidation.js +92 -0
- package/website/node_modules/tailwindcss/lib/lib/collapseAdjacentRules.js +61 -0
- package/website/node_modules/tailwindcss/lib/lib/collapseDuplicateDeclarations.js +85 -0
- package/website/node_modules/tailwindcss/lib/lib/content.js +181 -0
- package/website/node_modules/tailwindcss/lib/lib/defaultExtractor.js +243 -0
- package/website/node_modules/tailwindcss/lib/lib/detectNesting.js +45 -0
- package/website/node_modules/tailwindcss/lib/lib/evaluateTailwindFunctions.js +238 -0
- package/website/node_modules/tailwindcss/lib/lib/expandApplyAtRules.js +534 -0
- package/website/node_modules/tailwindcss/lib/lib/expandTailwindAtRules.js +274 -0
- package/website/node_modules/tailwindcss/lib/lib/findAtConfigPath.js +46 -0
- package/website/node_modules/tailwindcss/lib/lib/generateRules.js +890 -0
- package/website/node_modules/tailwindcss/lib/lib/getModuleDependencies.js +99 -0
- package/website/node_modules/tailwindcss/lib/lib/load-config.js +42 -0
- package/website/node_modules/tailwindcss/lib/lib/normalizeTailwindDirectives.js +89 -0
- package/website/node_modules/tailwindcss/lib/lib/offsets.js +306 -0
- package/website/node_modules/tailwindcss/lib/lib/partitionApplyAtRules.js +58 -0
- package/website/node_modules/tailwindcss/lib/lib/regex.js +74 -0
- package/website/node_modules/tailwindcss/lib/lib/remap-bitfield.js +89 -0
- package/website/node_modules/tailwindcss/lib/lib/resolveDefaultsAtRules.js +165 -0
- package/website/node_modules/tailwindcss/lib/lib/setupContextUtils.js +1273 -0
- package/website/node_modules/tailwindcss/lib/lib/setupTrackingContext.js +166 -0
- package/website/node_modules/tailwindcss/lib/lib/sharedState.js +87 -0
- package/website/node_modules/tailwindcss/lib/lib/substituteScreenAtRules.js +31 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/build/deps.js +89 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/build/index.js +53 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/build/plugin.js +375 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/build/utils.js +87 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/build/watching.js +179 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/help/index.js +72 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/index.js +214 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/init/index.js +52 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli.js +5 -0
- package/website/node_modules/tailwindcss/lib/oxide/postcss-plugin.js +2 -0
- package/website/node_modules/tailwindcss/lib/plugin.js +98 -0
- package/website/node_modules/tailwindcss/lib/postcss-plugins/nesting/README.md +42 -0
- package/website/node_modules/tailwindcss/lib/postcss-plugins/nesting/index.js +21 -0
- package/website/node_modules/tailwindcss/lib/postcss-plugins/nesting/plugin.js +89 -0
- package/website/node_modules/tailwindcss/lib/processTailwindFeatures.js +64 -0
- package/website/node_modules/tailwindcss/lib/public/colors.js +355 -0
- package/website/node_modules/tailwindcss/lib/public/create-plugin.js +17 -0
- package/website/node_modules/tailwindcss/lib/public/default-config.js +18 -0
- package/website/node_modules/tailwindcss/lib/public/default-theme.js +18 -0
- package/website/node_modules/tailwindcss/lib/public/load-config.js +12 -0
- package/website/node_modules/tailwindcss/lib/public/resolve-config.js +24 -0
- package/website/node_modules/tailwindcss/lib/util/applyImportantSelector.js +36 -0
- package/website/node_modules/tailwindcss/lib/util/bigSign.js +13 -0
- package/website/node_modules/tailwindcss/lib/util/buildMediaQuery.js +27 -0
- package/website/node_modules/tailwindcss/lib/util/cloneDeep.js +22 -0
- package/website/node_modules/tailwindcss/lib/util/cloneNodes.js +34 -0
- package/website/node_modules/tailwindcss/lib/util/color.js +116 -0
- package/website/node_modules/tailwindcss/lib/util/colorNames.js +752 -0
- package/website/node_modules/tailwindcss/lib/util/configurePlugins.js +23 -0
- package/website/node_modules/tailwindcss/lib/util/createPlugin.js +32 -0
- package/website/node_modules/tailwindcss/lib/util/createUtilityPlugin.js +53 -0
- package/website/node_modules/tailwindcss/lib/util/dataTypes.js +304 -0
- package/website/node_modules/tailwindcss/lib/util/defaults.js +27 -0
- package/website/node_modules/tailwindcss/lib/util/escapeClassName.js +24 -0
- package/website/node_modules/tailwindcss/lib/util/escapeCommas.js +13 -0
- package/website/node_modules/tailwindcss/lib/util/flattenColorPalette.js +18 -0
- package/website/node_modules/tailwindcss/lib/util/formatVariantSelector.js +263 -0
- package/website/node_modules/tailwindcss/lib/util/getAllConfigs.js +50 -0
- package/website/node_modules/tailwindcss/lib/util/hashConfig.js +21 -0
- package/website/node_modules/tailwindcss/lib/util/isKeyframeRule.js +13 -0
- package/website/node_modules/tailwindcss/lib/util/isPlainObject.js +17 -0
- package/website/node_modules/tailwindcss/lib/util/isSyntacticallyValidPropertyValue.js +74 -0
- package/website/node_modules/tailwindcss/lib/util/log.js +61 -0
- package/website/node_modules/tailwindcss/lib/util/nameClass.js +49 -0
- package/website/node_modules/tailwindcss/lib/util/negateValue.js +36 -0
- package/website/node_modules/tailwindcss/lib/util/normalizeConfig.js +282 -0
- package/website/node_modules/tailwindcss/lib/util/normalizeScreens.js +178 -0
- package/website/node_modules/tailwindcss/lib/util/parseAnimationValue.js +93 -0
- package/website/node_modules/tailwindcss/lib/util/parseBoxShadowValue.js +88 -0
- package/website/node_modules/tailwindcss/lib/util/parseDependency.js +47 -0
- package/website/node_modules/tailwindcss/lib/util/parseGlob.js +36 -0
- package/website/node_modules/tailwindcss/lib/util/parseObjectStyles.js +36 -0
- package/website/node_modules/tailwindcss/lib/util/pluginUtils.js +276 -0
- package/website/node_modules/tailwindcss/lib/util/prefixSelector.js +39 -0
- package/website/node_modules/tailwindcss/lib/util/pseudoElements.js +209 -0
- package/website/node_modules/tailwindcss/lib/util/removeAlphaVariables.js +31 -0
- package/website/node_modules/tailwindcss/lib/util/resolveConfig.js +256 -0
- package/website/node_modules/tailwindcss/lib/util/resolveConfigPath.js +70 -0
- package/website/node_modules/tailwindcss/lib/util/responsive.js +24 -0
- package/website/node_modules/tailwindcss/lib/util/splitAtTopLevelOnly.js +51 -0
- package/website/node_modules/tailwindcss/lib/util/tap.js +14 -0
- package/website/node_modules/tailwindcss/lib/util/toColorValue.js +13 -0
- package/website/node_modules/tailwindcss/lib/util/toPath.js +32 -0
- package/website/node_modules/tailwindcss/lib/util/transformThemeValue.js +73 -0
- package/website/node_modules/tailwindcss/lib/util/validateConfig.js +37 -0
- package/website/node_modules/tailwindcss/lib/util/validateFormalSyntax.js +26 -0
- package/website/node_modules/tailwindcss/lib/util/withAlphaVariable.js +79 -0
- package/website/node_modules/tailwindcss/lib/value-parser/LICENSE +22 -0
- package/website/node_modules/tailwindcss/lib/value-parser/README.md +3 -0
- package/website/node_modules/tailwindcss/lib/value-parser/index.d.js +2 -0
- package/website/node_modules/tailwindcss/lib/value-parser/index.js +22 -0
- package/website/node_modules/tailwindcss/lib/value-parser/parse.js +259 -0
- package/website/node_modules/tailwindcss/lib/value-parser/stringify.js +38 -0
- package/website/node_modules/tailwindcss/lib/value-parser/unit.js +86 -0
- package/website/node_modules/tailwindcss/lib/value-parser/walk.js +16 -0
- package/website/node_modules/tailwindcss/loadConfig.d.ts +4 -0
- package/website/node_modules/tailwindcss/loadConfig.js +2 -0
- package/website/node_modules/tailwindcss/nesting/index.js +2 -0
- package/website/node_modules/tailwindcss/package.json +121 -0
- package/website/node_modules/tailwindcss/peers/index.js +96540 -0
- package/website/node_modules/tailwindcss/plugin.d.ts +11 -0
- package/website/node_modules/tailwindcss/plugin.js +2 -0
- package/website/node_modules/tailwindcss/prettier.config.js +19 -0
- package/website/node_modules/tailwindcss/resolveConfig.d.ts +12 -0
- package/website/node_modules/tailwindcss/resolveConfig.js +2 -0
- package/website/node_modules/tailwindcss/screens.css +1 -0
- package/website/node_modules/tailwindcss/scripts/create-plugin-list.js +10 -0
- package/website/node_modules/tailwindcss/scripts/generate-types.js +105 -0
- package/website/node_modules/tailwindcss/scripts/release-channel.js +18 -0
- package/website/node_modules/tailwindcss/scripts/release-notes.js +21 -0
- package/website/node_modules/tailwindcss/scripts/swap-engines.js +40 -0
- package/website/node_modules/tailwindcss/scripts/type-utils.js +27 -0
- package/website/node_modules/tailwindcss/src/cli/build/deps.js +56 -0
- package/website/node_modules/tailwindcss/src/cli/build/index.js +49 -0
- package/website/node_modules/tailwindcss/src/cli/build/plugin.js +444 -0
- package/website/node_modules/tailwindcss/src/cli/build/utils.js +76 -0
- package/website/node_modules/tailwindcss/src/cli/build/watching.js +229 -0
- package/website/node_modules/tailwindcss/src/cli/help/index.js +70 -0
- package/website/node_modules/tailwindcss/src/cli/index.js +216 -0
- package/website/node_modules/tailwindcss/src/cli/init/index.js +79 -0
- package/website/node_modules/tailwindcss/src/cli-peer-dependencies.js +15 -0
- package/website/node_modules/tailwindcss/src/cli.js +7 -0
- package/website/node_modules/tailwindcss/src/corePluginList.js +1 -0
- package/website/node_modules/tailwindcss/src/corePlugins.js +2855 -0
- package/website/node_modules/tailwindcss/src/css/LICENSE +25 -0
- package/website/node_modules/tailwindcss/src/css/preflight.css +378 -0
- package/website/node_modules/tailwindcss/src/featureFlags.js +70 -0
- package/website/node_modules/tailwindcss/src/index.js +1 -0
- package/website/node_modules/tailwindcss/src/lib/cacheInvalidation.js +52 -0
- package/website/node_modules/tailwindcss/src/lib/collapseAdjacentRules.js +58 -0
- package/website/node_modules/tailwindcss/src/lib/collapseDuplicateDeclarations.js +93 -0
- package/website/node_modules/tailwindcss/src/lib/content.js +208 -0
- package/website/node_modules/tailwindcss/src/lib/defaultExtractor.js +217 -0
- package/website/node_modules/tailwindcss/src/lib/detectNesting.js +47 -0
- package/website/node_modules/tailwindcss/src/lib/evaluateTailwindFunctions.js +272 -0
- package/website/node_modules/tailwindcss/src/lib/expandApplyAtRules.js +613 -0
- package/website/node_modules/tailwindcss/src/lib/expandTailwindAtRules.js +285 -0
- package/website/node_modules/tailwindcss/src/lib/findAtConfigPath.js +48 -0
- package/website/node_modules/tailwindcss/src/lib/generateRules.js +934 -0
- package/website/node_modules/tailwindcss/src/lib/getModuleDependencies.js +79 -0
- package/website/node_modules/tailwindcss/src/lib/load-config.ts +31 -0
- package/website/node_modules/tailwindcss/src/lib/normalizeTailwindDirectives.js +84 -0
- package/website/node_modules/tailwindcss/src/lib/offsets.js +373 -0
- package/website/node_modules/tailwindcss/src/lib/partitionApplyAtRules.js +52 -0
- package/website/node_modules/tailwindcss/src/lib/regex.js +74 -0
- package/website/node_modules/tailwindcss/src/lib/remap-bitfield.js +82 -0
- package/website/node_modules/tailwindcss/src/lib/resolveDefaultsAtRules.js +163 -0
- package/website/node_modules/tailwindcss/src/lib/setupContextUtils.js +1340 -0
- package/website/node_modules/tailwindcss/src/lib/setupTrackingContext.js +169 -0
- package/website/node_modules/tailwindcss/src/lib/sharedState.js +61 -0
- package/website/node_modules/tailwindcss/src/lib/substituteScreenAtRules.js +19 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/build/deps.ts +91 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/build/index.ts +47 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/build/plugin.ts +442 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/build/utils.ts +74 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/build/watching.ts +225 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/help/index.ts +69 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/index.ts +204 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/init/index.ts +59 -0
- package/website/node_modules/tailwindcss/src/oxide/cli.ts +1 -0
- package/website/node_modules/tailwindcss/src/oxide/postcss-plugin.ts +1 -0
- package/website/node_modules/tailwindcss/src/plugin.js +107 -0
- package/website/node_modules/tailwindcss/src/postcss-plugins/nesting/README.md +42 -0
- package/website/node_modules/tailwindcss/src/postcss-plugins/nesting/index.js +13 -0
- package/website/node_modules/tailwindcss/src/postcss-plugins/nesting/plugin.js +80 -0
- package/website/node_modules/tailwindcss/src/processTailwindFeatures.js +59 -0
- package/website/node_modules/tailwindcss/src/public/colors.js +322 -0
- package/website/node_modules/tailwindcss/src/public/create-plugin.js +2 -0
- package/website/node_modules/tailwindcss/src/public/default-config.js +4 -0
- package/website/node_modules/tailwindcss/src/public/default-theme.js +4 -0
- package/website/node_modules/tailwindcss/src/public/load-config.js +2 -0
- package/website/node_modules/tailwindcss/src/public/resolve-config.js +7 -0
- package/website/node_modules/tailwindcss/src/util/applyImportantSelector.js +27 -0
- package/website/node_modules/tailwindcss/src/util/bigSign.js +3 -0
- package/website/node_modules/tailwindcss/src/util/buildMediaQuery.js +22 -0
- package/website/node_modules/tailwindcss/src/util/cloneDeep.js +11 -0
- package/website/node_modules/tailwindcss/src/util/cloneNodes.js +28 -0
- package/website/node_modules/tailwindcss/src/util/color.js +88 -0
- package/website/node_modules/tailwindcss/src/util/colorNames.js +150 -0
- package/website/node_modules/tailwindcss/src/util/configurePlugins.js +23 -0
- package/website/node_modules/tailwindcss/src/util/createPlugin.js +27 -0
- package/website/node_modules/tailwindcss/src/util/createUtilityPlugin.js +37 -0
- package/website/node_modules/tailwindcss/src/util/dataTypes.js +292 -0
- package/website/node_modules/tailwindcss/src/util/defaults.js +17 -0
- package/website/node_modules/tailwindcss/src/util/escapeClassName.js +8 -0
- package/website/node_modules/tailwindcss/src/util/escapeCommas.js +3 -0
- package/website/node_modules/tailwindcss/src/util/flattenColorPalette.js +13 -0
- package/website/node_modules/tailwindcss/src/util/formatVariantSelector.js +316 -0
- package/website/node_modules/tailwindcss/src/util/getAllConfigs.js +38 -0
- package/website/node_modules/tailwindcss/src/util/hashConfig.js +5 -0
- package/website/node_modules/tailwindcss/src/util/isKeyframeRule.js +3 -0
- package/website/node_modules/tailwindcss/src/util/isPlainObject.js +8 -0
- package/website/node_modules/tailwindcss/src/util/isSyntacticallyValidPropertyValue.js +61 -0
- package/website/node_modules/tailwindcss/src/util/log.js +29 -0
- package/website/node_modules/tailwindcss/src/util/nameClass.js +30 -0
- package/website/node_modules/tailwindcss/src/util/negateValue.js +24 -0
- package/website/node_modules/tailwindcss/src/util/normalizeConfig.js +301 -0
- package/website/node_modules/tailwindcss/src/util/normalizeScreens.js +140 -0
- package/website/node_modules/tailwindcss/src/util/parseAnimationValue.js +68 -0
- package/website/node_modules/tailwindcss/src/util/parseBoxShadowValue.js +72 -0
- package/website/node_modules/tailwindcss/src/util/parseDependency.js +44 -0
- package/website/node_modules/tailwindcss/src/util/parseGlob.js +24 -0
- package/website/node_modules/tailwindcss/src/util/parseObjectStyles.js +19 -0
- package/website/node_modules/tailwindcss/src/util/pluginUtils.js +291 -0
- package/website/node_modules/tailwindcss/src/util/prefixSelector.js +33 -0
- package/website/node_modules/tailwindcss/src/util/pseudoElements.js +167 -0
- package/website/node_modules/tailwindcss/src/util/removeAlphaVariables.js +24 -0
- package/website/node_modules/tailwindcss/src/util/resolveConfig.js +277 -0
- package/website/node_modules/tailwindcss/src/util/resolveConfigPath.js +66 -0
- package/website/node_modules/tailwindcss/src/util/responsive.js +10 -0
- package/website/node_modules/tailwindcss/src/util/splitAtTopLevelOnly.js +52 -0
- package/website/node_modules/tailwindcss/src/util/tap.js +4 -0
- package/website/node_modules/tailwindcss/src/util/toColorValue.js +3 -0
- package/website/node_modules/tailwindcss/src/util/toPath.js +26 -0
- package/website/node_modules/tailwindcss/src/util/transformThemeValue.js +62 -0
- package/website/node_modules/tailwindcss/src/util/validateConfig.js +26 -0
- package/website/node_modules/tailwindcss/src/util/validateFormalSyntax.js +34 -0
- package/website/node_modules/tailwindcss/src/util/withAlphaVariable.js +49 -0
- package/website/node_modules/tailwindcss/src/value-parser/LICENSE +22 -0
- package/website/node_modules/tailwindcss/src/value-parser/README.md +3 -0
- package/website/node_modules/tailwindcss/src/value-parser/index.d.ts +177 -0
- package/website/node_modules/tailwindcss/src/value-parser/index.js +28 -0
- package/website/node_modules/tailwindcss/src/value-parser/parse.js +303 -0
- package/website/node_modules/tailwindcss/src/value-parser/stringify.js +41 -0
- package/website/node_modules/tailwindcss/src/value-parser/unit.js +118 -0
- package/website/node_modules/tailwindcss/src/value-parser/walk.js +18 -0
- package/website/node_modules/tailwindcss/stubs/.npmignore +1 -0
- package/website/node_modules/tailwindcss/stubs/.prettierrc.json +6 -0
- package/website/node_modules/tailwindcss/stubs/config.full.js +991 -0
- package/website/node_modules/tailwindcss/stubs/config.simple.js +7 -0
- package/website/node_modules/tailwindcss/stubs/postcss.config.cjs +6 -0
- package/website/node_modules/tailwindcss/stubs/postcss.config.js +6 -0
- package/website/node_modules/tailwindcss/stubs/tailwind.config.cjs +2 -0
- package/website/node_modules/tailwindcss/stubs/tailwind.config.js +2 -0
- package/website/node_modules/tailwindcss/stubs/tailwind.config.ts +3 -0
- package/website/node_modules/tailwindcss/tailwind.css +5 -0
- package/website/node_modules/tailwindcss/types/config.d.ts +368 -0
- package/website/node_modules/tailwindcss/types/generated/.gitkeep +0 -0
- package/website/node_modules/tailwindcss/types/generated/colors.d.ts +298 -0
- package/website/node_modules/tailwindcss/types/generated/corePluginList.d.ts +1 -0
- package/website/node_modules/tailwindcss/types/generated/default-theme.d.ts +372 -0
- package/website/node_modules/tailwindcss/types/index.d.ts +7 -0
- package/website/node_modules/tailwindcss/utilities.css +1 -0
- package/website/node_modules/tailwindcss/variants.css +1 -0
- package/website/node_modules/thenify/History.md +11 -0
- package/website/node_modules/thenify/LICENSE +22 -0
- package/website/node_modules/thenify/README.md +120 -0
- package/website/node_modules/thenify/index.js +77 -0
- package/website/node_modules/thenify/package.json +31 -0
- package/website/node_modules/thenify-all/History.md +11 -0
- package/website/node_modules/thenify-all/LICENSE +22 -0
- package/website/node_modules/thenify-all/README.md +66 -0
- package/website/node_modules/thenify-all/index.js +73 -0
- package/website/node_modules/thenify-all/package.json +34 -0
- package/website/node_modules/to-regex-range/LICENSE +21 -0
- package/website/node_modules/to-regex-range/README.md +305 -0
- package/website/node_modules/to-regex-range/index.js +288 -0
- package/website/node_modules/to-regex-range/package.json +88 -0
- package/website/node_modules/ts-interface-checker/LICENSE +201 -0
- package/website/node_modules/ts-interface-checker/README.md +185 -0
- package/website/node_modules/ts-interface-checker/dist/index.d.ts +124 -0
- package/website/node_modules/ts-interface-checker/dist/index.js +224 -0
- package/website/node_modules/ts-interface-checker/dist/types.d.ts +181 -0
- package/website/node_modules/ts-interface-checker/dist/types.js +566 -0
- package/website/node_modules/ts-interface-checker/dist/util.d.ts +55 -0
- package/website/node_modules/ts-interface-checker/dist/util.js +130 -0
- package/website/node_modules/ts-interface-checker/package.json +60 -0
- package/website/node_modules/util-deprecate/History.md +16 -0
- package/website/node_modules/util-deprecate/LICENSE +24 -0
- package/website/node_modules/util-deprecate/README.md +53 -0
- package/website/node_modules/util-deprecate/browser.js +67 -0
- package/website/node_modules/util-deprecate/node.js +6 -0
- package/website/node_modules/util-deprecate/package.json +27 -0
- package/website/node_modules/wrappy/LICENSE +15 -0
- package/website/node_modules/wrappy/README.md +36 -0
- package/website/node_modules/wrappy/package.json +29 -0
- package/website/node_modules/wrappy/wrappy.js +33 -0
- package/website/node_modules/yaml/LICENSE +13 -0
- package/website/node_modules/yaml/README.md +147 -0
- package/website/node_modules/yaml/browser/dist/compose/compose-collection.js +76 -0
- package/website/node_modules/yaml/browser/dist/compose/compose-doc.js +41 -0
- package/website/node_modules/yaml/browser/dist/compose/compose-node.js +92 -0
- package/website/node_modules/yaml/browser/dist/compose/compose-scalar.js +80 -0
- package/website/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-block-map.js +111 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +194 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +46 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +199 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-props.js +134 -0
- package/website/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/website/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +27 -0
- package/website/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/website/node_modules/yaml/browser/dist/compose/util-map-includes.js +17 -0
- package/website/node_modules/yaml/browser/dist/doc/Document.js +334 -0
- package/website/node_modules/yaml/browser/dist/doc/anchors.js +72 -0
- package/website/node_modules/yaml/browser/dist/doc/applyReviver.js +54 -0
- package/website/node_modules/yaml/browser/dist/doc/createNode.js +89 -0
- package/website/node_modules/yaml/browser/dist/doc/directives.js +169 -0
- package/website/node_modules/yaml/browser/dist/errors.js +57 -0
- package/website/node_modules/yaml/browser/dist/index.js +17 -0
- package/website/node_modules/yaml/browser/dist/log.js +16 -0
- package/website/node_modules/yaml/browser/dist/node_modules/tslib/tslib.es6.js +21 -0
- package/website/node_modules/yaml/browser/dist/nodes/Alias.js +101 -0
- package/website/node_modules/yaml/browser/dist/nodes/Collection.js +148 -0
- package/website/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/website/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/website/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/website/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/website/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/website/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +104 -0
- package/website/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/website/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/website/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/website/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/website/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/website/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/website/node_modules/yaml/browser/dist/parse/lexer.js +701 -0
- package/website/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/website/node_modules/yaml/browser/dist/parse/parser.js +950 -0
- package/website/node_modules/yaml/browser/dist/public-api.js +99 -0
- package/website/node_modules/yaml/browser/dist/schema/Schema.js +38 -0
- package/website/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/website/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/website/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/website/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/website/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/website/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/website/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/website/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/website/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/website/node_modules/yaml/browser/dist/schema/tags.js +83 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +66 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +37 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/website/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +135 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringify.js +124 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +151 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyString.js +328 -0
- package/website/node_modules/yaml/browser/dist/util.js +11 -0
- package/website/node_modules/yaml/browser/dist/visit.js +233 -0
- package/website/node_modules/yaml/browser/index.js +5 -0
- package/website/node_modules/yaml/browser/package.json +3 -0
- package/website/node_modules/yaml/dist/compose/compose-collection.d.ts +5 -0
- package/website/node_modules/yaml/dist/compose/compose-collection.js +78 -0
- package/website/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/website/node_modules/yaml/dist/compose/compose-doc.js +43 -0
- package/website/node_modules/yaml/dist/compose/compose-node.d.ts +27 -0
- package/website/node_modules/yaml/dist/compose/compose-node.js +95 -0
- package/website/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/website/node_modules/yaml/dist/compose/compose-scalar.js +82 -0
- package/website/node_modules/yaml/dist/compose/composer.d.ts +62 -0
- package/website/node_modules/yaml/dist/compose/composer.js +221 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-map.d.ts +7 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-map.js +113 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +10 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-scalar.js +196 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-seq.js +48 -0
- package/website/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/website/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/website/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/website/node_modules/yaml/dist/compose/resolve-flow-collection.js +201 -0
- package/website/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/website/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
- package/website/node_modules/yaml/dist/compose/resolve-props.d.ts +22 -0
- package/website/node_modules/yaml/dist/compose/resolve-props.js +136 -0
- package/website/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/website/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/website/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/website/node_modules/yaml/dist/compose/util-empty-scalar-position.js +29 -0
- package/website/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/website/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/website/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/website/node_modules/yaml/dist/compose/util-map-includes.js +19 -0
- package/website/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/website/node_modules/yaml/dist/doc/Document.js +336 -0
- package/website/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/website/node_modules/yaml/dist/doc/anchors.js +77 -0
- package/website/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/website/node_modules/yaml/dist/doc/applyReviver.js +56 -0
- package/website/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/website/node_modules/yaml/dist/doc/createNode.js +91 -0
- package/website/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/website/node_modules/yaml/dist/doc/directives.js +171 -0
- package/website/node_modules/yaml/dist/errors.d.ts +21 -0
- package/website/node_modules/yaml/dist/errors.js +62 -0
- package/website/node_modules/yaml/dist/index.d.ts +22 -0
- package/website/node_modules/yaml/dist/index.js +50 -0
- package/website/node_modules/yaml/dist/log.d.ts +3 -0
- package/website/node_modules/yaml/dist/log.js +19 -0
- package/website/node_modules/yaml/dist/nodes/Alias.d.ts +28 -0
- package/website/node_modules/yaml/dist/nodes/Alias.js +103 -0
- package/website/node_modules/yaml/dist/nodes/Collection.d.ts +74 -0
- package/website/node_modules/yaml/dist/nodes/Collection.js +152 -0
- package/website/node_modules/yaml/dist/nodes/Node.d.ts +46 -0
- package/website/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/website/node_modules/yaml/dist/nodes/Pair.d.ts +21 -0
- package/website/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/website/node_modules/yaml/dist/nodes/Scalar.d.ts +42 -0
- package/website/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/website/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/website/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/website/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/website/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/website/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/website/node_modules/yaml/dist/nodes/addPairToJSMap.js +106 -0
- package/website/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/website/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/website/node_modules/yaml/dist/nodes/toJS.d.ts +27 -0
- package/website/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/website/node_modules/yaml/dist/options.d.ts +338 -0
- package/website/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/website/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/website/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/website/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/website/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/website/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/website/node_modules/yaml/dist/parse/cst.d.ts +106 -0
- package/website/node_modules/yaml/dist/parse/cst.js +112 -0
- package/website/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/website/node_modules/yaml/dist/parse/lexer.js +703 -0
- package/website/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/website/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/website/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/website/node_modules/yaml/dist/parse/parser.js +954 -0
- package/website/node_modules/yaml/dist/public-api.d.ts +43 -0
- package/website/node_modules/yaml/dist/public-api.js +104 -0
- package/website/node_modules/yaml/dist/schema/Schema.d.ts +18 -0
- package/website/node_modules/yaml/dist/schema/Schema.js +40 -0
- package/website/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/website/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/website/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/website/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/website/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/website/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/website/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/website/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/website/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/website/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/website/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/website/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/website/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/website/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/website/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/website/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/website/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/website/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/website/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/website/node_modules/yaml/dist/schema/tags.d.ts +40 -0
- package/website/node_modules/yaml/dist/schema/tags.js +86 -0
- package/website/node_modules/yaml/dist/schema/types.d.ts +90 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/binary.js +68 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +28 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/schema.js +39 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/website/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/website/node_modules/yaml/dist/stringify/foldFlowLines.js +140 -0
- package/website/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/website/node_modules/yaml/dist/stringify/stringify.js +127 -0
- package/website/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/website/node_modules/yaml/dist/stringify/stringifyCollection.js +153 -0
- package/website/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/website/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/website/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/website/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/website/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/website/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
- package/website/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/website/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/website/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/website/node_modules/yaml/dist/stringify/stringifyString.js +330 -0
- package/website/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/website/node_modules/yaml/dist/test-events.js +134 -0
- package/website/node_modules/yaml/dist/util.d.ts +12 -0
- package/website/node_modules/yaml/dist/util.js +28 -0
- package/website/node_modules/yaml/dist/visit.d.ts +102 -0
- package/website/node_modules/yaml/dist/visit.js +236 -0
- package/website/node_modules/yaml/package.json +95 -0
- package/website/node_modules/yaml/util.js +2 -0
- package/website/package-lock.json +940 -0
- package/website/package.json +19 -0
- package/website/src/dev/app.css +3 -0
- package/website/src/pages/Home.js +16 -0
- package/website/src/views/home.html +3 -0
- package/website/tailwind.config.js +12 -0
|
@@ -0,0 +1,4177 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
variantPlugins: function() {
|
|
13
|
+
return variantPlugins;
|
|
14
|
+
},
|
|
15
|
+
corePlugins: function() {
|
|
16
|
+
return corePlugins;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
|
|
20
|
+
const _path = /*#__PURE__*/ _interop_require_wildcard(require("path"));
|
|
21
|
+
const _postcss = /*#__PURE__*/ _interop_require_default(require("postcss"));
|
|
22
|
+
const _createUtilityPlugin = /*#__PURE__*/ _interop_require_default(require("./util/createUtilityPlugin"));
|
|
23
|
+
const _buildMediaQuery = /*#__PURE__*/ _interop_require_default(require("./util/buildMediaQuery"));
|
|
24
|
+
const _escapeClassName = /*#__PURE__*/ _interop_require_default(require("./util/escapeClassName"));
|
|
25
|
+
const _parseAnimationValue = /*#__PURE__*/ _interop_require_default(require("./util/parseAnimationValue"));
|
|
26
|
+
const _flattenColorPalette = /*#__PURE__*/ _interop_require_default(require("./util/flattenColorPalette"));
|
|
27
|
+
const _withAlphaVariable = /*#__PURE__*/ _interop_require_wildcard(require("./util/withAlphaVariable"));
|
|
28
|
+
const _toColorValue = /*#__PURE__*/ _interop_require_default(require("./util/toColorValue"));
|
|
29
|
+
const _isPlainObject = /*#__PURE__*/ _interop_require_default(require("./util/isPlainObject"));
|
|
30
|
+
const _transformThemeValue = /*#__PURE__*/ _interop_require_default(require("./util/transformThemeValue"));
|
|
31
|
+
const _packagejson = require("../package.json");
|
|
32
|
+
const _log = /*#__PURE__*/ _interop_require_default(require("./util/log"));
|
|
33
|
+
const _normalizeScreens = require("./util/normalizeScreens");
|
|
34
|
+
const _parseBoxShadowValue = require("./util/parseBoxShadowValue");
|
|
35
|
+
const _removeAlphaVariables = require("./util/removeAlphaVariables");
|
|
36
|
+
const _featureFlags = require("./featureFlags");
|
|
37
|
+
const _dataTypes = require("./util/dataTypes");
|
|
38
|
+
const _setupContextUtils = require("./lib/setupContextUtils");
|
|
39
|
+
function _interop_require_default(obj) {
|
|
40
|
+
return obj && obj.__esModule ? obj : {
|
|
41
|
+
default: obj
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
45
|
+
if (typeof WeakMap !== "function") return null;
|
|
46
|
+
var cacheBabelInterop = new WeakMap();
|
|
47
|
+
var cacheNodeInterop = new WeakMap();
|
|
48
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
49
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
50
|
+
})(nodeInterop);
|
|
51
|
+
}
|
|
52
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
53
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
54
|
+
return obj;
|
|
55
|
+
}
|
|
56
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
57
|
+
return {
|
|
58
|
+
default: obj
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
62
|
+
if (cache && cache.has(obj)) {
|
|
63
|
+
return cache.get(obj);
|
|
64
|
+
}
|
|
65
|
+
var newObj = {};
|
|
66
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
67
|
+
for(var key in obj){
|
|
68
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
69
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
70
|
+
if (desc && (desc.get || desc.set)) {
|
|
71
|
+
Object.defineProperty(newObj, key, desc);
|
|
72
|
+
} else {
|
|
73
|
+
newObj[key] = obj[key];
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
newObj.default = obj;
|
|
78
|
+
if (cache) {
|
|
79
|
+
cache.set(obj, newObj);
|
|
80
|
+
}
|
|
81
|
+
return newObj;
|
|
82
|
+
}
|
|
83
|
+
let variantPlugins = {
|
|
84
|
+
pseudoElementVariants: ({ addVariant })=>{
|
|
85
|
+
addVariant("first-letter", "&::first-letter");
|
|
86
|
+
addVariant("first-line", "&::first-line");
|
|
87
|
+
addVariant("marker", [
|
|
88
|
+
({ container })=>{
|
|
89
|
+
(0, _removeAlphaVariables.removeAlphaVariables)(container, [
|
|
90
|
+
"--tw-text-opacity"
|
|
91
|
+
]);
|
|
92
|
+
return "& *::marker";
|
|
93
|
+
},
|
|
94
|
+
({ container })=>{
|
|
95
|
+
(0, _removeAlphaVariables.removeAlphaVariables)(container, [
|
|
96
|
+
"--tw-text-opacity"
|
|
97
|
+
]);
|
|
98
|
+
return "&::marker";
|
|
99
|
+
}
|
|
100
|
+
]);
|
|
101
|
+
addVariant("selection", [
|
|
102
|
+
"& *::selection",
|
|
103
|
+
"&::selection"
|
|
104
|
+
]);
|
|
105
|
+
addVariant("file", "&::file-selector-button");
|
|
106
|
+
addVariant("placeholder", "&::placeholder");
|
|
107
|
+
addVariant("backdrop", "&::backdrop");
|
|
108
|
+
addVariant("before", ({ container })=>{
|
|
109
|
+
container.walkRules((rule)=>{
|
|
110
|
+
let foundContent = false;
|
|
111
|
+
rule.walkDecls("content", ()=>{
|
|
112
|
+
foundContent = true;
|
|
113
|
+
});
|
|
114
|
+
if (!foundContent) {
|
|
115
|
+
rule.prepend(_postcss.default.decl({
|
|
116
|
+
prop: "content",
|
|
117
|
+
value: "var(--tw-content)"
|
|
118
|
+
}));
|
|
119
|
+
}
|
|
120
|
+
});
|
|
121
|
+
return "&::before";
|
|
122
|
+
});
|
|
123
|
+
addVariant("after", ({ container })=>{
|
|
124
|
+
container.walkRules((rule)=>{
|
|
125
|
+
let foundContent = false;
|
|
126
|
+
rule.walkDecls("content", ()=>{
|
|
127
|
+
foundContent = true;
|
|
128
|
+
});
|
|
129
|
+
if (!foundContent) {
|
|
130
|
+
rule.prepend(_postcss.default.decl({
|
|
131
|
+
prop: "content",
|
|
132
|
+
value: "var(--tw-content)"
|
|
133
|
+
}));
|
|
134
|
+
}
|
|
135
|
+
});
|
|
136
|
+
return "&::after";
|
|
137
|
+
});
|
|
138
|
+
},
|
|
139
|
+
pseudoClassVariants: ({ addVariant , matchVariant , config , prefix })=>{
|
|
140
|
+
let pseudoVariants = [
|
|
141
|
+
// Positional
|
|
142
|
+
[
|
|
143
|
+
"first",
|
|
144
|
+
"&:first-child"
|
|
145
|
+
],
|
|
146
|
+
[
|
|
147
|
+
"last",
|
|
148
|
+
"&:last-child"
|
|
149
|
+
],
|
|
150
|
+
[
|
|
151
|
+
"only",
|
|
152
|
+
"&:only-child"
|
|
153
|
+
],
|
|
154
|
+
[
|
|
155
|
+
"odd",
|
|
156
|
+
"&:nth-child(odd)"
|
|
157
|
+
],
|
|
158
|
+
[
|
|
159
|
+
"even",
|
|
160
|
+
"&:nth-child(even)"
|
|
161
|
+
],
|
|
162
|
+
"first-of-type",
|
|
163
|
+
"last-of-type",
|
|
164
|
+
"only-of-type",
|
|
165
|
+
// State
|
|
166
|
+
[
|
|
167
|
+
"visited",
|
|
168
|
+
({ container })=>{
|
|
169
|
+
(0, _removeAlphaVariables.removeAlphaVariables)(container, [
|
|
170
|
+
"--tw-text-opacity",
|
|
171
|
+
"--tw-border-opacity",
|
|
172
|
+
"--tw-bg-opacity"
|
|
173
|
+
]);
|
|
174
|
+
return "&:visited";
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
"target",
|
|
178
|
+
[
|
|
179
|
+
"open",
|
|
180
|
+
"&[open]"
|
|
181
|
+
],
|
|
182
|
+
// Forms
|
|
183
|
+
"default",
|
|
184
|
+
"checked",
|
|
185
|
+
"indeterminate",
|
|
186
|
+
"placeholder-shown",
|
|
187
|
+
"autofill",
|
|
188
|
+
"optional",
|
|
189
|
+
"required",
|
|
190
|
+
"valid",
|
|
191
|
+
"invalid",
|
|
192
|
+
"in-range",
|
|
193
|
+
"out-of-range",
|
|
194
|
+
"read-only",
|
|
195
|
+
// Content
|
|
196
|
+
"empty",
|
|
197
|
+
// Interactive
|
|
198
|
+
"focus-within",
|
|
199
|
+
[
|
|
200
|
+
"hover",
|
|
201
|
+
!(0, _featureFlags.flagEnabled)(config(), "hoverOnlyWhenSupported") ? "&:hover" : "@media (hover: hover) and (pointer: fine) { &:hover }"
|
|
202
|
+
],
|
|
203
|
+
"focus",
|
|
204
|
+
"focus-visible",
|
|
205
|
+
"active",
|
|
206
|
+
"enabled",
|
|
207
|
+
"disabled"
|
|
208
|
+
].map((variant)=>Array.isArray(variant) ? variant : [
|
|
209
|
+
variant,
|
|
210
|
+
`&:${variant}`
|
|
211
|
+
]);
|
|
212
|
+
for (let [variantName, state] of pseudoVariants){
|
|
213
|
+
addVariant(variantName, (ctx)=>{
|
|
214
|
+
let result = typeof state === "function" ? state(ctx) : state;
|
|
215
|
+
return result;
|
|
216
|
+
});
|
|
217
|
+
}
|
|
218
|
+
let variants = {
|
|
219
|
+
group: (_, { modifier })=>modifier ? [
|
|
220
|
+
`:merge(${prefix(".group")}\\/${(0, _escapeClassName.default)(modifier)})`,
|
|
221
|
+
" &"
|
|
222
|
+
] : [
|
|
223
|
+
`:merge(${prefix(".group")})`,
|
|
224
|
+
" &"
|
|
225
|
+
],
|
|
226
|
+
peer: (_, { modifier })=>modifier ? [
|
|
227
|
+
`:merge(${prefix(".peer")}\\/${(0, _escapeClassName.default)(modifier)})`,
|
|
228
|
+
" ~ &"
|
|
229
|
+
] : [
|
|
230
|
+
`:merge(${prefix(".peer")})`,
|
|
231
|
+
" ~ &"
|
|
232
|
+
]
|
|
233
|
+
};
|
|
234
|
+
for (let [name, fn] of Object.entries(variants)){
|
|
235
|
+
matchVariant(name, (value = "", extra)=>{
|
|
236
|
+
let result = (0, _dataTypes.normalize)(typeof value === "function" ? value(extra) : value);
|
|
237
|
+
if (!result.includes("&")) result = "&" + result;
|
|
238
|
+
let [a, b] = fn("", extra);
|
|
239
|
+
let start = null;
|
|
240
|
+
let end = null;
|
|
241
|
+
let quotes = 0;
|
|
242
|
+
for(let i = 0; i < result.length; ++i){
|
|
243
|
+
let c = result[i];
|
|
244
|
+
if (c === "&") {
|
|
245
|
+
start = i;
|
|
246
|
+
} else if (c === "'" || c === '"') {
|
|
247
|
+
quotes += 1;
|
|
248
|
+
} else if (start !== null && c === " " && !quotes) {
|
|
249
|
+
end = i;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
if (start !== null && end === null) {
|
|
253
|
+
end = result.length;
|
|
254
|
+
}
|
|
255
|
+
// Basically this but can handle quotes:
|
|
256
|
+
// result.replace(/&(\S+)?/g, (_, pseudo = '') => a + pseudo + b)
|
|
257
|
+
return result.slice(0, start) + a + result.slice(start + 1, end) + b + result.slice(end);
|
|
258
|
+
}, {
|
|
259
|
+
values: Object.fromEntries(pseudoVariants),
|
|
260
|
+
[_setupContextUtils.INTERNAL_FEATURES]: {
|
|
261
|
+
respectPrefix: false
|
|
262
|
+
}
|
|
263
|
+
});
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
directionVariants: ({ addVariant })=>{
|
|
267
|
+
addVariant("ltr", ':is([dir="ltr"] &)');
|
|
268
|
+
addVariant("rtl", ':is([dir="rtl"] &)');
|
|
269
|
+
},
|
|
270
|
+
reducedMotionVariants: ({ addVariant })=>{
|
|
271
|
+
addVariant("motion-safe", "@media (prefers-reduced-motion: no-preference)");
|
|
272
|
+
addVariant("motion-reduce", "@media (prefers-reduced-motion: reduce)");
|
|
273
|
+
},
|
|
274
|
+
darkVariants: ({ config , addVariant })=>{
|
|
275
|
+
let [mode, className = ".dark"] = [].concat(config("darkMode", "media"));
|
|
276
|
+
if (mode === false) {
|
|
277
|
+
mode = "media";
|
|
278
|
+
_log.default.warn("darkmode-false", [
|
|
279
|
+
"The `darkMode` option in your Tailwind CSS configuration is set to `false`, which now behaves the same as `media`.",
|
|
280
|
+
"Change `darkMode` to `media` or remove it entirely.",
|
|
281
|
+
"https://tailwindcss.com/docs/upgrade-guide#remove-dark-mode-configuration"
|
|
282
|
+
]);
|
|
283
|
+
}
|
|
284
|
+
if (mode === "class") {
|
|
285
|
+
addVariant("dark", `:is(${className} &)`);
|
|
286
|
+
} else if (mode === "media") {
|
|
287
|
+
addVariant("dark", "@media (prefers-color-scheme: dark)");
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
printVariant: ({ addVariant })=>{
|
|
291
|
+
addVariant("print", "@media print");
|
|
292
|
+
},
|
|
293
|
+
screenVariants: ({ theme , addVariant , matchVariant })=>{
|
|
294
|
+
var _theme;
|
|
295
|
+
let rawScreens = (_theme = theme("screens")) !== null && _theme !== void 0 ? _theme : {};
|
|
296
|
+
let areSimpleScreens = Object.values(rawScreens).every((v)=>typeof v === "string");
|
|
297
|
+
let screens = (0, _normalizeScreens.normalizeScreens)(theme("screens"));
|
|
298
|
+
/** @type {Set<string>} */ let unitCache = new Set([]);
|
|
299
|
+
/** @param {string} value */ function units(value) {
|
|
300
|
+
var _value_match;
|
|
301
|
+
var _value_match_;
|
|
302
|
+
return (_value_match_ = (_value_match = value.match(/(\D+)$/)) === null || _value_match === void 0 ? void 0 : _value_match[1]) !== null && _value_match_ !== void 0 ? _value_match_ : "(none)";
|
|
303
|
+
}
|
|
304
|
+
/** @param {string} value */ function recordUnits(value) {
|
|
305
|
+
if (value !== undefined) {
|
|
306
|
+
unitCache.add(units(value));
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
/** @param {string} value */ function canUseUnits(value) {
|
|
310
|
+
recordUnits(value);
|
|
311
|
+
// If the cache was empty it'll become 1 because we've just added the current unit
|
|
312
|
+
// If the cache was not empty and the units are the same the size doesn't change
|
|
313
|
+
// Otherwise, if the units are different from what is already known the size will always be > 1
|
|
314
|
+
return unitCache.size === 1;
|
|
315
|
+
}
|
|
316
|
+
for (const screen of screens){
|
|
317
|
+
for (const value of screen.values){
|
|
318
|
+
recordUnits(value.min);
|
|
319
|
+
recordUnits(value.max);
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
let screensUseConsistentUnits = unitCache.size <= 1;
|
|
323
|
+
/**
|
|
324
|
+
* @typedef {import('./util/normalizeScreens').Screen} Screen
|
|
325
|
+
*/ /**
|
|
326
|
+
* @param {'min' | 'max'} type
|
|
327
|
+
* @returns {Record<string, Screen>}
|
|
328
|
+
*/ function buildScreenValues(type) {
|
|
329
|
+
return Object.fromEntries(screens.filter((screen)=>(0, _normalizeScreens.isScreenSortable)(screen).result).map((screen)=>{
|
|
330
|
+
let { min , max } = screen.values[0];
|
|
331
|
+
if (type === "min" && min !== undefined) {
|
|
332
|
+
return screen;
|
|
333
|
+
} else if (type === "min" && max !== undefined) {
|
|
334
|
+
return {
|
|
335
|
+
...screen,
|
|
336
|
+
not: !screen.not
|
|
337
|
+
};
|
|
338
|
+
} else if (type === "max" && max !== undefined) {
|
|
339
|
+
return screen;
|
|
340
|
+
} else if (type === "max" && min !== undefined) {
|
|
341
|
+
return {
|
|
342
|
+
...screen,
|
|
343
|
+
not: !screen.not
|
|
344
|
+
};
|
|
345
|
+
}
|
|
346
|
+
}).map((screen)=>[
|
|
347
|
+
screen.name,
|
|
348
|
+
screen
|
|
349
|
+
]));
|
|
350
|
+
}
|
|
351
|
+
/**
|
|
352
|
+
* @param {'min' | 'max'} type
|
|
353
|
+
* @returns {(a: { value: string | Screen }, z: { value: string | Screen }) => number}
|
|
354
|
+
*/ function buildSort(type) {
|
|
355
|
+
return (a, z)=>(0, _normalizeScreens.compareScreens)(type, a.value, z.value);
|
|
356
|
+
}
|
|
357
|
+
let maxSort = buildSort("max");
|
|
358
|
+
let minSort = buildSort("min");
|
|
359
|
+
/** @param {'min'|'max'} type */ function buildScreenVariant(type) {
|
|
360
|
+
return (value)=>{
|
|
361
|
+
if (!areSimpleScreens) {
|
|
362
|
+
_log.default.warn("complex-screen-config", [
|
|
363
|
+
"The `min-*` and `max-*` variants are not supported with a `screens` configuration containing objects."
|
|
364
|
+
]);
|
|
365
|
+
return [];
|
|
366
|
+
} else if (!screensUseConsistentUnits) {
|
|
367
|
+
_log.default.warn("mixed-screen-units", [
|
|
368
|
+
"The `min-*` and `max-*` variants are not supported with a `screens` configuration containing mixed units."
|
|
369
|
+
]);
|
|
370
|
+
return [];
|
|
371
|
+
} else if (typeof value === "string" && !canUseUnits(value)) {
|
|
372
|
+
_log.default.warn("minmax-have-mixed-units", [
|
|
373
|
+
"The `min-*` and `max-*` variants are not supported with a `screens` configuration containing mixed units."
|
|
374
|
+
]);
|
|
375
|
+
return [];
|
|
376
|
+
}
|
|
377
|
+
return [
|
|
378
|
+
`@media ${(0, _buildMediaQuery.default)((0, _normalizeScreens.toScreen)(value, type))}`
|
|
379
|
+
];
|
|
380
|
+
};
|
|
381
|
+
}
|
|
382
|
+
matchVariant("max", buildScreenVariant("max"), {
|
|
383
|
+
sort: maxSort,
|
|
384
|
+
values: areSimpleScreens ? buildScreenValues("max") : {}
|
|
385
|
+
});
|
|
386
|
+
// screens and min-* are sorted together when they can be
|
|
387
|
+
let id = "min-screens";
|
|
388
|
+
for (let screen of screens){
|
|
389
|
+
addVariant(screen.name, `@media ${(0, _buildMediaQuery.default)(screen)}`, {
|
|
390
|
+
id,
|
|
391
|
+
sort: areSimpleScreens && screensUseConsistentUnits ? minSort : undefined,
|
|
392
|
+
value: screen
|
|
393
|
+
});
|
|
394
|
+
}
|
|
395
|
+
matchVariant("min", buildScreenVariant("min"), {
|
|
396
|
+
id,
|
|
397
|
+
sort: minSort
|
|
398
|
+
});
|
|
399
|
+
},
|
|
400
|
+
supportsVariants: ({ matchVariant , theme })=>{
|
|
401
|
+
var _theme;
|
|
402
|
+
matchVariant("supports", (value = "")=>{
|
|
403
|
+
let check = (0, _dataTypes.normalize)(value);
|
|
404
|
+
let isRaw = /^\w*\s*\(/.test(check);
|
|
405
|
+
// Chrome has a bug where `(condtion1)or(condition2)` is not valid
|
|
406
|
+
// But `(condition1) or (condition2)` is supported.
|
|
407
|
+
check = isRaw ? check.replace(/\b(and|or|not)\b/g, " $1 ") : check;
|
|
408
|
+
if (isRaw) {
|
|
409
|
+
return `@supports ${check}`;
|
|
410
|
+
}
|
|
411
|
+
if (!check.includes(":")) {
|
|
412
|
+
check = `${check}: var(--tw)`;
|
|
413
|
+
}
|
|
414
|
+
if (!(check.startsWith("(") && check.endsWith(")"))) {
|
|
415
|
+
check = `(${check})`;
|
|
416
|
+
}
|
|
417
|
+
return `@supports ${check}`;
|
|
418
|
+
}, {
|
|
419
|
+
values: (_theme = theme("supports")) !== null && _theme !== void 0 ? _theme : {}
|
|
420
|
+
});
|
|
421
|
+
},
|
|
422
|
+
ariaVariants: ({ matchVariant , theme })=>{
|
|
423
|
+
var _theme;
|
|
424
|
+
matchVariant("aria", (value)=>`&[aria-${(0, _dataTypes.normalize)(value)}]`, {
|
|
425
|
+
values: (_theme = theme("aria")) !== null && _theme !== void 0 ? _theme : {}
|
|
426
|
+
});
|
|
427
|
+
var _theme1;
|
|
428
|
+
matchVariant("group-aria", (value, { modifier })=>modifier ? `:merge(.group\\/${modifier})[aria-${(0, _dataTypes.normalize)(value)}] &` : `:merge(.group)[aria-${(0, _dataTypes.normalize)(value)}] &`, {
|
|
429
|
+
values: (_theme1 = theme("aria")) !== null && _theme1 !== void 0 ? _theme1 : {}
|
|
430
|
+
});
|
|
431
|
+
var _theme2;
|
|
432
|
+
matchVariant("peer-aria", (value, { modifier })=>modifier ? `:merge(.peer\\/${modifier})[aria-${(0, _dataTypes.normalize)(value)}] ~ &` : `:merge(.peer)[aria-${(0, _dataTypes.normalize)(value)}] ~ &`, {
|
|
433
|
+
values: (_theme2 = theme("aria")) !== null && _theme2 !== void 0 ? _theme2 : {}
|
|
434
|
+
});
|
|
435
|
+
},
|
|
436
|
+
dataVariants: ({ matchVariant , theme })=>{
|
|
437
|
+
var _theme;
|
|
438
|
+
matchVariant("data", (value)=>`&[data-${(0, _dataTypes.normalize)(value)}]`, {
|
|
439
|
+
values: (_theme = theme("data")) !== null && _theme !== void 0 ? _theme : {}
|
|
440
|
+
});
|
|
441
|
+
var _theme1;
|
|
442
|
+
matchVariant("group-data", (value, { modifier })=>modifier ? `:merge(.group\\/${modifier})[data-${(0, _dataTypes.normalize)(value)}] &` : `:merge(.group)[data-${(0, _dataTypes.normalize)(value)}] &`, {
|
|
443
|
+
values: (_theme1 = theme("data")) !== null && _theme1 !== void 0 ? _theme1 : {}
|
|
444
|
+
});
|
|
445
|
+
var _theme2;
|
|
446
|
+
matchVariant("peer-data", (value, { modifier })=>modifier ? `:merge(.peer\\/${modifier})[data-${(0, _dataTypes.normalize)(value)}] ~ &` : `:merge(.peer)[data-${(0, _dataTypes.normalize)(value)}] ~ &`, {
|
|
447
|
+
values: (_theme2 = theme("data")) !== null && _theme2 !== void 0 ? _theme2 : {}
|
|
448
|
+
});
|
|
449
|
+
},
|
|
450
|
+
orientationVariants: ({ addVariant })=>{
|
|
451
|
+
addVariant("portrait", "@media (orientation: portrait)");
|
|
452
|
+
addVariant("landscape", "@media (orientation: landscape)");
|
|
453
|
+
},
|
|
454
|
+
prefersContrastVariants: ({ addVariant })=>{
|
|
455
|
+
addVariant("contrast-more", "@media (prefers-contrast: more)");
|
|
456
|
+
addVariant("contrast-less", "@media (prefers-contrast: less)");
|
|
457
|
+
}
|
|
458
|
+
};
|
|
459
|
+
let cssTransformValue = [
|
|
460
|
+
"translate(var(--tw-translate-x), var(--tw-translate-y))",
|
|
461
|
+
"rotate(var(--tw-rotate))",
|
|
462
|
+
"skewX(var(--tw-skew-x))",
|
|
463
|
+
"skewY(var(--tw-skew-y))",
|
|
464
|
+
"scaleX(var(--tw-scale-x))",
|
|
465
|
+
"scaleY(var(--tw-scale-y))"
|
|
466
|
+
].join(" ");
|
|
467
|
+
let cssFilterValue = [
|
|
468
|
+
"var(--tw-blur)",
|
|
469
|
+
"var(--tw-brightness)",
|
|
470
|
+
"var(--tw-contrast)",
|
|
471
|
+
"var(--tw-grayscale)",
|
|
472
|
+
"var(--tw-hue-rotate)",
|
|
473
|
+
"var(--tw-invert)",
|
|
474
|
+
"var(--tw-saturate)",
|
|
475
|
+
"var(--tw-sepia)",
|
|
476
|
+
"var(--tw-drop-shadow)"
|
|
477
|
+
].join(" ");
|
|
478
|
+
let cssBackdropFilterValue = [
|
|
479
|
+
"var(--tw-backdrop-blur)",
|
|
480
|
+
"var(--tw-backdrop-brightness)",
|
|
481
|
+
"var(--tw-backdrop-contrast)",
|
|
482
|
+
"var(--tw-backdrop-grayscale)",
|
|
483
|
+
"var(--tw-backdrop-hue-rotate)",
|
|
484
|
+
"var(--tw-backdrop-invert)",
|
|
485
|
+
"var(--tw-backdrop-opacity)",
|
|
486
|
+
"var(--tw-backdrop-saturate)",
|
|
487
|
+
"var(--tw-backdrop-sepia)"
|
|
488
|
+
].join(" ");
|
|
489
|
+
let corePlugins = {
|
|
490
|
+
preflight: ({ addBase })=>{
|
|
491
|
+
let preflightStyles = _postcss.default.parse(_fs.default.readFileSync(_path.join(__dirname, "./css/preflight.css"), "utf8"));
|
|
492
|
+
addBase([
|
|
493
|
+
_postcss.default.comment({
|
|
494
|
+
text: `! tailwindcss v${_packagejson.version} | MIT License | https://tailwindcss.com`
|
|
495
|
+
}),
|
|
496
|
+
...preflightStyles.nodes
|
|
497
|
+
]);
|
|
498
|
+
},
|
|
499
|
+
container: (()=>{
|
|
500
|
+
function extractMinWidths(breakpoints = []) {
|
|
501
|
+
return breakpoints.flatMap((breakpoint)=>breakpoint.values.map((breakpoint)=>breakpoint.min)).filter((v)=>v !== undefined);
|
|
502
|
+
}
|
|
503
|
+
function mapMinWidthsToPadding(minWidths, screens, paddings) {
|
|
504
|
+
if (typeof paddings === "undefined") {
|
|
505
|
+
return [];
|
|
506
|
+
}
|
|
507
|
+
if (!(typeof paddings === "object" && paddings !== null)) {
|
|
508
|
+
return [
|
|
509
|
+
{
|
|
510
|
+
screen: "DEFAULT",
|
|
511
|
+
minWidth: 0,
|
|
512
|
+
padding: paddings
|
|
513
|
+
}
|
|
514
|
+
];
|
|
515
|
+
}
|
|
516
|
+
let mapping = [];
|
|
517
|
+
if (paddings.DEFAULT) {
|
|
518
|
+
mapping.push({
|
|
519
|
+
screen: "DEFAULT",
|
|
520
|
+
minWidth: 0,
|
|
521
|
+
padding: paddings.DEFAULT
|
|
522
|
+
});
|
|
523
|
+
}
|
|
524
|
+
for (let minWidth of minWidths){
|
|
525
|
+
for (let screen of screens){
|
|
526
|
+
for (let { min } of screen.values){
|
|
527
|
+
if (min === minWidth) {
|
|
528
|
+
mapping.push({
|
|
529
|
+
minWidth,
|
|
530
|
+
padding: paddings[screen.name]
|
|
531
|
+
});
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
return mapping;
|
|
537
|
+
}
|
|
538
|
+
return function({ addComponents , theme }) {
|
|
539
|
+
let screens = (0, _normalizeScreens.normalizeScreens)(theme("container.screens", theme("screens")));
|
|
540
|
+
let minWidths = extractMinWidths(screens);
|
|
541
|
+
let paddings = mapMinWidthsToPadding(minWidths, screens, theme("container.padding"));
|
|
542
|
+
let generatePaddingFor = (minWidth)=>{
|
|
543
|
+
let paddingConfig = paddings.find((padding)=>padding.minWidth === minWidth);
|
|
544
|
+
if (!paddingConfig) {
|
|
545
|
+
return {};
|
|
546
|
+
}
|
|
547
|
+
return {
|
|
548
|
+
paddingRight: paddingConfig.padding,
|
|
549
|
+
paddingLeft: paddingConfig.padding
|
|
550
|
+
};
|
|
551
|
+
};
|
|
552
|
+
let atRules = Array.from(new Set(minWidths.slice().sort((a, z)=>parseInt(a) - parseInt(z)))).map((minWidth)=>({
|
|
553
|
+
[`@media (min-width: ${minWidth})`]: {
|
|
554
|
+
".container": {
|
|
555
|
+
"max-width": minWidth,
|
|
556
|
+
...generatePaddingFor(minWidth)
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}));
|
|
560
|
+
addComponents([
|
|
561
|
+
{
|
|
562
|
+
".container": Object.assign({
|
|
563
|
+
width: "100%"
|
|
564
|
+
}, theme("container.center", false) ? {
|
|
565
|
+
marginRight: "auto",
|
|
566
|
+
marginLeft: "auto"
|
|
567
|
+
} : {}, generatePaddingFor(0))
|
|
568
|
+
},
|
|
569
|
+
...atRules
|
|
570
|
+
]);
|
|
571
|
+
};
|
|
572
|
+
})(),
|
|
573
|
+
accessibility: ({ addUtilities })=>{
|
|
574
|
+
addUtilities({
|
|
575
|
+
".sr-only": {
|
|
576
|
+
position: "absolute",
|
|
577
|
+
width: "1px",
|
|
578
|
+
height: "1px",
|
|
579
|
+
padding: "0",
|
|
580
|
+
margin: "-1px",
|
|
581
|
+
overflow: "hidden",
|
|
582
|
+
clip: "rect(0, 0, 0, 0)",
|
|
583
|
+
whiteSpace: "nowrap",
|
|
584
|
+
borderWidth: "0"
|
|
585
|
+
},
|
|
586
|
+
".not-sr-only": {
|
|
587
|
+
position: "static",
|
|
588
|
+
width: "auto",
|
|
589
|
+
height: "auto",
|
|
590
|
+
padding: "0",
|
|
591
|
+
margin: "0",
|
|
592
|
+
overflow: "visible",
|
|
593
|
+
clip: "auto",
|
|
594
|
+
whiteSpace: "normal"
|
|
595
|
+
}
|
|
596
|
+
});
|
|
597
|
+
},
|
|
598
|
+
pointerEvents: ({ addUtilities })=>{
|
|
599
|
+
addUtilities({
|
|
600
|
+
".pointer-events-none": {
|
|
601
|
+
"pointer-events": "none"
|
|
602
|
+
},
|
|
603
|
+
".pointer-events-auto": {
|
|
604
|
+
"pointer-events": "auto"
|
|
605
|
+
}
|
|
606
|
+
});
|
|
607
|
+
},
|
|
608
|
+
visibility: ({ addUtilities })=>{
|
|
609
|
+
addUtilities({
|
|
610
|
+
".visible": {
|
|
611
|
+
visibility: "visible"
|
|
612
|
+
},
|
|
613
|
+
".invisible": {
|
|
614
|
+
visibility: "hidden"
|
|
615
|
+
},
|
|
616
|
+
".collapse": {
|
|
617
|
+
visibility: "collapse"
|
|
618
|
+
}
|
|
619
|
+
});
|
|
620
|
+
},
|
|
621
|
+
position: ({ addUtilities })=>{
|
|
622
|
+
addUtilities({
|
|
623
|
+
".static": {
|
|
624
|
+
position: "static"
|
|
625
|
+
},
|
|
626
|
+
".fixed": {
|
|
627
|
+
position: "fixed"
|
|
628
|
+
},
|
|
629
|
+
".absolute": {
|
|
630
|
+
position: "absolute"
|
|
631
|
+
},
|
|
632
|
+
".relative": {
|
|
633
|
+
position: "relative"
|
|
634
|
+
},
|
|
635
|
+
".sticky": {
|
|
636
|
+
position: "sticky"
|
|
637
|
+
}
|
|
638
|
+
});
|
|
639
|
+
},
|
|
640
|
+
inset: (0, _createUtilityPlugin.default)("inset", [
|
|
641
|
+
[
|
|
642
|
+
"inset",
|
|
643
|
+
[
|
|
644
|
+
"inset"
|
|
645
|
+
]
|
|
646
|
+
],
|
|
647
|
+
[
|
|
648
|
+
[
|
|
649
|
+
"inset-x",
|
|
650
|
+
[
|
|
651
|
+
"left",
|
|
652
|
+
"right"
|
|
653
|
+
]
|
|
654
|
+
],
|
|
655
|
+
[
|
|
656
|
+
"inset-y",
|
|
657
|
+
[
|
|
658
|
+
"top",
|
|
659
|
+
"bottom"
|
|
660
|
+
]
|
|
661
|
+
]
|
|
662
|
+
],
|
|
663
|
+
[
|
|
664
|
+
[
|
|
665
|
+
"start",
|
|
666
|
+
[
|
|
667
|
+
"inset-inline-start"
|
|
668
|
+
]
|
|
669
|
+
],
|
|
670
|
+
[
|
|
671
|
+
"end",
|
|
672
|
+
[
|
|
673
|
+
"inset-inline-end"
|
|
674
|
+
]
|
|
675
|
+
],
|
|
676
|
+
[
|
|
677
|
+
"top",
|
|
678
|
+
[
|
|
679
|
+
"top"
|
|
680
|
+
]
|
|
681
|
+
],
|
|
682
|
+
[
|
|
683
|
+
"right",
|
|
684
|
+
[
|
|
685
|
+
"right"
|
|
686
|
+
]
|
|
687
|
+
],
|
|
688
|
+
[
|
|
689
|
+
"bottom",
|
|
690
|
+
[
|
|
691
|
+
"bottom"
|
|
692
|
+
]
|
|
693
|
+
],
|
|
694
|
+
[
|
|
695
|
+
"left",
|
|
696
|
+
[
|
|
697
|
+
"left"
|
|
698
|
+
]
|
|
699
|
+
]
|
|
700
|
+
]
|
|
701
|
+
], {
|
|
702
|
+
supportsNegativeValues: true
|
|
703
|
+
}),
|
|
704
|
+
isolation: ({ addUtilities })=>{
|
|
705
|
+
addUtilities({
|
|
706
|
+
".isolate": {
|
|
707
|
+
isolation: "isolate"
|
|
708
|
+
},
|
|
709
|
+
".isolation-auto": {
|
|
710
|
+
isolation: "auto"
|
|
711
|
+
}
|
|
712
|
+
});
|
|
713
|
+
},
|
|
714
|
+
zIndex: (0, _createUtilityPlugin.default)("zIndex", [
|
|
715
|
+
[
|
|
716
|
+
"z",
|
|
717
|
+
[
|
|
718
|
+
"zIndex"
|
|
719
|
+
]
|
|
720
|
+
]
|
|
721
|
+
], {
|
|
722
|
+
supportsNegativeValues: true
|
|
723
|
+
}),
|
|
724
|
+
order: (0, _createUtilityPlugin.default)("order", undefined, {
|
|
725
|
+
supportsNegativeValues: true
|
|
726
|
+
}),
|
|
727
|
+
gridColumn: (0, _createUtilityPlugin.default)("gridColumn", [
|
|
728
|
+
[
|
|
729
|
+
"col",
|
|
730
|
+
[
|
|
731
|
+
"gridColumn"
|
|
732
|
+
]
|
|
733
|
+
]
|
|
734
|
+
]),
|
|
735
|
+
gridColumnStart: (0, _createUtilityPlugin.default)("gridColumnStart", [
|
|
736
|
+
[
|
|
737
|
+
"col-start",
|
|
738
|
+
[
|
|
739
|
+
"gridColumnStart"
|
|
740
|
+
]
|
|
741
|
+
]
|
|
742
|
+
]),
|
|
743
|
+
gridColumnEnd: (0, _createUtilityPlugin.default)("gridColumnEnd", [
|
|
744
|
+
[
|
|
745
|
+
"col-end",
|
|
746
|
+
[
|
|
747
|
+
"gridColumnEnd"
|
|
748
|
+
]
|
|
749
|
+
]
|
|
750
|
+
]),
|
|
751
|
+
gridRow: (0, _createUtilityPlugin.default)("gridRow", [
|
|
752
|
+
[
|
|
753
|
+
"row",
|
|
754
|
+
[
|
|
755
|
+
"gridRow"
|
|
756
|
+
]
|
|
757
|
+
]
|
|
758
|
+
]),
|
|
759
|
+
gridRowStart: (0, _createUtilityPlugin.default)("gridRowStart", [
|
|
760
|
+
[
|
|
761
|
+
"row-start",
|
|
762
|
+
[
|
|
763
|
+
"gridRowStart"
|
|
764
|
+
]
|
|
765
|
+
]
|
|
766
|
+
]),
|
|
767
|
+
gridRowEnd: (0, _createUtilityPlugin.default)("gridRowEnd", [
|
|
768
|
+
[
|
|
769
|
+
"row-end",
|
|
770
|
+
[
|
|
771
|
+
"gridRowEnd"
|
|
772
|
+
]
|
|
773
|
+
]
|
|
774
|
+
]),
|
|
775
|
+
float: ({ addUtilities })=>{
|
|
776
|
+
addUtilities({
|
|
777
|
+
".float-right": {
|
|
778
|
+
float: "right"
|
|
779
|
+
},
|
|
780
|
+
".float-left": {
|
|
781
|
+
float: "left"
|
|
782
|
+
},
|
|
783
|
+
".float-none": {
|
|
784
|
+
float: "none"
|
|
785
|
+
}
|
|
786
|
+
});
|
|
787
|
+
},
|
|
788
|
+
clear: ({ addUtilities })=>{
|
|
789
|
+
addUtilities({
|
|
790
|
+
".clear-left": {
|
|
791
|
+
clear: "left"
|
|
792
|
+
},
|
|
793
|
+
".clear-right": {
|
|
794
|
+
clear: "right"
|
|
795
|
+
},
|
|
796
|
+
".clear-both": {
|
|
797
|
+
clear: "both"
|
|
798
|
+
},
|
|
799
|
+
".clear-none": {
|
|
800
|
+
clear: "none"
|
|
801
|
+
}
|
|
802
|
+
});
|
|
803
|
+
},
|
|
804
|
+
margin: (0, _createUtilityPlugin.default)("margin", [
|
|
805
|
+
[
|
|
806
|
+
"m",
|
|
807
|
+
[
|
|
808
|
+
"margin"
|
|
809
|
+
]
|
|
810
|
+
],
|
|
811
|
+
[
|
|
812
|
+
[
|
|
813
|
+
"mx",
|
|
814
|
+
[
|
|
815
|
+
"margin-left",
|
|
816
|
+
"margin-right"
|
|
817
|
+
]
|
|
818
|
+
],
|
|
819
|
+
[
|
|
820
|
+
"my",
|
|
821
|
+
[
|
|
822
|
+
"margin-top",
|
|
823
|
+
"margin-bottom"
|
|
824
|
+
]
|
|
825
|
+
]
|
|
826
|
+
],
|
|
827
|
+
[
|
|
828
|
+
[
|
|
829
|
+
"ms",
|
|
830
|
+
[
|
|
831
|
+
"margin-inline-start"
|
|
832
|
+
]
|
|
833
|
+
],
|
|
834
|
+
[
|
|
835
|
+
"me",
|
|
836
|
+
[
|
|
837
|
+
"margin-inline-end"
|
|
838
|
+
]
|
|
839
|
+
],
|
|
840
|
+
[
|
|
841
|
+
"mt",
|
|
842
|
+
[
|
|
843
|
+
"margin-top"
|
|
844
|
+
]
|
|
845
|
+
],
|
|
846
|
+
[
|
|
847
|
+
"mr",
|
|
848
|
+
[
|
|
849
|
+
"margin-right"
|
|
850
|
+
]
|
|
851
|
+
],
|
|
852
|
+
[
|
|
853
|
+
"mb",
|
|
854
|
+
[
|
|
855
|
+
"margin-bottom"
|
|
856
|
+
]
|
|
857
|
+
],
|
|
858
|
+
[
|
|
859
|
+
"ml",
|
|
860
|
+
[
|
|
861
|
+
"margin-left"
|
|
862
|
+
]
|
|
863
|
+
]
|
|
864
|
+
]
|
|
865
|
+
], {
|
|
866
|
+
supportsNegativeValues: true
|
|
867
|
+
}),
|
|
868
|
+
boxSizing: ({ addUtilities })=>{
|
|
869
|
+
addUtilities({
|
|
870
|
+
".box-border": {
|
|
871
|
+
"box-sizing": "border-box"
|
|
872
|
+
},
|
|
873
|
+
".box-content": {
|
|
874
|
+
"box-sizing": "content-box"
|
|
875
|
+
}
|
|
876
|
+
});
|
|
877
|
+
},
|
|
878
|
+
lineClamp: ({ matchUtilities , addUtilities , theme })=>{
|
|
879
|
+
matchUtilities({
|
|
880
|
+
"line-clamp": (value)=>({
|
|
881
|
+
overflow: "hidden",
|
|
882
|
+
display: "-webkit-box",
|
|
883
|
+
"-webkit-box-orient": "vertical",
|
|
884
|
+
"-webkit-line-clamp": `${value}`
|
|
885
|
+
})
|
|
886
|
+
}, {
|
|
887
|
+
values: theme("lineClamp")
|
|
888
|
+
});
|
|
889
|
+
addUtilities({
|
|
890
|
+
".line-clamp-none": {
|
|
891
|
+
overflow: "visible",
|
|
892
|
+
display: "block",
|
|
893
|
+
"-webkit-box-orient": "horizontal",
|
|
894
|
+
"-webkit-line-clamp": "none"
|
|
895
|
+
}
|
|
896
|
+
});
|
|
897
|
+
},
|
|
898
|
+
display: ({ addUtilities })=>{
|
|
899
|
+
addUtilities({
|
|
900
|
+
".block": {
|
|
901
|
+
display: "block"
|
|
902
|
+
},
|
|
903
|
+
".inline-block": {
|
|
904
|
+
display: "inline-block"
|
|
905
|
+
},
|
|
906
|
+
".inline": {
|
|
907
|
+
display: "inline"
|
|
908
|
+
},
|
|
909
|
+
".flex": {
|
|
910
|
+
display: "flex"
|
|
911
|
+
},
|
|
912
|
+
".inline-flex": {
|
|
913
|
+
display: "inline-flex"
|
|
914
|
+
},
|
|
915
|
+
".table": {
|
|
916
|
+
display: "table"
|
|
917
|
+
},
|
|
918
|
+
".inline-table": {
|
|
919
|
+
display: "inline-table"
|
|
920
|
+
},
|
|
921
|
+
".table-caption": {
|
|
922
|
+
display: "table-caption"
|
|
923
|
+
},
|
|
924
|
+
".table-cell": {
|
|
925
|
+
display: "table-cell"
|
|
926
|
+
},
|
|
927
|
+
".table-column": {
|
|
928
|
+
display: "table-column"
|
|
929
|
+
},
|
|
930
|
+
".table-column-group": {
|
|
931
|
+
display: "table-column-group"
|
|
932
|
+
},
|
|
933
|
+
".table-footer-group": {
|
|
934
|
+
display: "table-footer-group"
|
|
935
|
+
},
|
|
936
|
+
".table-header-group": {
|
|
937
|
+
display: "table-header-group"
|
|
938
|
+
},
|
|
939
|
+
".table-row-group": {
|
|
940
|
+
display: "table-row-group"
|
|
941
|
+
},
|
|
942
|
+
".table-row": {
|
|
943
|
+
display: "table-row"
|
|
944
|
+
},
|
|
945
|
+
".flow-root": {
|
|
946
|
+
display: "flow-root"
|
|
947
|
+
},
|
|
948
|
+
".grid": {
|
|
949
|
+
display: "grid"
|
|
950
|
+
},
|
|
951
|
+
".inline-grid": {
|
|
952
|
+
display: "inline-grid"
|
|
953
|
+
},
|
|
954
|
+
".contents": {
|
|
955
|
+
display: "contents"
|
|
956
|
+
},
|
|
957
|
+
".list-item": {
|
|
958
|
+
display: "list-item"
|
|
959
|
+
},
|
|
960
|
+
".hidden": {
|
|
961
|
+
display: "none"
|
|
962
|
+
}
|
|
963
|
+
});
|
|
964
|
+
},
|
|
965
|
+
aspectRatio: (0, _createUtilityPlugin.default)("aspectRatio", [
|
|
966
|
+
[
|
|
967
|
+
"aspect",
|
|
968
|
+
[
|
|
969
|
+
"aspect-ratio"
|
|
970
|
+
]
|
|
971
|
+
]
|
|
972
|
+
]),
|
|
973
|
+
height: (0, _createUtilityPlugin.default)("height", [
|
|
974
|
+
[
|
|
975
|
+
"h",
|
|
976
|
+
[
|
|
977
|
+
"height"
|
|
978
|
+
]
|
|
979
|
+
]
|
|
980
|
+
]),
|
|
981
|
+
maxHeight: (0, _createUtilityPlugin.default)("maxHeight", [
|
|
982
|
+
[
|
|
983
|
+
"max-h",
|
|
984
|
+
[
|
|
985
|
+
"maxHeight"
|
|
986
|
+
]
|
|
987
|
+
]
|
|
988
|
+
]),
|
|
989
|
+
minHeight: (0, _createUtilityPlugin.default)("minHeight", [
|
|
990
|
+
[
|
|
991
|
+
"min-h",
|
|
992
|
+
[
|
|
993
|
+
"minHeight"
|
|
994
|
+
]
|
|
995
|
+
]
|
|
996
|
+
]),
|
|
997
|
+
width: (0, _createUtilityPlugin.default)("width", [
|
|
998
|
+
[
|
|
999
|
+
"w",
|
|
1000
|
+
[
|
|
1001
|
+
"width"
|
|
1002
|
+
]
|
|
1003
|
+
]
|
|
1004
|
+
]),
|
|
1005
|
+
minWidth: (0, _createUtilityPlugin.default)("minWidth", [
|
|
1006
|
+
[
|
|
1007
|
+
"min-w",
|
|
1008
|
+
[
|
|
1009
|
+
"minWidth"
|
|
1010
|
+
]
|
|
1011
|
+
]
|
|
1012
|
+
]),
|
|
1013
|
+
maxWidth: (0, _createUtilityPlugin.default)("maxWidth", [
|
|
1014
|
+
[
|
|
1015
|
+
"max-w",
|
|
1016
|
+
[
|
|
1017
|
+
"maxWidth"
|
|
1018
|
+
]
|
|
1019
|
+
]
|
|
1020
|
+
]),
|
|
1021
|
+
flex: (0, _createUtilityPlugin.default)("flex"),
|
|
1022
|
+
flexShrink: (0, _createUtilityPlugin.default)("flexShrink", [
|
|
1023
|
+
[
|
|
1024
|
+
"flex-shrink",
|
|
1025
|
+
[
|
|
1026
|
+
"flex-shrink"
|
|
1027
|
+
]
|
|
1028
|
+
],
|
|
1029
|
+
[
|
|
1030
|
+
"shrink",
|
|
1031
|
+
[
|
|
1032
|
+
"flex-shrink"
|
|
1033
|
+
]
|
|
1034
|
+
]
|
|
1035
|
+
]),
|
|
1036
|
+
flexGrow: (0, _createUtilityPlugin.default)("flexGrow", [
|
|
1037
|
+
[
|
|
1038
|
+
"flex-grow",
|
|
1039
|
+
[
|
|
1040
|
+
"flex-grow"
|
|
1041
|
+
]
|
|
1042
|
+
],
|
|
1043
|
+
[
|
|
1044
|
+
"grow",
|
|
1045
|
+
[
|
|
1046
|
+
"flex-grow"
|
|
1047
|
+
]
|
|
1048
|
+
]
|
|
1049
|
+
]),
|
|
1050
|
+
flexBasis: (0, _createUtilityPlugin.default)("flexBasis", [
|
|
1051
|
+
[
|
|
1052
|
+
"basis",
|
|
1053
|
+
[
|
|
1054
|
+
"flex-basis"
|
|
1055
|
+
]
|
|
1056
|
+
]
|
|
1057
|
+
]),
|
|
1058
|
+
tableLayout: ({ addUtilities })=>{
|
|
1059
|
+
addUtilities({
|
|
1060
|
+
".table-auto": {
|
|
1061
|
+
"table-layout": "auto"
|
|
1062
|
+
},
|
|
1063
|
+
".table-fixed": {
|
|
1064
|
+
"table-layout": "fixed"
|
|
1065
|
+
}
|
|
1066
|
+
});
|
|
1067
|
+
},
|
|
1068
|
+
captionSide: ({ addUtilities })=>{
|
|
1069
|
+
addUtilities({
|
|
1070
|
+
".caption-top": {
|
|
1071
|
+
"caption-side": "top"
|
|
1072
|
+
},
|
|
1073
|
+
".caption-bottom": {
|
|
1074
|
+
"caption-side": "bottom"
|
|
1075
|
+
}
|
|
1076
|
+
});
|
|
1077
|
+
},
|
|
1078
|
+
borderCollapse: ({ addUtilities })=>{
|
|
1079
|
+
addUtilities({
|
|
1080
|
+
".border-collapse": {
|
|
1081
|
+
"border-collapse": "collapse"
|
|
1082
|
+
},
|
|
1083
|
+
".border-separate": {
|
|
1084
|
+
"border-collapse": "separate"
|
|
1085
|
+
}
|
|
1086
|
+
});
|
|
1087
|
+
},
|
|
1088
|
+
borderSpacing: ({ addDefaults , matchUtilities , theme })=>{
|
|
1089
|
+
addDefaults("border-spacing", {
|
|
1090
|
+
"--tw-border-spacing-x": 0,
|
|
1091
|
+
"--tw-border-spacing-y": 0
|
|
1092
|
+
});
|
|
1093
|
+
matchUtilities({
|
|
1094
|
+
"border-spacing": (value)=>{
|
|
1095
|
+
return {
|
|
1096
|
+
"--tw-border-spacing-x": value,
|
|
1097
|
+
"--tw-border-spacing-y": value,
|
|
1098
|
+
"@defaults border-spacing": {},
|
|
1099
|
+
"border-spacing": "var(--tw-border-spacing-x) var(--tw-border-spacing-y)"
|
|
1100
|
+
};
|
|
1101
|
+
},
|
|
1102
|
+
"border-spacing-x": (value)=>{
|
|
1103
|
+
return {
|
|
1104
|
+
"--tw-border-spacing-x": value,
|
|
1105
|
+
"@defaults border-spacing": {},
|
|
1106
|
+
"border-spacing": "var(--tw-border-spacing-x) var(--tw-border-spacing-y)"
|
|
1107
|
+
};
|
|
1108
|
+
},
|
|
1109
|
+
"border-spacing-y": (value)=>{
|
|
1110
|
+
return {
|
|
1111
|
+
"--tw-border-spacing-y": value,
|
|
1112
|
+
"@defaults border-spacing": {},
|
|
1113
|
+
"border-spacing": "var(--tw-border-spacing-x) var(--tw-border-spacing-y)"
|
|
1114
|
+
};
|
|
1115
|
+
}
|
|
1116
|
+
}, {
|
|
1117
|
+
values: theme("borderSpacing")
|
|
1118
|
+
});
|
|
1119
|
+
},
|
|
1120
|
+
transformOrigin: (0, _createUtilityPlugin.default)("transformOrigin", [
|
|
1121
|
+
[
|
|
1122
|
+
"origin",
|
|
1123
|
+
[
|
|
1124
|
+
"transformOrigin"
|
|
1125
|
+
]
|
|
1126
|
+
]
|
|
1127
|
+
]),
|
|
1128
|
+
translate: (0, _createUtilityPlugin.default)("translate", [
|
|
1129
|
+
[
|
|
1130
|
+
[
|
|
1131
|
+
"translate-x",
|
|
1132
|
+
[
|
|
1133
|
+
[
|
|
1134
|
+
"@defaults transform",
|
|
1135
|
+
{}
|
|
1136
|
+
],
|
|
1137
|
+
"--tw-translate-x",
|
|
1138
|
+
[
|
|
1139
|
+
"transform",
|
|
1140
|
+
cssTransformValue
|
|
1141
|
+
]
|
|
1142
|
+
]
|
|
1143
|
+
],
|
|
1144
|
+
[
|
|
1145
|
+
"translate-y",
|
|
1146
|
+
[
|
|
1147
|
+
[
|
|
1148
|
+
"@defaults transform",
|
|
1149
|
+
{}
|
|
1150
|
+
],
|
|
1151
|
+
"--tw-translate-y",
|
|
1152
|
+
[
|
|
1153
|
+
"transform",
|
|
1154
|
+
cssTransformValue
|
|
1155
|
+
]
|
|
1156
|
+
]
|
|
1157
|
+
]
|
|
1158
|
+
]
|
|
1159
|
+
], {
|
|
1160
|
+
supportsNegativeValues: true
|
|
1161
|
+
}),
|
|
1162
|
+
rotate: (0, _createUtilityPlugin.default)("rotate", [
|
|
1163
|
+
[
|
|
1164
|
+
"rotate",
|
|
1165
|
+
[
|
|
1166
|
+
[
|
|
1167
|
+
"@defaults transform",
|
|
1168
|
+
{}
|
|
1169
|
+
],
|
|
1170
|
+
"--tw-rotate",
|
|
1171
|
+
[
|
|
1172
|
+
"transform",
|
|
1173
|
+
cssTransformValue
|
|
1174
|
+
]
|
|
1175
|
+
]
|
|
1176
|
+
]
|
|
1177
|
+
], {
|
|
1178
|
+
supportsNegativeValues: true
|
|
1179
|
+
}),
|
|
1180
|
+
skew: (0, _createUtilityPlugin.default)("skew", [
|
|
1181
|
+
[
|
|
1182
|
+
[
|
|
1183
|
+
"skew-x",
|
|
1184
|
+
[
|
|
1185
|
+
[
|
|
1186
|
+
"@defaults transform",
|
|
1187
|
+
{}
|
|
1188
|
+
],
|
|
1189
|
+
"--tw-skew-x",
|
|
1190
|
+
[
|
|
1191
|
+
"transform",
|
|
1192
|
+
cssTransformValue
|
|
1193
|
+
]
|
|
1194
|
+
]
|
|
1195
|
+
],
|
|
1196
|
+
[
|
|
1197
|
+
"skew-y",
|
|
1198
|
+
[
|
|
1199
|
+
[
|
|
1200
|
+
"@defaults transform",
|
|
1201
|
+
{}
|
|
1202
|
+
],
|
|
1203
|
+
"--tw-skew-y",
|
|
1204
|
+
[
|
|
1205
|
+
"transform",
|
|
1206
|
+
cssTransformValue
|
|
1207
|
+
]
|
|
1208
|
+
]
|
|
1209
|
+
]
|
|
1210
|
+
]
|
|
1211
|
+
], {
|
|
1212
|
+
supportsNegativeValues: true
|
|
1213
|
+
}),
|
|
1214
|
+
scale: (0, _createUtilityPlugin.default)("scale", [
|
|
1215
|
+
[
|
|
1216
|
+
"scale",
|
|
1217
|
+
[
|
|
1218
|
+
[
|
|
1219
|
+
"@defaults transform",
|
|
1220
|
+
{}
|
|
1221
|
+
],
|
|
1222
|
+
"--tw-scale-x",
|
|
1223
|
+
"--tw-scale-y",
|
|
1224
|
+
[
|
|
1225
|
+
"transform",
|
|
1226
|
+
cssTransformValue
|
|
1227
|
+
]
|
|
1228
|
+
]
|
|
1229
|
+
],
|
|
1230
|
+
[
|
|
1231
|
+
[
|
|
1232
|
+
"scale-x",
|
|
1233
|
+
[
|
|
1234
|
+
[
|
|
1235
|
+
"@defaults transform",
|
|
1236
|
+
{}
|
|
1237
|
+
],
|
|
1238
|
+
"--tw-scale-x",
|
|
1239
|
+
[
|
|
1240
|
+
"transform",
|
|
1241
|
+
cssTransformValue
|
|
1242
|
+
]
|
|
1243
|
+
]
|
|
1244
|
+
],
|
|
1245
|
+
[
|
|
1246
|
+
"scale-y",
|
|
1247
|
+
[
|
|
1248
|
+
[
|
|
1249
|
+
"@defaults transform",
|
|
1250
|
+
{}
|
|
1251
|
+
],
|
|
1252
|
+
"--tw-scale-y",
|
|
1253
|
+
[
|
|
1254
|
+
"transform",
|
|
1255
|
+
cssTransformValue
|
|
1256
|
+
]
|
|
1257
|
+
]
|
|
1258
|
+
]
|
|
1259
|
+
]
|
|
1260
|
+
], {
|
|
1261
|
+
supportsNegativeValues: true
|
|
1262
|
+
}),
|
|
1263
|
+
transform: ({ addDefaults , addUtilities })=>{
|
|
1264
|
+
addDefaults("transform", {
|
|
1265
|
+
"--tw-translate-x": "0",
|
|
1266
|
+
"--tw-translate-y": "0",
|
|
1267
|
+
"--tw-rotate": "0",
|
|
1268
|
+
"--tw-skew-x": "0",
|
|
1269
|
+
"--tw-skew-y": "0",
|
|
1270
|
+
"--tw-scale-x": "1",
|
|
1271
|
+
"--tw-scale-y": "1"
|
|
1272
|
+
});
|
|
1273
|
+
addUtilities({
|
|
1274
|
+
".transform": {
|
|
1275
|
+
"@defaults transform": {},
|
|
1276
|
+
transform: cssTransformValue
|
|
1277
|
+
},
|
|
1278
|
+
".transform-cpu": {
|
|
1279
|
+
transform: cssTransformValue
|
|
1280
|
+
},
|
|
1281
|
+
".transform-gpu": {
|
|
1282
|
+
transform: cssTransformValue.replace("translate(var(--tw-translate-x), var(--tw-translate-y))", "translate3d(var(--tw-translate-x), var(--tw-translate-y), 0)")
|
|
1283
|
+
},
|
|
1284
|
+
".transform-none": {
|
|
1285
|
+
transform: "none"
|
|
1286
|
+
}
|
|
1287
|
+
});
|
|
1288
|
+
},
|
|
1289
|
+
animation: ({ matchUtilities , theme , config })=>{
|
|
1290
|
+
let prefixName = (name)=>(0, _escapeClassName.default)(config("prefix") + name);
|
|
1291
|
+
var _theme;
|
|
1292
|
+
let keyframes = Object.fromEntries(Object.entries((_theme = theme("keyframes")) !== null && _theme !== void 0 ? _theme : {}).map(([key, value])=>{
|
|
1293
|
+
return [
|
|
1294
|
+
key,
|
|
1295
|
+
{
|
|
1296
|
+
[`@keyframes ${prefixName(key)}`]: value
|
|
1297
|
+
}
|
|
1298
|
+
];
|
|
1299
|
+
}));
|
|
1300
|
+
matchUtilities({
|
|
1301
|
+
animate: (value)=>{
|
|
1302
|
+
let animations = (0, _parseAnimationValue.default)(value);
|
|
1303
|
+
return [
|
|
1304
|
+
...animations.flatMap((animation)=>keyframes[animation.name]),
|
|
1305
|
+
{
|
|
1306
|
+
animation: animations.map(({ name , value })=>{
|
|
1307
|
+
if (name === undefined || keyframes[name] === undefined) {
|
|
1308
|
+
return value;
|
|
1309
|
+
}
|
|
1310
|
+
return value.replace(name, prefixName(name));
|
|
1311
|
+
}).join(", ")
|
|
1312
|
+
}
|
|
1313
|
+
];
|
|
1314
|
+
}
|
|
1315
|
+
}, {
|
|
1316
|
+
values: theme("animation")
|
|
1317
|
+
});
|
|
1318
|
+
},
|
|
1319
|
+
cursor: (0, _createUtilityPlugin.default)("cursor"),
|
|
1320
|
+
touchAction: ({ addDefaults , addUtilities })=>{
|
|
1321
|
+
addDefaults("touch-action", {
|
|
1322
|
+
"--tw-pan-x": " ",
|
|
1323
|
+
"--tw-pan-y": " ",
|
|
1324
|
+
"--tw-pinch-zoom": " "
|
|
1325
|
+
});
|
|
1326
|
+
let cssTouchActionValue = "var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)";
|
|
1327
|
+
addUtilities({
|
|
1328
|
+
".touch-auto": {
|
|
1329
|
+
"touch-action": "auto"
|
|
1330
|
+
},
|
|
1331
|
+
".touch-none": {
|
|
1332
|
+
"touch-action": "none"
|
|
1333
|
+
},
|
|
1334
|
+
".touch-pan-x": {
|
|
1335
|
+
"@defaults touch-action": {},
|
|
1336
|
+
"--tw-pan-x": "pan-x",
|
|
1337
|
+
"touch-action": cssTouchActionValue
|
|
1338
|
+
},
|
|
1339
|
+
".touch-pan-left": {
|
|
1340
|
+
"@defaults touch-action": {},
|
|
1341
|
+
"--tw-pan-x": "pan-left",
|
|
1342
|
+
"touch-action": cssTouchActionValue
|
|
1343
|
+
},
|
|
1344
|
+
".touch-pan-right": {
|
|
1345
|
+
"@defaults touch-action": {},
|
|
1346
|
+
"--tw-pan-x": "pan-right",
|
|
1347
|
+
"touch-action": cssTouchActionValue
|
|
1348
|
+
},
|
|
1349
|
+
".touch-pan-y": {
|
|
1350
|
+
"@defaults touch-action": {},
|
|
1351
|
+
"--tw-pan-y": "pan-y",
|
|
1352
|
+
"touch-action": cssTouchActionValue
|
|
1353
|
+
},
|
|
1354
|
+
".touch-pan-up": {
|
|
1355
|
+
"@defaults touch-action": {},
|
|
1356
|
+
"--tw-pan-y": "pan-up",
|
|
1357
|
+
"touch-action": cssTouchActionValue
|
|
1358
|
+
},
|
|
1359
|
+
".touch-pan-down": {
|
|
1360
|
+
"@defaults touch-action": {},
|
|
1361
|
+
"--tw-pan-y": "pan-down",
|
|
1362
|
+
"touch-action": cssTouchActionValue
|
|
1363
|
+
},
|
|
1364
|
+
".touch-pinch-zoom": {
|
|
1365
|
+
"@defaults touch-action": {},
|
|
1366
|
+
"--tw-pinch-zoom": "pinch-zoom",
|
|
1367
|
+
"touch-action": cssTouchActionValue
|
|
1368
|
+
},
|
|
1369
|
+
".touch-manipulation": {
|
|
1370
|
+
"touch-action": "manipulation"
|
|
1371
|
+
}
|
|
1372
|
+
});
|
|
1373
|
+
},
|
|
1374
|
+
userSelect: ({ addUtilities })=>{
|
|
1375
|
+
addUtilities({
|
|
1376
|
+
".select-none": {
|
|
1377
|
+
"user-select": "none"
|
|
1378
|
+
},
|
|
1379
|
+
".select-text": {
|
|
1380
|
+
"user-select": "text"
|
|
1381
|
+
},
|
|
1382
|
+
".select-all": {
|
|
1383
|
+
"user-select": "all"
|
|
1384
|
+
},
|
|
1385
|
+
".select-auto": {
|
|
1386
|
+
"user-select": "auto"
|
|
1387
|
+
}
|
|
1388
|
+
});
|
|
1389
|
+
},
|
|
1390
|
+
resize: ({ addUtilities })=>{
|
|
1391
|
+
addUtilities({
|
|
1392
|
+
".resize-none": {
|
|
1393
|
+
resize: "none"
|
|
1394
|
+
},
|
|
1395
|
+
".resize-y": {
|
|
1396
|
+
resize: "vertical"
|
|
1397
|
+
},
|
|
1398
|
+
".resize-x": {
|
|
1399
|
+
resize: "horizontal"
|
|
1400
|
+
},
|
|
1401
|
+
".resize": {
|
|
1402
|
+
resize: "both"
|
|
1403
|
+
}
|
|
1404
|
+
});
|
|
1405
|
+
},
|
|
1406
|
+
scrollSnapType: ({ addDefaults , addUtilities })=>{
|
|
1407
|
+
addDefaults("scroll-snap-type", {
|
|
1408
|
+
"--tw-scroll-snap-strictness": "proximity"
|
|
1409
|
+
});
|
|
1410
|
+
addUtilities({
|
|
1411
|
+
".snap-none": {
|
|
1412
|
+
"scroll-snap-type": "none"
|
|
1413
|
+
},
|
|
1414
|
+
".snap-x": {
|
|
1415
|
+
"@defaults scroll-snap-type": {},
|
|
1416
|
+
"scroll-snap-type": "x var(--tw-scroll-snap-strictness)"
|
|
1417
|
+
},
|
|
1418
|
+
".snap-y": {
|
|
1419
|
+
"@defaults scroll-snap-type": {},
|
|
1420
|
+
"scroll-snap-type": "y var(--tw-scroll-snap-strictness)"
|
|
1421
|
+
},
|
|
1422
|
+
".snap-both": {
|
|
1423
|
+
"@defaults scroll-snap-type": {},
|
|
1424
|
+
"scroll-snap-type": "both var(--tw-scroll-snap-strictness)"
|
|
1425
|
+
},
|
|
1426
|
+
".snap-mandatory": {
|
|
1427
|
+
"--tw-scroll-snap-strictness": "mandatory"
|
|
1428
|
+
},
|
|
1429
|
+
".snap-proximity": {
|
|
1430
|
+
"--tw-scroll-snap-strictness": "proximity"
|
|
1431
|
+
}
|
|
1432
|
+
});
|
|
1433
|
+
},
|
|
1434
|
+
scrollSnapAlign: ({ addUtilities })=>{
|
|
1435
|
+
addUtilities({
|
|
1436
|
+
".snap-start": {
|
|
1437
|
+
"scroll-snap-align": "start"
|
|
1438
|
+
},
|
|
1439
|
+
".snap-end": {
|
|
1440
|
+
"scroll-snap-align": "end"
|
|
1441
|
+
},
|
|
1442
|
+
".snap-center": {
|
|
1443
|
+
"scroll-snap-align": "center"
|
|
1444
|
+
},
|
|
1445
|
+
".snap-align-none": {
|
|
1446
|
+
"scroll-snap-align": "none"
|
|
1447
|
+
}
|
|
1448
|
+
});
|
|
1449
|
+
},
|
|
1450
|
+
scrollSnapStop: ({ addUtilities })=>{
|
|
1451
|
+
addUtilities({
|
|
1452
|
+
".snap-normal": {
|
|
1453
|
+
"scroll-snap-stop": "normal"
|
|
1454
|
+
},
|
|
1455
|
+
".snap-always": {
|
|
1456
|
+
"scroll-snap-stop": "always"
|
|
1457
|
+
}
|
|
1458
|
+
});
|
|
1459
|
+
},
|
|
1460
|
+
scrollMargin: (0, _createUtilityPlugin.default)("scrollMargin", [
|
|
1461
|
+
[
|
|
1462
|
+
"scroll-m",
|
|
1463
|
+
[
|
|
1464
|
+
"scroll-margin"
|
|
1465
|
+
]
|
|
1466
|
+
],
|
|
1467
|
+
[
|
|
1468
|
+
[
|
|
1469
|
+
"scroll-mx",
|
|
1470
|
+
[
|
|
1471
|
+
"scroll-margin-left",
|
|
1472
|
+
"scroll-margin-right"
|
|
1473
|
+
]
|
|
1474
|
+
],
|
|
1475
|
+
[
|
|
1476
|
+
"scroll-my",
|
|
1477
|
+
[
|
|
1478
|
+
"scroll-margin-top",
|
|
1479
|
+
"scroll-margin-bottom"
|
|
1480
|
+
]
|
|
1481
|
+
]
|
|
1482
|
+
],
|
|
1483
|
+
[
|
|
1484
|
+
[
|
|
1485
|
+
"scroll-ms",
|
|
1486
|
+
[
|
|
1487
|
+
"scroll-margin-inline-start"
|
|
1488
|
+
]
|
|
1489
|
+
],
|
|
1490
|
+
[
|
|
1491
|
+
"scroll-me",
|
|
1492
|
+
[
|
|
1493
|
+
"scroll-margin-inline-end"
|
|
1494
|
+
]
|
|
1495
|
+
],
|
|
1496
|
+
[
|
|
1497
|
+
"scroll-mt",
|
|
1498
|
+
[
|
|
1499
|
+
"scroll-margin-top"
|
|
1500
|
+
]
|
|
1501
|
+
],
|
|
1502
|
+
[
|
|
1503
|
+
"scroll-mr",
|
|
1504
|
+
[
|
|
1505
|
+
"scroll-margin-right"
|
|
1506
|
+
]
|
|
1507
|
+
],
|
|
1508
|
+
[
|
|
1509
|
+
"scroll-mb",
|
|
1510
|
+
[
|
|
1511
|
+
"scroll-margin-bottom"
|
|
1512
|
+
]
|
|
1513
|
+
],
|
|
1514
|
+
[
|
|
1515
|
+
"scroll-ml",
|
|
1516
|
+
[
|
|
1517
|
+
"scroll-margin-left"
|
|
1518
|
+
]
|
|
1519
|
+
]
|
|
1520
|
+
]
|
|
1521
|
+
], {
|
|
1522
|
+
supportsNegativeValues: true
|
|
1523
|
+
}),
|
|
1524
|
+
scrollPadding: (0, _createUtilityPlugin.default)("scrollPadding", [
|
|
1525
|
+
[
|
|
1526
|
+
"scroll-p",
|
|
1527
|
+
[
|
|
1528
|
+
"scroll-padding"
|
|
1529
|
+
]
|
|
1530
|
+
],
|
|
1531
|
+
[
|
|
1532
|
+
[
|
|
1533
|
+
"scroll-px",
|
|
1534
|
+
[
|
|
1535
|
+
"scroll-padding-left",
|
|
1536
|
+
"scroll-padding-right"
|
|
1537
|
+
]
|
|
1538
|
+
],
|
|
1539
|
+
[
|
|
1540
|
+
"scroll-py",
|
|
1541
|
+
[
|
|
1542
|
+
"scroll-padding-top",
|
|
1543
|
+
"scroll-padding-bottom"
|
|
1544
|
+
]
|
|
1545
|
+
]
|
|
1546
|
+
],
|
|
1547
|
+
[
|
|
1548
|
+
[
|
|
1549
|
+
"scroll-ps",
|
|
1550
|
+
[
|
|
1551
|
+
"scroll-padding-inline-start"
|
|
1552
|
+
]
|
|
1553
|
+
],
|
|
1554
|
+
[
|
|
1555
|
+
"scroll-pe",
|
|
1556
|
+
[
|
|
1557
|
+
"scroll-padding-inline-end"
|
|
1558
|
+
]
|
|
1559
|
+
],
|
|
1560
|
+
[
|
|
1561
|
+
"scroll-pt",
|
|
1562
|
+
[
|
|
1563
|
+
"scroll-padding-top"
|
|
1564
|
+
]
|
|
1565
|
+
],
|
|
1566
|
+
[
|
|
1567
|
+
"scroll-pr",
|
|
1568
|
+
[
|
|
1569
|
+
"scroll-padding-right"
|
|
1570
|
+
]
|
|
1571
|
+
],
|
|
1572
|
+
[
|
|
1573
|
+
"scroll-pb",
|
|
1574
|
+
[
|
|
1575
|
+
"scroll-padding-bottom"
|
|
1576
|
+
]
|
|
1577
|
+
],
|
|
1578
|
+
[
|
|
1579
|
+
"scroll-pl",
|
|
1580
|
+
[
|
|
1581
|
+
"scroll-padding-left"
|
|
1582
|
+
]
|
|
1583
|
+
]
|
|
1584
|
+
]
|
|
1585
|
+
]),
|
|
1586
|
+
listStylePosition: ({ addUtilities })=>{
|
|
1587
|
+
addUtilities({
|
|
1588
|
+
".list-inside": {
|
|
1589
|
+
"list-style-position": "inside"
|
|
1590
|
+
},
|
|
1591
|
+
".list-outside": {
|
|
1592
|
+
"list-style-position": "outside"
|
|
1593
|
+
}
|
|
1594
|
+
});
|
|
1595
|
+
},
|
|
1596
|
+
listStyleType: (0, _createUtilityPlugin.default)("listStyleType", [
|
|
1597
|
+
[
|
|
1598
|
+
"list",
|
|
1599
|
+
[
|
|
1600
|
+
"listStyleType"
|
|
1601
|
+
]
|
|
1602
|
+
]
|
|
1603
|
+
]),
|
|
1604
|
+
listStyleImage: (0, _createUtilityPlugin.default)("listStyleImage", [
|
|
1605
|
+
[
|
|
1606
|
+
"list-image",
|
|
1607
|
+
[
|
|
1608
|
+
"listStyleImage"
|
|
1609
|
+
]
|
|
1610
|
+
]
|
|
1611
|
+
]),
|
|
1612
|
+
appearance: ({ addUtilities })=>{
|
|
1613
|
+
addUtilities({
|
|
1614
|
+
".appearance-none": {
|
|
1615
|
+
appearance: "none"
|
|
1616
|
+
}
|
|
1617
|
+
});
|
|
1618
|
+
},
|
|
1619
|
+
columns: (0, _createUtilityPlugin.default)("columns", [
|
|
1620
|
+
[
|
|
1621
|
+
"columns",
|
|
1622
|
+
[
|
|
1623
|
+
"columns"
|
|
1624
|
+
]
|
|
1625
|
+
]
|
|
1626
|
+
]),
|
|
1627
|
+
breakBefore: ({ addUtilities })=>{
|
|
1628
|
+
addUtilities({
|
|
1629
|
+
".break-before-auto": {
|
|
1630
|
+
"break-before": "auto"
|
|
1631
|
+
},
|
|
1632
|
+
".break-before-avoid": {
|
|
1633
|
+
"break-before": "avoid"
|
|
1634
|
+
},
|
|
1635
|
+
".break-before-all": {
|
|
1636
|
+
"break-before": "all"
|
|
1637
|
+
},
|
|
1638
|
+
".break-before-avoid-page": {
|
|
1639
|
+
"break-before": "avoid-page"
|
|
1640
|
+
},
|
|
1641
|
+
".break-before-page": {
|
|
1642
|
+
"break-before": "page"
|
|
1643
|
+
},
|
|
1644
|
+
".break-before-left": {
|
|
1645
|
+
"break-before": "left"
|
|
1646
|
+
},
|
|
1647
|
+
".break-before-right": {
|
|
1648
|
+
"break-before": "right"
|
|
1649
|
+
},
|
|
1650
|
+
".break-before-column": {
|
|
1651
|
+
"break-before": "column"
|
|
1652
|
+
}
|
|
1653
|
+
});
|
|
1654
|
+
},
|
|
1655
|
+
breakInside: ({ addUtilities })=>{
|
|
1656
|
+
addUtilities({
|
|
1657
|
+
".break-inside-auto": {
|
|
1658
|
+
"break-inside": "auto"
|
|
1659
|
+
},
|
|
1660
|
+
".break-inside-avoid": {
|
|
1661
|
+
"break-inside": "avoid"
|
|
1662
|
+
},
|
|
1663
|
+
".break-inside-avoid-page": {
|
|
1664
|
+
"break-inside": "avoid-page"
|
|
1665
|
+
},
|
|
1666
|
+
".break-inside-avoid-column": {
|
|
1667
|
+
"break-inside": "avoid-column"
|
|
1668
|
+
}
|
|
1669
|
+
});
|
|
1670
|
+
},
|
|
1671
|
+
breakAfter: ({ addUtilities })=>{
|
|
1672
|
+
addUtilities({
|
|
1673
|
+
".break-after-auto": {
|
|
1674
|
+
"break-after": "auto"
|
|
1675
|
+
},
|
|
1676
|
+
".break-after-avoid": {
|
|
1677
|
+
"break-after": "avoid"
|
|
1678
|
+
},
|
|
1679
|
+
".break-after-all": {
|
|
1680
|
+
"break-after": "all"
|
|
1681
|
+
},
|
|
1682
|
+
".break-after-avoid-page": {
|
|
1683
|
+
"break-after": "avoid-page"
|
|
1684
|
+
},
|
|
1685
|
+
".break-after-page": {
|
|
1686
|
+
"break-after": "page"
|
|
1687
|
+
},
|
|
1688
|
+
".break-after-left": {
|
|
1689
|
+
"break-after": "left"
|
|
1690
|
+
},
|
|
1691
|
+
".break-after-right": {
|
|
1692
|
+
"break-after": "right"
|
|
1693
|
+
},
|
|
1694
|
+
".break-after-column": {
|
|
1695
|
+
"break-after": "column"
|
|
1696
|
+
}
|
|
1697
|
+
});
|
|
1698
|
+
},
|
|
1699
|
+
gridAutoColumns: (0, _createUtilityPlugin.default)("gridAutoColumns", [
|
|
1700
|
+
[
|
|
1701
|
+
"auto-cols",
|
|
1702
|
+
[
|
|
1703
|
+
"gridAutoColumns"
|
|
1704
|
+
]
|
|
1705
|
+
]
|
|
1706
|
+
]),
|
|
1707
|
+
gridAutoFlow: ({ addUtilities })=>{
|
|
1708
|
+
addUtilities({
|
|
1709
|
+
".grid-flow-row": {
|
|
1710
|
+
gridAutoFlow: "row"
|
|
1711
|
+
},
|
|
1712
|
+
".grid-flow-col": {
|
|
1713
|
+
gridAutoFlow: "column"
|
|
1714
|
+
},
|
|
1715
|
+
".grid-flow-dense": {
|
|
1716
|
+
gridAutoFlow: "dense"
|
|
1717
|
+
},
|
|
1718
|
+
".grid-flow-row-dense": {
|
|
1719
|
+
gridAutoFlow: "row dense"
|
|
1720
|
+
},
|
|
1721
|
+
".grid-flow-col-dense": {
|
|
1722
|
+
gridAutoFlow: "column dense"
|
|
1723
|
+
}
|
|
1724
|
+
});
|
|
1725
|
+
},
|
|
1726
|
+
gridAutoRows: (0, _createUtilityPlugin.default)("gridAutoRows", [
|
|
1727
|
+
[
|
|
1728
|
+
"auto-rows",
|
|
1729
|
+
[
|
|
1730
|
+
"gridAutoRows"
|
|
1731
|
+
]
|
|
1732
|
+
]
|
|
1733
|
+
]),
|
|
1734
|
+
gridTemplateColumns: (0, _createUtilityPlugin.default)("gridTemplateColumns", [
|
|
1735
|
+
[
|
|
1736
|
+
"grid-cols",
|
|
1737
|
+
[
|
|
1738
|
+
"gridTemplateColumns"
|
|
1739
|
+
]
|
|
1740
|
+
]
|
|
1741
|
+
]),
|
|
1742
|
+
gridTemplateRows: (0, _createUtilityPlugin.default)("gridTemplateRows", [
|
|
1743
|
+
[
|
|
1744
|
+
"grid-rows",
|
|
1745
|
+
[
|
|
1746
|
+
"gridTemplateRows"
|
|
1747
|
+
]
|
|
1748
|
+
]
|
|
1749
|
+
]),
|
|
1750
|
+
flexDirection: ({ addUtilities })=>{
|
|
1751
|
+
addUtilities({
|
|
1752
|
+
".flex-row": {
|
|
1753
|
+
"flex-direction": "row"
|
|
1754
|
+
},
|
|
1755
|
+
".flex-row-reverse": {
|
|
1756
|
+
"flex-direction": "row-reverse"
|
|
1757
|
+
},
|
|
1758
|
+
".flex-col": {
|
|
1759
|
+
"flex-direction": "column"
|
|
1760
|
+
},
|
|
1761
|
+
".flex-col-reverse": {
|
|
1762
|
+
"flex-direction": "column-reverse"
|
|
1763
|
+
}
|
|
1764
|
+
});
|
|
1765
|
+
},
|
|
1766
|
+
flexWrap: ({ addUtilities })=>{
|
|
1767
|
+
addUtilities({
|
|
1768
|
+
".flex-wrap": {
|
|
1769
|
+
"flex-wrap": "wrap"
|
|
1770
|
+
},
|
|
1771
|
+
".flex-wrap-reverse": {
|
|
1772
|
+
"flex-wrap": "wrap-reverse"
|
|
1773
|
+
},
|
|
1774
|
+
".flex-nowrap": {
|
|
1775
|
+
"flex-wrap": "nowrap"
|
|
1776
|
+
}
|
|
1777
|
+
});
|
|
1778
|
+
},
|
|
1779
|
+
placeContent: ({ addUtilities })=>{
|
|
1780
|
+
addUtilities({
|
|
1781
|
+
".place-content-center": {
|
|
1782
|
+
"place-content": "center"
|
|
1783
|
+
},
|
|
1784
|
+
".place-content-start": {
|
|
1785
|
+
"place-content": "start"
|
|
1786
|
+
},
|
|
1787
|
+
".place-content-end": {
|
|
1788
|
+
"place-content": "end"
|
|
1789
|
+
},
|
|
1790
|
+
".place-content-between": {
|
|
1791
|
+
"place-content": "space-between"
|
|
1792
|
+
},
|
|
1793
|
+
".place-content-around": {
|
|
1794
|
+
"place-content": "space-around"
|
|
1795
|
+
},
|
|
1796
|
+
".place-content-evenly": {
|
|
1797
|
+
"place-content": "space-evenly"
|
|
1798
|
+
},
|
|
1799
|
+
".place-content-baseline": {
|
|
1800
|
+
"place-content": "baseline"
|
|
1801
|
+
},
|
|
1802
|
+
".place-content-stretch": {
|
|
1803
|
+
"place-content": "stretch"
|
|
1804
|
+
}
|
|
1805
|
+
});
|
|
1806
|
+
},
|
|
1807
|
+
placeItems: ({ addUtilities })=>{
|
|
1808
|
+
addUtilities({
|
|
1809
|
+
".place-items-start": {
|
|
1810
|
+
"place-items": "start"
|
|
1811
|
+
},
|
|
1812
|
+
".place-items-end": {
|
|
1813
|
+
"place-items": "end"
|
|
1814
|
+
},
|
|
1815
|
+
".place-items-center": {
|
|
1816
|
+
"place-items": "center"
|
|
1817
|
+
},
|
|
1818
|
+
".place-items-baseline": {
|
|
1819
|
+
"place-items": "baseline"
|
|
1820
|
+
},
|
|
1821
|
+
".place-items-stretch": {
|
|
1822
|
+
"place-items": "stretch"
|
|
1823
|
+
}
|
|
1824
|
+
});
|
|
1825
|
+
},
|
|
1826
|
+
alignContent: ({ addUtilities })=>{
|
|
1827
|
+
addUtilities({
|
|
1828
|
+
".content-normal": {
|
|
1829
|
+
"align-content": "normal"
|
|
1830
|
+
},
|
|
1831
|
+
".content-center": {
|
|
1832
|
+
"align-content": "center"
|
|
1833
|
+
},
|
|
1834
|
+
".content-start": {
|
|
1835
|
+
"align-content": "flex-start"
|
|
1836
|
+
},
|
|
1837
|
+
".content-end": {
|
|
1838
|
+
"align-content": "flex-end"
|
|
1839
|
+
},
|
|
1840
|
+
".content-between": {
|
|
1841
|
+
"align-content": "space-between"
|
|
1842
|
+
},
|
|
1843
|
+
".content-around": {
|
|
1844
|
+
"align-content": "space-around"
|
|
1845
|
+
},
|
|
1846
|
+
".content-evenly": {
|
|
1847
|
+
"align-content": "space-evenly"
|
|
1848
|
+
},
|
|
1849
|
+
".content-baseline": {
|
|
1850
|
+
"align-content": "baseline"
|
|
1851
|
+
},
|
|
1852
|
+
".content-stretch": {
|
|
1853
|
+
"align-content": "stretch"
|
|
1854
|
+
}
|
|
1855
|
+
});
|
|
1856
|
+
},
|
|
1857
|
+
alignItems: ({ addUtilities })=>{
|
|
1858
|
+
addUtilities({
|
|
1859
|
+
".items-start": {
|
|
1860
|
+
"align-items": "flex-start"
|
|
1861
|
+
},
|
|
1862
|
+
".items-end": {
|
|
1863
|
+
"align-items": "flex-end"
|
|
1864
|
+
},
|
|
1865
|
+
".items-center": {
|
|
1866
|
+
"align-items": "center"
|
|
1867
|
+
},
|
|
1868
|
+
".items-baseline": {
|
|
1869
|
+
"align-items": "baseline"
|
|
1870
|
+
},
|
|
1871
|
+
".items-stretch": {
|
|
1872
|
+
"align-items": "stretch"
|
|
1873
|
+
}
|
|
1874
|
+
});
|
|
1875
|
+
},
|
|
1876
|
+
justifyContent: ({ addUtilities })=>{
|
|
1877
|
+
addUtilities({
|
|
1878
|
+
".justify-normal": {
|
|
1879
|
+
"justify-content": "normal"
|
|
1880
|
+
},
|
|
1881
|
+
".justify-start": {
|
|
1882
|
+
"justify-content": "flex-start"
|
|
1883
|
+
},
|
|
1884
|
+
".justify-end": {
|
|
1885
|
+
"justify-content": "flex-end"
|
|
1886
|
+
},
|
|
1887
|
+
".justify-center": {
|
|
1888
|
+
"justify-content": "center"
|
|
1889
|
+
},
|
|
1890
|
+
".justify-between": {
|
|
1891
|
+
"justify-content": "space-between"
|
|
1892
|
+
},
|
|
1893
|
+
".justify-around": {
|
|
1894
|
+
"justify-content": "space-around"
|
|
1895
|
+
},
|
|
1896
|
+
".justify-evenly": {
|
|
1897
|
+
"justify-content": "space-evenly"
|
|
1898
|
+
},
|
|
1899
|
+
".justify-stretch": {
|
|
1900
|
+
"justify-content": "stretch"
|
|
1901
|
+
}
|
|
1902
|
+
});
|
|
1903
|
+
},
|
|
1904
|
+
justifyItems: ({ addUtilities })=>{
|
|
1905
|
+
addUtilities({
|
|
1906
|
+
".justify-items-start": {
|
|
1907
|
+
"justify-items": "start"
|
|
1908
|
+
},
|
|
1909
|
+
".justify-items-end": {
|
|
1910
|
+
"justify-items": "end"
|
|
1911
|
+
},
|
|
1912
|
+
".justify-items-center": {
|
|
1913
|
+
"justify-items": "center"
|
|
1914
|
+
},
|
|
1915
|
+
".justify-items-stretch": {
|
|
1916
|
+
"justify-items": "stretch"
|
|
1917
|
+
}
|
|
1918
|
+
});
|
|
1919
|
+
},
|
|
1920
|
+
gap: (0, _createUtilityPlugin.default)("gap", [
|
|
1921
|
+
[
|
|
1922
|
+
"gap",
|
|
1923
|
+
[
|
|
1924
|
+
"gap"
|
|
1925
|
+
]
|
|
1926
|
+
],
|
|
1927
|
+
[
|
|
1928
|
+
[
|
|
1929
|
+
"gap-x",
|
|
1930
|
+
[
|
|
1931
|
+
"columnGap"
|
|
1932
|
+
]
|
|
1933
|
+
],
|
|
1934
|
+
[
|
|
1935
|
+
"gap-y",
|
|
1936
|
+
[
|
|
1937
|
+
"rowGap"
|
|
1938
|
+
]
|
|
1939
|
+
]
|
|
1940
|
+
]
|
|
1941
|
+
]),
|
|
1942
|
+
space: ({ matchUtilities , addUtilities , theme })=>{
|
|
1943
|
+
matchUtilities({
|
|
1944
|
+
"space-x": (value)=>{
|
|
1945
|
+
value = value === "0" ? "0px" : value;
|
|
1946
|
+
if (false) {
|
|
1947
|
+
return {
|
|
1948
|
+
"& > :not([hidden]) ~ :not([hidden])": {
|
|
1949
|
+
"--tw-space-x-reverse": "0",
|
|
1950
|
+
"margin-inline-end": `calc(${value} * var(--tw-space-x-reverse))`,
|
|
1951
|
+
"margin-inline-start": `calc(${value} * calc(1 - var(--tw-space-x-reverse)))`
|
|
1952
|
+
}
|
|
1953
|
+
};
|
|
1954
|
+
}
|
|
1955
|
+
return {
|
|
1956
|
+
"& > :not([hidden]) ~ :not([hidden])": {
|
|
1957
|
+
"--tw-space-x-reverse": "0",
|
|
1958
|
+
"margin-right": `calc(${value} * var(--tw-space-x-reverse))`,
|
|
1959
|
+
"margin-left": `calc(${value} * calc(1 - var(--tw-space-x-reverse)))`
|
|
1960
|
+
}
|
|
1961
|
+
};
|
|
1962
|
+
},
|
|
1963
|
+
"space-y": (value)=>{
|
|
1964
|
+
value = value === "0" ? "0px" : value;
|
|
1965
|
+
return {
|
|
1966
|
+
"& > :not([hidden]) ~ :not([hidden])": {
|
|
1967
|
+
"--tw-space-y-reverse": "0",
|
|
1968
|
+
"margin-top": `calc(${value} * calc(1 - var(--tw-space-y-reverse)))`,
|
|
1969
|
+
"margin-bottom": `calc(${value} * var(--tw-space-y-reverse))`
|
|
1970
|
+
}
|
|
1971
|
+
};
|
|
1972
|
+
}
|
|
1973
|
+
}, {
|
|
1974
|
+
values: theme("space"),
|
|
1975
|
+
supportsNegativeValues: true
|
|
1976
|
+
});
|
|
1977
|
+
addUtilities({
|
|
1978
|
+
".space-y-reverse > :not([hidden]) ~ :not([hidden])": {
|
|
1979
|
+
"--tw-space-y-reverse": "1"
|
|
1980
|
+
},
|
|
1981
|
+
".space-x-reverse > :not([hidden]) ~ :not([hidden])": {
|
|
1982
|
+
"--tw-space-x-reverse": "1"
|
|
1983
|
+
}
|
|
1984
|
+
});
|
|
1985
|
+
},
|
|
1986
|
+
divideWidth: ({ matchUtilities , addUtilities , theme })=>{
|
|
1987
|
+
matchUtilities({
|
|
1988
|
+
"divide-x": (value)=>{
|
|
1989
|
+
value = value === "0" ? "0px" : value;
|
|
1990
|
+
if (false) {
|
|
1991
|
+
return {
|
|
1992
|
+
"& > :not([hidden]) ~ :not([hidden])": {
|
|
1993
|
+
"@defaults border-width": {},
|
|
1994
|
+
"--tw-divide-x-reverse": "0",
|
|
1995
|
+
"border-inline-end-width": `calc(${value} * var(--tw-divide-x-reverse))`,
|
|
1996
|
+
"border-inline-start-width": `calc(${value} * calc(1 - var(--tw-divide-x-reverse)))`
|
|
1997
|
+
}
|
|
1998
|
+
};
|
|
1999
|
+
}
|
|
2000
|
+
return {
|
|
2001
|
+
"& > :not([hidden]) ~ :not([hidden])": {
|
|
2002
|
+
"@defaults border-width": {},
|
|
2003
|
+
"--tw-divide-x-reverse": "0",
|
|
2004
|
+
"border-right-width": `calc(${value} * var(--tw-divide-x-reverse))`,
|
|
2005
|
+
"border-left-width": `calc(${value} * calc(1 - var(--tw-divide-x-reverse)))`
|
|
2006
|
+
}
|
|
2007
|
+
};
|
|
2008
|
+
},
|
|
2009
|
+
"divide-y": (value)=>{
|
|
2010
|
+
value = value === "0" ? "0px" : value;
|
|
2011
|
+
return {
|
|
2012
|
+
"& > :not([hidden]) ~ :not([hidden])": {
|
|
2013
|
+
"@defaults border-width": {},
|
|
2014
|
+
"--tw-divide-y-reverse": "0",
|
|
2015
|
+
"border-top-width": `calc(${value} * calc(1 - var(--tw-divide-y-reverse)))`,
|
|
2016
|
+
"border-bottom-width": `calc(${value} * var(--tw-divide-y-reverse))`
|
|
2017
|
+
}
|
|
2018
|
+
};
|
|
2019
|
+
}
|
|
2020
|
+
}, {
|
|
2021
|
+
values: theme("divideWidth"),
|
|
2022
|
+
type: [
|
|
2023
|
+
"line-width",
|
|
2024
|
+
"length",
|
|
2025
|
+
"any"
|
|
2026
|
+
]
|
|
2027
|
+
});
|
|
2028
|
+
addUtilities({
|
|
2029
|
+
".divide-y-reverse > :not([hidden]) ~ :not([hidden])": {
|
|
2030
|
+
"@defaults border-width": {},
|
|
2031
|
+
"--tw-divide-y-reverse": "1"
|
|
2032
|
+
},
|
|
2033
|
+
".divide-x-reverse > :not([hidden]) ~ :not([hidden])": {
|
|
2034
|
+
"@defaults border-width": {},
|
|
2035
|
+
"--tw-divide-x-reverse": "1"
|
|
2036
|
+
}
|
|
2037
|
+
});
|
|
2038
|
+
},
|
|
2039
|
+
divideStyle: ({ addUtilities })=>{
|
|
2040
|
+
addUtilities({
|
|
2041
|
+
".divide-solid > :not([hidden]) ~ :not([hidden])": {
|
|
2042
|
+
"border-style": "solid"
|
|
2043
|
+
},
|
|
2044
|
+
".divide-dashed > :not([hidden]) ~ :not([hidden])": {
|
|
2045
|
+
"border-style": "dashed"
|
|
2046
|
+
},
|
|
2047
|
+
".divide-dotted > :not([hidden]) ~ :not([hidden])": {
|
|
2048
|
+
"border-style": "dotted"
|
|
2049
|
+
},
|
|
2050
|
+
".divide-double > :not([hidden]) ~ :not([hidden])": {
|
|
2051
|
+
"border-style": "double"
|
|
2052
|
+
},
|
|
2053
|
+
".divide-none > :not([hidden]) ~ :not([hidden])": {
|
|
2054
|
+
"border-style": "none"
|
|
2055
|
+
}
|
|
2056
|
+
});
|
|
2057
|
+
},
|
|
2058
|
+
divideColor: ({ matchUtilities , theme , corePlugins })=>{
|
|
2059
|
+
matchUtilities({
|
|
2060
|
+
divide: (value)=>{
|
|
2061
|
+
if (!corePlugins("divideOpacity")) {
|
|
2062
|
+
return {
|
|
2063
|
+
["& > :not([hidden]) ~ :not([hidden])"]: {
|
|
2064
|
+
"border-color": (0, _toColorValue.default)(value)
|
|
2065
|
+
}
|
|
2066
|
+
};
|
|
2067
|
+
}
|
|
2068
|
+
return {
|
|
2069
|
+
["& > :not([hidden]) ~ :not([hidden])"]: (0, _withAlphaVariable.default)({
|
|
2070
|
+
color: value,
|
|
2071
|
+
property: "border-color",
|
|
2072
|
+
variable: "--tw-divide-opacity"
|
|
2073
|
+
})
|
|
2074
|
+
};
|
|
2075
|
+
}
|
|
2076
|
+
}, {
|
|
2077
|
+
values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette.default)(theme("divideColor"))),
|
|
2078
|
+
type: [
|
|
2079
|
+
"color",
|
|
2080
|
+
"any"
|
|
2081
|
+
]
|
|
2082
|
+
});
|
|
2083
|
+
},
|
|
2084
|
+
divideOpacity: ({ matchUtilities , theme })=>{
|
|
2085
|
+
matchUtilities({
|
|
2086
|
+
"divide-opacity": (value)=>{
|
|
2087
|
+
return {
|
|
2088
|
+
[`& > :not([hidden]) ~ :not([hidden])`]: {
|
|
2089
|
+
"--tw-divide-opacity": value
|
|
2090
|
+
}
|
|
2091
|
+
};
|
|
2092
|
+
}
|
|
2093
|
+
}, {
|
|
2094
|
+
values: theme("divideOpacity")
|
|
2095
|
+
});
|
|
2096
|
+
},
|
|
2097
|
+
placeSelf: ({ addUtilities })=>{
|
|
2098
|
+
addUtilities({
|
|
2099
|
+
".place-self-auto": {
|
|
2100
|
+
"place-self": "auto"
|
|
2101
|
+
},
|
|
2102
|
+
".place-self-start": {
|
|
2103
|
+
"place-self": "start"
|
|
2104
|
+
},
|
|
2105
|
+
".place-self-end": {
|
|
2106
|
+
"place-self": "end"
|
|
2107
|
+
},
|
|
2108
|
+
".place-self-center": {
|
|
2109
|
+
"place-self": "center"
|
|
2110
|
+
},
|
|
2111
|
+
".place-self-stretch": {
|
|
2112
|
+
"place-self": "stretch"
|
|
2113
|
+
}
|
|
2114
|
+
});
|
|
2115
|
+
},
|
|
2116
|
+
alignSelf: ({ addUtilities })=>{
|
|
2117
|
+
addUtilities({
|
|
2118
|
+
".self-auto": {
|
|
2119
|
+
"align-self": "auto"
|
|
2120
|
+
},
|
|
2121
|
+
".self-start": {
|
|
2122
|
+
"align-self": "flex-start"
|
|
2123
|
+
},
|
|
2124
|
+
".self-end": {
|
|
2125
|
+
"align-self": "flex-end"
|
|
2126
|
+
},
|
|
2127
|
+
".self-center": {
|
|
2128
|
+
"align-self": "center"
|
|
2129
|
+
},
|
|
2130
|
+
".self-stretch": {
|
|
2131
|
+
"align-self": "stretch"
|
|
2132
|
+
},
|
|
2133
|
+
".self-baseline": {
|
|
2134
|
+
"align-self": "baseline"
|
|
2135
|
+
}
|
|
2136
|
+
});
|
|
2137
|
+
},
|
|
2138
|
+
justifySelf: ({ addUtilities })=>{
|
|
2139
|
+
addUtilities({
|
|
2140
|
+
".justify-self-auto": {
|
|
2141
|
+
"justify-self": "auto"
|
|
2142
|
+
},
|
|
2143
|
+
".justify-self-start": {
|
|
2144
|
+
"justify-self": "start"
|
|
2145
|
+
},
|
|
2146
|
+
".justify-self-end": {
|
|
2147
|
+
"justify-self": "end"
|
|
2148
|
+
},
|
|
2149
|
+
".justify-self-center": {
|
|
2150
|
+
"justify-self": "center"
|
|
2151
|
+
},
|
|
2152
|
+
".justify-self-stretch": {
|
|
2153
|
+
"justify-self": "stretch"
|
|
2154
|
+
}
|
|
2155
|
+
});
|
|
2156
|
+
},
|
|
2157
|
+
overflow: ({ addUtilities })=>{
|
|
2158
|
+
addUtilities({
|
|
2159
|
+
".overflow-auto": {
|
|
2160
|
+
overflow: "auto"
|
|
2161
|
+
},
|
|
2162
|
+
".overflow-hidden": {
|
|
2163
|
+
overflow: "hidden"
|
|
2164
|
+
},
|
|
2165
|
+
".overflow-clip": {
|
|
2166
|
+
overflow: "clip"
|
|
2167
|
+
},
|
|
2168
|
+
".overflow-visible": {
|
|
2169
|
+
overflow: "visible"
|
|
2170
|
+
},
|
|
2171
|
+
".overflow-scroll": {
|
|
2172
|
+
overflow: "scroll"
|
|
2173
|
+
},
|
|
2174
|
+
".overflow-x-auto": {
|
|
2175
|
+
"overflow-x": "auto"
|
|
2176
|
+
},
|
|
2177
|
+
".overflow-y-auto": {
|
|
2178
|
+
"overflow-y": "auto"
|
|
2179
|
+
},
|
|
2180
|
+
".overflow-x-hidden": {
|
|
2181
|
+
"overflow-x": "hidden"
|
|
2182
|
+
},
|
|
2183
|
+
".overflow-y-hidden": {
|
|
2184
|
+
"overflow-y": "hidden"
|
|
2185
|
+
},
|
|
2186
|
+
".overflow-x-clip": {
|
|
2187
|
+
"overflow-x": "clip"
|
|
2188
|
+
},
|
|
2189
|
+
".overflow-y-clip": {
|
|
2190
|
+
"overflow-y": "clip"
|
|
2191
|
+
},
|
|
2192
|
+
".overflow-x-visible": {
|
|
2193
|
+
"overflow-x": "visible"
|
|
2194
|
+
},
|
|
2195
|
+
".overflow-y-visible": {
|
|
2196
|
+
"overflow-y": "visible"
|
|
2197
|
+
},
|
|
2198
|
+
".overflow-x-scroll": {
|
|
2199
|
+
"overflow-x": "scroll"
|
|
2200
|
+
},
|
|
2201
|
+
".overflow-y-scroll": {
|
|
2202
|
+
"overflow-y": "scroll"
|
|
2203
|
+
}
|
|
2204
|
+
});
|
|
2205
|
+
},
|
|
2206
|
+
overscrollBehavior: ({ addUtilities })=>{
|
|
2207
|
+
addUtilities({
|
|
2208
|
+
".overscroll-auto": {
|
|
2209
|
+
"overscroll-behavior": "auto"
|
|
2210
|
+
},
|
|
2211
|
+
".overscroll-contain": {
|
|
2212
|
+
"overscroll-behavior": "contain"
|
|
2213
|
+
},
|
|
2214
|
+
".overscroll-none": {
|
|
2215
|
+
"overscroll-behavior": "none"
|
|
2216
|
+
},
|
|
2217
|
+
".overscroll-y-auto": {
|
|
2218
|
+
"overscroll-behavior-y": "auto"
|
|
2219
|
+
},
|
|
2220
|
+
".overscroll-y-contain": {
|
|
2221
|
+
"overscroll-behavior-y": "contain"
|
|
2222
|
+
},
|
|
2223
|
+
".overscroll-y-none": {
|
|
2224
|
+
"overscroll-behavior-y": "none"
|
|
2225
|
+
},
|
|
2226
|
+
".overscroll-x-auto": {
|
|
2227
|
+
"overscroll-behavior-x": "auto"
|
|
2228
|
+
},
|
|
2229
|
+
".overscroll-x-contain": {
|
|
2230
|
+
"overscroll-behavior-x": "contain"
|
|
2231
|
+
},
|
|
2232
|
+
".overscroll-x-none": {
|
|
2233
|
+
"overscroll-behavior-x": "none"
|
|
2234
|
+
}
|
|
2235
|
+
});
|
|
2236
|
+
},
|
|
2237
|
+
scrollBehavior: ({ addUtilities })=>{
|
|
2238
|
+
addUtilities({
|
|
2239
|
+
".scroll-auto": {
|
|
2240
|
+
"scroll-behavior": "auto"
|
|
2241
|
+
},
|
|
2242
|
+
".scroll-smooth": {
|
|
2243
|
+
"scroll-behavior": "smooth"
|
|
2244
|
+
}
|
|
2245
|
+
});
|
|
2246
|
+
},
|
|
2247
|
+
textOverflow: ({ addUtilities })=>{
|
|
2248
|
+
addUtilities({
|
|
2249
|
+
".truncate": {
|
|
2250
|
+
overflow: "hidden",
|
|
2251
|
+
"text-overflow": "ellipsis",
|
|
2252
|
+
"white-space": "nowrap"
|
|
2253
|
+
},
|
|
2254
|
+
".overflow-ellipsis": {
|
|
2255
|
+
"text-overflow": "ellipsis"
|
|
2256
|
+
},
|
|
2257
|
+
".text-ellipsis": {
|
|
2258
|
+
"text-overflow": "ellipsis"
|
|
2259
|
+
},
|
|
2260
|
+
".text-clip": {
|
|
2261
|
+
"text-overflow": "clip"
|
|
2262
|
+
}
|
|
2263
|
+
});
|
|
2264
|
+
},
|
|
2265
|
+
hyphens: ({ addUtilities })=>{
|
|
2266
|
+
addUtilities({
|
|
2267
|
+
".hyphens-none": {
|
|
2268
|
+
hyphens: "none"
|
|
2269
|
+
},
|
|
2270
|
+
".hyphens-manual": {
|
|
2271
|
+
hyphens: "manual"
|
|
2272
|
+
},
|
|
2273
|
+
".hyphens-auto": {
|
|
2274
|
+
hyphens: "auto"
|
|
2275
|
+
}
|
|
2276
|
+
});
|
|
2277
|
+
},
|
|
2278
|
+
whitespace: ({ addUtilities })=>{
|
|
2279
|
+
addUtilities({
|
|
2280
|
+
".whitespace-normal": {
|
|
2281
|
+
"white-space": "normal"
|
|
2282
|
+
},
|
|
2283
|
+
".whitespace-nowrap": {
|
|
2284
|
+
"white-space": "nowrap"
|
|
2285
|
+
},
|
|
2286
|
+
".whitespace-pre": {
|
|
2287
|
+
"white-space": "pre"
|
|
2288
|
+
},
|
|
2289
|
+
".whitespace-pre-line": {
|
|
2290
|
+
"white-space": "pre-line"
|
|
2291
|
+
},
|
|
2292
|
+
".whitespace-pre-wrap": {
|
|
2293
|
+
"white-space": "pre-wrap"
|
|
2294
|
+
},
|
|
2295
|
+
".whitespace-break-spaces": {
|
|
2296
|
+
"white-space": "break-spaces"
|
|
2297
|
+
}
|
|
2298
|
+
});
|
|
2299
|
+
},
|
|
2300
|
+
wordBreak: ({ addUtilities })=>{
|
|
2301
|
+
addUtilities({
|
|
2302
|
+
".break-normal": {
|
|
2303
|
+
"overflow-wrap": "normal",
|
|
2304
|
+
"word-break": "normal"
|
|
2305
|
+
},
|
|
2306
|
+
".break-words": {
|
|
2307
|
+
"overflow-wrap": "break-word"
|
|
2308
|
+
},
|
|
2309
|
+
".break-all": {
|
|
2310
|
+
"word-break": "break-all"
|
|
2311
|
+
},
|
|
2312
|
+
".break-keep": {
|
|
2313
|
+
"word-break": "keep-all"
|
|
2314
|
+
}
|
|
2315
|
+
});
|
|
2316
|
+
},
|
|
2317
|
+
borderRadius: (0, _createUtilityPlugin.default)("borderRadius", [
|
|
2318
|
+
[
|
|
2319
|
+
"rounded",
|
|
2320
|
+
[
|
|
2321
|
+
"border-radius"
|
|
2322
|
+
]
|
|
2323
|
+
],
|
|
2324
|
+
[
|
|
2325
|
+
[
|
|
2326
|
+
"rounded-s",
|
|
2327
|
+
[
|
|
2328
|
+
"border-start-start-radius",
|
|
2329
|
+
"border-end-start-radius"
|
|
2330
|
+
]
|
|
2331
|
+
],
|
|
2332
|
+
[
|
|
2333
|
+
"rounded-e",
|
|
2334
|
+
[
|
|
2335
|
+
"border-start-end-radius",
|
|
2336
|
+
"border-end-end-radius"
|
|
2337
|
+
]
|
|
2338
|
+
],
|
|
2339
|
+
[
|
|
2340
|
+
"rounded-t",
|
|
2341
|
+
[
|
|
2342
|
+
"border-top-left-radius",
|
|
2343
|
+
"border-top-right-radius"
|
|
2344
|
+
]
|
|
2345
|
+
],
|
|
2346
|
+
[
|
|
2347
|
+
"rounded-r",
|
|
2348
|
+
[
|
|
2349
|
+
"border-top-right-radius",
|
|
2350
|
+
"border-bottom-right-radius"
|
|
2351
|
+
]
|
|
2352
|
+
],
|
|
2353
|
+
[
|
|
2354
|
+
"rounded-b",
|
|
2355
|
+
[
|
|
2356
|
+
"border-bottom-right-radius",
|
|
2357
|
+
"border-bottom-left-radius"
|
|
2358
|
+
]
|
|
2359
|
+
],
|
|
2360
|
+
[
|
|
2361
|
+
"rounded-l",
|
|
2362
|
+
[
|
|
2363
|
+
"border-top-left-radius",
|
|
2364
|
+
"border-bottom-left-radius"
|
|
2365
|
+
]
|
|
2366
|
+
]
|
|
2367
|
+
],
|
|
2368
|
+
[
|
|
2369
|
+
[
|
|
2370
|
+
"rounded-ss",
|
|
2371
|
+
[
|
|
2372
|
+
"border-start-start-radius"
|
|
2373
|
+
]
|
|
2374
|
+
],
|
|
2375
|
+
[
|
|
2376
|
+
"rounded-se",
|
|
2377
|
+
[
|
|
2378
|
+
"border-start-end-radius"
|
|
2379
|
+
]
|
|
2380
|
+
],
|
|
2381
|
+
[
|
|
2382
|
+
"rounded-ee",
|
|
2383
|
+
[
|
|
2384
|
+
"border-end-end-radius"
|
|
2385
|
+
]
|
|
2386
|
+
],
|
|
2387
|
+
[
|
|
2388
|
+
"rounded-es",
|
|
2389
|
+
[
|
|
2390
|
+
"border-end-start-radius"
|
|
2391
|
+
]
|
|
2392
|
+
],
|
|
2393
|
+
[
|
|
2394
|
+
"rounded-tl",
|
|
2395
|
+
[
|
|
2396
|
+
"border-top-left-radius"
|
|
2397
|
+
]
|
|
2398
|
+
],
|
|
2399
|
+
[
|
|
2400
|
+
"rounded-tr",
|
|
2401
|
+
[
|
|
2402
|
+
"border-top-right-radius"
|
|
2403
|
+
]
|
|
2404
|
+
],
|
|
2405
|
+
[
|
|
2406
|
+
"rounded-br",
|
|
2407
|
+
[
|
|
2408
|
+
"border-bottom-right-radius"
|
|
2409
|
+
]
|
|
2410
|
+
],
|
|
2411
|
+
[
|
|
2412
|
+
"rounded-bl",
|
|
2413
|
+
[
|
|
2414
|
+
"border-bottom-left-radius"
|
|
2415
|
+
]
|
|
2416
|
+
]
|
|
2417
|
+
]
|
|
2418
|
+
]),
|
|
2419
|
+
borderWidth: (0, _createUtilityPlugin.default)("borderWidth", [
|
|
2420
|
+
[
|
|
2421
|
+
"border",
|
|
2422
|
+
[
|
|
2423
|
+
[
|
|
2424
|
+
"@defaults border-width",
|
|
2425
|
+
{}
|
|
2426
|
+
],
|
|
2427
|
+
"border-width"
|
|
2428
|
+
]
|
|
2429
|
+
],
|
|
2430
|
+
[
|
|
2431
|
+
[
|
|
2432
|
+
"border-x",
|
|
2433
|
+
[
|
|
2434
|
+
[
|
|
2435
|
+
"@defaults border-width",
|
|
2436
|
+
{}
|
|
2437
|
+
],
|
|
2438
|
+
"border-left-width",
|
|
2439
|
+
"border-right-width"
|
|
2440
|
+
]
|
|
2441
|
+
],
|
|
2442
|
+
[
|
|
2443
|
+
"border-y",
|
|
2444
|
+
[
|
|
2445
|
+
[
|
|
2446
|
+
"@defaults border-width",
|
|
2447
|
+
{}
|
|
2448
|
+
],
|
|
2449
|
+
"border-top-width",
|
|
2450
|
+
"border-bottom-width"
|
|
2451
|
+
]
|
|
2452
|
+
]
|
|
2453
|
+
],
|
|
2454
|
+
[
|
|
2455
|
+
[
|
|
2456
|
+
"border-s",
|
|
2457
|
+
[
|
|
2458
|
+
[
|
|
2459
|
+
"@defaults border-width",
|
|
2460
|
+
{}
|
|
2461
|
+
],
|
|
2462
|
+
"border-inline-start-width"
|
|
2463
|
+
]
|
|
2464
|
+
],
|
|
2465
|
+
[
|
|
2466
|
+
"border-e",
|
|
2467
|
+
[
|
|
2468
|
+
[
|
|
2469
|
+
"@defaults border-width",
|
|
2470
|
+
{}
|
|
2471
|
+
],
|
|
2472
|
+
"border-inline-end-width"
|
|
2473
|
+
]
|
|
2474
|
+
],
|
|
2475
|
+
[
|
|
2476
|
+
"border-t",
|
|
2477
|
+
[
|
|
2478
|
+
[
|
|
2479
|
+
"@defaults border-width",
|
|
2480
|
+
{}
|
|
2481
|
+
],
|
|
2482
|
+
"border-top-width"
|
|
2483
|
+
]
|
|
2484
|
+
],
|
|
2485
|
+
[
|
|
2486
|
+
"border-r",
|
|
2487
|
+
[
|
|
2488
|
+
[
|
|
2489
|
+
"@defaults border-width",
|
|
2490
|
+
{}
|
|
2491
|
+
],
|
|
2492
|
+
"border-right-width"
|
|
2493
|
+
]
|
|
2494
|
+
],
|
|
2495
|
+
[
|
|
2496
|
+
"border-b",
|
|
2497
|
+
[
|
|
2498
|
+
[
|
|
2499
|
+
"@defaults border-width",
|
|
2500
|
+
{}
|
|
2501
|
+
],
|
|
2502
|
+
"border-bottom-width"
|
|
2503
|
+
]
|
|
2504
|
+
],
|
|
2505
|
+
[
|
|
2506
|
+
"border-l",
|
|
2507
|
+
[
|
|
2508
|
+
[
|
|
2509
|
+
"@defaults border-width",
|
|
2510
|
+
{}
|
|
2511
|
+
],
|
|
2512
|
+
"border-left-width"
|
|
2513
|
+
]
|
|
2514
|
+
]
|
|
2515
|
+
]
|
|
2516
|
+
], {
|
|
2517
|
+
type: [
|
|
2518
|
+
"line-width",
|
|
2519
|
+
"length"
|
|
2520
|
+
]
|
|
2521
|
+
}),
|
|
2522
|
+
borderStyle: ({ addUtilities })=>{
|
|
2523
|
+
addUtilities({
|
|
2524
|
+
".border-solid": {
|
|
2525
|
+
"border-style": "solid"
|
|
2526
|
+
},
|
|
2527
|
+
".border-dashed": {
|
|
2528
|
+
"border-style": "dashed"
|
|
2529
|
+
},
|
|
2530
|
+
".border-dotted": {
|
|
2531
|
+
"border-style": "dotted"
|
|
2532
|
+
},
|
|
2533
|
+
".border-double": {
|
|
2534
|
+
"border-style": "double"
|
|
2535
|
+
},
|
|
2536
|
+
".border-hidden": {
|
|
2537
|
+
"border-style": "hidden"
|
|
2538
|
+
},
|
|
2539
|
+
".border-none": {
|
|
2540
|
+
"border-style": "none"
|
|
2541
|
+
}
|
|
2542
|
+
});
|
|
2543
|
+
},
|
|
2544
|
+
borderColor: ({ matchUtilities , theme , corePlugins })=>{
|
|
2545
|
+
matchUtilities({
|
|
2546
|
+
border: (value)=>{
|
|
2547
|
+
if (!corePlugins("borderOpacity")) {
|
|
2548
|
+
return {
|
|
2549
|
+
"border-color": (0, _toColorValue.default)(value)
|
|
2550
|
+
};
|
|
2551
|
+
}
|
|
2552
|
+
return (0, _withAlphaVariable.default)({
|
|
2553
|
+
color: value,
|
|
2554
|
+
property: "border-color",
|
|
2555
|
+
variable: "--tw-border-opacity"
|
|
2556
|
+
});
|
|
2557
|
+
}
|
|
2558
|
+
}, {
|
|
2559
|
+
values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette.default)(theme("borderColor"))),
|
|
2560
|
+
type: [
|
|
2561
|
+
"color",
|
|
2562
|
+
"any"
|
|
2563
|
+
]
|
|
2564
|
+
});
|
|
2565
|
+
matchUtilities({
|
|
2566
|
+
"border-x": (value)=>{
|
|
2567
|
+
if (!corePlugins("borderOpacity")) {
|
|
2568
|
+
return {
|
|
2569
|
+
"border-left-color": (0, _toColorValue.default)(value),
|
|
2570
|
+
"border-right-color": (0, _toColorValue.default)(value)
|
|
2571
|
+
};
|
|
2572
|
+
}
|
|
2573
|
+
return (0, _withAlphaVariable.default)({
|
|
2574
|
+
color: value,
|
|
2575
|
+
property: [
|
|
2576
|
+
"border-left-color",
|
|
2577
|
+
"border-right-color"
|
|
2578
|
+
],
|
|
2579
|
+
variable: "--tw-border-opacity"
|
|
2580
|
+
});
|
|
2581
|
+
},
|
|
2582
|
+
"border-y": (value)=>{
|
|
2583
|
+
if (!corePlugins("borderOpacity")) {
|
|
2584
|
+
return {
|
|
2585
|
+
"border-top-color": (0, _toColorValue.default)(value),
|
|
2586
|
+
"border-bottom-color": (0, _toColorValue.default)(value)
|
|
2587
|
+
};
|
|
2588
|
+
}
|
|
2589
|
+
return (0, _withAlphaVariable.default)({
|
|
2590
|
+
color: value,
|
|
2591
|
+
property: [
|
|
2592
|
+
"border-top-color",
|
|
2593
|
+
"border-bottom-color"
|
|
2594
|
+
],
|
|
2595
|
+
variable: "--tw-border-opacity"
|
|
2596
|
+
});
|
|
2597
|
+
}
|
|
2598
|
+
}, {
|
|
2599
|
+
values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette.default)(theme("borderColor"))),
|
|
2600
|
+
type: [
|
|
2601
|
+
"color",
|
|
2602
|
+
"any"
|
|
2603
|
+
]
|
|
2604
|
+
});
|
|
2605
|
+
matchUtilities({
|
|
2606
|
+
"border-s": (value)=>{
|
|
2607
|
+
if (!corePlugins("borderOpacity")) {
|
|
2608
|
+
return {
|
|
2609
|
+
"border-inline-start-color": (0, _toColorValue.default)(value)
|
|
2610
|
+
};
|
|
2611
|
+
}
|
|
2612
|
+
return (0, _withAlphaVariable.default)({
|
|
2613
|
+
color: value,
|
|
2614
|
+
property: "border-inline-start-color",
|
|
2615
|
+
variable: "--tw-border-opacity"
|
|
2616
|
+
});
|
|
2617
|
+
},
|
|
2618
|
+
"border-e": (value)=>{
|
|
2619
|
+
if (!corePlugins("borderOpacity")) {
|
|
2620
|
+
return {
|
|
2621
|
+
"border-inline-end-color": (0, _toColorValue.default)(value)
|
|
2622
|
+
};
|
|
2623
|
+
}
|
|
2624
|
+
return (0, _withAlphaVariable.default)({
|
|
2625
|
+
color: value,
|
|
2626
|
+
property: "border-inline-end-color",
|
|
2627
|
+
variable: "--tw-border-opacity"
|
|
2628
|
+
});
|
|
2629
|
+
},
|
|
2630
|
+
"border-t": (value)=>{
|
|
2631
|
+
if (!corePlugins("borderOpacity")) {
|
|
2632
|
+
return {
|
|
2633
|
+
"border-top-color": (0, _toColorValue.default)(value)
|
|
2634
|
+
};
|
|
2635
|
+
}
|
|
2636
|
+
return (0, _withAlphaVariable.default)({
|
|
2637
|
+
color: value,
|
|
2638
|
+
property: "border-top-color",
|
|
2639
|
+
variable: "--tw-border-opacity"
|
|
2640
|
+
});
|
|
2641
|
+
},
|
|
2642
|
+
"border-r": (value)=>{
|
|
2643
|
+
if (!corePlugins("borderOpacity")) {
|
|
2644
|
+
return {
|
|
2645
|
+
"border-right-color": (0, _toColorValue.default)(value)
|
|
2646
|
+
};
|
|
2647
|
+
}
|
|
2648
|
+
return (0, _withAlphaVariable.default)({
|
|
2649
|
+
color: value,
|
|
2650
|
+
property: "border-right-color",
|
|
2651
|
+
variable: "--tw-border-opacity"
|
|
2652
|
+
});
|
|
2653
|
+
},
|
|
2654
|
+
"border-b": (value)=>{
|
|
2655
|
+
if (!corePlugins("borderOpacity")) {
|
|
2656
|
+
return {
|
|
2657
|
+
"border-bottom-color": (0, _toColorValue.default)(value)
|
|
2658
|
+
};
|
|
2659
|
+
}
|
|
2660
|
+
return (0, _withAlphaVariable.default)({
|
|
2661
|
+
color: value,
|
|
2662
|
+
property: "border-bottom-color",
|
|
2663
|
+
variable: "--tw-border-opacity"
|
|
2664
|
+
});
|
|
2665
|
+
},
|
|
2666
|
+
"border-l": (value)=>{
|
|
2667
|
+
if (!corePlugins("borderOpacity")) {
|
|
2668
|
+
return {
|
|
2669
|
+
"border-left-color": (0, _toColorValue.default)(value)
|
|
2670
|
+
};
|
|
2671
|
+
}
|
|
2672
|
+
return (0, _withAlphaVariable.default)({
|
|
2673
|
+
color: value,
|
|
2674
|
+
property: "border-left-color",
|
|
2675
|
+
variable: "--tw-border-opacity"
|
|
2676
|
+
});
|
|
2677
|
+
}
|
|
2678
|
+
}, {
|
|
2679
|
+
values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette.default)(theme("borderColor"))),
|
|
2680
|
+
type: [
|
|
2681
|
+
"color",
|
|
2682
|
+
"any"
|
|
2683
|
+
]
|
|
2684
|
+
});
|
|
2685
|
+
},
|
|
2686
|
+
borderOpacity: (0, _createUtilityPlugin.default)("borderOpacity", [
|
|
2687
|
+
[
|
|
2688
|
+
"border-opacity",
|
|
2689
|
+
[
|
|
2690
|
+
"--tw-border-opacity"
|
|
2691
|
+
]
|
|
2692
|
+
]
|
|
2693
|
+
]),
|
|
2694
|
+
backgroundColor: ({ matchUtilities , theme , corePlugins })=>{
|
|
2695
|
+
matchUtilities({
|
|
2696
|
+
bg: (value)=>{
|
|
2697
|
+
if (!corePlugins("backgroundOpacity")) {
|
|
2698
|
+
return {
|
|
2699
|
+
"background-color": (0, _toColorValue.default)(value)
|
|
2700
|
+
};
|
|
2701
|
+
}
|
|
2702
|
+
return (0, _withAlphaVariable.default)({
|
|
2703
|
+
color: value,
|
|
2704
|
+
property: "background-color",
|
|
2705
|
+
variable: "--tw-bg-opacity"
|
|
2706
|
+
});
|
|
2707
|
+
}
|
|
2708
|
+
}, {
|
|
2709
|
+
values: (0, _flattenColorPalette.default)(theme("backgroundColor")),
|
|
2710
|
+
type: [
|
|
2711
|
+
"color",
|
|
2712
|
+
"any"
|
|
2713
|
+
]
|
|
2714
|
+
});
|
|
2715
|
+
},
|
|
2716
|
+
backgroundOpacity: (0, _createUtilityPlugin.default)("backgroundOpacity", [
|
|
2717
|
+
[
|
|
2718
|
+
"bg-opacity",
|
|
2719
|
+
[
|
|
2720
|
+
"--tw-bg-opacity"
|
|
2721
|
+
]
|
|
2722
|
+
]
|
|
2723
|
+
]),
|
|
2724
|
+
backgroundImage: (0, _createUtilityPlugin.default)("backgroundImage", [
|
|
2725
|
+
[
|
|
2726
|
+
"bg",
|
|
2727
|
+
[
|
|
2728
|
+
"background-image"
|
|
2729
|
+
]
|
|
2730
|
+
]
|
|
2731
|
+
], {
|
|
2732
|
+
type: [
|
|
2733
|
+
"lookup",
|
|
2734
|
+
"image",
|
|
2735
|
+
"url"
|
|
2736
|
+
]
|
|
2737
|
+
}),
|
|
2738
|
+
gradientColorStops: (()=>{
|
|
2739
|
+
function transparentTo(value) {
|
|
2740
|
+
return (0, _withAlphaVariable.withAlphaValue)(value, 0, "rgb(255 255 255 / 0)");
|
|
2741
|
+
}
|
|
2742
|
+
return function({ matchUtilities , theme , addDefaults }) {
|
|
2743
|
+
addDefaults("gradient-color-stops", {
|
|
2744
|
+
"--tw-gradient-from-position": " ",
|
|
2745
|
+
"--tw-gradient-via-position": " ",
|
|
2746
|
+
"--tw-gradient-to-position": " "
|
|
2747
|
+
});
|
|
2748
|
+
let options = {
|
|
2749
|
+
values: (0, _flattenColorPalette.default)(theme("gradientColorStops")),
|
|
2750
|
+
type: [
|
|
2751
|
+
"color",
|
|
2752
|
+
"any"
|
|
2753
|
+
]
|
|
2754
|
+
};
|
|
2755
|
+
let positionOptions = {
|
|
2756
|
+
values: theme("gradientColorStopPositions"),
|
|
2757
|
+
type: [
|
|
2758
|
+
"length",
|
|
2759
|
+
"percentage"
|
|
2760
|
+
]
|
|
2761
|
+
};
|
|
2762
|
+
matchUtilities({
|
|
2763
|
+
from: (value)=>{
|
|
2764
|
+
let transparentToValue = transparentTo(value);
|
|
2765
|
+
return {
|
|
2766
|
+
"@defaults gradient-color-stops": {},
|
|
2767
|
+
"--tw-gradient-from": `${(0, _toColorValue.default)(value)} var(--tw-gradient-from-position)`,
|
|
2768
|
+
"--tw-gradient-to": `${transparentToValue} var(--tw-gradient-to-position)`,
|
|
2769
|
+
"--tw-gradient-stops": `var(--tw-gradient-from), var(--tw-gradient-to)`
|
|
2770
|
+
};
|
|
2771
|
+
}
|
|
2772
|
+
}, options);
|
|
2773
|
+
matchUtilities({
|
|
2774
|
+
from: (value)=>{
|
|
2775
|
+
return {
|
|
2776
|
+
"--tw-gradient-from-position": value
|
|
2777
|
+
};
|
|
2778
|
+
}
|
|
2779
|
+
}, positionOptions);
|
|
2780
|
+
matchUtilities({
|
|
2781
|
+
via: (value)=>{
|
|
2782
|
+
let transparentToValue = transparentTo(value);
|
|
2783
|
+
return {
|
|
2784
|
+
"@defaults gradient-color-stops": {},
|
|
2785
|
+
"--tw-gradient-to": `${transparentToValue} var(--tw-gradient-to-position)`,
|
|
2786
|
+
"--tw-gradient-stops": `var(--tw-gradient-from), ${(0, _toColorValue.default)(value)} var(--tw-gradient-via-position), var(--tw-gradient-to)`
|
|
2787
|
+
};
|
|
2788
|
+
}
|
|
2789
|
+
}, options);
|
|
2790
|
+
matchUtilities({
|
|
2791
|
+
via: (value)=>{
|
|
2792
|
+
return {
|
|
2793
|
+
"--tw-gradient-via-position": value
|
|
2794
|
+
};
|
|
2795
|
+
}
|
|
2796
|
+
}, positionOptions);
|
|
2797
|
+
matchUtilities({
|
|
2798
|
+
to: (value)=>({
|
|
2799
|
+
"@defaults gradient-color-stops": {},
|
|
2800
|
+
"--tw-gradient-to": `${(0, _toColorValue.default)(value)} var(--tw-gradient-to-position)`
|
|
2801
|
+
})
|
|
2802
|
+
}, options);
|
|
2803
|
+
matchUtilities({
|
|
2804
|
+
to: (value)=>{
|
|
2805
|
+
return {
|
|
2806
|
+
"--tw-gradient-to-position": value
|
|
2807
|
+
};
|
|
2808
|
+
}
|
|
2809
|
+
}, positionOptions);
|
|
2810
|
+
};
|
|
2811
|
+
})(),
|
|
2812
|
+
boxDecorationBreak: ({ addUtilities })=>{
|
|
2813
|
+
addUtilities({
|
|
2814
|
+
".decoration-slice": {
|
|
2815
|
+
"box-decoration-break": "slice"
|
|
2816
|
+
},
|
|
2817
|
+
".decoration-clone": {
|
|
2818
|
+
"box-decoration-break": "clone"
|
|
2819
|
+
},
|
|
2820
|
+
".box-decoration-slice": {
|
|
2821
|
+
"box-decoration-break": "slice"
|
|
2822
|
+
},
|
|
2823
|
+
".box-decoration-clone": {
|
|
2824
|
+
"box-decoration-break": "clone"
|
|
2825
|
+
}
|
|
2826
|
+
});
|
|
2827
|
+
},
|
|
2828
|
+
backgroundSize: (0, _createUtilityPlugin.default)("backgroundSize", [
|
|
2829
|
+
[
|
|
2830
|
+
"bg",
|
|
2831
|
+
[
|
|
2832
|
+
"background-size"
|
|
2833
|
+
]
|
|
2834
|
+
]
|
|
2835
|
+
], {
|
|
2836
|
+
type: [
|
|
2837
|
+
"lookup",
|
|
2838
|
+
"length",
|
|
2839
|
+
"percentage",
|
|
2840
|
+
"size"
|
|
2841
|
+
]
|
|
2842
|
+
}),
|
|
2843
|
+
backgroundAttachment: ({ addUtilities })=>{
|
|
2844
|
+
addUtilities({
|
|
2845
|
+
".bg-fixed": {
|
|
2846
|
+
"background-attachment": "fixed"
|
|
2847
|
+
},
|
|
2848
|
+
".bg-local": {
|
|
2849
|
+
"background-attachment": "local"
|
|
2850
|
+
},
|
|
2851
|
+
".bg-scroll": {
|
|
2852
|
+
"background-attachment": "scroll"
|
|
2853
|
+
}
|
|
2854
|
+
});
|
|
2855
|
+
},
|
|
2856
|
+
backgroundClip: ({ addUtilities })=>{
|
|
2857
|
+
addUtilities({
|
|
2858
|
+
".bg-clip-border": {
|
|
2859
|
+
"background-clip": "border-box"
|
|
2860
|
+
},
|
|
2861
|
+
".bg-clip-padding": {
|
|
2862
|
+
"background-clip": "padding-box"
|
|
2863
|
+
},
|
|
2864
|
+
".bg-clip-content": {
|
|
2865
|
+
"background-clip": "content-box"
|
|
2866
|
+
},
|
|
2867
|
+
".bg-clip-text": {
|
|
2868
|
+
"background-clip": "text"
|
|
2869
|
+
}
|
|
2870
|
+
});
|
|
2871
|
+
},
|
|
2872
|
+
backgroundPosition: (0, _createUtilityPlugin.default)("backgroundPosition", [
|
|
2873
|
+
[
|
|
2874
|
+
"bg",
|
|
2875
|
+
[
|
|
2876
|
+
"background-position"
|
|
2877
|
+
]
|
|
2878
|
+
]
|
|
2879
|
+
], {
|
|
2880
|
+
type: [
|
|
2881
|
+
"lookup",
|
|
2882
|
+
[
|
|
2883
|
+
"position",
|
|
2884
|
+
{
|
|
2885
|
+
preferOnConflict: true
|
|
2886
|
+
}
|
|
2887
|
+
]
|
|
2888
|
+
]
|
|
2889
|
+
}),
|
|
2890
|
+
backgroundRepeat: ({ addUtilities })=>{
|
|
2891
|
+
addUtilities({
|
|
2892
|
+
".bg-repeat": {
|
|
2893
|
+
"background-repeat": "repeat"
|
|
2894
|
+
},
|
|
2895
|
+
".bg-no-repeat": {
|
|
2896
|
+
"background-repeat": "no-repeat"
|
|
2897
|
+
},
|
|
2898
|
+
".bg-repeat-x": {
|
|
2899
|
+
"background-repeat": "repeat-x"
|
|
2900
|
+
},
|
|
2901
|
+
".bg-repeat-y": {
|
|
2902
|
+
"background-repeat": "repeat-y"
|
|
2903
|
+
},
|
|
2904
|
+
".bg-repeat-round": {
|
|
2905
|
+
"background-repeat": "round"
|
|
2906
|
+
},
|
|
2907
|
+
".bg-repeat-space": {
|
|
2908
|
+
"background-repeat": "space"
|
|
2909
|
+
}
|
|
2910
|
+
});
|
|
2911
|
+
},
|
|
2912
|
+
backgroundOrigin: ({ addUtilities })=>{
|
|
2913
|
+
addUtilities({
|
|
2914
|
+
".bg-origin-border": {
|
|
2915
|
+
"background-origin": "border-box"
|
|
2916
|
+
},
|
|
2917
|
+
".bg-origin-padding": {
|
|
2918
|
+
"background-origin": "padding-box"
|
|
2919
|
+
},
|
|
2920
|
+
".bg-origin-content": {
|
|
2921
|
+
"background-origin": "content-box"
|
|
2922
|
+
}
|
|
2923
|
+
});
|
|
2924
|
+
},
|
|
2925
|
+
fill: ({ matchUtilities , theme })=>{
|
|
2926
|
+
matchUtilities({
|
|
2927
|
+
fill: (value)=>{
|
|
2928
|
+
return {
|
|
2929
|
+
fill: (0, _toColorValue.default)(value)
|
|
2930
|
+
};
|
|
2931
|
+
}
|
|
2932
|
+
}, {
|
|
2933
|
+
values: (0, _flattenColorPalette.default)(theme("fill")),
|
|
2934
|
+
type: [
|
|
2935
|
+
"color",
|
|
2936
|
+
"any"
|
|
2937
|
+
]
|
|
2938
|
+
});
|
|
2939
|
+
},
|
|
2940
|
+
stroke: ({ matchUtilities , theme })=>{
|
|
2941
|
+
matchUtilities({
|
|
2942
|
+
stroke: (value)=>{
|
|
2943
|
+
return {
|
|
2944
|
+
stroke: (0, _toColorValue.default)(value)
|
|
2945
|
+
};
|
|
2946
|
+
}
|
|
2947
|
+
}, {
|
|
2948
|
+
values: (0, _flattenColorPalette.default)(theme("stroke")),
|
|
2949
|
+
type: [
|
|
2950
|
+
"color",
|
|
2951
|
+
"url",
|
|
2952
|
+
"any"
|
|
2953
|
+
]
|
|
2954
|
+
});
|
|
2955
|
+
},
|
|
2956
|
+
strokeWidth: (0, _createUtilityPlugin.default)("strokeWidth", [
|
|
2957
|
+
[
|
|
2958
|
+
"stroke",
|
|
2959
|
+
[
|
|
2960
|
+
"stroke-width"
|
|
2961
|
+
]
|
|
2962
|
+
]
|
|
2963
|
+
], {
|
|
2964
|
+
type: [
|
|
2965
|
+
"length",
|
|
2966
|
+
"number",
|
|
2967
|
+
"percentage"
|
|
2968
|
+
]
|
|
2969
|
+
}),
|
|
2970
|
+
objectFit: ({ addUtilities })=>{
|
|
2971
|
+
addUtilities({
|
|
2972
|
+
".object-contain": {
|
|
2973
|
+
"object-fit": "contain"
|
|
2974
|
+
},
|
|
2975
|
+
".object-cover": {
|
|
2976
|
+
"object-fit": "cover"
|
|
2977
|
+
},
|
|
2978
|
+
".object-fill": {
|
|
2979
|
+
"object-fit": "fill"
|
|
2980
|
+
},
|
|
2981
|
+
".object-none": {
|
|
2982
|
+
"object-fit": "none"
|
|
2983
|
+
},
|
|
2984
|
+
".object-scale-down": {
|
|
2985
|
+
"object-fit": "scale-down"
|
|
2986
|
+
}
|
|
2987
|
+
});
|
|
2988
|
+
},
|
|
2989
|
+
objectPosition: (0, _createUtilityPlugin.default)("objectPosition", [
|
|
2990
|
+
[
|
|
2991
|
+
"object",
|
|
2992
|
+
[
|
|
2993
|
+
"object-position"
|
|
2994
|
+
]
|
|
2995
|
+
]
|
|
2996
|
+
]),
|
|
2997
|
+
padding: (0, _createUtilityPlugin.default)("padding", [
|
|
2998
|
+
[
|
|
2999
|
+
"p",
|
|
3000
|
+
[
|
|
3001
|
+
"padding"
|
|
3002
|
+
]
|
|
3003
|
+
],
|
|
3004
|
+
[
|
|
3005
|
+
[
|
|
3006
|
+
"px",
|
|
3007
|
+
[
|
|
3008
|
+
"padding-left",
|
|
3009
|
+
"padding-right"
|
|
3010
|
+
]
|
|
3011
|
+
],
|
|
3012
|
+
[
|
|
3013
|
+
"py",
|
|
3014
|
+
[
|
|
3015
|
+
"padding-top",
|
|
3016
|
+
"padding-bottom"
|
|
3017
|
+
]
|
|
3018
|
+
]
|
|
3019
|
+
],
|
|
3020
|
+
[
|
|
3021
|
+
[
|
|
3022
|
+
"ps",
|
|
3023
|
+
[
|
|
3024
|
+
"padding-inline-start"
|
|
3025
|
+
]
|
|
3026
|
+
],
|
|
3027
|
+
[
|
|
3028
|
+
"pe",
|
|
3029
|
+
[
|
|
3030
|
+
"padding-inline-end"
|
|
3031
|
+
]
|
|
3032
|
+
],
|
|
3033
|
+
[
|
|
3034
|
+
"pt",
|
|
3035
|
+
[
|
|
3036
|
+
"padding-top"
|
|
3037
|
+
]
|
|
3038
|
+
],
|
|
3039
|
+
[
|
|
3040
|
+
"pr",
|
|
3041
|
+
[
|
|
3042
|
+
"padding-right"
|
|
3043
|
+
]
|
|
3044
|
+
],
|
|
3045
|
+
[
|
|
3046
|
+
"pb",
|
|
3047
|
+
[
|
|
3048
|
+
"padding-bottom"
|
|
3049
|
+
]
|
|
3050
|
+
],
|
|
3051
|
+
[
|
|
3052
|
+
"pl",
|
|
3053
|
+
[
|
|
3054
|
+
"padding-left"
|
|
3055
|
+
]
|
|
3056
|
+
]
|
|
3057
|
+
]
|
|
3058
|
+
]),
|
|
3059
|
+
textAlign: ({ addUtilities })=>{
|
|
3060
|
+
addUtilities({
|
|
3061
|
+
".text-left": {
|
|
3062
|
+
"text-align": "left"
|
|
3063
|
+
},
|
|
3064
|
+
".text-center": {
|
|
3065
|
+
"text-align": "center"
|
|
3066
|
+
},
|
|
3067
|
+
".text-right": {
|
|
3068
|
+
"text-align": "right"
|
|
3069
|
+
},
|
|
3070
|
+
".text-justify": {
|
|
3071
|
+
"text-align": "justify"
|
|
3072
|
+
},
|
|
3073
|
+
".text-start": {
|
|
3074
|
+
"text-align": "start"
|
|
3075
|
+
},
|
|
3076
|
+
".text-end": {
|
|
3077
|
+
"text-align": "end"
|
|
3078
|
+
}
|
|
3079
|
+
});
|
|
3080
|
+
},
|
|
3081
|
+
textIndent: (0, _createUtilityPlugin.default)("textIndent", [
|
|
3082
|
+
[
|
|
3083
|
+
"indent",
|
|
3084
|
+
[
|
|
3085
|
+
"text-indent"
|
|
3086
|
+
]
|
|
3087
|
+
]
|
|
3088
|
+
], {
|
|
3089
|
+
supportsNegativeValues: true
|
|
3090
|
+
}),
|
|
3091
|
+
verticalAlign: ({ addUtilities , matchUtilities })=>{
|
|
3092
|
+
addUtilities({
|
|
3093
|
+
".align-baseline": {
|
|
3094
|
+
"vertical-align": "baseline"
|
|
3095
|
+
},
|
|
3096
|
+
".align-top": {
|
|
3097
|
+
"vertical-align": "top"
|
|
3098
|
+
},
|
|
3099
|
+
".align-middle": {
|
|
3100
|
+
"vertical-align": "middle"
|
|
3101
|
+
},
|
|
3102
|
+
".align-bottom": {
|
|
3103
|
+
"vertical-align": "bottom"
|
|
3104
|
+
},
|
|
3105
|
+
".align-text-top": {
|
|
3106
|
+
"vertical-align": "text-top"
|
|
3107
|
+
},
|
|
3108
|
+
".align-text-bottom": {
|
|
3109
|
+
"vertical-align": "text-bottom"
|
|
3110
|
+
},
|
|
3111
|
+
".align-sub": {
|
|
3112
|
+
"vertical-align": "sub"
|
|
3113
|
+
},
|
|
3114
|
+
".align-super": {
|
|
3115
|
+
"vertical-align": "super"
|
|
3116
|
+
}
|
|
3117
|
+
});
|
|
3118
|
+
matchUtilities({
|
|
3119
|
+
align: (value)=>({
|
|
3120
|
+
"vertical-align": value
|
|
3121
|
+
})
|
|
3122
|
+
});
|
|
3123
|
+
},
|
|
3124
|
+
fontFamily: ({ matchUtilities , theme })=>{
|
|
3125
|
+
matchUtilities({
|
|
3126
|
+
font: (value)=>{
|
|
3127
|
+
let [families, options = {}] = Array.isArray(value) && (0, _isPlainObject.default)(value[1]) ? value : [
|
|
3128
|
+
value
|
|
3129
|
+
];
|
|
3130
|
+
let { fontFeatureSettings , fontVariationSettings } = options;
|
|
3131
|
+
return {
|
|
3132
|
+
"font-family": Array.isArray(families) ? families.join(", ") : families,
|
|
3133
|
+
...fontFeatureSettings === undefined ? {} : {
|
|
3134
|
+
"font-feature-settings": fontFeatureSettings
|
|
3135
|
+
},
|
|
3136
|
+
...fontVariationSettings === undefined ? {} : {
|
|
3137
|
+
"font-variation-settings": fontVariationSettings
|
|
3138
|
+
}
|
|
3139
|
+
};
|
|
3140
|
+
}
|
|
3141
|
+
}, {
|
|
3142
|
+
values: theme("fontFamily"),
|
|
3143
|
+
type: [
|
|
3144
|
+
"lookup",
|
|
3145
|
+
"generic-name",
|
|
3146
|
+
"family-name"
|
|
3147
|
+
]
|
|
3148
|
+
});
|
|
3149
|
+
},
|
|
3150
|
+
fontSize: ({ matchUtilities , theme })=>{
|
|
3151
|
+
matchUtilities({
|
|
3152
|
+
text: (value, { modifier })=>{
|
|
3153
|
+
let [fontSize, options] = Array.isArray(value) ? value : [
|
|
3154
|
+
value
|
|
3155
|
+
];
|
|
3156
|
+
if (modifier) {
|
|
3157
|
+
return {
|
|
3158
|
+
"font-size": fontSize,
|
|
3159
|
+
"line-height": modifier
|
|
3160
|
+
};
|
|
3161
|
+
}
|
|
3162
|
+
let { lineHeight , letterSpacing , fontWeight } = (0, _isPlainObject.default)(options) ? options : {
|
|
3163
|
+
lineHeight: options
|
|
3164
|
+
};
|
|
3165
|
+
return {
|
|
3166
|
+
"font-size": fontSize,
|
|
3167
|
+
...lineHeight === undefined ? {} : {
|
|
3168
|
+
"line-height": lineHeight
|
|
3169
|
+
},
|
|
3170
|
+
...letterSpacing === undefined ? {} : {
|
|
3171
|
+
"letter-spacing": letterSpacing
|
|
3172
|
+
},
|
|
3173
|
+
...fontWeight === undefined ? {} : {
|
|
3174
|
+
"font-weight": fontWeight
|
|
3175
|
+
}
|
|
3176
|
+
};
|
|
3177
|
+
}
|
|
3178
|
+
}, {
|
|
3179
|
+
values: theme("fontSize"),
|
|
3180
|
+
modifiers: theme("lineHeight"),
|
|
3181
|
+
type: [
|
|
3182
|
+
"absolute-size",
|
|
3183
|
+
"relative-size",
|
|
3184
|
+
"length",
|
|
3185
|
+
"percentage"
|
|
3186
|
+
]
|
|
3187
|
+
});
|
|
3188
|
+
},
|
|
3189
|
+
fontWeight: (0, _createUtilityPlugin.default)("fontWeight", [
|
|
3190
|
+
[
|
|
3191
|
+
"font",
|
|
3192
|
+
[
|
|
3193
|
+
"fontWeight"
|
|
3194
|
+
]
|
|
3195
|
+
]
|
|
3196
|
+
], {
|
|
3197
|
+
type: [
|
|
3198
|
+
"lookup",
|
|
3199
|
+
"number",
|
|
3200
|
+
"any"
|
|
3201
|
+
]
|
|
3202
|
+
}),
|
|
3203
|
+
textTransform: ({ addUtilities })=>{
|
|
3204
|
+
addUtilities({
|
|
3205
|
+
".uppercase": {
|
|
3206
|
+
"text-transform": "uppercase"
|
|
3207
|
+
},
|
|
3208
|
+
".lowercase": {
|
|
3209
|
+
"text-transform": "lowercase"
|
|
3210
|
+
},
|
|
3211
|
+
".capitalize": {
|
|
3212
|
+
"text-transform": "capitalize"
|
|
3213
|
+
},
|
|
3214
|
+
".normal-case": {
|
|
3215
|
+
"text-transform": "none"
|
|
3216
|
+
}
|
|
3217
|
+
});
|
|
3218
|
+
},
|
|
3219
|
+
fontStyle: ({ addUtilities })=>{
|
|
3220
|
+
addUtilities({
|
|
3221
|
+
".italic": {
|
|
3222
|
+
"font-style": "italic"
|
|
3223
|
+
},
|
|
3224
|
+
".not-italic": {
|
|
3225
|
+
"font-style": "normal"
|
|
3226
|
+
}
|
|
3227
|
+
});
|
|
3228
|
+
},
|
|
3229
|
+
fontVariantNumeric: ({ addDefaults , addUtilities })=>{
|
|
3230
|
+
let cssFontVariantNumericValue = "var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)";
|
|
3231
|
+
addDefaults("font-variant-numeric", {
|
|
3232
|
+
"--tw-ordinal": " ",
|
|
3233
|
+
"--tw-slashed-zero": " ",
|
|
3234
|
+
"--tw-numeric-figure": " ",
|
|
3235
|
+
"--tw-numeric-spacing": " ",
|
|
3236
|
+
"--tw-numeric-fraction": " "
|
|
3237
|
+
});
|
|
3238
|
+
addUtilities({
|
|
3239
|
+
".normal-nums": {
|
|
3240
|
+
"font-variant-numeric": "normal"
|
|
3241
|
+
},
|
|
3242
|
+
".ordinal": {
|
|
3243
|
+
"@defaults font-variant-numeric": {},
|
|
3244
|
+
"--tw-ordinal": "ordinal",
|
|
3245
|
+
"font-variant-numeric": cssFontVariantNumericValue
|
|
3246
|
+
},
|
|
3247
|
+
".slashed-zero": {
|
|
3248
|
+
"@defaults font-variant-numeric": {},
|
|
3249
|
+
"--tw-slashed-zero": "slashed-zero",
|
|
3250
|
+
"font-variant-numeric": cssFontVariantNumericValue
|
|
3251
|
+
},
|
|
3252
|
+
".lining-nums": {
|
|
3253
|
+
"@defaults font-variant-numeric": {},
|
|
3254
|
+
"--tw-numeric-figure": "lining-nums",
|
|
3255
|
+
"font-variant-numeric": cssFontVariantNumericValue
|
|
3256
|
+
},
|
|
3257
|
+
".oldstyle-nums": {
|
|
3258
|
+
"@defaults font-variant-numeric": {},
|
|
3259
|
+
"--tw-numeric-figure": "oldstyle-nums",
|
|
3260
|
+
"font-variant-numeric": cssFontVariantNumericValue
|
|
3261
|
+
},
|
|
3262
|
+
".proportional-nums": {
|
|
3263
|
+
"@defaults font-variant-numeric": {},
|
|
3264
|
+
"--tw-numeric-spacing": "proportional-nums",
|
|
3265
|
+
"font-variant-numeric": cssFontVariantNumericValue
|
|
3266
|
+
},
|
|
3267
|
+
".tabular-nums": {
|
|
3268
|
+
"@defaults font-variant-numeric": {},
|
|
3269
|
+
"--tw-numeric-spacing": "tabular-nums",
|
|
3270
|
+
"font-variant-numeric": cssFontVariantNumericValue
|
|
3271
|
+
},
|
|
3272
|
+
".diagonal-fractions": {
|
|
3273
|
+
"@defaults font-variant-numeric": {},
|
|
3274
|
+
"--tw-numeric-fraction": "diagonal-fractions",
|
|
3275
|
+
"font-variant-numeric": cssFontVariantNumericValue
|
|
3276
|
+
},
|
|
3277
|
+
".stacked-fractions": {
|
|
3278
|
+
"@defaults font-variant-numeric": {},
|
|
3279
|
+
"--tw-numeric-fraction": "stacked-fractions",
|
|
3280
|
+
"font-variant-numeric": cssFontVariantNumericValue
|
|
3281
|
+
}
|
|
3282
|
+
});
|
|
3283
|
+
},
|
|
3284
|
+
lineHeight: (0, _createUtilityPlugin.default)("lineHeight", [
|
|
3285
|
+
[
|
|
3286
|
+
"leading",
|
|
3287
|
+
[
|
|
3288
|
+
"lineHeight"
|
|
3289
|
+
]
|
|
3290
|
+
]
|
|
3291
|
+
]),
|
|
3292
|
+
letterSpacing: (0, _createUtilityPlugin.default)("letterSpacing", [
|
|
3293
|
+
[
|
|
3294
|
+
"tracking",
|
|
3295
|
+
[
|
|
3296
|
+
"letterSpacing"
|
|
3297
|
+
]
|
|
3298
|
+
]
|
|
3299
|
+
], {
|
|
3300
|
+
supportsNegativeValues: true
|
|
3301
|
+
}),
|
|
3302
|
+
textColor: ({ matchUtilities , theme , corePlugins })=>{
|
|
3303
|
+
matchUtilities({
|
|
3304
|
+
text: (value)=>{
|
|
3305
|
+
if (!corePlugins("textOpacity")) {
|
|
3306
|
+
return {
|
|
3307
|
+
color: (0, _toColorValue.default)(value)
|
|
3308
|
+
};
|
|
3309
|
+
}
|
|
3310
|
+
return (0, _withAlphaVariable.default)({
|
|
3311
|
+
color: value,
|
|
3312
|
+
property: "color",
|
|
3313
|
+
variable: "--tw-text-opacity"
|
|
3314
|
+
});
|
|
3315
|
+
}
|
|
3316
|
+
}, {
|
|
3317
|
+
values: (0, _flattenColorPalette.default)(theme("textColor")),
|
|
3318
|
+
type: [
|
|
3319
|
+
"color",
|
|
3320
|
+
"any"
|
|
3321
|
+
]
|
|
3322
|
+
});
|
|
3323
|
+
},
|
|
3324
|
+
textOpacity: (0, _createUtilityPlugin.default)("textOpacity", [
|
|
3325
|
+
[
|
|
3326
|
+
"text-opacity",
|
|
3327
|
+
[
|
|
3328
|
+
"--tw-text-opacity"
|
|
3329
|
+
]
|
|
3330
|
+
]
|
|
3331
|
+
]),
|
|
3332
|
+
textDecoration: ({ addUtilities })=>{
|
|
3333
|
+
addUtilities({
|
|
3334
|
+
".underline": {
|
|
3335
|
+
"text-decoration-line": "underline"
|
|
3336
|
+
},
|
|
3337
|
+
".overline": {
|
|
3338
|
+
"text-decoration-line": "overline"
|
|
3339
|
+
},
|
|
3340
|
+
".line-through": {
|
|
3341
|
+
"text-decoration-line": "line-through"
|
|
3342
|
+
},
|
|
3343
|
+
".no-underline": {
|
|
3344
|
+
"text-decoration-line": "none"
|
|
3345
|
+
}
|
|
3346
|
+
});
|
|
3347
|
+
},
|
|
3348
|
+
textDecorationColor: ({ matchUtilities , theme })=>{
|
|
3349
|
+
matchUtilities({
|
|
3350
|
+
decoration: (value)=>{
|
|
3351
|
+
return {
|
|
3352
|
+
"text-decoration-color": (0, _toColorValue.default)(value)
|
|
3353
|
+
};
|
|
3354
|
+
}
|
|
3355
|
+
}, {
|
|
3356
|
+
values: (0, _flattenColorPalette.default)(theme("textDecorationColor")),
|
|
3357
|
+
type: [
|
|
3358
|
+
"color",
|
|
3359
|
+
"any"
|
|
3360
|
+
]
|
|
3361
|
+
});
|
|
3362
|
+
},
|
|
3363
|
+
textDecorationStyle: ({ addUtilities })=>{
|
|
3364
|
+
addUtilities({
|
|
3365
|
+
".decoration-solid": {
|
|
3366
|
+
"text-decoration-style": "solid"
|
|
3367
|
+
},
|
|
3368
|
+
".decoration-double": {
|
|
3369
|
+
"text-decoration-style": "double"
|
|
3370
|
+
},
|
|
3371
|
+
".decoration-dotted": {
|
|
3372
|
+
"text-decoration-style": "dotted"
|
|
3373
|
+
},
|
|
3374
|
+
".decoration-dashed": {
|
|
3375
|
+
"text-decoration-style": "dashed"
|
|
3376
|
+
},
|
|
3377
|
+
".decoration-wavy": {
|
|
3378
|
+
"text-decoration-style": "wavy"
|
|
3379
|
+
}
|
|
3380
|
+
});
|
|
3381
|
+
},
|
|
3382
|
+
textDecorationThickness: (0, _createUtilityPlugin.default)("textDecorationThickness", [
|
|
3383
|
+
[
|
|
3384
|
+
"decoration",
|
|
3385
|
+
[
|
|
3386
|
+
"text-decoration-thickness"
|
|
3387
|
+
]
|
|
3388
|
+
]
|
|
3389
|
+
], {
|
|
3390
|
+
type: [
|
|
3391
|
+
"length",
|
|
3392
|
+
"percentage"
|
|
3393
|
+
]
|
|
3394
|
+
}),
|
|
3395
|
+
textUnderlineOffset: (0, _createUtilityPlugin.default)("textUnderlineOffset", [
|
|
3396
|
+
[
|
|
3397
|
+
"underline-offset",
|
|
3398
|
+
[
|
|
3399
|
+
"text-underline-offset"
|
|
3400
|
+
]
|
|
3401
|
+
]
|
|
3402
|
+
], {
|
|
3403
|
+
type: [
|
|
3404
|
+
"length",
|
|
3405
|
+
"percentage",
|
|
3406
|
+
"any"
|
|
3407
|
+
]
|
|
3408
|
+
}),
|
|
3409
|
+
fontSmoothing: ({ addUtilities })=>{
|
|
3410
|
+
addUtilities({
|
|
3411
|
+
".antialiased": {
|
|
3412
|
+
"-webkit-font-smoothing": "antialiased",
|
|
3413
|
+
"-moz-osx-font-smoothing": "grayscale"
|
|
3414
|
+
},
|
|
3415
|
+
".subpixel-antialiased": {
|
|
3416
|
+
"-webkit-font-smoothing": "auto",
|
|
3417
|
+
"-moz-osx-font-smoothing": "auto"
|
|
3418
|
+
}
|
|
3419
|
+
});
|
|
3420
|
+
},
|
|
3421
|
+
placeholderColor: ({ matchUtilities , theme , corePlugins })=>{
|
|
3422
|
+
matchUtilities({
|
|
3423
|
+
placeholder: (value)=>{
|
|
3424
|
+
if (!corePlugins("placeholderOpacity")) {
|
|
3425
|
+
return {
|
|
3426
|
+
"&::placeholder": {
|
|
3427
|
+
color: (0, _toColorValue.default)(value)
|
|
3428
|
+
}
|
|
3429
|
+
};
|
|
3430
|
+
}
|
|
3431
|
+
return {
|
|
3432
|
+
"&::placeholder": (0, _withAlphaVariable.default)({
|
|
3433
|
+
color: value,
|
|
3434
|
+
property: "color",
|
|
3435
|
+
variable: "--tw-placeholder-opacity"
|
|
3436
|
+
})
|
|
3437
|
+
};
|
|
3438
|
+
}
|
|
3439
|
+
}, {
|
|
3440
|
+
values: (0, _flattenColorPalette.default)(theme("placeholderColor")),
|
|
3441
|
+
type: [
|
|
3442
|
+
"color",
|
|
3443
|
+
"any"
|
|
3444
|
+
]
|
|
3445
|
+
});
|
|
3446
|
+
},
|
|
3447
|
+
placeholderOpacity: ({ matchUtilities , theme })=>{
|
|
3448
|
+
matchUtilities({
|
|
3449
|
+
"placeholder-opacity": (value)=>{
|
|
3450
|
+
return {
|
|
3451
|
+
["&::placeholder"]: {
|
|
3452
|
+
"--tw-placeholder-opacity": value
|
|
3453
|
+
}
|
|
3454
|
+
};
|
|
3455
|
+
}
|
|
3456
|
+
}, {
|
|
3457
|
+
values: theme("placeholderOpacity")
|
|
3458
|
+
});
|
|
3459
|
+
},
|
|
3460
|
+
caretColor: ({ matchUtilities , theme })=>{
|
|
3461
|
+
matchUtilities({
|
|
3462
|
+
caret: (value)=>{
|
|
3463
|
+
return {
|
|
3464
|
+
"caret-color": (0, _toColorValue.default)(value)
|
|
3465
|
+
};
|
|
3466
|
+
}
|
|
3467
|
+
}, {
|
|
3468
|
+
values: (0, _flattenColorPalette.default)(theme("caretColor")),
|
|
3469
|
+
type: [
|
|
3470
|
+
"color",
|
|
3471
|
+
"any"
|
|
3472
|
+
]
|
|
3473
|
+
});
|
|
3474
|
+
},
|
|
3475
|
+
accentColor: ({ matchUtilities , theme })=>{
|
|
3476
|
+
matchUtilities({
|
|
3477
|
+
accent: (value)=>{
|
|
3478
|
+
return {
|
|
3479
|
+
"accent-color": (0, _toColorValue.default)(value)
|
|
3480
|
+
};
|
|
3481
|
+
}
|
|
3482
|
+
}, {
|
|
3483
|
+
values: (0, _flattenColorPalette.default)(theme("accentColor")),
|
|
3484
|
+
type: [
|
|
3485
|
+
"color",
|
|
3486
|
+
"any"
|
|
3487
|
+
]
|
|
3488
|
+
});
|
|
3489
|
+
},
|
|
3490
|
+
opacity: (0, _createUtilityPlugin.default)("opacity", [
|
|
3491
|
+
[
|
|
3492
|
+
"opacity",
|
|
3493
|
+
[
|
|
3494
|
+
"opacity"
|
|
3495
|
+
]
|
|
3496
|
+
]
|
|
3497
|
+
]),
|
|
3498
|
+
backgroundBlendMode: ({ addUtilities })=>{
|
|
3499
|
+
addUtilities({
|
|
3500
|
+
".bg-blend-normal": {
|
|
3501
|
+
"background-blend-mode": "normal"
|
|
3502
|
+
},
|
|
3503
|
+
".bg-blend-multiply": {
|
|
3504
|
+
"background-blend-mode": "multiply"
|
|
3505
|
+
},
|
|
3506
|
+
".bg-blend-screen": {
|
|
3507
|
+
"background-blend-mode": "screen"
|
|
3508
|
+
},
|
|
3509
|
+
".bg-blend-overlay": {
|
|
3510
|
+
"background-blend-mode": "overlay"
|
|
3511
|
+
},
|
|
3512
|
+
".bg-blend-darken": {
|
|
3513
|
+
"background-blend-mode": "darken"
|
|
3514
|
+
},
|
|
3515
|
+
".bg-blend-lighten": {
|
|
3516
|
+
"background-blend-mode": "lighten"
|
|
3517
|
+
},
|
|
3518
|
+
".bg-blend-color-dodge": {
|
|
3519
|
+
"background-blend-mode": "color-dodge"
|
|
3520
|
+
},
|
|
3521
|
+
".bg-blend-color-burn": {
|
|
3522
|
+
"background-blend-mode": "color-burn"
|
|
3523
|
+
},
|
|
3524
|
+
".bg-blend-hard-light": {
|
|
3525
|
+
"background-blend-mode": "hard-light"
|
|
3526
|
+
},
|
|
3527
|
+
".bg-blend-soft-light": {
|
|
3528
|
+
"background-blend-mode": "soft-light"
|
|
3529
|
+
},
|
|
3530
|
+
".bg-blend-difference": {
|
|
3531
|
+
"background-blend-mode": "difference"
|
|
3532
|
+
},
|
|
3533
|
+
".bg-blend-exclusion": {
|
|
3534
|
+
"background-blend-mode": "exclusion"
|
|
3535
|
+
},
|
|
3536
|
+
".bg-blend-hue": {
|
|
3537
|
+
"background-blend-mode": "hue"
|
|
3538
|
+
},
|
|
3539
|
+
".bg-blend-saturation": {
|
|
3540
|
+
"background-blend-mode": "saturation"
|
|
3541
|
+
},
|
|
3542
|
+
".bg-blend-color": {
|
|
3543
|
+
"background-blend-mode": "color"
|
|
3544
|
+
},
|
|
3545
|
+
".bg-blend-luminosity": {
|
|
3546
|
+
"background-blend-mode": "luminosity"
|
|
3547
|
+
}
|
|
3548
|
+
});
|
|
3549
|
+
},
|
|
3550
|
+
mixBlendMode: ({ addUtilities })=>{
|
|
3551
|
+
addUtilities({
|
|
3552
|
+
".mix-blend-normal": {
|
|
3553
|
+
"mix-blend-mode": "normal"
|
|
3554
|
+
},
|
|
3555
|
+
".mix-blend-multiply": {
|
|
3556
|
+
"mix-blend-mode": "multiply"
|
|
3557
|
+
},
|
|
3558
|
+
".mix-blend-screen": {
|
|
3559
|
+
"mix-blend-mode": "screen"
|
|
3560
|
+
},
|
|
3561
|
+
".mix-blend-overlay": {
|
|
3562
|
+
"mix-blend-mode": "overlay"
|
|
3563
|
+
},
|
|
3564
|
+
".mix-blend-darken": {
|
|
3565
|
+
"mix-blend-mode": "darken"
|
|
3566
|
+
},
|
|
3567
|
+
".mix-blend-lighten": {
|
|
3568
|
+
"mix-blend-mode": "lighten"
|
|
3569
|
+
},
|
|
3570
|
+
".mix-blend-color-dodge": {
|
|
3571
|
+
"mix-blend-mode": "color-dodge"
|
|
3572
|
+
},
|
|
3573
|
+
".mix-blend-color-burn": {
|
|
3574
|
+
"mix-blend-mode": "color-burn"
|
|
3575
|
+
},
|
|
3576
|
+
".mix-blend-hard-light": {
|
|
3577
|
+
"mix-blend-mode": "hard-light"
|
|
3578
|
+
},
|
|
3579
|
+
".mix-blend-soft-light": {
|
|
3580
|
+
"mix-blend-mode": "soft-light"
|
|
3581
|
+
},
|
|
3582
|
+
".mix-blend-difference": {
|
|
3583
|
+
"mix-blend-mode": "difference"
|
|
3584
|
+
},
|
|
3585
|
+
".mix-blend-exclusion": {
|
|
3586
|
+
"mix-blend-mode": "exclusion"
|
|
3587
|
+
},
|
|
3588
|
+
".mix-blend-hue": {
|
|
3589
|
+
"mix-blend-mode": "hue"
|
|
3590
|
+
},
|
|
3591
|
+
".mix-blend-saturation": {
|
|
3592
|
+
"mix-blend-mode": "saturation"
|
|
3593
|
+
},
|
|
3594
|
+
".mix-blend-color": {
|
|
3595
|
+
"mix-blend-mode": "color"
|
|
3596
|
+
},
|
|
3597
|
+
".mix-blend-luminosity": {
|
|
3598
|
+
"mix-blend-mode": "luminosity"
|
|
3599
|
+
},
|
|
3600
|
+
".mix-blend-plus-lighter": {
|
|
3601
|
+
"mix-blend-mode": "plus-lighter"
|
|
3602
|
+
}
|
|
3603
|
+
});
|
|
3604
|
+
},
|
|
3605
|
+
boxShadow: (()=>{
|
|
3606
|
+
let transformValue = (0, _transformThemeValue.default)("boxShadow");
|
|
3607
|
+
let defaultBoxShadow = [
|
|
3608
|
+
`var(--tw-ring-offset-shadow, 0 0 #0000)`,
|
|
3609
|
+
`var(--tw-ring-shadow, 0 0 #0000)`,
|
|
3610
|
+
`var(--tw-shadow)`
|
|
3611
|
+
].join(", ");
|
|
3612
|
+
return function({ matchUtilities , addDefaults , theme }) {
|
|
3613
|
+
addDefaults(" box-shadow", {
|
|
3614
|
+
"--tw-ring-offset-shadow": "0 0 #0000",
|
|
3615
|
+
"--tw-ring-shadow": "0 0 #0000",
|
|
3616
|
+
"--tw-shadow": "0 0 #0000",
|
|
3617
|
+
"--tw-shadow-colored": "0 0 #0000"
|
|
3618
|
+
});
|
|
3619
|
+
matchUtilities({
|
|
3620
|
+
shadow: (value)=>{
|
|
3621
|
+
value = transformValue(value);
|
|
3622
|
+
let ast = (0, _parseBoxShadowValue.parseBoxShadowValue)(value);
|
|
3623
|
+
for (let shadow of ast){
|
|
3624
|
+
// Don't override color if the whole shadow is a variable
|
|
3625
|
+
if (!shadow.valid) {
|
|
3626
|
+
continue;
|
|
3627
|
+
}
|
|
3628
|
+
shadow.color = "var(--tw-shadow-color)";
|
|
3629
|
+
}
|
|
3630
|
+
return {
|
|
3631
|
+
"@defaults box-shadow": {},
|
|
3632
|
+
"--tw-shadow": value === "none" ? "0 0 #0000" : value,
|
|
3633
|
+
"--tw-shadow-colored": value === "none" ? "0 0 #0000" : (0, _parseBoxShadowValue.formatBoxShadowValue)(ast),
|
|
3634
|
+
"box-shadow": defaultBoxShadow
|
|
3635
|
+
};
|
|
3636
|
+
}
|
|
3637
|
+
}, {
|
|
3638
|
+
values: theme("boxShadow"),
|
|
3639
|
+
type: [
|
|
3640
|
+
"shadow"
|
|
3641
|
+
]
|
|
3642
|
+
});
|
|
3643
|
+
};
|
|
3644
|
+
})(),
|
|
3645
|
+
boxShadowColor: ({ matchUtilities , theme })=>{
|
|
3646
|
+
matchUtilities({
|
|
3647
|
+
shadow: (value)=>{
|
|
3648
|
+
return {
|
|
3649
|
+
"--tw-shadow-color": (0, _toColorValue.default)(value),
|
|
3650
|
+
"--tw-shadow": "var(--tw-shadow-colored)"
|
|
3651
|
+
};
|
|
3652
|
+
}
|
|
3653
|
+
}, {
|
|
3654
|
+
values: (0, _flattenColorPalette.default)(theme("boxShadowColor")),
|
|
3655
|
+
type: [
|
|
3656
|
+
"color",
|
|
3657
|
+
"any"
|
|
3658
|
+
]
|
|
3659
|
+
});
|
|
3660
|
+
},
|
|
3661
|
+
outlineStyle: ({ addUtilities })=>{
|
|
3662
|
+
addUtilities({
|
|
3663
|
+
".outline-none": {
|
|
3664
|
+
outline: "2px solid transparent",
|
|
3665
|
+
"outline-offset": "2px"
|
|
3666
|
+
},
|
|
3667
|
+
".outline": {
|
|
3668
|
+
"outline-style": "solid"
|
|
3669
|
+
},
|
|
3670
|
+
".outline-dashed": {
|
|
3671
|
+
"outline-style": "dashed"
|
|
3672
|
+
},
|
|
3673
|
+
".outline-dotted": {
|
|
3674
|
+
"outline-style": "dotted"
|
|
3675
|
+
},
|
|
3676
|
+
".outline-double": {
|
|
3677
|
+
"outline-style": "double"
|
|
3678
|
+
}
|
|
3679
|
+
});
|
|
3680
|
+
},
|
|
3681
|
+
outlineWidth: (0, _createUtilityPlugin.default)("outlineWidth", [
|
|
3682
|
+
[
|
|
3683
|
+
"outline",
|
|
3684
|
+
[
|
|
3685
|
+
"outline-width"
|
|
3686
|
+
]
|
|
3687
|
+
]
|
|
3688
|
+
], {
|
|
3689
|
+
type: [
|
|
3690
|
+
"length",
|
|
3691
|
+
"number",
|
|
3692
|
+
"percentage"
|
|
3693
|
+
]
|
|
3694
|
+
}),
|
|
3695
|
+
outlineOffset: (0, _createUtilityPlugin.default)("outlineOffset", [
|
|
3696
|
+
[
|
|
3697
|
+
"outline-offset",
|
|
3698
|
+
[
|
|
3699
|
+
"outline-offset"
|
|
3700
|
+
]
|
|
3701
|
+
]
|
|
3702
|
+
], {
|
|
3703
|
+
type: [
|
|
3704
|
+
"length",
|
|
3705
|
+
"number",
|
|
3706
|
+
"percentage",
|
|
3707
|
+
"any"
|
|
3708
|
+
],
|
|
3709
|
+
supportsNegativeValues: true
|
|
3710
|
+
}),
|
|
3711
|
+
outlineColor: ({ matchUtilities , theme })=>{
|
|
3712
|
+
matchUtilities({
|
|
3713
|
+
outline: (value)=>{
|
|
3714
|
+
return {
|
|
3715
|
+
"outline-color": (0, _toColorValue.default)(value)
|
|
3716
|
+
};
|
|
3717
|
+
}
|
|
3718
|
+
}, {
|
|
3719
|
+
values: (0, _flattenColorPalette.default)(theme("outlineColor")),
|
|
3720
|
+
type: [
|
|
3721
|
+
"color",
|
|
3722
|
+
"any"
|
|
3723
|
+
]
|
|
3724
|
+
});
|
|
3725
|
+
},
|
|
3726
|
+
ringWidth: ({ matchUtilities , addDefaults , addUtilities , theme , config })=>{
|
|
3727
|
+
let ringColorDefault = (()=>{
|
|
3728
|
+
var _theme, _theme1;
|
|
3729
|
+
if ((0, _featureFlags.flagEnabled)(config(), "respectDefaultRingColorOpacity")) {
|
|
3730
|
+
return theme("ringColor.DEFAULT");
|
|
3731
|
+
}
|
|
3732
|
+
let ringOpacityDefault = theme("ringOpacity.DEFAULT", "0.5");
|
|
3733
|
+
if (!((_theme = theme("ringColor")) === null || _theme === void 0 ? void 0 : _theme.DEFAULT)) {
|
|
3734
|
+
return `rgb(147 197 253 / ${ringOpacityDefault})`;
|
|
3735
|
+
}
|
|
3736
|
+
return (0, _withAlphaVariable.withAlphaValue)((_theme1 = theme("ringColor")) === null || _theme1 === void 0 ? void 0 : _theme1.DEFAULT, ringOpacityDefault, `rgb(147 197 253 / ${ringOpacityDefault})`);
|
|
3737
|
+
})();
|
|
3738
|
+
addDefaults("ring-width", {
|
|
3739
|
+
"--tw-ring-inset": " ",
|
|
3740
|
+
"--tw-ring-offset-width": theme("ringOffsetWidth.DEFAULT", "0px"),
|
|
3741
|
+
"--tw-ring-offset-color": theme("ringOffsetColor.DEFAULT", "#fff"),
|
|
3742
|
+
"--tw-ring-color": ringColorDefault,
|
|
3743
|
+
"--tw-ring-offset-shadow": "0 0 #0000",
|
|
3744
|
+
"--tw-ring-shadow": "0 0 #0000",
|
|
3745
|
+
"--tw-shadow": "0 0 #0000",
|
|
3746
|
+
"--tw-shadow-colored": "0 0 #0000"
|
|
3747
|
+
});
|
|
3748
|
+
matchUtilities({
|
|
3749
|
+
ring: (value)=>{
|
|
3750
|
+
return {
|
|
3751
|
+
"@defaults ring-width": {},
|
|
3752
|
+
"--tw-ring-offset-shadow": `var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)`,
|
|
3753
|
+
"--tw-ring-shadow": `var(--tw-ring-inset) 0 0 0 calc(${value} + var(--tw-ring-offset-width)) var(--tw-ring-color)`,
|
|
3754
|
+
"box-shadow": [
|
|
3755
|
+
`var(--tw-ring-offset-shadow)`,
|
|
3756
|
+
`var(--tw-ring-shadow)`,
|
|
3757
|
+
`var(--tw-shadow, 0 0 #0000)`
|
|
3758
|
+
].join(", ")
|
|
3759
|
+
};
|
|
3760
|
+
}
|
|
3761
|
+
}, {
|
|
3762
|
+
values: theme("ringWidth"),
|
|
3763
|
+
type: "length"
|
|
3764
|
+
});
|
|
3765
|
+
addUtilities({
|
|
3766
|
+
".ring-inset": {
|
|
3767
|
+
"@defaults ring-width": {},
|
|
3768
|
+
"--tw-ring-inset": "inset"
|
|
3769
|
+
}
|
|
3770
|
+
});
|
|
3771
|
+
},
|
|
3772
|
+
ringColor: ({ matchUtilities , theme , corePlugins })=>{
|
|
3773
|
+
matchUtilities({
|
|
3774
|
+
ring: (value)=>{
|
|
3775
|
+
if (!corePlugins("ringOpacity")) {
|
|
3776
|
+
return {
|
|
3777
|
+
"--tw-ring-color": (0, _toColorValue.default)(value)
|
|
3778
|
+
};
|
|
3779
|
+
}
|
|
3780
|
+
return (0, _withAlphaVariable.default)({
|
|
3781
|
+
color: value,
|
|
3782
|
+
property: "--tw-ring-color",
|
|
3783
|
+
variable: "--tw-ring-opacity"
|
|
3784
|
+
});
|
|
3785
|
+
}
|
|
3786
|
+
}, {
|
|
3787
|
+
values: Object.fromEntries(Object.entries((0, _flattenColorPalette.default)(theme("ringColor"))).filter(([modifier])=>modifier !== "DEFAULT")),
|
|
3788
|
+
type: [
|
|
3789
|
+
"color",
|
|
3790
|
+
"any"
|
|
3791
|
+
]
|
|
3792
|
+
});
|
|
3793
|
+
},
|
|
3794
|
+
ringOpacity: (helpers)=>{
|
|
3795
|
+
let { config } = helpers;
|
|
3796
|
+
return (0, _createUtilityPlugin.default)("ringOpacity", [
|
|
3797
|
+
[
|
|
3798
|
+
"ring-opacity",
|
|
3799
|
+
[
|
|
3800
|
+
"--tw-ring-opacity"
|
|
3801
|
+
]
|
|
3802
|
+
]
|
|
3803
|
+
], {
|
|
3804
|
+
filterDefault: !(0, _featureFlags.flagEnabled)(config(), "respectDefaultRingColorOpacity")
|
|
3805
|
+
})(helpers);
|
|
3806
|
+
},
|
|
3807
|
+
ringOffsetWidth: (0, _createUtilityPlugin.default)("ringOffsetWidth", [
|
|
3808
|
+
[
|
|
3809
|
+
"ring-offset",
|
|
3810
|
+
[
|
|
3811
|
+
"--tw-ring-offset-width"
|
|
3812
|
+
]
|
|
3813
|
+
]
|
|
3814
|
+
], {
|
|
3815
|
+
type: "length"
|
|
3816
|
+
}),
|
|
3817
|
+
ringOffsetColor: ({ matchUtilities , theme })=>{
|
|
3818
|
+
matchUtilities({
|
|
3819
|
+
"ring-offset": (value)=>{
|
|
3820
|
+
return {
|
|
3821
|
+
"--tw-ring-offset-color": (0, _toColorValue.default)(value)
|
|
3822
|
+
};
|
|
3823
|
+
}
|
|
3824
|
+
}, {
|
|
3825
|
+
values: (0, _flattenColorPalette.default)(theme("ringOffsetColor")),
|
|
3826
|
+
type: [
|
|
3827
|
+
"color",
|
|
3828
|
+
"any"
|
|
3829
|
+
]
|
|
3830
|
+
});
|
|
3831
|
+
},
|
|
3832
|
+
blur: ({ matchUtilities , theme })=>{
|
|
3833
|
+
matchUtilities({
|
|
3834
|
+
blur: (value)=>{
|
|
3835
|
+
return {
|
|
3836
|
+
"--tw-blur": `blur(${value})`,
|
|
3837
|
+
"@defaults filter": {},
|
|
3838
|
+
filter: cssFilterValue
|
|
3839
|
+
};
|
|
3840
|
+
}
|
|
3841
|
+
}, {
|
|
3842
|
+
values: theme("blur")
|
|
3843
|
+
});
|
|
3844
|
+
},
|
|
3845
|
+
brightness: ({ matchUtilities , theme })=>{
|
|
3846
|
+
matchUtilities({
|
|
3847
|
+
brightness: (value)=>{
|
|
3848
|
+
return {
|
|
3849
|
+
"--tw-brightness": `brightness(${value})`,
|
|
3850
|
+
"@defaults filter": {},
|
|
3851
|
+
filter: cssFilterValue
|
|
3852
|
+
};
|
|
3853
|
+
}
|
|
3854
|
+
}, {
|
|
3855
|
+
values: theme("brightness")
|
|
3856
|
+
});
|
|
3857
|
+
},
|
|
3858
|
+
contrast: ({ matchUtilities , theme })=>{
|
|
3859
|
+
matchUtilities({
|
|
3860
|
+
contrast: (value)=>{
|
|
3861
|
+
return {
|
|
3862
|
+
"--tw-contrast": `contrast(${value})`,
|
|
3863
|
+
"@defaults filter": {},
|
|
3864
|
+
filter: cssFilterValue
|
|
3865
|
+
};
|
|
3866
|
+
}
|
|
3867
|
+
}, {
|
|
3868
|
+
values: theme("contrast")
|
|
3869
|
+
});
|
|
3870
|
+
},
|
|
3871
|
+
dropShadow: ({ matchUtilities , theme })=>{
|
|
3872
|
+
matchUtilities({
|
|
3873
|
+
"drop-shadow": (value)=>{
|
|
3874
|
+
return {
|
|
3875
|
+
"--tw-drop-shadow": Array.isArray(value) ? value.map((v)=>`drop-shadow(${v})`).join(" ") : `drop-shadow(${value})`,
|
|
3876
|
+
"@defaults filter": {},
|
|
3877
|
+
filter: cssFilterValue
|
|
3878
|
+
};
|
|
3879
|
+
}
|
|
3880
|
+
}, {
|
|
3881
|
+
values: theme("dropShadow")
|
|
3882
|
+
});
|
|
3883
|
+
},
|
|
3884
|
+
grayscale: ({ matchUtilities , theme })=>{
|
|
3885
|
+
matchUtilities({
|
|
3886
|
+
grayscale: (value)=>{
|
|
3887
|
+
return {
|
|
3888
|
+
"--tw-grayscale": `grayscale(${value})`,
|
|
3889
|
+
"@defaults filter": {},
|
|
3890
|
+
filter: cssFilterValue
|
|
3891
|
+
};
|
|
3892
|
+
}
|
|
3893
|
+
}, {
|
|
3894
|
+
values: theme("grayscale")
|
|
3895
|
+
});
|
|
3896
|
+
},
|
|
3897
|
+
hueRotate: ({ matchUtilities , theme })=>{
|
|
3898
|
+
matchUtilities({
|
|
3899
|
+
"hue-rotate": (value)=>{
|
|
3900
|
+
return {
|
|
3901
|
+
"--tw-hue-rotate": `hue-rotate(${value})`,
|
|
3902
|
+
"@defaults filter": {},
|
|
3903
|
+
filter: cssFilterValue
|
|
3904
|
+
};
|
|
3905
|
+
}
|
|
3906
|
+
}, {
|
|
3907
|
+
values: theme("hueRotate"),
|
|
3908
|
+
supportsNegativeValues: true
|
|
3909
|
+
});
|
|
3910
|
+
},
|
|
3911
|
+
invert: ({ matchUtilities , theme })=>{
|
|
3912
|
+
matchUtilities({
|
|
3913
|
+
invert: (value)=>{
|
|
3914
|
+
return {
|
|
3915
|
+
"--tw-invert": `invert(${value})`,
|
|
3916
|
+
"@defaults filter": {},
|
|
3917
|
+
filter: cssFilterValue
|
|
3918
|
+
};
|
|
3919
|
+
}
|
|
3920
|
+
}, {
|
|
3921
|
+
values: theme("invert")
|
|
3922
|
+
});
|
|
3923
|
+
},
|
|
3924
|
+
saturate: ({ matchUtilities , theme })=>{
|
|
3925
|
+
matchUtilities({
|
|
3926
|
+
saturate: (value)=>{
|
|
3927
|
+
return {
|
|
3928
|
+
"--tw-saturate": `saturate(${value})`,
|
|
3929
|
+
"@defaults filter": {},
|
|
3930
|
+
filter: cssFilterValue
|
|
3931
|
+
};
|
|
3932
|
+
}
|
|
3933
|
+
}, {
|
|
3934
|
+
values: theme("saturate")
|
|
3935
|
+
});
|
|
3936
|
+
},
|
|
3937
|
+
sepia: ({ matchUtilities , theme })=>{
|
|
3938
|
+
matchUtilities({
|
|
3939
|
+
sepia: (value)=>{
|
|
3940
|
+
return {
|
|
3941
|
+
"--tw-sepia": `sepia(${value})`,
|
|
3942
|
+
"@defaults filter": {},
|
|
3943
|
+
filter: cssFilterValue
|
|
3944
|
+
};
|
|
3945
|
+
}
|
|
3946
|
+
}, {
|
|
3947
|
+
values: theme("sepia")
|
|
3948
|
+
});
|
|
3949
|
+
},
|
|
3950
|
+
filter: ({ addDefaults , addUtilities })=>{
|
|
3951
|
+
addDefaults("filter", {
|
|
3952
|
+
"--tw-blur": " ",
|
|
3953
|
+
"--tw-brightness": " ",
|
|
3954
|
+
"--tw-contrast": " ",
|
|
3955
|
+
"--tw-grayscale": " ",
|
|
3956
|
+
"--tw-hue-rotate": " ",
|
|
3957
|
+
"--tw-invert": " ",
|
|
3958
|
+
"--tw-saturate": " ",
|
|
3959
|
+
"--tw-sepia": " ",
|
|
3960
|
+
"--tw-drop-shadow": " "
|
|
3961
|
+
});
|
|
3962
|
+
addUtilities({
|
|
3963
|
+
".filter": {
|
|
3964
|
+
"@defaults filter": {},
|
|
3965
|
+
filter: cssFilterValue
|
|
3966
|
+
},
|
|
3967
|
+
".filter-none": {
|
|
3968
|
+
filter: "none"
|
|
3969
|
+
}
|
|
3970
|
+
});
|
|
3971
|
+
},
|
|
3972
|
+
backdropBlur: ({ matchUtilities , theme })=>{
|
|
3973
|
+
matchUtilities({
|
|
3974
|
+
"backdrop-blur": (value)=>{
|
|
3975
|
+
return {
|
|
3976
|
+
"--tw-backdrop-blur": `blur(${value})`,
|
|
3977
|
+
"@defaults backdrop-filter": {},
|
|
3978
|
+
"backdrop-filter": cssBackdropFilterValue
|
|
3979
|
+
};
|
|
3980
|
+
}
|
|
3981
|
+
}, {
|
|
3982
|
+
values: theme("backdropBlur")
|
|
3983
|
+
});
|
|
3984
|
+
},
|
|
3985
|
+
backdropBrightness: ({ matchUtilities , theme })=>{
|
|
3986
|
+
matchUtilities({
|
|
3987
|
+
"backdrop-brightness": (value)=>{
|
|
3988
|
+
return {
|
|
3989
|
+
"--tw-backdrop-brightness": `brightness(${value})`,
|
|
3990
|
+
"@defaults backdrop-filter": {},
|
|
3991
|
+
"backdrop-filter": cssBackdropFilterValue
|
|
3992
|
+
};
|
|
3993
|
+
}
|
|
3994
|
+
}, {
|
|
3995
|
+
values: theme("backdropBrightness")
|
|
3996
|
+
});
|
|
3997
|
+
},
|
|
3998
|
+
backdropContrast: ({ matchUtilities , theme })=>{
|
|
3999
|
+
matchUtilities({
|
|
4000
|
+
"backdrop-contrast": (value)=>{
|
|
4001
|
+
return {
|
|
4002
|
+
"--tw-backdrop-contrast": `contrast(${value})`,
|
|
4003
|
+
"@defaults backdrop-filter": {},
|
|
4004
|
+
"backdrop-filter": cssBackdropFilterValue
|
|
4005
|
+
};
|
|
4006
|
+
}
|
|
4007
|
+
}, {
|
|
4008
|
+
values: theme("backdropContrast")
|
|
4009
|
+
});
|
|
4010
|
+
},
|
|
4011
|
+
backdropGrayscale: ({ matchUtilities , theme })=>{
|
|
4012
|
+
matchUtilities({
|
|
4013
|
+
"backdrop-grayscale": (value)=>{
|
|
4014
|
+
return {
|
|
4015
|
+
"--tw-backdrop-grayscale": `grayscale(${value})`,
|
|
4016
|
+
"@defaults backdrop-filter": {},
|
|
4017
|
+
"backdrop-filter": cssBackdropFilterValue
|
|
4018
|
+
};
|
|
4019
|
+
}
|
|
4020
|
+
}, {
|
|
4021
|
+
values: theme("backdropGrayscale")
|
|
4022
|
+
});
|
|
4023
|
+
},
|
|
4024
|
+
backdropHueRotate: ({ matchUtilities , theme })=>{
|
|
4025
|
+
matchUtilities({
|
|
4026
|
+
"backdrop-hue-rotate": (value)=>{
|
|
4027
|
+
return {
|
|
4028
|
+
"--tw-backdrop-hue-rotate": `hue-rotate(${value})`,
|
|
4029
|
+
"@defaults backdrop-filter": {},
|
|
4030
|
+
"backdrop-filter": cssBackdropFilterValue
|
|
4031
|
+
};
|
|
4032
|
+
}
|
|
4033
|
+
}, {
|
|
4034
|
+
values: theme("backdropHueRotate"),
|
|
4035
|
+
supportsNegativeValues: true
|
|
4036
|
+
});
|
|
4037
|
+
},
|
|
4038
|
+
backdropInvert: ({ matchUtilities , theme })=>{
|
|
4039
|
+
matchUtilities({
|
|
4040
|
+
"backdrop-invert": (value)=>{
|
|
4041
|
+
return {
|
|
4042
|
+
"--tw-backdrop-invert": `invert(${value})`,
|
|
4043
|
+
"@defaults backdrop-filter": {},
|
|
4044
|
+
"backdrop-filter": cssBackdropFilterValue
|
|
4045
|
+
};
|
|
4046
|
+
}
|
|
4047
|
+
}, {
|
|
4048
|
+
values: theme("backdropInvert")
|
|
4049
|
+
});
|
|
4050
|
+
},
|
|
4051
|
+
backdropOpacity: ({ matchUtilities , theme })=>{
|
|
4052
|
+
matchUtilities({
|
|
4053
|
+
"backdrop-opacity": (value)=>{
|
|
4054
|
+
return {
|
|
4055
|
+
"--tw-backdrop-opacity": `opacity(${value})`,
|
|
4056
|
+
"@defaults backdrop-filter": {},
|
|
4057
|
+
"backdrop-filter": cssBackdropFilterValue
|
|
4058
|
+
};
|
|
4059
|
+
}
|
|
4060
|
+
}, {
|
|
4061
|
+
values: theme("backdropOpacity")
|
|
4062
|
+
});
|
|
4063
|
+
},
|
|
4064
|
+
backdropSaturate: ({ matchUtilities , theme })=>{
|
|
4065
|
+
matchUtilities({
|
|
4066
|
+
"backdrop-saturate": (value)=>{
|
|
4067
|
+
return {
|
|
4068
|
+
"--tw-backdrop-saturate": `saturate(${value})`,
|
|
4069
|
+
"@defaults backdrop-filter": {},
|
|
4070
|
+
"backdrop-filter": cssBackdropFilterValue
|
|
4071
|
+
};
|
|
4072
|
+
}
|
|
4073
|
+
}, {
|
|
4074
|
+
values: theme("backdropSaturate")
|
|
4075
|
+
});
|
|
4076
|
+
},
|
|
4077
|
+
backdropSepia: ({ matchUtilities , theme })=>{
|
|
4078
|
+
matchUtilities({
|
|
4079
|
+
"backdrop-sepia": (value)=>{
|
|
4080
|
+
return {
|
|
4081
|
+
"--tw-backdrop-sepia": `sepia(${value})`,
|
|
4082
|
+
"@defaults backdrop-filter": {},
|
|
4083
|
+
"backdrop-filter": cssBackdropFilterValue
|
|
4084
|
+
};
|
|
4085
|
+
}
|
|
4086
|
+
}, {
|
|
4087
|
+
values: theme("backdropSepia")
|
|
4088
|
+
});
|
|
4089
|
+
},
|
|
4090
|
+
backdropFilter: ({ addDefaults , addUtilities })=>{
|
|
4091
|
+
addDefaults("backdrop-filter", {
|
|
4092
|
+
"--tw-backdrop-blur": " ",
|
|
4093
|
+
"--tw-backdrop-brightness": " ",
|
|
4094
|
+
"--tw-backdrop-contrast": " ",
|
|
4095
|
+
"--tw-backdrop-grayscale": " ",
|
|
4096
|
+
"--tw-backdrop-hue-rotate": " ",
|
|
4097
|
+
"--tw-backdrop-invert": " ",
|
|
4098
|
+
"--tw-backdrop-opacity": " ",
|
|
4099
|
+
"--tw-backdrop-saturate": " ",
|
|
4100
|
+
"--tw-backdrop-sepia": " "
|
|
4101
|
+
});
|
|
4102
|
+
addUtilities({
|
|
4103
|
+
".backdrop-filter": {
|
|
4104
|
+
"@defaults backdrop-filter": {},
|
|
4105
|
+
"backdrop-filter": cssBackdropFilterValue
|
|
4106
|
+
},
|
|
4107
|
+
".backdrop-filter-none": {
|
|
4108
|
+
"backdrop-filter": "none"
|
|
4109
|
+
}
|
|
4110
|
+
});
|
|
4111
|
+
},
|
|
4112
|
+
transitionProperty: ({ matchUtilities , theme })=>{
|
|
4113
|
+
let defaultTimingFunction = theme("transitionTimingFunction.DEFAULT");
|
|
4114
|
+
let defaultDuration = theme("transitionDuration.DEFAULT");
|
|
4115
|
+
matchUtilities({
|
|
4116
|
+
transition: (value)=>{
|
|
4117
|
+
return {
|
|
4118
|
+
"transition-property": value,
|
|
4119
|
+
...value === "none" ? {} : {
|
|
4120
|
+
"transition-timing-function": defaultTimingFunction,
|
|
4121
|
+
"transition-duration": defaultDuration
|
|
4122
|
+
}
|
|
4123
|
+
};
|
|
4124
|
+
}
|
|
4125
|
+
}, {
|
|
4126
|
+
values: theme("transitionProperty")
|
|
4127
|
+
});
|
|
4128
|
+
},
|
|
4129
|
+
transitionDelay: (0, _createUtilityPlugin.default)("transitionDelay", [
|
|
4130
|
+
[
|
|
4131
|
+
"delay",
|
|
4132
|
+
[
|
|
4133
|
+
"transitionDelay"
|
|
4134
|
+
]
|
|
4135
|
+
]
|
|
4136
|
+
]),
|
|
4137
|
+
transitionDuration: (0, _createUtilityPlugin.default)("transitionDuration", [
|
|
4138
|
+
[
|
|
4139
|
+
"duration",
|
|
4140
|
+
[
|
|
4141
|
+
"transitionDuration"
|
|
4142
|
+
]
|
|
4143
|
+
]
|
|
4144
|
+
], {
|
|
4145
|
+
filterDefault: true
|
|
4146
|
+
}),
|
|
4147
|
+
transitionTimingFunction: (0, _createUtilityPlugin.default)("transitionTimingFunction", [
|
|
4148
|
+
[
|
|
4149
|
+
"ease",
|
|
4150
|
+
[
|
|
4151
|
+
"transitionTimingFunction"
|
|
4152
|
+
]
|
|
4153
|
+
]
|
|
4154
|
+
], {
|
|
4155
|
+
filterDefault: true
|
|
4156
|
+
}),
|
|
4157
|
+
willChange: (0, _createUtilityPlugin.default)("willChange", [
|
|
4158
|
+
[
|
|
4159
|
+
"will-change",
|
|
4160
|
+
[
|
|
4161
|
+
"will-change"
|
|
4162
|
+
]
|
|
4163
|
+
]
|
|
4164
|
+
]),
|
|
4165
|
+
content: (0, _createUtilityPlugin.default)("content", [
|
|
4166
|
+
[
|
|
4167
|
+
"content",
|
|
4168
|
+
[
|
|
4169
|
+
"--tw-content",
|
|
4170
|
+
[
|
|
4171
|
+
"content",
|
|
4172
|
+
"var(--tw-content)"
|
|
4173
|
+
]
|
|
4174
|
+
]
|
|
4175
|
+
]
|
|
4176
|
+
])
|
|
4177
|
+
};
|