From fa5f985dee16a6618cd7c291dcea609b9a9ed49e Mon Sep 17 00:00:00 2001 From: connoratrug Date: Wed, 13 Nov 2024 15:39:37 +0100 Subject: [PATCH 01/25] chore: Switch to using nuxt icon module - setup module in tailwind-components lib - add molgenis icons to the setup - add samplepage to view/text icons in playground - 'fix' the svg's to use current fill --- apps/tailwind-components/app.config.ts | 10 ++ .../assets/icons/Arrow down.svg | 4 +- .../assets/icons/Arrow left.svg | 4 +- .../assets/icons/Arrow right.svg | 4 +- .../assets/icons/Arrow up.svg | 4 +- .../assets/icons/Caret down.svg | 4 +- .../assets/icons/Caret left.svg | 4 +- .../assets/icons/Caret right.svg | 4 +- .../assets/icons/Caret up.svg | 4 +- .../assets/icons/Collapsible ListItem.svg | 2 +- .../assets/icons/Collapsible ListItemSub.svg | 12 +- .../assets/icons/Colorize.svg | 2 +- .../assets/icons/Completed.svg | 2 +- .../tailwind-components/assets/icons/Copy.svg | 4 +- .../assets/icons/Cross.svg | 4 +- .../assets/icons/External link.svg | 4 +- .../assets/icons/Filter.svg | 4 +- .../assets/icons/Image Data Warehouse.svg | 2 +- .../assets/icons/Image Diagram.svg | 4 +- .../assets/icons/Image Lightbulb.svg | 16 +-- .../assets/icons/Image Link.svg | 16 +-- .../assets/icons/Image Table.svg | 4 +- .../tailwind-components/assets/icons/Info.svg | 8 +- .../assets/icons/Mouse.svg | 6 +- .../assets/icons/People.svg | 2 +- .../tailwind-components/assets/icons/Plus.svg | 6 +- .../assets/icons/Schedule.svg | 2 +- .../assets/icons/Star solid.svg | 4 +- .../tailwind-components/assets/icons/Star.svg | 4 +- .../assets/icons/Trash.svg | 4 +- .../tailwind-components/assets/icons/User.svg | 6 +- .../assets/icons/View compact.svg | 4 +- .../assets/icons/View normal.svg | 4 +- .../assets/icons/View table.svg | 4 +- .../assets/icons/image Diagram 2.svg | 20 +-- .../components/BreadCrumbs.vue | 2 +- .../tailwind-components/components/Button.vue | 2 +- .../components/button/Dropdown.vue | 2 +- apps/tailwind-components/nuxt.config.ts | 11 +- apps/tailwind-components/package.json | 2 + .../pages/Button.story.vue | 22 +-- .../pages/NuxtIcons.story.vue | 101 ++++++++++++++ apps/yarn.lock | 125 +++++++++++++----- 43 files changed, 319 insertions(+), 140 deletions(-) create mode 100644 apps/tailwind-components/app.config.ts create mode 100644 apps/tailwind-components/pages/NuxtIcons.story.vue diff --git a/apps/tailwind-components/app.config.ts b/apps/tailwind-components/app.config.ts new file mode 100644 index 0000000000..a55e142399 --- /dev/null +++ b/apps/tailwind-components/app.config.ts @@ -0,0 +1,10 @@ +export default defineAppConfig({ + icon: { + size: '24px', // default size applied + class: 'icon', // default class applied + mode: 'svg', // default mode applied + aliases: { + 'nuxt': 'logos:nuxt-icon', + } + } + }) \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Arrow down.svg b/apps/tailwind-components/assets/icons/Arrow down.svg index e163e644dc..473a89af59 100755 --- a/apps/tailwind-components/assets/icons/Arrow down.svg +++ b/apps/tailwind-components/assets/icons/Arrow down.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Arrow left.svg b/apps/tailwind-components/assets/icons/Arrow left.svg index e99bbc63b6..a72db682ed 100755 --- a/apps/tailwind-components/assets/icons/Arrow left.svg +++ b/apps/tailwind-components/assets/icons/Arrow left.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Arrow right.svg b/apps/tailwind-components/assets/icons/Arrow right.svg index 6cd8e1c500..44525f7356 100755 --- a/apps/tailwind-components/assets/icons/Arrow right.svg +++ b/apps/tailwind-components/assets/icons/Arrow right.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Arrow up.svg b/apps/tailwind-components/assets/icons/Arrow up.svg index 9d40fd3cf0..1897f96d11 100755 --- a/apps/tailwind-components/assets/icons/Arrow up.svg +++ b/apps/tailwind-components/assets/icons/Arrow up.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Caret down.svg b/apps/tailwind-components/assets/icons/Caret down.svg index 9afd050198..071f764c2b 100755 --- a/apps/tailwind-components/assets/icons/Caret down.svg +++ b/apps/tailwind-components/assets/icons/Caret down.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Caret left.svg b/apps/tailwind-components/assets/icons/Caret left.svg index bd7c1bcc26..9626e04480 100755 --- a/apps/tailwind-components/assets/icons/Caret left.svg +++ b/apps/tailwind-components/assets/icons/Caret left.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Caret right.svg b/apps/tailwind-components/assets/icons/Caret right.svg index 1b31fdd94b..e404acf3ae 100755 --- a/apps/tailwind-components/assets/icons/Caret right.svg +++ b/apps/tailwind-components/assets/icons/Caret right.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Caret up.svg b/apps/tailwind-components/assets/icons/Caret up.svg index 6a3b9ce719..8af9458a06 100755 --- a/apps/tailwind-components/assets/icons/Caret up.svg +++ b/apps/tailwind-components/assets/icons/Caret up.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Collapsible ListItem.svg b/apps/tailwind-components/assets/icons/Collapsible ListItem.svg index e322a91d0b..fd6f5854cf 100644 --- a/apps/tailwind-components/assets/icons/Collapsible ListItem.svg +++ b/apps/tailwind-components/assets/icons/Collapsible ListItem.svg @@ -1,3 +1,3 @@ - + diff --git a/apps/tailwind-components/assets/icons/Collapsible ListItemSub.svg b/apps/tailwind-components/assets/icons/Collapsible ListItemSub.svg index 5dae11512d..90a51584de 100644 --- a/apps/tailwind-components/assets/icons/Collapsible ListItemSub.svg +++ b/apps/tailwind-components/assets/icons/Collapsible ListItemSub.svg @@ -1,7 +1,7 @@ - - - - - - + + + + + + diff --git a/apps/tailwind-components/assets/icons/Colorize.svg b/apps/tailwind-components/assets/icons/Colorize.svg index 0875dda37d..29fc2218cf 100644 --- a/apps/tailwind-components/assets/icons/Colorize.svg +++ b/apps/tailwind-components/assets/icons/Colorize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Completed.svg b/apps/tailwind-components/assets/icons/Completed.svg index 0671a72256..3ff8e466ca 100644 --- a/apps/tailwind-components/assets/icons/Completed.svg +++ b/apps/tailwind-components/assets/icons/Completed.svg @@ -1,4 +1,4 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Cross.svg b/apps/tailwind-components/assets/icons/Cross.svg index 2d5bd29087..6d5da5734a 100755 --- a/apps/tailwind-components/assets/icons/Cross.svg +++ b/apps/tailwind-components/assets/icons/Cross.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/External link.svg b/apps/tailwind-components/assets/icons/External link.svg index a48ec80f4b..063072d8e9 100755 --- a/apps/tailwind-components/assets/icons/External link.svg +++ b/apps/tailwind-components/assets/icons/External link.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Filter.svg b/apps/tailwind-components/assets/icons/Filter.svg index f76128de12..db750fe64d 100755 --- a/apps/tailwind-components/assets/icons/Filter.svg +++ b/apps/tailwind-components/assets/icons/Filter.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Image Data Warehouse.svg b/apps/tailwind-components/assets/icons/Image Data Warehouse.svg index 0fb07e16e4..37470ba7a6 100644 --- a/apps/tailwind-components/assets/icons/Image Data Warehouse.svg +++ b/apps/tailwind-components/assets/icons/Image Data Warehouse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Image Diagram.svg b/apps/tailwind-components/assets/icons/Image Diagram.svg index c1745dcf01..d40f1fecf5 100755 --- a/apps/tailwind-components/assets/icons/Image Diagram.svg +++ b/apps/tailwind-components/assets/icons/Image Diagram.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Image Lightbulb.svg b/apps/tailwind-components/assets/icons/Image Lightbulb.svg index c99bf0241e..f890bd328c 100755 --- a/apps/tailwind-components/assets/icons/Image Lightbulb.svg +++ b/apps/tailwind-components/assets/icons/Image Lightbulb.svg @@ -1,9 +1,9 @@ - - - - - - - - + + + + + + + + diff --git a/apps/tailwind-components/assets/icons/Image Link.svg b/apps/tailwind-components/assets/icons/Image Link.svg index bddb81c242..33fac131d6 100755 --- a/apps/tailwind-components/assets/icons/Image Link.svg +++ b/apps/tailwind-components/assets/icons/Image Link.svg @@ -1,9 +1,9 @@ - - - - - - - - + + + + + + + + diff --git a/apps/tailwind-components/assets/icons/Image Table.svg b/apps/tailwind-components/assets/icons/Image Table.svg index f7fb229853..043d285bff 100755 --- a/apps/tailwind-components/assets/icons/Image Table.svg +++ b/apps/tailwind-components/assets/icons/Image Table.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Info.svg b/apps/tailwind-components/assets/icons/Info.svg index 4bc9f8d2d2..3d140d9437 100755 --- a/apps/tailwind-components/assets/icons/Info.svg +++ b/apps/tailwind-components/assets/icons/Info.svg @@ -1,5 +1,5 @@ - - - - + + + + diff --git a/apps/tailwind-components/assets/icons/Mouse.svg b/apps/tailwind-components/assets/icons/Mouse.svg index 8eb21e2511..09059d7038 100755 --- a/apps/tailwind-components/assets/icons/Mouse.svg +++ b/apps/tailwind-components/assets/icons/Mouse.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/apps/tailwind-components/assets/icons/People.svg b/apps/tailwind-components/assets/icons/People.svg index 215b99427f..0954e61dbf 100644 --- a/apps/tailwind-components/assets/icons/People.svg +++ b/apps/tailwind-components/assets/icons/People.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Plus.svg b/apps/tailwind-components/assets/icons/Plus.svg index f4d5486141..2235f54c24 100644 --- a/apps/tailwind-components/assets/icons/Plus.svg +++ b/apps/tailwind-components/assets/icons/Plus.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/apps/tailwind-components/assets/icons/Schedule.svg b/apps/tailwind-components/assets/icons/Schedule.svg index e5f38974ce..51804c674c 100644 --- a/apps/tailwind-components/assets/icons/Schedule.svg +++ b/apps/tailwind-components/assets/icons/Schedule.svg @@ -1,5 +1,5 @@ - + \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Star solid.svg b/apps/tailwind-components/assets/icons/Star solid.svg index 2980592ca7..b876eeda9a 100755 --- a/apps/tailwind-components/assets/icons/Star solid.svg +++ b/apps/tailwind-components/assets/icons/Star solid.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Star.svg b/apps/tailwind-components/assets/icons/Star.svg index 88ec4dd5e6..c647aa3d18 100755 --- a/apps/tailwind-components/assets/icons/Star.svg +++ b/apps/tailwind-components/assets/icons/Star.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/Trash.svg b/apps/tailwind-components/assets/icons/Trash.svg index a010c67dd5..9433847dd6 100755 --- a/apps/tailwind-components/assets/icons/Trash.svg +++ b/apps/tailwind-components/assets/icons/Trash.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/User.svg b/apps/tailwind-components/assets/icons/User.svg index 2d542afa22..f0c68f7af6 100755 --- a/apps/tailwind-components/assets/icons/User.svg +++ b/apps/tailwind-components/assets/icons/User.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/apps/tailwind-components/assets/icons/View compact.svg b/apps/tailwind-components/assets/icons/View compact.svg index a5f878f256..47853ea596 100755 --- a/apps/tailwind-components/assets/icons/View compact.svg +++ b/apps/tailwind-components/assets/icons/View compact.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/View normal.svg b/apps/tailwind-components/assets/icons/View normal.svg index 5c2c69e261..d871070020 100755 --- a/apps/tailwind-components/assets/icons/View normal.svg +++ b/apps/tailwind-components/assets/icons/View normal.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/View table.svg b/apps/tailwind-components/assets/icons/View table.svg index d13a7d1428..9c11e31d29 100755 --- a/apps/tailwind-components/assets/icons/View table.svg +++ b/apps/tailwind-components/assets/icons/View table.svg @@ -1,3 +1,3 @@ - - + + diff --git a/apps/tailwind-components/assets/icons/image Diagram 2.svg b/apps/tailwind-components/assets/icons/image Diagram 2.svg index dc204b848e..f200b9acd7 100755 --- a/apps/tailwind-components/assets/icons/image Diagram 2.svg +++ b/apps/tailwind-components/assets/icons/image Diagram 2.svg @@ -1,11 +1,11 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/apps/tailwind-components/components/BreadCrumbs.vue b/apps/tailwind-components/components/BreadCrumbs.vue index 979c19fa7b..43cf879380 100644 --- a/apps/tailwind-components/components/BreadCrumbs.vue +++ b/apps/tailwind-components/components/BreadCrumbs.vue @@ -40,7 +40,7 @@ withDefaults( class="text-breadcrumb" v-if="index < Object.keys(crumbs).length - 1 || current" > - +
  • diff --git a/apps/tailwind-components/components/Button.vue b/apps/tailwind-components/components/Button.vue index 2a0ae30e9b..0d3445987b 100644 --- a/apps/tailwind-components/components/Button.vue +++ b/apps/tailwind-components/components/Button.vue @@ -69,7 +69,7 @@ const iconPositionClass = computed(() => { class="flex items-center border rounded-full" > - + {{ label }} diff --git a/apps/tailwind-components/components/button/Dropdown.vue b/apps/tailwind-components/components/button/Dropdown.vue index 02f3134439..bdc66c1ee4 100644 --- a/apps/tailwind-components/components/button/Dropdown.vue +++ b/apps/tailwind-components/components/button/Dropdown.vue @@ -8,7 +8,7 @@ withDefaults( iconPosition?: "left" | "right"; }>(), { - icon: "caret-down", + icon: "mg:caret-down", iconPosition: "right", } ); diff --git a/apps/tailwind-components/nuxt.config.ts b/apps/tailwind-components/nuxt.config.ts index bfff722466..0038ac712d 100644 --- a/apps/tailwind-components/nuxt.config.ts +++ b/apps/tailwind-components/nuxt.config.ts @@ -1,7 +1,7 @@ // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ devtools: { enabled: true }, - modules: ['@nuxtjs/tailwindcss', '@nuxt/test-utils/module'], + modules: ['@nuxtjs/tailwindcss', '@nuxt/test-utils/module', '@nuxt/icon'], tailwindcss: { cssPath: '~/assets/css/main.css', configPath: '~/tailwind.config.js' @@ -48,4 +48,13 @@ export default defineNuxtConfig({ }, compatibilityDate: '2024-08-23', + + icon: { + customCollections: [ + { + prefix: 'mg', + dir: './assets/icons' + }, + ], + }, }) \ No newline at end of file diff --git a/apps/tailwind-components/package.json b/apps/tailwind-components/package.json index 5a51f1f329..dbd9485032 100644 --- a/apps/tailwind-components/package.json +++ b/apps/tailwind-components/package.json @@ -25,6 +25,8 @@ "vue-router": "4.4.3" }, "devDependencies": { + "@iconify-json/material-symbols": "1.2.6", + "@nuxt/icon": "1.7.2", "@nuxt/test-utils": "3.12.1", "@nuxtjs/tailwindcss": "6.12.0", "@vue/test-utils": "2.4.6", diff --git a/apps/tailwind-components/pages/Button.story.vue b/apps/tailwind-components/pages/Button.story.vue index c573f9905b..30fcf6eb92 100644 --- a/apps/tailwind-components/pages/Button.story.vue +++ b/apps/tailwind-components/pages/Button.story.vue @@ -42,22 +42,22 @@

    Icons

    - - - + + +
    - + \ No newline at end of file diff --git a/apps/tailwind-components/pages/NuxtIcons.story.vue b/apps/tailwind-components/pages/NuxtIcons.story.vue new file mode 100644 index 0000000000..e93aa765a3 --- /dev/null +++ b/apps/tailwind-components/pages/NuxtIcons.story.vue @@ -0,0 +1,101 @@ + + + \ No newline at end of file diff --git a/apps/yarn.lock b/apps/yarn.lock index 4921edc65c..4eeb6c2051 100644 --- a/apps/yarn.lock +++ b/apps/yarn.lock @@ -20,6 +20,14 @@ "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.24" +"@antfu/install-pkg@^0.4.0": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@antfu/install-pkg/-/install-pkg-0.4.1.tgz#d1d7f3be96ecdb41581629cafe8626d1748c0cf1" + integrity sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw== + dependencies: + package-manager-detector "^0.2.0" + tinyexec "^0.3.0" + "@antfu/utils@^0.7.10": version "0.7.10" resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.7.10.tgz#ae829f170158e297a9b6a28f161a8e487d00814d" @@ -1197,6 +1205,45 @@ resolved "https://registry.yarnpkg.com/@heroicons/vue/-/vue-2.1.5.tgz#efbf090d11acebbcefa4badcf3bed42d7ceee219" integrity sha512-IpqR72sFqFs55kyKfFS7tN+Ww6odFNeH/7UxycIOrlVYfj4WUGAdzQtLBnJspucSeqWFQsKM0g0YrgU655BEfA== +"@iconify-json/material-symbols@^1.2.6": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@iconify-json/material-symbols/-/material-symbols-1.2.6.tgz#bcbf27d7cc8eaae36d84bdffcaa0c6b23d2ccf79" + integrity sha512-eXqnY9DY8B/7Uw/INwhpN8gfBrC3BBaWBx7T/Yf4oHxQRiVto4qSlDF3MD46q7vqp4GjtyQW1IkZvhgWHn0LTA== + dependencies: + "@iconify/types" "*" + +"@iconify/collections@^1.0.480": + version "1.0.482" + resolved "https://registry.yarnpkg.com/@iconify/collections/-/collections-1.0.482.tgz#3f39cccfe09064232548ac84d3900f1953c50012" + integrity sha512-LmtAYvUGvBuMSVihOOmlZmYenN1+YyvW9D/hHKcVa6dxesOO7G1ru08JNeSQcdbKSaO2xbKeKQ9SeB4huy9scQ== + dependencies: + "@iconify/types" "*" + +"@iconify/types@*", "@iconify/types@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@iconify/types/-/types-2.0.0.tgz#ab0e9ea681d6c8a1214f30cd741fe3a20cc57f57" + integrity sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg== + +"@iconify/utils@^2.1.33": + version "2.1.33" + resolved "https://registry.yarnpkg.com/@iconify/utils/-/utils-2.1.33.tgz#cbf7242a52fd0ec58c42d37d28e4406b5327e8c0" + integrity sha512-jP9h6v/g0BIZx0p7XGJJVtkVnydtbgTgt9mVNcGDYwaa7UhdHdI9dvoq+gKj9sijMSJKxUPEG2JyjsgXjxL7Kw== + dependencies: + "@antfu/install-pkg" "^0.4.0" + "@antfu/utils" "^0.7.10" + "@iconify/types" "^2.0.0" + debug "^4.3.6" + kolorist "^1.8.0" + local-pkg "^0.5.0" + mlly "^1.7.1" + +"@iconify/vue@^4.2.0-dev.1": + version "4.2.0-dev.2" + resolved "https://registry.yarnpkg.com/@iconify/vue/-/vue-4.2.0-dev.2.tgz#d950a5668cd930c54718524ade4c626cc95c5a5f" + integrity sha512-fHsLaBaegrXyshUR2j9sV4TXkTgRQ9FhQ9PIqWgW/dFTPcMe2uEtUr1H9XQaDTpN8F9chnVqhLH8FT9asTDaSQ== + dependencies: + "@iconify/types" "^2.0.0" + "@ioredis/commands@^1.1.1": version "1.2.0" resolved "https://registry.yarnpkg.com/@ioredis/commands/-/commands-1.2.0.tgz#6d61b3097470af1fdbbe622795b8921d42018e11" @@ -1453,6 +1500,15 @@ "@nuxt/schema" "^3.13.1" execa "^7.2.0" +"@nuxt/devtools-kit@^1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-1.6.0.tgz#dca1bbb85dbe839d40ec7ac602eed786ed2fcba4" + integrity sha512-kJ8mVKwTSN3tdEVNy7mxKCiQk9wsG5t3oOrRMWk6IEbTSov+5sOULqQSM/+OWxWsEDmDfA7QlS5sM3Ti9uMRqQ== + dependencies: + "@nuxt/kit" "^3.13.2" + "@nuxt/schema" "^3.13.2" + execa "^7.2.0" + "@nuxt/devtools-wizard@1.4.2": version "1.4.2" resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-1.4.2.tgz#07b1e1913b736f885dcd365bdd54e9ae225aca49" @@ -1512,6 +1568,25 @@ which "^3.0.1" ws "^8.18.0" +"@nuxt/icon@1.7.2": + version "1.7.2" + resolved "https://registry.yarnpkg.com/@nuxt/icon/-/icon-1.7.2.tgz#616a44433e829dff46623489c9ea30fda93e30a4" + integrity sha512-E2sH/wchLfcUIuUPIFFtaFNHfPP7sVSnJNWfvOOzq1KnRNA1sWWEhr1DriuCF2g+QukrSM96Xp5b9OrQCso/8w== + dependencies: + "@iconify/collections" "^1.0.480" + "@iconify/types" "^2.0.0" + "@iconify/utils" "^2.1.33" + "@iconify/vue" "^4.2.0-dev.1" + "@nuxt/devtools-kit" "^1.6.0" + "@nuxt/kit" "^3.14.159" + consola "^3.2.3" + local-pkg "^0.5.0" + mlly "^1.7.2" + ohash "^1.1.4" + pathe "^1.1.2" + std-env "^3.7.0" + tinyglobby "^0.2.10" + "@nuxt/image@1.7.0": version "1.7.0" resolved "https://registry.yarnpkg.com/@nuxt/image/-/image-1.7.0.tgz#2df37d83d16083eafc2207dd4064e1d4553e1af0" @@ -1556,7 +1631,7 @@ unimport "^3.12.0" untyped "^1.4.2" -"@nuxt/kit@^3.13.0": +"@nuxt/kit@^3.13.0", "@nuxt/kit@^3.13.2", "@nuxt/kit@^3.14.159": version "3.14.159" resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.14.159.tgz#1b856bd5ed75c97e425a0b57dacfe476990a6863" integrity sha512-ZqxsCI1NKV/gjfEUUZjMcr82sg0MKYZOuyB6bu9QY5Zr7NGpfIZY/z5Z822AKTmFxKGChnuz9M0UaS4ze6p42g== @@ -1600,7 +1675,7 @@ unimport "^3.12.0" untyped "^1.4.2" -"@nuxt/schema@3.14.159": +"@nuxt/schema@3.14.159", "@nuxt/schema@^3.13.2": version "3.14.159" resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.14.159.tgz#c9e9a18f090fe44281d4b9f567474610d60ec1f9" integrity sha512-ggXA3F2f9udQoEy5WwrY6bTMvpDaErUYRLSEzdMqqCqjOQ5manfFgfuScGj3ooZiXLIX2TGLVTzcll4nnpDlnQ== @@ -2789,7 +2864,7 @@ de-indent "^1.0.2" he "^1.2.0" -"@vue/devtools-api@^6.0.0-beta.11", "@vue/devtools-api@^6.5.0", "@vue/devtools-api@^6.6.3", "@vue/devtools-api@^6.6.4": +"@vue/devtools-api@^6.5.0", "@vue/devtools-api@^6.6.3", "@vue/devtools-api@^6.6.4": version "6.6.4" resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz#cbe97fe0162b365edc1dba80e173f90492535343" integrity sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g== @@ -6478,6 +6553,11 @@ fdir@^6.3.0: resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.3.0.tgz#fcca5a23ea20e767b15e081ee13b3e6488ee0bb0" integrity sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ== +fdir@^6.4.2: + version "6.4.2" + resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.4.2.tgz#ddaa7ce1831b161bc3657bb99cb36e1622702689" + integrity sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ== + figures@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" @@ -7665,13 +7745,6 @@ import-lazy@~4.0.0: resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== -import@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/import/-/import-0.0.6.tgz#d0eb79df86aa2677c6db61578a5212b3031e6042" - integrity sha512-QPhTdjy9J4wUzmWSG7APkSgMFuPGPw+iJTYUblcfc2AfpqaatbwgCldK1HoLYx+v/+lWvab63GWZtNkcnj9JcQ== - dependencies: - optimist "0.3.x" - impound@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/impound/-/impound-0.1.0.tgz#3f6ff0597fd138f8f2676cc63862bbd005db413a" @@ -10129,13 +10202,6 @@ opener@^1.5.1: resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== -optimist@0.3.x: - version "0.3.7" - resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9" - integrity sha512-TCx0dXQzVtSCg2OgY/bO9hjM9cV4XYx09TVK+s3+FhkjT6LovsLe+pPMzpWf+6yXK/hUizs2gUoTw3jHM0VaTQ== - dependencies: - wordwrap "~0.0.2" - ora@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/ora/-/ora-1.4.0.tgz#884458215b3a5d4097592285f93321bb7a79e2e5" @@ -13060,6 +13126,14 @@ tinyglobby@0.2.6, tinyglobby@^0.2.6: fdir "^6.3.0" picomatch "^4.0.2" +tinyglobby@^0.2.10: + version "0.2.10" + resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.10.tgz#e712cf2dc9b95a1f5c5bbd159720e15833977a0f" + integrity sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew== + dependencies: + fdir "^6.4.2" + picomatch "^4.0.2" + tinypool@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-0.7.0.tgz#88053cc99b4a594382af23190c609d93fddf8021" @@ -14118,11 +14192,6 @@ vue-scrollto@2.20.0: dependencies: bezier-easing "2.1.0" -vue-tabler-icons@2.21.0: - version "2.21.0" - resolved "https://registry.yarnpkg.com/vue-tabler-icons/-/vue-tabler-icons-2.21.0.tgz#b4f42285a4cd6ca6c8b986299732d2c0cfa4f2b1" - integrity sha512-rEZYPd37j1sd/9gBFtC1u8wj3Pz1S3gLP1tgexvnivzQPXphc6M+7XuTSOd7wtdpaLt1sQgDmuQxIgczzrvf0A== - vue-template-compiler@^2.6.11, vue-template-compiler@^2.7.14: version "2.7.16" resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.16.tgz#c81b2d47753264c77ac03b9966a46637482bb03b" @@ -14194,13 +14263,6 @@ vuedraggable@4.1.0: dependencies: sortablejs "1.14.0" -vuex@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/vuex/-/vuex-4.1.0.tgz#aa1b3ea5c7385812b074c86faeeec2217872e36c" - integrity sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ== - dependencies: - "@vue/devtools-api" "^6.0.0-beta.11" - w3c-xmlserializer@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" @@ -14363,11 +14425,6 @@ wordwrap@^1.0.0, wordwrap@~1.0.0: resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== -wordwrap@~0.0.2: - version "0.0.3" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" - integrity sha512-1tMA907+V4QmxV7dbRvb4/8MaRALK6q9Abid3ndMYnbyo8piisCmeONVqVSXqQA3KaP4SLt5b7ud6E2sqP8TFw== - "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" From 3f353c67c1a508bc7e8f55cca600a613ea7db31d Mon Sep 17 00:00:00 2001 From: connoratrug Date: Wed, 13 Nov 2024 15:52:13 +0100 Subject: [PATCH 02/25] format --- .../components/BreadCrumbs.vue | 2 +- .../pages/Button.story.vue | 23 +++++- .../pages/NuxtIcons.story.vue | 82 ++++++++++--------- 3 files changed, 64 insertions(+), 43 deletions(-) diff --git a/apps/tailwind-components/components/BreadCrumbs.vue b/apps/tailwind-components/components/BreadCrumbs.vue index 43cf879380..395d894817 100644 --- a/apps/tailwind-components/components/BreadCrumbs.vue +++ b/apps/tailwind-components/components/BreadCrumbs.vue @@ -40,7 +40,7 @@ withDefaults( class="text-breadcrumb" v-if="index < Object.keys(crumbs).length - 1 || current" > - +
  • diff --git a/apps/tailwind-components/pages/Button.story.vue b/apps/tailwind-components/pages/Button.story.vue index 30fcf6eb92..19cc0b1186 100644 --- a/apps/tailwind-components/pages/Button.story.vue +++ b/apps/tailwind-components/pages/Button.story.vue @@ -42,13 +42,28 @@

    Icons

    - - -
    - \ No newline at end of file + diff --git a/apps/tailwind-components/pages/NuxtIcons.story.vue b/apps/tailwind-components/pages/NuxtIcons.story.vue index e93aa765a3..3aaca55b4a 100644 --- a/apps/tailwind-components/pages/NuxtIcons.story.vue +++ b/apps/tailwind-components/pages/NuxtIcons.story.vue @@ -1,38 +1,41 @@ \ No newline at end of file + From 2bc2c30e041cc0623c22d692f4f1cb74748d5afa Mon Sep 17 00:00:00 2001 From: connoratrug Date: Thu, 14 Nov 2024 09:31:04 +0100 Subject: [PATCH 03/25] replace global icons with nuxt/icon --- .../assets/minified-icons/Arrow down.svg | 1 - .../assets/minified-icons/Arrow left.svg | 1 - .../assets/minified-icons/Arrow right.svg | 1 - .../assets/minified-icons/Arrow up.svg | 1 - .../assets/minified-icons/Caret down.svg | 1 - .../assets/minified-icons/Caret left.svg | 1 - .../assets/minified-icons/Caret right.svg | 1 - .../assets/minified-icons/Caret up.svg | 1 - .../nuxt3-ssr/assets/minified-icons/Check.svg | 1 - .../assets/minified-icons/Checklist.svg | 1 - .../assets/minified-icons/Clinical.svg | 1 - .../minified-icons/Collapsible ListItem.svg | 1 - .../Collapsible ListItemSub.svg | 1 - .../assets/minified-icons/Colorize.svg | 1 - .../assets/minified-icons/Completed.svg | 1 - apps/nuxt3-ssr/assets/minified-icons/Copy.svg | 1 - .../nuxt3-ssr/assets/minified-icons/Cross.svg | 1 - .../assets/minified-icons/Database.svg | 1 - .../assets/minified-icons/Dataset linked.svg | 1 - .../assets/minified-icons/Dataset.svg | 1 - .../assets/minified-icons/External link.svg | 1 - .../assets/minified-icons/Filter.svg | 1 - .../nuxt3-ssr/assets/minified-icons/Globe.svg | 1 - .../assets/minified-icons/Handshake.svg | 1 - apps/nuxt3-ssr/assets/minified-icons/Hub.svg | 1 - .../minified-icons/Image Data Warehouse.svg | 1 - .../assets/minified-icons/Image Diagram.svg | 1 - .../assets/minified-icons/Image Lightbulb.svg | 1 - .../assets/minified-icons/Image Link.svg | 1 - .../assets/minified-icons/Image Table.svg | 1 - apps/nuxt3-ssr/assets/minified-icons/Info.svg | 1 - .../nuxt3-ssr/assets/minified-icons/Mouse.svg | 1 - .../assets/minified-icons/Patient list.svg | 1 - .../assets/minified-icons/People.svg | 1 - .../assets/minified-icons/Percent.svg | 1 - apps/nuxt3-ssr/assets/minified-icons/Plus.svg | 1 - .../minified-icons/ProgressActivity.svg | 1 - .../assets/minified-icons/Schedule.svg | 1 - .../assets/minified-icons/Search.svg | 1 - .../assets/minified-icons/Star solid.svg | 1 - apps/nuxt3-ssr/assets/minified-icons/Star.svg | 1 - .../nuxt3-ssr/assets/minified-icons/Trash.svg | 1 - .../assets/minified-icons/University.svg | 1 - apps/nuxt3-ssr/assets/minified-icons/User.svg | 1 - .../assets/minified-icons/View compact.svg | 1 - .../assets/minified-icons/View normal.svg | 1 - .../assets/minified-icons/View table.svg | 1 - .../assets/minified-icons/demography.svg | 1 - .../assets/minified-icons/groups.svg | 1 - .../minified-icons/harmonised variables.svg | 1 - .../assets/minified-icons/image Diagram 2.svg | 1 - .../assets/minified-icons/institution.svg | 1 - apps/nuxt3-ssr/assets/minified-icons/list.svg | 1 - .../assets/minified-icons/person.svg | 1 - apps/nuxt3-ssr/components/ContactCard.vue | 2 +- .../nuxt3-ssr/components/FileDocumentCard.vue | 8 +++- apps/nuxt3-ssr/components/FilterWell.vue | 6 +-- apps/nuxt3-ssr/components/HamburgerMenu.vue | 4 +- apps/nuxt3-ssr/components/IconButton.vue | 2 +- apps/nuxt3-ssr/components/NetworkCard.vue | 4 +- apps/nuxt3-ssr/components/ReferenceCard.vue | 4 +- apps/nuxt3-ssr/components/ResourceCard.vue | 4 +- .../SearchResultsViewTabsMobile.vue | 2 +- apps/nuxt3-ssr/components/VariableCard.vue | 2 +- .../content/ContentBlockCatalogues.vue | 4 +- .../content/ContentBlockCollectionEvents.vue | 32 +++++++------- .../content/ContentBlockSubpopulations.vue | 6 +-- apps/nuxt3-ssr/components/filter/Ontology.vue | 6 +-- .../nuxt3-ssr/components/header/Catalogue.vue | 8 ++-- apps/nuxt3-ssr/components/header/Global.vue | 8 ++-- .../components/landing/CardPrimary.vue | 2 +- apps/nuxt3-ssr/components/landing/Central.vue | 24 +++++------ .../components/landing/CohortsOnly.vue | 8 ++-- apps/nuxt3-ssr/components/table/Content.vue | 2 +- apps/nuxt3-ssr/nuxt.config.ts | 16 ++++--- .../[resourceType]/[resource]/index.vue | 2 +- .../[catalogue]/[resourceType]/index.vue | 8 ++-- .../ssr-catalogue/[catalogue]/index.vue | 8 ++-- .../[catalogue]/variables/[variable].vue | 2 +- .../[catalogue]/variables/index.vue | 8 ++-- apps/nuxt3-ssr/pages/index.vue | 1 + apps/tailwind-components/app.vue | 2 +- .../icons/{Arrow down.svg => arrow-down.svg} | 0 .../icons/{Arrow left.svg => arrow-left.svg} | 0 .../{Arrow right.svg => arrow-right.svg} | 0 .../icons/{Arrow up.svg => arrow-up.svg} | 0 .../icons/{Caret down.svg => caret-down.svg} | 0 .../icons/{Caret left.svg => caret-left.svg} | 0 .../{Caret right.svg => caret-right.svg} | 0 .../icons/{Caret up.svg => caret-up.svg} | 0 ... ListItem.svg => collapsible-listitem.svg} | 0 ...temSub.svg => collapsible-listitemsub.svg} | 0 ...{Dataset linked.svg => dataset-linked.svg} | 0 .../{External link.svg => external-link.svg} | 0 ...variables.svg => harmonised-variables.svg} | 0 ...Warehouse.svg => image-data-warehouse.svg} | 0 ...mage Diagram 2.svg => image-diagram-2.svg} | 0 .../{Image Diagram.svg => image-diagram.svg} | 0 ...mage Lightbulb.svg => image-lightbulb.svg} | 0 .../icons/{Image Link.svg => image-link.svg} | 0 .../{Image Table.svg => image-table.svg} | 0 .../{Patient list.svg => patient-list.svg} | 0 .../icons/{Star solid.svg => star-solid.svg} | 0 .../{View compact.svg => view-compact.svg} | 0 .../{View normal.svg => view-normal.svg} | 0 .../icons/{View table.svg => view-table.svg} | 0 .../components/global/icons/ArrowLeft.vue | 8 ---- .../components/global/icons/ArrowRight.vue | 8 ---- .../components/global/icons/ArrowUp.vue | 8 ---- .../components/global/icons/CaretDown.vue | 8 ---- .../components/global/icons/CaretLeft.vue | 8 ---- .../components/global/icons/CaretRight.vue | 8 ---- .../components/global/icons/CaretUp.vue | 8 ---- .../components/global/icons/Check.vue | 5 --- .../components/global/icons/Checklist.vue | 7 ---- .../components/global/icons/Clinical.vue | 7 ---- .../global/icons/CollapsibleListItem.vue | 11 ----- .../global/icons/CollapsibleListItemSub.vue | 24 ----------- .../components/global/icons/Colorize.vue | 12 ------ .../components/global/icons/Completed.vue | 8 ---- .../components/global/icons/Copy.vue | 8 ---- .../components/global/icons/Cross.vue | 10 ----- .../components/global/icons/Database.vue | 7 ---- .../components/global/icons/Dataset.vue | 7 ---- .../components/global/icons/DatasetLinked.vue | 7 ---- .../components/global/icons/Demography.vue | 7 ---- .../components/global/icons/ExternalLink.vue | 8 ---- .../components/global/icons/Filter.vue | 8 ---- .../components/global/icons/Globe.vue | 7 ---- .../components/global/icons/Groups.vue | 7 ---- .../components/global/icons/Handshake.vue | 7 ---- .../global/icons/HarmonisedVariables.vue | 7 ---- .../components/global/icons/Hub.vue | 7 ---- .../global/icons/ImageDataWarehouse.vue | 30 ------------- .../components/global/icons/ImageDiagram.vue | 8 ---- .../components/global/icons/ImageDiagram2.vue | 42 ------------------- .../global/icons/ImageLightbulb.vue | 34 --------------- .../components/global/icons/ImageLink.vue | 36 ---------------- .../components/global/icons/ImageTable.vue | 10 ----- .../components/global/icons/Info.vue | 18 -------- .../components/global/icons/Institution.vue | 7 ---- .../components/global/icons/List.vue | 7 ---- .../components/global/icons/Mouse.vue | 14 ------- .../components/global/icons/PatientList.vue | 7 ---- .../components/global/icons/People.vue | 12 ------ .../components/global/icons/Percent.vue | 7 ---- .../components/global/icons/Person.vue | 7 ---- .../components/global/icons/Plus.vue | 14 ------- .../global/icons/ProgressActivity.vue | 13 ------ .../components/global/icons/Schedule.vue | 12 ------ .../components/global/icons/Search.vue | 8 ---- .../components/global/icons/Star.vue | 10 ----- .../components/global/icons/StarSolid.vue | 8 ---- .../components/global/icons/Trash.vue | 8 ---- .../components/global/icons/University.vue | 7 ---- .../components/global/icons/User.vue | 16 ------- .../components/global/icons/ViewCompact.vue | 8 ---- .../components/global/icons/ViewNormal.vue | 8 ---- .../components/global/icons/ViewTable.vue | 8 ---- apps/tailwind-components/nuxt.config.ts | 1 + .../pages/NuxtIcons.story.vue | 24 ++++------- 161 files changed, 105 insertions(+), 745 deletions(-) delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Arrow down.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Arrow left.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Arrow right.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Arrow up.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Caret down.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Caret left.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Caret right.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Caret up.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Check.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Checklist.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Clinical.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Collapsible ListItem.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Collapsible ListItemSub.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Colorize.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Completed.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Copy.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Cross.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Database.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Dataset linked.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Dataset.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/External link.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Filter.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Globe.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Handshake.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Hub.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Image Data Warehouse.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Image Diagram.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Image Lightbulb.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Image Link.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Image Table.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Info.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Mouse.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Patient list.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/People.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Percent.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Plus.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/ProgressActivity.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Schedule.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Search.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Star solid.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Star.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/Trash.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/University.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/User.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/View compact.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/View normal.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/View table.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/demography.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/groups.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/harmonised variables.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/image Diagram 2.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/institution.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/list.svg delete mode 100644 apps/nuxt3-ssr/assets/minified-icons/person.svg rename apps/tailwind-components/assets/icons/{Arrow down.svg => arrow-down.svg} (100%) rename apps/tailwind-components/assets/icons/{Arrow left.svg => arrow-left.svg} (100%) rename apps/tailwind-components/assets/icons/{Arrow right.svg => arrow-right.svg} (100%) rename apps/tailwind-components/assets/icons/{Arrow up.svg => arrow-up.svg} (100%) rename apps/tailwind-components/assets/icons/{Caret down.svg => caret-down.svg} (100%) rename apps/tailwind-components/assets/icons/{Caret left.svg => caret-left.svg} (100%) rename apps/tailwind-components/assets/icons/{Caret right.svg => caret-right.svg} (100%) rename apps/tailwind-components/assets/icons/{Caret up.svg => caret-up.svg} (100%) rename apps/tailwind-components/assets/icons/{Collapsible ListItem.svg => collapsible-listitem.svg} (100%) rename apps/tailwind-components/assets/icons/{Collapsible ListItemSub.svg => collapsible-listitemsub.svg} (100%) rename apps/tailwind-components/assets/icons/{Dataset linked.svg => dataset-linked.svg} (100%) rename apps/tailwind-components/assets/icons/{External link.svg => external-link.svg} (100%) rename apps/tailwind-components/assets/icons/{harmonised variables.svg => harmonised-variables.svg} (100%) rename apps/tailwind-components/assets/icons/{Image Data Warehouse.svg => image-data-warehouse.svg} (100%) rename apps/tailwind-components/assets/icons/{image Diagram 2.svg => image-diagram-2.svg} (100%) rename apps/tailwind-components/assets/icons/{Image Diagram.svg => image-diagram.svg} (100%) rename apps/tailwind-components/assets/icons/{Image Lightbulb.svg => image-lightbulb.svg} (100%) rename apps/tailwind-components/assets/icons/{Image Link.svg => image-link.svg} (100%) rename apps/tailwind-components/assets/icons/{Image Table.svg => image-table.svg} (100%) rename apps/tailwind-components/assets/icons/{Patient list.svg => patient-list.svg} (100%) rename apps/tailwind-components/assets/icons/{Star solid.svg => star-solid.svg} (100%) rename apps/tailwind-components/assets/icons/{View compact.svg => view-compact.svg} (100%) rename apps/tailwind-components/assets/icons/{View normal.svg => view-normal.svg} (100%) rename apps/tailwind-components/assets/icons/{View table.svg => view-table.svg} (100%) delete mode 100644 apps/tailwind-components/components/global/icons/ArrowLeft.vue delete mode 100644 apps/tailwind-components/components/global/icons/ArrowRight.vue delete mode 100644 apps/tailwind-components/components/global/icons/ArrowUp.vue delete mode 100644 apps/tailwind-components/components/global/icons/CaretDown.vue delete mode 100644 apps/tailwind-components/components/global/icons/CaretLeft.vue delete mode 100644 apps/tailwind-components/components/global/icons/CaretRight.vue delete mode 100644 apps/tailwind-components/components/global/icons/CaretUp.vue delete mode 100644 apps/tailwind-components/components/global/icons/Check.vue delete mode 100644 apps/tailwind-components/components/global/icons/Checklist.vue delete mode 100644 apps/tailwind-components/components/global/icons/Clinical.vue delete mode 100644 apps/tailwind-components/components/global/icons/CollapsibleListItem.vue delete mode 100644 apps/tailwind-components/components/global/icons/CollapsibleListItemSub.vue delete mode 100644 apps/tailwind-components/components/global/icons/Colorize.vue delete mode 100644 apps/tailwind-components/components/global/icons/Completed.vue delete mode 100644 apps/tailwind-components/components/global/icons/Copy.vue delete mode 100644 apps/tailwind-components/components/global/icons/Cross.vue delete mode 100644 apps/tailwind-components/components/global/icons/Database.vue delete mode 100644 apps/tailwind-components/components/global/icons/Dataset.vue delete mode 100644 apps/tailwind-components/components/global/icons/DatasetLinked.vue delete mode 100644 apps/tailwind-components/components/global/icons/Demography.vue delete mode 100644 apps/tailwind-components/components/global/icons/ExternalLink.vue delete mode 100644 apps/tailwind-components/components/global/icons/Filter.vue delete mode 100644 apps/tailwind-components/components/global/icons/Globe.vue delete mode 100644 apps/tailwind-components/components/global/icons/Groups.vue delete mode 100644 apps/tailwind-components/components/global/icons/Handshake.vue delete mode 100644 apps/tailwind-components/components/global/icons/HarmonisedVariables.vue delete mode 100644 apps/tailwind-components/components/global/icons/Hub.vue delete mode 100644 apps/tailwind-components/components/global/icons/ImageDataWarehouse.vue delete mode 100644 apps/tailwind-components/components/global/icons/ImageDiagram.vue delete mode 100644 apps/tailwind-components/components/global/icons/ImageDiagram2.vue delete mode 100644 apps/tailwind-components/components/global/icons/ImageLightbulb.vue delete mode 100644 apps/tailwind-components/components/global/icons/ImageLink.vue delete mode 100644 apps/tailwind-components/components/global/icons/ImageTable.vue delete mode 100644 apps/tailwind-components/components/global/icons/Info.vue delete mode 100644 apps/tailwind-components/components/global/icons/Institution.vue delete mode 100644 apps/tailwind-components/components/global/icons/List.vue delete mode 100644 apps/tailwind-components/components/global/icons/Mouse.vue delete mode 100644 apps/tailwind-components/components/global/icons/PatientList.vue delete mode 100644 apps/tailwind-components/components/global/icons/People.vue delete mode 100644 apps/tailwind-components/components/global/icons/Percent.vue delete mode 100644 apps/tailwind-components/components/global/icons/Person.vue delete mode 100644 apps/tailwind-components/components/global/icons/Plus.vue delete mode 100644 apps/tailwind-components/components/global/icons/ProgressActivity.vue delete mode 100644 apps/tailwind-components/components/global/icons/Schedule.vue delete mode 100644 apps/tailwind-components/components/global/icons/Search.vue delete mode 100644 apps/tailwind-components/components/global/icons/Star.vue delete mode 100644 apps/tailwind-components/components/global/icons/StarSolid.vue delete mode 100644 apps/tailwind-components/components/global/icons/Trash.vue delete mode 100644 apps/tailwind-components/components/global/icons/University.vue delete mode 100644 apps/tailwind-components/components/global/icons/User.vue delete mode 100644 apps/tailwind-components/components/global/icons/ViewCompact.vue delete mode 100644 apps/tailwind-components/components/global/icons/ViewNormal.vue delete mode 100644 apps/tailwind-components/components/global/icons/ViewTable.vue diff --git a/apps/nuxt3-ssr/assets/minified-icons/Arrow down.svg b/apps/nuxt3-ssr/assets/minified-icons/Arrow down.svg deleted file mode 100644 index 12c827f8e6..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Arrow down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Arrow left.svg b/apps/nuxt3-ssr/assets/minified-icons/Arrow left.svg deleted file mode 100644 index 59bfb14c9c..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Arrow left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Arrow right.svg b/apps/nuxt3-ssr/assets/minified-icons/Arrow right.svg deleted file mode 100644 index 6be5385dd4..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Arrow right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Arrow up.svg b/apps/nuxt3-ssr/assets/minified-icons/Arrow up.svg deleted file mode 100644 index 2cda67e433..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Arrow up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Caret down.svg b/apps/nuxt3-ssr/assets/minified-icons/Caret down.svg deleted file mode 100644 index 574e69c5f1..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Caret down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Caret left.svg b/apps/nuxt3-ssr/assets/minified-icons/Caret left.svg deleted file mode 100644 index 90b6d68a45..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Caret left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Caret right.svg b/apps/nuxt3-ssr/assets/minified-icons/Caret right.svg deleted file mode 100644 index 3dc0153fe0..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Caret right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Caret up.svg b/apps/nuxt3-ssr/assets/minified-icons/Caret up.svg deleted file mode 100644 index 96a6648de0..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Caret up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Check.svg b/apps/nuxt3-ssr/assets/minified-icons/Check.svg deleted file mode 100644 index bd1f20ab4e..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Checklist.svg b/apps/nuxt3-ssr/assets/minified-icons/Checklist.svg deleted file mode 100644 index 4517d0d531..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Checklist.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Clinical.svg b/apps/nuxt3-ssr/assets/minified-icons/Clinical.svg deleted file mode 100644 index ecabfdf044..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Clinical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Collapsible ListItem.svg b/apps/nuxt3-ssr/assets/minified-icons/Collapsible ListItem.svg deleted file mode 100644 index a975eef022..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Collapsible ListItem.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Collapsible ListItemSub.svg b/apps/nuxt3-ssr/assets/minified-icons/Collapsible ListItemSub.svg deleted file mode 100644 index 7a1e5efb8e..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Collapsible ListItemSub.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Colorize.svg b/apps/nuxt3-ssr/assets/minified-icons/Colorize.svg deleted file mode 100644 index b9f0f9b25a..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Colorize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Completed.svg b/apps/nuxt3-ssr/assets/minified-icons/Completed.svg deleted file mode 100644 index 5ae0656195..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Completed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Copy.svg b/apps/nuxt3-ssr/assets/minified-icons/Copy.svg deleted file mode 100644 index 5b110eff8b..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Copy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Cross.svg b/apps/nuxt3-ssr/assets/minified-icons/Cross.svg deleted file mode 100644 index b40f2e1e06..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Cross.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Database.svg b/apps/nuxt3-ssr/assets/minified-icons/Database.svg deleted file mode 100644 index ef46f5e6b7..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Database.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Dataset linked.svg b/apps/nuxt3-ssr/assets/minified-icons/Dataset linked.svg deleted file mode 100644 index 60b22bd1ff..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Dataset linked.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Dataset.svg b/apps/nuxt3-ssr/assets/minified-icons/Dataset.svg deleted file mode 100644 index 3750e8d98b..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Dataset.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/External link.svg b/apps/nuxt3-ssr/assets/minified-icons/External link.svg deleted file mode 100644 index f9f0306c22..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/External link.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Filter.svg b/apps/nuxt3-ssr/assets/minified-icons/Filter.svg deleted file mode 100644 index b061f3e438..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Filter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Globe.svg b/apps/nuxt3-ssr/assets/minified-icons/Globe.svg deleted file mode 100644 index c1f2ced145..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Globe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Handshake.svg b/apps/nuxt3-ssr/assets/minified-icons/Handshake.svg deleted file mode 100644 index fa5f7549db..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Handshake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Hub.svg b/apps/nuxt3-ssr/assets/minified-icons/Hub.svg deleted file mode 100644 index 018c3a902e..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Hub.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Image Data Warehouse.svg b/apps/nuxt3-ssr/assets/minified-icons/Image Data Warehouse.svg deleted file mode 100644 index 41c65e0ee5..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Image Data Warehouse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Image Diagram.svg b/apps/nuxt3-ssr/assets/minified-icons/Image Diagram.svg deleted file mode 100644 index c88adb3050..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Image Diagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Image Lightbulb.svg b/apps/nuxt3-ssr/assets/minified-icons/Image Lightbulb.svg deleted file mode 100644 index 854c402ecc..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Image Lightbulb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Image Link.svg b/apps/nuxt3-ssr/assets/minified-icons/Image Link.svg deleted file mode 100644 index 41a25121cb..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Image Link.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Image Table.svg b/apps/nuxt3-ssr/assets/minified-icons/Image Table.svg deleted file mode 100644 index fce834650e..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Image Table.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Info.svg b/apps/nuxt3-ssr/assets/minified-icons/Info.svg deleted file mode 100644 index 3302ee630d..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Info.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Mouse.svg b/apps/nuxt3-ssr/assets/minified-icons/Mouse.svg deleted file mode 100644 index a12800098b..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Mouse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Patient list.svg b/apps/nuxt3-ssr/assets/minified-icons/Patient list.svg deleted file mode 100644 index 7c54ae298e..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Patient list.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/People.svg b/apps/nuxt3-ssr/assets/minified-icons/People.svg deleted file mode 100644 index 893567b2a3..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/People.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Percent.svg b/apps/nuxt3-ssr/assets/minified-icons/Percent.svg deleted file mode 100644 index 7b5e581c2b..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Percent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Plus.svg b/apps/nuxt3-ssr/assets/minified-icons/Plus.svg deleted file mode 100644 index 104b278ad4..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/ProgressActivity.svg b/apps/nuxt3-ssr/assets/minified-icons/ProgressActivity.svg deleted file mode 100644 index 9bcc33a4ca..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/ProgressActivity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Schedule.svg b/apps/nuxt3-ssr/assets/minified-icons/Schedule.svg deleted file mode 100644 index 6437ae2157..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Schedule.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Search.svg b/apps/nuxt3-ssr/assets/minified-icons/Search.svg deleted file mode 100644 index 8e2dd6f021..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Star solid.svg b/apps/nuxt3-ssr/assets/minified-icons/Star solid.svg deleted file mode 100644 index 7bceea27f7..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Star solid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Star.svg b/apps/nuxt3-ssr/assets/minified-icons/Star.svg deleted file mode 100644 index 90a2267cfc..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/Trash.svg b/apps/nuxt3-ssr/assets/minified-icons/Trash.svg deleted file mode 100644 index f2582e6483..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/Trash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/University.svg b/apps/nuxt3-ssr/assets/minified-icons/University.svg deleted file mode 100644 index 50eaa2914a..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/University.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/User.svg b/apps/nuxt3-ssr/assets/minified-icons/User.svg deleted file mode 100644 index 0e5228dd57..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/User.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/View compact.svg b/apps/nuxt3-ssr/assets/minified-icons/View compact.svg deleted file mode 100644 index 9aca6d311e..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/View compact.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/View normal.svg b/apps/nuxt3-ssr/assets/minified-icons/View normal.svg deleted file mode 100644 index e63812d6a3..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/View normal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/View table.svg b/apps/nuxt3-ssr/assets/minified-icons/View table.svg deleted file mode 100644 index e3813cf531..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/View table.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/demography.svg b/apps/nuxt3-ssr/assets/minified-icons/demography.svg deleted file mode 100644 index 25c10ff220..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/demography.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/groups.svg b/apps/nuxt3-ssr/assets/minified-icons/groups.svg deleted file mode 100644 index cf5289540e..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/groups.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/harmonised variables.svg b/apps/nuxt3-ssr/assets/minified-icons/harmonised variables.svg deleted file mode 100644 index 2ac63978f3..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/harmonised variables.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/image Diagram 2.svg b/apps/nuxt3-ssr/assets/minified-icons/image Diagram 2.svg deleted file mode 100644 index 545c6e1d71..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/image Diagram 2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/institution.svg b/apps/nuxt3-ssr/assets/minified-icons/institution.svg deleted file mode 100644 index de33373697..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/institution.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/list.svg b/apps/nuxt3-ssr/assets/minified-icons/list.svg deleted file mode 100644 index 798feb242e..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/list.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/assets/minified-icons/person.svg b/apps/nuxt3-ssr/assets/minified-icons/person.svg deleted file mode 100644 index 0fe6acaedf..0000000000 --- a/apps/nuxt3-ssr/assets/minified-icons/person.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/nuxt3-ssr/components/ContactCard.vue b/apps/nuxt3-ssr/components/ContactCard.vue index 3925e0ff16..f7b4ee7da8 100644 --- a/apps/nuxt3-ssr/components/ContactCard.vue +++ b/apps/nuxt3-ssr/components/ContactCard.vue @@ -14,7 +14,7 @@ defineProps<{ diff --git a/apps/nuxt3-ssr/components/FileDocumentCard.vue b/apps/nuxt3-ssr/components/FileDocumentCard.vue index 0853e5e4f8..a49518beff 100644 --- a/apps/nuxt3-ssr/components/FileDocumentCard.vue +++ b/apps/nuxt3-ssr/components/FileDocumentCard.vue @@ -22,7 +22,11 @@ withDefaults( {{ title }} - - + + diff --git a/apps/nuxt3-ssr/components/FilterWell.vue b/apps/nuxt3-ssr/components/FilterWell.vue index 9ecf28ef3b..2c08d7f208 100644 --- a/apps/nuxt3-ssr/components/FilterWell.vue +++ b/apps/nuxt3-ssr/components/FilterWell.vue @@ -73,7 +73,7 @@ function isAFilterSet(filters: IFilter[]) { handleFilerUpdate(filter); } " - icon="trash" + icon="twc:trash" icon-position="right" size="tiny" type="filterWell" @@ -95,7 +95,7 @@ function isAFilterSet(filters: IFilter[]) { handleFilerUpdate(filter); } " - icon="trash" + icon="twc:trash" icon-position="right" size="tiny" type="filterWell" @@ -119,7 +119,7 @@ function isAFilterSet(filters: IFilter[]) { diff --git a/apps/nuxt3-ssr/components/NetworkCard.vue b/apps/nuxt3-ssr/components/NetworkCard.vue index d5fd7cddda..51fd4bb25f 100644 --- a/apps/nuxt3-ssr/components/NetworkCard.vue +++ b/apps/nuxt3-ssr/components/NetworkCard.vue @@ -85,7 +85,7 @@ const links = []; {{ network.name }} + - + diff --git a/apps/nuxt3-ssr/components/ResourceCard.vue b/apps/nuxt3-ssr/components/ResourceCard.vue index ad31c4ed89..554cd24474 100644 --- a/apps/nuxt3-ssr/components/ResourceCard.vue +++ b/apps/nuxt3-ssr/components/ResourceCard.vue @@ -60,7 +60,7 @@ const iconStarClasses = computed(() => {
    - +
    @@ -107,8 +107,8 @@ if (!cohortOnly.value) {
    - +
    diff --git a/apps/nuxt3-ssr/components/header/Global.vue b/apps/nuxt3-ssr/components/header/Global.vue index be050cf537..079dec28c3 100644 --- a/apps/nuxt3-ssr/components/header/Global.vue +++ b/apps/nuxt3-ssr/components/header/Global.vue @@ -48,8 +48,8 @@ const menu = [ --> - +
    @@ -61,8 +61,8 @@ const menu = [
    - +
    diff --git a/apps/nuxt3-ssr/components/landing/CardPrimary.vue b/apps/nuxt3-ssr/components/landing/CardPrimary.vue index 8bb087da11..48eabd2987 100644 --- a/apps/nuxt3-ssr/components/landing/CardPrimary.vue +++ b/apps/nuxt3-ssr/components/landing/CardPrimary.vue @@ -42,7 +42,7 @@ withDefaults(defineProps(), { class="md:hidden absolute right-0 mr-3 hover:text-blue-800 text-blue-500" > - + diff --git a/apps/nuxt3-ssr/components/landing/Central.vue b/apps/nuxt3-ssr/components/landing/Central.vue index ce3f0d6fa1..ac2a5c27a2 100644 --- a/apps/nuxt3-ssr/components/landing/Central.vue +++ b/apps/nuxt3-ssr/components/landing/Central.vue @@ -77,56 +77,56 @@ function percentageLongitudinal( @@ -135,7 +135,7 @@ function percentageLongitudinal( }} @@ -144,7 +144,7 @@ function percentageLongitudinal( }} diff --git a/apps/nuxt3-ssr/components/landing/CohortsOnly.vue b/apps/nuxt3-ssr/components/landing/CohortsOnly.vue index a3bed67e27..6aa91b4816 100644 --- a/apps/nuxt3-ssr/components/landing/CohortsOnly.vue +++ b/apps/nuxt3-ssr/components/landing/CohortsOnly.vue @@ -149,7 +149,7 @@ function getSettingValue(settingKey: string, settings: ISetting[]) {
    - + {{ new Intl.NumberFormat("nl-NL").format( @@ -172,7 +172,7 @@ function getSettingValue(settingKey: string, settings: ISetting[]) { }} - + {{ new Intl.NumberFormat("nl-NL").format( @@ -195,7 +195,7 @@ function getSettingValue(settingKey: string, settings: ISetting[]) { }} - + {{ getSettingValue( @@ -218,7 +218,7 @@ function getSettingValue(settingKey: string, settings: ISetting[]) { cross-sectional. - + {{ data.data.Subpopulations_agg.count }} {{ diff --git a/apps/nuxt3-ssr/components/table/Content.vue b/apps/nuxt3-ssr/components/table/Content.vue index bd9e91579b..f2a574dd7c 100644 --- a/apps/nuxt3-ssr/components/table/Content.vue +++ b/apps/nuxt3-ssr/components/table/Content.vue @@ -131,7 +131,7 @@ function setActiveSideModal(value: string) {
    diff --git a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/index.vue b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/index.vue index dcfc51564b..9208e6a282 100644 --- a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/index.vue +++ b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/index.vue @@ -15,8 +15,8 @@ const descriptionMap: Record = { }; const imageMap: Record = { - collections: "image-diagram", - networks: "image-network", + collections: "twc:image-diagram", + networks: "twc:image-network", }; const title = route.params.resourceType; @@ -306,10 +306,10 @@ crumbs[ class="flex xl:hidden" button-top-label="View" button-top-name="detailed" - button-top-icon="view-normal" + button-top-icon="twc:view-normal" button-bottom-label="View" button-bottom-name="compact" - button-bottom-icon="view-compact" + button-bottom-icon="twc:view-compact" :activeName="activeTabName" @update:active-name="onActiveTabChange" > diff --git a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/index.vue b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/index.vue index fdf3c7276b..3719eedf7f 100644 --- a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/index.vue +++ b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/index.vue @@ -271,7 +271,7 @@ const aboutLink = `/${route.params.schema}/ssr-catalogue/${catalogueRouteParam}/ @@ -292,7 +292,7 @@ const aboutLink = `/${route.params.schema}/ssr-catalogue/${catalogueRouteParam}/ diff --git a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/variables/[variable].vue b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/variables/[variable].vue index 83996b2c60..be97c4fa7a 100644 --- a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/variables/[variable].vue +++ b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/variables/[variable].vue @@ -98,7 +98,7 @@ useHead({ title: titlePrefix + variable.value.name }); diff --git a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/variables/index.vue b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/variables/index.vue index e53890d9e1..e789b75c62 100644 --- a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/variables/index.vue +++ b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/variables/index.vue @@ -44,9 +44,9 @@ async function setCurrentPage(pageNumber: number) { const pageIcon = computed(() => { switch (activeName.value) { case "list": - return "image-diagram-2"; + return "twc:image-diagram-2"; case "harmonisation": - return "image-table"; + return "twv:image-table"; } }); @@ -349,10 +349,10 @@ crumbs[ class="flex xl:hidden" button-top-label="Harmonisation" button-top-name="list" - button-top-icon="view-table" + button-top-icon="twc:view-table" button-bottom-label="Variables" button-bottom-name="harmonisation" - button-bottom-icon="view-compact" + button-bottom-icon="twc:view-compact" :activeName="activeName" @update:activeName="onViewChange" > diff --git a/apps/nuxt3-ssr/pages/index.vue b/apps/nuxt3-ssr/pages/index.vue index 36d462bd6c..d45d0d561a 100644 --- a/apps/nuxt3-ssr/pages/index.vue +++ b/apps/nuxt3-ssr/pages/index.vue @@ -25,6 +25,7 @@ const databases = computed( From 1f72bf819790fed033c165181ffda4470229287e Mon Sep 17 00:00:00 2001 From: connoratrug Date: Thu, 14 Nov 2024 10:21:05 +0100 Subject: [PATCH 04/25] add workaround to work with multi layer icons --- apps/nuxt3-ssr/app.config.ts | 11 +++++++++++ apps/nuxt3-ssr/components/BottomModal.vue | 2 +- apps/nuxt3-ssr/components/HorizontalScrollHelper.vue | 4 ++-- apps/nuxt3-ssr/components/HyperLink.vue | 2 +- .../nuxt3-ssr/components/ListCollapsibleItemChild.vue | 6 +----- .../components/ListCollapsibleItemParent.vue | 2 +- apps/nuxt3-ssr/components/MainNavigation.vue | 2 +- apps/nuxt3-ssr/components/NavigationIconsMobile.vue | 2 +- apps/nuxt3-ssr/components/NetworkCard.vue | 4 ++-- apps/nuxt3-ssr/components/ReferenceCard.vue | 2 +- apps/nuxt3-ssr/components/SearchResultsViewTabs.vue | 4 ++-- .../content/ContentBlockCollectionEvents.vue | 2 +- apps/nuxt3-ssr/components/content/TreeNode.vue | 6 +++--- apps/nuxt3-ssr/components/filter/Container.vue | 2 +- apps/nuxt3-ssr/components/filter/Ontology.vue | 4 ++-- apps/nuxt3-ssr/components/filter/Sidebar.vue | 2 +- .../components/harmonisation/HarmonisationLegend.vue | 2 +- .../harmonisation/HarmonisationLegendDetailed.vue | 2 +- .../harmonisation/HarmonisationLegendMatrix.vue | 2 +- .../harmonisation/HarmonisationStatusIcon.vue | 2 +- .../harmonisation/HarmonisationTableCell.vue | 2 +- .../HarmonisationTableCellAvailableIcon.vue | 2 +- .../HarmonisationTableCellStatusIcon.vue | 2 +- .../components/harmonisation/VariableDetails.vue | 2 +- apps/nuxt3-ssr/components/landing/CardPrimary.vue | 2 +- apps/nuxt3-ssr/components/landing/CardSecondary.vue | 2 +- .../components/storybook-helpers/IconsOverview.vue | 2 +- apps/nuxt3-ssr/components/table/Content.vue | 2 +- .../[catalogue]/[resourceType]/index.vue | 4 ++-- .../ssr-catalogue/[catalogue]/variables/index.vue | 2 +- apps/tailwind-components/app.config.ts | 1 + apps/tailwind-components/components/BreadCrumbs.vue | 2 +- 32 files changed, 49 insertions(+), 41 deletions(-) create mode 100644 apps/nuxt3-ssr/app.config.ts diff --git a/apps/nuxt3-ssr/app.config.ts b/apps/nuxt3-ssr/app.config.ts new file mode 100644 index 0000000000..0b3038a3ad --- /dev/null +++ b/apps/nuxt3-ssr/app.config.ts @@ -0,0 +1,11 @@ +export default defineAppConfig({ + icon: { + size: '24px', // default size applied + class: 'icon', // default class applied + mode: 'svg', // default mode applied + aliases: { + 'nuxt': 'logos:nuxt-icon', + 'caret-right': 'twc:caret-right', + } + } + }) \ No newline at end of file diff --git a/apps/nuxt3-ssr/components/BottomModal.vue b/apps/nuxt3-ssr/components/BottomModal.vue index 410dbbcebf..4624106bec 100644 --- a/apps/nuxt3-ssr/components/BottomModal.vue +++ b/apps/nuxt3-ssr/components/BottomModal.vue @@ -46,7 +46,7 @@ const emit = defineEmits(["close"]); >
    diff --git a/apps/nuxt3-ssr/components/HorizontalScrollHelper.vue b/apps/nuxt3-ssr/components/HorizontalScrollHelper.vue index 1a951e37c8..1d1ba47c4e 100644 --- a/apps/nuxt3-ssr/components/HorizontalScrollHelper.vue +++ b/apps/nuxt3-ssr/components/HorizontalScrollHelper.vue @@ -37,7 +37,7 @@ function smoothScroll(value: number) { class="relative right-6 flex items-center justify-center pointer-events-auto bg-white hover:bg-gray-100 rounded-full border w-10 h-10" @click="smoothScroll(200)" > - +
    @@ -49,7 +49,7 @@ function smoothScroll(value: number) { class="relative left-6 flex items-center justify-center pointer-events-auto bg-white hover:bg-gray-100 rounded-full border w-10 h-10" @click="smoothScroll(-200)" > - +
    diff --git a/apps/nuxt3-ssr/components/HyperLink.vue b/apps/nuxt3-ssr/components/HyperLink.vue index c28e600eaa..597adef379 100644 --- a/apps/nuxt3-ssr/components/HyperLink.vue +++ b/apps/nuxt3-ssr/components/HyperLink.vue @@ -16,7 +16,7 @@ withDefaults( :target="target" class="text-blue-500 underline hover:bg-blue-50" > -
  • - +
    diff --git a/apps/nuxt3-ssr/components/ListCollapsibleItemParent.vue b/apps/nuxt3-ssr/components/ListCollapsibleItemParent.vue index ca011f4005..a49be6761b 100644 --- a/apps/nuxt3-ssr/components/ListCollapsibleItemParent.vue +++ b/apps/nuxt3-ssr/components/ListCollapsibleItemParent.vue @@ -30,7 +30,7 @@ const toggleCollapse = () => { class="text-blue-500 mr-1 mt-0.5 rounded-full hover:bg-blue-50 hover:cursor-pointer p-0.5" :class="{ 'rotate-180': collapsed }" > - +
    diff --git a/apps/nuxt3-ssr/components/MainNavigation.vue b/apps/nuxt3-ssr/components/MainNavigation.vue index 955b789201..c0100af26e 100644 --- a/apps/nuxt3-ssr/components/MainNavigation.vue +++ b/apps/nuxt3-ssr/components/MainNavigation.vue @@ -44,7 +44,7 @@ const active = "underline"; :class="invert ? 'text-sub-menu' : 'text-menu'" > More - + diff --git a/apps/nuxt3-ssr/components/NetworkCard.vue b/apps/nuxt3-ssr/components/NetworkCard.vue index 51fd4bb25f..7131838678 100644 --- a/apps/nuxt3-ssr/components/NetworkCard.vue +++ b/apps/nuxt3-ssr/components/NetworkCard.vue @@ -107,7 +107,7 @@ const links = []; :href="link.url" class="text-blue-500 hover:underline hover:bg-blue-50 mr-7.5 hidden sm:inline-block" > - {{ + {{ link.title }} @@ -125,7 +125,7 @@ const links = []; :href="link.url" class="text-blue-500 hover:underline hover:bg-blue-50 mr-7.5 hidden sm:inline-block" > - {{ + {{ link.title }} diff --git a/apps/nuxt3-ssr/components/ReferenceCard.vue b/apps/nuxt3-ssr/components/ReferenceCard.vue index 06002c5c71..60c5c32285 100644 --- a/apps/nuxt3-ssr/components/ReferenceCard.vue +++ b/apps/nuxt3-ssr/components/ReferenceCard.vue @@ -60,7 +60,7 @@ withDefaults( :target="link.target || target" class="text-blue-500 hover:underline hover:bg-blue-50 mr-7.5 hidden sm:inline-block" > - {{ + {{ link.title }} diff --git a/apps/nuxt3-ssr/components/SearchResultsViewTabs.vue b/apps/nuxt3-ssr/components/SearchResultsViewTabs.vue index ab1a25b4f6..bd317561d7 100644 --- a/apps/nuxt3-ssr/components/SearchResultsViewTabs.vue +++ b/apps/nuxt3-ssr/components/SearchResultsViewTabs.vue @@ -55,7 +55,7 @@ function setRight() { @click="setLeft" class="flex items-center pr-5 tracking-widest uppercase rounded-l-full h-50px pl-7 font-display text-heading-xl" > - + {{ buttonLeftLabel }} @@ -64,7 +64,7 @@ function setRight() { @click="setRight" class="flex items-center pl-5 tracking-widest uppercase rounded-r-full h-50px pr-7 font-display text-heading-xl" > - + {{ buttonRightLabel }}
    diff --git a/apps/nuxt3-ssr/components/content/ContentBlockCollectionEvents.vue b/apps/nuxt3-ssr/components/content/ContentBlockCollectionEvents.vue index b2a891c4e6..aa4f9aa89b 100644 --- a/apps/nuxt3-ssr/components/content/ContentBlockCollectionEvents.vue +++ b/apps/nuxt3-ssr/components/content/ContentBlockCollectionEvents.vue @@ -31,7 +31,7 @@ defineProps({ - + diff --git a/apps/nuxt3-ssr/components/content/TreeNode.vue b/apps/nuxt3-ssr/components/content/TreeNode.vue index 80ff9d99f3..fcbf68c7d5 100644 --- a/apps/nuxt3-ssr/components/content/TreeNode.vue +++ b/apps/nuxt3-ssr/components/content/TreeNode.vue @@ -30,7 +30,7 @@ const toggleCollapse = () => { class="text-blue-500 mr-1 mt-0.5 rounded-full hover:bg-blue-50 hover:cursor-pointer p-0.5" :class="{ 'rotate-180': collapsed, 'ml-[-0.5rem]': isRootNode }" > - + { style="top: -0.35rem" :class="{ 'mr-2': isRootNode }" > - - +
    diff --git a/apps/nuxt3-ssr/components/filter/Ontology.vue b/apps/nuxt3-ssr/components/filter/Ontology.vue index 8911ec2aeb..d9222b1c17 100644 --- a/apps/nuxt3-ssr/components/filter/Ontology.vue +++ b/apps/nuxt3-ssr/components/filter/Ontology.vue @@ -124,8 +124,8 @@ function clearAll() { diff --git a/apps/nuxt3-ssr/components/harmonisation/HarmonisationTableCellAvailableIcon.vue b/apps/nuxt3-ssr/components/harmonisation/HarmonisationTableCellAvailableIcon.vue index a13ff5f09e..887fa990ed 100644 --- a/apps/nuxt3-ssr/components/harmonisation/HarmonisationTableCellAvailableIcon.vue +++ b/apps/nuxt3-ssr/components/harmonisation/HarmonisationTableCellAvailableIcon.vue @@ -10,7 +10,7 @@ const props = defineProps<{ :data-status="status" class="absolute inset-x-0 -top-px -bottom-px justify-center items-center inline-flex data-[status=available]:bg-blue-500 data-[status=available]:fill-white data-[status=available]:hover:bg-blue-700" > - + {{ status }}
    From b8cdfcecbb0cb2be9a1ac9c76dafdef2adaeeda4 Mon Sep 17 00:00:00 2001 From: connoratrug Date: Fri, 15 Nov 2024 11:14:18 +0100 Subject: [PATCH 15/25] text ssr false setup --- apps/ui/app.config.ts | 22 ++++++++++++++++++++++ apps/ui/layouts/default.vue | 2 +- apps/ui/nuxt.config.ts | 33 ++++++++++++++++++++++++++++----- 3 files changed, 51 insertions(+), 6 deletions(-) create mode 100644 apps/ui/app.config.ts diff --git a/apps/ui/app.config.ts b/apps/ui/app.config.ts new file mode 100644 index 0000000000..72f89e4568 --- /dev/null +++ b/apps/ui/app.config.ts @@ -0,0 +1,22 @@ +export default defineAppConfig({ + icon: { + size: '24px', // default size applied + class: 'icon', // default class applied + mode: 'svg', // default mode applied + aliases: { + 'caret-right': 'twc:caret-right', + 'caret-left': 'twc:caret-left', + 'caret-up': 'twc:caret-up', + 'caret-down': 'twc:caret-down', + 'arrow-left': 'twc:arrow-left', + 'arrow-right': 'twc:arrow-right', + 'arrow-up': 'twc:arrow-up', + 'arrow-down': 'twc:arrow-down', + 'collapsible-list-item': 'twc:collapsible-list-item', + 'collapsible-list-item-sub': 'twc:collapsible-list-item-sub', + 'info': 'twc:info', + 'user': 'twc:user', + 'cross': 'twc:cross', + } + } + }) \ No newline at end of file diff --git a/apps/ui/layouts/default.vue b/apps/ui/layouts/default.vue index 746acbb510..67f3fb467a 100644 --- a/apps/ui/layouts/default.vue +++ b/apps/ui/layouts/default.vue @@ -69,7 +69,7 @@ const navigation = computed(() => { diff --git a/apps/ui/nuxt.config.ts b/apps/ui/nuxt.config.ts index e0817c41a9..55751cc3cf 100644 --- a/apps/ui/nuxt.config.ts +++ b/apps/ui/nuxt.config.ts @@ -4,7 +4,7 @@ export default defineNuxtConfig({ ssr: false, devtools: { enabled: true }, runtimeConfig: { - logLevel: 4, + logLevel: 1, }, tailwindcss: { cssPath: '../tailwind-components/assets/css/main.css', @@ -27,9 +27,32 @@ export default defineNuxtConfig({ { path: "../tailwind-components/components", }, - { - path: "../tailwind-components/components/global/icons", - global: true, - }, ], + + icon: { + // provider: process.env.NUXT_PUBLIC_IS_SSR === 'false' ? 'server' : undefined, + customCollections: [ + { + prefix: 'twc', + dir: '../tailwind-components/assets/icons' + }, + ], + clientBundle: { + // list of icons to include in the client bundle + icons: [ + 'user', + ], + + // scan all components in the project and include icons + scan: { + globInclude: ['**/*.vue', '../tailwind-components/**/*.vue'], + }, + + // include all custom collections in the client bundle + includeCustomCollections: true, + + // guard for uncompressed bundle size, will fail the build if exceeds + sizeLimitKb: 256, + }, + }, }) \ No newline at end of file From 45bc4ad7c7bc786357ea28b5b7a7a93dc4024948 Mon Sep 17 00:00:00 2001 From: connoratrug Date: Fri, 15 Nov 2024 11:42:58 +0100 Subject: [PATCH 16/25] fix vert align --- apps/tailwind-components/components/Pagination.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/tailwind-components/components/Pagination.vue b/apps/tailwind-components/components/Pagination.vue index 01844b4c28..25786372b2 100644 --- a/apps/tailwind-components/components/Pagination.vue +++ b/apps/tailwind-components/components/Pagination.vue @@ -73,7 +73,7 @@ function changeCurrentPage(event: Event) { }" > Go to page {{ currentPage - 1 }} - +
  • @@ -107,7 +107,8 @@ function changeCurrentPage(event: Event) { }" > Go to page {{ currentPage + 1 }} - + +
  • From 4ec56cc4633f95d6ff75e06b6bcc2229e1751af8 Mon Sep 17 00:00:00 2001 From: connoratrug Date: Fri, 15 Nov 2024 11:54:36 +0100 Subject: [PATCH 17/25] update docs and cleanup deps --- apps/tailwind-components/README.md | 10 +--- apps/tailwind-components/package.json | 2 - apps/yarn.lock | 71 ++------------------------- 3 files changed, 6 insertions(+), 77 deletions(-) diff --git a/apps/tailwind-components/README.md b/apps/tailwind-components/README.md index 8a4a60d8b4..c4a4c66118 100644 --- a/apps/tailwind-components/README.md +++ b/apps/tailwind-components/README.md @@ -18,14 +18,8 @@ In the component folder, we've arranged the components into categories. To use t ### Icons -There are a number of icons available for use. See `/components/global/icons` for a complete list or visit the [Icons Showcase](https://emx2.dev.molgenis.org/apps/tailwind-components/#/Icons.story). All icons are sourced from [https://fonts.google.com/icons](https://fonts.google.com/icons) and [https://www.flaticon.com/authors/special/lineal](https://www.flaticon.com/authors/special/lineal). - -### Using icons - - -### Adding new icons - - +Icons are rendered using @nuxt/icon, for usage details and options see: https://nuxt.com/modules/icon +The custom (default) icons used in the component library are stored in the assets/icons folder ## Getting started diff --git a/apps/tailwind-components/package.json b/apps/tailwind-components/package.json index dbd9485032..de074729fe 100644 --- a/apps/tailwind-components/package.json +++ b/apps/tailwind-components/package.json @@ -15,7 +15,6 @@ "test": "vitest", "a11y:test": "pa11y-ci", "a11y:serve": "http-server .reports/ -p 1234", - "parse-icons": "node ../node_modules/svgo/bin/svgo -f ./assets/icons -o ./assets/minified-icons --config ./svgo.config.js && node ./scripts/create_vue_components_from_icons.js", "typecheck": "nuxi typecheck" }, "dependencies": { @@ -38,7 +37,6 @@ "pa11y-ci-reporter-html": "^7.0.0", "playwright-core": "1.48.0", "prettier": "2.8.8", - "svgo": "2.8.0", "typescript": "5.6.2", "vitest": "1.3.1", "vue-tsc": "2.1.6" diff --git a/apps/yarn.lock b/apps/yarn.lock index 007960de9f..5de53ca89a 100644 --- a/apps/yarn.lock +++ b/apps/yarn.lock @@ -4943,7 +4943,7 @@ css-declaration-sorter@^7.2.0: resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz#6dec1c9523bc4a643e088aab8f09e67a54961024" integrity sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow== -css-select@^4.1.3, css-select@^4.2.1: +css-select@^4.2.1: version "4.3.0" resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== @@ -4974,14 +4974,6 @@ css-to-react-native@^2.2.2: css-color-keywords "^1.0.0" postcss-value-parser "^3.3.0" -css-tree@^1.1.2, css-tree@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" - integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== - dependencies: - mdn-data "2.0.14" - source-map "^0.6.1" - css-tree@^2.0.1, css-tree@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20" @@ -5062,13 +5054,6 @@ cssnano@^7.0.6: cssnano-preset-default "^7.0.6" lilconfig "^3.1.2" -csso@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" - integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== - dependencies: - css-tree "^1.1.2" - csso@^5.0.5: version "5.0.5" resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" @@ -9057,11 +9042,6 @@ mdast-util-to-string@^3.1.0: dependencies: "@types/mdast" "^3.0.0" -mdn-data@2.0.14: - version "2.0.14" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" - integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== - mdn-data@2.0.28: version "2.0.28" resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" @@ -12523,11 +12503,6 @@ sprintf-js@~1.0.2: resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== -stable@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" - integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== - stackback@0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/stackback/-/stackback-0.0.2.tgz#1ac8a0d9483848d1695e418b6d031a3c3ce68e3b" @@ -12599,16 +12574,7 @@ string-env-interpolation@1.0.1: resolved "https://registry.yarnpkg.com/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz#ad4397ae4ac53fe6c91d1402ad6f6a52862c7152" integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12648,7 +12614,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -12669,13 +12635,6 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - strip-ansi@^7.0.1: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -12867,19 +12826,6 @@ svg-tags@^1.0.0: resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== -svgo@2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" - integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== - dependencies: - "@trysound/sax" "0.2.0" - commander "^7.2.0" - css-select "^4.1.3" - css-tree "^1.1.3" - csso "^4.2.0" - picocolors "^1.0.0" - stable "^0.1.8" - svgo@^3.2.0, svgo@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.2.tgz#ad58002652dffbb5986fc9716afe52d869ecbda8" @@ -14441,7 +14387,7 @@ wordwrap@^1.0.0, wordwrap@~1.0.0: resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -14458,15 +14404,6 @@ wrap-ansi@^3.0.1: string-width "^2.1.1" strip-ansi "^4.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From 4ecd1d5011ec03f2b1dcc99100bc1dd22352c019 Mon Sep 17 00:00:00 2001 From: connoratrug Date: Fri, 15 Nov 2024 12:15:12 +0100 Subject: [PATCH 18/25] fix case issue step1 of 2 --- apps/tailwind-components/assets/icons/Colorize.svg | 1 - apps/tailwind-components/assets/icons/People.svg | 1 - apps/tailwind-components/assets/icons/Schedule.svg | 5 ----- .../assets/icons/{arrow-down.svg => arrow-down1.svg} | 0 .../assets/icons/{arrow-left.svg => arrow-left1.svg} | 0 .../assets/icons/{arrow-right.svg => arrow-right1.svg} | 0 .../assets/icons/{arrow-up.svg => arrow-up1.svg} | 0 .../assets/icons/{caret-down.svg => caret-down1.svg} | 0 .../assets/icons/{caret-left.svg => caret-left1.svg} | 0 .../assets/icons/{caret-right.svg => caret-right1.svg} | 0 .../assets/icons/{caret-up.svg => caret-up1.svg} | 0 apps/tailwind-components/assets/icons/check.svg | 3 --- .../assets/icons/{Check.svg => check1.svg} | 0 apps/tailwind-components/assets/icons/checklist.svg | 1 - .../assets/icons/{Checklist.svg => checklist1.svg} | 0 apps/tailwind-components/assets/icons/clinical.svg | 1 - .../assets/icons/{Clinical.svg => clinical1.svg} | 0 ...ble-list-item-sub.svg => collapsible-list-item-sub1.svg} | 0 ...collapsible-list-item.svg => collapsible-list-item1.svg} | 0 .../assets/icons/{colorize.svg => colorize1.svg} | 0 apps/tailwind-components/assets/icons/completed.svg | 6 ------ .../assets/icons/{Completed.svg => completed1.svg} | 0 apps/tailwind-components/assets/icons/copy.svg | 3 --- .../assets/icons/{Copy.svg => copy1.svg} | 0 apps/tailwind-components/assets/icons/cross.svg | 3 --- .../assets/icons/{Cross.svg => cross1.svg} | 0 apps/tailwind-components/assets/icons/database.svg | 1 - .../assets/icons/{Database.svg => database1.svg} | 0 .../icons/{dataset-linked.svg => dataset-linked1.svg} | 0 apps/tailwind-components/assets/icons/dataset.svg | 1 - .../assets/icons/{Dataset.svg => dataset1.svg} | 0 .../assets/icons/{demography.svg => demography1.svg} | 0 .../assets/icons/{external-link.svg => external-link1.svg} | 0 apps/tailwind-components/assets/icons/filter.svg | 3 --- .../assets/icons/{Filter.svg => filter1.svg} | 0 apps/tailwind-components/assets/icons/globe.svg | 1 - .../assets/icons/{Globe.svg => globe1.svg} | 0 .../assets/icons/{groups.svg => groups1.svg} | 0 apps/tailwind-components/assets/icons/handshake.svg | 1 - .../assets/icons/{Handshake.svg => handshake1.svg} | 0 .../{harmonised-variables.svg => harmonised-variables1.svg} | 0 apps/tailwind-components/assets/icons/hub.svg | 1 - apps/tailwind-components/assets/icons/{Hub.svg => hub1.svg} | 0 .../{image-data-warehouse.svg => image-data-warehouse1.svg} | 0 .../icons/{image-diagram-2.svg => image-diagram-21.svg} | 0 .../assets/icons/{image-diagram.svg => image-diagram1.svg} | 0 .../icons/{image-lightbulb.svg => image-lightbulb1.svg} | 0 .../assets/icons/{image-link.svg => image-link1.svg} | 0 .../assets/icons/{image-table.svg => image-table1.svg} | 0 apps/tailwind-components/assets/icons/info.svg | 5 ----- .../assets/icons/{Info.svg => info1.svg} | 0 .../assets/icons/{institution.svg => institution1.svg} | 0 .../assets/icons/{list.svg => list1.svg} | 0 apps/tailwind-components/assets/icons/mouse.svg | 4 ---- .../assets/icons/{Mouse.svg => mouse1.svg} | 0 .../assets/icons/{patient-list.svg => patient-list1.svg} | 0 .../assets/icons/{people.svg => people1.svg} | 0 apps/tailwind-components/assets/icons/percent.svg | 4 ---- .../assets/icons/{Percent.svg => percent1.svg} | 0 .../assets/icons/{person.svg => person1.svg} | 0 apps/tailwind-components/assets/icons/plus.svg | 4 ---- .../assets/icons/{Plus.svg => plus1.svg} | 0 apps/tailwind-components/assets/icons/progressactivity.svg | 1 - .../icons/{ProgressActivity.svg => progressactivity1.svg} | 0 .../assets/icons/{schedule.svg => schedule1.svg} | 0 apps/tailwind-components/assets/icons/search.svg | 2 -- .../assets/icons/{Search.svg => search1.svg} | 0 .../assets/icons/{star-solid.svg => star-solid1.svg} | 0 apps/tailwind-components/assets/icons/star.svg | 3 --- .../assets/icons/{Star.svg => star1.svg} | 0 apps/tailwind-components/assets/icons/trash.svg | 3 --- .../assets/icons/{Trash.svg => trash1.svg} | 0 apps/tailwind-components/assets/icons/university.svg | 1 - .../assets/icons/{University.svg => university1.svg} | 0 apps/tailwind-components/assets/icons/user.svg | 4 ---- .../assets/icons/{User.svg => user1.svg} | 0 .../assets/icons/{view-compact.svg => view-compact1.svg} | 0 .../assets/icons/{view-normal.svg => view-normal1.svg} | 0 .../assets/icons/{view-table.svg => view-table1.svg} | 0 79 files changed, 63 deletions(-) delete mode 100644 apps/tailwind-components/assets/icons/Colorize.svg delete mode 100644 apps/tailwind-components/assets/icons/People.svg delete mode 100644 apps/tailwind-components/assets/icons/Schedule.svg rename apps/tailwind-components/assets/icons/{arrow-down.svg => arrow-down1.svg} (100%) rename apps/tailwind-components/assets/icons/{arrow-left.svg => arrow-left1.svg} (100%) rename apps/tailwind-components/assets/icons/{arrow-right.svg => arrow-right1.svg} (100%) rename apps/tailwind-components/assets/icons/{arrow-up.svg => arrow-up1.svg} (100%) rename apps/tailwind-components/assets/icons/{caret-down.svg => caret-down1.svg} (100%) rename apps/tailwind-components/assets/icons/{caret-left.svg => caret-left1.svg} (100%) rename apps/tailwind-components/assets/icons/{caret-right.svg => caret-right1.svg} (100%) rename apps/tailwind-components/assets/icons/{caret-up.svg => caret-up1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/check.svg rename apps/tailwind-components/assets/icons/{Check.svg => check1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/checklist.svg rename apps/tailwind-components/assets/icons/{Checklist.svg => checklist1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/clinical.svg rename apps/tailwind-components/assets/icons/{Clinical.svg => clinical1.svg} (100%) rename apps/tailwind-components/assets/icons/{collapsible-list-item-sub.svg => collapsible-list-item-sub1.svg} (100%) rename apps/tailwind-components/assets/icons/{collapsible-list-item.svg => collapsible-list-item1.svg} (100%) rename apps/tailwind-components/assets/icons/{colorize.svg => colorize1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/completed.svg rename apps/tailwind-components/assets/icons/{Completed.svg => completed1.svg} (100%) delete mode 100755 apps/tailwind-components/assets/icons/copy.svg rename apps/tailwind-components/assets/icons/{Copy.svg => copy1.svg} (100%) delete mode 100755 apps/tailwind-components/assets/icons/cross.svg rename apps/tailwind-components/assets/icons/{Cross.svg => cross1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/database.svg rename apps/tailwind-components/assets/icons/{Database.svg => database1.svg} (100%) rename apps/tailwind-components/assets/icons/{dataset-linked.svg => dataset-linked1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/dataset.svg rename apps/tailwind-components/assets/icons/{Dataset.svg => dataset1.svg} (100%) rename apps/tailwind-components/assets/icons/{demography.svg => demography1.svg} (100%) rename apps/tailwind-components/assets/icons/{external-link.svg => external-link1.svg} (100%) delete mode 100755 apps/tailwind-components/assets/icons/filter.svg rename apps/tailwind-components/assets/icons/{Filter.svg => filter1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/globe.svg rename apps/tailwind-components/assets/icons/{Globe.svg => globe1.svg} (100%) rename apps/tailwind-components/assets/icons/{groups.svg => groups1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/handshake.svg rename apps/tailwind-components/assets/icons/{Handshake.svg => handshake1.svg} (100%) rename apps/tailwind-components/assets/icons/{harmonised-variables.svg => harmonised-variables1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/hub.svg rename apps/tailwind-components/assets/icons/{Hub.svg => hub1.svg} (100%) rename apps/tailwind-components/assets/icons/{image-data-warehouse.svg => image-data-warehouse1.svg} (100%) rename apps/tailwind-components/assets/icons/{image-diagram-2.svg => image-diagram-21.svg} (100%) rename apps/tailwind-components/assets/icons/{image-diagram.svg => image-diagram1.svg} (100%) rename apps/tailwind-components/assets/icons/{image-lightbulb.svg => image-lightbulb1.svg} (100%) rename apps/tailwind-components/assets/icons/{image-link.svg => image-link1.svg} (100%) rename apps/tailwind-components/assets/icons/{image-table.svg => image-table1.svg} (100%) delete mode 100755 apps/tailwind-components/assets/icons/info.svg rename apps/tailwind-components/assets/icons/{Info.svg => info1.svg} (100%) rename apps/tailwind-components/assets/icons/{institution.svg => institution1.svg} (100%) rename apps/tailwind-components/assets/icons/{list.svg => list1.svg} (100%) delete mode 100755 apps/tailwind-components/assets/icons/mouse.svg rename apps/tailwind-components/assets/icons/{Mouse.svg => mouse1.svg} (100%) rename apps/tailwind-components/assets/icons/{patient-list.svg => patient-list1.svg} (100%) rename apps/tailwind-components/assets/icons/{people.svg => people1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/percent.svg rename apps/tailwind-components/assets/icons/{Percent.svg => percent1.svg} (100%) rename apps/tailwind-components/assets/icons/{person.svg => person1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/plus.svg rename apps/tailwind-components/assets/icons/{Plus.svg => plus1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/progressactivity.svg rename apps/tailwind-components/assets/icons/{ProgressActivity.svg => progressactivity1.svg} (100%) rename apps/tailwind-components/assets/icons/{schedule.svg => schedule1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/search.svg rename apps/tailwind-components/assets/icons/{Search.svg => search1.svg} (100%) rename apps/tailwind-components/assets/icons/{star-solid.svg => star-solid1.svg} (100%) delete mode 100755 apps/tailwind-components/assets/icons/star.svg rename apps/tailwind-components/assets/icons/{Star.svg => star1.svg} (100%) delete mode 100755 apps/tailwind-components/assets/icons/trash.svg rename apps/tailwind-components/assets/icons/{Trash.svg => trash1.svg} (100%) delete mode 100644 apps/tailwind-components/assets/icons/university.svg rename apps/tailwind-components/assets/icons/{University.svg => university1.svg} (100%) delete mode 100755 apps/tailwind-components/assets/icons/user.svg rename apps/tailwind-components/assets/icons/{User.svg => user1.svg} (100%) rename apps/tailwind-components/assets/icons/{view-compact.svg => view-compact1.svg} (100%) rename apps/tailwind-components/assets/icons/{view-normal.svg => view-normal1.svg} (100%) rename apps/tailwind-components/assets/icons/{view-table.svg => view-table1.svg} (100%) diff --git a/apps/tailwind-components/assets/icons/Colorize.svg b/apps/tailwind-components/assets/icons/Colorize.svg deleted file mode 100644 index 24eb7770dd..0000000000 --- a/apps/tailwind-components/assets/icons/Colorize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/People.svg b/apps/tailwind-components/assets/icons/People.svg deleted file mode 100644 index 5ee3fdfa0a..0000000000 --- a/apps/tailwind-components/assets/icons/People.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Schedule.svg b/apps/tailwind-components/assets/icons/Schedule.svg deleted file mode 100644 index 9b87a95803..0000000000 --- a/apps/tailwind-components/assets/icons/Schedule.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/arrow-down.svg b/apps/tailwind-components/assets/icons/arrow-down1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/arrow-down.svg rename to apps/tailwind-components/assets/icons/arrow-down1.svg diff --git a/apps/tailwind-components/assets/icons/arrow-left.svg b/apps/tailwind-components/assets/icons/arrow-left1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/arrow-left.svg rename to apps/tailwind-components/assets/icons/arrow-left1.svg diff --git a/apps/tailwind-components/assets/icons/arrow-right.svg b/apps/tailwind-components/assets/icons/arrow-right1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/arrow-right.svg rename to apps/tailwind-components/assets/icons/arrow-right1.svg diff --git a/apps/tailwind-components/assets/icons/arrow-up.svg b/apps/tailwind-components/assets/icons/arrow-up1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/arrow-up.svg rename to apps/tailwind-components/assets/icons/arrow-up1.svg diff --git a/apps/tailwind-components/assets/icons/caret-down.svg b/apps/tailwind-components/assets/icons/caret-down1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/caret-down.svg rename to apps/tailwind-components/assets/icons/caret-down1.svg diff --git a/apps/tailwind-components/assets/icons/caret-left.svg b/apps/tailwind-components/assets/icons/caret-left1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/caret-left.svg rename to apps/tailwind-components/assets/icons/caret-left1.svg diff --git a/apps/tailwind-components/assets/icons/caret-right.svg b/apps/tailwind-components/assets/icons/caret-right1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/caret-right.svg rename to apps/tailwind-components/assets/icons/caret-right1.svg diff --git a/apps/tailwind-components/assets/icons/caret-up.svg b/apps/tailwind-components/assets/icons/caret-up1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/caret-up.svg rename to apps/tailwind-components/assets/icons/caret-up1.svg diff --git a/apps/tailwind-components/assets/icons/check.svg b/apps/tailwind-components/assets/icons/check.svg deleted file mode 100644 index 9f79f5ef1b..0000000000 --- a/apps/tailwind-components/assets/icons/check.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Check.svg b/apps/tailwind-components/assets/icons/check1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Check.svg rename to apps/tailwind-components/assets/icons/check1.svg diff --git a/apps/tailwind-components/assets/icons/checklist.svg b/apps/tailwind-components/assets/icons/checklist.svg deleted file mode 100644 index 30602cd45b..0000000000 --- a/apps/tailwind-components/assets/icons/checklist.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Checklist.svg b/apps/tailwind-components/assets/icons/checklist1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Checklist.svg rename to apps/tailwind-components/assets/icons/checklist1.svg diff --git a/apps/tailwind-components/assets/icons/clinical.svg b/apps/tailwind-components/assets/icons/clinical.svg deleted file mode 100644 index 0797f33f6e..0000000000 --- a/apps/tailwind-components/assets/icons/clinical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Clinical.svg b/apps/tailwind-components/assets/icons/clinical1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Clinical.svg rename to apps/tailwind-components/assets/icons/clinical1.svg diff --git a/apps/tailwind-components/assets/icons/collapsible-list-item-sub.svg b/apps/tailwind-components/assets/icons/collapsible-list-item-sub1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/collapsible-list-item-sub.svg rename to apps/tailwind-components/assets/icons/collapsible-list-item-sub1.svg diff --git a/apps/tailwind-components/assets/icons/collapsible-list-item.svg b/apps/tailwind-components/assets/icons/collapsible-list-item1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/collapsible-list-item.svg rename to apps/tailwind-components/assets/icons/collapsible-list-item1.svg diff --git a/apps/tailwind-components/assets/icons/colorize.svg b/apps/tailwind-components/assets/icons/colorize1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/colorize.svg rename to apps/tailwind-components/assets/icons/colorize1.svg diff --git a/apps/tailwind-components/assets/icons/completed.svg b/apps/tailwind-components/assets/icons/completed.svg deleted file mode 100644 index 561b6311c2..0000000000 --- a/apps/tailwind-components/assets/icons/completed.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Completed.svg b/apps/tailwind-components/assets/icons/completed1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Completed.svg rename to apps/tailwind-components/assets/icons/completed1.svg diff --git a/apps/tailwind-components/assets/icons/copy.svg b/apps/tailwind-components/assets/icons/copy.svg deleted file mode 100755 index 5c79f18ea7..0000000000 --- a/apps/tailwind-components/assets/icons/copy.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/apps/tailwind-components/assets/icons/Copy.svg b/apps/tailwind-components/assets/icons/copy1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Copy.svg rename to apps/tailwind-components/assets/icons/copy1.svg diff --git a/apps/tailwind-components/assets/icons/cross.svg b/apps/tailwind-components/assets/icons/cross.svg deleted file mode 100755 index 93b3328149..0000000000 --- a/apps/tailwind-components/assets/icons/cross.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/apps/tailwind-components/assets/icons/Cross.svg b/apps/tailwind-components/assets/icons/cross1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Cross.svg rename to apps/tailwind-components/assets/icons/cross1.svg diff --git a/apps/tailwind-components/assets/icons/database.svg b/apps/tailwind-components/assets/icons/database.svg deleted file mode 100644 index edbf4bc1e2..0000000000 --- a/apps/tailwind-components/assets/icons/database.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Database.svg b/apps/tailwind-components/assets/icons/database1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Database.svg rename to apps/tailwind-components/assets/icons/database1.svg diff --git a/apps/tailwind-components/assets/icons/dataset-linked.svg b/apps/tailwind-components/assets/icons/dataset-linked1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/dataset-linked.svg rename to apps/tailwind-components/assets/icons/dataset-linked1.svg diff --git a/apps/tailwind-components/assets/icons/dataset.svg b/apps/tailwind-components/assets/icons/dataset.svg deleted file mode 100644 index 8a4585cb35..0000000000 --- a/apps/tailwind-components/assets/icons/dataset.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Dataset.svg b/apps/tailwind-components/assets/icons/dataset1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Dataset.svg rename to apps/tailwind-components/assets/icons/dataset1.svg diff --git a/apps/tailwind-components/assets/icons/demography.svg b/apps/tailwind-components/assets/icons/demography1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/demography.svg rename to apps/tailwind-components/assets/icons/demography1.svg diff --git a/apps/tailwind-components/assets/icons/external-link.svg b/apps/tailwind-components/assets/icons/external-link1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/external-link.svg rename to apps/tailwind-components/assets/icons/external-link1.svg diff --git a/apps/tailwind-components/assets/icons/filter.svg b/apps/tailwind-components/assets/icons/filter.svg deleted file mode 100755 index b885fb56ea..0000000000 --- a/apps/tailwind-components/assets/icons/filter.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/apps/tailwind-components/assets/icons/Filter.svg b/apps/tailwind-components/assets/icons/filter1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Filter.svg rename to apps/tailwind-components/assets/icons/filter1.svg diff --git a/apps/tailwind-components/assets/icons/globe.svg b/apps/tailwind-components/assets/icons/globe.svg deleted file mode 100644 index 31ba065932..0000000000 --- a/apps/tailwind-components/assets/icons/globe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Globe.svg b/apps/tailwind-components/assets/icons/globe1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Globe.svg rename to apps/tailwind-components/assets/icons/globe1.svg diff --git a/apps/tailwind-components/assets/icons/groups.svg b/apps/tailwind-components/assets/icons/groups1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/groups.svg rename to apps/tailwind-components/assets/icons/groups1.svg diff --git a/apps/tailwind-components/assets/icons/handshake.svg b/apps/tailwind-components/assets/icons/handshake.svg deleted file mode 100644 index ee579acfb8..0000000000 --- a/apps/tailwind-components/assets/icons/handshake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Handshake.svg b/apps/tailwind-components/assets/icons/handshake1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Handshake.svg rename to apps/tailwind-components/assets/icons/handshake1.svg diff --git a/apps/tailwind-components/assets/icons/harmonised-variables.svg b/apps/tailwind-components/assets/icons/harmonised-variables1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/harmonised-variables.svg rename to apps/tailwind-components/assets/icons/harmonised-variables1.svg diff --git a/apps/tailwind-components/assets/icons/hub.svg b/apps/tailwind-components/assets/icons/hub.svg deleted file mode 100644 index da3be4903f..0000000000 --- a/apps/tailwind-components/assets/icons/hub.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Hub.svg b/apps/tailwind-components/assets/icons/hub1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Hub.svg rename to apps/tailwind-components/assets/icons/hub1.svg diff --git a/apps/tailwind-components/assets/icons/image-data-warehouse.svg b/apps/tailwind-components/assets/icons/image-data-warehouse1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-data-warehouse.svg rename to apps/tailwind-components/assets/icons/image-data-warehouse1.svg diff --git a/apps/tailwind-components/assets/icons/image-diagram-2.svg b/apps/tailwind-components/assets/icons/image-diagram-21.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-diagram-2.svg rename to apps/tailwind-components/assets/icons/image-diagram-21.svg diff --git a/apps/tailwind-components/assets/icons/image-diagram.svg b/apps/tailwind-components/assets/icons/image-diagram1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-diagram.svg rename to apps/tailwind-components/assets/icons/image-diagram1.svg diff --git a/apps/tailwind-components/assets/icons/image-lightbulb.svg b/apps/tailwind-components/assets/icons/image-lightbulb1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-lightbulb.svg rename to apps/tailwind-components/assets/icons/image-lightbulb1.svg diff --git a/apps/tailwind-components/assets/icons/image-link.svg b/apps/tailwind-components/assets/icons/image-link1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-link.svg rename to apps/tailwind-components/assets/icons/image-link1.svg diff --git a/apps/tailwind-components/assets/icons/image-table.svg b/apps/tailwind-components/assets/icons/image-table1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-table.svg rename to apps/tailwind-components/assets/icons/image-table1.svg diff --git a/apps/tailwind-components/assets/icons/info.svg b/apps/tailwind-components/assets/icons/info.svg deleted file mode 100755 index bee18e9fa3..0000000000 --- a/apps/tailwind-components/assets/icons/info.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/apps/tailwind-components/assets/icons/Info.svg b/apps/tailwind-components/assets/icons/info1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Info.svg rename to apps/tailwind-components/assets/icons/info1.svg diff --git a/apps/tailwind-components/assets/icons/institution.svg b/apps/tailwind-components/assets/icons/institution1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/institution.svg rename to apps/tailwind-components/assets/icons/institution1.svg diff --git a/apps/tailwind-components/assets/icons/list.svg b/apps/tailwind-components/assets/icons/list1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/list.svg rename to apps/tailwind-components/assets/icons/list1.svg diff --git a/apps/tailwind-components/assets/icons/mouse.svg b/apps/tailwind-components/assets/icons/mouse.svg deleted file mode 100755 index c0233d2fae..0000000000 --- a/apps/tailwind-components/assets/icons/mouse.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/apps/tailwind-components/assets/icons/Mouse.svg b/apps/tailwind-components/assets/icons/mouse1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Mouse.svg rename to apps/tailwind-components/assets/icons/mouse1.svg diff --git a/apps/tailwind-components/assets/icons/patient-list.svg b/apps/tailwind-components/assets/icons/patient-list1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/patient-list.svg rename to apps/tailwind-components/assets/icons/patient-list1.svg diff --git a/apps/tailwind-components/assets/icons/people.svg b/apps/tailwind-components/assets/icons/people1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/people.svg rename to apps/tailwind-components/assets/icons/people1.svg diff --git a/apps/tailwind-components/assets/icons/percent.svg b/apps/tailwind-components/assets/icons/percent.svg deleted file mode 100644 index d7ffabf133..0000000000 --- a/apps/tailwind-components/assets/icons/percent.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Percent.svg b/apps/tailwind-components/assets/icons/percent1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Percent.svg rename to apps/tailwind-components/assets/icons/percent1.svg diff --git a/apps/tailwind-components/assets/icons/person.svg b/apps/tailwind-components/assets/icons/person1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/person.svg rename to apps/tailwind-components/assets/icons/person1.svg diff --git a/apps/tailwind-components/assets/icons/plus.svg b/apps/tailwind-components/assets/icons/plus.svg deleted file mode 100644 index 597a28beaf..0000000000 --- a/apps/tailwind-components/assets/icons/plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/apps/tailwind-components/assets/icons/Plus.svg b/apps/tailwind-components/assets/icons/plus1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Plus.svg rename to apps/tailwind-components/assets/icons/plus1.svg diff --git a/apps/tailwind-components/assets/icons/progressactivity.svg b/apps/tailwind-components/assets/icons/progressactivity.svg deleted file mode 100644 index 184d9cbcdf..0000000000 --- a/apps/tailwind-components/assets/icons/progressactivity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/ProgressActivity.svg b/apps/tailwind-components/assets/icons/progressactivity1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/ProgressActivity.svg rename to apps/tailwind-components/assets/icons/progressactivity1.svg diff --git a/apps/tailwind-components/assets/icons/schedule.svg b/apps/tailwind-components/assets/icons/schedule1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/schedule.svg rename to apps/tailwind-components/assets/icons/schedule1.svg diff --git a/apps/tailwind-components/assets/icons/search.svg b/apps/tailwind-components/assets/icons/search.svg deleted file mode 100644 index e7d1a40ed4..0000000000 --- a/apps/tailwind-components/assets/icons/search.svg +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/Search.svg b/apps/tailwind-components/assets/icons/search1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Search.svg rename to apps/tailwind-components/assets/icons/search1.svg diff --git a/apps/tailwind-components/assets/icons/star-solid.svg b/apps/tailwind-components/assets/icons/star-solid1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/star-solid.svg rename to apps/tailwind-components/assets/icons/star-solid1.svg diff --git a/apps/tailwind-components/assets/icons/star.svg b/apps/tailwind-components/assets/icons/star.svg deleted file mode 100755 index ca2393f254..0000000000 --- a/apps/tailwind-components/assets/icons/star.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/apps/tailwind-components/assets/icons/Star.svg b/apps/tailwind-components/assets/icons/star1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Star.svg rename to apps/tailwind-components/assets/icons/star1.svg diff --git a/apps/tailwind-components/assets/icons/trash.svg b/apps/tailwind-components/assets/icons/trash.svg deleted file mode 100755 index f52dbef5ee..0000000000 --- a/apps/tailwind-components/assets/icons/trash.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/apps/tailwind-components/assets/icons/Trash.svg b/apps/tailwind-components/assets/icons/trash1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/Trash.svg rename to apps/tailwind-components/assets/icons/trash1.svg diff --git a/apps/tailwind-components/assets/icons/university.svg b/apps/tailwind-components/assets/icons/university.svg deleted file mode 100644 index 1bb3397cb6..0000000000 --- a/apps/tailwind-components/assets/icons/university.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/tailwind-components/assets/icons/University.svg b/apps/tailwind-components/assets/icons/university1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/University.svg rename to apps/tailwind-components/assets/icons/university1.svg diff --git a/apps/tailwind-components/assets/icons/user.svg b/apps/tailwind-components/assets/icons/user.svg deleted file mode 100755 index a74eb8a178..0000000000 --- a/apps/tailwind-components/assets/icons/user.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/apps/tailwind-components/assets/icons/User.svg b/apps/tailwind-components/assets/icons/user1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/User.svg rename to apps/tailwind-components/assets/icons/user1.svg diff --git a/apps/tailwind-components/assets/icons/view-compact.svg b/apps/tailwind-components/assets/icons/view-compact1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/view-compact.svg rename to apps/tailwind-components/assets/icons/view-compact1.svg diff --git a/apps/tailwind-components/assets/icons/view-normal.svg b/apps/tailwind-components/assets/icons/view-normal1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/view-normal.svg rename to apps/tailwind-components/assets/icons/view-normal1.svg diff --git a/apps/tailwind-components/assets/icons/view-table.svg b/apps/tailwind-components/assets/icons/view-table1.svg similarity index 100% rename from apps/tailwind-components/assets/icons/view-table.svg rename to apps/tailwind-components/assets/icons/view-table1.svg From a9b72ac957340dcb71e2dce0e42759abc95dc726 Mon Sep 17 00:00:00 2001 From: connoratrug Date: Fri, 15 Nov 2024 12:16:10 +0100 Subject: [PATCH 19/25] fix case issue step2 of 2 --- .../assets/icons/{arrow-down1.svg => arrow-down.svg} | 0 .../assets/icons/{arrow-left1.svg => arrow-left.svg} | 0 .../assets/icons/{arrow-right1.svg => arrow-right.svg} | 0 .../assets/icons/{arrow-up1.svg => arrow-up.svg} | 0 .../assets/icons/{caret-down1.svg => caret-down.svg} | 0 .../assets/icons/{caret-left1.svg => caret-left.svg} | 0 .../assets/icons/{caret-right1.svg => caret-right.svg} | 0 .../assets/icons/{caret-up1.svg => caret-up.svg} | 0 apps/tailwind-components/assets/icons/{check1.svg => check.svg} | 0 .../assets/icons/{checklist1.svg => checklist.svg} | 0 .../assets/icons/{clinical1.svg => clinical.svg} | 0 ...llapsible-list-item-sub1.svg => collapsible-list-item-sub.svg} | 0 .../{collapsible-list-item1.svg => collapsible-list-item.svg} | 0 .../assets/icons/{colorize1.svg => colorize.svg} | 0 .../assets/icons/{completed1.svg => completed.svg} | 0 apps/tailwind-components/assets/icons/{copy1.svg => copy.svg} | 0 apps/tailwind-components/assets/icons/{cross1.svg => cross.svg} | 0 .../assets/icons/{database1.svg => database.svg} | 0 .../assets/icons/{dataset-linked1.svg => dataset-linked.svg} | 0 .../assets/icons/{dataset1.svg => dataset.svg} | 0 .../assets/icons/{demography1.svg => demography.svg} | 0 .../assets/icons/{external-link1.svg => external-link.svg} | 0 apps/tailwind-components/assets/icons/{filter1.svg => filter.svg} | 0 apps/tailwind-components/assets/icons/{globe1.svg => globe.svg} | 0 apps/tailwind-components/assets/icons/{groups1.svg => groups.svg} | 0 .../assets/icons/{handshake1.svg => handshake.svg} | 0 .../icons/{harmonised-variables1.svg => harmonised-variables.svg} | 0 apps/tailwind-components/assets/icons/{hub1.svg => hub.svg} | 0 .../icons/{image-data-warehouse1.svg => image-data-warehouse.svg} | 0 .../assets/icons/{image-diagram-21.svg => image-diagram-2.svg} | 0 .../assets/icons/{image-diagram1.svg => image-diagram.svg} | 0 .../assets/icons/{image-lightbulb1.svg => image-lightbulb.svg} | 0 .../assets/icons/{image-link1.svg => image-link.svg} | 0 .../assets/icons/{image-table1.svg => image-table.svg} | 0 apps/tailwind-components/assets/icons/{info1.svg => info.svg} | 0 .../assets/icons/{institution1.svg => institution.svg} | 0 apps/tailwind-components/assets/icons/{list1.svg => list.svg} | 0 apps/tailwind-components/assets/icons/{mouse1.svg => mouse.svg} | 0 .../assets/icons/{patient-list1.svg => patient-list.svg} | 0 apps/tailwind-components/assets/icons/{people1.svg => people.svg} | 0 .../assets/icons/{percent1.svg => percent.svg} | 0 apps/tailwind-components/assets/icons/{person1.svg => person.svg} | 0 apps/tailwind-components/assets/icons/{plus1.svg => plus.svg} | 0 .../assets/icons/{progressactivity1.svg => progressactivity.svg} | 0 .../assets/icons/{schedule1.svg => schedule.svg} | 0 apps/tailwind-components/assets/icons/{search1.svg => search.svg} | 0 .../assets/icons/{star-solid1.svg => star-solid.svg} | 0 apps/tailwind-components/assets/icons/{star1.svg => star.svg} | 0 apps/tailwind-components/assets/icons/{trash1.svg => trash.svg} | 0 .../assets/icons/{university1.svg => university.svg} | 0 apps/tailwind-components/assets/icons/{user1.svg => user.svg} | 0 .../assets/icons/{view-compact1.svg => view-compact.svg} | 0 .../assets/icons/{view-normal1.svg => view-normal.svg} | 0 .../assets/icons/{view-table1.svg => view-table.svg} | 0 54 files changed, 0 insertions(+), 0 deletions(-) rename apps/tailwind-components/assets/icons/{arrow-down1.svg => arrow-down.svg} (100%) rename apps/tailwind-components/assets/icons/{arrow-left1.svg => arrow-left.svg} (100%) rename apps/tailwind-components/assets/icons/{arrow-right1.svg => arrow-right.svg} (100%) rename apps/tailwind-components/assets/icons/{arrow-up1.svg => arrow-up.svg} (100%) rename apps/tailwind-components/assets/icons/{caret-down1.svg => caret-down.svg} (100%) rename apps/tailwind-components/assets/icons/{caret-left1.svg => caret-left.svg} (100%) rename apps/tailwind-components/assets/icons/{caret-right1.svg => caret-right.svg} (100%) rename apps/tailwind-components/assets/icons/{caret-up1.svg => caret-up.svg} (100%) rename apps/tailwind-components/assets/icons/{check1.svg => check.svg} (100%) rename apps/tailwind-components/assets/icons/{checklist1.svg => checklist.svg} (100%) rename apps/tailwind-components/assets/icons/{clinical1.svg => clinical.svg} (100%) rename apps/tailwind-components/assets/icons/{collapsible-list-item-sub1.svg => collapsible-list-item-sub.svg} (100%) rename apps/tailwind-components/assets/icons/{collapsible-list-item1.svg => collapsible-list-item.svg} (100%) rename apps/tailwind-components/assets/icons/{colorize1.svg => colorize.svg} (100%) rename apps/tailwind-components/assets/icons/{completed1.svg => completed.svg} (100%) rename apps/tailwind-components/assets/icons/{copy1.svg => copy.svg} (100%) rename apps/tailwind-components/assets/icons/{cross1.svg => cross.svg} (100%) rename apps/tailwind-components/assets/icons/{database1.svg => database.svg} (100%) rename apps/tailwind-components/assets/icons/{dataset-linked1.svg => dataset-linked.svg} (100%) rename apps/tailwind-components/assets/icons/{dataset1.svg => dataset.svg} (100%) rename apps/tailwind-components/assets/icons/{demography1.svg => demography.svg} (100%) rename apps/tailwind-components/assets/icons/{external-link1.svg => external-link.svg} (100%) rename apps/tailwind-components/assets/icons/{filter1.svg => filter.svg} (100%) rename apps/tailwind-components/assets/icons/{globe1.svg => globe.svg} (100%) rename apps/tailwind-components/assets/icons/{groups1.svg => groups.svg} (100%) rename apps/tailwind-components/assets/icons/{handshake1.svg => handshake.svg} (100%) rename apps/tailwind-components/assets/icons/{harmonised-variables1.svg => harmonised-variables.svg} (100%) rename apps/tailwind-components/assets/icons/{hub1.svg => hub.svg} (100%) rename apps/tailwind-components/assets/icons/{image-data-warehouse1.svg => image-data-warehouse.svg} (100%) rename apps/tailwind-components/assets/icons/{image-diagram-21.svg => image-diagram-2.svg} (100%) rename apps/tailwind-components/assets/icons/{image-diagram1.svg => image-diagram.svg} (100%) rename apps/tailwind-components/assets/icons/{image-lightbulb1.svg => image-lightbulb.svg} (100%) rename apps/tailwind-components/assets/icons/{image-link1.svg => image-link.svg} (100%) rename apps/tailwind-components/assets/icons/{image-table1.svg => image-table.svg} (100%) rename apps/tailwind-components/assets/icons/{info1.svg => info.svg} (100%) rename apps/tailwind-components/assets/icons/{institution1.svg => institution.svg} (100%) rename apps/tailwind-components/assets/icons/{list1.svg => list.svg} (100%) rename apps/tailwind-components/assets/icons/{mouse1.svg => mouse.svg} (100%) rename apps/tailwind-components/assets/icons/{patient-list1.svg => patient-list.svg} (100%) rename apps/tailwind-components/assets/icons/{people1.svg => people.svg} (100%) rename apps/tailwind-components/assets/icons/{percent1.svg => percent.svg} (100%) rename apps/tailwind-components/assets/icons/{person1.svg => person.svg} (100%) rename apps/tailwind-components/assets/icons/{plus1.svg => plus.svg} (100%) rename apps/tailwind-components/assets/icons/{progressactivity1.svg => progressactivity.svg} (100%) rename apps/tailwind-components/assets/icons/{schedule1.svg => schedule.svg} (100%) rename apps/tailwind-components/assets/icons/{search1.svg => search.svg} (100%) rename apps/tailwind-components/assets/icons/{star-solid1.svg => star-solid.svg} (100%) rename apps/tailwind-components/assets/icons/{star1.svg => star.svg} (100%) rename apps/tailwind-components/assets/icons/{trash1.svg => trash.svg} (100%) rename apps/tailwind-components/assets/icons/{university1.svg => university.svg} (100%) rename apps/tailwind-components/assets/icons/{user1.svg => user.svg} (100%) rename apps/tailwind-components/assets/icons/{view-compact1.svg => view-compact.svg} (100%) rename apps/tailwind-components/assets/icons/{view-normal1.svg => view-normal.svg} (100%) rename apps/tailwind-components/assets/icons/{view-table1.svg => view-table.svg} (100%) diff --git a/apps/tailwind-components/assets/icons/arrow-down1.svg b/apps/tailwind-components/assets/icons/arrow-down.svg similarity index 100% rename from apps/tailwind-components/assets/icons/arrow-down1.svg rename to apps/tailwind-components/assets/icons/arrow-down.svg diff --git a/apps/tailwind-components/assets/icons/arrow-left1.svg b/apps/tailwind-components/assets/icons/arrow-left.svg similarity index 100% rename from apps/tailwind-components/assets/icons/arrow-left1.svg rename to apps/tailwind-components/assets/icons/arrow-left.svg diff --git a/apps/tailwind-components/assets/icons/arrow-right1.svg b/apps/tailwind-components/assets/icons/arrow-right.svg similarity index 100% rename from apps/tailwind-components/assets/icons/arrow-right1.svg rename to apps/tailwind-components/assets/icons/arrow-right.svg diff --git a/apps/tailwind-components/assets/icons/arrow-up1.svg b/apps/tailwind-components/assets/icons/arrow-up.svg similarity index 100% rename from apps/tailwind-components/assets/icons/arrow-up1.svg rename to apps/tailwind-components/assets/icons/arrow-up.svg diff --git a/apps/tailwind-components/assets/icons/caret-down1.svg b/apps/tailwind-components/assets/icons/caret-down.svg similarity index 100% rename from apps/tailwind-components/assets/icons/caret-down1.svg rename to apps/tailwind-components/assets/icons/caret-down.svg diff --git a/apps/tailwind-components/assets/icons/caret-left1.svg b/apps/tailwind-components/assets/icons/caret-left.svg similarity index 100% rename from apps/tailwind-components/assets/icons/caret-left1.svg rename to apps/tailwind-components/assets/icons/caret-left.svg diff --git a/apps/tailwind-components/assets/icons/caret-right1.svg b/apps/tailwind-components/assets/icons/caret-right.svg similarity index 100% rename from apps/tailwind-components/assets/icons/caret-right1.svg rename to apps/tailwind-components/assets/icons/caret-right.svg diff --git a/apps/tailwind-components/assets/icons/caret-up1.svg b/apps/tailwind-components/assets/icons/caret-up.svg similarity index 100% rename from apps/tailwind-components/assets/icons/caret-up1.svg rename to apps/tailwind-components/assets/icons/caret-up.svg diff --git a/apps/tailwind-components/assets/icons/check1.svg b/apps/tailwind-components/assets/icons/check.svg similarity index 100% rename from apps/tailwind-components/assets/icons/check1.svg rename to apps/tailwind-components/assets/icons/check.svg diff --git a/apps/tailwind-components/assets/icons/checklist1.svg b/apps/tailwind-components/assets/icons/checklist.svg similarity index 100% rename from apps/tailwind-components/assets/icons/checklist1.svg rename to apps/tailwind-components/assets/icons/checklist.svg diff --git a/apps/tailwind-components/assets/icons/clinical1.svg b/apps/tailwind-components/assets/icons/clinical.svg similarity index 100% rename from apps/tailwind-components/assets/icons/clinical1.svg rename to apps/tailwind-components/assets/icons/clinical.svg diff --git a/apps/tailwind-components/assets/icons/collapsible-list-item-sub1.svg b/apps/tailwind-components/assets/icons/collapsible-list-item-sub.svg similarity index 100% rename from apps/tailwind-components/assets/icons/collapsible-list-item-sub1.svg rename to apps/tailwind-components/assets/icons/collapsible-list-item-sub.svg diff --git a/apps/tailwind-components/assets/icons/collapsible-list-item1.svg b/apps/tailwind-components/assets/icons/collapsible-list-item.svg similarity index 100% rename from apps/tailwind-components/assets/icons/collapsible-list-item1.svg rename to apps/tailwind-components/assets/icons/collapsible-list-item.svg diff --git a/apps/tailwind-components/assets/icons/colorize1.svg b/apps/tailwind-components/assets/icons/colorize.svg similarity index 100% rename from apps/tailwind-components/assets/icons/colorize1.svg rename to apps/tailwind-components/assets/icons/colorize.svg diff --git a/apps/tailwind-components/assets/icons/completed1.svg b/apps/tailwind-components/assets/icons/completed.svg similarity index 100% rename from apps/tailwind-components/assets/icons/completed1.svg rename to apps/tailwind-components/assets/icons/completed.svg diff --git a/apps/tailwind-components/assets/icons/copy1.svg b/apps/tailwind-components/assets/icons/copy.svg similarity index 100% rename from apps/tailwind-components/assets/icons/copy1.svg rename to apps/tailwind-components/assets/icons/copy.svg diff --git a/apps/tailwind-components/assets/icons/cross1.svg b/apps/tailwind-components/assets/icons/cross.svg similarity index 100% rename from apps/tailwind-components/assets/icons/cross1.svg rename to apps/tailwind-components/assets/icons/cross.svg diff --git a/apps/tailwind-components/assets/icons/database1.svg b/apps/tailwind-components/assets/icons/database.svg similarity index 100% rename from apps/tailwind-components/assets/icons/database1.svg rename to apps/tailwind-components/assets/icons/database.svg diff --git a/apps/tailwind-components/assets/icons/dataset-linked1.svg b/apps/tailwind-components/assets/icons/dataset-linked.svg similarity index 100% rename from apps/tailwind-components/assets/icons/dataset-linked1.svg rename to apps/tailwind-components/assets/icons/dataset-linked.svg diff --git a/apps/tailwind-components/assets/icons/dataset1.svg b/apps/tailwind-components/assets/icons/dataset.svg similarity index 100% rename from apps/tailwind-components/assets/icons/dataset1.svg rename to apps/tailwind-components/assets/icons/dataset.svg diff --git a/apps/tailwind-components/assets/icons/demography1.svg b/apps/tailwind-components/assets/icons/demography.svg similarity index 100% rename from apps/tailwind-components/assets/icons/demography1.svg rename to apps/tailwind-components/assets/icons/demography.svg diff --git a/apps/tailwind-components/assets/icons/external-link1.svg b/apps/tailwind-components/assets/icons/external-link.svg similarity index 100% rename from apps/tailwind-components/assets/icons/external-link1.svg rename to apps/tailwind-components/assets/icons/external-link.svg diff --git a/apps/tailwind-components/assets/icons/filter1.svg b/apps/tailwind-components/assets/icons/filter.svg similarity index 100% rename from apps/tailwind-components/assets/icons/filter1.svg rename to apps/tailwind-components/assets/icons/filter.svg diff --git a/apps/tailwind-components/assets/icons/globe1.svg b/apps/tailwind-components/assets/icons/globe.svg similarity index 100% rename from apps/tailwind-components/assets/icons/globe1.svg rename to apps/tailwind-components/assets/icons/globe.svg diff --git a/apps/tailwind-components/assets/icons/groups1.svg b/apps/tailwind-components/assets/icons/groups.svg similarity index 100% rename from apps/tailwind-components/assets/icons/groups1.svg rename to apps/tailwind-components/assets/icons/groups.svg diff --git a/apps/tailwind-components/assets/icons/handshake1.svg b/apps/tailwind-components/assets/icons/handshake.svg similarity index 100% rename from apps/tailwind-components/assets/icons/handshake1.svg rename to apps/tailwind-components/assets/icons/handshake.svg diff --git a/apps/tailwind-components/assets/icons/harmonised-variables1.svg b/apps/tailwind-components/assets/icons/harmonised-variables.svg similarity index 100% rename from apps/tailwind-components/assets/icons/harmonised-variables1.svg rename to apps/tailwind-components/assets/icons/harmonised-variables.svg diff --git a/apps/tailwind-components/assets/icons/hub1.svg b/apps/tailwind-components/assets/icons/hub.svg similarity index 100% rename from apps/tailwind-components/assets/icons/hub1.svg rename to apps/tailwind-components/assets/icons/hub.svg diff --git a/apps/tailwind-components/assets/icons/image-data-warehouse1.svg b/apps/tailwind-components/assets/icons/image-data-warehouse.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-data-warehouse1.svg rename to apps/tailwind-components/assets/icons/image-data-warehouse.svg diff --git a/apps/tailwind-components/assets/icons/image-diagram-21.svg b/apps/tailwind-components/assets/icons/image-diagram-2.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-diagram-21.svg rename to apps/tailwind-components/assets/icons/image-diagram-2.svg diff --git a/apps/tailwind-components/assets/icons/image-diagram1.svg b/apps/tailwind-components/assets/icons/image-diagram.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-diagram1.svg rename to apps/tailwind-components/assets/icons/image-diagram.svg diff --git a/apps/tailwind-components/assets/icons/image-lightbulb1.svg b/apps/tailwind-components/assets/icons/image-lightbulb.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-lightbulb1.svg rename to apps/tailwind-components/assets/icons/image-lightbulb.svg diff --git a/apps/tailwind-components/assets/icons/image-link1.svg b/apps/tailwind-components/assets/icons/image-link.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-link1.svg rename to apps/tailwind-components/assets/icons/image-link.svg diff --git a/apps/tailwind-components/assets/icons/image-table1.svg b/apps/tailwind-components/assets/icons/image-table.svg similarity index 100% rename from apps/tailwind-components/assets/icons/image-table1.svg rename to apps/tailwind-components/assets/icons/image-table.svg diff --git a/apps/tailwind-components/assets/icons/info1.svg b/apps/tailwind-components/assets/icons/info.svg similarity index 100% rename from apps/tailwind-components/assets/icons/info1.svg rename to apps/tailwind-components/assets/icons/info.svg diff --git a/apps/tailwind-components/assets/icons/institution1.svg b/apps/tailwind-components/assets/icons/institution.svg similarity index 100% rename from apps/tailwind-components/assets/icons/institution1.svg rename to apps/tailwind-components/assets/icons/institution.svg diff --git a/apps/tailwind-components/assets/icons/list1.svg b/apps/tailwind-components/assets/icons/list.svg similarity index 100% rename from apps/tailwind-components/assets/icons/list1.svg rename to apps/tailwind-components/assets/icons/list.svg diff --git a/apps/tailwind-components/assets/icons/mouse1.svg b/apps/tailwind-components/assets/icons/mouse.svg similarity index 100% rename from apps/tailwind-components/assets/icons/mouse1.svg rename to apps/tailwind-components/assets/icons/mouse.svg diff --git a/apps/tailwind-components/assets/icons/patient-list1.svg b/apps/tailwind-components/assets/icons/patient-list.svg similarity index 100% rename from apps/tailwind-components/assets/icons/patient-list1.svg rename to apps/tailwind-components/assets/icons/patient-list.svg diff --git a/apps/tailwind-components/assets/icons/people1.svg b/apps/tailwind-components/assets/icons/people.svg similarity index 100% rename from apps/tailwind-components/assets/icons/people1.svg rename to apps/tailwind-components/assets/icons/people.svg diff --git a/apps/tailwind-components/assets/icons/percent1.svg b/apps/tailwind-components/assets/icons/percent.svg similarity index 100% rename from apps/tailwind-components/assets/icons/percent1.svg rename to apps/tailwind-components/assets/icons/percent.svg diff --git a/apps/tailwind-components/assets/icons/person1.svg b/apps/tailwind-components/assets/icons/person.svg similarity index 100% rename from apps/tailwind-components/assets/icons/person1.svg rename to apps/tailwind-components/assets/icons/person.svg diff --git a/apps/tailwind-components/assets/icons/plus1.svg b/apps/tailwind-components/assets/icons/plus.svg similarity index 100% rename from apps/tailwind-components/assets/icons/plus1.svg rename to apps/tailwind-components/assets/icons/plus.svg diff --git a/apps/tailwind-components/assets/icons/progressactivity1.svg b/apps/tailwind-components/assets/icons/progressactivity.svg similarity index 100% rename from apps/tailwind-components/assets/icons/progressactivity1.svg rename to apps/tailwind-components/assets/icons/progressactivity.svg diff --git a/apps/tailwind-components/assets/icons/schedule1.svg b/apps/tailwind-components/assets/icons/schedule.svg similarity index 100% rename from apps/tailwind-components/assets/icons/schedule1.svg rename to apps/tailwind-components/assets/icons/schedule.svg diff --git a/apps/tailwind-components/assets/icons/search1.svg b/apps/tailwind-components/assets/icons/search.svg similarity index 100% rename from apps/tailwind-components/assets/icons/search1.svg rename to apps/tailwind-components/assets/icons/search.svg diff --git a/apps/tailwind-components/assets/icons/star-solid1.svg b/apps/tailwind-components/assets/icons/star-solid.svg similarity index 100% rename from apps/tailwind-components/assets/icons/star-solid1.svg rename to apps/tailwind-components/assets/icons/star-solid.svg diff --git a/apps/tailwind-components/assets/icons/star1.svg b/apps/tailwind-components/assets/icons/star.svg similarity index 100% rename from apps/tailwind-components/assets/icons/star1.svg rename to apps/tailwind-components/assets/icons/star.svg diff --git a/apps/tailwind-components/assets/icons/trash1.svg b/apps/tailwind-components/assets/icons/trash.svg similarity index 100% rename from apps/tailwind-components/assets/icons/trash1.svg rename to apps/tailwind-components/assets/icons/trash.svg diff --git a/apps/tailwind-components/assets/icons/university1.svg b/apps/tailwind-components/assets/icons/university.svg similarity index 100% rename from apps/tailwind-components/assets/icons/university1.svg rename to apps/tailwind-components/assets/icons/university.svg diff --git a/apps/tailwind-components/assets/icons/user1.svg b/apps/tailwind-components/assets/icons/user.svg similarity index 100% rename from apps/tailwind-components/assets/icons/user1.svg rename to apps/tailwind-components/assets/icons/user.svg diff --git a/apps/tailwind-components/assets/icons/view-compact1.svg b/apps/tailwind-components/assets/icons/view-compact.svg similarity index 100% rename from apps/tailwind-components/assets/icons/view-compact1.svg rename to apps/tailwind-components/assets/icons/view-compact.svg diff --git a/apps/tailwind-components/assets/icons/view-normal1.svg b/apps/tailwind-components/assets/icons/view-normal.svg similarity index 100% rename from apps/tailwind-components/assets/icons/view-normal1.svg rename to apps/tailwind-components/assets/icons/view-normal.svg diff --git a/apps/tailwind-components/assets/icons/view-table1.svg b/apps/tailwind-components/assets/icons/view-table.svg similarity index 100% rename from apps/tailwind-components/assets/icons/view-table1.svg rename to apps/tailwind-components/assets/icons/view-table.svg From aa73bb3dba1fe49f3457b505fc7c5390e6fe23fe Mon Sep 17 00:00:00 2001 From: connoratrug Date: Tue, 19 Nov 2024 10:24:30 +0100 Subject: [PATCH 20/25] chore: merge with master --- apps/yarn.lock | 2619 ++++++++++++++++++++++++------------------------ 1 file changed, 1323 insertions(+), 1296 deletions(-) diff --git a/apps/yarn.lock b/apps/yarn.lock index 5de53ca89a..6c16f9145e 100644 --- a/apps/yarn.lock +++ b/apps/yarn.lock @@ -40,15 +40,7 @@ dependencies: node-fetch "^2.6.1" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" - integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== - dependencies: - "@babel/highlight" "^7.24.7" - picocolors "^1.0.0" - -"@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0": version "7.26.2" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== @@ -57,38 +49,12 @@ js-tokens "^4.0.0" picocolors "^1.0.0" -"@babel/compat-data@^7.25.2": - version "7.25.4" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.4.tgz#7d2a80ce229890edcf4cc259d4d696cb4dae2fcb" - integrity sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ== - "@babel/compat-data@^7.25.9": version "7.26.2" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e" integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg== -"@babel/core@^7.23.0", "@babel/core@^7.23.7", "@babel/core@^7.24.7": - version "7.25.2" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77" - integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.24.7" - "@babel/generator" "^7.25.0" - "@babel/helper-compilation-targets" "^7.25.2" - "@babel/helper-module-transforms" "^7.25.2" - "@babel/helpers" "^7.25.0" - "@babel/parser" "^7.25.0" - "@babel/template" "^7.25.0" - "@babel/traverse" "^7.25.2" - "@babel/types" "^7.25.2" - convert-source-map "^2.0.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.3" - semver "^6.3.1" - -"@babel/core@^7.25.7": +"@babel/core@^7.23.0", "@babel/core@^7.25.7", "@babel/core@^7.26.0": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== @@ -109,17 +75,7 @@ json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.12.10", "@babel/generator@^7.25.0", "@babel/generator@^7.25.6": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.6.tgz#0df1ad8cb32fe4d2b01d8bf437f153d19342a87c" - integrity sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw== - dependencies: - "@babel/types" "^7.25.6" - "@jridgewell/gen-mapping" "^0.3.5" - "@jridgewell/trace-mapping" "^0.3.25" - jsesc "^2.5.1" - -"@babel/generator@^7.25.9", "@babel/generator@^7.26.0": +"@babel/generator@^7.12.10", "@babel/generator@^7.25.9", "@babel/generator@^7.26.0": version "7.26.2" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f" integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw== @@ -130,23 +86,12 @@ "@jridgewell/trace-mapping" "^0.3.25" jsesc "^3.0.2" -"@babel/helper-annotate-as-pure@^7.22.5", "@babel/helper-annotate-as-pure@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" - integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== - dependencies: - "@babel/types" "^7.24.7" - -"@babel/helper-compilation-targets@^7.25.2": - version "7.25.2" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz#e1d9410a90974a3a5a66e84ff55ef62e3c02d06c" - integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw== +"@babel/helper-annotate-as-pure@^7.22.5", "@babel/helper-annotate-as-pure@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz#d8eac4d2dc0d7b6e11fa6e535332e0d3184f06b4" + integrity sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g== dependencies: - "@babel/compat-data" "^7.25.2" - "@babel/helper-validator-option" "^7.24.8" - browserslist "^4.23.1" - lru-cache "^5.1.1" - semver "^6.3.1" + "@babel/types" "^7.25.9" "@babel/helper-compilation-targets@^7.25.9": version "7.25.9" @@ -159,36 +104,28 @@ lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.24.7", "@babel/helper-create-class-features-plugin@^7.25.0": - version "7.25.4" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz#57eaf1af38be4224a9d9dd01ddde05b741f50e14" - integrity sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.24.7" - "@babel/helper-member-expression-to-functions" "^7.24.8" - "@babel/helper-optimise-call-expression" "^7.24.7" - "@babel/helper-replace-supers" "^7.25.0" - "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" - "@babel/traverse" "^7.25.4" +"@babel/helper-create-class-features-plugin@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz#7644147706bb90ff613297d49ed5266bde729f83" + integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-member-expression-to-functions" "^7.25.9" + "@babel/helper-optimise-call-expression" "^7.25.9" + "@babel/helper-replace-supers" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/traverse" "^7.25.9" semver "^6.3.1" -"@babel/helper-member-expression-to-functions@^7.24.8": - version "7.24.8" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz#6155e079c913357d24a4c20480db7c712a5c3fb6" - integrity sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA== - dependencies: - "@babel/traverse" "^7.24.8" - "@babel/types" "^7.24.8" - -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.22.5", "@babel/helper-module-imports@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b" - integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== +"@babel/helper-member-expression-to-functions@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz#9dfffe46f727005a5ea29051ac835fb735e4c1a3" + integrity sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ== dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" -"@babel/helper-module-imports@^7.25.9": +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.22.5", "@babel/helper-module-imports@^7.24.7", "@babel/helper-module-imports@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== @@ -196,17 +133,7 @@ "@babel/traverse" "^7.25.9" "@babel/types" "^7.25.9" -"@babel/helper-module-transforms@^7.24.8", "@babel/helper-module-transforms@^7.25.2": - version "7.25.2" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz#ee713c29768100f2776edf04d4eb23b8d27a66e6" - integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ== - dependencies: - "@babel/helper-module-imports" "^7.24.7" - "@babel/helper-simple-access" "^7.24.7" - "@babel/helper-validator-identifier" "^7.24.7" - "@babel/traverse" "^7.25.2" - -"@babel/helper-module-transforms@^7.26.0": +"@babel/helper-module-transforms@^7.25.9", "@babel/helper-module-transforms@^7.26.0": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== @@ -215,81 +142,58 @@ "@babel/helper-validator-identifier" "^7.25.9" "@babel/traverse" "^7.25.9" -"@babel/helper-optimise-call-expression@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f" - integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A== +"@babel/helper-optimise-call-expression@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz#3324ae50bae7e2ab3c33f60c9a877b6a0146b54e" + integrity sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ== dependencies: - "@babel/types" "^7.24.7" + "@babel/types" "^7.25.9" -"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8": - version "7.24.8" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz#94ee67e8ec0e5d44ea7baeb51e571bd26af07878" - integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg== +"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.24.8", "@babel/helper-plugin-utils@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46" + integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== -"@babel/helper-replace-supers@^7.25.0": - version "7.25.0" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz#ff44deac1c9f619523fe2ca1fd650773792000a9" - integrity sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg== +"@babel/helper-replace-supers@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz#ba447224798c3da3f8713fc272b145e33da6a5c5" + integrity sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ== dependencies: - "@babel/helper-member-expression-to-functions" "^7.24.8" - "@babel/helper-optimise-call-expression" "^7.24.7" - "@babel/traverse" "^7.25.0" + "@babel/helper-member-expression-to-functions" "^7.25.9" + "@babel/helper-optimise-call-expression" "^7.25.9" + "@babel/traverse" "^7.25.9" -"@babel/helper-simple-access@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3" - integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg== +"@babel/helper-simple-access@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz#6d51783299884a2c74618d6ef0f86820ec2e7739" + integrity sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q== dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" -"@babel/helper-skip-transparent-expression-wrappers@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9" - integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ== +"@babel/helper-skip-transparent-expression-wrappers@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz#0b2e1b62d560d6b1954893fd2b705dc17c91f0c9" + integrity sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA== dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/helper-string-parser@^7.24.8": - version "7.24.8" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d" - integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ== + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" "@babel/helper-string-parser@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== -"@babel/helper-validator-identifier@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" - integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== - "@babel/helper-validator-identifier@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== -"@babel/helper-validator-option@^7.24.8": - version "7.24.8" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d" - integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q== - "@babel/helper-validator-option@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== -"@babel/helpers@^7.25.0": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.6.tgz#57ee60141829ba2e102f30711ffe3afab357cc60" - integrity sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q== - dependencies: - "@babel/template" "^7.25.0" - "@babel/types" "^7.25.6" - "@babel/helpers@^7.26.0": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" @@ -298,24 +202,7 @@ "@babel/template" "^7.25.9" "@babel/types" "^7.26.0" -"@babel/highlight@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" - integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== - dependencies: - "@babel/helper-validator-identifier" "^7.24.7" - chalk "^2.4.2" - js-tokens "^4.0.0" - picocolors "^1.0.0" - -"@babel/parser@^7.12.0", "@babel/parser@^7.25.0", "@babel/parser@^7.25.3", "@babel/parser@^7.25.4", "@babel/parser@^7.25.6": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.6.tgz#85660c5ef388cbbf6e3d2a694ee97a38f18afe2f" - integrity sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q== - dependencies: - "@babel/types" "^7.25.6" - -"@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2": +"@babel/parser@^7.12.0", "@babel/parser@^7.25.3", "@babel/parser@^7.25.4", "@babel/parser@^7.25.6", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2": version "7.26.2" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11" integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ== @@ -323,27 +210,27 @@ "@babel/types" "^7.26.0" "@babel/plugin-proposal-decorators@^7.23.0": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz#7e2dcfeda4a42596b57c4c9de1f5176bbfc532e3" - integrity sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz#8680707f943d1a3da2cd66b948179920f097e254" + integrity sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g== dependencies: - "@babel/helper-create-class-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-decorators" "^7.24.7" + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-syntax-decorators" "^7.25.9" -"@babel/plugin-syntax-decorators@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz#e4f8a0a8778ccec669611cd5aed1ed8e6e3a6fcf" - integrity sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ== +"@babel/plugin-syntax-decorators@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz#986b4ca8b7b5df3f67cee889cedeffc2e2bf14b3" + integrity sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg== dependencies: - "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz#6d4c78f042db0e82fd6436cd65fec5dc78ad2bde" - integrity sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ== + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7" + integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A== dependencies: - "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" @@ -353,66 +240,52 @@ "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-jsx@^7.22.5", "@babel/plugin-syntax-jsx@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz#39a1fa4a7e3d3d7f34e2acc6be585b718d30e02d" - integrity sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz#a34313a178ea56f1951599b929c1ceacee719290" + integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA== dependencies: - "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-syntax-typescript@^7.24.7": - version "7.25.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz#04db9ce5a9043d9c635e75ae7969a2cd50ca97ff" - integrity sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg== +"@babel/plugin-syntax-typescript@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz#67dda2b74da43727cf21d46cf9afef23f4365399" + integrity sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ== dependencies: - "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-modules-commonjs@^7.2.0": - version "7.24.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz#ab6421e564b717cb475d6fff70ae7f103536ea3c" - integrity sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.9.tgz#d165c8c569a080baf5467bda88df6425fc060686" + integrity sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg== dependencies: - "@babel/helper-module-transforms" "^7.24.8" - "@babel/helper-plugin-utils" "^7.24.8" - "@babel/helper-simple-access" "^7.24.7" + "@babel/helper-module-transforms" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-simple-access" "^7.25.9" -"@babel/plugin-transform-typescript@^7.22.15", "@babel/plugin-transform-typescript@^7.24.7": - version "7.25.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz#237c5d10de6d493be31637c6b9fa30b6c5461add" - integrity sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A== +"@babel/plugin-transform-typescript@^7.22.15", "@babel/plugin-transform-typescript@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.9.tgz#69267905c2b33c2ac6d8fe765e9dc2ddc9df3849" + integrity sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.24.7" - "@babel/helper-create-class-features-plugin" "^7.25.0" - "@babel/helper-plugin-utils" "^7.24.8" - "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" - "@babel/plugin-syntax-typescript" "^7.24.7" + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/plugin-syntax-typescript" "^7.25.9" "@babel/runtime@^7.1.2", "@babel/runtime@^7.15.4", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.6.tgz#9afc3289f7184d8d7f98b099884c26317b9264d2" - integrity sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ== + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1" + integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw== dependencies: regenerator-runtime "^0.14.0" -"@babel/standalone@^7.23.8": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.25.6.tgz#b81f6cefd3b667ae5334979d01b3633c70bb231f" - integrity sha512-Kf2ZcZVqsKbtYhlA7sP0z5A3q5hmCVYMKMWRWNK/5OVwHIve3JY1djVRmIVAx8FMueLIfZGKQDIILK2w8zO4mg== - "@babel/standalone@^7.25.7": version "7.26.2" resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.26.2.tgz#a1fdf2d477a1f3d2828f0551b5dc14c44d4e127f" integrity sha512-i2VbegsRfwa9yq3xmfDX3tG2yh9K0cCqwpSyVG2nPxifh0EOnucAZUeO/g4lW2Zfg03aPJNtPfxQbDHzXc7H+w== -"@babel/template@^7.25.0": - version "7.25.0" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a" - integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q== - dependencies: - "@babel/code-frame" "^7.24.7" - "@babel/parser" "^7.25.0" - "@babel/types" "^7.25.0" - -"@babel/template@^7.25.9": +"@babel/template@^7.25.0", "@babel/template@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== @@ -421,20 +294,7 @@ "@babel/parser" "^7.25.9" "@babel/types" "^7.25.9" -"@babel/traverse@^7.0.0", "@babel/traverse@^7.12.0", "@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.4", "@babel/traverse@^7.25.6": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.6.tgz#04fad980e444f182ecf1520504941940a90fea41" - integrity sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ== - dependencies: - "@babel/code-frame" "^7.24.7" - "@babel/generator" "^7.25.6" - "@babel/parser" "^7.25.6" - "@babel/template" "^7.25.0" - "@babel/types" "^7.25.6" - debug "^4.3.1" - globals "^11.1.0" - -"@babel/traverse@^7.25.9": +"@babel/traverse@^7.0.0", "@babel/traverse@^7.12.0", "@babel/traverse@^7.25.6", "@babel/traverse@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84" integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw== @@ -447,16 +307,7 @@ debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.23.6", "@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.4", "@babel/types@^7.25.6", "@babel/types@^7.3.4": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.6.tgz#893942ddb858f32ae7a004ec9d3a76b3463ef8e6" - integrity sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw== - dependencies: - "@babel/helper-string-parser" "^7.24.8" - "@babel/helper-validator-identifier" "^7.24.7" - to-fast-properties "^2.0.0" - -"@babel/types@^7.25.7", "@babel/types@^7.25.9", "@babel/types@^7.26.0": +"@babel/types@^7.25.4", "@babel/types@^7.25.6", "@babel/types@^7.25.7", "@babel/types@^7.25.8", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.3.4": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff" integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA== @@ -523,11 +374,6 @@ resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== -"@esbuild/aix-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" - integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== - "@esbuild/aix-ppc64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" @@ -538,16 +384,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz#51299374de171dbd80bb7d838e1cfce9af36f353" integrity sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ== +"@esbuild/aix-ppc64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz#b57697945b50e99007b4c2521507dc613d4a648c" + integrity sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw== + "@esbuild/android-arm64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz#984b4f9c8d0377443cc2dfcef266d02244593622" integrity sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ== -"@esbuild/android-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" - integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== - "@esbuild/android-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" @@ -558,16 +404,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz#58565291a1fe548638adb9c584237449e5e14018" integrity sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw== +"@esbuild/android-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz#1add7e0af67acefd556e407f8497e81fddad79c0" + integrity sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w== + "@esbuild/android-arm@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz#fedb265bc3a589c84cc11f810804f234947c3682" integrity sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw== -"@esbuild/android-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" - integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== - "@esbuild/android-arm@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" @@ -578,16 +424,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.1.tgz#5eb8c652d4c82a2421e3395b808e6d9c42c862ee" integrity sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ== +"@esbuild/android-arm@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.24.0.tgz#ab7263045fa8e090833a8e3c393b60d59a789810" + integrity sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew== + "@esbuild/android-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz#35cf419c4cfc8babe8893d296cd990e9e9f756f2" integrity sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg== -"@esbuild/android-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" - integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== - "@esbuild/android-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" @@ -598,16 +444,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.1.tgz#ae19d665d2f06f0f48a6ac9a224b3f672e65d517" integrity sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg== +"@esbuild/android-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.24.0.tgz#e8f8b196cfdfdd5aeaebbdb0110983460440e705" + integrity sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ== + "@esbuild/darwin-arm64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz#08172cbeccf95fbc383399a7f39cfbddaeb0d7c1" integrity sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA== -"@esbuild/darwin-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" - integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== - "@esbuild/darwin-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" @@ -618,16 +464,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz#05b17f91a87e557b468a9c75e9d85ab10c121b16" integrity sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q== +"@esbuild/darwin-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz#2d0d9414f2acbffd2d86e98253914fca603a53dd" + integrity sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw== + "@esbuild/darwin-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz#d70d5790d8bf475556b67d0f8b7c5bdff053d85d" integrity sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ== -"@esbuild/darwin-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" - integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== - "@esbuild/darwin-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" @@ -638,16 +484,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz#c58353b982f4e04f0d022284b8ba2733f5ff0931" integrity sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw== +"@esbuild/darwin-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz#33087aab31a1eb64c89daf3d2cf8ce1775656107" + integrity sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA== + "@esbuild/freebsd-arm64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz#98755cd12707f93f210e2494d6a4b51b96977f54" integrity sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw== -"@esbuild/freebsd-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" - integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== - "@esbuild/freebsd-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" @@ -658,16 +504,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz#f9220dc65f80f03635e1ef96cfad5da1f446f3bc" integrity sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA== +"@esbuild/freebsd-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz#bb76e5ea9e97fa3c753472f19421075d3a33e8a7" + integrity sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA== + "@esbuild/freebsd-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz#c1eb2bff03915f87c29cece4c1a7fa1f423b066e" integrity sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ== -"@esbuild/freebsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" - integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== - "@esbuild/freebsd-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" @@ -678,16 +524,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz#69bd8511fa013b59f0226d1609ac43f7ce489730" integrity sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g== +"@esbuild/freebsd-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz#e0e2ce9249fdf6ee29e5dc3d420c7007fa579b93" + integrity sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ== + "@esbuild/linux-arm64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz#bad4238bd8f4fc25b5a021280c770ab5fc3a02a0" integrity sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA== -"@esbuild/linux-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" - integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== - "@esbuild/linux-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" @@ -698,16 +544,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz#8050af6d51ddb388c75653ef9871f5ccd8f12383" integrity sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g== +"@esbuild/linux-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz#d1b2aa58085f73ecf45533c07c82d81235388e75" + integrity sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g== + "@esbuild/linux-arm@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz#3e617c61f33508a27150ee417543c8ab5acc73b0" integrity sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg== -"@esbuild/linux-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" - integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== - "@esbuild/linux-arm@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" @@ -718,16 +564,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz#ecaabd1c23b701070484990db9a82f382f99e771" integrity sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ== +"@esbuild/linux-arm@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz#8e4915df8ea3e12b690a057e77a47b1d5935ef6d" + integrity sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw== + "@esbuild/linux-ia32@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz#699391cccba9aee6019b7f9892eb99219f1570a7" integrity sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA== -"@esbuild/linux-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" - integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== - "@esbuild/linux-ia32@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" @@ -738,16 +584,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz#3ed2273214178109741c09bd0687098a0243b333" integrity sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ== +"@esbuild/linux-ia32@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz#8200b1110666c39ab316572324b7af63d82013fb" + integrity sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA== + "@esbuild/linux-loong64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz#e6fccb7aac178dd2ffb9860465ac89d7f23b977d" integrity sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg== -"@esbuild/linux-loong64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" - integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== - "@esbuild/linux-loong64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" @@ -758,16 +604,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz#a0fdf440b5485c81b0fbb316b08933d217f5d3ac" integrity sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw== +"@esbuild/linux-loong64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz#6ff0c99cf647504df321d0640f0d32e557da745c" + integrity sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g== + "@esbuild/linux-mips64el@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz#eeff3a937de9c2310de30622a957ad1bd9183231" integrity sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ== -"@esbuild/linux-mips64el@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" - integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== - "@esbuild/linux-mips64el@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" @@ -778,16 +624,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz#e11a2806346db8375b18f5e104c5a9d4e81807f6" integrity sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q== +"@esbuild/linux-mips64el@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz#3f720ccd4d59bfeb4c2ce276a46b77ad380fa1f3" + integrity sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA== + "@esbuild/linux-ppc64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz#2f7156bde20b01527993e6881435ad79ba9599fb" integrity sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA== -"@esbuild/linux-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" - integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== - "@esbuild/linux-ppc64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" @@ -798,16 +644,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz#06a2744c5eaf562b1a90937855b4d6cf7c75ec96" integrity sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw== +"@esbuild/linux-ppc64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz#9d6b188b15c25afd2e213474bf5f31e42e3aa09e" + integrity sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ== + "@esbuild/linux-riscv64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz#6628389f210123d8b4743045af8caa7d4ddfc7a6" integrity sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A== -"@esbuild/linux-riscv64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" - integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== - "@esbuild/linux-riscv64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" @@ -818,16 +664,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz#65b46a2892fc0d1af4ba342af3fe0fa4a8fe08e7" integrity sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA== +"@esbuild/linux-riscv64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz#f989fdc9752dfda286c9cd87c46248e4dfecbc25" + integrity sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw== + "@esbuild/linux-s390x@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz#255e81fb289b101026131858ab99fba63dcf0071" integrity sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ== -"@esbuild/linux-s390x@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" - integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== - "@esbuild/linux-s390x@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" @@ -838,16 +684,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz#e71ea18c70c3f604e241d16e4e5ab193a9785d6f" integrity sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw== +"@esbuild/linux-s390x@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz#29ebf87e4132ea659c1489fce63cd8509d1c7319" + integrity sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g== + "@esbuild/linux-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz#c7690b3417af318a9b6f96df3031a8865176d338" integrity sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w== -"@esbuild/linux-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" - integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== - "@esbuild/linux-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" @@ -858,16 +704,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz#d47f97391e80690d4dfe811a2e7d6927ad9eed24" integrity sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ== +"@esbuild/linux-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz#4af48c5c0479569b1f359ffbce22d15f261c0cef" + integrity sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA== + "@esbuild/netbsd-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz#30e8cd8a3dded63975e2df2438ca109601ebe0d1" integrity sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A== -"@esbuild/netbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" - integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== - "@esbuild/netbsd-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" @@ -878,21 +724,26 @@ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz#44e743c9778d57a8ace4b72f3c6b839a3b74a653" integrity sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA== +"@esbuild/netbsd-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz#1ae73d23cc044a0ebd4f198334416fb26c31366c" + integrity sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg== + "@esbuild/openbsd-arm64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz#05c5a1faf67b9881834758c69f3e51b7dee015d7" integrity sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q== +"@esbuild/openbsd-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz#5d904a4f5158c89859fd902c427f96d6a9e632e2" + integrity sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg== + "@esbuild/openbsd-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz#7812af31b205055874c8082ea9cf9ab0da6217ae" integrity sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg== -"@esbuild/openbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" - integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== - "@esbuild/openbsd-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" @@ -903,16 +754,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz#2e58ae511bacf67d19f9f2dcd9e8c5a93f00c273" integrity sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA== +"@esbuild/openbsd-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz#4c8aa88c49187c601bae2971e71c6dc5e0ad1cdf" + integrity sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q== + "@esbuild/sunos-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz#d5c275c3b4e73c9b0ecd38d1ca62c020f887ab9d" integrity sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ== -"@esbuild/sunos-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" - integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== - "@esbuild/sunos-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" @@ -923,16 +774,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz#adb022b959d18d3389ac70769cef5a03d3abd403" integrity sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA== +"@esbuild/sunos-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz#8ddc35a0ea38575fa44eda30a5ee01ae2fa54dd4" + integrity sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA== + "@esbuild/win32-arm64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz#73bc7f5a9f8a77805f357fab97f290d0e4820ac9" integrity sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg== -"@esbuild/win32-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" - integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== - "@esbuild/win32-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" @@ -943,16 +794,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz#84906f50c212b72ec360f48461d43202f4c8b9a2" integrity sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A== +"@esbuild/win32-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz#6e79c8543f282c4539db684a207ae0e174a9007b" + integrity sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA== + "@esbuild/win32-ia32@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz#ec93cbf0ef1085cc12e71e0d661d20569ff42102" integrity sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g== -"@esbuild/win32-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" - integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== - "@esbuild/win32-ia32@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" @@ -963,16 +814,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz#5e3eacc515820ff729e90d0cb463183128e82fac" integrity sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ== +"@esbuild/win32-ia32@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz#057af345da256b7192d18b676a02e95d0fa39103" + integrity sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw== + "@esbuild/win32-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz#786c5f41f043b07afb1af37683d7c33668858f6d" integrity sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ== -"@esbuild/win32-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" - integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== - "@esbuild/win32-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" @@ -983,16 +834,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz#81fd50d11e2c32b2d6241470e3185b70c7b30699" integrity sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg== +"@esbuild/win32-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz#168ab1c7e1c318b922637fad8f339d48b01e1244" + integrity sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA== + "@fastify/accept-negotiator@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@fastify/accept-negotiator/-/accept-negotiator-1.1.0.tgz#c1c66b3b771c09742a54dd5bc87c582f6b0630ff" integrity sha512-OIHZrb2ImZ7XG85HXOONLcJWGosv7sIvM2ifAPQVhg9Lv7qdmMBNVaai4QTdyuaqbKM5eO6sLSQOYI7wEQeCJQ== -"@fastify/busboy@^2.0.0": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@fastify/busboy/-/busboy-2.1.1.tgz#b9da6a878a371829a0502c9b6c1c143ef6663f4d" - integrity sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA== - "@floating-ui/core@^1.1.0": version "1.6.8" resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.8.tgz#aa43561be075815879305965020f492cdb43da12" @@ -1018,9 +869,9 @@ integrity sha512-hRILoInAx8GNT5IMkrtIt9blOdrqHOnPBH+k70aWUAqPZPgopb9G5EQJFpaBx/S8zp2fC+mPW349Bziuk1o28Q== "@fortawesome/fontawesome-free@^6.4.2": - version "6.6.0" - resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.6.0.tgz#0e984f0f2344ee513c185d87d77defac4c0c8224" - integrity sha512-60G28ke/sXdtS9KZCpZSHHkCbdsOGEhIUGlwq6yhY74UpTiToIh8np7A8yphhM4BWsvNFtIvLpi4co+h9Mr9Ow== + version "6.7.0" + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.7.0.tgz#c38f4c32970628e214626697edae34a7fe282dbd" + integrity sha512-lXTP8oiLGM97Aqjn47nod9awKe574HRfCngFizr7FiHTadKTiPkoVn0Mzg+tZBLD1XpE4CRvcF7/UM3g1jyVYw== "@graphql-tools/batch-execute@^8.5.22": version "8.5.22" @@ -1201,9 +1052,9 @@ integrity sha512-BcTC9nq2TkwNSfQuqo96J7ehx4etezypc2YeTq7KsXWxrcrerhkgjLrxGRBnStN0wrXo0Gv4BInybqz5uBG6Cw== "@heroicons/vue@^2.0.18": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@heroicons/vue/-/vue-2.1.5.tgz#efbf090d11acebbcefa4badcf3bed42d7ceee219" - integrity sha512-IpqR72sFqFs55kyKfFS7tN+Ww6odFNeH/7UxycIOrlVYfj4WUGAdzQtLBnJspucSeqWFQsKM0g0YrgU655BEfA== + version "2.2.0" + resolved "https://registry.yarnpkg.com/@heroicons/vue/-/vue-2.2.0.tgz#d81f14eed448eec9859849ed63facd3f29bca2b3" + integrity sha512-G3dbSxoeEKqbi/DFalhRxJU4mTXJn7GwZ7ae8NuEQzd1bqdd0jAbdaBZlHPcvPD2xI1iGzNVB4k20Un2AguYPw== "@iconify-json/material-symbols@1.2.6": version "1.2.6" @@ -1213,9 +1064,9 @@ "@iconify/types" "*" "@iconify/collections@^1.0.480": - version "1.0.482" - resolved "https://registry.yarnpkg.com/@iconify/collections/-/collections-1.0.482.tgz#3f39cccfe09064232548ac84d3900f1953c50012" - integrity sha512-LmtAYvUGvBuMSVihOOmlZmYenN1+YyvW9D/hHKcVa6dxesOO7G1ru08JNeSQcdbKSaO2xbKeKQ9SeB4huy9scQ== + version "1.0.484" + resolved "https://registry.yarnpkg.com/@iconify/collections/-/collections-1.0.484.tgz#ac804f0da81a466f594caebed44b0785af42aaa4" + integrity sha512-b/6PlgO0BDx8ElxiceLtYigSQcKAXFPNAU8d4rOLtRvdkda1HOnAsPIqCSeuYHe3H5d9n9tdukLXM9Yv9bkgfA== dependencies: "@iconify/types" "*" @@ -1331,7 +1182,7 @@ resolved "https://registry.yarnpkg.com/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz#8ace5259254426ccef57f3175bc64ed7095ed919" integrity sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw== -"@mapbox/node-pre-gyp@^1.0.5": +"@mapbox/node-pre-gyp@^1.0.11": version "1.0.11" resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz#417db42b7f5323d79e93b34a6d7a2a12c0df43fa" integrity sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ== @@ -1384,9 +1235,9 @@ typescript "5.4.2" "@microsoft/api-extractor@^7.38.0": - version "7.47.9" - resolved "https://registry.yarnpkg.com/@microsoft/api-extractor/-/api-extractor-7.47.9.tgz#256bfb61ba5b65da19b7c284e1a73085b84a14c5" - integrity sha512-TTq30M1rikVsO5wZVToQT/dGyJY7UXJmjiRtkHPLb74Prx3Etw8+bX7Bv7iLuby6ysb7fuu1NFWqma+csym8Jw== + version "7.47.11" + resolved "https://registry.yarnpkg.com/@microsoft/api-extractor/-/api-extractor-7.47.11.tgz#00450fb4f4c30f76c18d36110aa4cae1cdc2191c" + integrity sha512-lrudfbPub5wzBhymfFtgZKuBvXxoSIAdrvS2UbHjoMT2TjIEddq6Z13pcve7A03BAouw0x8sW8G4txdgfiSwpQ== dependencies: "@microsoft/api-extractor-model" "7.29.8" "@microsoft/tsdoc" "~0.15.0" @@ -1394,7 +1245,7 @@ "@rushstack/node-core-library" "5.9.0" "@rushstack/rig-package" "0.5.3" "@rushstack/terminal" "0.14.2" - "@rushstack/ts-command-line" "4.22.8" + "@rushstack/ts-command-line" "4.23.0" lodash "~4.17.15" minimatch "~3.0.3" resolve "~1.22.1" @@ -1440,22 +1291,22 @@ call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" -"@netlify/functions@^2.8.0": - version "2.8.1" - resolved "https://registry.yarnpkg.com/@netlify/functions/-/functions-2.8.1.tgz#67cd94f929551e156225fb50d2efba603b97e138" - integrity sha512-+6wtYdoz0yE06dSa9XkP47tw5zm6g13QMeCwM3MmHx1vn8hzwFa51JtmfraprdkL7amvb7gaNM+OOhQU1h6T8A== +"@netlify/functions@^2.8.2": + version "2.8.2" + resolved "https://registry.yarnpkg.com/@netlify/functions/-/functions-2.8.2.tgz#653395b901a74a6189e913a089f9cb90083ca6ce" + integrity sha512-DeoAQh8LuNPvBE4qsKlezjKj0PyXDryOFJfJKo3Z1qZLKzQ21sT314KQKPVjfvw6knqijj+IO+0kHXy/TJiqNA== dependencies: - "@netlify/serverless-functions-api" "1.19.1" + "@netlify/serverless-functions-api" "1.26.1" "@netlify/node-cookies@^0.1.0": version "0.1.0" resolved "https://registry.yarnpkg.com/@netlify/node-cookies/-/node-cookies-0.1.0.tgz#dda912ba618527695cf519fafa221c5e6777c612" integrity sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g== -"@netlify/serverless-functions-api@1.19.1": - version "1.19.1" - resolved "https://registry.yarnpkg.com/@netlify/serverless-functions-api/-/serverless-functions-api-1.19.1.tgz#f195d18dd9ef14c656225287abb57c333df3880f" - integrity sha512-2KYkyluThg1AKfd0JWI7FzpS4A/fzVVGYIf6AM4ydWyNj8eI/86GQVLeRgDoH7CNOxt243R5tutWlmHpVq0/Ew== +"@netlify/serverless-functions-api@1.26.1": + version "1.26.1" + resolved "https://registry.yarnpkg.com/@netlify/serverless-functions-api/-/serverless-functions-api-1.26.1.tgz#6d2792a7fdbb3a6b852c219e4fb13622b30a9ec5" + integrity sha512-q3L9i3HoNfz0SGpTIS4zTcKBbRkxzCRpd169eyiTuk3IwcPC3/85mzLHranlKo2b+HYT0gu37YxGB45aD8A3Tw== dependencies: "@netlify/node-cookies" "^0.1.0" urlpattern-polyfill "8.0.2" @@ -1491,16 +1342,7 @@ resolved "https://registry.yarnpkg.com/@nuxt/devalue/-/devalue-2.0.2.tgz#5749f04df13bda4c863338d8dabaf370f45ef7c7" integrity sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA== -"@nuxt/devtools-kit@1.4.2": - version "1.4.2" - resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-1.4.2.tgz#f49efe5a22d2ff5a2812cb64e17cb718d57442f6" - integrity sha512-8a5PhVnC7E94318/sHbNSe9mI2MlsQ8+pJLGs2Hh1OJyidB9SWe6hoFc8q4K9VOtXak9uCFVb5V2JGXS1q+1aA== - dependencies: - "@nuxt/kit" "^3.13.1" - "@nuxt/schema" "^3.13.1" - execa "^7.2.0" - -"@nuxt/devtools-kit@^1.6.0": +"@nuxt/devtools-kit@1.6.0", "@nuxt/devtools-kit@^1.6.0": version "1.6.0" resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-1.6.0.tgz#dca1bbb85dbe839d40ec7ac602eed786ed2fcba4" integrity sha512-kJ8mVKwTSN3tdEVNy7mxKCiQk9wsG5t3oOrRMWk6IEbTSov+5sOULqQSM/+OWxWsEDmDfA7QlS5sM3Ti9uMRqQ== @@ -1509,10 +1351,10 @@ "@nuxt/schema" "^3.13.2" execa "^7.2.0" -"@nuxt/devtools-wizard@1.4.2": - version "1.4.2" - resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-1.4.2.tgz#07b1e1913b736f885dcd365bdd54e9ae225aca49" - integrity sha512-TyhmPBg/xJKPOdnwR3DAh8KMUt6/0dUNABCxGVeY7PYbIiXt4msIGVJkBc4y+WwIJHOYPrSRClmZVsXQfRlB4A== +"@nuxt/devtools-wizard@1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-1.6.0.tgz#10223064114eacd875bdbed58174a5ffa91d26fd" + integrity sha512-n+mzz5NwnKZim0tq1oBi+x1nNXb21fp7QeBl7bYKyDT1eJ0XCxFkVTr/kB/ddkkLYZ+o8TykpeNPa74cN+xAyQ== dependencies: consola "^3.2.3" diff "^7.0.0" @@ -1526,14 +1368,14 @@ semver "^7.6.3" "@nuxt/devtools@^1.4.2": - version "1.4.2" - resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-1.4.2.tgz#2ef2ddd75e2e3219c9cae24c69184112afac5a1c" - integrity sha512-Ok3g2P7iwKyK8LiwozbYVAZTo8t91iXSmlJj2ozeo1okKQ2Qi1AtwB6nYgIlkUHZmo155ZjG/LCHYI5uhQ/sGw== + version "1.6.0" + resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-1.6.0.tgz#333a055bd4038db4b72d217738392e42758c9380" + integrity sha512-xNorMapzpM8HaW7NnAsEEO38OrmrYBzGvkkqfBU5nNh5XEymmIfCbQc7IA/GIOH9pXOV4gRutCjHCWXHYbOl3A== dependencies: "@antfu/utils" "^0.7.10" - "@nuxt/devtools-kit" "1.4.2" - "@nuxt/devtools-wizard" "1.4.2" - "@nuxt/kit" "^3.13.1" + "@nuxt/devtools-kit" "1.6.0" + "@nuxt/devtools-wizard" "1.6.0" + "@nuxt/kit" "^3.13.2" "@vue/devtools-core" "7.4.4" "@vue/devtools-kit" "7.4.4" birpc "^0.2.17" @@ -1552,19 +1394,19 @@ local-pkg "^0.5.0" magicast "^0.3.5" nypm "^0.3.11" - ohash "^1.1.3" + ohash "^1.1.4" pathe "^1.1.2" perfect-debounce "^1.0.0" pkg-types "^1.2.0" rc9 "^2.1.2" scule "^1.3.0" semver "^7.6.3" - simple-git "^3.26.0" + simple-git "^3.27.0" sirv "^2.0.4" tinyglobby "^0.2.6" - unimport "^3.11.1" + unimport "^3.12.0" vite-plugin-inspect "^0.8.7" - vite-plugin-vue-inspector "^5.2.0" + vite-plugin-vue-inspector "5.1.3" which "^3.0.1" ws "^8.18.0" @@ -1605,7 +1447,7 @@ optionalDependencies: ipx "^2.1.0" -"@nuxt/kit@3.13.2", "@nuxt/kit@^3.11.1", "@nuxt/kit@^3.11.2", "@nuxt/kit@^3.13.1", "@nuxt/kit@^3.5.0": +"@nuxt/kit@3.13.2": version "3.13.2" resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.13.2.tgz#4c019a87e08c33ec14d1059497ba40568b82bfed" integrity sha512-KvRw21zU//wdz25IeE1E5m/aFSzhJloBRAQtv+evcFeZvuroIxpIQuUqhbzuwznaUwpiWbmwlcsp5uOWmi4vwA== @@ -1631,7 +1473,7 @@ unimport "^3.12.0" untyped "^1.4.2" -"@nuxt/kit@^3.13.0", "@nuxt/kit@^3.13.2", "@nuxt/kit@^3.14.159": +"@nuxt/kit@^3.11.1", "@nuxt/kit@^3.11.2", "@nuxt/kit@^3.13.0", "@nuxt/kit@^3.13.1", "@nuxt/kit@^3.13.2", "@nuxt/kit@^3.14.159", "@nuxt/kit@^3.5.0": version "3.14.159" resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.14.159.tgz#1b856bd5ed75c97e425a0b57dacfe476990a6863" integrity sha512-ZqxsCI1NKV/gjfEUUZjMcr82sg0MKYZOuyB6bu9QY5Zr7NGpfIZY/z5Z822AKTmFxKGChnuz9M0UaS4ze6p42g== @@ -1657,7 +1499,7 @@ unimport "^3.13.1" untyped "^1.5.1" -"@nuxt/schema@3.13.2", "@nuxt/schema@^3.11.1", "@nuxt/schema@^3.13.1": +"@nuxt/schema@3.13.2": version "3.13.2" resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.13.2.tgz#4c1011ebf9fd5f821900bbfc50fd5eff2e663e9b" integrity sha512-CCZgpm+MkqtOMDEgF9SWgGPBXlQ01hV/6+2reDEpJuqFPGzV8HYKPBcIFvn7/z5ahtgutHLzjP71Na+hYcqSpw== @@ -1675,7 +1517,7 @@ unimport "^3.12.0" untyped "^1.4.2" -"@nuxt/schema@3.14.159", "@nuxt/schema@^3.13.2": +"@nuxt/schema@3.14.159", "@nuxt/schema@^3.11.1", "@nuxt/schema@^3.13.1", "@nuxt/schema@^3.13.2": version "3.14.159" resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.14.159.tgz#c9e9a18f090fe44281d4b9f567474610d60ec1f9" integrity sha512-ggXA3F2f9udQoEy5WwrY6bTMvpDaErUYRLSEzdMqqCqjOQ5manfFgfuScGj3ooZiXLIX2TGLVTzcll4nnpDlnQ== @@ -1747,7 +1589,7 @@ unplugin "^1.10.0" vitest-environment-nuxt "^1.0.0" -"@nuxt/test-utils@3.14.2", "@nuxt/test-utils@>=3.13.1": +"@nuxt/test-utils@3.14.2": version "3.14.2" resolved "https://registry.yarnpkg.com/@nuxt/test-utils/-/test-utils-3.14.2.tgz#05a767e432f2f0874987581b4f148c87c86aa14b" integrity sha512-n5soEpHom9aL9sMwrBiD3xGR+oXbx+O8zL2NF9aelWOTSzPPNN+Qo3cBEECMc6NYQi1a4LbCKkPjQfbtPvaqkg== @@ -1776,6 +1618,35 @@ unplugin "^1.14.0" vitest-environment-nuxt "^1.0.1" +"@nuxt/test-utils@>=3.13.1": + version "3.14.4" + resolved "https://registry.yarnpkg.com/@nuxt/test-utils/-/test-utils-3.14.4.tgz#d2c99070a22ec4570643c5f8f28449dde93bb5e9" + integrity sha512-1rSYMXjN651t+c8zSaPAoP78YE1WVcI3baPC2cic9my+J5FIsT1IuTU6M9XwDFBUnwGL6/sV5pPsyEumkIl3eA== + dependencies: + "@nuxt/kit" "^3.13.2" + "@nuxt/schema" "^3.13.2" + c12 "^2.0.1" + consola "^3.2.3" + defu "^6.1.4" + destr "^2.0.3" + estree-walker "^3.0.3" + fake-indexeddb "^6.0.0" + get-port-please "^3.1.2" + local-pkg "^0.5.0" + magic-string "^0.30.12" + node-fetch-native "^1.6.4" + ofetch "^1.4.1" + pathe "^1.1.2" + perfect-debounce "^1.0.0" + radix3 "^1.1.2" + scule "^1.3.0" + std-env "^3.7.0" + tinyexec "^0.3.1" + ufo "^1.5.4" + unenv "^1.10.0" + unplugin "^1.14.1" + vitest-environment-nuxt "^1.0.1" + "@nuxt/vite-builder@3.13.2": version "3.13.2" resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.13.2.tgz#7899441f49b1934ada74dccfd2e83839f924db95" @@ -1838,99 +1709,105 @@ resolved "https://registry.yarnpkg.com/@one-ini/wasm/-/wasm-0.1.1.tgz#6013659736c9dbfccc96e8a9c2b3de317df39323" integrity sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw== -"@parcel/watcher-android-arm64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz#c2c19a3c442313ff007d2d7a9c2c1dd3e1c9ca84" - integrity sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg== +"@parcel/watcher-android-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz#e32d3dda6647791ee930556aee206fcd5ea0fb7a" + integrity sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ== -"@parcel/watcher-darwin-arm64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz#c817c7a3b4f3a79c1535bfe54a1c2818d9ffdc34" - integrity sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA== +"@parcel/watcher-darwin-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz#0d9e680b7e9ec1c8f54944f1b945aa8755afb12f" + integrity sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw== -"@parcel/watcher-darwin-x64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz#1a3f69d9323eae4f1c61a5f480a59c478d2cb020" - integrity sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg== +"@parcel/watcher-darwin-x64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz#f9f1d5ce9d5878d344f14ef1856b7a830c59d1bb" + integrity sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA== -"@parcel/watcher-freebsd-x64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz#0d67fef1609f90ba6a8a662bc76a55fc93706fc8" - integrity sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w== +"@parcel/watcher-freebsd-x64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz#2b77f0c82d19e84ff4c21de6da7f7d096b1a7e82" + integrity sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw== -"@parcel/watcher-linux-arm-glibc@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz#ce5b340da5829b8e546bd00f752ae5292e1c702d" - integrity sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA== +"@parcel/watcher-linux-arm-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz#92ed322c56dbafa3d2545dcf2803334aee131e42" + integrity sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA== -"@parcel/watcher-linux-arm64-glibc@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz#6d7c00dde6d40608f9554e73998db11b2b1ff7c7" - integrity sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA== +"@parcel/watcher-linux-arm-musl@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz#cd48e9bfde0cdbbd2ecd9accfc52967e22f849a4" + integrity sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA== -"@parcel/watcher-linux-arm64-musl@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz#bd39bc71015f08a4a31a47cd89c236b9d6a7f635" - integrity sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA== +"@parcel/watcher-linux-arm64-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz#7b81f6d5a442bb89fbabaf6c13573e94a46feb03" + integrity sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA== -"@parcel/watcher-linux-x64-glibc@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz#0ce29966b082fb6cdd3de44f2f74057eef2c9e39" - integrity sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg== +"@parcel/watcher-linux-arm64-musl@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz#dcb8ff01077cdf59a18d9e0a4dff7a0cfe5fd732" + integrity sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q== -"@parcel/watcher-linux-x64-musl@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz#d2ebbf60e407170bb647cd6e447f4f2bab19ad16" - integrity sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ== +"@parcel/watcher-linux-x64-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz#2e254600fda4e32d83942384d1106e1eed84494d" + integrity sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw== + +"@parcel/watcher-linux-x64-musl@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz#01fcea60fedbb3225af808d3f0a7b11229792eef" + integrity sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA== "@parcel/watcher-wasm@^2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz#c4353e4fdb96ee14389856f7f6f6d21b7dcef9e1" - integrity sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA== + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-wasm/-/watcher-wasm-2.5.0.tgz#81fad1e10957f08a532eb4fc0d4c353cd8901a50" + integrity sha512-Z4ouuR8Pfggk1EYYbTaIoxc+Yv4o7cGQnH0Xy8+pQ+HbiW+ZnwhcD2LPf/prfq1nIWpAxjOkQ8uSMFWMtBLiVQ== dependencies: is-glob "^4.0.3" micromatch "^4.0.5" napi-wasm "^1.1.0" -"@parcel/watcher-win32-arm64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz#eb4deef37e80f0b5e2f215dd6d7a6d40a85f8adc" - integrity sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg== +"@parcel/watcher-win32-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz#87cdb16e0783e770197e52fb1dc027bb0c847154" + integrity sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig== -"@parcel/watcher-win32-ia32@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz#94fbd4b497be39fd5c8c71ba05436927842c9df7" - integrity sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw== +"@parcel/watcher-win32-ia32@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz#778c39b56da33e045ba21c678c31a9f9d7c6b220" + integrity sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA== -"@parcel/watcher-win32-x64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz#4bf920912f67cae5f2d264f58df81abfea68dadf" - integrity sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A== +"@parcel/watcher-win32-x64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz#33873876d0bbc588aacce38e90d1d7480ce81cb7" + integrity sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw== "@parcel/watcher@^2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.4.1.tgz#a50275151a1bb110879c6123589dba90c19f1bf8" - integrity sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA== + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.5.0.tgz#5c88818b12b8de4307a9d3e6dc3e28eba0dfbd10" + integrity sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ== dependencies: detect-libc "^1.0.3" is-glob "^4.0.3" micromatch "^4.0.5" node-addon-api "^7.0.0" optionalDependencies: - "@parcel/watcher-android-arm64" "2.4.1" - "@parcel/watcher-darwin-arm64" "2.4.1" - "@parcel/watcher-darwin-x64" "2.4.1" - "@parcel/watcher-freebsd-x64" "2.4.1" - "@parcel/watcher-linux-arm-glibc" "2.4.1" - "@parcel/watcher-linux-arm64-glibc" "2.4.1" - "@parcel/watcher-linux-arm64-musl" "2.4.1" - "@parcel/watcher-linux-x64-glibc" "2.4.1" - "@parcel/watcher-linux-x64-musl" "2.4.1" - "@parcel/watcher-win32-arm64" "2.4.1" - "@parcel/watcher-win32-ia32" "2.4.1" - "@parcel/watcher-win32-x64" "2.4.1" - -"@peculiar/asn1-schema@^2.3.8": + "@parcel/watcher-android-arm64" "2.5.0" + "@parcel/watcher-darwin-arm64" "2.5.0" + "@parcel/watcher-darwin-x64" "2.5.0" + "@parcel/watcher-freebsd-x64" "2.5.0" + "@parcel/watcher-linux-arm-glibc" "2.5.0" + "@parcel/watcher-linux-arm-musl" "2.5.0" + "@parcel/watcher-linux-arm64-glibc" "2.5.0" + "@parcel/watcher-linux-arm64-musl" "2.5.0" + "@parcel/watcher-linux-x64-glibc" "2.5.0" + "@parcel/watcher-linux-x64-musl" "2.5.0" + "@parcel/watcher-win32-arm64" "2.5.0" + "@parcel/watcher-win32-ia32" "2.5.0" + "@parcel/watcher-win32-x64" "2.5.0" + +"@peculiar/asn1-schema@^2.3.13", "@peculiar/asn1-schema@^2.3.8": version "2.3.13" resolved "https://registry.yarnpkg.com/@peculiar/asn1-schema/-/asn1-schema-2.3.13.tgz#ec8509cdcbc0da3abe73fd7e690556b57a61b8f4" integrity sha512-3Xq3a01WkHRZL8X04Zsfg//mGaA21xlL4tlVn4v2xGT0JStiztATRkMwa5b+f/HXmY2smsiLXYK46Gwgzvfg3g== @@ -1978,15 +1855,47 @@ playwright "1.48.0" "@polka/url@^1.0.0-next.24": - version "1.0.0-next.27" - resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.27.tgz#527e8df13dea13ab68d347d20ba9432cadb867a8" - integrity sha512-MU0SYgcrBdSVLu7Tfow3VY4z1odzlaTYRjt3WQ0z8XbjDWReuy+EALt2HdjhrwD2HPiW2GY+KTSw4HLv4C/EOA== + version "1.0.0-next.28" + resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.28.tgz#d45e01c4a56f143ee69c54dd6b12eade9e270a73" + integrity sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw== "@popperjs/core@2.11.8", "@popperjs/core@^2.11.8": version "2.11.8" resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== +"@redocly/ajv@^8.11.2": + version "8.11.2" + resolved "https://registry.yarnpkg.com/@redocly/ajv/-/ajv-8.11.2.tgz#46e1bf321ec0ac1e0fd31dea41a3d1fcbdcda0b5" + integrity sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js-replace "^1.0.1" + +"@redocly/config@^0.16.0": + version "0.16.0" + resolved "https://registry.yarnpkg.com/@redocly/config/-/config-0.16.0.tgz#4b7700a5cb6e04bc6d6fdb94b871c9e260a1fba6" + integrity sha512-t9jnODbUcuANRSl/K4L9nb12V+U5acIHnVSl26NWrtSdDZVtoqUXk2yGFPZzohYf62cCfEQUT8ouJ3bhPfpnJg== + +"@redocly/openapi-core@^1.25.9": + version "1.25.11" + resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.25.11.tgz#93f168284986da6809363b001e9aa7c2104c2fc0" + integrity sha512-bH+a8izQz4fnKROKoX3bEU8sQ9rjvEIZOqU6qTmxlhOJ0NsKa5e+LmU18SV0oFeg5YhWQhhEDihXkvKJ1wMMNQ== + dependencies: + "@redocly/ajv" "^8.11.2" + "@redocly/config" "^0.16.0" + colorette "^1.2.0" + https-proxy-agent "^7.0.4" + js-levenshtein "^1.1.6" + js-yaml "^4.1.0" + lodash.isequal "^4.5.0" + minimatch "^5.0.1" + node-fetch "^2.6.1" + pluralize "^8.0.0" + yaml-ast-parser "0.0.43" + "@redux-saga/core@^1.3.0": version "1.3.0" resolved "https://registry.yarnpkg.com/@redux-saga/core/-/core-1.3.0.tgz#2ce08b73d407fc6ea9e7f7d83d2e97d981a3a8b8" @@ -2040,24 +1949,23 @@ resolved "https://registry.yarnpkg.com/@repeaterjs/repeater/-/repeater-3.0.6.tgz#be23df0143ceec3c69f8b6c2517971a5578fdaa2" integrity sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA== -"@rollup/plugin-alias@^5.1.0": - version "5.1.0" - resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-5.1.0.tgz#99a94accc4ff9a3483be5baeedd5d7da3b597e93" - integrity sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ== - dependencies: - slash "^4.0.0" +"@rollup/plugin-alias@^5.1.1": + version "5.1.1" + resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-5.1.1.tgz#53601d88cda8b1577aa130b4a6e452283605bf26" + integrity sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ== -"@rollup/plugin-commonjs@^25.0.8": - version "25.0.8" - resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.8.tgz#c77e608ab112a666b7f2a6bea625c73224f7dd34" - integrity sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A== +"@rollup/plugin-commonjs@^28.0.1": + version "28.0.1" + resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.1.tgz#e2138e31cc0637676dc3d5cae7739131f7cd565e" + integrity sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA== dependencies: "@rollup/pluginutils" "^5.0.1" commondir "^1.0.1" estree-walker "^2.0.2" - glob "^8.0.3" + fdir "^6.2.0" is-reference "1.2.1" magic-string "^0.30.3" + picomatch "^4.0.2" "@rollup/plugin-inject@^5.0.5": version "5.0.5" @@ -2075,15 +1983,14 @@ dependencies: "@rollup/pluginutils" "^5.1.0" -"@rollup/plugin-node-resolve@^15.2.3": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz#e5e0b059bd85ca57489492f295ce88c2d4b0daf9" - integrity sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ== +"@rollup/plugin-node-resolve@^15.3.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.0.tgz#efbb35515c9672e541c08d59caba2eff492a55d5" + integrity sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag== dependencies: "@rollup/pluginutils" "^5.0.1" "@types/resolve" "1.20.2" deepmerge "^4.2.2" - is-builtin-module "^3.2.1" is-module "^1.0.0" resolve "^1.22.1" @@ -2095,6 +2002,14 @@ "@rollup/pluginutils" "^5.0.1" magic-string "^0.30.3" +"@rollup/plugin-replace@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-6.0.1.tgz#547e238f7db994ebe63dd5329ec46ffccf696029" + integrity sha512-2sPh9b73dj5IxuMmDAsQWVFT7mR+yoHweBaXG2W/R8vQ+IWZlnaI7BR7J6EguVQUp1hd8Z7XuozpDjEKQAAC2Q== + dependencies: + "@rollup/pluginutils" "^5.0.1" + magic-string "^0.30.3" + "@rollup/plugin-terser@^0.4.4": version "0.4.4" resolved "https://registry.yarnpkg.com/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz#15dffdb3f73f121aa4fbb37e7ca6be9aeea91962" @@ -2112,16 +2027,7 @@ estree-walker "^2.0.1" picomatch "^2.2.2" -"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.5", "@rollup/pluginutils@^5.1.0": - version "5.1.0" - resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0" - integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g== - dependencies: - "@types/estree" "^1.0.0" - estree-walker "^2.0.2" - picomatch "^2.3.1" - -"@rollup/pluginutils@^5.1.2": +"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.5", "@rollup/pluginutils@^5.1.0", "@rollup/pluginutils@^5.1.2", "@rollup/pluginutils@^5.1.3": version "5.1.3" resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.3.tgz#3001bf1a03f3ad24457591f2c259c8e514e0dbdf" integrity sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A== @@ -2130,85 +2036,95 @@ estree-walker "^2.0.2" picomatch "^4.0.2" -"@rollup/rollup-android-arm-eabi@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.3.tgz#155c7d82c1b36c3ad84d9adf9b3cd520cba81a0f" - integrity sha512-MmKSfaB9GX+zXl6E8z4koOr/xU63AMVleLEa64v7R0QF/ZloMs5vcD1sHgM64GXXS1csaJutG+ddtzcueI/BLg== - -"@rollup/rollup-android-arm64@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.3.tgz#b94b6fa002bd94a9cbd8f9e47e23b25e5bd113ba" - integrity sha512-zrt8ecH07PE3sB4jPOggweBjJMzI1JG5xI2DIsUbkA+7K+Gkjys6eV7i9pOenNSDJH3eOr/jLb/PzqtmdwDq5g== - -"@rollup/rollup-darwin-arm64@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.3.tgz#0934126cf9cbeadfe0eb7471ab5d1517e8cd8dcc" - integrity sha512-P0UxIOrKNBFTQaXTxOH4RxuEBVCgEA5UTNV6Yz7z9QHnUJ7eLX9reOd/NYMO3+XZO2cco19mXTxDMXxit4R/eQ== - -"@rollup/rollup-darwin-x64@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.3.tgz#0ce8e1e0f349778938c7c90e4bdc730640e0a13e" - integrity sha512-L1M0vKGO5ASKntqtsFEjTq/fD91vAqnzeaF6sfNAy55aD+Hi2pBI5DKwCO+UNDQHWsDViJLqshxOahXyLSh3EA== - -"@rollup/rollup-linux-arm-gnueabihf@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.3.tgz#5669d34775ad5d71e4f29ade99d0ff4df523afb6" - integrity sha512-btVgIsCjuYFKUjopPoWiDqmoUXQDiW2A4C3Mtmp5vACm7/GnyuprqIDPNczeyR5W8rTXEbkmrJux7cJmD99D2g== - -"@rollup/rollup-linux-arm-musleabihf@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.3.tgz#f6d1a0e1da4061370cb2f4244fbdd727c806dd88" - integrity sha512-zmjbSphplZlau6ZTkxd3+NMtE4UKVy7U4aVFMmHcgO5CUbw17ZP6QCgyxhzGaU/wFFdTfiojjbLG3/0p9HhAqA== - -"@rollup/rollup-linux-arm64-gnu@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.3.tgz#ed96a05e99743dee4d23cc4913fc6e01a0089c88" - integrity sha512-nSZfcZtAnQPRZmUkUQwZq2OjQciR6tEoJaZVFvLHsj0MF6QhNMg0fQ6mUOsiCUpTqxTx0/O6gX0V/nYc7LrgPw== - -"@rollup/rollup-linux-arm64-musl@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.3.tgz#057ea26eaa7e537a06ded617d23d57eab3cecb58" - integrity sha512-MnvSPGO8KJXIMGlQDYfvYS3IosFN2rKsvxRpPO2l2cum+Z3exiExLwVU+GExL96pn8IP+GdH8Tz70EpBhO0sIQ== - -"@rollup/rollup-linux-powerpc64le-gnu@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.3.tgz#6e6e1f9404c9bf3fbd7d51cd11cd288a9a2843aa" - integrity sha512-+W+p/9QNDr2vE2AXU0qIy0qQE75E8RTwTwgqS2G5CRQ11vzq0tbnfBd6brWhS9bCRjAjepJe2fvvkvS3dno+iw== - -"@rollup/rollup-linux-riscv64-gnu@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.3.tgz#eef1536a53f6e6658a2a778130e6b1a4a41cb439" - integrity sha512-yXH6K6KfqGXaxHrtr+Uoy+JpNlUlI46BKVyonGiaD74ravdnF9BUNC+vV+SIuB96hUMGShhKV693rF9QDfO6nQ== - -"@rollup/rollup-linux-s390x-gnu@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.3.tgz#2b28fb89ca084efaf8086f435025d96b4a966957" - integrity sha512-R8cwY9wcnApN/KDYWTH4gV/ypvy9yZUHlbJvfaiXSB48JO3KpwSpjOGqO4jnGkLDSk1hgjYkTbTt6Q7uvPf8eg== - -"@rollup/rollup-linux-x64-gnu@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.3.tgz#5226cde6c6b495b04a3392c1d2c572844e42f06b" - integrity sha512-kZPbX/NOPh0vhS5sI+dR8L1bU2cSO9FgxwM8r7wHzGydzfSjLRCFAT87GR5U9scj2rhzN3JPYVC7NoBbl4FZ0g== - -"@rollup/rollup-linux-x64-musl@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.3.tgz#2c2412982e6c2a00a2ecac6d548ebb02f0aa6ca4" - integrity sha512-S0Yq+xA1VEH66uiMNhijsWAafffydd2X5b77eLHfRmfLsRSpbiAWiRHV6DEpz6aOToPsgid7TI9rGd6zB1rhbg== - -"@rollup/rollup-win32-arm64-msvc@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.3.tgz#fbb6ef5379199e2ec0103ef32877b0985c773a55" - integrity sha512-9isNzeL34yquCPyerog+IMCNxKR8XYmGd0tHSV+OVx0TmE0aJOo9uw4fZfUuk2qxobP5sug6vNdZR6u7Mw7Q+Q== - -"@rollup/rollup-win32-ia32-msvc@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.3.tgz#d50e2082e147e24d87fe34abbf6246525ec3845a" - integrity sha512-nMIdKnfZfzn1Vsk+RuOvl43ONTZXoAPUUxgcU0tXooqg4YrAqzfKzVenqqk2g5efWh46/D28cKFrOzDSW28gTA== - -"@rollup/rollup-win32-x64-msvc@4.21.3": - version "4.21.3" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.3.tgz#4115233aa1bd5a2060214f96d8511f6247093212" - integrity sha512-fOvu7PCQjAj4eWDEuD8Xz5gpzFqXzGlxHZozHP4b9Jxv9APtdxL6STqztDzMLuRXEc4UpXGGhx029Xgm91QBeA== +"@rollup/rollup-android-arm-eabi@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.27.3.tgz#ab2c78c43e4397fba9a80ea93907de7a144f3149" + integrity sha512-EzxVSkIvCFxUd4Mgm4xR9YXrcp976qVaHnqom/Tgm+vU79k4vV4eYTjmRvGfeoW8m9LVcsAy/lGjcgVegKEhLQ== + +"@rollup/rollup-android-arm64@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.27.3.tgz#de840660ab65cf73bd6d4bc62d38acd9fc94cd6c" + integrity sha512-LJc5pDf1wjlt9o/Giaw9Ofl+k/vLUaYsE2zeQGH85giX2F+wn/Cg8b3c5CDP3qmVmeO5NzwVUzQQxwZvC2eQKw== + +"@rollup/rollup-darwin-arm64@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.27.3.tgz#8c786e388f7eff0d830151a9d8fbf04c031bb07f" + integrity sha512-OuRysZ1Mt7wpWJ+aYKblVbJWtVn3Cy52h8nLuNSzTqSesYw1EuN6wKp5NW/4eSre3mp12gqFRXOKTcN3AI3LqA== + +"@rollup/rollup-darwin-x64@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.27.3.tgz#56dab9e4cac0ad97741740ea1ac7b6a576e20e59" + integrity sha512-xW//zjJMlJs2sOrCmXdB4d0uiilZsOdlGQIC/jjmMWT47lkLLoB1nsNhPUcnoqyi5YR6I4h+FjBpILxbEy8JRg== + +"@rollup/rollup-freebsd-arm64@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.27.3.tgz#bcb4112cb7e68a12d148b03cbc21dde43772f4bc" + integrity sha512-58E0tIcwZ+12nK1WiLzHOD8I0d0kdrY/+o7yFVPRHuVGY3twBwzwDdTIBGRxLmyjciMYl1B/U515GJy+yn46qw== + +"@rollup/rollup-freebsd-x64@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.27.3.tgz#c7cd9f69aa43847b37d819f12c2ad6337ec245fa" + integrity sha512-78fohrpcVwTLxg1ZzBMlwEimoAJmY6B+5TsyAZ3Vok7YabRBUvjYTsRXPTjGEvv/mfgVBepbW28OlMEz4w8wGA== + +"@rollup/rollup-linux-arm-gnueabihf@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.27.3.tgz#3692b22987a6195c8490bbf6357800e0c183ee38" + integrity sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q== + +"@rollup/rollup-linux-arm-musleabihf@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.27.3.tgz#f920f24e571f26bbcdb882267086942fdb2474bf" + integrity sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg== + +"@rollup/rollup-linux-arm64-gnu@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.27.3.tgz#2046553e91d8ca73359a2a3bb471826fbbdcc9a3" + integrity sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ== + +"@rollup/rollup-linux-arm64-musl@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.27.3.tgz#8a3f05dbae753102ae10a9bc2168c7b6bbeea5da" + integrity sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g== + +"@rollup/rollup-linux-powerpc64le-gnu@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.27.3.tgz#d281d9c762f9e4f1aa7909a313f7acbe78aced32" + integrity sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw== + +"@rollup/rollup-linux-riscv64-gnu@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.27.3.tgz#fa84b3f81826cee0de9e90f9954f3e55c3cc6c97" + integrity sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A== + +"@rollup/rollup-linux-s390x-gnu@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.27.3.tgz#6b9c04d84593836f942ceb4dd90644633d5fe871" + integrity sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA== + +"@rollup/rollup-linux-x64-gnu@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.27.3.tgz#f13effcdcd1cc14b26427e6bec8c6c9e4de3773e" + integrity sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA== + +"@rollup/rollup-linux-x64-musl@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.27.3.tgz#6547bc0069f2d788e6cf0f33363b951181f4cca5" + integrity sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ== + +"@rollup/rollup-win32-arm64-msvc@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.27.3.tgz#3f2db9347c5df5e6627a7e12d937cea527d63526" + integrity sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw== + +"@rollup/rollup-win32-ia32-msvc@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.27.3.tgz#54fcf9a13a98d3f0e4be6a4b6e28b9dca676502f" + integrity sha512-ecE36ZBMLINqiTtSNQ1vzWc5pXLQHlf/oqGp/bSbi7iedcjcNb6QbCBNG73Euyy2C+l/fn8qKWEwxr+0SSfs3w== + +"@rollup/rollup-win32-x64-msvc@4.27.3": + version "4.27.3" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.27.3.tgz#3721f601f973059bfeeb572992cf0dfc94ab2970" + integrity sha512-vliZLrDmYKyaUoMzEbMTg2JkerfBjn03KmAw9CykO0Zzkzoyd7o3iZNam/TpyWNjNT+Cz2iO3P9Smv2wgrR+Eg== "@rushstack/node-core-library@4.0.2": version "4.0.2" @@ -2278,10 +2194,10 @@ argparse "~1.0.9" string-argv "~0.3.1" -"@rushstack/ts-command-line@4.22.8": - version "4.22.8" - resolved "https://registry.yarnpkg.com/@rushstack/ts-command-line/-/ts-command-line-4.22.8.tgz#ee572c2101fbab9ea29081da5784107bd1597391" - integrity sha512-XbFjOoV7qZHJnSuFUHv0pKaFA4ixyCuki+xMjsMfDwfvQjs5MYG0IK5COal3tRnG7KCDe2l/G+9LrzYE/RJhgg== +"@rushstack/ts-command-line@4.23.0": + version "4.23.0" + resolved "https://registry.yarnpkg.com/@rushstack/ts-command-line/-/ts-command-line-4.23.0.tgz#d2517f9da17a2f7b8967cdb417c39edc25b432ba" + integrity sha512-jYREBtsxduPV6ptNq8jOKp9+yx0ld1Tb/Tkdnlj8gTjazl1sF3DwX2VbluyYrNd0meWIL0bNeer7WDf5tKFjaQ== dependencies: "@rushstack/terminal" "0.14.2" "@types/argparse" "1.0.38" @@ -2337,10 +2253,17 @@ dependencies: "@types/chai" "*" -"@types/chai@*", "@types/chai@^4.3.5": - version "4.3.19" - resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.19.tgz#14519f437361d41e84102ed3fbc922ddace3e228" - integrity sha512-2hHHvQBVE2FiSK4eN0Br6snX9MtolHaTo/batnLjlGRhoQzlCL61iVpxoqO7SfFyOw+P/pwv+0zNHzKoGWz9Cw== +"@types/chai@*": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@types/chai/-/chai-5.0.1.tgz#2c3705555cf11f5f59c836a84c44afcfe4e5689d" + integrity sha512-5T8ajsg3M/FOncpLYW7sdOcD6yf4+722sze/tc4KQV0P8Z2rAr3SAuHCIkYmYpt8VbcQlnz8SxlOlPQYefe4cA== + dependencies: + "@types/deep-eql" "*" + +"@types/chai@^4.3.5": + version "4.3.20" + resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.20.tgz#cb291577ed342ca92600430841a00329ba05cecc" + integrity sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ== "@types/cookie@^0.3.3": version "0.3.3" @@ -2371,16 +2294,16 @@ dependencies: "@types/ms" "*" -"@types/estree@*", "@types/estree@^1.0.0": +"@types/deep-eql@*": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/deep-eql/-/deep-eql-4.0.2.tgz#334311971d3a07121e7eb91b684a605e7eea9cbd" + integrity sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw== + +"@types/estree@*", "@types/estree@1.0.6", "@types/estree@^1.0.0": version "1.0.6" resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== -"@types/estree@1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" - integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== - "@types/hoist-non-react-statics@^3.3.0": version "3.3.5" resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz#dab7867ef789d87e2b4b0003c9d65c49cc44a494" @@ -2389,7 +2312,7 @@ "@types/react" "*" hoist-non-react-statics "^3.3.0" -"@types/http-proxy@^1.17.14": +"@types/http-proxy@^1.17.15": version "1.17.15" resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.15.tgz#12118141ce9775a6499ecb4c01d02f90fc839d36" integrity sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ== @@ -2429,11 +2352,11 @@ integrity sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g== "@types/node@*": - version "22.5.5" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.5.tgz#52f939dd0f65fc552a4ad0b392f3c466cc5d7a44" - integrity sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA== + version "22.9.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.9.0.tgz#b7f16e5c3384788542c72dc3d561a7ceae2c0365" + integrity sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ== dependencies: - undici-types "~6.19.2" + undici-types "~6.19.8" "@types/prop-types@*": version "15.7.13" @@ -2441,9 +2364,9 @@ integrity sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA== "@types/react-redux@^7.1.20": - version "7.1.33" - resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.33.tgz#53c5564f03f1ded90904e3c90f77e4bd4dc20b15" - integrity sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg== + version "7.1.34" + resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.34.tgz#83613e1957c481521e6776beeac4fd506d11bd0e" + integrity sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ== dependencies: "@types/hoist-non-react-statics" "^3.3.0" "@types/react" "*" @@ -2451,9 +2374,9 @@ redux "^4.0.0" "@types/react@*": - version "18.3.7" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.7.tgz#6decbfbb01f8d82d56ff5403394121940faa6569" - integrity sha512-KUnDCJF5+AiZd8owLIeVHqmW9yM4sqmDVf2JRJiBMFkGvkoZ4/WyV2lL4zVsoinmRS/W3FeEdZLEWFRofnT2FQ== + version "18.3.12" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.12.tgz#99419f182ccd69151813b7ee24b792fe08774f60" + integrity sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw== dependencies: "@types/prop-types" "*" csstype "^3.0.2" @@ -2489,9 +2412,9 @@ integrity sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow== "@types/ws@^8.0.0": - version "8.5.12" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.12.tgz#619475fe98f35ccca2a2f6c137702d85ec247b7e" - integrity sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ== + version "8.5.13" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.13.tgz#6414c280875e2691d0d1e080b05addbf5cb91e20" + integrity sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA== dependencies: "@types/node" "*" @@ -2502,74 +2425,74 @@ dependencies: "@types/node" "*" -"@unhead/dom@1.11.6", "@unhead/dom@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.11.6.tgz#639e90793eb18605038591d496ee772d0e6a1449" - integrity sha512-FYU8Cu+XWcpbO4OvXdB6x7m6GTPcl6CW7igI8rNu6Kc0Ilxb+atxIvyFXdTGAyB7h/F0w3ex06ZVWJ65f3EW8A== +"@unhead/dom@1.11.11", "@unhead/dom@^1.11.5": + version "1.11.11" + resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.11.11.tgz#74569a280d7b9f013813aef8dee4705cb011e58a" + integrity sha512-4YwziCH5CmjvUzSGdZ4Klj6BqhLSTNZooA9kt47yDxj4Qw9uHqVnXwWWupYsVdIYPNsw1tR2AkHveg82y1Fn3A== dependencies: - "@unhead/schema" "1.11.6" - "@unhead/shared" "1.11.6" + "@unhead/schema" "1.11.11" + "@unhead/shared" "1.11.11" -"@unhead/schema@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@unhead/schema/-/schema-1.11.6.tgz#4528d08ecb1addae0721221aca443fc04bb61bdd" - integrity sha512-Ava5+kQERaZ2fi66phgR9KZQr9SsheN1YhhKM8fCP2A4Jb5lHUssVQ19P0+89V6RX9iUg/Q27WdEbznm75LzhQ== +"@unhead/schema@1.11.11": + version "1.11.11" + resolved "https://registry.yarnpkg.com/@unhead/schema/-/schema-1.11.11.tgz#28c5dbe923fce0948badca998934c322f5a1c096" + integrity sha512-xSGsWHPBYcMV/ckQeImbrVu6ddeRnrdDCgXUKv3xIjGBY+ob/96V80lGX8FKWh8GwdFSwhblISObKlDAt5K9ZQ== dependencies: hookable "^5.5.3" zhead "^2.2.4" -"@unhead/shared@1.11.6", "@unhead/shared@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.11.6.tgz#f70a0b0c72bfb836f96f36a20bb1831ddecd160e" - integrity sha512-aGrtzRCcFlVh9iru73fBS8FA1vpQskS190t5cCRRMpisOEunVv3ueqXN1F8CseQd0W4wyEr/ycDvdfKt+RPv5g== +"@unhead/shared@1.11.11", "@unhead/shared@^1.11.5": + version "1.11.11" + resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.11.11.tgz#1ec0ec744edce31808256801ce13efd369fa6d62" + integrity sha512-RfdvUskPn90ipO+PmR98jKZ8Lsx1uuzscOenO5xcrMrtWGhlLWaEBIrbvFOvX5PZ/u8/VNMJChTXGDUjEtHmlg== dependencies: - "@unhead/schema" "1.11.6" + "@unhead/schema" "1.11.11" "@unhead/ssr@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@unhead/ssr/-/ssr-1.11.6.tgz#1c42e066d7dd7f44e6477fa7ac6d1c707920845b" - integrity sha512-jmRkJB3UWlaAV6aoTBcsi2cLOje8hJxWqbmcLmekmCBZcCgR8yHEjxVCzLtYnAQg68Trgg9+uqMt+8UFY40tDA== + version "1.11.11" + resolved "https://registry.yarnpkg.com/@unhead/ssr/-/ssr-1.11.11.tgz#2af7d9a8042082c301976878021b14335d2fbe86" + integrity sha512-NQC8y+4ldwkMr3x8WFwv3+OR6g+Sj7dwL6J/3ST25KnvlwDSub2KGbnm2hF1x8vTpTmXTVxMA3GDRL9MRfLvMg== dependencies: - "@unhead/schema" "1.11.6" - "@unhead/shared" "1.11.6" + "@unhead/schema" "1.11.11" + "@unhead/shared" "1.11.11" "@unhead/vue@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-1.11.6.tgz#dd9b117777f3be93b39a9cf50099a7b7b2ae7a94" - integrity sha512-CMuDJGTi4n4wKdOp6/JmB9roGshjTdoFKF34PEkXu4+g97BiVFiZ9LvgY44+UlWCUzQHcqEPRQIzm9iKEqcfKw== + version "1.11.11" + resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-1.11.11.tgz#226ee5dda055c005ff2569fb5c2cbc91cf76acdc" + integrity sha512-AxsHHauZ+w0m2irwDHqkc3GdNChMLBtolk8CN3IAZM6vTwH0EbPXlFCFcIk4WwkH0opG+R2GlKTThr5H0HLm7g== dependencies: - "@unhead/schema" "1.11.6" - "@unhead/shared" "1.11.6" + "@unhead/schema" "1.11.11" + "@unhead/shared" "1.11.11" defu "^6.1.4" hookable "^5.5.3" - unhead "1.11.6" + unhead "1.11.11" -"@vercel/nft@^0.26.5": - version "0.26.5" - resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.26.5.tgz#f21e40576b76446851b6cbff79f39a72dab4d6b2" - integrity sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ== +"@vercel/nft@^0.27.5": + version "0.27.6" + resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.27.6.tgz#4fffb7ad4ffdb70698213cfd67596be5e9cdfb6c" + integrity sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg== dependencies: - "@mapbox/node-pre-gyp" "^1.0.5" + "@mapbox/node-pre-gyp" "^1.0.11" "@rollup/pluginutils" "^4.0.0" acorn "^8.6.0" - acorn-import-attributes "^1.9.2" + acorn-import-attributes "^1.9.5" async-sema "^3.1.1" bindings "^1.4.0" estree-walker "2.0.2" glob "^7.1.3" graceful-fs "^4.2.9" - micromatch "^4.0.2" + micromatch "^4.0.8" node-gyp-build "^4.2.2" resolve-from "^5.0.0" "@vitejs/plugin-vue-jsx@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.0.1.tgz#7be8a66da75ad412c30e57f43486fd2af20697c0" - integrity sha512-7mg9HFGnFHMEwCdB6AY83cVK4A6sCqnrjFYF4WIlebYAQVVJ/sC/CiTruVdrRlhrFoeZ8rlMxY9wYpPTIRhhAg== + version "4.1.0" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.1.0.tgz#16e048d1eebf74c2d431033d9ca82a74bbd73e5d" + integrity sha512-KuRejz7KAFvhXDzOudlaS2IyygAwoAEEMtHAdcRSy/8cA5iKH043Qudcz48zsC0M0vvN5iKwIwNMuWbBYn6/Yg== dependencies: - "@babel/core" "^7.24.7" - "@babel/plugin-transform-typescript" "^7.24.7" - "@vue/babel-plugin-jsx" "^1.2.2" + "@babel/core" "^7.26.0" + "@babel/plugin-transform-typescript" "^7.25.9" + "@vue/babel-plugin-jsx" "^1.2.5" "@vitejs/plugin-vue@4.6.2": version "4.6.2" @@ -2577,9 +2500,9 @@ integrity sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw== "@vitejs/plugin-vue@^5.0.5", "@vitejs/plugin-vue@^5.1.3": - version "5.1.4" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.4.tgz#72b8b705cfce36b00b59af196195146e356500c4" - integrity sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A== + version "5.2.0" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.2.0.tgz#994f3b4f12d3590c5a6895df4cbd270d9a6d5e17" + integrity sha512-7n7KdUEtx/7Yl7I/WVAMZ1bEb0eVvXF3ummWTeLcs/9gvo9pJhuLdouSXGjdZ/MKD1acf1I272+X0RMua4/R3g== "@vitest/expect@0.34.6": version "0.34.6" @@ -2618,13 +2541,20 @@ estree-walker "^3.0.3" magic-string "^0.30.11" -"@vitest/pretty-format@2.1.1", "@vitest/pretty-format@^2.1.1": +"@vitest/pretty-format@2.1.1": version "2.1.1" resolved "https://registry.yarnpkg.com/@vitest/pretty-format/-/pretty-format-2.1.1.tgz#fea25dd4e88c3c1329fbccd1d16b1d607eb40067" integrity sha512-SjxPFOtuINDUW8/UkElJYQSFtnWX7tMksSGW0vfjxMneFqxVr8YJ979QpMbDW7g+BIiq88RAGDjf7en6rvLPPQ== dependencies: tinyrainbow "^1.2.0" +"@vitest/pretty-format@^2.1.1": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@vitest/pretty-format/-/pretty-format-2.1.5.tgz#bc79b8826d4a63dc04f2a75d2944694039fa50aa" + integrity sha512-4ZOwtk2bqG5Y6xRGHcveZVr+6txkH7M2e+nPFd6guSoN638v/1XQ0K06eOpi0ptVU/2tW/pIU4IoPotY/GZ9fw== + dependencies: + tinyrainbow "^1.2.0" + "@vitest/runner@0.34.6": version "0.34.6" resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-0.34.6.tgz#6f43ca241fc96b2edf230db58bcde5b974b8dcaf" @@ -2692,13 +2622,20 @@ dependencies: tinyspy "^2.2.0" -"@vitest/spy@2.1.1", "@vitest/spy@^2.1.0-beta.1": +"@vitest/spy@2.1.1": version "2.1.1" resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-2.1.1.tgz#20891f7421a994256ea0d739ed72f05532c78488" integrity sha512-ZM39BnZ9t/xZ/nF4UwRH5il0Sw93QnZXd9NAZGRpIgj0yvVwPpLd702s/Cx955rGaMlyBQkZJ2Ir7qyY48VZ+g== dependencies: tinyspy "^3.0.0" +"@vitest/spy@^2.1.0-beta.1": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-2.1.5.tgz#f790d1394a5030644217ce73562e92465e83147e" + integrity sha512-aWZF3P0r3w6DiYTVskOYuhBc7EMc3jvn1TkBg8ttylFFRqNN2XGD7V5a4aQdk6QiUzZQ4klNBSpCLJgWNdIiNw== + dependencies: + tinyspy "^3.0.2" + "@vitest/utils@0.34.6": version "0.34.6" resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-0.34.6.tgz#38a0a7eedddb8e7291af09a2409cb8a189516968" @@ -2734,12 +2671,12 @@ dependencies: "@volar/source-map" "1.11.1" -"@volar/language-core@2.4.5", "@volar/language-core@~2.4.1": - version "2.4.5" - resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-2.4.5.tgz#af8ba724b05fc4dce2339c49662e732e9c22c897" - integrity sha512-F4tA0DCO5Q1F5mScHmca0umsi2ufKULAnMOVBfMsZdT4myhVl4WdKRwCaKcfOkIEuyrAVvtq1ESBdZ+rSyLVww== +"@volar/language-core@2.4.10", "@volar/language-core@~2.4.1", "@volar/language-core@~2.4.8": + version "2.4.10" + resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-2.4.10.tgz#7d57c29d27f7bce2fa7eb9f3a1fc053a3e28e53f" + integrity sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA== dependencies: - "@volar/source-map" "2.4.5" + "@volar/source-map" "2.4.10" "@volar/source-map@1.11.1", "@volar/source-map@~1.11.1": version "1.11.1" @@ -2748,10 +2685,10 @@ dependencies: muggle-string "^0.3.1" -"@volar/source-map@2.4.5": - version "2.4.5" - resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-2.4.5.tgz#81223a06321aaa067b40619189b44a9f0b7ac2d8" - integrity sha512-varwD7RaKE2J/Z+Zu6j3mNNJbNT394qIxXwdvz/4ao/vxOfyClZpSDtLKkwWmecinkOVos5+PWkWraelfMLfpw== +"@volar/source-map@2.4.10": + version "2.4.10" + resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-2.4.10.tgz#08cc505613f8e5d39af740e96cec5eb4553576d4" + integrity sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA== "@volar/typescript@~1.11.1": version "1.11.1" @@ -2761,24 +2698,24 @@ "@volar/language-core" "1.11.1" path-browserify "^1.0.1" -"@volar/typescript@~2.4.1": - version "2.4.5" - resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-2.4.5.tgz#1210c1e8561ac20af46348ceaf8e6e96c797063f" - integrity sha512-mcT1mHvLljAEtHviVcBuOyAwwMKz1ibXTi5uYtP/pf4XxoAzpdkQ+Br2IC0NPCvLCbjPZmbf3I0udndkfB1CDg== +"@volar/typescript@~2.4.1", "@volar/typescript@~2.4.8": + version "2.4.10" + resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-2.4.10.tgz#5d0d6476c98a3e0820731f5be36e859d48ed135f" + integrity sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw== dependencies: - "@volar/language-core" "2.4.5" + "@volar/language-core" "2.4.10" path-browserify "^1.0.1" vscode-uri "^3.0.8" "@vue-macros/common@^1.12.2": - version "1.14.0" - resolved "https://registry.yarnpkg.com/@vue-macros/common/-/common-1.14.0.tgz#c4b94fdb49aaacc72885989f2d739734476d1296" - integrity sha512-xwQhDoEXRNXobNQmdqOD20yUGdVLVLZe4zhDlT9q/E+z+mvT3wukaAoJG80XRnv/BcgOOCVpxqpkQZ3sNTgjWA== + version "1.15.0" + resolved "https://registry.yarnpkg.com/@vue-macros/common/-/common-1.15.0.tgz#42a97458698beca552a08c89e9680c3b6c5bb71b" + integrity sha512-yg5VqW7+HRfJGimdKvFYzx8zorHUYo0hzPwuraoC1DWa7HHazbTMoVsHDvk3JHa1SGfSL87fRnzmlvgjEHhszA== dependencies: - "@babel/types" "^7.25.6" - "@rollup/pluginutils" "^5.1.0" - "@vue/compiler-sfc" "^3.5.4" - ast-kit "^1.1.0" + "@babel/types" "^7.25.8" + "@rollup/pluginutils" "^5.1.2" + "@vue/compiler-sfc" "^3.5.12" + ast-kit "^1.3.0" local-pkg "^0.5.0" magic-string-ast "^0.6.2" @@ -2787,7 +2724,7 @@ resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.5.tgz#b9e195b92bfa8d15d5aa9581ca01cb702dbcc19d" integrity sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw== -"@vue/babel-plugin-jsx@^1.1.5", "@vue/babel-plugin-jsx@^1.2.2": +"@vue/babel-plugin-jsx@^1.1.5", "@vue/babel-plugin-jsx@^1.2.5": version "1.2.5" resolved "https://registry.yarnpkg.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.5.tgz#77f4f9f189d00c24ebd587ab84ae615dfa1c3abb" integrity sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg== @@ -2814,6 +2751,17 @@ "@babel/parser" "^7.25.6" "@vue/compiler-sfc" "^3.5.3" +"@vue/compiler-core@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.13.tgz#b0ae6c4347f60c03e849a05d34e5bf747c9bda05" + integrity sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q== + dependencies: + "@babel/parser" "^7.25.3" + "@vue/shared" "3.5.13" + entities "^4.5.0" + estree-walker "^2.0.2" + source-map-js "^1.2.0" + "@vue/compiler-core@3.5.6": version "3.5.6" resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.6.tgz#4a771c738fe745b61b963c41077af1405200db33" @@ -2825,7 +2773,15 @@ estree-walker "^2.0.2" source-map-js "^1.2.0" -"@vue/compiler-dom@3.5.6", "@vue/compiler-dom@^3.3.0", "@vue/compiler-dom@^3.3.4", "@vue/compiler-dom@^3.4.0": +"@vue/compiler-dom@3.5.13", "@vue/compiler-dom@^3.3.0", "@vue/compiler-dom@^3.3.4", "@vue/compiler-dom@^3.4.0", "@vue/compiler-dom@^3.5.0": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz#bb1b8758dbc542b3658dda973b98a1c9311a8a58" + integrity sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA== + dependencies: + "@vue/compiler-core" "3.5.13" + "@vue/shared" "3.5.13" + +"@vue/compiler-dom@3.5.6": version "3.5.6" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.6.tgz#0942c290d3a52eb396243850ec73005f669c210d" integrity sha512-xRXqxDrIqK8v8sSScpistyYH0qYqxakpsIvqMD2e5sV/PXQ1mTwtXp4k42yHK06KXxKSmitop9e45Ui/3BrTEw== @@ -2833,7 +2789,22 @@ "@vue/compiler-core" "3.5.6" "@vue/shared" "3.5.6" -"@vue/compiler-sfc@3.5.6", "@vue/compiler-sfc@^3.5.3", "@vue/compiler-sfc@^3.5.4": +"@vue/compiler-sfc@3.5.13", "@vue/compiler-sfc@^3.5.12", "@vue/compiler-sfc@^3.5.3": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz#461f8bd343b5c06fac4189c4fef8af32dea82b46" + integrity sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ== + dependencies: + "@babel/parser" "^7.25.3" + "@vue/compiler-core" "3.5.13" + "@vue/compiler-dom" "3.5.13" + "@vue/compiler-ssr" "3.5.13" + "@vue/shared" "3.5.13" + estree-walker "^2.0.2" + magic-string "^0.30.11" + postcss "^8.4.48" + source-map-js "^1.2.0" + +"@vue/compiler-sfc@3.5.6": version "3.5.6" resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.6.tgz#7f730002a18c7be7962741de6a40491eb59e4ad6" integrity sha512-pjWJ8Kj9TDHlbF5LywjVso+BIxCY5wVOLhkEXRhuCHDxPFIeX1zaFefKs8RYoHvkSMqRWt93a0f2gNJVJixHwg== @@ -2848,6 +2819,14 @@ postcss "^8.4.47" source-map-js "^1.2.0" +"@vue/compiler-ssr@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz#e771adcca6d3d000f91a4277c972a996d07f43ba" + integrity sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA== + dependencies: + "@vue/compiler-dom" "3.5.13" + "@vue/shared" "3.5.13" + "@vue/compiler-ssr@3.5.6": version "3.5.6" resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.6.tgz#011eb621ec27c51fea50297d872b0282e6c49133" @@ -2895,22 +2874,22 @@ superjson "^2.2.1" "@vue/devtools-kit@^7.4.4": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.4.5.tgz#e80a551d4bce4c40c38a7ef6b080e408d541d346" - integrity sha512-Uuki4Z6Bc/ExvtlPkeDNGSAe4580R+HPcVABfTE9TF7BTz3Nntk7vxIRUyWblZkUEcB/x+wn2uofyt5i2LaUew== + version "7.6.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.6.4.tgz#2a74750d5604b6b3c2fe3388a454c9eac2c6c1f4" + integrity sha512-Zs86qIXXM9icU0PiGY09PQCle4TI750IPLmAJzW5Kf9n9t5HzSYf6Rz6fyzSwmfMPiR51SUKJh9sXVZu78h2QA== dependencies: - "@vue/devtools-shared" "^7.4.5" - birpc "^0.2.17" + "@vue/devtools-shared" "^7.6.4" + birpc "^0.2.19" hookable "^5.5.3" mitt "^3.0.1" perfect-debounce "^1.0.0" speakingurl "^14.0.1" superjson "^2.2.1" -"@vue/devtools-shared@^7.4.4", "@vue/devtools-shared@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.4.5.tgz#f8f5ef73451c05922e8d18aa86d39a05ab883e94" - integrity sha512-2XgUOkL/7QDmyYI9J7cm+rz/qBhcGv+W5+i1fhwdQ0HQ1RowhdK66F0QBuJSz/5k12opJY8eN6m03/XZMs7imQ== +"@vue/devtools-shared@^7.4.4", "@vue/devtools-shared@^7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.6.4.tgz#110044c88bafee3b2daa992fd90730546dec7b11" + integrity sha512-nD6CUvBEel+y7zpyorjiUocy0nh77DThZJ0k1GRnJeOmY3ATq2fWijEp7wk37gb023Cb0R396uYh5qMSBQ5WFg== dependencies: rfdc "^1.4.1" @@ -2929,6 +2908,20 @@ path-browserify "^1.0.1" vue-template-compiler "^2.7.14" +"@vue/language-core@2.1.10": + version "2.1.10" + resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-2.1.10.tgz#5988e9ea155f3e09ccbbb3b2a0ddd530dad912e6" + integrity sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ== + dependencies: + "@volar/language-core" "~2.4.8" + "@vue/compiler-dom" "^3.5.0" + "@vue/compiler-vue2" "^2.7.16" + "@vue/shared" "^3.5.0" + alien-signals "^0.2.0" + minimatch "^9.0.3" + muggle-string "^0.4.1" + path-browserify "^1.0.1" + "@vue/language-core@2.1.6": version "2.1.6" resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-2.1.6.tgz#b48186bdb9b3ef2b83e1f76d5b1ac357b3a7ed94" @@ -2943,6 +2936,13 @@ muggle-string "^0.4.1" path-browserify "^1.0.1" +"@vue/reactivity@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.13.tgz#b41ff2bb865e093899a22219f5b25f97b6fe155f" + integrity sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg== + dependencies: + "@vue/shared" "3.5.13" + "@vue/reactivity@3.5.6": version "3.5.6" resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.6.tgz#d26fea799db554e7c1c3469be3577e0b8fd6deb6" @@ -2950,6 +2950,14 @@ dependencies: "@vue/shared" "3.5.6" +"@vue/runtime-core@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.13.tgz#1fafa4bf0b97af0ebdd9dbfe98cd630da363a455" + integrity sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw== + dependencies: + "@vue/reactivity" "3.5.13" + "@vue/shared" "3.5.13" + "@vue/runtime-core@3.5.6": version "3.5.6" resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.6.tgz#bbf8c722d5dbf55c77841d3d76ed630a4a5a573d" @@ -2958,6 +2966,16 @@ "@vue/reactivity" "3.5.6" "@vue/shared" "3.5.6" +"@vue/runtime-dom@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz#610fc795de9246300e8ae8865930d534e1246215" + integrity sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog== + dependencies: + "@vue/reactivity" "3.5.13" + "@vue/runtime-core" "3.5.13" + "@vue/shared" "3.5.13" + csstype "^3.1.3" + "@vue/runtime-dom@3.5.6": version "3.5.6" resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.6.tgz#17c190bee838cd7b4f0531dafea1accb3ba6da14" @@ -2968,6 +2986,14 @@ "@vue/shared" "3.5.6" csstype "^3.1.3" +"@vue/server-renderer@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.13.tgz#429ead62ee51de789646c22efe908e489aad46f7" + integrity sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA== + dependencies: + "@vue/compiler-ssr" "3.5.13" + "@vue/shared" "3.5.13" + "@vue/server-renderer@3.5.6": version "3.5.6" resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.6.tgz#f029aecb740c3ff6ad63dd10736875161d22dbb9" @@ -2976,7 +3002,12 @@ "@vue/compiler-ssr" "3.5.6" "@vue/shared" "3.5.6" -"@vue/shared@3.5.6", "@vue/shared@^3.3.0", "@vue/shared@^3.4.0", "@vue/shared@^3.5.5": +"@vue/shared@3.5.13", "@vue/shared@^3.3.0", "@vue/shared@^3.4.0", "@vue/shared@^3.5.0", "@vue/shared@^3.5.5": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.13.tgz#87b309a6379c22b926e696893237826f64339b6f" + integrity sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ== + +"@vue/shared@3.5.6": version "3.5.6" resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.6.tgz#602b3c2dccfe612f9e2e52e861dd7db340961a4f" integrity sha512-eidH0HInnL39z6wAt6SFIwBrvGOpDWsDxlw3rCgo1B+CQ1781WzQUSU3YjxgdkcJo9Q8S6LmXTkvI+cLHGkQfA== @@ -3187,7 +3218,7 @@ accepts@^1.3.5, accepts@~1.3.8: mime-types "~2.1.34" negotiator "0.6.3" -acorn-import-attributes@^1.9.2: +acorn-import-attributes@^1.9.5: version "1.9.5" resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef" integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== @@ -3204,7 +3235,7 @@ acorn-walk@^8.2.0, acorn-walk@^8.3.2: dependencies: acorn "^8.11.0" -acorn@8.12.1, acorn@^8.10.0, acorn@^8.11.0, acorn@^8.11.3, acorn@^8.12.1, acorn@^8.6.0, acorn@^8.8.2, acorn@^8.9.0: +acorn@8.12.1: version "8.12.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== @@ -3214,6 +3245,11 @@ acorn@^7.1.1: resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== +acorn@^8.10.0, acorn@^8.11.0, acorn@^8.14.0, acorn@^8.6.0, acorn@^8.8.2, acorn@^8.9.0: + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== + agent-base@5: version "5.1.1" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" @@ -3226,6 +3262,13 @@ agent-base@6: dependencies: debug "4" +agent-base@^7.0.2: + version "7.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" + integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== + dependencies: + debug "^4.3.4" + ajv-draft-04@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz#3b64761b268ba0b9e668f0b41ba53fce0ad77fc8" @@ -3278,6 +3321,11 @@ ajv@~8.13.0: require-from-string "^2.0.2" uri-js "^4.4.1" +alien-signals@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/alien-signals/-/alien-signals-0.2.2.tgz#439d09b363dc4d609c0f6ce69362dce068d23197" + integrity sha512-cZIRkbERILsBOXTQmMrxc9hgpxglstn69zm+F1ARf4aPAzdAFYd6sBq87ErO0Fj3DV94tglcyHG5kQz9nDC/8A== + ansi-align@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" @@ -3521,7 +3569,7 @@ asap@~2.0.3: resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== -asn1js@^3.0.1, asn1js@^3.0.5: +asn1js@^3.0.5: version "3.0.5" resolved "https://registry.yarnpkg.com/asn1js/-/asn1js-3.0.5.tgz#5ea36820443dbefb51cc7f88a2ebb5b462114f38" integrity sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ== @@ -3545,12 +3593,12 @@ assign-symbols@^1.0.0: resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== -ast-kit@^1.0.1, ast-kit@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-1.1.0.tgz#fe7c7eb44c8d01b1c7516f544d964e88f534f769" - integrity sha512-RlNqd4u6c/rJ5R+tN/ZTtyNrH8X0NHCvyt6gD8RHa3JjzxxHWoyaU0Ujk3Zjbh7IZqrYl1Sxm6XzZifmVxXxHQ== +ast-kit@^1.0.1, ast-kit@^1.3.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-1.3.1.tgz#ef2d490224f46224c4bd8550e5add03f57202463" + integrity sha512-3bIRV4s/cNAee2rKjuvYdoG+0CMqtOIgCvWrJL6zG8R0fDyMwYzStspX5JqXPbdMzM+qxHZ6g2rMHKhr3HkPlQ== dependencies: - "@babel/parser" "^7.25.3" + "@babel/parser" "^7.26.2" pathe "^1.1.2" ast-walker-scope@^0.6.2: @@ -3641,10 +3689,10 @@ axios@1.7.4: form-data "^4.0.0" proxy-from-env "^1.1.0" -b4a@^1.6.4, b4a@^1.6.6: - version "1.6.6" - resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.6.tgz#a4cc349a3851987c3c4ac2d7785c18744f6da9ba" - integrity sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg== +b4a@^1.6.4: + version "1.6.7" + resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.7.tgz#a99587d4ebbfbd5a6e3b21bdb5d5fa385767abe4" + integrity sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg== "babel-plugin-styled-components@>= 1": version "2.1.4" @@ -3685,9 +3733,9 @@ balanced-match@^1.0.0: integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== bare-events@^2.0.0, bare-events@^2.2.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.4.2.tgz#3140cca7a0e11d49b3edc5041ab560659fd8e1f8" - integrity sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q== + version "2.5.0" + resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.5.0.tgz#305b511e262ffd8b9d5616b056464f8e1b3329cc" + integrity sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A== bare-fs@^2.1.1: version "2.3.5" @@ -3711,11 +3759,10 @@ bare-path@^2.0.0, bare-path@^2.1.0: bare-os "^2.1.0" bare-stream@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/bare-stream/-/bare-stream-2.3.0.tgz#5bef1cab8222517315fca1385bd7f08dff57f435" - integrity sha512-pVRWciewGUeCyKEuRxwv06M079r+fRjAQjBEK2P6OYGrO43O+Z0LrPZZEjlc4mB6C2RpZ9AxJ1s7NLEtOHO6eA== + version "2.3.2" + resolved "https://registry.yarnpkg.com/bare-stream/-/bare-stream-2.3.2.tgz#3bc62b429bcf850d2f265719b7a49ee0630a3ae4" + integrity sha512-EFZHSIBkDgSHIwj2l2QZfP4U5OcD4xFAOwhSb/vlr9PIqyGJGvB/nfClJbcnh3EY4jtPE4zsb5ztae96bVF79A== dependencies: - b4a "^1.6.6" streamx "^2.20.0" base64-js@^1.3.1: @@ -3785,10 +3832,10 @@ bindings@^1.4.0, bindings@^1.5.0: dependencies: file-uri-to-path "1.0.0" -birpc@^0.2.17: - version "0.2.17" - resolved "https://registry.yarnpkg.com/birpc/-/birpc-0.2.17.tgz#d0bdb90d4d063061156637f03b7b0adea1779734" - integrity sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg== +birpc@^0.2.17, birpc@^0.2.19: + version "0.2.19" + resolved "https://registry.yarnpkg.com/birpc/-/birpc-0.2.19.tgz#cdd183a4a70ba103127d49765b4a71349da5a0ca" + integrity sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ== bl@^1.0.0: version "1.2.3" @@ -3908,17 +3955,7 @@ browser-fingerprint@0.0.1: resolved "https://registry.yarnpkg.com/browser-fingerprint/-/browser-fingerprint-0.0.1.tgz#8df3cdca25bf7d5b3542d61545d730053fce604a" integrity sha512-b8SXP7yOlzLUJXF8WUvIjmbJzkJC0X6OHe7J9a/SHqEBC7a9Eglag6AANSTJz82h5U582kuxm/5TPudnD68EPA== -browserslist@^4.0.0, browserslist@^4.23.0, browserslist@^4.23.1, browserslist@^4.23.3: - version "4.23.3" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.3.tgz#debb029d3c93ebc97ffbc8d9cbb03403e227c800" - integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA== - dependencies: - caniuse-lite "^1.0.30001646" - electron-to-chromium "^1.5.4" - node-releases "^2.0.18" - update-browserslist-db "^1.1.0" - -browserslist@^4.24.0: +browserslist@^4.0.0, browserslist@^4.23.0, browserslist@^4.23.3, browserslist@^4.24.0: version "4.24.2" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== @@ -3977,11 +4014,6 @@ buffer@^6.0.3: base64-js "^1.3.1" ieee754 "^1.2.1" -builtin-modules@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" - integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== - bundle-name@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-4.1.0.tgz#f3b96b34160d6431a19d7688135af7cfb8797889" @@ -4006,37 +4038,37 @@ bytes@3.1.2: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== -c12@^1.10.0, c12@^1.11.1, c12@^1.11.2: - version "1.11.2" - resolved "https://registry.yarnpkg.com/c12/-/c12-1.11.2.tgz#f8a1e30c10f4b273894a1bcb6944f76c15b56717" - integrity sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew== +c12@2.0.1, c12@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/c12/-/c12-2.0.1.tgz#5702d280b31a08abba39833494c9b1202f0f5aec" + integrity sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A== dependencies: - chokidar "^3.6.0" + chokidar "^4.0.1" confbox "^0.1.7" defu "^6.1.4" dotenv "^16.4.5" giget "^1.2.3" - jiti "^1.21.6" + jiti "^2.3.0" mlly "^1.7.1" - ohash "^1.1.3" + ohash "^1.1.4" pathe "^1.1.2" perfect-debounce "^1.0.0" pkg-types "^1.2.0" rc9 "^2.1.2" -c12@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/c12/-/c12-2.0.1.tgz#5702d280b31a08abba39833494c9b1202f0f5aec" - integrity sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A== +c12@^1.10.0, c12@^1.11.2: + version "1.11.2" + resolved "https://registry.yarnpkg.com/c12/-/c12-1.11.2.tgz#f8a1e30c10f4b273894a1bcb6944f76c15b56717" + integrity sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew== dependencies: - chokidar "^4.0.1" + chokidar "^3.6.0" confbox "^0.1.7" defu "^6.1.4" dotenv "^16.4.5" giget "^1.2.3" - jiti "^2.3.0" + jiti "^1.21.6" mlly "^1.7.1" - ohash "^1.1.4" + ohash "^1.1.3" pathe "^1.1.2" perfect-debounce "^1.0.0" pkg-types "^1.2.0" @@ -4100,7 +4132,7 @@ calculate-size@^1.1.1: resolved "https://registry.yarnpkg.com/calculate-size/-/calculate-size-1.1.1.tgz#ae7caa1c7795f82c4f035dc7be270e3581dae3ee" integrity sha512-jJZ7pvbQVM/Ss3VO789qpsypN3xmnepg242cejOAslsmlZLYw2dnj7knnNowabQ0Kzabzx56KFTy2Pot/y6FmA== -call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: +call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== @@ -4167,12 +4199,7 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001599, caniuse-lite@^1.0.30001646: - version "1.0.30001660" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001660.tgz#31218de3463fabb44d0b7607b652e56edf2e2355" - integrity sha512-GacvNTTuATm26qC74pt+ad1fW15mlQ/zuTzzY1ZoIzECTP8HURDfF43kNxPgf7H1jmelCBQTTbBNxdSXOA7Bqg== - -caniuse-lite@^1.0.30001669: +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001599, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669: version "1.0.30001680" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e" integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA== @@ -4206,9 +4233,9 @@ chai@^4.3.10: type-detect "^4.1.0" chai@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/chai/-/chai-5.1.1.tgz#f035d9792a22b481ead1c65908d14bb62ec1c82c" - integrity sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA== + version "5.1.2" + resolved "https://registry.yarnpkg.com/chai/-/chai-5.1.2.tgz#3afbc340b994ae3610ca519a6c70ace77ad4378d" + integrity sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw== dependencies: assertion-error "^2.0.1" check-error "^2.1.1" @@ -4227,7 +4254,7 @@ chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2: +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -4244,10 +4271,10 @@ chalk@^4.0.2, chalk@^4.1.1, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" - integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== +change-case@^5.4.4: + version "5.4.4" + resolved "https://registry.yarnpkg.com/change-case/-/change-case-5.4.4.tgz#0d52b507d8fb8f204343432381d1a6d7bff97a02" + integrity sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w== character-entities@^2.0.0: version "2.0.2" @@ -4344,14 +4371,7 @@ chokidar@^2.0.4: optionalDependencies: fsevents "^1.2.7" -chokidar@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.0.tgz#4d603963e5dd762dc5c7bb1cb5664e53a3002225" - integrity sha512-mxIojEAQcuEvT/lyXq+jf/3cO/KoA6z4CeNDGGevTybECPOMFCnQy3OPahluUkbqgPNGw5Bi78UC7Po6Lhy+NA== - dependencies: - readdirp "^4.0.1" - -chokidar@^4.0.1: +chokidar@^4.0.0, chokidar@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.1.tgz#4a6dff66798fb0f72a94f616abbd7e1a19f31d41" integrity sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA== @@ -4386,9 +4406,9 @@ ci-info@^1.5.0: integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== ci-info@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.0.0.tgz#65466f8b280fc019b9f50a5388115d17a63a44f2" - integrity sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg== + version "4.1.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.1.0.tgz#92319d2fa29d2620180ea5afed31f589bc98cf83" + integrity sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A== ci-logger@^7.0.0: version "7.0.0" @@ -4511,9 +4531,9 @@ codemirror-graphql@^0.12.3: graphql-language-service-parser "^1.6.5" codemirror@^5.18.2, codemirror@^5.47.0, codemirror@^5.58.1: - version "5.65.17" - resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.65.17.tgz#00d71f34c3518471ae4c0de23a2f8bb39a6df6ca" - integrity sha512-1zOsUx3lzAOu/gnMAZkQ9kpIHcPYOc9y1Fbm2UVk5UBPkdq380nhkelG0qUwm1f7wPvTbndu9ZYlug35EwAZRQ== + version "5.65.18" + resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.65.18.tgz#d7146e4271135a9b4adcd023a270185457c9c428" + integrity sha512-Gaz4gHnkbHMGgahNt3CA5HBk5lLQBqmD/pBgeB4kQU6OedZmqMBjlRF0LSrp2tJ4wlLNPm2FfaUd1pDy0mdlpA== collection-visit@^1.0.0: version "1.0.0" @@ -4573,6 +4593,11 @@ colord@^2.9.3: resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== +colorette@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" + integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== + colorette@^2.0.16: version "2.0.20" resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" @@ -4667,12 +4692,7 @@ conf@^1.1.2: pkg-up "^2.0.0" write-file-atomic "^2.3.0" -confbox@^0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.7.tgz#ccfc0a2bcae36a84838e83a3b7f770fb17d6c579" - integrity sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA== - -confbox@^0.1.8: +confbox@^0.1.7, confbox@^0.1.8: version "0.1.8" resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.8.tgz#820d73d3b3c82d9bd910652c5d4d599ef8ff8b06" integrity sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w== @@ -4744,7 +4764,7 @@ convert-source-map@^2.0.0: resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== -cookie-es@^1.1.0, cookie-es@^1.2.2: +cookie-es@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/cookie-es/-/cookie-es-1.2.2.tgz#18ceef9eb513cac1cb6c14bcbf8bdb2679b34821" integrity sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg== @@ -4754,10 +4774,10 @@ cookie-signature@1.0.6: resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== -cookie@0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" - integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== +cookie@0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.1.tgz#2f73c42142d5d5cf71310a74fc4ae61670e5dbc9" + integrity sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w== cookie@^0.4.0: version "0.4.2" @@ -4866,15 +4886,15 @@ create-require@^1.1.1: resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== -croner@^8.0.2: - version "8.1.1" - resolved "https://registry.yarnpkg.com/croner/-/croner-8.1.1.tgz#e6c1f7a4bcb867d4ef97b25168a1234a805ff414" - integrity sha512-1VdUuRnQP4drdFkS8NKvDR1NBgevm8TOuflcaZEKsxw42CxonjW/2vkj1AKlinJb4ZLwBcuWF9GiPr7FQc6AQA== +croner@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/croner/-/croner-9.0.0.tgz#1db62160142cf32eb22622e9ae27ba29156883f7" + integrity sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA== cronstrue@^2.50.0: - version "2.50.0" - resolved "https://registry.yarnpkg.com/cronstrue/-/cronstrue-2.50.0.tgz#eabba0f915f186765258b707b7a3950c663b5573" - integrity sha512-ULYhWIonJzlScCCQrPUG5uMXzXxSixty4djud9SS37DoNxDdkeRocxzHuAo4ImRBUK+mAuU5X9TSwEDccnnuPg== + version "2.51.0" + resolved "https://registry.yarnpkg.com/cronstrue/-/cronstrue-2.51.0.tgz#0d37c506eab088ab5d3b68589203b79d78df488e" + integrity sha512-7EG9VaZZ5SRbZ7m25dmP6xaS0qe9ay6wywMskFOU/lMDKa+3gZr2oeT5OUfXwRP/Bcj8wxdYJ65AHU70CI3tsw== cross-env@7.0.3: version "7.0.3" @@ -4908,18 +4928,20 @@ cross-spawn@^5.0.1, cross-spawn@^5.1.0: which "^1.2.9" cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" which "^2.0.1" -crossws@^0.2.0, crossws@^0.2.4: - version "0.2.4" - resolved "https://registry.yarnpkg.com/crossws/-/crossws-0.2.4.tgz#82a8b518bff1018ab1d21ced9e35ffbe1681ad03" - integrity sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg== +"crossws@>=0.2.0 <0.4.0", crossws@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/crossws/-/crossws-0.3.1.tgz#7980e0b6688fe23286661c3ab8deeccbaa05ca86" + integrity sha512-HsZgeVYaG+b5zA+9PbIPGq4+J/CJynJuearykPsXx4V/eMhyQ5EDVg3Ak2FBZtVXCiOLu/U7IiwDHTr9MA+IKw== + dependencies: + uncrypto "^0.1.3" cryptiles@4.1.2: version "4.1.2" @@ -5090,9 +5112,9 @@ cytoscape-cose-bilkent@^4.1.0: cose-base "^1.0.0" cytoscape@^3.28.1: - version "3.30.2" - resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.30.2.tgz#94149707fb6547a55e3b44f03ffe232706212161" - integrity sha512-oICxQsjW8uSaRmn4UK/jkczKOqTrVqt5/1WL0POiJUT2EKNc9STM4hYFHv917yu55aTBMFNRzymlJhVAiWPCxw== + version "3.30.3" + resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.30.3.tgz#1b2726bbfa6673f643488a81147354841c252352" + integrity sha512-HncJ9gGJbVtw7YXtIs3+6YAFSSiKsom0amWc33Z7QbylbY2JGMrA0yz4EwrdTScZxnwclXeEZHzO5pxoy0ZE4g== "d3-array@1 - 2": version "2.12.1" @@ -5428,10 +5450,10 @@ dayjs@^1.11.7: resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c" integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== -db0@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/db0/-/db0-0.1.4.tgz#8df1d9600b812bad0b4129ccbbb7f1b8596a5817" - integrity sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA== +db0@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/db0/-/db0-0.2.1.tgz#be1454ab48e3bb3c93b8b8ae7623a95169474bba" + integrity sha512-BWSFmLaCkfyqbSEZBQINMVNjCVfrogi7GQ2RSy1tmtfK9OXlsup6lUMwLsqSD7FbAjD04eWFdXowSHHUp6SE/Q== de-indent@^1.0.2: version "1.0.2" @@ -5445,7 +5467,7 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: dependencies: ms "2.0.0" -debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5, debug@^4.3.6: +debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5, debug@^4.3.6, debug@^4.3.7: version "4.3.7" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== @@ -5701,9 +5723,9 @@ detect-libc@^2.0.0, detect-libc@^2.0.2: integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== devalue@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/devalue/-/devalue-5.0.0.tgz#1ca0099a7d715b4d6cac3924e770ccbbc584ad98" - integrity sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA== + version "5.1.1" + resolved "https://registry.yarnpkg.com/devalue/-/devalue-5.1.1.tgz#a71887ac0f354652851752654e4bd435a53891ae" + integrity sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw== devtools-protocol@0.0.818844: version "0.0.818844" @@ -5844,12 +5866,12 @@ dot-prop@^4.1.0, dot-prop@^4.2.1: dependencies: is-obj "^1.0.0" -dot-prop@^8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-8.0.2.tgz#afda6866610684dd155a96538f8efcdf78a27f18" - integrity sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ== +dot-prop@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-9.0.0.tgz#bae5982fe6dc6b8fddb92efef4f2ddff26779e92" + integrity sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ== dependencies: - type-fest "^3.8.0" + type-fest "^4.18.2" dotenv-expand@^8.0.2: version "8.0.3" @@ -5930,15 +5952,10 @@ ejs@^3.1.6: dependencies: jake "^10.8.5" -electron-to-chromium@^1.5.4: - version "1.5.25" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.25.tgz#492ade1cde401332b9b75aa0c55fd5e1550ca66c" - integrity sha512-kMb204zvK3PsSlgvvwzI3wBIcAw15tRkYk+NQdsjdDtcQWTp2RABbMQ9rUBy8KNEOM+/E6ep+XC3AykiWZld4g== - electron-to-chromium@^1.5.41: - version "1.5.55" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.55.tgz#73684752aa2e1aa49cafb355a41386c6637e76a9" - integrity sha512-6maZ2ASDOTBtjt9FhqYPRnbvKU5tjG0IN9SztUOWYw2AzNDNpKJYLJmlK0/En4Hs/aiWnB+JZ+gW19PIGszgKg== + version "1.5.63" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.63.tgz#69444d592fbbe628d129866c2355691ea93eda3e" + integrity sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA== elkjs@^0.9.0: version "0.9.3" @@ -6000,7 +6017,7 @@ entities@^2.0.0: resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== -entities@^4.2.0, entities@^4.4.0, entities@^4.5.0: +entities@^4.2.0, entities@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== @@ -6059,6 +6076,11 @@ es-errors@^1.3.0: resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== +es-module-lexer@^1.5.4: + version "1.5.4" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.5.4.tgz#a8efec3a3da991e60efa6b633a7cad6ab8d26b78" + integrity sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw== + esbuild@^0.18.10: version "0.18.20" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6" @@ -6087,35 +6109,6 @@ esbuild@^0.18.10: "@esbuild/win32-ia32" "0.18.20" "@esbuild/win32-x64" "0.18.20" -esbuild@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" - integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== - optionalDependencies: - "@esbuild/aix-ppc64" "0.20.2" - "@esbuild/android-arm" "0.20.2" - "@esbuild/android-arm64" "0.20.2" - "@esbuild/android-x64" "0.20.2" - "@esbuild/darwin-arm64" "0.20.2" - "@esbuild/darwin-x64" "0.20.2" - "@esbuild/freebsd-arm64" "0.20.2" - "@esbuild/freebsd-x64" "0.20.2" - "@esbuild/linux-arm" "0.20.2" - "@esbuild/linux-arm64" "0.20.2" - "@esbuild/linux-ia32" "0.20.2" - "@esbuild/linux-loong64" "0.20.2" - "@esbuild/linux-mips64el" "0.20.2" - "@esbuild/linux-ppc64" "0.20.2" - "@esbuild/linux-riscv64" "0.20.2" - "@esbuild/linux-s390x" "0.20.2" - "@esbuild/linux-x64" "0.20.2" - "@esbuild/netbsd-x64" "0.20.2" - "@esbuild/openbsd-x64" "0.20.2" - "@esbuild/sunos-x64" "0.20.2" - "@esbuild/win32-arm64" "0.20.2" - "@esbuild/win32-ia32" "0.20.2" - "@esbuild/win32-x64" "0.20.2" - esbuild@^0.21.3: version "0.21.5" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" @@ -6175,7 +6168,37 @@ esbuild@^0.23.1: "@esbuild/win32-ia32" "0.23.1" "@esbuild/win32-x64" "0.23.1" -escalade@^3.1.1, escalade@^3.1.2, escalade@^3.2.0: +esbuild@^0.24.0: + version "0.24.0" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.24.0.tgz#f2d470596885fcb2e91c21eb3da3b3c89c0b55e7" + integrity sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ== + optionalDependencies: + "@esbuild/aix-ppc64" "0.24.0" + "@esbuild/android-arm" "0.24.0" + "@esbuild/android-arm64" "0.24.0" + "@esbuild/android-x64" "0.24.0" + "@esbuild/darwin-arm64" "0.24.0" + "@esbuild/darwin-x64" "0.24.0" + "@esbuild/freebsd-arm64" "0.24.0" + "@esbuild/freebsd-x64" "0.24.0" + "@esbuild/linux-arm" "0.24.0" + "@esbuild/linux-arm64" "0.24.0" + "@esbuild/linux-ia32" "0.24.0" + "@esbuild/linux-loong64" "0.24.0" + "@esbuild/linux-mips64el" "0.24.0" + "@esbuild/linux-ppc64" "0.24.0" + "@esbuild/linux-riscv64" "0.24.0" + "@esbuild/linux-s390x" "0.24.0" + "@esbuild/linux-x64" "0.24.0" + "@esbuild/netbsd-x64" "0.24.0" + "@esbuild/openbsd-arm64" "0.24.0" + "@esbuild/openbsd-x64" "0.24.0" + "@esbuild/sunos-x64" "0.24.0" + "@esbuild/win32-arm64" "0.24.0" + "@esbuild/win32-ia32" "0.24.0" + "@esbuild/win32-x64" "0.24.0" + +escalade@^3.1.1, escalade@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== @@ -6322,16 +6345,16 @@ expand-template@^2.0.3: integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== express@^4.16.3: - version "4.21.0" - resolved "https://registry.yarnpkg.com/express/-/express-4.21.0.tgz#d57cb706d49623d4ac27833f1cbc466b668eb915" - integrity sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng== + version "4.21.1" + resolved "https://registry.yarnpkg.com/express/-/express-4.21.1.tgz#9dae5dda832f16b4eec941a4e44aa89ec481b281" + integrity sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ== dependencies: accepts "~1.3.8" array-flatten "1.1.1" body-parser "1.20.3" content-disposition "0.5.4" content-type "~1.0.4" - cookie "0.6.0" + cookie "0.7.1" cookie-signature "1.0.6" debug "2.6.9" depd "2.0.0" @@ -6508,9 +6531,9 @@ fast-querystring@^1.1.1: fast-decode-uri-component "^1.0.1" fast-uri@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.1.tgz#cddd2eecfc83a71c1be2cc2ef2061331be8a7134" - integrity sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw== + version "3.0.3" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.3.tgz#892a1c91802d5d7860de728f18608a0573142241" + integrity sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw== fast-url-parser@1.1.3, fast-url-parser@^1.1.3: version "1.1.3" @@ -6533,12 +6556,7 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" -fdir@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.3.0.tgz#fcca5a23ea20e767b15e081ee13b3e6488ee0bb0" - integrity sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ== - -fdir@^6.4.2: +fdir@^6.2.0, fdir@^6.3.0, fdir@^6.4.2: version "6.4.2" resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.4.2.tgz#ddaa7ce1831b161bc3657bb99cb36e1622702689" integrity sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ== @@ -6660,9 +6678,9 @@ flatpickr@^4.6.13: integrity sha512-97PMG/aywoYpB4IvbvUJi0RQi8vearvU0oov1WW3k0WZPBMrTQVqekSX5CjSG/M4Q3i6A/0FKXC7RyAoAUUSPw== flatted@^3.3.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" - integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + version "3.3.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.2.tgz#adba1448a9841bec72b42c532ea23dbbedef1a27" + integrity sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA== floating-vue@5.2.2: version "5.2.2" @@ -6691,18 +6709,18 @@ foreground-child@^3.1.0: signal-exit "^4.0.1" form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + version "3.0.2" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.2.tgz#83ad9ced7c03feaad97e293d6f6091011e1659c8" + integrity sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ== dependencies: asynckit "^0.4.0" combined-stream "^1.0.8" mime-types "^2.1.12" form-data@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" - integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + version "4.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.1.tgz#ba1076daaaa5bfd7e99c1a6cb02aa0a5cff90d48" + integrity sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw== dependencies: asynckit "^0.4.0" combined-stream "^1.0.8" @@ -7037,17 +7055,6 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.1.3, glob@^7.2.0: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^8.0.3: - version "8.1.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^5.0.1" - once "^1.3.0" - global-directory@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/global-directory/-/global-directory-4.0.1.tgz#4d7ac7cfd2cb73f304c53b8810891748df5e361e" @@ -7079,7 +7086,7 @@ globby@^11.0.3: merge2 "^1.4.1" slash "^3.0.0" -globby@^14.0.1, globby@^14.0.2: +globby@^14.0.2: version "14.0.2" resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.2.tgz#06554a54ccfe9264e5a9ff8eded46aa1e306482f" integrity sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw== @@ -7314,21 +7321,21 @@ gzip-size@^7.0.0: dependencies: duplexer "^0.1.2" -h3@^1.10.0, h3@^1.10.2, h3@^1.11.1, h3@^1.12.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/h3/-/h3-1.12.0.tgz#9d7f05f08a997d263e484b02436cb027df3026d8" - integrity sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA== +h3@^1.10.0, h3@^1.11.1, h3@^1.12.0, h3@^1.13.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/h3/-/h3-1.13.0.tgz#b5347a8936529794b6754b440e26c0ab8a60dceb" + integrity sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg== dependencies: - cookie-es "^1.1.0" - crossws "^0.2.4" + cookie-es "^1.2.2" + crossws ">=0.2.0 <0.4.0" defu "^6.1.4" destr "^2.0.3" - iron-webcrypto "^1.1.1" - ohash "^1.1.3" + iron-webcrypto "^1.2.1" + ohash "^1.1.4" radix3 "^1.1.2" - ufo "^1.5.3" + ufo "^1.5.4" uncrypto "^0.1.3" - unenv "^1.9.0" + unenv "^1.10.0" handlebars@^4.7.7, handlebars@^4.7.8: version "4.7.8" @@ -7458,9 +7465,9 @@ he@1.2.0, he@^1.2.0: integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== heroicons@^2.0.18: - version "2.1.5" - resolved "https://registry.yarnpkg.com/heroicons/-/heroicons-2.1.5.tgz#74664e5b06b7c5cfbe1f7e3d25ce51ee1a6f5b76" - integrity sha512-XLq3m45bJphmWdR6im52alaYajp0/fluJa2+7xh3x7CgItumbLsjhKYe+mCf0lErXLy7ZyiEgKIty2gFNxhoyA== + version "2.2.0" + resolved "https://registry.yarnpkg.com/heroicons/-/heroicons-2.2.0.tgz#f1f554155152b4ec4d1b7165363d7c583690f77d" + integrity sha512-yOwvztmNiBWqR946t+JdgZmyzEmnRMC2nxvHFC90bF1SUttwB6yJKYeme1JeEcBfobdOs827nCyiWBS2z/brog== history@^4.7.2: version "4.10.1" @@ -7651,6 +7658,14 @@ https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: agent-base "6" debug "4" +https-proxy-agent@^7.0.4: + version "7.0.5" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" + integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== + dependencies: + agent-base "^7.0.2" + debug "4" + httpxy@^0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/httpxy/-/httpxy-0.1.5.tgz#fd2401206e0b5d919aeda25e967ece0f1a6c8569" @@ -7712,6 +7727,11 @@ immutable@^4.0.0, immutable@^4.0.0-rc.9: resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.7.tgz#c70145fc90d89fb02021e65c84eb0226e4e5a381" integrity sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw== +immutable@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-5.0.2.tgz#bb8a987349a73efbe6b3b292a9cbaf1b530d296b" + integrity sha512-1NU7hWZDkV7hJ4PJ9dur9gTNQ4ePNPN4k9/0YhwjzykTi/+3Q5pF93YU5QoVj8BuOnhLgaY8gs0U2pj4kSYVcw== + import-fresh@^3.2.1: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" @@ -7751,6 +7771,11 @@ indent-string@^3.0.0: resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" integrity sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ== +index-to-position@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/index-to-position/-/index-to-position-0.1.2.tgz#e11bfe995ca4d8eddb1ec43274488f3c201a7f09" + integrity sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g== + inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -7863,7 +7888,7 @@ ipx@^2.1.0: unstorage "^1.10.1" xss "^1.0.14" -iron-webcrypto@^1.1.1: +iron-webcrypto@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz#aa60ff2aa10550630f4c0b11fd2442becdb35a6f" integrity sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg== @@ -7912,13 +7937,6 @@ is-buffer@^1.1.5: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-builtin-module@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz#f03271717d8654cfcaf07ab0463faa3571581169" - integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A== - dependencies: - builtin-modules "^3.3.0" - is-ci@^1.0.10: version "1.2.1" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" @@ -8300,7 +8318,7 @@ jiti@^1.21.0, jiti@^1.21.6: resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== -jiti@^2.3.0, jiti@^2.3.1, jiti@^2.4.0: +jiti@^2.1.2, jiti@^2.3.0, jiti@^2.3.1, jiti@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.4.0.tgz#393d595fb6031a11d11171b5e4fc0b989ba3e053" integrity sha512-H5UpaUI+aHOqZXlYOaFP/8AzKsg+guWu+Pr3Y8i7+Y3zr1aXAvCvTAQ1RxSc6oVD8R8c7brgNtTVP91E7upH/g== @@ -8331,6 +8349,11 @@ js-cookie@^3.0.5: resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-3.0.5.tgz#0b7e2fd0c01552c58ba86e0841f94dc2557dcdbc" integrity sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw== +js-levenshtein@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" + integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== + "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -8385,11 +8408,6 @@ jsdom@22.1.0: ws "^8.13.0" xml-name-validator "^4.0.0" -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - jsesc@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" @@ -8684,27 +8702,27 @@ linkify-it@^3.0.1: dependencies: uc.micro "^1.0.1" -listhen@^1.5.6, listhen@^1.7.2: - version "1.7.2" - resolved "https://registry.yarnpkg.com/listhen/-/listhen-1.7.2.tgz#66b81740692269d5d8cafdc475020f2fc51afbae" - integrity sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g== +listhen@^1.5.6, listhen@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/listhen/-/listhen-1.9.0.tgz#59355f7e4fc1eefda6bc494ae7e9ed13aa7658ef" + integrity sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg== dependencies: "@parcel/watcher" "^2.4.1" "@parcel/watcher-wasm" "^2.4.1" citty "^0.1.6" clipboardy "^4.0.0" consola "^3.2.3" - crossws "^0.2.0" + crossws ">=0.2.0 <0.4.0" defu "^6.1.4" get-port-please "^3.1.2" - h3 "^1.10.2" + h3 "^1.12.0" http-shutdown "^1.2.2" - jiti "^1.21.0" - mlly "^1.6.1" + jiti "^2.1.2" + mlly "^1.7.1" node-forge "^1.3.1" pathe "^1.1.2" std-env "^3.7.0" - ufo "^1.4.0" + ufo "^1.5.4" untun "^0.1.3" uqr "^0.1.2" @@ -8735,12 +8753,12 @@ local-pkg@^0.4.3: integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== local-pkg@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.5.0.tgz#093d25a346bae59a99f80e75f6e9d36d7e8c925c" - integrity sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg== + version "0.5.1" + resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.5.1.tgz#69658638d2a95287534d4c2fff757980100dbb6d" + integrity sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ== dependencies: - mlly "^1.4.2" - pkg-types "^1.0.3" + mlly "^1.7.3" + pkg-types "^1.2.1" locate-path@^2.0.0: version "2.0.0" @@ -8873,11 +8891,9 @@ loupe@^2.3.6, loupe@^2.3.7: get-func-name "^2.0.1" loupe@^3.1.0, loupe@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/loupe/-/loupe-3.1.1.tgz#71d038d59007d890e3247c5db97c1ec5a92edc54" - integrity sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw== - dependencies: - get-func-name "^2.0.1" + version "3.1.2" + resolved "https://registry.yarnpkg.com/loupe/-/loupe-3.1.2.tgz#c86e0696804a02218f2206124c45d8b15291a240" + integrity sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg== lower-case@^2.0.2: version "2.0.2" @@ -8925,10 +8941,10 @@ magic-string-ast@^0.6.2: dependencies: magic-string "^0.30.10" -magic-string@^0.30.0, magic-string@^0.30.1, magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.5, magic-string@^0.30.8: - version "0.30.11" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.11.tgz#301a6f93b3e8c2cb13ac1a7a673492c0dfd12954" - integrity sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A== +magic-string@^0.30.0, magic-string@^0.30.1, magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.12, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.5, magic-string@^0.30.8: + version "0.30.13" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.13.tgz#92438e3ff4946cf54f18247c981e5c161c46683c" + integrity sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g== dependencies: "@jridgewell/sourcemap-codec" "^1.5.0" @@ -9338,7 +9354,7 @@ micromatch@^3.1.10, micromatch@^3.1.4: snapdragon "^0.8.1" to-regex "^3.0.2" -micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: +micromatch@^4.0.4, micromatch@^4.0.5, micromatch@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== @@ -9380,7 +9396,7 @@ mime@^3.0.0: resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== -mime@^4.0.3: +mime@^4.0.4: version "4.0.4" resolved "https://registry.yarnpkg.com/mime/-/mime-4.0.4.tgz#9f851b0fc3c289d063b20a7a8055b3014b25664b" integrity sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ== @@ -9522,24 +9538,14 @@ mkdirp@^1.0.3: resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mlly@^1.3.0, mlly@^1.4.0, mlly@^1.4.2, mlly@^1.6.1, mlly@^1.7.1: - version "1.7.1" - resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.7.1.tgz#e0336429bb0731b6a8e887b438cbdae522c8f32f" - integrity sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA== - dependencies: - acorn "^8.11.3" - pathe "^1.1.2" - pkg-types "^1.1.1" - ufo "^1.5.3" - -mlly@^1.7.2: - version "1.7.2" - resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.7.2.tgz#21c0d04543207495b8d867eff0ac29fac9a023c0" - integrity sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA== +mlly@^1.3.0, mlly@^1.4.0, mlly@^1.6.1, mlly@^1.7.1, mlly@^1.7.2, mlly@^1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.7.3.tgz#d86c0fcd8ad8e16395eb764a5f4b831590cee48c" + integrity sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A== dependencies: - acorn "^8.12.1" + acorn "^8.14.0" pathe "^1.1.2" - pkg-types "^1.2.0" + pkg-types "^1.2.1" ufo "^1.5.4" monaco-editor@0.50.0: @@ -9597,9 +9603,9 @@ mz@^2.7.0: thenify-all "^1.0.0" nan@^2.12.1: - version "2.20.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.20.0.tgz#08c5ea813dd54ed16e5bd6505bf42af4f7838ca3" - integrity sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw== + version "2.22.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.22.0.tgz#31bc433fc33213c97bad36404bb68063de604de3" + integrity sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw== nanoid@^3.3.4, nanoid@^3.3.7: version "3.3.7" @@ -9607,9 +9613,9 @@ nanoid@^3.3.4, nanoid@^3.3.7: integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== nanoid@^5.0.7: - version "5.0.7" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.0.7.tgz#6452e8c5a816861fd9d2b898399f7e5fd6944cc6" - integrity sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ== + version "5.0.8" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.0.8.tgz#7610003f6b3b761b5c244bb342c112c5312512bf" + integrity sha512-TcJPw+9RV9dibz1hHUzlLVy8N4X9TnwirAjrU08Juo6BNKggzVfP2ZJ/3ZUSq15Xl5i85i+Z89XBO90pB2PghQ== nanomatch@^1.2.9: version "1.2.13" @@ -9654,75 +9660,77 @@ neo-async@^2.6.2: integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== nitropack@^2.9.7: - version "2.9.7" - resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.9.7.tgz#66da772d14d0e364dd17adbd439f0b1e44112a8d" - integrity sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw== + version "2.10.4" + resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.10.4.tgz#f7eb092bf7296257bf2426c45134fba61373e026" + integrity sha512-sJiG/MIQlZCVSw2cQrFG1H6mLeSqHlYfFerRjLKz69vUfdu0EL2l0WdOxlQbzJr3mMv/l4cOlCCLzVRzjzzF/g== dependencies: "@cloudflare/kv-asset-handler" "^0.3.4" - "@netlify/functions" "^2.8.0" - "@rollup/plugin-alias" "^5.1.0" - "@rollup/plugin-commonjs" "^25.0.8" + "@netlify/functions" "^2.8.2" + "@rollup/plugin-alias" "^5.1.1" + "@rollup/plugin-commonjs" "^28.0.1" "@rollup/plugin-inject" "^5.0.5" "@rollup/plugin-json" "^6.1.0" - "@rollup/plugin-node-resolve" "^15.2.3" - "@rollup/plugin-replace" "^5.0.7" + "@rollup/plugin-node-resolve" "^15.3.0" + "@rollup/plugin-replace" "^6.0.1" "@rollup/plugin-terser" "^0.4.4" - "@rollup/pluginutils" "^5.1.0" - "@types/http-proxy" "^1.17.14" - "@vercel/nft" "^0.26.5" + "@rollup/pluginutils" "^5.1.3" + "@types/http-proxy" "^1.17.15" + "@vercel/nft" "^0.27.5" archiver "^7.0.1" - c12 "^1.11.1" - chalk "^5.3.0" + c12 "2.0.1" chokidar "^3.6.0" citty "^0.1.6" + compatx "^0.1.8" + confbox "^0.1.8" consola "^3.2.3" - cookie-es "^1.1.0" - croner "^8.0.2" - crossws "^0.2.4" - db0 "^0.1.4" + cookie-es "^1.2.2" + croner "^9.0.0" + crossws "^0.3.1" + db0 "^0.2.1" defu "^6.1.4" destr "^2.0.3" - dot-prop "^8.0.2" - esbuild "^0.20.2" + dot-prop "^9.0.0" + esbuild "^0.24.0" escape-string-regexp "^5.0.0" etag "^1.8.1" fs-extra "^11.2.0" - globby "^14.0.1" + globby "^14.0.2" gzip-size "^7.0.0" - h3 "^1.12.0" + h3 "^1.13.0" hookable "^5.5.3" httpxy "^0.1.5" ioredis "^5.4.1" - jiti "^1.21.6" + jiti "^2.4.0" klona "^2.0.6" knitwork "^1.1.0" - listhen "^1.7.2" - magic-string "^0.30.10" - mime "^4.0.3" - mlly "^1.7.1" - mri "^1.2.0" + listhen "^1.9.0" + magic-string "^0.30.12" + magicast "^0.3.5" + mime "^4.0.4" + mlly "^1.7.2" node-fetch-native "^1.6.4" - ofetch "^1.3.4" - ohash "^1.1.3" - openapi-typescript "^6.7.6" + ofetch "^1.4.1" + ohash "^1.1.4" + openapi-typescript "^7.4.2" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.1.1" + pkg-types "^1.2.1" pretty-bytes "^6.1.1" radix3 "^1.1.2" - rollup "^4.18.0" + rollup "^4.24.3" rollup-plugin-visualizer "^5.12.0" scule "^1.3.0" - semver "^7.6.2" + semver "^7.6.3" serve-placeholder "^2.0.2" - serve-static "^1.15.0" + serve-static "^1.16.2" std-env "^3.7.0" - ufo "^1.5.3" + ufo "^1.5.4" uncrypto "^0.1.3" unctx "^2.3.1" - unenv "^1.9.0" - unimport "^3.7.2" - unstorage "^1.10.2" + unenv "^1.10.0" + unimport "^3.13.1" + unstorage "^1.13.1" + untyped "^1.5.1" unwasm "^0.3.9" no-case@^3.0.4: @@ -9734,9 +9742,9 @@ no-case@^3.0.4: tslib "^2.0.3" node-abi@^3.3.0: - version "3.67.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.67.0.tgz#1d159907f18d18e18809dbbb5df47ed2426a08df" - integrity sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw== + version "3.71.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.71.0.tgz#52d84bbcd8575efb71468fbaa1f9a49b2c242038" + integrity sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw== dependencies: semver "^7.3.5" @@ -9788,9 +9796,9 @@ node-forge@^1.3.1: integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== node-gyp-build@^4.2.2: - version "4.8.2" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.2.tgz#4f802b71c1ab2ca16af830e6c1ea7dd1ad9496fa" - integrity sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw== + version "4.8.3" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.3.tgz#9187216d24dbee29e44eb20d2ebf62a296bbea1a" + integrity sha512-EMS95CMJzdoSKoIiXo8pxKoL8DYxwIZXYlLmgPb8KUv794abpnLK6ynsCAWNliOjREKruYKdzbh76HHYUHX7nw== node-html-parser@^5.3.3: version "5.4.2" @@ -9930,11 +9938,9 @@ nullthrows@^1.0.0: integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== nuxi@^3.13.2: - version "3.13.2" - resolved "https://registry.yarnpkg.com/nuxi/-/nuxi-3.13.2.tgz#6c29ff067f78eddf9f118b2e321ffbab27123faf" - integrity sha512-yAgpxBcIB2/DWL7dWRZOQa5ULLZQ4AWgYdqtUDbeOZ3KxmY/+fqm8/UJuU7QK81JrccNaZeSI+GLe5BY7RR3cQ== - optionalDependencies: - fsevents "~2.3.3" + version "3.15.0" + resolved "https://registry.yarnpkg.com/nuxi/-/nuxi-3.15.0.tgz#ed54923ca46727c6e7df10495143db340d9791c9" + integrity sha512-ZVu45nuDrdb7nzKW2kLGY/N1vvFYLLbUVX6gUYw4BApKGGu4+GktTR5o48dGVgMYX9A8chaugl7TL9ZYmwC9Mg== nuxt-gtag@3.0.1: version "3.0.1" @@ -10017,14 +10023,14 @@ nuxt@3.13.2: vue-router "^4.4.5" nwsapi@^2.2.4: - version "2.2.12" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.12.tgz#fb6af5c0ec35b27b4581eb3bbad34ec9e5c696f8" - integrity sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w== + version "2.2.13" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.13.tgz#e56b4e98960e7a040e5474536587e599c4ff4655" + integrity sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ== nypm@^0.3.11, nypm@^0.3.8: - version "0.3.11" - resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.11.tgz#57e9a91bbf1dd357add633b1abca90df7a908456" - integrity sha512-E5GqaAYSnbb6n1qZyik2wjPDZON43FqOJO59+3OkWrnmQtjggrMOVnsyzfjxp/tS6nlYJBA4zRA5jSM2YaadMg== + version "0.3.12" + resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.12.tgz#37541bec0af3a37d3acd81d6662c6666e650b22e" + integrity sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA== dependencies: citty "^0.1.6" consola "^3.2.3" @@ -10053,9 +10059,9 @@ object-hash@^3.0.0: integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== object-inspect@^1.13.1: - version "1.13.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" - integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== + version "1.13.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== object-is@^1.1.5: version "1.1.6" @@ -10084,14 +10090,14 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" -ofetch@^1.3.3, ofetch@^1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/ofetch/-/ofetch-1.3.4.tgz#7ea65ced3c592ec2b9906975ae3fe1d26a56f635" - integrity sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw== +ofetch@^1.3.3, ofetch@^1.3.4, ofetch@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/ofetch/-/ofetch-1.4.1.tgz#b6bf6b0d75ba616cef6519dd8b6385a8bae480ec" + integrity sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw== dependencies: destr "^2.0.3" - node-fetch-native "^1.6.3" - ufo "^1.5.3" + node-fetch-native "^1.6.4" + ufo "^1.5.4" ohash@^1.1.3, ohash@^1.1.4: version "1.1.4" @@ -10165,16 +10171,16 @@ open@^8.4.0: is-docker "^2.1.1" is-wsl "^2.2.0" -openapi-typescript@^6.7.6: - version "6.7.6" - resolved "https://registry.yarnpkg.com/openapi-typescript/-/openapi-typescript-6.7.6.tgz#4f387199203bd7bfb94545cbc613751b52e3fa37" - integrity sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw== +openapi-typescript@^7.4.2: + version "7.4.3" + resolved "https://registry.yarnpkg.com/openapi-typescript/-/openapi-typescript-7.4.3.tgz#269c367929e8580dae2f7ef2d68bb39ffa30fa47" + integrity sha512-xTIjMIIOv9kNhsr8JxaC00ucbIY/6ZwuJPJBZMSh5FA2dicZN5uM805DWVJojXdom8YI4AQTavPDPHMx/3g0vQ== dependencies: + "@redocly/openapi-core" "^1.25.9" ansi-colors "^4.1.3" - fast-glob "^3.3.2" - js-yaml "^4.1.0" + change-case "^5.4.4" + parse-json "^8.1.0" supports-color "^9.4.0" - undici "^5.28.4" yargs-parser "^21.1.1" opener@^1.5.1: @@ -10322,9 +10328,9 @@ pa11y@^6.2.3: semver "~7.3.5" package-json-from-dist@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz#e501cd3094b278495eb4258d4c9f6d5ac3019f00" - integrity sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw== + version "1.0.1" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" + integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== package-json@^4.0.0: version "4.0.1" @@ -10337,9 +10343,9 @@ package-json@^4.0.0: semver "^5.1.0" package-manager-detector@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-0.2.0.tgz#160395cd5809181f5a047222319262b8c2d8aaea" - integrity sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog== + version "0.2.4" + resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-0.2.4.tgz#c541c3d45b0f5008135b0ee7dc0e5839f6d19439" + integrity sha512-H/OUu9/zUfP89z1APcBf2X8Us0tt8dUK4lUmKqz12QNXif3DxAs1/YqjGtcutZi1zQqeNQRWr9C+EbQnnvSSFA== param-case@^3.0.4: version "3.0.4" @@ -10396,6 +10402,15 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" +parse-json@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-8.1.0.tgz#91cdc7728004e955af9cb734de5684733b24a717" + integrity sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA== + dependencies: + "@babel/code-frame" "^7.22.13" + index-to-position "^0.1.2" + type-fest "^4.7.1" + parse-passwd@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" @@ -10416,11 +10431,11 @@ parse-url@^8.1.0: parse-path "^7.0.0" parse5-htmlparser2-tree-adapter@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz#23c2cc233bcf09bb7beba8b8a69d46b08c62c2f1" - integrity sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g== + version "7.1.0" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz#b5a806548ed893a43e24ccb42fbb78069311e81b" + integrity sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g== dependencies: - domhandler "^5.0.2" + domhandler "^5.0.3" parse5 "^7.0.0" parse5-parser-stream@^7.1.2: @@ -10431,11 +10446,11 @@ parse5-parser-stream@^7.1.2: parse5 "^7.0.0" parse5@^7.0.0, parse5@^7.1.2: - version "7.1.2" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" - integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== + version "7.2.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.2.1.tgz#8928f55915e6125f430cc44309765bf17556a33a" + integrity sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ== dependencies: - entities "^4.4.0" + entities "^4.5.0" parseurl@^1.3.2, parseurl@~1.3.3: version "1.3.3" @@ -10605,10 +10620,10 @@ perfect-debounce@^1.0.0: resolved "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz#9c2e8bc30b169cc984a58b7d5b28049839591d2a" integrity sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA== -picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" - integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== +picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1: version "2.3.1" @@ -10644,9 +10659,9 @@ pinia@2.1.7: vue-demi ">=0.14.5" pinia@>=2.1.7: - version "2.2.2" - resolved "https://registry.yarnpkg.com/pinia/-/pinia-2.2.2.tgz#dcf576c9a778187d1542c5e6a9f8b8cd5b6aea14" - integrity sha512-ja2XqFWZC36mupU4z1ZzxeTApV7DOw44cV4dhQ9sGwun+N89v/XP7+j7q6TanS1u1tdbK4r+1BUx7heMaIdagA== + version "2.2.6" + resolved "https://registry.yarnpkg.com/pinia/-/pinia-2.2.6.tgz#ff93f35b8c02033eaedc8c92ad5f10f215d6c804" + integrity sha512-vIsR8JkDN5Ga2vAxqOE2cJj4VtsHnzpR1Fz30kClxlh0yCHfec6uoMeM3e/ddqmwFUejK3NlrcQa/shnpyT4hA== dependencies: "@vue/devtools-api" "^6.6.3" vue-demi "^0.14.10" @@ -10675,16 +10690,7 @@ pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" -pkg-types@^1.0.3, pkg-types@^1.1.1, pkg-types@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.2.0.tgz#d0268e894e93acff11a6279de147e83354ebd42d" - integrity sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA== - dependencies: - confbox "^0.1.7" - mlly "^1.7.1" - pathe "^1.1.2" - -pkg-types@^1.2.1: +pkg-types@^1.0.3, pkg-types@^1.2.0, pkg-types@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.2.1.tgz#6ac4e455a5bb4b9a6185c1c79abd544c901db2e5" integrity sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw== @@ -10714,6 +10720,11 @@ playwright@1.48.0: optionalDependencies: fsevents "2.3.2" +pluralize@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" + integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== + portfinder@^1.0.26, portfinder@^1.0.28: version "1.0.32" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.32.tgz#2fe1b9e58389712429dc2bea5beb2146146c7f81" @@ -10803,7 +10814,7 @@ postcss-js@^4.0.1: dependencies: camelcase-css "^2.0.1" -postcss-load-config@^4.0.1: +postcss-load-config@^4.0.1, postcss-load-config@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3" integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ== @@ -10862,7 +10873,7 @@ postcss-minify-selectors@^7.0.4: cssesc "^3.0.0" postcss-selector-parser "^6.1.2" -postcss-nested@^6.0.1: +postcss-nested@^6.0.1, postcss-nested@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.2.0.tgz#4c2d22ab5f20b9cb61e2c5c5915950784d068131" integrity sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ== @@ -11013,13 +11024,13 @@ postcss@8.4.39: picocolors "^1.0.1" source-map-js "^1.2.0" -postcss@^8.4.23, postcss@^8.4.27, postcss@^8.4.38, postcss@^8.4.43, postcss@^8.4.47: - version "8.4.47" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" - integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== +postcss@^8.4.23, postcss@^8.4.27, postcss@^8.4.38, postcss@^8.4.43, postcss@^8.4.47, postcss@^8.4.48: + version "8.4.49" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" + integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== dependencies: nanoid "^3.3.7" - picocolors "^1.1.0" + picocolors "^1.1.1" source-map-js "^1.2.1" prebuild-install@^7.1.1: @@ -11162,9 +11173,11 @@ pseudomap@^1.0.2: integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== psl@^1.1.33: - version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + version "1.10.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.10.0.tgz#1450f7e16f922c3beeb7bd9db3f312635018fa15" + integrity sha512-KSKHEbjAnpUuAUserOq0FxGXCUrzC3WniuSJhvdbs102rL55266ZcHBqLWOsG30spQMlPdpy7icATiAQehg/iA== + dependencies: + punycode "^2.3.1" pump@^3.0.0: version "3.0.2" @@ -11179,7 +11192,7 @@ punycode@^1.3.2: resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== -punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.0: +punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.0, punycode@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== @@ -11232,13 +11245,20 @@ pvutils@^1.1.3: resolved "https://registry.yarnpkg.com/pvutils/-/pvutils-1.1.3.tgz#f35fc1d27e7cd3dfbd39c0826d173e806a03f5a3" integrity sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ== -qs@6.13.0, qs@^6.4.0: +qs@6.13.0: version "6.13.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== dependencies: side-channel "^1.0.6" +qs@^6.4.0: + version "6.13.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.1.tgz#3ce5fc72bd3a8171b85c99b93c65dd20b7d1b16e" + integrity sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg== + dependencies: + side-channel "^1.0.6" + query-string@5: version "5.1.1" resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb" @@ -11612,9 +11632,9 @@ readdirp@^2.2.1: readable-stream "^2.0.2" readdirp@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.0.1.tgz#b2fe35f8dca63183cd3b86883ecc8f720ea96ae6" - integrity sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw== + version "4.0.2" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.0.2.tgz#388fccb8b75665da3abffe2d8f8ed59fe74c230a" + integrity sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA== readdirp@~3.6.0: version "3.6.0" @@ -11731,14 +11751,14 @@ regex-not@^1.0.0, regex-not@^1.0.2: safe-regex "^1.1.0" regexp.prototype.flags@^1.5.1: - version "1.5.2" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" - integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== + version "1.5.3" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz#b3ae40b1d2499b8350ab2c3fe6ef3845d3a96f42" + integrity sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ== dependencies: - call-bind "^1.0.6" + call-bind "^1.0.7" define-properties "^1.2.1" es-errors "^1.3.0" - set-function-name "^2.0.1" + set-function-name "^2.0.2" registry-auth-token@^3.0.1: version "3.4.0" @@ -11832,7 +11852,7 @@ resolve-url@^0.2.1: resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== -resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.22.1, resolve@^1.22.2, resolve@~1.22.1, resolve@~1.22.2: +resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.22.1, resolve@^1.22.2, resolve@^1.22.8, resolve@~1.22.1, resolve@~1.22.2: version "1.22.8" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== @@ -11902,35 +11922,37 @@ rollup-plugin-visualizer@^5.12.0: yargs "^17.5.1" rollup@^3.27.1: - version "3.29.4" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.4.tgz#4d70c0f9834146df8705bfb69a9a19c9e1109981" - integrity sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw== + version "3.29.5" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.5.tgz#8a2e477a758b520fb78daf04bca4c522c1da8a54" + integrity sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w== optionalDependencies: fsevents "~2.3.2" -rollup@^4.18.0, rollup@^4.20.0: - version "4.21.3" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.3.tgz#c64ba119e6aeb913798a6f7eef2780a0df5a0821" - integrity sha512-7sqRtBNnEbcBtMeRVc6VRsJMmpI+JU1z9VTvW8D4gXIYQFz0aLcsE6rRkyghZkLfEgUZgVvOG7A5CVz/VW5GIA== +rollup@^4.20.0, rollup@^4.24.3: + version "4.27.3" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.27.3.tgz#078ecb20830c1de1f5486607f3e2f490269fb98a" + integrity sha512-SLsCOnlmGt9VoZ9Ek8yBK8tAdmPHeppkw+Xa7yDlCEhDTvwYei03JlWo1fdc7YTfLZ4tD8riJCUyAgTbszk1fQ== dependencies: - "@types/estree" "1.0.5" + "@types/estree" "1.0.6" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.21.3" - "@rollup/rollup-android-arm64" "4.21.3" - "@rollup/rollup-darwin-arm64" "4.21.3" - "@rollup/rollup-darwin-x64" "4.21.3" - "@rollup/rollup-linux-arm-gnueabihf" "4.21.3" - "@rollup/rollup-linux-arm-musleabihf" "4.21.3" - "@rollup/rollup-linux-arm64-gnu" "4.21.3" - "@rollup/rollup-linux-arm64-musl" "4.21.3" - "@rollup/rollup-linux-powerpc64le-gnu" "4.21.3" - "@rollup/rollup-linux-riscv64-gnu" "4.21.3" - "@rollup/rollup-linux-s390x-gnu" "4.21.3" - "@rollup/rollup-linux-x64-gnu" "4.21.3" - "@rollup/rollup-linux-x64-musl" "4.21.3" - "@rollup/rollup-win32-arm64-msvc" "4.21.3" - "@rollup/rollup-win32-ia32-msvc" "4.21.3" - "@rollup/rollup-win32-x64-msvc" "4.21.3" + "@rollup/rollup-android-arm-eabi" "4.27.3" + "@rollup/rollup-android-arm64" "4.27.3" + "@rollup/rollup-darwin-arm64" "4.27.3" + "@rollup/rollup-darwin-x64" "4.27.3" + "@rollup/rollup-freebsd-arm64" "4.27.3" + "@rollup/rollup-freebsd-x64" "4.27.3" + "@rollup/rollup-linux-arm-gnueabihf" "4.27.3" + "@rollup/rollup-linux-arm-musleabihf" "4.27.3" + "@rollup/rollup-linux-arm64-gnu" "4.27.3" + "@rollup/rollup-linux-arm64-musl" "4.27.3" + "@rollup/rollup-linux-powerpc64le-gnu" "4.27.3" + "@rollup/rollup-linux-riscv64-gnu" "4.27.3" + "@rollup/rollup-linux-s390x-gnu" "4.27.3" + "@rollup/rollup-linux-x64-gnu" "4.27.3" + "@rollup/rollup-linux-x64-musl" "4.27.3" + "@rollup/rollup-win32-arm64-msvc" "4.27.3" + "@rollup/rollup-win32-ia32-msvc" "4.27.3" + "@rollup/rollup-win32-x64-msvc" "4.27.3" fsevents "~2.3.2" rrweb-cssom@^0.6.0: @@ -12038,13 +12060,15 @@ sass@1.70.0: source-map-js ">=0.6.2 <2.0.0" sass@^1.63.5: - version "1.79.1" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.79.1.tgz#0c572e8f09cc4095c27077567f78dbb9b3dceeb2" - integrity sha512-+mA7svoNKeL0DiJqZGeR/ZGUu8he4I8o3jyUcOFyo4eBJrwNgIMmAEwCMo/N2Y3wdjOBcRzoNxZIOtrtMX8EXg== + version "1.81.0" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.81.0.tgz#a9010c0599867909dfdbad057e4a6fbdd5eec941" + integrity sha512-Q4fOxRfhmv3sqCLoGfvrC9pRV8btc0UtqL9mN6Yrv6Qi9ScL55CVH1vlPP863ISLEEMNLLuu9P+enCeGHlnzhA== dependencies: chokidar "^4.0.0" - immutable "^4.0.0" + immutable "^5.0.2" source-map-js ">=0.6.2 <2.0.0" + optionalDependencies: + "@parcel/watcher" "^2.4.1" saxes@^6.0.0: version "6.0.0" @@ -12061,7 +12085,7 @@ scheduler@^0.19.1: loose-envify "^1.1.0" object-assign "^4.1.1" -scule@^1.2.0, scule@^1.3.0: +scule@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/scule/-/scule-1.3.0.tgz#6efbd22fd0bb801bdcc585c89266a7d2daa8fbd3" integrity sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g== @@ -12100,7 +12124,7 @@ semver@^6.0.0, semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.4, semver@^7.3.5, semver@^7.5.3, semver@^7.5.4, semver@^7.6.2, semver@^7.6.3: +semver@^7.3.4, semver@^7.3.5, semver@^7.5.3, semver@^7.5.4, semver@^7.6.3: version "7.6.3" resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== @@ -12166,7 +12190,7 @@ serve-placeholder@^2.0.2: dependencies: defu "^6.1.4" -serve-static@1.16.2, serve-static@^1.15.0: +serve-static@1.16.2, serve-static@^1.16.2: version "1.16.2" resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.2.tgz#b6a5343da47f6bdd2673848bf45754941e803296" integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== @@ -12193,7 +12217,7 @@ set-function-length@^1.2.1: gopd "^1.0.1" has-property-descriptors "^1.0.2" -set-function-name@^2.0.1: +set-function-name@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== @@ -12319,10 +12343,10 @@ simple-get@^4.0.0, simple-get@^4.0.1: once "^1.3.1" simple-concat "^1.0.0" -simple-git@^3.26.0: - version "3.26.0" - resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.26.0.tgz#9ee91de402206911dcb752c65db83f5177e18121" - integrity sha512-5tbkCSzuskR6uA7uA23yjasmA0RzugVo8QM2bpsnxkrgP13eisFT7TMS4a+xKEJvbmr4qf+l0WT3eKa9IxxUyw== +simple-git@^3.27.0: + version "3.27.0" + resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.27.0.tgz#f4b09e807bda56a4a3968f635c0e4888d3decbd5" + integrity sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA== dependencies: "@kwsites/file-exists" "^1.1.1" "@kwsites/promise-deferred" "^1.1.1" @@ -12354,11 +12378,6 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slash@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" - integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== - slash@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce" @@ -12531,11 +12550,16 @@ statuses@2.0.1: resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== -std-env@3.7.0, std-env@^3.3.3, std-env@^3.5.0, std-env@^3.7.0: +std-env@3.7.0: version "3.7.0" resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.7.0.tgz#c9f7386ced6ecf13360b6c6c55b8aaa4ef7481d2" integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg== +std-env@^3.3.3, std-env@^3.5.0, std-env@^3.7.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.8.0.tgz#b56ffc1baf1a29dcc80a3bdf11d7fca7c315e7d5" + integrity sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w== + stream-combiner@~0.0.4: version "0.0.4" resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" @@ -12549,9 +12573,9 @@ streamsearch@^1.1.0: integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== streamx@^2.15.0, streamx@^2.20.0: - version "2.20.1" - resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.20.1.tgz#471c4f8b860f7b696feb83d5b125caab2fdbb93c" - integrity sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA== + version "2.20.2" + resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.20.2.tgz#6a8911959d6f307c19781a1d19ecd94b5f042d78" + integrity sha512-aDGDLU+j9tJcUdPGOaHmVF1u/hhI+CsGkT02V3OKlHDV7IukOI+nTWAGkiZEKCO35rWN1wIr4tS7YFr1f4qSvA== dependencies: fast-fifo "^1.3.2" queue-tick "^1.0.1" @@ -12760,7 +12784,7 @@ subscriptions-transport-ws@^0.9.5: symbol-observable "^1.0.4" ws "^5.2.0 || ^6.0.0 || ^7.0.0" -sucrase@^3.32.0: +sucrase@^3.32.0, sucrase@^3.35.0: version "3.35.0" resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263" integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA== @@ -12897,32 +12921,32 @@ tailwindcss@3.4.4: sucrase "^3.32.0" tailwindcss@~3.4.3: - version "3.4.12" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.12.tgz#fd3b67c6d2c04d9d7bfa13e3fc70ccef9fef0455" - integrity sha512-Htf/gHj2+soPb9UayUNci/Ja3d8pTmu9ONTfh4QY8r3MATTZOzmv6UYWF7ZwikEIC8okpfqmGqrmDehua8mF8w== + version "3.4.15" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.15.tgz#04808bf4bf1424b105047d19e7d4bfab368044a9" + integrity sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw== dependencies: "@alloc/quick-lru" "^5.2.0" arg "^5.0.2" - chokidar "^3.5.3" + chokidar "^3.6.0" didyoumean "^1.2.2" dlv "^1.1.3" - fast-glob "^3.3.0" + fast-glob "^3.3.2" glob-parent "^6.0.2" is-glob "^4.0.3" - jiti "^1.21.0" + jiti "^1.21.6" lilconfig "^2.1.0" - micromatch "^4.0.5" + micromatch "^4.0.8" normalize-path "^3.0.0" object-hash "^3.0.0" - picocolors "^1.0.0" - postcss "^8.4.23" + picocolors "^1.1.1" + postcss "^8.4.47" postcss-import "^15.1.0" postcss-js "^4.0.1" - postcss-load-config "^4.0.1" - postcss-nested "^6.0.1" - postcss-selector-parser "^6.0.11" - resolve "^1.22.2" - sucrase "^3.32.0" + postcss-load-config "^4.0.2" + postcss-nested "^6.2.0" + postcss-selector-parser "^6.1.2" + resolve "^1.22.8" + sucrase "^3.35.0" tapable@^2.2.0: version "2.2.1" @@ -13003,9 +13027,9 @@ term-size@^1.2.0: execa "^0.7.0" terser@^5.10.0, terser@^5.17.4: - version "5.33.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.33.0.tgz#8f9149538c7468ffcb1246cfec603c16720d2db1" - integrity sha512-JuPVaB7s1gdFKPKTelwUyRq5Sid2A3Gko2S0PncwdBq7kN9Ti9HPWDQ06MPsEDGsZeVESjKEnyGy68quBk1w6g== + version "5.36.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.36.0.tgz#8b0dbed459ac40ff7b4c9fd5a3a2029de105180e" + integrity sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -13013,11 +13037,9 @@ terser@^5.10.0, terser@^5.17.4: source-map-support "~0.5.20" text-decoder@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.0.tgz#85f19d4d5088e0b45cd841bdfaeac458dbffeefc" - integrity sha512-n1yg1mOj9DNpk3NeZOx7T6jchTbyJS3i3cucbNN6FcdPriMZx7NsgrGpWWdWZZGxD7ES1XB+3uoqHMgOKaN+fg== - dependencies: - b4a "^1.6.4" + version "1.2.1" + resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.1.tgz#e173f5121d97bfa3ff8723429ad5ba92e1ead67e" + integrity sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ== text-table@^0.2.0: version "0.2.0" @@ -13075,12 +13097,12 @@ tinycolor2@^1.4.2: resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e" integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw== -tinyexec@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-0.3.0.tgz#ed60cfce19c17799d4a241e06b31b0ec2bee69e6" - integrity sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg== +tinyexec@^0.3.0, tinyexec@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-0.3.1.tgz#0ab0daf93b43e2c211212396bdb836b468c97c98" + integrity sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ== -tinyglobby@0.2.6, tinyglobby@^0.2.6: +tinyglobby@0.2.6: version "0.2.6" resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.6.tgz#950baf1462d0c0b443bc3d754d0d39c2e589aaae" integrity sha512-NbBoFBpqfcgd1tCiO8Lkfdk+xrA7mlLR9zgvZcZWQQwU63XAfUePyd6wZBaU93Hqw347lHnwFzttAkemHzzz4g== @@ -13088,7 +13110,7 @@ tinyglobby@0.2.6, tinyglobby@^0.2.6: fdir "^6.3.0" picomatch "^4.0.2" -tinyglobby@^0.2.10: +tinyglobby@^0.2.10, tinyglobby@^0.2.6: version "0.2.10" resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.10.tgz#e712cf2dc9b95a1f5c5bbd159720e15833977a0f" integrity sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew== @@ -13107,9 +13129,9 @@ tinypool@^0.8.2: integrity sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ== tinypool@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-1.0.1.tgz#c64233c4fac4304e109a64340178760116dbe1fe" - integrity sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA== + version "1.0.2" + resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-1.0.2.tgz#706193cc532f4c100f66aa00b01c42173d9051b2" + integrity sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA== tinyrainbow@^1.2.0: version "1.2.0" @@ -13121,7 +13143,7 @@ tinyspy@^2.1.1, tinyspy@^2.2.0: resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-2.2.1.tgz#117b2342f1f38a0dbdcc73a50a454883adf861d1" integrity sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A== -tinyspy@^3.0.0: +tinyspy@^3.0.0, tinyspy@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-3.0.2.tgz#86dd3cf3d737b15adcf17d7887c84a75201df20a" integrity sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q== @@ -13145,11 +13167,6 @@ to-camel-case@^1.0.0: dependencies: to-space-case "^1.0.0" -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - to-no-case@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/to-no-case/-/to-no-case-1.0.2.tgz#c722907164ef6b178132c8e69930212d1b4aa16a" @@ -13275,10 +13292,10 @@ tslib@^1.10.0, tslib@^1.9.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.5.0, tslib@^2.6.1, tslib@^2.6.2: - version "2.7.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.7.0.tgz#d9b40c5c40ab59e8738f297df3087bf1a2690c01" - integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA== +tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.5.0, tslib@^2.6.1, tslib@^2.6.2, tslib@^2.7.0: + version "2.8.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== tsscmp@1.0.6: version "1.0.6" @@ -13302,10 +13319,10 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== -type-fest@^3.8.0: - version "3.13.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706" - integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g== +type-fest@^4.18.2, type-fest@^4.7.1: + version "4.27.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.27.0.tgz#57329aae32e7b27b942b961e3ef861f0873c4b1b" + integrity sha512-3IMSWgP7C5KSQqmo1wjhKrwsvXAtF33jO3QY+Uy++ia7hqvgSK6iXbbg5PbDBc1P2ZbNEDgejOrN4YooXvhwCw== type-is@^1.6.16, type-is@~1.6.18: version "1.6.18" @@ -13339,17 +13356,22 @@ typescript@5.4.2: resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.2.tgz#0ae9cebcfae970718474fe0da2c090cad6577372" integrity sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ== -typescript@5.6.2, typescript@^5.2.2: +typescript@5.6.2: version "5.6.2" resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.2.tgz#d1de67b6bef77c41823f822df8f0b3bcff60a5a0" integrity sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw== +typescript@^5.2.2: + version "5.6.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.3.tgz#5f3449e31c9d94febb17de03cc081dd56d81db5b" + integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw== + uc.micro@^1.0.1, uc.micro@^1.0.5: version "1.0.6" resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== -ufo@^1.1.2, ufo@^1.3.2, ufo@^1.4.0, ufo@^1.5.2, ufo@^1.5.3, ufo@^1.5.4: +ufo@^1.1.2, ufo@^1.3.2, ufo@^1.5.2, ufo@^1.5.3, ufo@^1.5.4: version "1.5.4" resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.4.tgz#16d6949674ca0c9e0fbbae1fa20a71d7b1ded754" integrity sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ== @@ -13387,22 +13409,15 @@ unctx@^2.3.1: magic-string "^0.30.0" unplugin "^1.3.1" -undici-types@~6.19.2: +undici-types@~6.19.8: version "6.19.8" resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== -undici@^5.28.4: - version "5.28.4" - resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.4.tgz#6b280408edb6a1a604a9b20340f45b422e373068" - integrity sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g== - dependencies: - "@fastify/busboy" "^2.0.0" - undici@^6.19.5: - version "6.19.8" - resolved "https://registry.yarnpkg.com/undici/-/undici-6.19.8.tgz#002d7c8a28f8cc3a44ff33c3d4be4d85e15d40e1" - integrity sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g== + version "6.21.0" + resolved "https://registry.yarnpkg.com/undici/-/undici-6.21.0.tgz#4b3d3afaef984e07b48e7620c34ed8a285ed4cd4" + integrity sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw== unenv@^1.10.0, unenv@^1.9.0: version "1.10.0" @@ -13415,14 +13430,14 @@ unenv@^1.10.0, unenv@^1.9.0: node-fetch-native "^1.6.4" pathe "^1.1.2" -unhead@1.11.6, unhead@^1.11.5: - version "1.11.6" - resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.11.6.tgz#2358cfe4e1d2a6f70d992a0ec57bc7ae5f6354dc" - integrity sha512-TKTQGUzHKF925VZ4KZVbLfKFzTVTEWfPLaXKmkd/ptEY2FHEoJUF7xOpAWc3K7Jzy/ExS66TL7GnLLjtd4sISg== +unhead@1.11.11, unhead@^1.11.5: + version "1.11.11" + resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.11.11.tgz#5115d42ccb4c76fa6053b5b83831a1e14de901a1" + integrity sha512-98tM2R8OWJhvS6uqTewkfIrsPqFU/VwnKpU2tVZ+jPXSWgWSLmM3K2Y2v5AEM4bZjmC/XH8pLVGzbqB7xzFI/Q== dependencies: - "@unhead/dom" "1.11.6" - "@unhead/schema" "1.11.6" - "@unhead/shared" "1.11.6" + "@unhead/dom" "1.11.11" + "@unhead/schema" "1.11.11" + "@unhead/shared" "1.11.11" hookable "^5.5.3" unicorn-magic@^0.1.0: @@ -13430,43 +13445,24 @@ unicorn-magic@^0.1.0: resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4" integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ== -unimport@^3.11.1, unimport@^3.12.0, unimport@^3.7.2: - version "3.12.0" - resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.12.0.tgz#f68e3cfbc60b488f31f4bb13c2e14e2eb58a5bce" - integrity sha512-5y8dSvNvyevsnw4TBQkIQR1Rjdbb+XjVSwQwxltpnVZrStBvvPkMPcZrh1kg5kY77kpx6+D4Ztd3W6FOBH/y2Q== - dependencies: - "@rollup/pluginutils" "^5.1.0" - acorn "^8.12.1" - escape-string-regexp "^5.0.0" - estree-walker "^3.0.3" - fast-glob "^3.3.2" - local-pkg "^0.5.0" - magic-string "^0.30.11" - mlly "^1.7.1" - pathe "^1.1.2" - pkg-types "^1.2.0" - scule "^1.3.0" - strip-literal "^2.1.0" - unplugin "^1.14.1" - -unimport@^3.13.1: - version "3.13.1" - resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.13.1.tgz#4362340e2df7edad212c693d33808189e058dded" - integrity sha512-nNrVzcs93yrZQOW77qnyOVHtb68LegvhYFwxFMfuuWScmwQmyVCG/NBuN8tYsaGzgQUVYv34E/af+Cc9u4og4A== +unimport@^3.12.0, unimport@^3.13.1: + version "3.13.2" + resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.13.2.tgz#2a5f7458c66bc65485d62ad28462d38832aee0ba" + integrity sha512-VKAepeIb6BWLtBl4tmyHY1/7rJgz3ynmZrWf8cU1a+v5Uv/k1gyyAEeGBnYcrwy8bxG5sflxEx4a9VQUqOVHUA== dependencies: - "@rollup/pluginutils" "^5.1.2" - acorn "^8.12.1" + "@rollup/pluginutils" "^5.1.3" + acorn "^8.14.0" escape-string-regexp "^5.0.0" estree-walker "^3.0.3" fast-glob "^3.3.2" local-pkg "^0.5.0" - magic-string "^0.30.11" - mlly "^1.7.1" + magic-string "^0.30.12" + mlly "^1.7.3" pathe "^1.1.2" - pkg-types "^1.2.0" + pkg-types "^1.2.1" scule "^1.3.0" strip-literal "^2.1.0" - unplugin "^1.14.1" + unplugin "^1.15.0" union-value@^1.0.0: version "1.0.1" @@ -13554,12 +13550,12 @@ unplugin-vue-router@^0.10.8: unplugin "^1.12.2" yaml "^2.5.0" -unplugin@^1.10.0, unplugin@^1.12.2, unplugin@^1.14.0, unplugin@^1.14.1, unplugin@^1.3.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.14.1.tgz#c76d6155a661e43e6a897bce6b767a1ecc344c1a" - integrity sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w== +unplugin@^1.10.0, unplugin@^1.12.2, unplugin@^1.14.0, unplugin@^1.14.1, unplugin@^1.15.0, unplugin@^1.3.1: + version "1.16.0" + resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.16.0.tgz#ca0f248bf8798cd752dd02e5b381223b737cef72" + integrity sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ== dependencies: - acorn "^8.12.1" + acorn "^8.14.0" webpack-virtual-modules "^0.6.2" unset-value@^1.0.0: @@ -13570,20 +13566,20 @@ unset-value@^1.0.0: has-value "^0.3.1" isobject "^3.0.0" -unstorage@^1.10.1, unstorage@^1.10.2, unstorage@^1.12.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.12.0.tgz#a215895dfdef01ffb8ff529bb3869dbf947d8498" - integrity sha512-ARZYTXiC+e8z3lRM7/qY9oyaOkaozCeNd2xoz7sYK9fv7OLGhVsf+BZbmASqiK/HTZ7T6eAlnVq9JynZppyk3w== +unstorage@^1.10.1, unstorage@^1.12.0, unstorage@^1.13.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.13.1.tgz#090b30de978ee8755b3ad7bbc00acfade124ac13" + integrity sha512-ELexQHUrG05QVIM/iUeQNdl9FXDZhqLJ4yP59fnmn2jGUh0TEulwOgov1ubOb3Gt2ZGK/VMchJwPDNVEGWQpRg== dependencies: anymatch "^3.1.3" chokidar "^3.6.0" + citty "^0.1.6" destr "^2.0.3" - h3 "^1.12.0" - listhen "^1.7.2" + h3 "^1.13.0" + listhen "^1.9.0" lru-cache "^10.4.3" - mri "^1.2.0" node-fetch-native "^1.6.4" - ofetch "^1.3.4" + ofetch "^1.4.1" ufo "^1.5.4" untun@^0.1.3: @@ -13595,20 +13591,7 @@ untun@^0.1.3: consola "^3.2.3" pathe "^1.1.1" -untyped@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/untyped/-/untyped-1.4.2.tgz#7945ea53357635434284e6112fd1afe84dd5dcab" - integrity sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q== - dependencies: - "@babel/core" "^7.23.7" - "@babel/standalone" "^7.23.8" - "@babel/types" "^7.23.6" - defu "^6.1.4" - jiti "^1.21.0" - mri "^1.2.0" - scule "^1.2.0" - -untyped@^1.5.1: +untyped@^1.4.2, untyped@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/untyped/-/untyped-1.5.1.tgz#2ccf3ee09419d59a44c21a192877ab45aa98361a" integrity sha512-reBOnkJBFfBZ8pCKaeHgfZLcehXtM6UTxc+vqs1JvCps0c4amLNp3fhdGBZwYp+VLyoY9n3X5KOP7lCyWBUX9A== @@ -13643,14 +13626,6 @@ upath@^1.1.1: resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== -update-browserslist-db@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e" - integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== - dependencies: - escalade "^3.1.2" - picocolors "^1.0.1" - update-browserslist-db@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" @@ -13680,6 +13655,11 @@ uqr@^0.1.2: resolved "https://registry.yarnpkg.com/uqr/-/uqr-0.1.2.tgz#5c6cd5dcff9581f9bb35b982cb89e2c483a41d7d" integrity sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA== +uri-js-replace@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uri-js-replace/-/uri-js-replace-1.0.1.tgz#c285bb352b701c9dfdaeffc4da5be77f936c9048" + integrity sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g== + uri-js@^4.2.2, uri-js@^4.4.1: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -13827,7 +13807,7 @@ vite-node@1.3.1: picocolors "^1.0.0" vite "^5.0.0" -vite-node@2.1.1, vite-node@^2.1.1: +vite-node@2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.1.tgz#7d46f623c04dfed6df34e7127711508a3386fa1c" integrity sha512-N/mGckI1suG/5wQI35XeR9rsMsPqKXzq1CdUndzVstBj/HvyxxGctwnK6WX43NGt5L3Z5tcRf83g4TITKJhPrA== @@ -13837,6 +13817,17 @@ vite-node@2.1.1, vite-node@^2.1.1: pathe "^1.1.2" vite "^5.0.0" +vite-node@^2.1.1: + version "2.1.5" + resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.5.tgz#cf28c637b2ebe65921f3118a165b7cf00a1cdf19" + integrity sha512-rd0QIgx74q4S1Rd56XIiL2cYEdyWn13cunYBIuqh9mpmQr7gGS0IxXoP8R6OaZtNQQLyXSWbd4rXKYUbhFpK5w== + dependencies: + cac "^6.7.14" + debug "^4.3.7" + es-module-lexer "^1.5.4" + pathe "^1.1.2" + vite "^5.0.0" + vite-plugin-checker@^0.8.0: version "0.8.0" resolved "https://registry.yarnpkg.com/vite-plugin-checker/-/vite-plugin-checker-0.8.0.tgz#33419857a623b35c9483e4f603d4ca8b6984acde" @@ -13920,10 +13911,10 @@ vite-plugin-monaco-editor@1.1.0: resolved "https://registry.yarnpkg.com/vite-plugin-monaco-editor/-/vite-plugin-monaco-editor-1.1.0.tgz#a6238c2e13d5e98dd54a1bc51f6f189325219de3" integrity sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww== -vite-plugin-vue-inspector@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.2.0.tgz#4c29926aa86e23492a99ac24401f4f9cd4f4c171" - integrity sha512-wWxyb9XAtaIvV/Lr7cqB1HIzmHZFVUJsTNm3yAxkS87dgh/Ky4qr2wDEWNxF23fdhVa3jQ8MZREpr4XyiuaRqA== +vite-plugin-vue-inspector@5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.1.3.tgz#b85c85c2a2d5fe5aa382039f3230068cc0837996" + integrity sha512-pMrseXIDP1Gb38mOevY+BvtNGNqiqmqa2pKB99lnLsADQww9w9xMbAfT4GB6RUoaOkSPrtlXqpq2Fq+Dj2AgFg== dependencies: "@babel/core" "^7.23.0" "@babel/plugin-proposal-decorators" "^7.23.0" @@ -13946,7 +13937,7 @@ vite@4.5.5: optionalDependencies: fsevents "~2.3.2" -vite@5.4.6, "vite@^3.0.0 || ^4.0.0 || ^5.0.0-0", "vite@^3.1.0 || ^4.0.0 || ^5.0.0-0", vite@^5.0.0, vite@^5.3.1, vite@^5.4.5: +vite@5.4.6: version "5.4.6" resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.6.tgz#85a93a1228a7fb5a723ca1743e337a2588ed008f" integrity sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q== @@ -13957,6 +13948,17 @@ vite@5.4.6, "vite@^3.0.0 || ^4.0.0 || ^5.0.0-0", "vite@^3.1.0 || ^4.0.0 || ^5.0. optionalDependencies: fsevents "~2.3.3" +"vite@^3.0.0 || ^4.0.0 || ^5.0.0-0", "vite@^3.1.0 || ^4.0.0 || ^5.0.0-0", vite@^5.0.0, vite@^5.3.1, vite@^5.4.5: + version "5.4.11" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.11.tgz#3b415cd4aed781a356c1de5a9ebafb837715f6e5" + integrity sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q== + dependencies: + esbuild "^0.21.3" + postcss "^8.4.43" + rollup "^4.20.0" + optionalDependencies: + fsevents "~2.3.3" + vitest-environment-nuxt@^1.0.0, vitest-environment-nuxt@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/vitest-environment-nuxt/-/vitest-environment-nuxt-1.0.1.tgz#e3308454af1947dbc315ce2a805a9d4fe4d1c49a" @@ -14095,16 +14097,16 @@ vscode-uri@^3.0.2, vscode-uri@^3.0.8: integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw== vue-bundle-renderer@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/vue-bundle-renderer/-/vue-bundle-renderer-2.1.0.tgz#2832511e0eb826810e20138fbc811e9c2a7c4e57" - integrity sha512-uZ+5ZJdZ/b43gMblWtcpikY6spJd0nERaM/1RtgioXNfWFbjKlUwrS8HlrddN6T2xtptmOouWclxLUkpgcVX3Q== + version "2.1.1" + resolved "https://registry.yarnpkg.com/vue-bundle-renderer/-/vue-bundle-renderer-2.1.1.tgz#77147f96d865729828b3a5dff2bccffa8370dde9" + integrity sha512-+qALLI5cQncuetYOXp4yScwYvqh8c6SMXee3B+M7oTZxOgtESP0l4j/fXdEJoZ+EdMxkGWIj+aSEyjXkOdmd7g== dependencies: - ufo "^1.5.3" + ufo "^1.5.4" vue-component-type-helpers@^2.0.0: - version "2.1.6" - resolved "https://registry.yarnpkg.com/vue-component-type-helpers/-/vue-component-type-helpers-2.1.6.tgz#f350515b252ed9e76960ac51f135636f8baef3fe" - integrity sha512-ng11B8B/ZADUMMOsRbqv0arc442q7lifSubD0v8oDXIFoMg/mXwAPUunrroIDkY+mcD0dHKccdaznSVp8EoX3w== + version "2.1.10" + resolved "https://registry.yarnpkg.com/vue-component-type-helpers/-/vue-component-type-helpers-2.1.10.tgz#9f80c56a141e85ec577cf4f0b6965a61b6f1e1ef" + integrity sha512-lfgdSLQKrUmADiSV6PbBvYgQ33KF3Ztv6gP85MfGaGaSGMTXORVaHT1EHfsqCgzRNBstPKYDmvAV9Do5CmJ07A== vue-demi@>=0.14.5, vue-demi@>=0.14.6, vue-demi@>=0.14.8, vue-demi@^0.14.10: version "0.14.10" @@ -14162,7 +14164,7 @@ vue-template-compiler@^2.6.11, vue-template-compiler@^2.7.14: de-indent "^1.0.2" he "^1.2.0" -vue-tsc@2.1.6, vue-tsc@^2.0.21: +vue-tsc@2.1.6: version "2.1.6" resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-2.1.6.tgz#d93fdc617da6546674301a746fd7089ea6d4543d" integrity sha512-f98dyZp5FOukcYmbFpuSCJ4Z0vHSOSmxGttZJCsFeX0M4w/Rsq0s4uKXjcSRsZqsRgQa6z7SfuO+y0HVICE57Q== @@ -14180,6 +14182,15 @@ vue-tsc@^1.8.20, vue-tsc@^1.8.27: "@vue/language-core" "1.8.27" semver "^7.5.4" +vue-tsc@^2.0.21: + version "2.1.10" + resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-2.1.10.tgz#4d61a64e5fad763b8b40c1884259fd48986f0b4e" + integrity sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA== + dependencies: + "@volar/typescript" "~2.4.8" + "@vue/language-core" "2.1.10" + semver "^7.5.4" + vue-types@^4.1.0: version "4.2.1" resolved "https://registry.yarnpkg.com/vue-types/-/vue-types-4.2.1.tgz#f8f7e5fb42d4a6acda6d92c9736b510e5534c753" @@ -14207,7 +14218,7 @@ vue3-cookies@^1.0.6: dependencies: vue "^3.0.0" -vue@3.5.6, vue@^3.0.0, vue@^3.4.29, vue@^3.5.5: +vue@3.5.6: version "3.5.6" resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.6.tgz#025b1d411627883577457797eff93e85e61ef9c1" integrity sha512-zv+20E2VIYbcJOzJPUWp03NOGFhMmpCKOfSxVTmCYyYFFko48H9tmuQFzYj7tu4qX1AeXlp9DmhIP89/sSxxhw== @@ -14218,6 +14229,17 @@ vue@3.5.6, vue@^3.0.0, vue@^3.4.29, vue@^3.5.5: "@vue/server-renderer" "3.5.6" "@vue/shared" "3.5.6" +vue@^3.0.0, vue@^3.4.29, vue@^3.5.5: + version "3.5.13" + resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.13.tgz#9f760a1a982b09c0c04a867903fc339c9f29ec0a" + integrity sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ== + dependencies: + "@vue/compiler-dom" "3.5.13" + "@vue/compiler-sfc" "3.5.13" + "@vue/runtime-dom" "3.5.13" + "@vue/server-renderer" "3.5.13" + "@vue/shared" "3.5.13" + vuedraggable@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/vuedraggable/-/vuedraggable-4.1.0.tgz#edece68adb8a4d9e06accff9dfc9040e66852270" @@ -14250,15 +14272,15 @@ web-worker@^1.2.0: integrity sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA== webcrypto-core@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/webcrypto-core/-/webcrypto-core-1.8.0.tgz#aaea17f3dd9c77c304e3c494eb27ca07cc72ca37" - integrity sha512-kR1UQNH8MD42CYuLzvibfakG5Ew5seG85dMMoAM/1LqvckxaF6pUiidLuraIu4V+YCIFabYecUZAW0TuxAoaqw== + version "1.8.1" + resolved "https://registry.yarnpkg.com/webcrypto-core/-/webcrypto-core-1.8.1.tgz#09d5bd8a9c48e9fbcaf412e06b1ff1a57514ce86" + integrity sha512-P+x1MvlNCXlKbLSOY4cYrdreqPG5hbzkmawbcXLKN/mf6DZW0SdNNkZ+sjwsqVkI4A4Ko2sPZmkZtCKY58w83A== dependencies: - "@peculiar/asn1-schema" "^2.3.8" + "@peculiar/asn1-schema" "^2.3.13" "@peculiar/json-schema" "^1.1.12" - asn1js "^3.0.1" + asn1js "^3.0.5" pvtsutils "^1.3.5" - tslib "^2.6.2" + tslib "^2.7.0" webidl-conversions@^3.0.0: version "3.0.1" @@ -14497,10 +14519,15 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yaml-ast-parser@0.0.43: + version "0.0.43" + resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb" + integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== + yaml@^2.3.4, yaml@^2.5.0: - version "2.5.1" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.1.tgz#c9772aacf62cb7494a95b0c4f1fb065b563db130" - integrity sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q== + version "2.6.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.0.tgz#14059ad9d0b1680d0f04d3a60fe00f3a857303c3" + integrity sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ== yargs-parser@^21.1.1: version "21.1.1" From 4a14fb109c925734ff07291215f5856761f2094c Mon Sep 17 00:00:00 2001 From: connoratrug Date: Tue, 19 Nov 2024 10:28:41 +0100 Subject: [PATCH 21/25] chore: remove double array add of scanned custom icon names --- apps/tailwind-components/pages/NuxtIcons.story.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/tailwind-components/pages/NuxtIcons.story.vue b/apps/tailwind-components/pages/NuxtIcons.story.vue index 7ab6aaadf4..d2e0a276b9 100644 --- a/apps/tailwind-components/pages/NuxtIcons.story.vue +++ b/apps/tailwind-components/pages/NuxtIcons.story.vue @@ -100,5 +100,4 @@ const selectedIconsClasses = computed( ); const customIcons = [...localIconNames]; const nuxtIcons = ["uil:github"]; -customIcons.push(...localIconNames); From 2e5db89eeeed934957829343c91e33d8915d67f4 Mon Sep 17 00:00:00 2001 From: connoratrug Date: Tue, 19 Nov 2024 10:32:18 +0100 Subject: [PATCH 22/25] chore: replace hardcoded fill color with current color for completed svg --- apps/tailwind-components/assets/icons/completed.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tailwind-components/assets/icons/completed.svg b/apps/tailwind-components/assets/icons/completed.svg index 561b6311c2..da1acf0dca 100644 --- a/apps/tailwind-components/assets/icons/completed.svg +++ b/apps/tailwind-components/assets/icons/completed.svg @@ -2,5 +2,5 @@ > + fill="currentColor" /> \ No newline at end of file From 3d5c5a8f590eea7362d4e324ae85c6987a7731b1 Mon Sep 17 00:00:00 2001 From: connoratrug Date: Tue, 19 Nov 2024 11:08:33 +0100 Subject: [PATCH 23/25] chore: extend readme with details on custom/local icons usage --- apps/tailwind-components/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/tailwind-components/README.md b/apps/tailwind-components/README.md index c4a4c66118..4bd419282d 100644 --- a/apps/tailwind-components/README.md +++ b/apps/tailwind-components/README.md @@ -19,7 +19,8 @@ In the component folder, we've arranged the components into categories. To use t ### Icons Icons are rendered using @nuxt/icon, for usage details and options see: https://nuxt.com/modules/icon -The custom (default) icons used in the component library are stored in the assets/icons folder + +The custom icons used in the component library are stored in the assets/icons folder. When adding a new icon its suggested to use external icons libs as described in https://nuxt.com/modules/icon. Custom icons need to be added to the /assets/icons folder. Custom icons need to be svg and file name should be all lowercase kebab-case. In order to use custom icon without prefix in components library, include an alias in the app.config.ts file. ## Getting started From b9587209c2c767c40764f2abe965ad85d3a7efff Mon Sep 17 00:00:00 2001 From: connoratrug Date: Tue, 19 Nov 2024 15:11:46 +0100 Subject: [PATCH 24/25] bump deps --- apps/aggregates/package.json | 2 +- apps/central/package.json | 2 +- apps/cranio-provider/package.json | 2 +- apps/cranio-public/package.json | 2 +- apps/directory/package.json | 2 +- apps/ern-genturis/package.json | 2 +- apps/ern-ithaca/package.json | 2 +- apps/ern-reconnet/package.json | 2 +- apps/ern-skin/package.json | 2 +- apps/gportal/package.json | 2 +- apps/helloworld/package.json | 2 +- apps/imdhub-public/package.json | 2 +- apps/molgenis-components/package.json | 2 +- apps/molgenis-viz/package.json | 2 +- apps/nuxt3-ssr/package.json | 2 +- apps/package.json | 2 +- apps/pages/package.json | 2 +- apps/projectmanager/package.json | 2 +- apps/reports/package.json | 2 +- apps/schema/package.json | 2 +- apps/settings/package.json | 2 +- apps/tables/package.json | 2 +- apps/tailwind-components/package.json | 4 +- apps/tasks/package.json | 2 +- apps/ui/package.json | 2 +- apps/updownload/package.json | 2 +- apps/yarn.lock | 511 ++++++-------------------- 27 files changed, 130 insertions(+), 435 deletions(-) diff --git a/apps/aggregates/package.json b/apps/aggregates/package.json index e55a507179..3baf715422 100644 --- a/apps/aggregates/package.json +++ b/apps/aggregates/package.json @@ -14,7 +14,7 @@ "graphql-request": "5.2.0", "molgenis-components": "*", "molgenis-viz": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/central/package.json b/apps/central/package.json index c38b953392..d33c363021 100644 --- a/apps/central/package.json +++ b/apps/central/package.json @@ -14,7 +14,7 @@ "graphql-request": "5.2.0", "molgenis-components": "*", "v-scroll-lock": "1.3.1", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/cranio-provider/package.json b/apps/cranio-provider/package.json index cd490a7fd4..9886b2295c 100644 --- a/apps/cranio-provider/package.json +++ b/apps/cranio-provider/package.json @@ -14,7 +14,7 @@ "graphql-request": "5.2.0", "molgenis-components": "*", "molgenis-viz": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/cranio-public/package.json b/apps/cranio-public/package.json index 6e11dcc13c..9a814eb467 100644 --- a/apps/cranio-public/package.json +++ b/apps/cranio-public/package.json @@ -14,7 +14,7 @@ "graphql-request": "5.2.0", "molgenis-components": "*", "molgenis-viz": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/directory/package.json b/apps/directory/package.json index bb73d94455..eb3235df38 100644 --- a/apps/directory/package.json +++ b/apps/directory/package.json @@ -24,7 +24,7 @@ "molgenis-components": "*", "monaco-editor": "0.50.0", "pinia": "2.1.7", - "vue": "3.5.6", + "vue": "3.5.13", "vue-gtag": "2.0.1", "vue-router": "4.4.3", "vuedraggable": "4.1.0" diff --git a/apps/ern-genturis/package.json b/apps/ern-genturis/package.json index 1ab70b804f..a403e839b6 100644 --- a/apps/ern-genturis/package.json +++ b/apps/ern-genturis/package.json @@ -16,7 +16,7 @@ "graphql-request": "5.2.0", "molgenis-components": "*", "molgenis-viz": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/ern-ithaca/package.json b/apps/ern-ithaca/package.json index 450d5705b8..e246d613c4 100644 --- a/apps/ern-ithaca/package.json +++ b/apps/ern-ithaca/package.json @@ -14,7 +14,7 @@ "graphql-request": "5.2.0", "molgenis-components": "*", "molgenis-viz": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/ern-reconnet/package.json b/apps/ern-reconnet/package.json index b70277c7a8..a176278b4f 100644 --- a/apps/ern-reconnet/package.json +++ b/apps/ern-reconnet/package.json @@ -13,7 +13,7 @@ "graphql-request": "5.2.0", "molgenis-components": "*", "molgenis-viz": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/ern-skin/package.json b/apps/ern-skin/package.json index b7c8b1046e..dc4a1d1b90 100644 --- a/apps/ern-skin/package.json +++ b/apps/ern-skin/package.json @@ -14,7 +14,7 @@ "graphql-request": "5.2.0", "molgenis-components": "*", "molgenis-viz": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/gportal/package.json b/apps/gportal/package.json index 2c8e48b4fe..327cfd4d74 100644 --- a/apps/gportal/package.json +++ b/apps/gportal/package.json @@ -14,7 +14,7 @@ "graphql-request": "5.2.0", "molgenis-components": "*", "molgenis-viz": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/helloworld/package.json b/apps/helloworld/package.json index dca17a5417..a6dffad5d5 100644 --- a/apps/helloworld/package.json +++ b/apps/helloworld/package.json @@ -13,7 +13,7 @@ "graphql-request": "5.2.0", "metadata-utils": "*", "molgenis-components": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/imdhub-public/package.json b/apps/imdhub-public/package.json index 957426d33e..8737b2c849 100644 --- a/apps/imdhub-public/package.json +++ b/apps/imdhub-public/package.json @@ -14,7 +14,7 @@ "graphql-request": "5.2.0", "molgenis-components": "*", "molgenis-viz": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/molgenis-components/package.json b/apps/molgenis-components/package.json index ce1f566ae2..5a25e1b9f0 100644 --- a/apps/molgenis-components/package.json +++ b/apps/molgenis-components/package.json @@ -38,7 +38,7 @@ "cross-env": "7.0.3", "metadata-utils": "*", "universal-cookie": "4.0.4", - "vue": "3.5.6", + "vue": "3.5.13", "vue-gtag": "2.0.1", "vue-flatpickr-component": "11.0.5", "vue3-cookies": "^1.0.6", diff --git a/apps/molgenis-viz/package.json b/apps/molgenis-viz/package.json index dd265ad739..454b60ea83 100644 --- a/apps/molgenis-viz/package.json +++ b/apps/molgenis-viz/package.json @@ -34,7 +34,7 @@ "d3": "7.8.5", "graphql-request": "^6.1.0", "heroicons": "^2.0.18", - "vue": "3.5.6" + "vue": "3.5.13" }, "devDependencies": { "@vitejs/plugin-vue": "4.6.2", diff --git a/apps/nuxt3-ssr/package.json b/apps/nuxt3-ssr/package.json index e608e3070d..2f70aee73c 100644 --- a/apps/nuxt3-ssr/package.json +++ b/apps/nuxt3-ssr/package.json @@ -48,6 +48,6 @@ "metadata-utils": "*", "nuxt-gtag": "3.0.1", "vite": "5.4.6", - "vue": "3.5.6" + "vue": "3.5.13" } } diff --git a/apps/package.json b/apps/package.json index ec612bec44..981957d71f 100644 --- a/apps/package.json +++ b/apps/package.json @@ -33,7 +33,7 @@ "ui" ], "devDependencies": { - "nuxt": "3.13.2" + "nuxt": "3.14.159" }, "scripts": { "build:libs": "yarn workspace molgenis-components run build && yarn workspace molgenis-viz run build" diff --git a/apps/pages/package.json b/apps/pages/package.json index 203ef862fd..44007e2125 100644 --- a/apps/pages/package.json +++ b/apps/pages/package.json @@ -14,7 +14,7 @@ "core-js": "3.34.0", "graphql-request": "5.2.0", "molgenis-components": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/projectmanager/package.json b/apps/projectmanager/package.json index ce80aa7e2f..60a2e0230b 100644 --- a/apps/projectmanager/package.json +++ b/apps/projectmanager/package.json @@ -13,7 +13,7 @@ "graphql-request": "5.2.0", "metadata-utils": "*", "molgenis-components": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/reports/package.json b/apps/reports/package.json index 1a66b40b79..4e37827064 100644 --- a/apps/reports/package.json +++ b/apps/reports/package.json @@ -13,7 +13,7 @@ "core-js": "3.34.0", "graphql-request": "5.2.0", "molgenis-components": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/schema/package.json b/apps/schema/package.json index c10d245c2a..68408bd1fd 100644 --- a/apps/schema/package.json +++ b/apps/schema/package.json @@ -15,7 +15,7 @@ "graphql-tag": "2.12.6", "metadata-utils": "*", "molgenis-components": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3", "vue-scrollto": "2.20.0", "vuedraggable": "4.1.0", diff --git a/apps/settings/package.json b/apps/settings/package.json index ab4b5a487d..2a7ef825db 100644 --- a/apps/settings/package.json +++ b/apps/settings/package.json @@ -13,7 +13,7 @@ "molgenis-components": "*", "core-js": "3.34.0", "graphql-request": "5.2.0", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3", "vue3-colorpicker": "2.2.3", "vuedraggable": "4.1.0" diff --git a/apps/tables/package.json b/apps/tables/package.json index 4fd81393e9..239c47fc90 100644 --- a/apps/tables/package.json +++ b/apps/tables/package.json @@ -13,7 +13,7 @@ "core-js": "3.34.0", "graphql-request": "5.2.0", "molgenis-components": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/tailwind-components/package.json b/apps/tailwind-components/package.json index de074729fe..8062fb96f7 100644 --- a/apps/tailwind-components/package.json +++ b/apps/tailwind-components/package.json @@ -20,12 +20,12 @@ "dependencies": { "consola": "3.2.3", "floating-vue": "5.2.2", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { "@iconify-json/material-symbols": "1.2.6", - "@nuxt/icon": "1.7.2", + "@nuxt/icon": "1.8.1", "@nuxt/test-utils": "3.12.1", "@nuxtjs/tailwindcss": "6.12.0", "@vue/test-utils": "2.4.6", diff --git a/apps/tasks/package.json b/apps/tasks/package.json index a993ea1841..7a453e451b 100644 --- a/apps/tasks/package.json +++ b/apps/tasks/package.json @@ -13,7 +13,7 @@ "core-js": "3.34.0", "graphql-request": "5.2.0", "molgenis-components": "*", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "devDependencies": { diff --git a/apps/ui/package.json b/apps/ui/package.json index 9319bd0b0a..17b3038691 100644 --- a/apps/ui/package.json +++ b/apps/ui/package.json @@ -15,7 +15,7 @@ "dependencies": { "@pinia/nuxt": "0.5.1", "pinia": "2.1.7", - "vue": "3.5.6", + "vue": "3.5.13", "vue-router": "4.4.3" }, "license": "LGPL-3.0", diff --git a/apps/updownload/package.json b/apps/updownload/package.json index 68adb5dbcf..c3bd0faff3 100644 --- a/apps/updownload/package.json +++ b/apps/updownload/package.json @@ -13,7 +13,7 @@ "molgenis-components": "*", "core-js": "3.34.0", "graphql-request": "5.2.0", - "vue": "3.5.6" + "vue": "3.5.13" }, "devDependencies": { "vite": "5.4.6", diff --git a/apps/yarn.lock b/apps/yarn.lock index 6c16f9145e..6375c66087 100644 --- a/apps/yarn.lock +++ b/apps/yarn.lock @@ -379,11 +379,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== -"@esbuild/aix-ppc64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz#51299374de171dbd80bb7d838e1cfce9af36f353" - integrity sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ== - "@esbuild/aix-ppc64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz#b57697945b50e99007b4c2521507dc613d4a648c" @@ -399,11 +394,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== -"@esbuild/android-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz#58565291a1fe548638adb9c584237449e5e14018" - integrity sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw== - "@esbuild/android-arm64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz#1add7e0af67acefd556e407f8497e81fddad79c0" @@ -419,11 +409,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== -"@esbuild/android-arm@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.1.tgz#5eb8c652d4c82a2421e3395b808e6d9c42c862ee" - integrity sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ== - "@esbuild/android-arm@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.24.0.tgz#ab7263045fa8e090833a8e3c393b60d59a789810" @@ -439,11 +424,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== -"@esbuild/android-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.1.tgz#ae19d665d2f06f0f48a6ac9a224b3f672e65d517" - integrity sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg== - "@esbuild/android-x64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.24.0.tgz#e8f8b196cfdfdd5aeaebbdb0110983460440e705" @@ -459,11 +439,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== -"@esbuild/darwin-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz#05b17f91a87e557b468a9c75e9d85ab10c121b16" - integrity sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q== - "@esbuild/darwin-arm64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz#2d0d9414f2acbffd2d86e98253914fca603a53dd" @@ -479,11 +454,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== -"@esbuild/darwin-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz#c58353b982f4e04f0d022284b8ba2733f5ff0931" - integrity sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw== - "@esbuild/darwin-x64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz#33087aab31a1eb64c89daf3d2cf8ce1775656107" @@ -499,11 +469,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== -"@esbuild/freebsd-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz#f9220dc65f80f03635e1ef96cfad5da1f446f3bc" - integrity sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA== - "@esbuild/freebsd-arm64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz#bb76e5ea9e97fa3c753472f19421075d3a33e8a7" @@ -519,11 +484,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== -"@esbuild/freebsd-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz#69bd8511fa013b59f0226d1609ac43f7ce489730" - integrity sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g== - "@esbuild/freebsd-x64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz#e0e2ce9249fdf6ee29e5dc3d420c7007fa579b93" @@ -539,11 +499,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== -"@esbuild/linux-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz#8050af6d51ddb388c75653ef9871f5ccd8f12383" - integrity sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g== - "@esbuild/linux-arm64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz#d1b2aa58085f73ecf45533c07c82d81235388e75" @@ -559,11 +514,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== -"@esbuild/linux-arm@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz#ecaabd1c23b701070484990db9a82f382f99e771" - integrity sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ== - "@esbuild/linux-arm@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz#8e4915df8ea3e12b690a057e77a47b1d5935ef6d" @@ -579,11 +529,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== -"@esbuild/linux-ia32@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz#3ed2273214178109741c09bd0687098a0243b333" - integrity sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ== - "@esbuild/linux-ia32@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz#8200b1110666c39ab316572324b7af63d82013fb" @@ -599,11 +544,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== -"@esbuild/linux-loong64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz#a0fdf440b5485c81b0fbb316b08933d217f5d3ac" - integrity sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw== - "@esbuild/linux-loong64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz#6ff0c99cf647504df321d0640f0d32e557da745c" @@ -619,11 +559,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== -"@esbuild/linux-mips64el@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz#e11a2806346db8375b18f5e104c5a9d4e81807f6" - integrity sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q== - "@esbuild/linux-mips64el@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz#3f720ccd4d59bfeb4c2ce276a46b77ad380fa1f3" @@ -639,11 +574,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== -"@esbuild/linux-ppc64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz#06a2744c5eaf562b1a90937855b4d6cf7c75ec96" - integrity sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw== - "@esbuild/linux-ppc64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz#9d6b188b15c25afd2e213474bf5f31e42e3aa09e" @@ -659,11 +589,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== -"@esbuild/linux-riscv64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz#65b46a2892fc0d1af4ba342af3fe0fa4a8fe08e7" - integrity sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA== - "@esbuild/linux-riscv64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz#f989fdc9752dfda286c9cd87c46248e4dfecbc25" @@ -679,11 +604,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== -"@esbuild/linux-s390x@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz#e71ea18c70c3f604e241d16e4e5ab193a9785d6f" - integrity sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw== - "@esbuild/linux-s390x@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz#29ebf87e4132ea659c1489fce63cd8509d1c7319" @@ -699,11 +619,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== -"@esbuild/linux-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz#d47f97391e80690d4dfe811a2e7d6927ad9eed24" - integrity sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ== - "@esbuild/linux-x64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz#4af48c5c0479569b1f359ffbce22d15f261c0cef" @@ -719,21 +634,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== -"@esbuild/netbsd-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz#44e743c9778d57a8ace4b72f3c6b839a3b74a653" - integrity sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA== - "@esbuild/netbsd-x64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz#1ae73d23cc044a0ebd4f198334416fb26c31366c" integrity sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg== -"@esbuild/openbsd-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz#05c5a1faf67b9881834758c69f3e51b7dee015d7" - integrity sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q== - "@esbuild/openbsd-arm64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz#5d904a4f5158c89859fd902c427f96d6a9e632e2" @@ -749,11 +654,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== -"@esbuild/openbsd-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz#2e58ae511bacf67d19f9f2dcd9e8c5a93f00c273" - integrity sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA== - "@esbuild/openbsd-x64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz#4c8aa88c49187c601bae2971e71c6dc5e0ad1cdf" @@ -769,11 +669,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== -"@esbuild/sunos-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz#adb022b959d18d3389ac70769cef5a03d3abd403" - integrity sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA== - "@esbuild/sunos-x64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz#8ddc35a0ea38575fa44eda30a5ee01ae2fa54dd4" @@ -789,11 +684,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== -"@esbuild/win32-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz#84906f50c212b72ec360f48461d43202f4c8b9a2" - integrity sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A== - "@esbuild/win32-arm64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz#6e79c8543f282c4539db684a207ae0e174a9007b" @@ -809,11 +699,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== -"@esbuild/win32-ia32@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz#5e3eacc515820ff729e90d0cb463183128e82fac" - integrity sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ== - "@esbuild/win32-ia32@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz#057af345da256b7192d18b676a02e95d0fa39103" @@ -829,11 +714,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== -"@esbuild/win32-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz#81fd50d11e2c32b2d6241470e3185b70c7b30699" - integrity sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg== - "@esbuild/win32-x64@0.24.0": version "0.24.0" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz#168ab1c7e1c318b922637fad8f339d48b01e1244" @@ -1063,7 +943,7 @@ dependencies: "@iconify/types" "*" -"@iconify/collections@^1.0.480": +"@iconify/collections@^1.0.484": version "1.0.484" resolved "https://registry.yarnpkg.com/@iconify/collections/-/collections-1.0.484.tgz#ac804f0da81a466f594caebed44b0785af42aaa4" integrity sha512-b/6PlgO0BDx8ElxiceLtYigSQcKAXFPNAU8d4rOLtRvdkda1HOnAsPIqCSeuYHe3H5d9n9tdukLXM9Yv9bkgfA== @@ -1088,7 +968,7 @@ local-pkg "^0.5.0" mlly "^1.7.1" -"@iconify/vue@^4.2.0-dev.1": +"@iconify/vue@^4.2.0-dev.2": version "4.2.0-dev.2" resolved "https://registry.yarnpkg.com/@iconify/vue/-/vue-4.2.0-dev.2.tgz#d950a5668cd930c54718524ade4c626cc95c5a5f" integrity sha512-fHsLaBaegrXyshUR2j9sV4TXkTgRQ9FhQ9PIqWgW/dFTPcMe2uEtUr1H9XQaDTpN8F9chnVqhLH8FT9asTDaSQ== @@ -1367,7 +1247,7 @@ rc9 "^2.1.2" semver "^7.6.3" -"@nuxt/devtools@^1.4.2": +"@nuxt/devtools@^1.6.0": version "1.6.0" resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-1.6.0.tgz#333a055bd4038db4b72d217738392e42758c9380" integrity sha512-xNorMapzpM8HaW7NnAsEEO38OrmrYBzGvkkqfBU5nNh5XEymmIfCbQc7IA/GIOH9pXOV4gRutCjHCWXHYbOl3A== @@ -1410,23 +1290,23 @@ which "^3.0.1" ws "^8.18.0" -"@nuxt/icon@1.7.2": - version "1.7.2" - resolved "https://registry.yarnpkg.com/@nuxt/icon/-/icon-1.7.2.tgz#616a44433e829dff46623489c9ea30fda93e30a4" - integrity sha512-E2sH/wchLfcUIuUPIFFtaFNHfPP7sVSnJNWfvOOzq1KnRNA1sWWEhr1DriuCF2g+QukrSM96Xp5b9OrQCso/8w== +"@nuxt/icon@1.8.1": + version "1.8.1" + resolved "https://registry.yarnpkg.com/@nuxt/icon/-/icon-1.8.1.tgz#c01ccf70a0230d572a4b8262dedcb8a41462df01" + integrity sha512-8xetBz9GMBY18AMPBhOdrdufGMGJtdzY1Eixs1T8bQO39gkvYClh6ZcHUFoGxbU2Za6gQ2XH/U8mrz5VMbO3Wg== dependencies: - "@iconify/collections" "^1.0.480" + "@iconify/collections" "^1.0.484" "@iconify/types" "^2.0.0" "@iconify/utils" "^2.1.33" - "@iconify/vue" "^4.2.0-dev.1" + "@iconify/vue" "^4.2.0-dev.2" "@nuxt/devtools-kit" "^1.6.0" "@nuxt/kit" "^3.14.159" consola "^3.2.3" - local-pkg "^0.5.0" - mlly "^1.7.2" + local-pkg "^0.5.1" + mlly "^1.7.3" ohash "^1.1.4" pathe "^1.1.2" - std-env "^3.7.0" + std-env "^3.8.0" tinyglobby "^0.2.10" "@nuxt/image@1.7.0": @@ -1447,33 +1327,7 @@ optionalDependencies: ipx "^2.1.0" -"@nuxt/kit@3.13.2": - version "3.13.2" - resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.13.2.tgz#4c019a87e08c33ec14d1059497ba40568b82bfed" - integrity sha512-KvRw21zU//wdz25IeE1E5m/aFSzhJloBRAQtv+evcFeZvuroIxpIQuUqhbzuwznaUwpiWbmwlcsp5uOWmi4vwA== - dependencies: - "@nuxt/schema" "3.13.2" - c12 "^1.11.2" - consola "^3.2.3" - defu "^6.1.4" - destr "^2.0.3" - globby "^14.0.2" - hash-sum "^2.0.0" - ignore "^5.3.2" - jiti "^1.21.6" - klona "^2.0.6" - knitwork "^1.1.0" - mlly "^1.7.1" - pathe "^1.1.2" - pkg-types "^1.2.0" - scule "^1.3.0" - semver "^7.6.3" - ufo "^1.5.4" - unctx "^2.3.1" - unimport "^3.12.0" - untyped "^1.4.2" - -"@nuxt/kit@^3.11.1", "@nuxt/kit@^3.11.2", "@nuxt/kit@^3.13.0", "@nuxt/kit@^3.13.1", "@nuxt/kit@^3.13.2", "@nuxt/kit@^3.14.159", "@nuxt/kit@^3.5.0": +"@nuxt/kit@3.14.159", "@nuxt/kit@^3.11.1", "@nuxt/kit@^3.11.2", "@nuxt/kit@^3.13.0", "@nuxt/kit@^3.13.1", "@nuxt/kit@^3.13.2", "@nuxt/kit@^3.14.159", "@nuxt/kit@^3.5.0": version "3.14.159" resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.14.159.tgz#1b856bd5ed75c97e425a0b57dacfe476990a6863" integrity sha512-ZqxsCI1NKV/gjfEUUZjMcr82sg0MKYZOuyB6bu9QY5Zr7NGpfIZY/z5Z822AKTmFxKGChnuz9M0UaS4ze6p42g== @@ -1499,24 +1353,6 @@ unimport "^3.13.1" untyped "^1.5.1" -"@nuxt/schema@3.13.2": - version "3.13.2" - resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.13.2.tgz#4c1011ebf9fd5f821900bbfc50fd5eff2e663e9b" - integrity sha512-CCZgpm+MkqtOMDEgF9SWgGPBXlQ01hV/6+2reDEpJuqFPGzV8HYKPBcIFvn7/z5ahtgutHLzjP71Na+hYcqSpw== - dependencies: - compatx "^0.1.8" - consola "^3.2.3" - defu "^6.1.4" - hookable "^5.5.3" - pathe "^1.1.2" - pkg-types "^1.2.0" - scule "^1.3.0" - std-env "^3.7.0" - ufo "^1.5.4" - uncrypto "^0.1.3" - unimport "^3.12.0" - untyped "^1.4.2" - "@nuxt/schema@3.14.159", "@nuxt/schema@^3.11.1", "@nuxt/schema@^3.13.1", "@nuxt/schema@^3.13.2": version "3.14.159" resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.14.159.tgz#c9e9a18f090fe44281d4b9f567474610d60ec1f9" @@ -1647,44 +1483,45 @@ unplugin "^1.14.1" vitest-environment-nuxt "^1.0.1" -"@nuxt/vite-builder@3.13.2": - version "3.13.2" - resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.13.2.tgz#7899441f49b1934ada74dccfd2e83839f924db95" - integrity sha512-3dzc3YH3UeTmzGtCevW1jTq0Q8/cm+yXqo/VS/EFM3aIO/tuNPS88is8ZF2YeBButFnLFllq/QenziPbq0YD6Q== +"@nuxt/vite-builder@3.14.159": + version "3.14.159" + resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.14.159.tgz#85d5d3e2768e315c2c1a484df78f1ff03d35eced" + integrity sha512-V3FJnDNR3tCAYeYmxxPsAWuMq6z5mZi8KPWO+lrO/Z8LqfD3+uYpluzUtzj0S1IIhCERmHe4rUNzr67RqSTL2Q== dependencies: - "@nuxt/kit" "3.13.2" - "@rollup/plugin-replace" "^5.0.7" - "@vitejs/plugin-vue" "^5.1.3" + "@nuxt/kit" "3.14.159" + "@rollup/plugin-replace" "^6.0.1" + "@vitejs/plugin-vue" "^5.1.4" "@vitejs/plugin-vue-jsx" "^4.0.1" autoprefixer "^10.4.20" clear "^0.1.0" consola "^3.2.3" cssnano "^7.0.6" defu "^6.1.4" - esbuild "^0.23.1" + esbuild "^0.24.0" escape-string-regexp "^5.0.0" estree-walker "^3.0.3" externality "^1.0.2" get-port-please "^3.1.2" - h3 "^1.12.0" + h3 "^1.13.0" + jiti "^2.4.0" knitwork "^1.1.0" - magic-string "^0.30.11" - mlly "^1.7.1" + magic-string "^0.30.12" + mlly "^1.7.2" ohash "^1.1.4" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.2.0" + pkg-types "^1.2.1" postcss "^8.4.47" rollup-plugin-visualizer "^5.12.0" std-env "^3.7.0" strip-literal "^2.1.0" ufo "^1.5.4" unenv "^1.10.0" - unplugin "^1.14.1" - vite "^5.4.5" - vite-node "^2.1.1" + unplugin "^1.15.0" + vite "^5.4.10" + vite-node "^2.1.4" vite-plugin-checker "^0.8.0" - vue-bundle-renderer "^2.1.0" + vue-bundle-renderer "^2.1.1" "@nuxtjs/tailwindcss@6.12.0": version "6.12.0" @@ -1994,14 +1831,6 @@ is-module "^1.0.0" resolve "^1.22.1" -"@rollup/plugin-replace@^5.0.7": - version "5.0.7" - resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.7.tgz#150c9ee9db8031d9e4580a61a0edeaaed3d37687" - integrity sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ== - dependencies: - "@rollup/pluginutils" "^5.0.1" - magic-string "^0.30.3" - "@rollup/plugin-replace@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-6.0.1.tgz#547e238f7db994ebe63dd5329ec46ffccf696029" @@ -2425,7 +2254,7 @@ dependencies: "@types/node" "*" -"@unhead/dom@1.11.11", "@unhead/dom@^1.11.5": +"@unhead/dom@1.11.11", "@unhead/dom@^1.11.11": version "1.11.11" resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.11.11.tgz#74569a280d7b9f013813aef8dee4705cb011e58a" integrity sha512-4YwziCH5CmjvUzSGdZ4Klj6BqhLSTNZooA9kt47yDxj4Qw9uHqVnXwWWupYsVdIYPNsw1tR2AkHveg82y1Fn3A== @@ -2441,14 +2270,14 @@ hookable "^5.5.3" zhead "^2.2.4" -"@unhead/shared@1.11.11", "@unhead/shared@^1.11.5": +"@unhead/shared@1.11.11", "@unhead/shared@^1.11.11": version "1.11.11" resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.11.11.tgz#1ec0ec744edce31808256801ce13efd369fa6d62" integrity sha512-RfdvUskPn90ipO+PmR98jKZ8Lsx1uuzscOenO5xcrMrtWGhlLWaEBIrbvFOvX5PZ/u8/VNMJChTXGDUjEtHmlg== dependencies: "@unhead/schema" "1.11.11" -"@unhead/ssr@^1.11.5": +"@unhead/ssr@^1.11.11": version "1.11.11" resolved "https://registry.yarnpkg.com/@unhead/ssr/-/ssr-1.11.11.tgz#2af7d9a8042082c301976878021b14335d2fbe86" integrity sha512-NQC8y+4ldwkMr3x8WFwv3+OR6g+Sj7dwL6J/3ST25KnvlwDSub2KGbnm2hF1x8vTpTmXTVxMA3GDRL9MRfLvMg== @@ -2456,7 +2285,7 @@ "@unhead/schema" "1.11.11" "@unhead/shared" "1.11.11" -"@unhead/vue@^1.11.5": +"@unhead/vue@^1.11.11": version "1.11.11" resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-1.11.11.tgz#226ee5dda055c005ff2569fb5c2cbc91cf76acdc" integrity sha512-AxsHHauZ+w0m2irwDHqkc3GdNChMLBtolk8CN3IAZM6vTwH0EbPXlFCFcIk4WwkH0opG+R2GlKTThr5H0HLm7g== @@ -2499,7 +2328,7 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.6.2.tgz#057d2ded94c4e71b94e9814f92dcd9306317aa46" integrity sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw== -"@vitejs/plugin-vue@^5.0.5", "@vitejs/plugin-vue@^5.1.3": +"@vitejs/plugin-vue@^5.0.5", "@vitejs/plugin-vue@^5.1.4": version "5.2.0" resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.2.0.tgz#994f3b4f12d3590c5a6895df4cbd270d9a6d5e17" integrity sha512-7n7KdUEtx/7Yl7I/WVAMZ1bEb0eVvXF3ummWTeLcs/9gvo9pJhuLdouSXGjdZ/MKD1acf1I272+X0RMua4/R3g== @@ -2762,17 +2591,6 @@ estree-walker "^2.0.2" source-map-js "^1.2.0" -"@vue/compiler-core@3.5.6": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.6.tgz#4a771c738fe745b61b963c41077af1405200db33" - integrity sha512-r+gNu6K4lrvaQLQGmf+1gc41p3FO2OUJyWmNqaIITaJU6YFiV5PtQSFZt8jfztYyARwqhoCayjprC7KMvT3nRA== - dependencies: - "@babel/parser" "^7.25.3" - "@vue/shared" "3.5.6" - entities "^4.5.0" - estree-walker "^2.0.2" - source-map-js "^1.2.0" - "@vue/compiler-dom@3.5.13", "@vue/compiler-dom@^3.3.0", "@vue/compiler-dom@^3.3.4", "@vue/compiler-dom@^3.4.0", "@vue/compiler-dom@^3.5.0": version "3.5.13" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz#bb1b8758dbc542b3658dda973b98a1c9311a8a58" @@ -2781,14 +2599,6 @@ "@vue/compiler-core" "3.5.13" "@vue/shared" "3.5.13" -"@vue/compiler-dom@3.5.6": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.6.tgz#0942c290d3a52eb396243850ec73005f669c210d" - integrity sha512-xRXqxDrIqK8v8sSScpistyYH0qYqxakpsIvqMD2e5sV/PXQ1mTwtXp4k42yHK06KXxKSmitop9e45Ui/3BrTEw== - dependencies: - "@vue/compiler-core" "3.5.6" - "@vue/shared" "3.5.6" - "@vue/compiler-sfc@3.5.13", "@vue/compiler-sfc@^3.5.12", "@vue/compiler-sfc@^3.5.3": version "3.5.13" resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz#461f8bd343b5c06fac4189c4fef8af32dea82b46" @@ -2804,21 +2614,6 @@ postcss "^8.4.48" source-map-js "^1.2.0" -"@vue/compiler-sfc@3.5.6": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.6.tgz#7f730002a18c7be7962741de6a40491eb59e4ad6" - integrity sha512-pjWJ8Kj9TDHlbF5LywjVso+BIxCY5wVOLhkEXRhuCHDxPFIeX1zaFefKs8RYoHvkSMqRWt93a0f2gNJVJixHwg== - dependencies: - "@babel/parser" "^7.25.3" - "@vue/compiler-core" "3.5.6" - "@vue/compiler-dom" "3.5.6" - "@vue/compiler-ssr" "3.5.6" - "@vue/shared" "3.5.6" - estree-walker "^2.0.2" - magic-string "^0.30.11" - postcss "^8.4.47" - source-map-js "^1.2.0" - "@vue/compiler-ssr@3.5.13": version "3.5.13" resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz#e771adcca6d3d000f91a4277c972a996d07f43ba" @@ -2827,14 +2622,6 @@ "@vue/compiler-dom" "3.5.13" "@vue/shared" "3.5.13" -"@vue/compiler-ssr@3.5.6": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.6.tgz#011eb621ec27c51fea50297d872b0282e6c49133" - integrity sha512-VpWbaZrEOCqnmqjE83xdwegtr5qO/2OPUC6veWgvNqTJ3bYysz6vY3VqMuOijubuUYPRpG3OOKIh9TD0Stxb9A== - dependencies: - "@vue/compiler-dom" "3.5.6" - "@vue/shared" "3.5.6" - "@vue/compiler-vue2@^2.7.16": version "2.7.16" resolved "https://registry.yarnpkg.com/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz#2ba837cbd3f1b33c2bc865fbe1a3b53fb611e249" @@ -2943,13 +2730,6 @@ dependencies: "@vue/shared" "3.5.13" -"@vue/reactivity@3.5.6": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.6.tgz#d26fea799db554e7c1c3469be3577e0b8fd6deb6" - integrity sha512-shZ+KtBoHna5GyUxWfoFVBCVd7k56m6lGhk5e+J9AKjheHF6yob5eukssHRI+rzvHBiU1sWs/1ZhNbLExc5oYQ== - dependencies: - "@vue/shared" "3.5.6" - "@vue/runtime-core@3.5.13": version "3.5.13" resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.13.tgz#1fafa4bf0b97af0ebdd9dbfe98cd630da363a455" @@ -2958,14 +2738,6 @@ "@vue/reactivity" "3.5.13" "@vue/shared" "3.5.13" -"@vue/runtime-core@3.5.6": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.6.tgz#bbf8c722d5dbf55c77841d3d76ed630a4a5a573d" - integrity sha512-FpFULR6+c2lI+m1fIGONLDqPQO34jxV8g6A4wBOgne8eSRHP6PQL27+kWFIx5wNhhjkO7B4rgtsHAmWv7qKvbg== - dependencies: - "@vue/reactivity" "3.5.6" - "@vue/shared" "3.5.6" - "@vue/runtime-dom@3.5.13": version "3.5.13" resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz#610fc795de9246300e8ae8865930d534e1246215" @@ -2976,16 +2748,6 @@ "@vue/shared" "3.5.13" csstype "^3.1.3" -"@vue/runtime-dom@3.5.6": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.6.tgz#17c190bee838cd7b4f0531dafea1accb3ba6da14" - integrity sha512-SDPseWre45G38ENH2zXRAHL1dw/rr5qp91lS4lt/nHvMr0MhsbCbihGAWLXNB/6VfFOJe2O+RBRkXU+CJF7/sw== - dependencies: - "@vue/reactivity" "3.5.6" - "@vue/runtime-core" "3.5.6" - "@vue/shared" "3.5.6" - csstype "^3.1.3" - "@vue/server-renderer@3.5.13": version "3.5.13" resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.13.tgz#429ead62ee51de789646c22efe908e489aad46f7" @@ -2994,24 +2756,11 @@ "@vue/compiler-ssr" "3.5.13" "@vue/shared" "3.5.13" -"@vue/server-renderer@3.5.6": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.6.tgz#f029aecb740c3ff6ad63dd10736875161d22dbb9" - integrity sha512-zivnxQnOnwEXVaT9CstJ64rZFXMS5ZkKxCjDQKiMSvUhXRzFLWZVbaBiNF4HGDqGNNsTgmjcCSmU6TB/0OOxLA== - dependencies: - "@vue/compiler-ssr" "3.5.6" - "@vue/shared" "3.5.6" - -"@vue/shared@3.5.13", "@vue/shared@^3.3.0", "@vue/shared@^3.4.0", "@vue/shared@^3.5.0", "@vue/shared@^3.5.5": +"@vue/shared@3.5.13", "@vue/shared@^3.3.0", "@vue/shared@^3.4.0", "@vue/shared@^3.5.0", "@vue/shared@^3.5.12": version "3.5.13" resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.13.tgz#87b309a6379c22b926e696893237826f64339b6f" integrity sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ== -"@vue/shared@3.5.6": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.6.tgz#602b3c2dccfe612f9e2e52e861dd7db340961a4f" - integrity sha512-eidH0HInnL39z6wAt6SFIwBrvGOpDWsDxlw3rCgo1B+CQ1781WzQUSU3YjxgdkcJo9Q8S6LmXTkvI+cLHGkQfA== - "@vue/test-utils@2.4.6": version "2.4.6" resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-2.4.6.tgz#7d534e70c4319d2a587d6a3b45a39e9695ade03c" @@ -3235,21 +2984,16 @@ acorn-walk@^8.2.0, acorn-walk@^8.3.2: dependencies: acorn "^8.11.0" -acorn@8.12.1: - version "8.12.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" - integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== +acorn@8.14.0, acorn@^8.10.0, acorn@^8.11.0, acorn@^8.14.0, acorn@^8.6.0, acorn@^8.8.2, acorn@^8.9.0: + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== acorn@^7.1.1: version "7.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.10.0, acorn@^8.11.0, acorn@^8.14.0, acorn@^8.6.0, acorn@^8.8.2, acorn@^8.9.0: - version "8.14.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" - integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== - agent-base@5: version "5.1.1" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" @@ -5722,7 +5466,7 @@ detect-libc@^2.0.0, detect-libc@^2.0.2: resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700" integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== -devalue@^5.0.0: +devalue@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/devalue/-/devalue-5.1.1.tgz#a71887ac0f354652851752654e4bd435a53891ae" integrity sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw== @@ -6138,36 +5882,6 @@ esbuild@^0.21.3: "@esbuild/win32-ia32" "0.21.5" "@esbuild/win32-x64" "0.21.5" -esbuild@^0.23.1: - version "0.23.1" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.23.1.tgz#40fdc3f9265ec0beae6f59824ade1bd3d3d2dab8" - integrity sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg== - optionalDependencies: - "@esbuild/aix-ppc64" "0.23.1" - "@esbuild/android-arm" "0.23.1" - "@esbuild/android-arm64" "0.23.1" - "@esbuild/android-x64" "0.23.1" - "@esbuild/darwin-arm64" "0.23.1" - "@esbuild/darwin-x64" "0.23.1" - "@esbuild/freebsd-arm64" "0.23.1" - "@esbuild/freebsd-x64" "0.23.1" - "@esbuild/linux-arm" "0.23.1" - "@esbuild/linux-arm64" "0.23.1" - "@esbuild/linux-ia32" "0.23.1" - "@esbuild/linux-loong64" "0.23.1" - "@esbuild/linux-mips64el" "0.23.1" - "@esbuild/linux-ppc64" "0.23.1" - "@esbuild/linux-riscv64" "0.23.1" - "@esbuild/linux-s390x" "0.23.1" - "@esbuild/linux-x64" "0.23.1" - "@esbuild/netbsd-x64" "0.23.1" - "@esbuild/openbsd-arm64" "0.23.1" - "@esbuild/openbsd-x64" "0.23.1" - "@esbuild/sunos-x64" "0.23.1" - "@esbuild/win32-arm64" "0.23.1" - "@esbuild/win32-ia32" "0.23.1" - "@esbuild/win32-x64" "0.23.1" - esbuild@^0.24.0: version "0.24.0" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.24.0.tgz#f2d470596885fcb2e91c21eb3da3b3c89c0b55e7" @@ -6556,7 +6270,7 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" -fdir@^6.2.0, fdir@^6.3.0, fdir@^6.4.2: +fdir@^6.2.0, fdir@^6.4.2: version "6.4.2" resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.4.2.tgz#ddaa7ce1831b161bc3657bb99cb36e1622702689" integrity sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ== @@ -7707,7 +7421,7 @@ if-env@1.0.4, if-env@^1.0.4: dependencies: npm-run-all "1.4.0" -ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.2: +ignore@^5.2.0, ignore@^5.2.4: version "5.3.2" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== @@ -7750,16 +7464,16 @@ import-lazy@~4.0.0: resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== -impound@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/impound/-/impound-0.1.0.tgz#3f6ff0597fd138f8f2676cc63862bbd005db413a" - integrity sha512-F9nJgOsDc3tysjN74edE0vGPEQrU7DAje6g5nNAL5Jc9Tv4JW3mH7XMGne+EaadTniDXLeUrVR21opkNfWO1zQ== +impound@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/impound/-/impound-0.2.0.tgz#d24d6dd8330f380e8e71c254e8b29d3a2c4fe520" + integrity sha512-gXgeSyp9Hf7qG2/PLKmywHXyQf2xFrw+mJGpoj9DsAB9L7/MIKn+DeEx98UryWXdmbv8wUUPdcQof6qXnZoCGg== dependencies: - "@rollup/pluginutils" "^5.1.0" - mlly "^1.7.1" + "@rollup/pluginutils" "^5.1.2" + mlly "^1.7.2" pathe "^1.1.2" unenv "^1.10.0" - unplugin "^1.12.2" + unplugin "^1.14.1" imurmurhash@^0.1.4: version "0.1.4" @@ -8752,7 +8466,7 @@ local-pkg@^0.4.3: resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.3.tgz#0ff361ab3ae7f1c19113d9bb97b98b905dbc4963" integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== -local-pkg@^0.5.0: +local-pkg@^0.5.0, local-pkg@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.5.1.tgz#69658638d2a95287534d4c2fff757980100dbb6d" integrity sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ== @@ -9659,7 +9373,7 @@ neo-async@^2.6.2: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== -nitropack@^2.9.7: +nitropack@^2.10.3: version "2.10.4" resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.10.4.tgz#f7eb092bf7296257bf2426c45134fba61373e026" integrity sha512-sJiG/MIQlZCVSw2cQrFG1H6mLeSqHlYfFerRjLKz69vUfdu0EL2l0WdOxlQbzJr3mMv/l4cOlCCLzVRzjzzF/g== @@ -9937,7 +9651,7 @@ nullthrows@^1.0.0: resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== -nuxi@^3.13.2: +nuxi@^3.15.0: version "3.15.0" resolved "https://registry.yarnpkg.com/nuxi/-/nuxi-3.15.0.tgz#ed54923ca46727c6e7df10495143db340d9791c9" integrity sha512-ZVu45nuDrdb7nzKW2kLGY/N1vvFYLLbUVX6gUYw4BApKGGu4+GktTR5o48dGVgMYX9A8chaugl7TL9ZYmwC9Mg== @@ -9952,73 +9666,73 @@ nuxt-gtag@3.0.1: pathe "^1.1.2" ufo "^1.5.4" -nuxt@3.13.2: - version "3.13.2" - resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-3.13.2.tgz#af43a1fb5ccaaf98be0aaeca1bee504eeee24135" - integrity sha512-Bjc2qRsipfBhjXsBEJCN+EUAukhdgFv/KoIR5HFB2hZOYRSqXBod3oWQs78k3ja1nlIhAEdBG533898KJxUtJw== +nuxt@3.14.159: + version "3.14.159" + resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-3.14.159.tgz#3c1c70ded8bd302457c86f3250af3ccc3389ad03" + integrity sha512-1xz6AfFkun+byUIkBNX3/CTOTShPRFJe0y9HqWZX2aV9xdoz5ByeaHZfktokhOOSbvabjDyzkTbbHh3V673qHw== dependencies: "@nuxt/devalue" "^2.0.2" - "@nuxt/devtools" "^1.4.2" - "@nuxt/kit" "3.13.2" - "@nuxt/schema" "3.13.2" + "@nuxt/devtools" "^1.6.0" + "@nuxt/kit" "3.14.159" + "@nuxt/schema" "3.14.159" "@nuxt/telemetry" "^2.6.0" - "@nuxt/vite-builder" "3.13.2" - "@unhead/dom" "^1.11.5" - "@unhead/shared" "^1.11.5" - "@unhead/ssr" "^1.11.5" - "@unhead/vue" "^1.11.5" - "@vue/shared" "^3.5.5" - acorn "8.12.1" - c12 "^1.11.2" - chokidar "^3.6.0" + "@nuxt/vite-builder" "3.14.159" + "@unhead/dom" "^1.11.11" + "@unhead/shared" "^1.11.11" + "@unhead/ssr" "^1.11.11" + "@unhead/vue" "^1.11.11" + "@vue/shared" "^3.5.12" + acorn "8.14.0" + c12 "^2.0.1" + chokidar "^4.0.1" compatx "^0.1.8" consola "^3.2.3" cookie-es "^1.2.2" defu "^6.1.4" destr "^2.0.3" - devalue "^5.0.0" + devalue "^5.1.1" errx "^0.1.0" - esbuild "^0.23.1" + esbuild "^0.24.0" escape-string-regexp "^5.0.0" estree-walker "^3.0.3" globby "^14.0.2" - h3 "^1.12.0" + h3 "^1.13.0" hookable "^5.5.3" - ignore "^5.3.2" - impound "^0.1.0" - jiti "^1.21.6" + ignore "^6.0.2" + impound "^0.2.0" + jiti "^2.4.0" klona "^2.0.6" knitwork "^1.1.0" - magic-string "^0.30.11" - mlly "^1.7.1" + magic-string "^0.30.12" + mlly "^1.7.2" nanotar "^0.1.1" - nitropack "^2.9.7" - nuxi "^3.13.2" - nypm "^0.3.11" - ofetch "^1.3.4" + nitropack "^2.10.3" + nuxi "^3.15.0" + nypm "^0.3.12" + ofetch "^1.4.1" ohash "^1.1.4" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.2.0" + pkg-types "^1.2.1" radix3 "^1.1.2" scule "^1.3.0" semver "^7.6.3" std-env "^3.7.0" strip-literal "^2.1.0" - tinyglobby "0.2.6" + tinyglobby "0.2.10" ufo "^1.5.4" ultrahtml "^1.5.3" uncrypto "^0.1.3" unctx "^2.3.1" unenv "^1.10.0" - unhead "^1.11.5" - unimport "^3.12.0" - unplugin "^1.14.1" + unhead "^1.11.11" + unimport "^3.13.1" + unplugin "^1.15.0" unplugin-vue-router "^0.10.8" - unstorage "^1.12.0" - untyped "^1.4.2" - vue "^3.5.5" - vue-bundle-renderer "^2.1.0" + unstorage "^1.13.1" + untyped "^1.5.1" + vue "^3.5.12" + vue-bundle-renderer "^2.1.1" vue-devtools-stub "^0.1.0" vue-router "^4.4.5" @@ -10027,7 +9741,7 @@ nwsapi@^2.2.4: resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.13.tgz#e56b4e98960e7a040e5474536587e599c4ff4655" integrity sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ== -nypm@^0.3.11, nypm@^0.3.8: +nypm@^0.3.11, nypm@^0.3.12, nypm@^0.3.8: version "0.3.12" resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.12.tgz#37541bec0af3a37d3acd81d6662c6666e650b22e" integrity sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA== @@ -12555,7 +12269,7 @@ std-env@3.7.0: resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.7.0.tgz#c9f7386ced6ecf13360b6c6c55b8aaa4ef7481d2" integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg== -std-env@^3.3.3, std-env@^3.5.0, std-env@^3.7.0: +std-env@^3.3.3, std-env@^3.5.0, std-env@^3.7.0, std-env@^3.8.0: version "3.8.0" resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.8.0.tgz#b56ffc1baf1a29dcc80a3bdf11d7fca7c315e7d5" integrity sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w== @@ -13102,15 +12816,7 @@ tinyexec@^0.3.0, tinyexec@^0.3.1: resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-0.3.1.tgz#0ab0daf93b43e2c211212396bdb836b468c97c98" integrity sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ== -tinyglobby@0.2.6: - version "0.2.6" - resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.6.tgz#950baf1462d0c0b443bc3d754d0d39c2e589aaae" - integrity sha512-NbBoFBpqfcgd1tCiO8Lkfdk+xrA7mlLR9zgvZcZWQQwU63XAfUePyd6wZBaU93Hqw347lHnwFzttAkemHzzz4g== - dependencies: - fdir "^6.3.0" - picomatch "^4.0.2" - -tinyglobby@^0.2.10, tinyglobby@^0.2.6: +tinyglobby@0.2.10, tinyglobby@^0.2.10, tinyglobby@^0.2.6: version "0.2.10" resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.10.tgz#e712cf2dc9b95a1f5c5bbd159720e15833977a0f" integrity sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew== @@ -13430,7 +13136,7 @@ unenv@^1.10.0, unenv@^1.9.0: node-fetch-native "^1.6.4" pathe "^1.1.2" -unhead@1.11.11, unhead@^1.11.5: +unhead@1.11.11, unhead@^1.11.11: version "1.11.11" resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.11.11.tgz#5115d42ccb4c76fa6053b5b83831a1e14de901a1" integrity sha512-98tM2R8OWJhvS6uqTewkfIrsPqFU/VwnKpU2tVZ+jPXSWgWSLmM3K2Y2v5AEM4bZjmC/XH8pLVGzbqB7xzFI/Q== @@ -13566,7 +13272,7 @@ unset-value@^1.0.0: has-value "^0.3.1" isobject "^3.0.0" -unstorage@^1.10.1, unstorage@^1.12.0, unstorage@^1.13.1: +unstorage@^1.10.1, unstorage@^1.13.1: version "1.13.1" resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.13.1.tgz#090b30de978ee8755b3ad7bbc00acfade124ac13" integrity sha512-ELexQHUrG05QVIM/iUeQNdl9FXDZhqLJ4yP59fnmn2jGUh0TEulwOgov1ubOb3Gt2ZGK/VMchJwPDNVEGWQpRg== @@ -13591,7 +13297,7 @@ untun@^0.1.3: consola "^3.2.3" pathe "^1.1.1" -untyped@^1.4.2, untyped@^1.5.1: +untyped@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/untyped/-/untyped-1.5.1.tgz#2ccf3ee09419d59a44c21a192877ab45aa98361a" integrity sha512-reBOnkJBFfBZ8pCKaeHgfZLcehXtM6UTxc+vqs1JvCps0c4amLNp3fhdGBZwYp+VLyoY9n3X5KOP7lCyWBUX9A== @@ -13817,7 +13523,7 @@ vite-node@2.1.1: pathe "^1.1.2" vite "^5.0.0" -vite-node@^2.1.1: +vite-node@^2.1.4: version "2.1.5" resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.5.tgz#cf28c637b2ebe65921f3118a165b7cf00a1cdf19" integrity sha512-rd0QIgx74q4S1Rd56XIiL2cYEdyWn13cunYBIuqh9mpmQr7gGS0IxXoP8R6OaZtNQQLyXSWbd4rXKYUbhFpK5w== @@ -13948,7 +13654,7 @@ vite@5.4.6: optionalDependencies: fsevents "~2.3.3" -"vite@^3.0.0 || ^4.0.0 || ^5.0.0-0", "vite@^3.1.0 || ^4.0.0 || ^5.0.0-0", vite@^5.0.0, vite@^5.3.1, vite@^5.4.5: +"vite@^3.0.0 || ^4.0.0 || ^5.0.0-0", "vite@^3.1.0 || ^4.0.0 || ^5.0.0-0", vite@^5.0.0, vite@^5.3.1, vite@^5.4.10: version "5.4.11" resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.11.tgz#3b415cd4aed781a356c1de5a9ebafb837715f6e5" integrity sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q== @@ -14096,7 +13802,7 @@ vscode-uri@^3.0.2, vscode-uri@^3.0.8: resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.8.tgz#1770938d3e72588659a172d0fd4642780083ff9f" integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw== -vue-bundle-renderer@^2.1.0: +vue-bundle-renderer@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/vue-bundle-renderer/-/vue-bundle-renderer-2.1.1.tgz#77147f96d865729828b3a5dff2bccffa8370dde9" integrity sha512-+qALLI5cQncuetYOXp4yScwYvqh8c6SMXee3B+M7oTZxOgtESP0l4j/fXdEJoZ+EdMxkGWIj+aSEyjXkOdmd7g== @@ -14218,18 +13924,7 @@ vue3-cookies@^1.0.6: dependencies: vue "^3.0.0" -vue@3.5.6: - version "3.5.6" - resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.6.tgz#025b1d411627883577457797eff93e85e61ef9c1" - integrity sha512-zv+20E2VIYbcJOzJPUWp03NOGFhMmpCKOfSxVTmCYyYFFko48H9tmuQFzYj7tu4qX1AeXlp9DmhIP89/sSxxhw== - dependencies: - "@vue/compiler-dom" "3.5.6" - "@vue/compiler-sfc" "3.5.6" - "@vue/runtime-dom" "3.5.6" - "@vue/server-renderer" "3.5.6" - "@vue/shared" "3.5.6" - -vue@^3.0.0, vue@^3.4.29, vue@^3.5.5: +vue@3.5.13, vue@^3.0.0, vue@^3.4.29, vue@^3.5.12: version "3.5.13" resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.13.tgz#9f760a1a982b09c0c04a867903fc339c9f29ec0a" integrity sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ== @@ -14525,9 +14220,9 @@ yaml-ast-parser@0.0.43: integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== yaml@^2.3.4, yaml@^2.5.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.0.tgz#14059ad9d0b1680d0f04d3a60fe00f3a857303c3" - integrity sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ== + version "2.6.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.1.tgz#42f2b1ba89203f374609572d5349fb8686500773" + integrity sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg== yargs-parser@^21.1.1: version "21.1.1" From f2d5032845924de54e40e0ba22248a6bd3591af4 Mon Sep 17 00:00:00 2001 From: connoratrug Date: Wed, 20 Nov 2024 09:28:49 +0100 Subject: [PATCH 25/25] update lock --- apps/yarn.lock | 177 ++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 166 insertions(+), 11 deletions(-) diff --git a/apps/yarn.lock b/apps/yarn.lock index 6375c66087..fa3f60edd6 100644 --- a/apps/yarn.lock +++ b/apps/yarn.lock @@ -1353,6 +1353,32 @@ unimport "^3.13.1" untyped "^1.5.1" +"@nuxt/kit@3.14.1592": + version "3.14.1592" + resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.14.1592.tgz#f959a269424c1ee313585a46112e474b6ccab3bc" + integrity sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w== + dependencies: + "@nuxt/schema" "3.14.1592" + c12 "^2.0.1" + consola "^3.2.3" + defu "^6.1.4" + destr "^2.0.3" + globby "^14.0.2" + hash-sum "^2.0.0" + ignore "^6.0.2" + jiti "^2.4.0" + klona "^2.0.6" + knitwork "^1.1.0" + mlly "^1.7.3" + pathe "^1.1.2" + pkg-types "^1.2.1" + scule "^1.3.0" + semver "^7.6.3" + ufo "^1.5.4" + unctx "^2.3.1" + unimport "^3.13.2" + untyped "^1.5.1" + "@nuxt/schema@3.14.159", "@nuxt/schema@^3.11.1", "@nuxt/schema@^3.13.1", "@nuxt/schema@^3.13.2": version "3.14.159" resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.14.159.tgz#c9e9a18f090fe44281d4b9f567474610d60ec1f9" @@ -1372,6 +1398,25 @@ unimport "^3.13.1" untyped "^1.5.1" +"@nuxt/schema@3.14.1592": + version "3.14.1592" + resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.14.1592.tgz#38c5c0af51d0b95e011db6c332f578aac97c8c82" + integrity sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ== + dependencies: + c12 "^2.0.1" + compatx "^0.1.8" + consola "^3.2.3" + defu "^6.1.4" + hookable "^5.5.3" + pathe "^1.1.2" + pkg-types "^1.2.1" + scule "^1.3.0" + std-env "^3.8.0" + ufo "^1.5.4" + uncrypto "^0.1.3" + unimport "^3.13.2" + untyped "^1.5.1" + "@nuxt/telemetry@^2.6.0": version "2.6.0" resolved "https://registry.yarnpkg.com/@nuxt/telemetry/-/telemetry-2.6.0.tgz#f8b06aa804c8224bbd0762a765363df1968dd01c" @@ -1523,6 +1568,46 @@ vite-plugin-checker "^0.8.0" vue-bundle-renderer "^2.1.1" +"@nuxt/vite-builder@3.14.1592": + version "3.14.1592" + resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.14.1592.tgz#ed143efaf267920f0f1cda5584b811bb017c0e82" + integrity sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ== + dependencies: + "@nuxt/kit" "3.14.1592" + "@rollup/plugin-replace" "^6.0.1" + "@vitejs/plugin-vue" "^5.2.0" + "@vitejs/plugin-vue-jsx" "^4.1.0" + autoprefixer "^10.4.20" + clear "^0.1.0" + consola "^3.2.3" + cssnano "^7.0.6" + defu "^6.1.4" + esbuild "^0.24.0" + escape-string-regexp "^5.0.0" + estree-walker "^3.0.3" + externality "^1.0.2" + get-port-please "^3.1.2" + h3 "^1.13.0" + jiti "^2.4.0" + knitwork "^1.1.0" + magic-string "^0.30.13" + mlly "^1.7.3" + ohash "^1.1.4" + pathe "^1.1.2" + perfect-debounce "^1.0.0" + pkg-types "^1.2.1" + postcss "^8.4.49" + rollup-plugin-visualizer "^5.12.0" + std-env "^3.8.0" + strip-literal "^2.1.0" + ufo "^1.5.4" + unenv "^1.10.0" + unplugin "^1.16.0" + vite "^5.4.11" + vite-node "^2.1.5" + vite-plugin-checker "^0.8.0" + vue-bundle-renderer "^2.1.1" + "@nuxtjs/tailwindcss@6.12.0": version "6.12.0" resolved "https://registry.yarnpkg.com/@nuxtjs/tailwindcss/-/tailwindcss-6.12.0.tgz#cb0ecaafd30c2773d98e175d32f411357ef210aa" @@ -2314,7 +2399,7 @@ node-gyp-build "^4.2.2" resolve-from "^5.0.0" -"@vitejs/plugin-vue-jsx@^4.0.1": +"@vitejs/plugin-vue-jsx@^4.0.1", "@vitejs/plugin-vue-jsx@^4.1.0": version "4.1.0" resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.1.0.tgz#16e048d1eebf74c2d431033d9ca82a74bbd73e5d" integrity sha512-KuRejz7KAFvhXDzOudlaS2IyygAwoAEEMtHAdcRSy/8cA5iKH043Qudcz48zsC0M0vvN5iKwIwNMuWbBYn6/Yg== @@ -2328,7 +2413,7 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.6.2.tgz#057d2ded94c4e71b94e9814f92dcd9306317aa46" integrity sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw== -"@vitejs/plugin-vue@^5.0.5", "@vitejs/plugin-vue@^5.1.4": +"@vitejs/plugin-vue@^5.0.5", "@vitejs/plugin-vue@^5.1.4", "@vitejs/plugin-vue@^5.2.0": version "5.2.0" resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.2.0.tgz#994f3b4f12d3590c5a6895df4cbd270d9a6d5e17" integrity sha512-7n7KdUEtx/7Yl7I/WVAMZ1bEb0eVvXF3ummWTeLcs/9gvo9pJhuLdouSXGjdZ/MKD1acf1I272+X0RMua4/R3g== @@ -2756,7 +2841,7 @@ "@vue/compiler-ssr" "3.5.13" "@vue/shared" "3.5.13" -"@vue/shared@3.5.13", "@vue/shared@^3.3.0", "@vue/shared@^3.4.0", "@vue/shared@^3.5.0", "@vue/shared@^3.5.12": +"@vue/shared@3.5.13", "@vue/shared@^3.3.0", "@vue/shared@^3.4.0", "@vue/shared@^3.5.0", "@vue/shared@^3.5.12", "@vue/shared@^3.5.13": version "3.5.13" resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.13.tgz#87b309a6379c22b926e696893237826f64339b6f" integrity sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ== @@ -8655,7 +8740,7 @@ magic-string-ast@^0.6.2: dependencies: magic-string "^0.30.10" -magic-string@^0.30.0, magic-string@^0.30.1, magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.12, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.5, magic-string@^0.30.8: +magic-string@^0.30.0, magic-string@^0.30.1, magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.12, magic-string@^0.30.13, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.5, magic-string@^0.30.8: version "0.30.13" resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.13.tgz#92438e3ff4946cf54f18247c981e5c161c46683c" integrity sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g== @@ -9373,7 +9458,7 @@ neo-async@^2.6.2: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== -nitropack@^2.10.3: +nitropack@^2.10.3, nitropack@^2.10.4: version "2.10.4" resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.10.4.tgz#f7eb092bf7296257bf2426c45134fba61373e026" integrity sha512-sJiG/MIQlZCVSw2cQrFG1H6mLeSqHlYfFerRjLKz69vUfdu0EL2l0WdOxlQbzJr3mMv/l4cOlCCLzVRzjzzF/g== @@ -9736,6 +9821,76 @@ nuxt@3.14.159: vue-devtools-stub "^0.1.0" vue-router "^4.4.5" +nuxt@3.14.1592: + version "3.14.1592" + resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-3.14.1592.tgz#0f94132b7e0ffe9087b37392f295e2c7d5d05ee3" + integrity sha512-roWAQH4Mb6WY72cNos+YVw0DgTCNAhNygiAMCedM7hbX6ESTR2n3VH7tU0yIWDPe/hfFdii4M4wWTTNHOtS44g== + dependencies: + "@nuxt/devalue" "^2.0.2" + "@nuxt/devtools" "^1.6.0" + "@nuxt/kit" "3.14.1592" + "@nuxt/schema" "3.14.1592" + "@nuxt/telemetry" "^2.6.0" + "@nuxt/vite-builder" "3.14.1592" + "@unhead/dom" "^1.11.11" + "@unhead/shared" "^1.11.11" + "@unhead/ssr" "^1.11.11" + "@unhead/vue" "^1.11.11" + "@vue/shared" "^3.5.13" + acorn "8.14.0" + c12 "^2.0.1" + chokidar "^4.0.1" + compatx "^0.1.8" + consola "^3.2.3" + cookie-es "^1.2.2" + defu "^6.1.4" + destr "^2.0.3" + devalue "^5.1.1" + errx "^0.1.0" + esbuild "^0.24.0" + escape-string-regexp "^5.0.0" + estree-walker "^3.0.3" + globby "^14.0.2" + h3 "^1.13.0" + hookable "^5.5.3" + ignore "^6.0.2" + impound "^0.2.0" + jiti "^2.4.0" + klona "^2.0.6" + knitwork "^1.1.0" + magic-string "^0.30.13" + mlly "^1.7.3" + nanotar "^0.1.1" + nitropack "^2.10.4" + nuxi "^3.15.0" + nypm "^0.3.12" + ofetch "^1.4.1" + ohash "^1.1.4" + pathe "^1.1.2" + perfect-debounce "^1.0.0" + pkg-types "^1.2.1" + radix3 "^1.1.2" + scule "^1.3.0" + semver "^7.6.3" + std-env "^3.8.0" + strip-literal "^2.1.0" + tinyglobby "0.2.10" + ufo "^1.5.4" + ultrahtml "^1.5.3" + uncrypto "^0.1.3" + unctx "^2.3.1" + unenv "^1.10.0" + unhead "^1.11.11" + unimport "^3.13.2" + unplugin "^1.16.0" + unplugin-vue-router "^0.10.8" + unstorage "^1.13.1" + untyped "^1.5.1" + vue "^3.5.13" + vue-bundle-renderer "^2.1.1" + vue-devtools-stub "^0.1.0" + vue-router "^4.4.5" + nwsapi@^2.2.4: version "2.2.13" resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.13.tgz#e56b4e98960e7a040e5474536587e599c4ff4655" @@ -10738,7 +10893,7 @@ postcss@8.4.39: picocolors "^1.0.1" source-map-js "^1.2.0" -postcss@^8.4.23, postcss@^8.4.27, postcss@^8.4.38, postcss@^8.4.43, postcss@^8.4.47, postcss@^8.4.48: +postcss@^8.4.23, postcss@^8.4.27, postcss@^8.4.38, postcss@^8.4.43, postcss@^8.4.47, postcss@^8.4.48, postcss@^8.4.49: version "8.4.49" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== @@ -13151,7 +13306,7 @@ unicorn-magic@^0.1.0: resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4" integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ== -unimport@^3.12.0, unimport@^3.13.1: +unimport@^3.12.0, unimport@^3.13.1, unimport@^3.13.2: version "3.13.2" resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.13.2.tgz#2a5f7458c66bc65485d62ad28462d38832aee0ba" integrity sha512-VKAepeIb6BWLtBl4tmyHY1/7rJgz3ynmZrWf8cU1a+v5Uv/k1gyyAEeGBnYcrwy8bxG5sflxEx4a9VQUqOVHUA== @@ -13256,7 +13411,7 @@ unplugin-vue-router@^0.10.8: unplugin "^1.12.2" yaml "^2.5.0" -unplugin@^1.10.0, unplugin@^1.12.2, unplugin@^1.14.0, unplugin@^1.14.1, unplugin@^1.15.0, unplugin@^1.3.1: +unplugin@^1.10.0, unplugin@^1.12.2, unplugin@^1.14.0, unplugin@^1.14.1, unplugin@^1.15.0, unplugin@^1.16.0, unplugin@^1.3.1: version "1.16.0" resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.16.0.tgz#ca0f248bf8798cd752dd02e5b381223b737cef72" integrity sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ== @@ -13523,7 +13678,7 @@ vite-node@2.1.1: pathe "^1.1.2" vite "^5.0.0" -vite-node@^2.1.4: +vite-node@^2.1.4, vite-node@^2.1.5: version "2.1.5" resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.5.tgz#cf28c637b2ebe65921f3118a165b7cf00a1cdf19" integrity sha512-rd0QIgx74q4S1Rd56XIiL2cYEdyWn13cunYBIuqh9mpmQr7gGS0IxXoP8R6OaZtNQQLyXSWbd4rXKYUbhFpK5w== @@ -13654,7 +13809,7 @@ vite@5.4.6: optionalDependencies: fsevents "~2.3.3" -"vite@^3.0.0 || ^4.0.0 || ^5.0.0-0", "vite@^3.1.0 || ^4.0.0 || ^5.0.0-0", vite@^5.0.0, vite@^5.3.1, vite@^5.4.10: +"vite@^3.0.0 || ^4.0.0 || ^5.0.0-0", "vite@^3.1.0 || ^4.0.0 || ^5.0.0-0", vite@^5.0.0, vite@^5.3.1, vite@^5.4.10, vite@^5.4.11: version "5.4.11" resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.11.tgz#3b415cd4aed781a356c1de5a9ebafb837715f6e5" integrity sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q== @@ -13924,7 +14079,7 @@ vue3-cookies@^1.0.6: dependencies: vue "^3.0.0" -vue@3.5.13, vue@^3.0.0, vue@^3.4.29, vue@^3.5.12: +vue@3.5.13, vue@^3.0.0, vue@^3.4.29, vue@^3.5.12, vue@^3.5.13: version "3.5.13" resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.13.tgz#9f760a1a982b09c0c04a867903fc339c9f29ec0a" integrity sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==