renovate-log-parser 0.1.0
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/LICENSE +21 -0
- package/README.md +402 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +30 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/analyze.d.ts +24 -0
- package/dist/commands/analyze.js +114 -0
- package/dist/commands/analyze.js.map +1 -0
- package/dist/commands/detect-errors.d.ts +17 -0
- package/dist/commands/detect-errors.js +119 -0
- package/dist/commands/detect-errors.js.map +1 -0
- package/dist/commands/install-analyze-skill.d.ts +27 -0
- package/dist/commands/install-analyze-skill.js +181 -0
- package/dist/commands/install-analyze-skill.js.map +1 -0
- package/dist/commands/web.d.ts +12 -0
- package/dist/commands/web.js +103 -0
- package/dist/commands/web.js.map +1 -0
- package/dist/core/analyzer.d.ts +89 -0
- package/dist/core/analyzer.js +179 -0
- package/dist/core/analyzer.js.map +1 -0
- package/dist/core/error-detector.d.ts +56 -0
- package/dist/core/error-detector.js +236 -0
- package/dist/core/error-detector.js.map +1 -0
- package/dist/core/filters.d.ts +136 -0
- package/dist/core/filters.js +95 -0
- package/dist/core/filters.js.map +1 -0
- package/dist/core/ignore-file.d.ts +52 -0
- package/dist/core/ignore-file.js +104 -0
- package/dist/core/ignore-file.js.map +1 -0
- package/dist/core/levels.d.ts +33 -0
- package/dist/core/levels.js +35 -0
- package/dist/core/levels.js.map +1 -0
- package/dist/core/parser.d.ts +57 -0
- package/dist/core/parser.js +201 -0
- package/dist/core/parser.js.map +1 -0
- package/dist/core/query-builder.d.ts +47 -0
- package/dist/core/query-builder.js +155 -0
- package/dist/core/query-builder.js.map +1 -0
- package/dist/core/skill-template.d.ts +34 -0
- package/dist/core/skill-template.js +259 -0
- package/dist/core/skill-template.js.map +1 -0
- package/package.json +68 -0
- package/web/.output/nitro.json +15 -0
- package/web/.output/public/_fonts/57NSSoFy1VLVs2gqly8Ls9awBnZMFyXGrefpmqvdqmc-zJfbBtpgM4cDmcXBsqZNW79_kFnlpPd62b48glgdydA.woff2 +0 -0
- package/web/.output/public/_fonts/8VR2wSMN-3U4NbWAVYXlkRV6hA0jFBXP-0RtL3X7fko-x2gYI4qfmkRdxyQQUPaBZdZdgl1TeVrquF_TxHeM4lM.woff2 +0 -0
- package/web/.output/public/_fonts/GsKUclqeNLJ96g5AU593ug6yanivOiwjW_7zESNPChw-jHA4tBeM1bjF7LATGUpfBuSTyomIFrWBTzjF7txVYfg.woff2 +0 -0
- package/web/.output/public/_fonts/Ld1FnTo3yTIwDyGfTQ5-Fws9AWsCbKfMvgxduXr7JcY-W25bL8NF1fjpLRSOgJb7RoZPHqGQNwMTM7S9tHVoxx8.woff2 +0 -0
- package/web/.output/public/_fonts/NdzqRASp2bovDUhQT1IRE_EMqKJ2KYQdTCfFcBvL8yw-KhwZiS86o3fErOe5GGMExHUemmI_dBfaEFxjISZrBd0.woff2 +0 -0
- package/web/.output/public/_fonts/iTkrULNFJJkTvihIg1Vqi5IODRH_9btXCioVF5l98I8-AndUyau2HR2felA_ra8V2mutQgschhasE5FD1dXGJX8.woff2 +0 -0
- package/web/.output/public/_nuxt/BWja8e3M.js +37 -0
- package/web/.output/public/_nuxt/BgApMHS1.js +1 -0
- package/web/.output/public/_nuxt/CGPWRqbc.js +1 -0
- package/web/.output/public/_nuxt/DlAUqK2U.js +1 -0
- package/web/.output/public/_nuxt/Sgtec1U0.js +1 -0
- package/web/.output/public/_nuxt/builds/latest.json +1 -0
- package/web/.output/public/_nuxt/builds/meta/c4723e49-0623-47af-ae79-9ab6428bdcc1.json +1 -0
- package/web/.output/public/_nuxt/entry.9mB-pyEY.css +1 -0
- package/web/.output/public/_nuxt/error-404.B_PvSG-P.css +1 -0
- package/web/.output/public/_nuxt/error-500.CghkKCEr.css +1 -0
- package/web/.output/public/_nuxt/index.BlvAG7F6.css +1 -0
- package/web/.output/public/favicon.ico +0 -0
- package/web/.output/server/chunks/_/error-500.mjs +19 -0
- package/web/.output/server/chunks/_/error-500.mjs.map +1 -0
- package/web/.output/server/chunks/_/icons.mjs +6153 -0
- package/web/.output/server/chunks/_/icons.mjs.map +1 -0
- package/web/.output/server/chunks/_/icons2.mjs +11494 -0
- package/web/.output/server/chunks/_/icons2.mjs.map +1 -0
- package/web/.output/server/chunks/build/_plugin-vue_export-helper-1tPrXgE0.mjs +10 -0
- package/web/.output/server/chunks/build/_plugin-vue_export-helper-1tPrXgE0.mjs.map +1 -0
- package/web/.output/server/chunks/build/client.precomputed.mjs +4 -0
- package/web/.output/server/chunks/build/client.precomputed.mjs.map +1 -0
- package/web/.output/server/chunks/build/error-404-DyaaQUIS.mjs +106 -0
- package/web/.output/server/chunks/build/error-404-DyaaQUIS.mjs.map +1 -0
- package/web/.output/server/chunks/build/error-404-styles.9cNA4arh.mjs +8 -0
- package/web/.output/server/chunks/build/error-404-styles.9cNA4arh.mjs.map +1 -0
- package/web/.output/server/chunks/build/error-500-CVSP-p02.mjs +89 -0
- package/web/.output/server/chunks/build/error-500-CVSP-p02.mjs.map +1 -0
- package/web/.output/server/chunks/build/error-500-styles.BX54ZlkH.mjs +8 -0
- package/web/.output/server/chunks/build/error-500-styles.BX54ZlkH.mjs.map +1 -0
- package/web/.output/server/chunks/build/index-88dXYOxO.mjs +19675 -0
- package/web/.output/server/chunks/build/index-88dXYOxO.mjs.map +1 -0
- package/web/.output/server/chunks/build/index-styles.V2iua2bE.mjs +8 -0
- package/web/.output/server/chunks/build/index-styles.V2iua2bE.mjs.map +1 -0
- package/web/.output/server/chunks/build/server.mjs +7910 -0
- package/web/.output/server/chunks/build/server.mjs.map +1 -0
- package/web/.output/server/chunks/build/styles.mjs +10 -0
- package/web/.output/server/chunks/build/styles.mjs.map +1 -0
- package/web/.output/server/chunks/nitro/nitro.mjs +6944 -0
- package/web/.output/server/chunks/nitro/nitro.mjs.map +1 -0
- package/web/.output/server/chunks/routes/api/fields.get.mjs +27 -0
- package/web/.output/server/chunks/routes/api/fields.get.mjs.map +1 -0
- package/web/.output/server/chunks/routes/api/findings.get.mjs +30 -0
- package/web/.output/server/chunks/routes/api/findings.get.mjs.map +1 -0
- package/web/.output/server/chunks/routes/api/log/contents.post.mjs +29 -0
- package/web/.output/server/chunks/routes/api/log/contents.post.mjs.map +1 -0
- package/web/.output/server/chunks/routes/api/log/path.post.mjs +30 -0
- package/web/.output/server/chunks/routes/api/log/path.post.mjs.map +1 -0
- package/web/.output/server/chunks/routes/api/repositories.get.mjs +27 -0
- package/web/.output/server/chunks/routes/api/repositories.get.mjs.map +1 -0
- package/web/.output/server/chunks/routes/api/rows.get.mjs +48 -0
- package/web/.output/server/chunks/routes/api/rows.get.mjs.map +1 -0
- package/web/.output/server/chunks/routes/renderer.mjs +451 -0
- package/web/.output/server/chunks/routes/renderer.mjs.map +1 -0
- package/web/.output/server/chunks/virtual/_virtual_spa-template.mjs +4 -0
- package/web/.output/server/chunks/virtual/_virtual_spa-template.mjs.map +1 -0
- package/web/.output/server/index.mjs +16 -0
- package/web/.output/server/index.mjs.map +1 -0
- package/web/.output/server/node_modules/.nitro/hookable@5.5.3/dist/index.mjs +290 -0
- package/web/.output/server/node_modules/.nitro/hookable@5.5.3/package.json +49 -0
- package/web/.output/server/node_modules/.nitro/hookable@6.1.1/dist/index.mjs +257 -0
- package/web/.output/server/node_modules/.nitro/hookable@6.1.1/package.json +53 -0
- package/web/.output/server/node_modules/@babel/parser/lib/index.js +14599 -0
- package/web/.output/server/node_modules/@babel/parser/package.json +50 -0
- package/web/.output/server/node_modules/@floating-ui/core/dist/floating-ui.core.mjs +1038 -0
- package/web/.output/server/node_modules/@floating-ui/core/package.json +63 -0
- package/web/.output/server/node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs +789 -0
- package/web/.output/server/node_modules/@floating-ui/dom/package.json +72 -0
- package/web/.output/server/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.mjs +165 -0
- package/web/.output/server/node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs +136 -0
- package/web/.output/server/node_modules/@floating-ui/utils/package.json +70 -0
- package/web/.output/server/node_modules/@floating-ui/vue/dist/floating-ui.vue.mjs +190 -0
- package/web/.output/server/node_modules/@floating-ui/vue/package.json +71 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/colors/index.js +295 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/colors/keywords.js +701 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/css/common.js +75 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/css/format.js +39 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/css/icon.js +47 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/css/icons.js +128 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/customisations/bool.js +19 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.js +13 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/customisations/flip.js +17 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/customisations/merge.js +16 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.js +30 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.js +78 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/convert.js +100 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/data.js +28 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/format.js +58 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/parse.js +48 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.js +203 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.js +33 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.js +132 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.js +165 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.js +79 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.js +92 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.js +26 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.js +76 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.js +66 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.js +45 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.js +103 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.js +36 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.js +92 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.js +62 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon/defaults.js +25 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon/merge.js +16 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon/name.js +57 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon/square.js +33 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon/transformations.js +12 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.js +125 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.js +19 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.js +25 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.js +36 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.js +91 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.js +46 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.js +23 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.js +42 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.js +123 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/index.js +52 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/loader/custom.js +30 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/loader/loader.js +26 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/loader/modern.js +27 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/loader/utils.js +105 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/misc/objects.js +26 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/misc/strings.js +26 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/misc/title.js +9 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/build.js +113 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/defs.js +31 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.js +13 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/html.js +9 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/id.js +41 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.js +22 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/parse.js +67 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/pretty.js +54 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/size.js +27 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/trim.js +7 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/url.js +22 -0
- package/web/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.js +8 -0
- package/web/.output/server/node_modules/@iconify/utils/package.json +119 -0
- package/web/.output/server/node_modules/@iconify/vue/dist/iconify.mjs +1896 -0
- package/web/.output/server/node_modules/@iconify/vue/package.json +62 -0
- package/web/.output/server/node_modules/@tanstack/virtual-core/dist/esm/index.js +1268 -0
- package/web/.output/server/node_modules/@tanstack/virtual-core/dist/esm/lazy-measurements.js +34 -0
- package/web/.output/server/node_modules/@tanstack/virtual-core/dist/esm/utils.js +74 -0
- package/web/.output/server/node_modules/@tanstack/virtual-core/package.json +56 -0
- package/web/.output/server/node_modules/@tanstack/vue-virtual/dist/esm/index.js +66 -0
- package/web/.output/server/node_modules/@tanstack/vue-virtual/package.json +68 -0
- package/web/.output/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +6759 -0
- package/web/.output/server/node_modules/@vue/compiler-core/package.json +58 -0
- package/web/.output/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +689 -0
- package/web/.output/server/node_modules/@vue/compiler-dom/package.json +57 -0
- package/web/.output/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +1413 -0
- package/web/.output/server/node_modules/@vue/compiler-ssr/package.json +34 -0
- package/web/.output/server/node_modules/@vue/devtools-api/dist/index.js +2 -0
- package/web/.output/server/node_modules/@vue/devtools-api/package.json +34 -0
- package/web/.output/server/node_modules/@vue/devtools-kit/dist/index.js +5670 -0
- package/web/.output/server/node_modules/@vue/devtools-kit/node_modules/hookable/dist/index.mjs +290 -0
- package/web/.output/server/node_modules/@vue/devtools-kit/node_modules/hookable/package.json +49 -0
- package/web/.output/server/node_modules/@vue/devtools-kit/package.json +44 -0
- package/web/.output/server/node_modules/@vue/devtools-shared/dist/index.js +239 -0
- package/web/.output/server/node_modules/@vue/devtools-shared/package.json +33 -0
- package/web/.output/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +1899 -0
- package/web/.output/server/node_modules/@vue/reactivity/package.json +55 -0
- package/web/.output/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +6940 -0
- package/web/.output/server/node_modules/@vue/runtime-core/package.json +52 -0
- package/web/.output/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1822 -0
- package/web/.output/server/node_modules/@vue/runtime-dom/package.json +60 -0
- package/web/.output/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +896 -0
- package/web/.output/server/node_modules/@vue/server-renderer/package.json +55 -0
- package/web/.output/server/node_modules/@vue/shared/dist/shared.cjs.prod.js +604 -0
- package/web/.output/server/node_modules/@vue/shared/package.json +47 -0
- package/web/.output/server/node_modules/@vueuse/core/dist/index.js +8464 -0
- package/web/.output/server/node_modules/@vueuse/core/package.json +49 -0
- package/web/.output/server/node_modules/@vueuse/shared/dist/index.js +2013 -0
- package/web/.output/server/node_modules/@vueuse/shared/package.json +42 -0
- package/web/.output/server/node_modules/aria-hidden/dist/es5/index.js +174 -0
- package/web/.output/server/node_modules/aria-hidden/package.json +71 -0
- package/web/.output/server/node_modules/birpc/dist/index.mjs +291 -0
- package/web/.output/server/node_modules/birpc/package.json +57 -0
- package/web/.output/server/node_modules/consola/dist/chunks/prompt.mjs +280 -0
- package/web/.output/server/node_modules/consola/dist/core.mjs +512 -0
- package/web/.output/server/node_modules/consola/dist/index.mjs +651 -0
- package/web/.output/server/node_modules/consola/dist/shared/consola.DRwqZj3T.mjs +72 -0
- package/web/.output/server/node_modules/consola/dist/shared/consola.DXBYu-KD.mjs +288 -0
- package/web/.output/server/node_modules/consola/package.json +136 -0
- package/web/.output/server/node_modules/devalue/index.js +4 -0
- package/web/.output/server/node_modules/devalue/package.json +40 -0
- package/web/.output/server/node_modules/devalue/src/base64.js +60 -0
- package/web/.output/server/node_modules/devalue/src/constants.js +12 -0
- package/web/.output/server/node_modules/devalue/src/parse.js +283 -0
- package/web/.output/server/node_modules/devalue/src/stringify.js +401 -0
- package/web/.output/server/node_modules/devalue/src/uneval.js +552 -0
- package/web/.output/server/node_modules/devalue/src/utils.js +160 -0
- package/web/.output/server/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
- package/web/.output/server/node_modules/entities/dist/commonjs/decode.js +568 -0
- package/web/.output/server/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
- package/web/.output/server/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
- package/web/.output/server/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
- package/web/.output/server/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
- package/web/.output/server/node_modules/entities/dist/commonjs/package.json +3 -0
- package/web/.output/server/node_modules/entities/package.json +120 -0
- package/web/.output/server/node_modules/estree-walker/dist/umd/estree-walker.js +344 -0
- package/web/.output/server/node_modules/estree-walker/package.json +37 -0
- package/web/.output/server/node_modules/hookable/dist/index.mjs +257 -0
- package/web/.output/server/node_modules/hookable/package.json +53 -0
- package/web/.output/server/node_modules/nostics/dist/index.mjs +179 -0
- package/web/.output/server/node_modules/nostics/package.json +124 -0
- package/web/.output/server/node_modules/perfect-debounce/dist/index.mjs +89 -0
- package/web/.output/server/node_modules/perfect-debounce/package.json +41 -0
- package/web/.output/server/node_modules/rou3/dist/index.mjs +501 -0
- package/web/.output/server/node_modules/rou3/package.json +48 -0
- package/web/.output/server/node_modules/source-map-js/lib/array-set.js +121 -0
- package/web/.output/server/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/web/.output/server/node_modules/source-map-js/lib/base64.js +67 -0
- package/web/.output/server/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/web/.output/server/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/web/.output/server/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/web/.output/server/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/web/.output/server/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/web/.output/server/node_modules/source-map-js/lib/source-node.js +413 -0
- package/web/.output/server/node_modules/source-map-js/lib/util.js +594 -0
- package/web/.output/server/node_modules/source-map-js/package.json +71 -0
- package/web/.output/server/node_modules/source-map-js/source-map.js +8 -0
- package/web/.output/server/node_modules/srvx/dist/_chunks/_body-limit.mjs +39 -0
- package/web/.output/server/node_modules/srvx/dist/_chunks/_plugins.mjs +56 -0
- package/web/.output/server/node_modules/srvx/dist/_chunks/_trust-proxy.mjs +58 -0
- package/web/.output/server/node_modules/srvx/dist/_chunks/_url.mjs +134 -0
- package/web/.output/server/node_modules/srvx/dist/_chunks/_utils.mjs +15 -0
- package/web/.output/server/node_modules/srvx/dist/_chunks/_utils2.mjs +75 -0
- package/web/.output/server/node_modules/srvx/dist/adapters/node.mjs +976 -0
- package/web/.output/server/node_modules/srvx/package.json +102 -0
- package/web/.output/server/node_modules/tailwind-merge/dist/bundle-mjs.mjs +3365 -0
- package/web/.output/server/node_modules/tailwind-merge/package.json +93 -0
- package/web/.output/server/node_modules/tailwind-variants/dist/chunk-LQJYWU4O.js +112 -0
- package/web/.output/server/node_modules/tailwind-variants/dist/chunk-RZF76H2U.js +269 -0
- package/web/.output/server/node_modules/tailwind-variants/dist/index.js +38 -0
- package/web/.output/server/node_modules/tailwind-variants/package.json +122 -0
- package/web/.output/server/node_modules/tailwindcss/dist/chunk-X4GG3EDV.mjs +1 -0
- package/web/.output/server/node_modules/tailwindcss/dist/colors.mjs +1 -0
- package/web/.output/server/node_modules/tailwindcss/package.json +89 -0
- package/web/.output/server/node_modules/ufo/dist/index.mjs +645 -0
- package/web/.output/server/node_modules/ufo/package.json +48 -0
- package/web/.output/server/node_modules/unhead/dist/index.mjs +9 -0
- package/web/.output/server/node_modules/unhead/dist/parser.mjs +508 -0
- package/web/.output/server/node_modules/unhead/dist/plugins.mjs +101 -0
- package/web/.output/server/node_modules/unhead/dist/scripts.mjs +30 -0
- package/web/.output/server/node_modules/unhead/dist/server.mjs +180 -0
- package/web/.output/server/node_modules/unhead/dist/shared/unhead.B3VbJo7Y.mjs +207 -0
- package/web/.output/server/node_modules/unhead/dist/shared/unhead.BYvz9V1x.mjs +43 -0
- package/web/.output/server/node_modules/unhead/dist/shared/unhead.BnoAbrHA.mjs +269 -0
- package/web/.output/server/node_modules/unhead/dist/shared/unhead.CaI5ZD4O.mjs +182 -0
- package/web/.output/server/node_modules/unhead/dist/shared/unhead.CbpEuj3y.mjs +71 -0
- package/web/.output/server/node_modules/unhead/dist/shared/unhead.D4vSFytZ.mjs +236 -0
- package/web/.output/server/node_modules/unhead/dist/shared/unhead.DQc16pHI.mjs +196 -0
- package/web/.output/server/node_modules/unhead/dist/shared/unhead.Dh1cQCTe.mjs +44 -0
- package/web/.output/server/node_modules/unhead/dist/shared/unhead.TxTMM7cM.mjs +166 -0
- package/web/.output/server/node_modules/unhead/dist/shared/unhead.yem5I2v_.mjs +38 -0
- package/web/.output/server/node_modules/unhead/dist/utils.mjs +5 -0
- package/web/.output/server/node_modules/unhead/node_modules/hookable/dist/index.mjs +257 -0
- package/web/.output/server/node_modules/unhead/node_modules/hookable/package.json +53 -0
- package/web/.output/server/node_modules/unhead/package.json +105 -0
- package/web/.output/server/node_modules/vue/dist/vue.cjs.js +80 -0
- package/web/.output/server/node_modules/vue/dist/vue.cjs.prod.js +66 -0
- package/web/.output/server/node_modules/vue/index.js +7 -0
- package/web/.output/server/node_modules/vue/index.mjs +1 -0
- package/web/.output/server/node_modules/vue/package.json +112 -0
- package/web/.output/server/node_modules/vue/server-renderer/index.mjs +1 -0
- package/web/.output/server/node_modules/vue-bundle-renderer/dist/runtime.mjs +249 -0
- package/web/.output/server/node_modules/vue-bundle-renderer/package.json +57 -0
- package/web/.output/server/node_modules/vue-demi/lib/index.mjs +34 -0
- package/web/.output/server/node_modules/vue-demi/package.json +47 -0
- package/web/.output/server/node_modules/vue-router/dist/devtools-Bpr7ZAVB.js +1056 -0
- package/web/.output/server/node_modules/vue-router/dist/useApi-CROJJdhE.js +436 -0
- package/web/.output/server/node_modules/vue-router/dist/vue-router.js +1543 -0
- package/web/.output/server/node_modules/vue-router/package.json +214 -0
- package/web/.output/server/node_modules/vue-router/vue-router.node.mjs +2 -0
- package/web/.output/server/package.json +51 -0
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tailwind-merge",
|
|
3
|
+
"version": "3.6.0",
|
|
4
|
+
"description": "Merge Tailwind CSS classes without style conflicts",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"tailwindcss",
|
|
7
|
+
"tailwind",
|
|
8
|
+
"css",
|
|
9
|
+
"classes",
|
|
10
|
+
"className",
|
|
11
|
+
"classList",
|
|
12
|
+
"merge",
|
|
13
|
+
"conflict",
|
|
14
|
+
"override"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://github.com/dcastil/tailwind-merge",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/dcastil/tailwind-merge/issues"
|
|
19
|
+
},
|
|
20
|
+
"funding": {
|
|
21
|
+
"type": "github",
|
|
22
|
+
"url": "https://github.com/sponsors/dcastil"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"author": "Dany Castillo",
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"src"
|
|
29
|
+
],
|
|
30
|
+
"source": "src/index.ts",
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"types": "./dist/types.d.ts",
|
|
34
|
+
"require": "./dist/bundle-cjs.js",
|
|
35
|
+
"import": "./dist/bundle-mjs.mjs",
|
|
36
|
+
"default": "./dist/bundle-mjs.mjs"
|
|
37
|
+
},
|
|
38
|
+
"./es5": {
|
|
39
|
+
"types": "./dist/types.d.ts",
|
|
40
|
+
"require": "./dist/es5/bundle-cjs.js",
|
|
41
|
+
"import": "./dist/es5/bundle-mjs.mjs",
|
|
42
|
+
"default": "./dist/es5/bundle-mjs.mjs"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"main": "./dist/bundle-cjs.js",
|
|
46
|
+
"types": "./dist/types.d.ts",
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "https://github.com/dcastil/tailwind-merge.git"
|
|
50
|
+
},
|
|
51
|
+
"sideEffects": false,
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "rollup --config scripts/rollup.config.mjs",
|
|
54
|
+
"bench": "vitest bench --config scripts/vitest.config.mts --no-watch",
|
|
55
|
+
"test": "vitest --config scripts/vitest.config.mts --no-watch --coverage",
|
|
56
|
+
"test:watch": "vitest --config scripts/vitest.config.mts",
|
|
57
|
+
"test:exports": "node scripts/test-built-package-exports.cjs && node scripts/test-built-package-exports.mjs",
|
|
58
|
+
"lint": "eslint --max-warnings 0 '**'",
|
|
59
|
+
"preversion": "if [ -n \"$DANYS_MACHINE\" ]; then git checkout main && git pull; fi",
|
|
60
|
+
"version": "zx scripts/update-readme.mjs",
|
|
61
|
+
"postversion": "if [ -n \"$DANYS_MACHINE\" ]; then git push --follow-tags && open https://github.com/dcastil/tailwind-merge/releases; fi"
|
|
62
|
+
},
|
|
63
|
+
"dependencies": {},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@babel/core": "^7.29.0",
|
|
66
|
+
"@babel/preset-env": "^7.29.3",
|
|
67
|
+
"@codspeed/vitest-plugin": "^5.4.0",
|
|
68
|
+
"@rollup/plugin-babel": "^7.0.0",
|
|
69
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
70
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
71
|
+
"@types/node": "^24.12.2",
|
|
72
|
+
"@vitest/coverage-v8": "^4.1.5",
|
|
73
|
+
"@vitest/eslint-plugin": "^1.6.16",
|
|
74
|
+
"babel-plugin-annotate-pure-calls": "^0.5.0",
|
|
75
|
+
"babel-plugin-polyfill-regenerator": "^0.6.8",
|
|
76
|
+
"eslint": "^9.39.4",
|
|
77
|
+
"eslint-plugin-import": "^2.32.0",
|
|
78
|
+
"globby": "^16.2.0",
|
|
79
|
+
"prettier": "^3.8.3",
|
|
80
|
+
"rollup": "^4.60.2",
|
|
81
|
+
"rollup-plugin-delete": "^3.0.2",
|
|
82
|
+
"rollup-plugin-dts": "^6.4.1",
|
|
83
|
+
"tslib": "^2.8.1",
|
|
84
|
+
"typescript": "^5.9.3",
|
|
85
|
+
"typescript-eslint": "^8.59.1",
|
|
86
|
+
"vitest": "^4.1.5",
|
|
87
|
+
"zx": "^8.8.5"
|
|
88
|
+
},
|
|
89
|
+
"publishConfig": {
|
|
90
|
+
"provenance": true
|
|
91
|
+
},
|
|
92
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
93
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
// src/utils.js
|
|
2
|
+
var SPACE_REGEX = /\s+/g;
|
|
3
|
+
var removeExtraSpaces = (str) => {
|
|
4
|
+
if (typeof str !== "string" || !str) return str;
|
|
5
|
+
return str.replace(SPACE_REGEX, " ").trim();
|
|
6
|
+
};
|
|
7
|
+
var cx = (...classnames) => {
|
|
8
|
+
const classList = [];
|
|
9
|
+
const buildClassString = (input) => {
|
|
10
|
+
if (!input && input !== 0 && input !== 0n) return;
|
|
11
|
+
if (Array.isArray(input)) {
|
|
12
|
+
for (let i = 0, len = input.length; i < len; i++) buildClassString(input[i]);
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
const type = typeof input;
|
|
16
|
+
if (type === "string" || type === "number" || type === "bigint") {
|
|
17
|
+
if (type === "number" && input !== input) return;
|
|
18
|
+
classList.push(String(input));
|
|
19
|
+
} else if (type === "object") {
|
|
20
|
+
const keys = Object.keys(input);
|
|
21
|
+
for (let i = 0, len = keys.length; i < len; i++) {
|
|
22
|
+
const key = keys[i];
|
|
23
|
+
if (input[key]) classList.push(key);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
for (let i = 0, len = classnames.length; i < len; i++) {
|
|
28
|
+
const c = classnames[i];
|
|
29
|
+
if (c !== null && c !== void 0) buildClassString(c);
|
|
30
|
+
}
|
|
31
|
+
return classList.length > 0 ? removeExtraSpaces(classList.join(" ")) : void 0;
|
|
32
|
+
};
|
|
33
|
+
var falsyToString = (value) => value === false ? "false" : value === true ? "true" : value === 0 ? "0" : value;
|
|
34
|
+
var isEmptyObject = (obj) => {
|
|
35
|
+
if (!obj || typeof obj !== "object") return true;
|
|
36
|
+
for (const _ in obj) return false;
|
|
37
|
+
return true;
|
|
38
|
+
};
|
|
39
|
+
var isEqual = (obj1, obj2) => {
|
|
40
|
+
if (obj1 === obj2) return true;
|
|
41
|
+
if (!obj1 || !obj2) return false;
|
|
42
|
+
const keys1 = Object.keys(obj1);
|
|
43
|
+
const keys2 = Object.keys(obj2);
|
|
44
|
+
if (keys1.length !== keys2.length) return false;
|
|
45
|
+
for (let i = 0; i < keys1.length; i++) {
|
|
46
|
+
const key = keys1[i];
|
|
47
|
+
if (!keys2.includes(key)) return false;
|
|
48
|
+
if (obj1[key] !== obj2[key]) return false;
|
|
49
|
+
}
|
|
50
|
+
return true;
|
|
51
|
+
};
|
|
52
|
+
var isBoolean = (value) => value === true || value === false;
|
|
53
|
+
var joinObjects = (obj1, obj2) => {
|
|
54
|
+
for (const key in obj2) {
|
|
55
|
+
if (Object.prototype.hasOwnProperty.call(obj2, key)) {
|
|
56
|
+
const val2 = obj2[key];
|
|
57
|
+
if (key in obj1) {
|
|
58
|
+
obj1[key] = cx(obj1[key], val2);
|
|
59
|
+
} else {
|
|
60
|
+
obj1[key] = val2;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
return obj1;
|
|
65
|
+
};
|
|
66
|
+
var flat = (arr, target) => {
|
|
67
|
+
for (let i = 0; i < arr.length; i++) {
|
|
68
|
+
const el = arr[i];
|
|
69
|
+
if (Array.isArray(el)) flat(el, target);
|
|
70
|
+
else if (el) target.push(el);
|
|
71
|
+
}
|
|
72
|
+
};
|
|
73
|
+
function flatArray(arr) {
|
|
74
|
+
const flattened = [];
|
|
75
|
+
flat(arr, flattened);
|
|
76
|
+
return flattened;
|
|
77
|
+
}
|
|
78
|
+
var flatMergeArrays = (...arrays) => {
|
|
79
|
+
const result = [];
|
|
80
|
+
flat(arrays, result);
|
|
81
|
+
const filtered = [];
|
|
82
|
+
for (let i = 0; i < result.length; i++) {
|
|
83
|
+
if (result[i]) filtered.push(result[i]);
|
|
84
|
+
}
|
|
85
|
+
return filtered;
|
|
86
|
+
};
|
|
87
|
+
var mergeObjects = (obj1, obj2) => {
|
|
88
|
+
const result = {};
|
|
89
|
+
for (const key in obj1) {
|
|
90
|
+
const val1 = obj1[key];
|
|
91
|
+
if (key in obj2) {
|
|
92
|
+
const val2 = obj2[key];
|
|
93
|
+
if (Array.isArray(val1) || Array.isArray(val2)) {
|
|
94
|
+
result[key] = flatMergeArrays(val2, val1);
|
|
95
|
+
} else if (typeof val1 === "object" && typeof val2 === "object" && val1 && val2) {
|
|
96
|
+
result[key] = mergeObjects(val1, val2);
|
|
97
|
+
} else {
|
|
98
|
+
result[key] = val2 + " " + val1;
|
|
99
|
+
}
|
|
100
|
+
} else {
|
|
101
|
+
result[key] = val1;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
for (const key in obj2) {
|
|
105
|
+
if (!(key in obj1)) {
|
|
106
|
+
result[key] = obj2[key];
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
return result;
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
export { cx, falsyToString, flat, flatArray, flatMergeArrays, isBoolean, isEmptyObject, isEqual, joinObjects, mergeObjects, removeExtraSpaces };
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
import { cx, isEmptyObject, mergeObjects, isEqual, joinObjects, flatMergeArrays, falsyToString } from './chunk-LQJYWU4O.js';
|
|
2
|
+
|
|
3
|
+
// src/config.js
|
|
4
|
+
var defaultConfig = {
|
|
5
|
+
twMerge: true,
|
|
6
|
+
twMergeConfig: {}
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
// src/state.js
|
|
10
|
+
function createState() {
|
|
11
|
+
let cachedTwMerge = null;
|
|
12
|
+
let cachedTwMergeConfig = {};
|
|
13
|
+
let didTwMergeConfigChange = false;
|
|
14
|
+
return {
|
|
15
|
+
get cachedTwMerge() {
|
|
16
|
+
return cachedTwMerge;
|
|
17
|
+
},
|
|
18
|
+
set cachedTwMerge(value) {
|
|
19
|
+
cachedTwMerge = value;
|
|
20
|
+
},
|
|
21
|
+
get cachedTwMergeConfig() {
|
|
22
|
+
return cachedTwMergeConfig;
|
|
23
|
+
},
|
|
24
|
+
set cachedTwMergeConfig(value) {
|
|
25
|
+
cachedTwMergeConfig = value;
|
|
26
|
+
},
|
|
27
|
+
get didTwMergeConfigChange() {
|
|
28
|
+
return didTwMergeConfigChange;
|
|
29
|
+
},
|
|
30
|
+
set didTwMergeConfigChange(value) {
|
|
31
|
+
didTwMergeConfigChange = value;
|
|
32
|
+
},
|
|
33
|
+
reset() {
|
|
34
|
+
cachedTwMerge = null;
|
|
35
|
+
cachedTwMergeConfig = {};
|
|
36
|
+
didTwMergeConfigChange = false;
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
var state = createState();
|
|
41
|
+
|
|
42
|
+
// src/core.js
|
|
43
|
+
var getTailwindVariants = (cn) => {
|
|
44
|
+
const tv = (options, configProp) => {
|
|
45
|
+
const {
|
|
46
|
+
extend = null,
|
|
47
|
+
slots: slotProps = {},
|
|
48
|
+
variants: variantsProps = {},
|
|
49
|
+
compoundVariants: compoundVariantsProps = [],
|
|
50
|
+
compoundSlots = [],
|
|
51
|
+
defaultVariants: defaultVariantsProps = {}
|
|
52
|
+
} = options;
|
|
53
|
+
const config = { ...defaultConfig, ...configProp };
|
|
54
|
+
const base = extend?.base ? cx(extend.base, options?.base) : options?.base;
|
|
55
|
+
const variants = extend?.variants && !isEmptyObject(extend.variants) ? mergeObjects(variantsProps, extend.variants) : variantsProps;
|
|
56
|
+
const defaultVariants = extend?.defaultVariants && !isEmptyObject(extend.defaultVariants) ? { ...extend.defaultVariants, ...defaultVariantsProps } : defaultVariantsProps;
|
|
57
|
+
if (!isEmptyObject(config.twMergeConfig) && !isEqual(config.twMergeConfig, state.cachedTwMergeConfig)) {
|
|
58
|
+
state.didTwMergeConfigChange = true;
|
|
59
|
+
state.cachedTwMergeConfig = config.twMergeConfig;
|
|
60
|
+
}
|
|
61
|
+
const isExtendedSlotsEmpty = isEmptyObject(extend?.slots);
|
|
62
|
+
const componentSlots = !isEmptyObject(slotProps) ? {
|
|
63
|
+
// add "base" to the slots object
|
|
64
|
+
base: cx(options?.base, isExtendedSlotsEmpty && extend?.base),
|
|
65
|
+
...slotProps
|
|
66
|
+
} : {};
|
|
67
|
+
const slots = isExtendedSlotsEmpty ? componentSlots : joinObjects(
|
|
68
|
+
{ ...extend?.slots },
|
|
69
|
+
isEmptyObject(componentSlots) ? { base: options?.base } : componentSlots
|
|
70
|
+
);
|
|
71
|
+
const compoundVariants = isEmptyObject(extend?.compoundVariants) ? compoundVariantsProps : flatMergeArrays(extend?.compoundVariants, compoundVariantsProps);
|
|
72
|
+
const component = (props) => {
|
|
73
|
+
if (isEmptyObject(variants) && isEmptyObject(slotProps) && isExtendedSlotsEmpty) {
|
|
74
|
+
return cn(base, props?.class, props?.className)(config);
|
|
75
|
+
}
|
|
76
|
+
if (compoundVariants && !Array.isArray(compoundVariants)) {
|
|
77
|
+
throw new TypeError(
|
|
78
|
+
`The "compoundVariants" prop must be an array. Received: ${typeof compoundVariants}`
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
if (compoundSlots && !Array.isArray(compoundSlots)) {
|
|
82
|
+
throw new TypeError(
|
|
83
|
+
`The "compoundSlots" prop must be an array. Received: ${typeof compoundSlots}`
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
const getVariantValue = (variant, vrs = variants, _slotKey = null, slotProps2 = null) => {
|
|
87
|
+
const variantObj = vrs[variant];
|
|
88
|
+
if (!variantObj || isEmptyObject(variantObj)) {
|
|
89
|
+
return null;
|
|
90
|
+
}
|
|
91
|
+
const variantProp = slotProps2?.[variant] ?? props?.[variant];
|
|
92
|
+
if (variantProp === null) return null;
|
|
93
|
+
const variantKey = falsyToString(variantProp);
|
|
94
|
+
if (typeof variantKey === "object") {
|
|
95
|
+
return null;
|
|
96
|
+
}
|
|
97
|
+
const defaultVariantProp = defaultVariants?.[variant];
|
|
98
|
+
const key = variantKey != null ? variantKey : falsyToString(defaultVariantProp);
|
|
99
|
+
const value = variantObj[key || "false"];
|
|
100
|
+
return value;
|
|
101
|
+
};
|
|
102
|
+
const getVariantClassNames = () => {
|
|
103
|
+
if (!variants) return null;
|
|
104
|
+
const keys = Object.keys(variants);
|
|
105
|
+
const result = [];
|
|
106
|
+
for (let i = 0; i < keys.length; i++) {
|
|
107
|
+
const value = getVariantValue(keys[i], variants);
|
|
108
|
+
if (value) result.push(value);
|
|
109
|
+
}
|
|
110
|
+
return result;
|
|
111
|
+
};
|
|
112
|
+
const getVariantClassNamesBySlotKey = (slotKey, slotProps2) => {
|
|
113
|
+
if (!variants || typeof variants !== "object") return null;
|
|
114
|
+
const result = [];
|
|
115
|
+
for (const variant in variants) {
|
|
116
|
+
const variantValue = getVariantValue(variant, variants, slotKey, slotProps2);
|
|
117
|
+
const value = slotKey === "base" && typeof variantValue === "string" ? variantValue : variantValue && variantValue[slotKey];
|
|
118
|
+
if (value) result.push(value);
|
|
119
|
+
}
|
|
120
|
+
return result;
|
|
121
|
+
};
|
|
122
|
+
const propsWithoutUndefined = {};
|
|
123
|
+
for (const prop in props) {
|
|
124
|
+
const value = props[prop];
|
|
125
|
+
if (value !== void 0) propsWithoutUndefined[prop] = value;
|
|
126
|
+
}
|
|
127
|
+
const getCompleteProps = (key, slotProps2) => {
|
|
128
|
+
const initialProp = typeof props?.[key] === "object" ? {
|
|
129
|
+
[key]: props[key]?.initial
|
|
130
|
+
} : {};
|
|
131
|
+
return {
|
|
132
|
+
...defaultVariants,
|
|
133
|
+
...propsWithoutUndefined,
|
|
134
|
+
...initialProp,
|
|
135
|
+
...slotProps2
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
const getCompoundVariantsValue = (cv = [], slotProps2) => {
|
|
139
|
+
const result = [];
|
|
140
|
+
const cvLength = cv.length;
|
|
141
|
+
for (let i = 0; i < cvLength; i++) {
|
|
142
|
+
const { class: tvClass, className: tvClassName, ...compoundVariantOptions } = cv[i];
|
|
143
|
+
let isValid = true;
|
|
144
|
+
const completeProps = getCompleteProps(null, slotProps2);
|
|
145
|
+
for (const key in compoundVariantOptions) {
|
|
146
|
+
const value = compoundVariantOptions[key];
|
|
147
|
+
const completePropsValue = completeProps[key];
|
|
148
|
+
if (Array.isArray(value)) {
|
|
149
|
+
if (!value.includes(completePropsValue)) {
|
|
150
|
+
isValid = false;
|
|
151
|
+
break;
|
|
152
|
+
}
|
|
153
|
+
} else {
|
|
154
|
+
if ((value == null || value === false) && (completePropsValue == null || completePropsValue === false))
|
|
155
|
+
continue;
|
|
156
|
+
if (completePropsValue !== value) {
|
|
157
|
+
isValid = false;
|
|
158
|
+
break;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
if (isValid) {
|
|
163
|
+
if (tvClass) result.push(tvClass);
|
|
164
|
+
if (tvClassName) result.push(tvClassName);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
return result;
|
|
168
|
+
};
|
|
169
|
+
const getCompoundVariantClassNamesBySlot = (slotProps2) => {
|
|
170
|
+
const compoundClassNames = getCompoundVariantsValue(compoundVariants, slotProps2);
|
|
171
|
+
if (!Array.isArray(compoundClassNames)) return compoundClassNames;
|
|
172
|
+
const result = {};
|
|
173
|
+
const cnFn = cn;
|
|
174
|
+
for (let i = 0; i < compoundClassNames.length; i++) {
|
|
175
|
+
const className = compoundClassNames[i];
|
|
176
|
+
if (typeof className === "string") {
|
|
177
|
+
result.base = cnFn(result.base, className)(config);
|
|
178
|
+
} else if (typeof className === "object") {
|
|
179
|
+
for (const slot in className) {
|
|
180
|
+
result[slot] = cnFn(result[slot], className[slot])(config);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
return result;
|
|
185
|
+
};
|
|
186
|
+
const getCompoundSlotClassNameBySlot = (slotProps2) => {
|
|
187
|
+
if (compoundSlots.length < 1) return null;
|
|
188
|
+
const result = {};
|
|
189
|
+
const completeProps = getCompleteProps(null, slotProps2);
|
|
190
|
+
for (let i = 0; i < compoundSlots.length; i++) {
|
|
191
|
+
const {
|
|
192
|
+
slots: slots2 = [],
|
|
193
|
+
class: slotClass,
|
|
194
|
+
className: slotClassName,
|
|
195
|
+
...slotVariants
|
|
196
|
+
} = compoundSlots[i];
|
|
197
|
+
if (!isEmptyObject(slotVariants)) {
|
|
198
|
+
let isValid = true;
|
|
199
|
+
for (const key in slotVariants) {
|
|
200
|
+
const completePropsValue = completeProps[key];
|
|
201
|
+
const slotVariantValue = slotVariants[key];
|
|
202
|
+
if (completePropsValue === void 0 || (Array.isArray(slotVariantValue) ? !slotVariantValue.includes(completePropsValue) : slotVariantValue !== completePropsValue)) {
|
|
203
|
+
isValid = false;
|
|
204
|
+
break;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
if (!isValid) continue;
|
|
208
|
+
}
|
|
209
|
+
for (let j = 0; j < slots2.length; j++) {
|
|
210
|
+
const slotName = slots2[j];
|
|
211
|
+
if (!result[slotName]) result[slotName] = [];
|
|
212
|
+
result[slotName].push([slotClass, slotClassName]);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
return result;
|
|
216
|
+
};
|
|
217
|
+
if (!isEmptyObject(slotProps) || !isExtendedSlotsEmpty) {
|
|
218
|
+
const slotsFns = {};
|
|
219
|
+
if (typeof slots === "object" && !isEmptyObject(slots)) {
|
|
220
|
+
const cnFn = cn;
|
|
221
|
+
for (const slotKey in slots) {
|
|
222
|
+
slotsFns[slotKey] = (slotProps2) => {
|
|
223
|
+
const compoundVariantClasses = getCompoundVariantClassNamesBySlot(slotProps2);
|
|
224
|
+
const compoundSlotClasses = getCompoundSlotClassNameBySlot(slotProps2);
|
|
225
|
+
return cnFn(
|
|
226
|
+
slots[slotKey],
|
|
227
|
+
getVariantClassNamesBySlotKey(slotKey, slotProps2),
|
|
228
|
+
compoundVariantClasses ? compoundVariantClasses[slotKey] : void 0,
|
|
229
|
+
compoundSlotClasses ? compoundSlotClasses[slotKey] : void 0,
|
|
230
|
+
slotProps2?.class,
|
|
231
|
+
slotProps2?.className
|
|
232
|
+
)(config);
|
|
233
|
+
};
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
return slotsFns;
|
|
237
|
+
}
|
|
238
|
+
return cn(
|
|
239
|
+
base,
|
|
240
|
+
getVariantClassNames(),
|
|
241
|
+
getCompoundVariantsValue(compoundVariants),
|
|
242
|
+
props?.class,
|
|
243
|
+
props?.className
|
|
244
|
+
)(config);
|
|
245
|
+
};
|
|
246
|
+
const getVariantKeys = () => {
|
|
247
|
+
if (!variants || typeof variants !== "object") return;
|
|
248
|
+
return Object.keys(variants);
|
|
249
|
+
};
|
|
250
|
+
component.variantKeys = getVariantKeys();
|
|
251
|
+
component.extend = extend;
|
|
252
|
+
component.base = base;
|
|
253
|
+
component.slots = slots;
|
|
254
|
+
component.variants = variants;
|
|
255
|
+
component.defaultVariants = defaultVariants;
|
|
256
|
+
component.compoundSlots = compoundSlots;
|
|
257
|
+
component.compoundVariants = compoundVariants;
|
|
258
|
+
return component;
|
|
259
|
+
};
|
|
260
|
+
const createTV = (configProp) => {
|
|
261
|
+
return (options, config) => tv(options, config ? mergeObjects(configProp, config) : configProp);
|
|
262
|
+
};
|
|
263
|
+
return {
|
|
264
|
+
tv,
|
|
265
|
+
createTV
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
|
|
269
|
+
export { defaultConfig, getTailwindVariants, state };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { getTailwindVariants, state } from './chunk-RZF76H2U.js';
|
|
2
|
+
export { defaultConfig } from './chunk-RZF76H2U.js';
|
|
3
|
+
import { cx, isEmptyObject } from './chunk-LQJYWU4O.js';
|
|
4
|
+
export { cx } from './chunk-LQJYWU4O.js';
|
|
5
|
+
import { twMerge, extendTailwindMerge } from 'tailwind-merge';
|
|
6
|
+
|
|
7
|
+
var createTwMerge = (cachedTwMergeConfig) => {
|
|
8
|
+
return isEmptyObject(cachedTwMergeConfig) ? twMerge : extendTailwindMerge({
|
|
9
|
+
...cachedTwMergeConfig,
|
|
10
|
+
extend: {
|
|
11
|
+
theme: cachedTwMergeConfig.theme,
|
|
12
|
+
classGroups: cachedTwMergeConfig.classGroups,
|
|
13
|
+
conflictingClassGroupModifiers: cachedTwMergeConfig.conflictingClassGroupModifiers,
|
|
14
|
+
conflictingClassGroups: cachedTwMergeConfig.conflictingClassGroups,
|
|
15
|
+
...cachedTwMergeConfig.extend
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
};
|
|
19
|
+
var executeMerge = (classnames, config) => {
|
|
20
|
+
const base = cx(classnames);
|
|
21
|
+
if (!base || !(config?.twMerge ?? true)) return base;
|
|
22
|
+
if (!state.cachedTwMerge || state.didTwMergeConfigChange) {
|
|
23
|
+
state.didTwMergeConfigChange = false;
|
|
24
|
+
state.cachedTwMerge = createTwMerge(state.cachedTwMergeConfig);
|
|
25
|
+
}
|
|
26
|
+
return state.cachedTwMerge(base) || void 0;
|
|
27
|
+
};
|
|
28
|
+
var cn = (...classnames) => {
|
|
29
|
+
return executeMerge(classnames, {});
|
|
30
|
+
};
|
|
31
|
+
var cnMerge = (...classnames) => {
|
|
32
|
+
return (config) => executeMerge(classnames, config);
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
// src/index.js
|
|
36
|
+
var { createTV, tv } = getTailwindVariants(cnMerge);
|
|
37
|
+
|
|
38
|
+
export { cn, cnMerge, createTV, tv };
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tailwind-variants",
|
|
3
|
+
"version": "3.2.2",
|
|
4
|
+
"description": "🦄 Tailwindcss first-class variant API",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"tailwindcss",
|
|
7
|
+
"classes",
|
|
8
|
+
"responsive",
|
|
9
|
+
"variants",
|
|
10
|
+
"styled",
|
|
11
|
+
"styles"
|
|
12
|
+
],
|
|
13
|
+
"author": "Junior Garcia <jrgarciadev@gmail.com>",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/heroui-inc/tailwind-variants"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/heroui-inc/tailwind-variants/issues"
|
|
21
|
+
},
|
|
22
|
+
"type": "module",
|
|
23
|
+
"main": "./dist/index.cjs",
|
|
24
|
+
"module": "./dist/index.js",
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"import": "./dist/index.js",
|
|
30
|
+
"require": "./dist/index.cjs"
|
|
31
|
+
},
|
|
32
|
+
"./lite": {
|
|
33
|
+
"types": "./dist/lite.d.ts",
|
|
34
|
+
"import": "./dist/lite.js",
|
|
35
|
+
"require": "./dist/lite.cjs"
|
|
36
|
+
},
|
|
37
|
+
"./utils": {
|
|
38
|
+
"types": "./dist/utils.d.ts",
|
|
39
|
+
"import": "./dist/utils.js",
|
|
40
|
+
"require": "./dist/utils.cjs"
|
|
41
|
+
},
|
|
42
|
+
"./dist/*": "./dist/*",
|
|
43
|
+
"./package.json": "./package.json"
|
|
44
|
+
},
|
|
45
|
+
"sideEffects": false,
|
|
46
|
+
"files": [
|
|
47
|
+
"dist",
|
|
48
|
+
"README.md",
|
|
49
|
+
"LICENSE"
|
|
50
|
+
],
|
|
51
|
+
"publishConfig": {
|
|
52
|
+
"access": "public"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"dev": "tsup --watch",
|
|
56
|
+
"build": "tsup && node copy-types.cjs",
|
|
57
|
+
"typecheck": "tsc --noEmit",
|
|
58
|
+
"prepack": "clean-package",
|
|
59
|
+
"benchmark": "node benchmark.js",
|
|
60
|
+
"postpack": "clean-package restore",
|
|
61
|
+
"lint": "eslint . src/**/*.{js,ts}",
|
|
62
|
+
"lint:fix": "eslint --fix . src/**/*.{js,ts}",
|
|
63
|
+
"test": "jest --verbose",
|
|
64
|
+
"test:watch": "jest --watch --no-verbose",
|
|
65
|
+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
|
|
66
|
+
"release": "bumpp --execute='pnpm run changelog' --all",
|
|
67
|
+
"prepublishOnly": "pnpm run build",
|
|
68
|
+
"release:check": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@commitlint/cli": "19.5.0",
|
|
72
|
+
"@commitlint/config-conventional": "19.5.0",
|
|
73
|
+
"@jest/globals": "29.7.0",
|
|
74
|
+
"@swc-node/jest": "1.8.12",
|
|
75
|
+
"@swc/cli": "0.5.0",
|
|
76
|
+
"@swc/core": "1.9.2",
|
|
77
|
+
"@swc/helpers": "0.5.15",
|
|
78
|
+
"@swc/jest": "0.2.37",
|
|
79
|
+
"@types/jest": "29.5.14",
|
|
80
|
+
"@types/node": "22.9.0",
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "8.14.0",
|
|
82
|
+
"@typescript-eslint/parser": "8.14.0",
|
|
83
|
+
"benchmark": "2.1.4",
|
|
84
|
+
"bumpp": "10.2.0",
|
|
85
|
+
"changelogithub": "13.16.0",
|
|
86
|
+
"class-variance-authority": "0.7.0",
|
|
87
|
+
"clean-package": "2.2.0",
|
|
88
|
+
"conventional-changelog-cli": "5.0.0",
|
|
89
|
+
"eslint": "8.57.0",
|
|
90
|
+
"eslint-config-prettier": "9.1.0",
|
|
91
|
+
"eslint-config-ts-lambdas": "1.2.3",
|
|
92
|
+
"eslint-import-resolver-typescript": "3.6.3",
|
|
93
|
+
"eslint-plugin-import": "2.31.0",
|
|
94
|
+
"eslint-plugin-jest": "28.9.0",
|
|
95
|
+
"eslint-plugin-node": "11.1.0",
|
|
96
|
+
"eslint-plugin-prettier": "5.2.1",
|
|
97
|
+
"eslint-plugin-promise": "7.1.0",
|
|
98
|
+
"expect": "29.7.0",
|
|
99
|
+
"jest": "29.7.0",
|
|
100
|
+
"postcss": "8.5.6",
|
|
101
|
+
"prettier": "3.3.3",
|
|
102
|
+
"prettier-eslint": "16.3.0",
|
|
103
|
+
"prettier-eslint-cli": "8.0.1",
|
|
104
|
+
"tailwindcss": "4.1.11",
|
|
105
|
+
"ts-node": "10.9.2",
|
|
106
|
+
"tsup": "8.5.0",
|
|
107
|
+
"typescript": "5.6.3"
|
|
108
|
+
},
|
|
109
|
+
"peerDependencies": {
|
|
110
|
+
"tailwind-merge": ">=3.0.0",
|
|
111
|
+
"tailwindcss": "*"
|
|
112
|
+
},
|
|
113
|
+
"peerDependenciesMeta": {
|
|
114
|
+
"tailwind-merge": {
|
|
115
|
+
"optional": true
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"engines": {
|
|
119
|
+
"node": ">=16.x",
|
|
120
|
+
"pnpm": ">=7.x"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var l={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},mauve:{50:"oklch(98.5% 0 0)",100:"oklch(96% 0.003 325.6)",200:"oklch(92.2% 0.005 325.62)",300:"oklch(86.5% 0.012 325.68)",400:"oklch(71.1% 0.019 323.02)",500:"oklch(54.2% 0.034 322.5)",600:"oklch(43.5% 0.029 321.78)",700:"oklch(36.4% 0.029 323.89)",800:"oklch(26.3% 0.024 320.12)",900:"oklch(21.2% 0.019 322.12)",950:"oklch(14.5% 0.008 326)"},olive:{50:"oklch(98.8% 0.003 106.5)",100:"oklch(96.6% 0.005 106.5)",200:"oklch(93% 0.007 106.5)",300:"oklch(88% 0.011 106.6)",400:"oklch(73.7% 0.021 106.9)",500:"oklch(58% 0.031 107.3)",600:"oklch(46.6% 0.025 107.3)",700:"oklch(39.4% 0.023 107.4)",800:"oklch(28.6% 0.016 107.4)",900:"oklch(22.8% 0.013 107.4)",950:"oklch(15.3% 0.006 107.1)"},mist:{50:"oklch(98.7% 0.002 197.1)",100:"oklch(96.3% 0.002 197.1)",200:"oklch(92.5% 0.005 214.3)",300:"oklch(87.2% 0.007 219.6)",400:"oklch(72.3% 0.014 214.4)",500:"oklch(56% 0.021 213.5)",600:"oklch(45% 0.017 213.2)",700:"oklch(37.8% 0.015 216)",800:"oklch(27.5% 0.011 216.9)",900:"oklch(21.8% 0.008 223.9)",950:"oklch(14.8% 0.004 228.8)"},taupe:{50:"oklch(98.6% 0.002 67.8)",100:"oklch(96% 0.002 17.2)",200:"oklch(92.2% 0.005 34.3)",300:"oklch(86.8% 0.007 39.5)",400:"oklch(71.4% 0.014 41.2)",500:"oklch(54.7% 0.021 43.1)",600:"oklch(43.8% 0.017 39.3)",700:"oklch(36.7% 0.016 35.7)",800:"oklch(26.8% 0.011 36.5)",900:"oklch(21.4% 0.009 43.1)",950:"oklch(14.7% 0.004 49.3)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};export{l as a};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-X4GG3EDV.mjs";export{a as default};
|