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,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@floating-ui/vue",
|
|
3
|
+
"version": "1.1.11",
|
|
4
|
+
"description": "Floating UI for Vue",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"main": "./dist/floating-ui.vue.umd.js",
|
|
9
|
+
"module": "./dist/floating-ui.vue.esm.js",
|
|
10
|
+
"unpkg": "./dist/floating-ui.vue.umd.min.js",
|
|
11
|
+
"types": "./dist/floating-ui.vue.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
"./package.json": "./package.json",
|
|
14
|
+
".": {
|
|
15
|
+
"import": {
|
|
16
|
+
"types": "./dist/floating-ui.vue.d.mts",
|
|
17
|
+
"default": "./dist/floating-ui.vue.mjs"
|
|
18
|
+
},
|
|
19
|
+
"types": "./dist/floating-ui.vue.d.ts",
|
|
20
|
+
"module": "./dist/floating-ui.vue.esm.js",
|
|
21
|
+
"default": "./dist/floating-ui.vue.umd.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"sideEffects": false,
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"author": "lozinsky",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"bugs": "https://github.com/floating-ui/floating-ui",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/floating-ui/floating-ui.git",
|
|
34
|
+
"directory": "packages/vue"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://floating-ui.com/docs/vue",
|
|
37
|
+
"keywords": [
|
|
38
|
+
"tooltip",
|
|
39
|
+
"popover",
|
|
40
|
+
"dropdown",
|
|
41
|
+
"menu",
|
|
42
|
+
"popup",
|
|
43
|
+
"positioning",
|
|
44
|
+
"vue"
|
|
45
|
+
],
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"vue-demi": ">=0.13.0",
|
|
48
|
+
"@floating-ui/dom": "^1.7.6",
|
|
49
|
+
"@floating-ui/utils": "^0.2.11"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@parcel/transformer-vue": "^2.10.3",
|
|
53
|
+
"@testing-library/jest-dom": "^6.1.6",
|
|
54
|
+
"@testing-library/vue": "^6.6.1",
|
|
55
|
+
"@vitejs/plugin-vue": "^5.2.3",
|
|
56
|
+
"vue": "^3.4.4",
|
|
57
|
+
"config": "0.0.0"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"lint": "eslint .",
|
|
61
|
+
"format": "prettier --write .",
|
|
62
|
+
"clean": "rimraf dist out-tsc",
|
|
63
|
+
"test": "vitest run",
|
|
64
|
+
"test:watch": "vitest watch",
|
|
65
|
+
"build": "rollup -c",
|
|
66
|
+
"build:api": "build-api --tsc tsconfig.lib.json",
|
|
67
|
+
"dev": "vite",
|
|
68
|
+
"publint": "publint",
|
|
69
|
+
"typecheck": "tsc -b"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
import { colorKeywords } from "./keywords.js";
|
|
2
|
+
/**
|
|
3
|
+
* Convert RGB to HSL
|
|
4
|
+
*/
|
|
5
|
+
function rgb2hsl(rgb) {
|
|
6
|
+
const c1 = rgb.r / 255, c2 = rgb.g / 255, c3 = rgb.b / 255, kmin = Math.min(c1, Math.min(c2, c3)), kmax = Math.max(c1, Math.max(c2, c3)), l = (kmax + kmin) / 2;
|
|
7
|
+
let s, h, delta;
|
|
8
|
+
if (kmax === kmin) s = h = 0;
|
|
9
|
+
else {
|
|
10
|
+
if (l < .5) s = (kmax - kmin) / (kmax + kmin);
|
|
11
|
+
else s = (kmax - kmin) / (2 - kmax - kmin);
|
|
12
|
+
delta = kmax - kmin;
|
|
13
|
+
if (kmax === c1) h = (c2 - c3) / delta;
|
|
14
|
+
else if (kmax === c2) h = 2 + (c3 - c1) / delta;
|
|
15
|
+
else h = 4 + (c1 - c2) / delta;
|
|
16
|
+
h = h * 60;
|
|
17
|
+
if (h < 0) h += 360;
|
|
18
|
+
}
|
|
19
|
+
return {
|
|
20
|
+
type: "hsl",
|
|
21
|
+
h,
|
|
22
|
+
s: s * 100,
|
|
23
|
+
l: l * 100,
|
|
24
|
+
alpha: rgb.alpha
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Color from function
|
|
29
|
+
*/
|
|
30
|
+
function fromFunction(value) {
|
|
31
|
+
if (value.slice(-1) !== ")") return null;
|
|
32
|
+
const parts = value.slice(0, value.length - 1).split("(");
|
|
33
|
+
if (parts.length !== 2) return null;
|
|
34
|
+
const func = parts[0].trim();
|
|
35
|
+
const content = parts[1].trim();
|
|
36
|
+
let values;
|
|
37
|
+
let alphaStr;
|
|
38
|
+
switch (func) {
|
|
39
|
+
case "lch":
|
|
40
|
+
case "lab": {
|
|
41
|
+
const parts = content.split("/");
|
|
42
|
+
switch (parts.length) {
|
|
43
|
+
case 2:
|
|
44
|
+
alphaStr = parts[1].trim();
|
|
45
|
+
break;
|
|
46
|
+
case 1: break;
|
|
47
|
+
default: return null;
|
|
48
|
+
}
|
|
49
|
+
values = parts[0].trim().split(/[\s,]+/);
|
|
50
|
+
break;
|
|
51
|
+
}
|
|
52
|
+
case "rgb":
|
|
53
|
+
case "rgba":
|
|
54
|
+
case "hsl":
|
|
55
|
+
case "hsla":
|
|
56
|
+
values = content.trim().split(/[\s,]+/);
|
|
57
|
+
if (values.length === 4) alphaStr = values.pop().trim();
|
|
58
|
+
break;
|
|
59
|
+
default: return {
|
|
60
|
+
type: "function",
|
|
61
|
+
func,
|
|
62
|
+
value: content
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
let alpha = 1;
|
|
66
|
+
if (typeof alphaStr === "string") {
|
|
67
|
+
alpha = parseFloat(alphaStr);
|
|
68
|
+
const index = alphaStr.indexOf("%");
|
|
69
|
+
const hasPercentage = index !== -1;
|
|
70
|
+
if (isNaN(alpha) || hasPercentage && index !== alphaStr.length - 1) return null;
|
|
71
|
+
if (hasPercentage) alpha /= 100;
|
|
72
|
+
}
|
|
73
|
+
if (alpha < 0 || alpha > 1 || values.length !== 3) return null;
|
|
74
|
+
if (alpha === 0) return { type: "transparent" };
|
|
75
|
+
const isPercentage = [];
|
|
76
|
+
const numbers = [];
|
|
77
|
+
for (let i = 0; i < 3; i++) {
|
|
78
|
+
const colorStr = values[i];
|
|
79
|
+
const index = colorStr.indexOf("%");
|
|
80
|
+
const hasPercentage = index !== -1;
|
|
81
|
+
if (hasPercentage && index !== colorStr.length - 1) return null;
|
|
82
|
+
const colorNum = parseFloat(colorStr);
|
|
83
|
+
if (isNaN(colorNum)) return null;
|
|
84
|
+
isPercentage.push(hasPercentage);
|
|
85
|
+
numbers.push(colorNum);
|
|
86
|
+
}
|
|
87
|
+
switch (func) {
|
|
88
|
+
case "rgb":
|
|
89
|
+
case "rgba": {
|
|
90
|
+
const hasPercengage = isPercentage[0];
|
|
91
|
+
if (hasPercengage !== isPercentage[1] || hasPercengage !== isPercentage[2]) return null;
|
|
92
|
+
let r = numbers[0];
|
|
93
|
+
let g = numbers[1];
|
|
94
|
+
let b = numbers[2];
|
|
95
|
+
if (hasPercengage) {
|
|
96
|
+
r = r * 255 / 100;
|
|
97
|
+
g = g * 255 / 100;
|
|
98
|
+
b = b * 255 / 100;
|
|
99
|
+
}
|
|
100
|
+
return {
|
|
101
|
+
type: "rgb",
|
|
102
|
+
r,
|
|
103
|
+
g,
|
|
104
|
+
b,
|
|
105
|
+
alpha
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
case "hsl":
|
|
109
|
+
case "hsla":
|
|
110
|
+
if (isPercentage[0] || !isPercentage[1] || !isPercentage[2]) return null;
|
|
111
|
+
return {
|
|
112
|
+
type: "hsl",
|
|
113
|
+
h: numbers[0],
|
|
114
|
+
s: numbers[1],
|
|
115
|
+
l: numbers[2],
|
|
116
|
+
alpha
|
|
117
|
+
};
|
|
118
|
+
case "lab":
|
|
119
|
+
case "lch":
|
|
120
|
+
if (!isPercentage[0] || isPercentage[1] || isPercentage[2]) return null;
|
|
121
|
+
return func === "lab" ? {
|
|
122
|
+
type: "lab",
|
|
123
|
+
l: numbers[0],
|
|
124
|
+
a: numbers[1],
|
|
125
|
+
b: numbers[2],
|
|
126
|
+
alpha
|
|
127
|
+
} : {
|
|
128
|
+
type: "lch",
|
|
129
|
+
l: numbers[0],
|
|
130
|
+
c: numbers[1],
|
|
131
|
+
h: numbers[2],
|
|
132
|
+
alpha
|
|
133
|
+
};
|
|
134
|
+
}
|
|
135
|
+
return null;
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* From hexadecimal
|
|
139
|
+
*/
|
|
140
|
+
function fromHex(value) {
|
|
141
|
+
if (value.slice(0, 1) === "#") value = value.slice(1);
|
|
142
|
+
if (!/^[\da-f]+$/i.test(value)) return null;
|
|
143
|
+
let alpha = 1;
|
|
144
|
+
const hex = [
|
|
145
|
+
"",
|
|
146
|
+
"",
|
|
147
|
+
""
|
|
148
|
+
];
|
|
149
|
+
switch (value.length) {
|
|
150
|
+
case 4: alpha = parseInt(value[3] + value[3], 16) / 255;
|
|
151
|
+
case 3:
|
|
152
|
+
hex[0] = value[0] + value[0];
|
|
153
|
+
hex[1] = value[1] + value[1];
|
|
154
|
+
hex[2] = value[2] + value[2];
|
|
155
|
+
break;
|
|
156
|
+
case 8: alpha = parseInt(value[6] + value[7], 16) / 255;
|
|
157
|
+
case 6:
|
|
158
|
+
hex[0] = value[0] + value[1];
|
|
159
|
+
hex[1] = value[2] + value[3];
|
|
160
|
+
hex[2] = value[4] + value[5];
|
|
161
|
+
break;
|
|
162
|
+
default: return null;
|
|
163
|
+
}
|
|
164
|
+
return alpha === 0 ? { type: "transparent" } : {
|
|
165
|
+
type: "rgb",
|
|
166
|
+
r: parseInt(hex[0], 16),
|
|
167
|
+
g: parseInt(hex[1], 16),
|
|
168
|
+
b: parseInt(hex[2], 16),
|
|
169
|
+
alpha
|
|
170
|
+
};
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* String to color
|
|
174
|
+
*/
|
|
175
|
+
function stringToColor(value) {
|
|
176
|
+
value = value.toLowerCase().trim();
|
|
177
|
+
if (colorKeywords[value]) return { ...colorKeywords[value] };
|
|
178
|
+
if (value.indexOf("(") !== -1) return fromFunction(value);
|
|
179
|
+
return fromHex(value);
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* Check if colors are identical
|
|
183
|
+
*/
|
|
184
|
+
function compareColors(color1, color2) {
|
|
185
|
+
if (color1.type === color2.type) {
|
|
186
|
+
let testKeys = new Set(Object.keys(color1));
|
|
187
|
+
switch (color1.type) {
|
|
188
|
+
case "hsl":
|
|
189
|
+
if (color1.s === 0) testKeys.delete("h");
|
|
190
|
+
if (color1.l === 0 || color1.l === 100) {
|
|
191
|
+
testKeys.delete("h");
|
|
192
|
+
testKeys.delete("s");
|
|
193
|
+
}
|
|
194
|
+
case "rgb": if (color1.alpha === 0) testKeys = new Set(["a"]);
|
|
195
|
+
}
|
|
196
|
+
const keys = Array.from(testKeys);
|
|
197
|
+
for (let i = 0; i < keys.length; i++) {
|
|
198
|
+
const key = keys[i];
|
|
199
|
+
if (color1[key] !== color2[key]) return false;
|
|
200
|
+
}
|
|
201
|
+
return true;
|
|
202
|
+
}
|
|
203
|
+
const list = [color1, color2].sort((a, b) => a.type.localeCompare(b.type));
|
|
204
|
+
const item1 = list[0];
|
|
205
|
+
const item2 = list[1];
|
|
206
|
+
switch (item1.type) {
|
|
207
|
+
case "hsl":
|
|
208
|
+
switch (item2.type) {
|
|
209
|
+
case "rgb": return compareColors(item1, rgb2hsl(item2));
|
|
210
|
+
case "transparent": return item1.alpha === 0;
|
|
211
|
+
}
|
|
212
|
+
return false;
|
|
213
|
+
case "rgb": switch (item2.type) {
|
|
214
|
+
case "transparent": return item1.alpha === 0;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
return false;
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* Color to hex
|
|
221
|
+
*/
|
|
222
|
+
function colorToHexString(color, canCompact = true, canRound = false) {
|
|
223
|
+
let result = "";
|
|
224
|
+
let hasAlpha = false;
|
|
225
|
+
const attrs = [
|
|
226
|
+
"r",
|
|
227
|
+
"g",
|
|
228
|
+
"b"
|
|
229
|
+
];
|
|
230
|
+
if (color.alpha !== 1) {
|
|
231
|
+
attrs.push("alpha");
|
|
232
|
+
hasAlpha = true;
|
|
233
|
+
}
|
|
234
|
+
for (let i = 0; i < attrs.length; i++) {
|
|
235
|
+
const prop = attrs[i];
|
|
236
|
+
let value = Math.min(255, Math.max(0, color[prop] * (prop === "alpha" ? 255 : 1)));
|
|
237
|
+
if (canRound) value = Math.round(value);
|
|
238
|
+
else if (Math.round(value) !== value) return null;
|
|
239
|
+
const hex = value.toString(16);
|
|
240
|
+
result += (value < 16 ? "0" : "") + hex;
|
|
241
|
+
}
|
|
242
|
+
if (canCompact && result[0] === result[1] && result[2] === result[3] && result[4] === result[5] && (!hasAlpha || result[6] === result[7])) result = result[0] + result[2] + result[4] + (hasAlpha ? result[6] : "");
|
|
243
|
+
return "#" + result;
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* Convert color to string
|
|
247
|
+
*/
|
|
248
|
+
function colorToString(color, canRound = false) {
|
|
249
|
+
if (color.alpha === 0) return "transparent";
|
|
250
|
+
switch (color.type) {
|
|
251
|
+
case "none":
|
|
252
|
+
case "transparent": return color.type;
|
|
253
|
+
case "current": return "currentColor";
|
|
254
|
+
case "rgb": {
|
|
255
|
+
const hex = colorToHexString(color, true, canRound);
|
|
256
|
+
if (hex !== null) return hex;
|
|
257
|
+
const list = [
|
|
258
|
+
color.r,
|
|
259
|
+
color.g,
|
|
260
|
+
color.b
|
|
261
|
+
];
|
|
262
|
+
if (color.alpha !== 1) list.push(color.alpha);
|
|
263
|
+
return "rgb" + (list.length === 4 ? "a(" : "(") + list.join(", ") + ")";
|
|
264
|
+
}
|
|
265
|
+
case "hsl": {
|
|
266
|
+
const list = [
|
|
267
|
+
color.h,
|
|
268
|
+
color.s.toString() + "%",
|
|
269
|
+
color.l.toString() + "%"
|
|
270
|
+
];
|
|
271
|
+
if (color.alpha !== 1) list.push(color.alpha);
|
|
272
|
+
return "hsl" + (list.length === 4 ? "a(" : "(") + list.join(", ") + ")";
|
|
273
|
+
}
|
|
274
|
+
case "lab": {
|
|
275
|
+
const list = [
|
|
276
|
+
color.l.toString() + "%",
|
|
277
|
+
color.a,
|
|
278
|
+
color.b
|
|
279
|
+
];
|
|
280
|
+
if (color.alpha !== 1) list.push("/ " + color.alpha.toString());
|
|
281
|
+
return "lab(" + list.join(" ") + ")";
|
|
282
|
+
}
|
|
283
|
+
case "lch": {
|
|
284
|
+
const list = [
|
|
285
|
+
color.l.toString() + "%",
|
|
286
|
+
color.c,
|
|
287
|
+
color.h
|
|
288
|
+
];
|
|
289
|
+
if (color.alpha !== 1) list.push("/ " + color.alpha.toString());
|
|
290
|
+
return "lch(" + list.join(" ") + ")";
|
|
291
|
+
}
|
|
292
|
+
case "function": return color.func + "(" + color.value + ")";
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
export { colorToHexString, colorToString, compareColors, stringToColor };
|