From 72173e3a2df4fa68a304d6ced6fb67251130d83c Mon Sep 17 00:00:00 2001 From: Preschian Febryantara Date: Tue, 17 Dec 2024 22:01:21 +0700 Subject: [PATCH 1/6] debug: disable i18n --- nuxt.config.ts | 2 +- plugins/i18n.ts | 13 +++-- utils/config/i18n.ts | 129 ++++++++++++++++++++++++++++++++----------- 3 files changed, 108 insertions(+), 36 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index dcdb8ce9cb..3ad35fdc18 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -268,7 +268,7 @@ export default defineNuxtConfig({ modules: [ '@nuxt/image', '@nuxtjs/apollo', - '@nuxtjs/i18n', + // '@nuxtjs/i18n', '@vite-pwa/nuxt', '@nuxtjs/color-mode', '@vueuse/nuxt', diff --git a/plugins/i18n.ts b/plugins/i18n.ts index e46c18e58a..db03693494 100644 --- a/plugins/i18n.ts +++ b/plugins/i18n.ts @@ -1,5 +1,10 @@ -export default defineNuxtPlugin((nuxtApp) => { - nuxtApp.hook('app:beforeMount', (app) => { - app.$nuxt.$i18n.locale.value = usePreferencesStore().getUserLocale - }) +import { i18nManager } from '@/utils/config/i18n' + +export default defineNuxtPlugin(() => { + return { + provide: { + i18n: i18nManager, + t: (key: string, values?: any[]) => i18nManager.t(key, values), + }, + } }) diff --git a/utils/config/i18n.ts b/utils/config/i18n.ts index 2530a4c469..5be3845ca4 100644 --- a/utils/config/i18n.ts +++ b/utils/config/i18n.ts @@ -1,9 +1,8 @@ import MarkdownIt from 'markdown-it' -import type { LocaleMessages, VueMessageType } from '#i18n' -import { defineI18nConfig } from '#i18n' import commonData from '@/locales/all_lang.json' const locales = import.meta.glob('../../locales/*.json', { eager: true }) + export const langsFlags = [ { value: 'en', @@ -32,40 +31,108 @@ export const langsFlags = [ }, ] -export const setUserLocale = (locale: string) => { - const { $i18n } = useNuxtApp() - const preferenceStore = usePreferencesStore() - preferenceStore.setUserLocale(locale) - $i18n.locale.value = locale -} - const md = MarkdownIt({ breaks: false, }) -function getMessages() { - const messages: { [x: string]: LocaleMessages } = {} - for (const [key, value] of Object.entries(locales)) { - const matched = key.match(/([A-Za-z0-9-_]+)\./i) - if (matched && matched.length > 1) { - const locale = matched[1] - if (locale === 'all_lang') { - continue + +type TranslationMessages = { [key: string]: any } + +class I18nManager { + private messages: { [locale: string]: TranslationMessages } = {} + private currentLocale: string = process.env.VUE_APP_I18N_LOCALE || 'en' + + constructor() { + this.loadMessages() + } + + private loadMessages() { + for (const [key, value] of Object.entries(locales)) { + const matched = key.match(/([A-Za-z0-9-_]+)\./i) + if (matched && matched.length > 1) { + const locale = matched[1] + if (locale === 'all_lang') { + continue + } + this.messages[locale] = value.default } - messages[locale] = value.default } } - return messages + + public t(key: string, values?: any[] | Record): string { + const keys = key.split('.') + let message = this.messages[this.currentLocale] + + for (const k of keys) { + if (!message) return key + message = message[k] + } + + if (!message) return key + + if (Array.isArray(values) && values.length > 0) { + return this.interpolateArray(message, values) + } + else if (values && typeof values === 'object') { + return this.interpolateObject(message, values) + } + + return message + } + + private interpolateArray(message: string, values: any[]): string { + return message.replace(/\{(\d+)\}/g, (_, index) => values[parseInt(index)] || '') + } + + private interpolateObject(message: string, values: Record): string { + return message.replace(/\{([^}]+)\}/g, (_, key) => values[key] || '') + } + + public setLocale(locale: string) { + if (this.messages[locale]) { + this.currentLocale = locale + if (import.meta.client) { + localStorage.setItem('userLocale', locale) + } + } + } + + public get locale() { + return { + value: this.currentLocale, + } + } + + public renderMarkdown(str: string): string { + return md.renderInline(str) + } + + public getCommonData(str: string): any { + return str.split('.').reduce((o, i) => o[i], commonData) + } + + public modifiers = { + md: (str: string) => this.renderMarkdown(str), + common: (str: string) => this.getCommonData(str), + } } -export default defineI18nConfig(() => ({ - locale: process.env.VUE_APP_I18N_LOCALE || 'en', - fallbackLocale: process.env.VUE_APP_I18N_FALLBACK_LOCALE || 'en', - silentTranslationWarn: true, - modifiers: { - md: str => md.renderInline(str), - common: str => str.split('.').reduce((o, i) => o[i], commonData), - }, - messages: getMessages(), - warnHtmlInMessage: false, - warnHtmlMessage: false, -})) +// Create singleton instance +export const i18nManager = new I18nManager() + +export const setUserLocale = (locale: string) => { + const preferenceStore = usePreferencesStore() + preferenceStore.setUserLocale(locale) + i18nManager.setLocale(locale) +} + +// Composable for use in components +export const useI18n = () => { + const nuxtApp = useNuxtApp() + return { + t: (key: string, values?: any[] | Record) => nuxtApp.$t(key, values), + locale: nuxtApp.$i18n.locale, + setLocale: (locale: string) => nuxtApp.$i18n.setLocale(locale), + } +} + +export default i18nManager From d3e3ad8d7f393c30c65c517680179f3e326b585b Mon Sep 17 00:00:00 2001 From: Preschian Febryantara Date: Tue, 17 Dec 2024 22:15:46 +0700 Subject: [PATCH 2/6] fix: disable i18n components in CookieBanner, UsingKodaHash, and PrivateMintRequirements --- components/CookieBanner.vue | 4 +- .../codeChecker/issueHint/UsingKodaHash.vue | 4 +- .../requirement/PrivateMintRequirements.vue | 6 +- package.json | 1 - pnpm-lock.yaml | 1294 +++-------------- 5 files changed, 205 insertions(+), 1104 deletions(-) diff --git a/components/CookieBanner.vue b/components/CookieBanner.vue index a4171c2c85..42ae0d1814 100644 --- a/components/CookieBanner.vue +++ b/components/CookieBanner.vue @@ -1,7 +1,7 @@ diff --git a/components/codeChecker/issueHint/UsingKodaHash.vue b/components/codeChecker/issueHint/UsingKodaHash.vue index 2119b47112..377bea57f7 100644 --- a/components/codeChecker/issueHint/UsingKodaHash.vue +++ b/components/codeChecker/issueHint/UsingKodaHash.vue @@ -1,5 +1,5 @@ - + --> - - + --> @@ -105,7 +105,7 @@ const props = defineProps<{ }>() const { $i18n } = useNuxtApp() -const { urlPrefix } = usePrefix() +// const { urlPrefix } = usePrefix() const { accountId } = useAuth() const { chainName } = useDrop() diff --git a/package.json b/package.json index 580bd23ce6..953606d4a4 100644 --- a/package.json +++ b/package.json @@ -120,7 +120,6 @@ "@nuxtjs/color-mode": "^3.5.1", "@nuxtjs/device": "^3.2.2", "@nuxtjs/google-fonts": "^3.2.0", - "@nuxtjs/i18n": "^8.5.3", "@nuxtjs/sitemap": "^5.3.5", "@playwright/test": "^1.47.1", "@types/jest": "^27.5.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 262cae3062..ae8bd93a9a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -108,16 +108,16 @@ importers: version: 5.1.3(vite@5.4.5(@types/node@20.16.5)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3))(vue@3.5.6(typescript@5.5.4)) '@wagmi/connectors': specifier: ^5.1.10 - version: 5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + version: 5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': specifier: ^2.13.5 version: 2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)) '@wagmi/vue': specifier: ^0.0.44 - version: 0.0.44(@tanstack/query-core@5.56.2)(@tanstack/vue-query@5.56.2(vue@3.5.6(typescript@5.5.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(nuxt@3.13.2(@opentelemetry/api@1.9.0)(@parcel/watcher@2.4.1)(@types/node@20.16.5)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(idb-keyval@6.2.1)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.3)(rollup@4.18.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3)(typescript@5.5.4)(utf-8-validate@5.0.10)(vite@5.4.5(@types/node@20.16.5)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3))(webpack-sources@3.2.3))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(vue@3.5.6(typescript@5.5.4))(zod@3.22.4) + version: 0.0.44(@tanstack/query-core@5.56.2)(@tanstack/vue-query@5.56.2(vue@3.5.6(typescript@5.5.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(nuxt@3.13.2(@opentelemetry/api@1.9.0)(@parcel/watcher@2.4.1)(@types/node@20.16.5)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(idb-keyval@6.2.1)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.3)(rollup@4.18.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3)(typescript@5.5.4)(utf-8-validate@5.0.10)(vite@5.4.5(@types/node@20.16.5)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3))(webpack-sources@3.2.3))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(vue@3.5.6(typescript@5.5.4))(zod@3.22.4) '@web3modal/wagmi': specifier: ^4.2.3 - version: 4.2.3(@wagmi/connectors@5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(vue@3.5.6(typescript@5.5.4)) + version: 4.2.3(@wagmi/connectors@5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(vue@3.5.6(typescript@5.5.4)) chart.js: specifier: ^4.4.4 version: 4.4.4 @@ -221,9 +221,6 @@ importers: '@nuxtjs/google-fonts': specifier: ^3.2.0 version: 3.2.0(rollup@4.18.0)(webpack-sources@3.2.3) - '@nuxtjs/i18n': - specifier: ^8.5.3 - version: 8.5.3(magicast@0.3.4)(rollup@4.18.0)(vue@3.5.6(typescript@5.5.4))(webpack-sources@3.2.3) '@nuxtjs/sitemap': specifier: ^5.3.5 version: 5.3.5(h3@1.12.0)(magicast@0.3.4)(rollup@4.18.0)(vite@5.4.5(@types/node@20.16.5)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3))(vue@3.5.6(typescript@5.5.4))(webpack-sources@3.2.3) @@ -2098,57 +2095,6 @@ packages: '@interlay/interbtc-types@1.13.0': resolution: {integrity: sha512-oUjavcfnX7lxlMd10qGc48/MoATX37TQcuSAZBIUmpCRiJ15hZbQoTAKGgWMPsla3+3YqUAzkWUEVMwUvM1U+w==} - '@intlify/bundle-utils@7.5.1': - resolution: {integrity: sha512-UovJl10oBIlmYEcWw+VIHdKY5Uv5sdPG0b/b6bOYxGLln3UwB75+2dlc0F3Fsa0RhoznQ5Rp589/BZpABpE4Xw==} - engines: {node: '>= 14.16'} - peerDependencies: - petite-vue-i18n: '*' - vue-i18n: '*' - peerDependenciesMeta: - petite-vue-i18n: - optional: true - vue-i18n: - optional: true - - '@intlify/core-base@9.11.0': - resolution: {integrity: sha512-cveOqAstjLZIiyatcP/HrzrQ87cZI8ScPQna3yvoM8zjcjcIRK1MRvmxUNlPdg0rTNJMZw7rixPVM58O5aHVPA==} - engines: {node: '>= 16'} - - '@intlify/core@9.11.0': - resolution: {integrity: sha512-ve7wvL9G+7zITIIc75hNhJ1sWjImfQgpU9aS/C2cIHCnKD37ZgRJosKDb257FwXcmUH0MhHfY/p5yjURaMXY+g==} - engines: {node: '>= 16'} - - '@intlify/h3@0.5.0': - resolution: {integrity: sha512-cgfrtD3qu3BPJ47gfZ35J2LJpI64Riic0K8NGgid5ilyPXRQTNY7mXlT/B+HZYQg1hmBxKa5G5HJXyAZ4R2H5A==} - engines: {node: '>= 18'} - - '@intlify/message-compiler@9.11.0': - resolution: {integrity: sha512-x31Gl7cscnoI4UUY1yaIy8e7vVMVW1VVlTXZz4SIHKqoSEUkfmgqK8NAx1e7RcoHEbICR7uyCbud0ZL1s4OGXQ==} - engines: {node: '>= 16'} - - '@intlify/shared@9.11.0': - resolution: {integrity: sha512-KHSNgi7sRjmSm7aD8QH8WFt9VfKaekJuJ473opbJlkGY3EDnDUU8ikIhG8PbasQbgNvbY3m3tWNGqk2omIdwMA==} - engines: {node: '>= 16'} - - '@intlify/unplugin-vue-i18n@3.0.1': - resolution: {integrity: sha512-q1zJhA/WpoLBzAAuKA5/AEp0e+bMOM10ll/HxT4g1VAw/9JhC4TTobP9KobKH90JMZ4U2daLFlYQfKNd29lpqw==} - engines: {node: '>= 14.16'} - peerDependencies: - petite-vue-i18n: '*' - vue-i18n: '*' - vue-i18n-bridge: '*' - peerDependenciesMeta: - petite-vue-i18n: - optional: true - vue-i18n: - optional: true - vue-i18n-bridge: - optional: true - - '@intlify/utils@0.12.0': - resolution: {integrity: sha512-yCBNcuZQ49iInqmWC2xfW0rgEQyNtCM8C8KcWKTXxyscgUE1+48gjLgZZqP75MjhlApxwph7ZMWLqyABkSgxQA==} - engines: {node: '>= 18'} - '@ioredis/commands@1.2.0': resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} @@ -2377,11 +2323,6 @@ packages: '@metaverse-network-sdk/type-definitions@0.0.1-16': resolution: {integrity: sha512-lo1NbA0gi+Tu23v4cTkN/oxEhQxaf3QxQ2qvUUfTxDU7a1leYp2Bw3IcoUvqHAGb/PPp8bNmYQfAKXsjqp+LZw==} - '@miyaneee/rollup-plugin-json5@1.2.0': - resolution: {integrity: sha512-JjTIaXZp9WzhUHpElrqPnl1AzBi/rvRs065F71+aTmlqvTMVkdbjZ8vfFl4nRlgJy+TPBw69ZK4pwFdmOAt4aA==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 - '@monogrid/gainmap-js@3.0.5': resolution: {integrity: sha512-53sCTG4FaJBaAq/tcufARtVYDMDGqyBT9i7F453pWGhZ5LqubDHDWtYoHo9VhQqMcHTEexdJqSsR58y+9HVmQA==} peerDependencies: @@ -2673,10 +2614,6 @@ packages: '@nuxtjs/google-fonts@3.2.0': resolution: {integrity: sha512-cGAjDJoeQ2jm6VJCo4AtSmKO6KjsbO9RSLj8q261fD0lMVNMZCxkCxBkg8L0/2Vfgp+5QBHWVXL71p1tiybJFw==} - '@nuxtjs/i18n@8.5.3': - resolution: {integrity: sha512-owSqQtBzi6NYer1yFOpQxnZzRWg+85cXWvlweN+yKYN6hdacLtOpN/hZn3FiXXc5OKDNStTyi+QoVpb0OH4n7w==} - engines: {node: ^14.16.0 || >=16.11.0} - '@nuxtjs/mdc@0.8.3': resolution: {integrity: sha512-FqvJFWkBN9u2FeWog+7+C0aIOx0WIu61TYgAXPmmIOVVua6s2mXQsMyF3fXY2M56QBIaYJzK/SYN+5FGr5GNTQ==} @@ -3029,8 +2966,8 @@ packages: resolution: {integrity: sha512-Huo457lCqeavbrf1O/2qQYGNFWURLXndW4vNkj8AP+I757WIqebhc6K3+mz+KoV1aTsX/qwaiEgeoTjrrIwcqA==} engines: {node: '>=18'} - '@polkadot/api-augment@15.0.1': - resolution: {integrity: sha512-dNFrim/87+rStNCrI1aSaH0nZzRadDwEIya/p860lFRVZQpkBvZlqvSBQUqcKxI0c5c1pp1uaSEixq+A+IOUBg==} + '@polkadot/api-augment@15.0.2': + resolution: {integrity: sha512-7qtfTihLKS7cT2kEsd8Y1+MJ+2n4Sl0y9BHuPhdNfKcDbGwCxIB7JzXNujww4Is4bF7w1lXcM2U0E/XwJi1BbQ==} engines: {node: '>=18'} '@polkadot/api-augment@7.15.1': @@ -3049,8 +2986,8 @@ packages: resolution: {integrity: sha512-lVYTHQf8S4rpOJ9d1jvQjviHLE6zljl13vmgs+gXHGJwMAqhhNwKY3ZMQW/u/bRE2uKk0cAlahtsRtiFpjHAfw==} engines: {node: '>=18'} - '@polkadot/api-base@15.0.1': - resolution: {integrity: sha512-P4WQ+SqyuotVd//EFMIzlWLRbER9JycpdmTaKof2NpVioGotbHhJtO4TXPC3CW1C8zovM7KYrcWtz6b8/FxqoA==} + '@polkadot/api-base@15.0.2': + resolution: {integrity: sha512-5++EjpuCxzmrL2JJj511RrPK+IovuIQa8DJhyOp62VDMXPkqS/O6Df5wjYzQh/ftT1ZysftXqJAUA/LSUsH+2g==} engines: {node: '>=18'} '@polkadot/api-base@7.15.1': @@ -3069,8 +3006,8 @@ packages: resolution: {integrity: sha512-ts6D6tXmvhBpHDT7E03TStXfG6+/bXCvJ7HZUVNDXi4P9cToClzJVOX5uKsPI5/MUYDEq13scxPyQK63m8SsHg==} engines: {node: '>=18'} - '@polkadot/api-derive@15.0.1': - resolution: {integrity: sha512-gaLqZ8wL+hGMntq5gxHb6Rv+EQzmmnC63plMBvk5pnNfCm4xjN43GYpbOwSQknHVNo+irC7qwD3GyPK6TfFUUA==} + '@polkadot/api-derive@15.0.2': + resolution: {integrity: sha512-nD8hXZxEv2/wuhjMmVP09lTAYd8inNgrLpLGUR+7hBQeVEQQTdNatkqMKpNIOk2MO46mtUK35NepvDBK9DWZzA==} engines: {node: '>=18'} '@polkadot/api-derive@7.15.1': @@ -3089,8 +3026,8 @@ packages: resolution: {integrity: sha512-NwcWadMt+mrJ3T7RuwpnaIYtH4x0eix+GiKRtLMtIO32uAfhwVyMnqvLtxDxa4XDJ/es2rtSMYG+t0b1BTM+xQ==} engines: {node: '>=18'} - '@polkadot/api@15.0.1': - resolution: {integrity: sha512-ZOqw99B70XrX0it0cWu1YSBrtGNhdFpk5zvUVL5+FD8iyO+Tuk1m32VR0PukDCdlwxFXuEw7vRdZX/G/BzoZhg==} + '@polkadot/api@15.0.2': + resolution: {integrity: sha512-CA8Pq2Gsz2MJvpkpIVNzaBs2eJGCr0sEodAb0vTOZW/ZlIDHcBWyWq3KXE+lBMWVzYBEC4Vz6MafNgq6Bsshlw==} engines: {node: '>=18'} '@polkadot/api@7.15.1': @@ -3205,8 +3142,8 @@ packages: resolution: {integrity: sha512-AbkqWTnKCi71LdqFVbCyYelf5N/Wtj4jFnpRd8z7tIbbiAnNRW61dBgdF9jZ8jd9Z0JvfAmCmG17uCEdsqfNjA==} engines: {node: '>=18'} - '@polkadot/rpc-augment@15.0.1': - resolution: {integrity: sha512-4FoY+oXC08+vaLMAvFgOOjcFHNBHEv2kOqgxtO/yCyMLNvyRRnrBtMofznJ1EWEwzehvU5iSlbMCerKdImFRZQ==} + '@polkadot/rpc-augment@15.0.2': + resolution: {integrity: sha512-of88GdzsOs15HP+Gowh4G/iKKFkCNIeF0Wes8LiONfn+j2TmWt8blbyGhrIZZeApzbFUDFjnxUPGT40uWJcMpw==} engines: {node: '>=18'} '@polkadot/rpc-augment@7.15.1': @@ -3225,8 +3162,8 @@ packages: resolution: {integrity: sha512-GHNIHDvBts6HDvySfYksuLccaVnI+fc7ubY1uYcJMoyGv9pLhMtveH4Ft7NTxqkBqopbPXZHc8ca9CaIeBVr7w==} engines: {node: '>=18'} - '@polkadot/rpc-core@15.0.1': - resolution: {integrity: sha512-I5F1T17Nr5oEuqAysP7n14tWym54hCriqj0pV0tM4yfIF0iWaWPkqWNRU7uNfv86n3m15IMGoMapvgZVnUF5LQ==} + '@polkadot/rpc-core@15.0.2': + resolution: {integrity: sha512-KOUnfXOAFCN0N23sEbS+FzXhX88JCvJst/nKzO9+q67NgYBEqgcaoG4tqt/VVedgkNi0kA7WAA3wyjt5UYMnrg==} engines: {node: '>=18'} '@polkadot/rpc-core@7.15.1': @@ -3249,8 +3186,8 @@ packages: resolution: {integrity: sha512-TO9pdxNmTweK1vi9JYUAoLr/JYJUwPJTTdrSJrmGmiNPaM7txbQVgtT4suQYflVZTgXUYR7OYQ201fH+Qb9J9w==} engines: {node: '>=18'} - '@polkadot/rpc-provider@15.0.1': - resolution: {integrity: sha512-ziRob/sco751+OK700vNh7IivysFOeZthO7JpC8CEQhZ2c+z/HY7bNsAucy1q1ELGe7xLMZW2/rm/RG285ZDPQ==} + '@polkadot/rpc-provider@15.0.2': + resolution: {integrity: sha512-BwLP8gNskzqtQ2kMk+EX6WK4d9TU0XJ/nJg0TKC2dX5sSTpTF2JQIYp1wuOik4rKNXIU/1hKaDSSylMJj7AHeQ==} engines: {node: '>=18'} '@polkadot/rpc-provider@7.15.1': @@ -3273,8 +3210,8 @@ packages: resolution: {integrity: sha512-3zBsuSKjZlMEeDVqPTkLnFvjPdyGcW3UBihzCgpTmXhLSuwTbsscMwKtKwIPkOHHQPYJYyZXTMkurMXCJOz2kA==} engines: {node: '>=18'} - '@polkadot/types-augment@15.0.1': - resolution: {integrity: sha512-6fTjJmTGd46UUIYPHr5oA6kiFl6IY45dvDgUQu07AmVdEQlq3OPq/7GyS639SLHHfMLSPbFKyt1iMVj9BNu0qA==} + '@polkadot/types-augment@15.0.2': + resolution: {integrity: sha512-UiFJVEYML30+V9GdFAHPbA3s4MVQTL1CevsZMnX0+ApvlgEHJMZnVFfYF7jL2bl9BcUYM/zoxEAhj2MpqFFfxw==} engines: {node: '>=18'} '@polkadot/types-augment@7.15.1': @@ -3297,8 +3234,8 @@ packages: resolution: {integrity: sha512-9VRRf1g/nahAC3/VSiCSUIRL7uuup04JEZLIAG2LaDgmCBOSV9dt1Yj9114bRUrHHkeUSBmiq64+YX1hZMpQzQ==} engines: {node: '>=18'} - '@polkadot/types-codec@15.0.1': - resolution: {integrity: sha512-SLypmYH6FYRmqGG8TBbi4X0tYh1OUZEMNkujln2eHxsuFIYRGrHFnEohtkF9ktSxoUji2ph9I5ZW5gqQvEsXrA==} + '@polkadot/types-codec@15.0.2': + resolution: {integrity: sha512-44Q40p1rl0t7Bl1QUamewqXNVPway9xgqByyifv6ODSGhtt+lFoarb3U4JzqRUuuK0PP57ePB0L8q81Totxeew==} engines: {node: '>=18'} '@polkadot/types-codec@7.15.1': @@ -3321,8 +3258,8 @@ packages: resolution: {integrity: sha512-Y0Zri7x6/rHURVNLMi6i1+rmJDLCn8OQl8BIvRmsIBkCYh2oCzy0g9aqVoCdm+QnoUU5ZNtu+U/gj1kL5ODivQ==} engines: {node: '>=18'} - '@polkadot/types-create@15.0.1': - resolution: {integrity: sha512-M1vs5o3sw8p3g88GhJgz2vSSgxnr5CfbaL4r5EYzR+Hx9xUvz03aEofySvodusEpdRQ9MijnsNSP9306xvcqhw==} + '@polkadot/types-create@15.0.2': + resolution: {integrity: sha512-YhpcqbH3oI87PkgrV6Fez9jWDqFIep0KcS1YWQcwc9gsBNnuour80t2AAK41/tqAYwOZi6tpJwIevnEhVkxFYA==} engines: {node: '>=18'} '@polkadot/types-create@7.15.1': @@ -3341,8 +3278,8 @@ packages: resolution: {integrity: sha512-dnbmVKagVI6ARuZaGMGc67HPeHGrR7/lcwfS7jGzEmRcoQk7p/UQjWfOk/LG9NzvQkmRVbE0Gqskn4VorqnTbA==} engines: {node: '>=18'} - '@polkadot/types-known@15.0.1': - resolution: {integrity: sha512-9VC6QX4/JAjWmnSdaZIm4n8CgmVj9KutgQ5/Uy9VBrTwfRzUPIBwHZT8lPQLeN1WwQRbtc5ojDoo2SR+OqGTqw==} + '@polkadot/types-known@15.0.2': + resolution: {integrity: sha512-SyBo4xBoesHYiEfdW/nOgaftKgM7+puBWqQXq1Euz0MM5LDLjxBw22Srgk9ulGM6l9MsekIwCyX8geJ6/6J3Cg==} engines: {node: '>=18'} '@polkadot/types-known@4.17.1': @@ -3373,8 +3310,8 @@ packages: resolution: {integrity: sha512-VGSUDUEQjt8K3Bv8gHYAE/nD98qPPuZ2DcikM9z9isw04qj2amxZaS26+iknJ9KSCzWgrNBHjcr5Q0o76//2yA==} engines: {node: '>=18'} - '@polkadot/types-support@15.0.1': - resolution: {integrity: sha512-w/IWFuDn290brw75ZXKPkQMazz0yizE0zK0XuqP2S4IW009x+z0peRc7Q4k36JOqDVDwSc38vTxWtRPVqdoI1g==} + '@polkadot/types-support@15.0.2': + resolution: {integrity: sha512-I7Im/4K2/XDZ1LfeQeeNyvIkfvozIPQs8K1/nsICDOmBbvIsjxSeKWHOcFDMJ8AlPEer6bqNQavOyZA/pg9R/Q==} engines: {node: '>=18'} '@polkadot/types-support@7.15.1': @@ -3397,8 +3334,8 @@ packages: resolution: {integrity: sha512-NVPhO/eFPkL8arWk4xVbsJzRdGfue3gJK+A2iYzOfCr9rDHEj99B+E2Z0Or6zDN6n+thgQYwsr19rKgXvAc18Q==} engines: {node: '>=18'} - '@polkadot/types@15.0.1': - resolution: {integrity: sha512-jnn0h8Z4O3l/UjrBOJPmkfKjuC6fSqhQfsn7HpWF18lEicGp4/A7X3AZryIg8npKHHiuH30bK/o1VuivH+4dVw==} + '@polkadot/types@15.0.2': + resolution: {integrity: sha512-6gZBnuXU58hQAXWI2daED2OaQwFMxbQdkE8HVGMovMobEf0PxPfIqf+GdnVmWbe09EU9mv2gCWBcdnvHSRBlQg==} engines: {node: '>=18'} '@polkadot/types@4.17.1': @@ -4046,15 +3983,6 @@ packages: rollup: optional: true - '@rollup/plugin-yaml@4.1.2': - resolution: {integrity: sha512-RpupciIeZMUqhgFE97ba0s98mOFS7CWzN3EJNhJkqSv9XLlWYtwVdtE6cDw6ASOF/sZVFS7kRJXftaqM2Vakdw==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - '@rollup/pluginutils@3.1.0': resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} @@ -4493,6 +4421,7 @@ packages: '@substrate/connect@0.8.11': resolution: {integrity: sha512-ofLs1PAO9AtDdPbdyTYj217Pe+lBfTLltdHDs3ds8no0BseoLeAGxpz1mHfi7zB4IxI3YyAiLjH6U8cw4pj4Nw==} + deprecated: versions below 1.x are no longer maintained '@substrate/connect@0.8.8': resolution: {integrity: sha512-zwaxuNEVI9bGt0rT8PEJiXOyebLIo6QN1SyiAHRPBOl6g3Sy0KKdSN8Jmyn++oXhVRD8aIe75/V8ZkS81T+BPQ==} @@ -5141,9 +5070,6 @@ packages: '@vue/compiler-ssr@3.5.6': resolution: {integrity: sha512-VpWbaZrEOCqnmqjE83xdwegtr5qO/2OPUC6veWgvNqTJ3bYysz6vY3VqMuOijubuUYPRpG3OOKIh9TD0Stxb9A==} - '@vue/devtools-api@6.6.1': - resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==} - '@vue/devtools-api@6.6.4': resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} @@ -7998,9 +7924,6 @@ packages: is-hexadecimal@2.0.1: resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} - is-https@4.0.0: - resolution: {integrity: sha512-FeMLiqf8E5g6SdiVJsPcNZX8k4h2fBs1wp5Bb6uaNxn58ufK1axBqQZdmAQsqh0t9BuwFObybrdVJh6MKyPlyg==} - is-inside-container@1.0.0: resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} engines: {node: '>=14.16'} @@ -8341,10 +8264,6 @@ packages: engines: {node: '>=6'} hasBin: true - jsonc-eslint-parser@2.4.0: - resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - jsonc-parser@3.2.1: resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} @@ -11040,6 +10959,7 @@ packages: sudo-prompt@9.2.1: resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. superjson@2.2.1: resolution: {integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==} @@ -11261,10 +11181,6 @@ packages: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} - tosource@2.0.0-alpha.3: - resolution: {integrity: sha512-KAB2lrSS48y91MzFPFuDg4hLbvDiyTjOVgaK7Erw+5AmZXNq4sFRVn8r6yxSLuNs15PaokrDRpS61ERY9uZOug==} - engines: {node: '>=10'} - totalist@3.0.1: resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} engines: {node: '>=6'} @@ -12205,12 +12121,6 @@ packages: peerDependencies: eslint: '>=6.0.0' - vue-i18n@9.11.0: - resolution: {integrity: sha512-vU4gY6lu8Pdfs9BgKGiDAJmFDf88cceR47KcSB0VW4xJzUrXR/7qwqM7A8dQ2nedhoIDxoOm5Ro4pFd2KvJqbA==} - engines: {node: '>= 16'} - peerDependencies: - vue: ^3.0.0 - vue-router@4.4.5: resolution: {integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==} peerDependencies: @@ -12548,10 +12458,6 @@ packages: yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - yaml-eslint-parser@1.2.2: - resolution: {integrity: sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg==} - engines: {node: ^14.17.0 || >=16.0.0} - yaml@2.4.1: resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==} engines: {node: '>= 14'} @@ -12815,21 +12721,6 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.4) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -12845,13 +12736,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-annotate-as-pure': 7.24.7 - regexpu-core: 5.3.2 - semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -12859,17 +12743,6 @@ snapshots: regexpu-core: 5.3.2 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - debug: 4.3.7 - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -12945,17 +12818,6 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.5 '@babel/helper-validator-identifier': 7.24.7 - '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -12973,13 +12835,6 @@ snapshots: '@babel/helper-plugin-utils@7.24.7': {} - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-wrap-function': 7.22.20 - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -12987,15 +12842,6 @@ snapshots: '@babel/helper-environment-visitor': 7.24.7 '@babel/helper-wrap-function': 7.22.20 - '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13090,37 +12936,17 @@ snapshots: dependencies: '@babel/types': 7.25.6 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-environment-visitor': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4) - transitivePeerDependencies: - - supports-color - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13130,33 +12956,19 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-environment-visitor': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.4)': + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-environment-visitor': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) - - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)': dependencies: @@ -13175,23 +12987,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.4) - - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.4)': + '@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.4)': + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7)': dependencies: @@ -13199,35 +13005,26 @@ snapshots: '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.4)': + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.4)': + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7)': dependencies: '@babel/compat-data': 7.24.7 - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-compilation-targets': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4) - - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.7) - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.4)': + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) - transitivePeerDependencies: - - supports-color + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7)': dependencies: @@ -13238,39 +13035,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13281,24 +13059,14 @@ snapshots: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)': @@ -13306,186 +13074,92 @@ snapshots: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) - '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13494,15 +13168,6 @@ snapshots: '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.7) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) - '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4) - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13512,34 +13177,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13548,15 +13195,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4) - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13566,20 +13204,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.4) - '@babel/helper-split-export-declaration': 7.24.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13594,106 +13218,52 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/template': 7.24.7 - '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/template': 7.24.7 - '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13702,13 +13272,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13716,58 +13279,28 @@ snapshots: '@babel/helper-function-name': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13776,15 +13309,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13794,16 +13318,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-hoist-variables': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13814,14 +13328,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13830,75 +13336,36 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-compilation-targets': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.7) - - '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.4) - transitivePeerDependencies: - - supports-color + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.7) '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.7)': dependencies: @@ -13908,27 +13375,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13938,24 +13390,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13964,16 +13403,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4) - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -13984,94 +13413,65 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.4)': + '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.4)': + '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.4)': + '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.4)': + '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-module-imports': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.4) + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7) '@babel/types': 7.25.6 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - regenerator-transform: 0.15.2 - '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.4)': + '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.4) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4) - babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.4) + babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.7) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7) + babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.7) semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -14080,46 +13480,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.4) - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -14130,139 +13505,29 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/preset-env@7.24.4(@babel/core@7.24.4)': - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/core': 7.24.4 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.4(@babel/core@7.24.4) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.4) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.4) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.4) - '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.4) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.4) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.4) - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.4) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4) - babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.4) - core-js-compat: 3.37.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/preset-env@7.24.4(@babel/core@7.24.7)': dependencies: '@babel/compat-data': 7.24.7 @@ -14357,13 +13622,6 @@ snapshots: '@babel/helper-validator-option': 7.24.7 '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.7) - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/types': 7.25.6 - esutils: 2.0.3 - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -15100,65 +14358,6 @@ snapshots: '@interlay/interbtc-types@1.13.0': {} - '@intlify/bundle-utils@7.5.1(vue-i18n@9.11.0(vue@3.5.6(typescript@5.5.4)))': - dependencies: - '@intlify/message-compiler': 9.11.0 - '@intlify/shared': 9.11.0 - acorn: 8.12.1 - escodegen: 2.1.0 - estree-walker: 2.0.2 - jsonc-eslint-parser: 2.4.0 - magic-string: 0.30.10 - mlly: 1.7.1 - source-map-js: 1.2.0 - yaml-eslint-parser: 1.2.2 - optionalDependencies: - vue-i18n: 9.11.0(vue@3.5.6(typescript@5.5.4)) - - '@intlify/core-base@9.11.0': - dependencies: - '@intlify/message-compiler': 9.11.0 - '@intlify/shared': 9.11.0 - - '@intlify/core@9.11.0': - dependencies: - '@intlify/core-base': 9.11.0 - '@intlify/shared': 9.11.0 - - '@intlify/h3@0.5.0': - dependencies: - '@intlify/core': 9.11.0 - '@intlify/utils': 0.12.0 - - '@intlify/message-compiler@9.11.0': - dependencies: - '@intlify/shared': 9.11.0 - source-map-js: 1.2.0 - - '@intlify/shared@9.11.0': {} - - '@intlify/unplugin-vue-i18n@3.0.1(rollup@4.18.0)(vue-i18n@9.11.0(vue@3.5.6(typescript@5.5.4)))': - dependencies: - '@intlify/bundle-utils': 7.5.1(vue-i18n@9.11.0(vue@3.5.6(typescript@5.5.4))) - '@intlify/shared': 9.11.0 - '@rollup/pluginutils': 5.1.0(rollup@4.18.0) - '@vue/compiler-sfc': 3.5.6 - debug: 4.3.7 - fast-glob: 3.3.2 - js-yaml: 4.1.0 - json5: 2.2.3 - pathe: 1.1.2 - picocolors: 1.0.1 - source-map-js: 1.2.0 - unplugin: 1.11.0 - optionalDependencies: - vue-i18n: 9.11.0(vue@3.5.6(typescript@5.5.4)) - transitivePeerDependencies: - - rollup - - supports-color - - '@intlify/utils@0.12.0': {} - '@ioredis/commands@1.2.0': {} '@isaacs/cliui@8.0.2': @@ -15437,21 +14636,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/sdk-install-modal-web@0.28.1(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': + '@metamask/sdk-install-modal-web@0.28.1(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': dependencies: i18next: 23.11.5 qr-code-styling: 1.6.0-rc.1 optionalDependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-native: 0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) - '@metamask/sdk@0.28.2(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(utf-8-validate@5.0.10)': + '@metamask/sdk@0.28.2(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(utf-8-validate@5.0.10)': dependencies: '@metamask/onboarding': 1.0.1 '@metamask/providers': 16.1.0 '@metamask/sdk-communication-layer': 0.28.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@metamask/sdk-install-modal-web': 0.28.1(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@metamask/sdk-install-modal-web': 0.28.1(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) '@types/dom-screen-wake-lock': 1.0.3 '@types/uuid': 10.0.0 bowser: 2.11.0 @@ -15465,7 +14664,7 @@ snapshots: obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 - react-native-webview: 11.26.1(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + react-native-webview: 11.26.1(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) readable-stream: 3.6.2 rollup-plugin-visualizer: 5.12.0(rollup@4.18.0) socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -15512,12 +14711,6 @@ snapshots: dependencies: lodash.merge: 4.6.2 - '@miyaneee/rollup-plugin-json5@1.2.0(rollup@4.18.0)': - dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.18.0) - json5: 2.2.3 - rollup: 4.18.0 - '@monogrid/gainmap-js@3.0.5(three@0.168.0)': dependencies: promise-worker-transferable: 1.0.4 @@ -16614,39 +15807,6 @@ snapshots: - supports-color - webpack-sources - '@nuxtjs/i18n@8.5.3(magicast@0.3.4)(rollup@4.18.0)(vue@3.5.6(typescript@5.5.4))(webpack-sources@3.2.3)': - dependencies: - '@intlify/h3': 0.5.0 - '@intlify/shared': 9.11.0 - '@intlify/unplugin-vue-i18n': 3.0.1(rollup@4.18.0)(vue-i18n@9.11.0(vue@3.5.6(typescript@5.5.4))) - '@intlify/utils': 0.12.0 - '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@4.18.0) - '@nuxt/kit': 3.13.2(magicast@0.3.4)(rollup@4.18.0)(webpack-sources@3.2.3) - '@rollup/plugin-yaml': 4.1.2(rollup@4.18.0) - '@vue/compiler-sfc': 3.5.6 - debug: 4.3.5 - defu: 6.1.4 - estree-walker: 3.0.3 - is-https: 4.0.0 - knitwork: 1.1.0 - magic-string: 0.30.10 - mlly: 1.7.1 - pathe: 1.1.2 - scule: 1.3.0 - sucrase: 3.35.0 - ufo: 1.5.3 - unplugin: 1.11.0 - vue-i18n: 9.11.0(vue@3.5.6(typescript@5.5.4)) - vue-router: 4.4.5(vue@3.5.6(typescript@5.5.4)) - transitivePeerDependencies: - - magicast - - petite-vue-i18n - - rollup - - supports-color - - vue - - vue-i18n-bridge - - webpack-sources - '@nuxtjs/mdc@0.8.3(magicast@0.3.4)(rollup@4.18.0)(webpack-sources@3.2.3)': dependencies: '@nuxt/kit': 3.13.2(magicast@0.3.4)(rollup@4.18.0)(webpack-sources@3.2.3) @@ -17139,13 +16299,13 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-augment@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-augment@15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api-base': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/types-augment': 15.0.1 - '@polkadot/types-codec': 15.0.1 + '@polkadot/api-base': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-augment': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.0.2 + '@polkadot/types-augment': 15.0.2 + '@polkadot/types-codec': 15.0.2 '@polkadot/util': 13.2.3 tslib: 2.8.1 transitivePeerDependencies: @@ -17204,10 +16364,10 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-base@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-base@15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-core': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 + '@polkadot/rpc-core': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.0.2 '@polkadot/util': 13.2.3 rxjs: 7.8.1 tslib: 2.8.1 @@ -17273,14 +16433,14 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-derive@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-derive@15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 + '@polkadot/api': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.0.2 + '@polkadot/types-codec': 15.0.2 '@polkadot/util': 13.2.3 '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) rxjs: 7.8.1 @@ -17371,20 +16531,20 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api@15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/rpc-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/types-augment': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/types-create': 15.0.1 - '@polkadot/types-known': 15.0.1 + '@polkadot/rpc-augment': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.0.2 + '@polkadot/types-augment': 15.0.2 + '@polkadot/types-codec': 15.0.2 + '@polkadot/types-create': 15.0.2 + '@polkadot/types-known': 15.0.2 '@polkadot/util': 13.2.3 '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) eventemitter3: 5.0.1 @@ -17652,11 +16812,11 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-augment@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-augment@15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-core': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 + '@polkadot/rpc-core': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.0.2 + '@polkadot/types-codec': 15.0.2 '@polkadot/util': 13.2.3 tslib: 2.8.1 transitivePeerDependencies: @@ -17713,11 +16873,11 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-core@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-core@15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 + '@polkadot/rpc-augment': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.0.2 '@polkadot/util': 13.2.3 rxjs: 7.8.1 tslib: 2.8.1 @@ -17814,11 +16974,11 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-provider@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-provider@15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types': 15.0.1 - '@polkadot/types-support': 15.0.1 + '@polkadot/types': 15.0.2 + '@polkadot/types-support': 15.0.2 '@polkadot/util': 13.2.3 '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) '@polkadot/x-fetch': 13.2.3 @@ -17896,10 +17056,10 @@ snapshots: '@polkadot/util': 12.6.2 tslib: 2.8.1 - '@polkadot/types-augment@15.0.1': + '@polkadot/types-augment@15.0.2': dependencies: - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 + '@polkadot/types': 15.0.2 + '@polkadot/types-codec': 15.0.2 '@polkadot/util': 13.2.3 tslib: 2.8.1 @@ -17935,7 +17095,7 @@ snapshots: '@polkadot/x-bigint': 12.6.2 tslib: 2.8.1 - '@polkadot/types-codec@15.0.1': + '@polkadot/types-codec@15.0.2': dependencies: '@polkadot/util': 13.2.3 '@polkadot/x-bigint': 13.2.3 @@ -17970,9 +17130,9 @@ snapshots: '@polkadot/util': 12.6.2 tslib: 2.8.1 - '@polkadot/types-create@15.0.1': + '@polkadot/types-create@15.0.2': dependencies: - '@polkadot/types-codec': 15.0.1 + '@polkadot/types-codec': 15.0.2 '@polkadot/util': 13.2.3 tslib: 2.8.1 @@ -18006,12 +17166,12 @@ snapshots: '@polkadot/util': 12.6.2 tslib: 2.8.1 - '@polkadot/types-known@15.0.1': + '@polkadot/types-known@15.0.2': dependencies: '@polkadot/networks': 13.2.3 - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/types-create': 15.0.1 + '@polkadot/types': 15.0.2 + '@polkadot/types-codec': 15.0.2 + '@polkadot/types-create': 15.0.2 '@polkadot/util': 13.2.3 tslib: 2.8.1 @@ -18062,7 +17222,7 @@ snapshots: '@polkadot/util': 12.6.2 tslib: 2.8.1 - '@polkadot/types-support@15.0.1': + '@polkadot/types-support@15.0.2': dependencies: '@polkadot/util': 13.2.3 tslib: 2.8.1 @@ -18110,12 +17270,12 @@ snapshots: rxjs: 7.8.1 tslib: 2.6.2 - '@polkadot/types@15.0.1': + '@polkadot/types@15.0.2': dependencies: '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types-augment': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/types-create': 15.0.1 + '@polkadot/types-augment': 15.0.2 + '@polkadot/types-codec': 15.0.2 + '@polkadot/types-create': 15.0.2 '@polkadot/util': 13.2.3 '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) rxjs: 7.8.1 @@ -18859,81 +18019,81 @@ snapshots: '@react-native/assets-registry@0.74.85': {} - '@react-native/babel-plugin-codegen@0.74.85(@babel/preset-env@7.24.4(@babel/core@7.24.4))': + '@react-native/babel-plugin-codegen@0.74.85(@babel/preset-env@7.24.4(@babel/core@7.24.7))': dependencies: - '@react-native/codegen': 0.74.85(@babel/preset-env@7.24.4(@babel/core@7.24.4)) + '@react-native/codegen': 0.74.85(@babel/preset-env@7.24.4(@babel/core@7.24.7)) transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/babel-preset@0.74.85(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))': + '@react-native/babel-preset@0.74.85(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))': dependencies: - '@babel/core': 7.24.4 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.4) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.4) - '@babel/plugin-proposal-export-default-from': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.4) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.4) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.4) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.4) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.4) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.4) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.4) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.4) + '@babel/core': 7.24.7 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.7) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7) + '@babel/plugin-proposal-export-default-from': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.7) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.7) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.7) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.7) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.7) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.7) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.7) + '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.7) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.7) + '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.7) '@babel/template': 7.24.7 - '@react-native/babel-plugin-codegen': 0.74.85(@babel/preset-env@7.24.4(@babel/core@7.24.4)) - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.4) + '@react-native/babel-plugin-codegen': 0.74.85(@babel/preset-env@7.24.4(@babel/core@7.24.7)) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.7) react-refresh: 0.14.2 transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/codegen@0.74.85(@babel/preset-env@7.24.4(@babel/core@7.24.4))': + '@react-native/codegen@0.74.85(@babel/preset-env@7.24.4(@babel/core@7.24.7))': dependencies: '@babel/parser': 7.25.6 - '@babel/preset-env': 7.24.4(@babel/core@7.24.4) + '@babel/preset-env': 7.24.4(@babel/core@7.24.7) glob: 7.2.3 hermes-parser: 0.19.1 invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.24.4(@babel/core@7.24.4)) + jscodeshift: 0.14.0(@babel/preset-env@7.24.4(@babel/core@7.24.7)) mkdirp: 0.5.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - '@react-native/community-cli-plugin@0.74.85(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@react-native/community-cli-plugin@0.74.85(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@react-native-community/cli-server-api': 13.6.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native-community/cli-tools': 13.6.9(encoding@0.1.13) '@react-native/dev-middleware': 0.74.85(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@react-native/metro-babel-transformer': 0.74.85(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4)) + '@react-native/metro-babel-transformer': 0.74.85(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7)) chalk: 4.1.2 execa: 5.1.1 metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -18977,10 +18137,10 @@ snapshots: '@react-native/js-polyfills@0.74.85': {} - '@react-native/metro-babel-transformer@0.74.85(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))': + '@react-native/metro-babel-transformer@0.74.85(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))': dependencies: - '@babel/core': 7.24.4 - '@react-native/babel-preset': 0.74.85(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4)) + '@babel/core': 7.24.7 + '@react-native/babel-preset': 0.74.85(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7)) hermes-parser: 0.19.1 nullthrows: 1.1.1 transitivePeerDependencies: @@ -18989,12 +18149,12 @@ snapshots: '@react-native/normalize-colors@0.74.85': {} - '@react-native/virtualized-lists@0.74.85(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': + '@react-native/virtualized-lists@0.74.85(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.2.0 - react-native: 0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) '@rnx-kit/chromium-edge-launcher@1.0.0': dependencies: @@ -19149,14 +18309,6 @@ snapshots: optionalDependencies: rollup: 4.18.0 - '@rollup/plugin-yaml@4.1.2(rollup@4.18.0)': - dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.18.0) - js-yaml: 4.1.0 - tosource: 2.0.0-alpha.3 - optionalDependencies: - rollup: 4.18.0 - '@rollup/pluginutils@3.1.0(rollup@2.79.1)': dependencies: '@types/estree': 0.0.39 @@ -19564,7 +18716,7 @@ snapshots: '@subsocial/definitions@0.8.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) lodash.camelcase: 4.3.0 transitivePeerDependencies: - bufferutil @@ -20539,8 +19691,6 @@ snapshots: '@vue/compiler-dom': 3.5.6 '@vue/shared': 3.5.6 - '@vue/devtools-api@6.6.1': {} - '@vue/devtools-api@6.6.4': {} '@vue/devtools-core@7.3.3(vite@5.4.5(@types/node@20.16.5)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3))': @@ -20720,10 +19870,10 @@ snapshots: - '@vue/composition-api' - vue - '@wagmi/connectors@5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@wagmi/connectors@5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 4.0.4 - '@metamask/sdk': 0.28.2(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(utf-8-validate@5.0.10) + '@metamask/sdk': 0.28.2(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(utf-8-validate@5.0.10) '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4) '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4) '@wagmi/core': 2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)) @@ -20773,10 +19923,10 @@ snapshots: - immer - react - '@wagmi/vue@0.0.44(@tanstack/query-core@5.56.2)(@tanstack/vue-query@5.56.2(vue@3.5.6(typescript@5.5.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(nuxt@3.13.2(@opentelemetry/api@1.9.0)(@parcel/watcher@2.4.1)(@types/node@20.16.5)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(idb-keyval@6.2.1)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.3)(rollup@4.18.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3)(typescript@5.5.4)(utf-8-validate@5.0.10)(vite@5.4.5(@types/node@20.16.5)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3))(webpack-sources@3.2.3))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(vue@3.5.6(typescript@5.5.4))(zod@3.22.4)': + '@wagmi/vue@0.0.44(@tanstack/query-core@5.56.2)(@tanstack/vue-query@5.56.2(vue@3.5.6(typescript@5.5.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(nuxt@3.13.2(@opentelemetry/api@1.9.0)(@parcel/watcher@2.4.1)(@types/node@20.16.5)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(idb-keyval@6.2.1)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.3)(rollup@4.18.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3)(typescript@5.5.4)(utf-8-validate@5.0.10)(vite@5.4.5(@types/node@20.16.5)(sass@1.77.6)(stylus@0.57.0)(terser@5.30.3))(webpack-sources@3.2.3))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(vue@3.5.6(typescript@5.5.4))(zod@3.22.4)': dependencies: '@tanstack/vue-query': 5.56.2(vue@3.5.6(typescript@5.5.4)) - '@wagmi/connectors': 5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@wagmi/connectors': 5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)) viem: 2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4) vue: 3.5.6(typescript@5.5.4) @@ -21515,9 +20665,9 @@ snapshots: lit: 3.1.0 qrcode: 1.5.3 - '@web3modal/wagmi@4.2.3(@wagmi/connectors@5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(vue@3.5.6(typescript@5.5.4))': + '@web3modal/wagmi@4.2.3(@wagmi/connectors@5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(vue@3.5.6(typescript@5.5.4))': dependencies: - '@wagmi/connectors': 5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@wagmi/connectors': 5.1.10(@wagmi/core@2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.13.5(@tanstack/query-core@5.56.2)(react@18.2.0)(typescript@5.5.4)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)) '@walletconnect/ethereum-provider': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(ioredis@5.4.1)(react@18.2.0)(utf-8-validate@5.0.10) '@web3modal/polyfills': 4.2.3 @@ -21903,15 +21053,6 @@ snapshots: dependencies: '@babel/core': 7.24.7 - babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.4): - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/core': 7.24.4 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.7): dependencies: '@babel/compat-data': 7.24.7 @@ -21921,14 +21062,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.4): - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4) - core-js-compat: 3.37.1 - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 @@ -21937,13 +21070,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.4): - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4) - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 @@ -21951,9 +21077,9 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.4): + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.7): dependencies: - '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.4) + '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - '@babel/core' @@ -24688,8 +23814,6 @@ snapshots: is-hexadecimal@2.0.1: {} - is-https@4.0.0: {} - is-inside-container@1.0.0: dependencies: is-docker: 3.0.0 @@ -24960,7 +24084,7 @@ snapshots: jsc-safe-url@0.2.4: {} - jscodeshift@0.14.0(@babel/preset-env@7.24.4(@babel/core@7.24.4)): + jscodeshift@0.14.0(@babel/preset-env@7.24.4(@babel/core@7.24.7)): dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.25.6 @@ -24968,7 +24092,7 @@ snapshots: '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.7) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.7) '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7) - '@babel/preset-env': 7.24.4(@babel/core@7.24.4) + '@babel/preset-env': 7.24.4(@babel/core@7.24.7) '@babel/preset-flow': 7.24.7(@babel/core@7.24.7) '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) '@babel/register': 7.24.6(@babel/core@7.24.7) @@ -25092,13 +24216,6 @@ snapshots: json5@2.2.3: {} - jsonc-eslint-parser@2.4.0: - dependencies: - acorn: 8.12.1 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - semver: 7.6.3 - jsonc-parser@3.2.1: {} jsonfile@4.0.0: @@ -27613,26 +26730,26 @@ snapshots: react-is@18.2.0: {} - react-native-webview@11.26.1(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): + react-native-webview@11.26.1(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): dependencies: escape-string-regexp: 2.0.0 invariant: 2.2.4 react: 18.2.0 - react-native: 0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) - react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10): + react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native-community/cli': 13.6.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native-community/cli-platform-android': 13.6.9(encoding@0.1.13) '@react-native-community/cli-platform-ios': 13.6.9(encoding@0.1.13) '@react-native/assets-registry': 0.74.85 - '@react-native/codegen': 0.74.85(@babel/preset-env@7.24.4(@babel/core@7.24.4)) - '@react-native/community-cli-plugin': 0.74.85(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native/codegen': 0.74.85(@babel/preset-env@7.24.4(@babel/core@7.24.7)) + '@react-native/community-cli-plugin': 0.74.85(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native/gradle-plugin': 0.74.85 '@react-native/js-polyfills': 0.74.85 '@react-native/normalize-colors': 0.74.85 - '@react-native/virtualized-lists': 0.74.85(react-native@0.74.3(@babel/core@7.24.4)(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@react-native/virtualized-lists': 0.74.85(react-native@0.74.3(@babel/core@7.24.7)(@babel/preset-env@7.24.4(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -28939,8 +28056,6 @@ snapshots: toidentifier@1.0.1: {} - tosource@2.0.0-alpha.3: {} - totalist@3.0.1: {} tough-cookie@4.1.3: @@ -30051,13 +29166,6 @@ snapshots: transitivePeerDependencies: - supports-color - vue-i18n@9.11.0(vue@3.5.6(typescript@5.5.4)): - dependencies: - '@intlify/core-base': 9.11.0 - '@intlify/shared': 9.11.0 - '@vue/devtools-api': 6.6.1 - vue: 3.5.6(typescript@5.5.4) - vue-router@4.4.5(vue@3.5.6(typescript@5.5.4)): dependencies: '@vue/devtools-api': 6.6.4 @@ -30466,12 +29574,6 @@ snapshots: yallist@4.0.0: {} - yaml-eslint-parser@1.2.2: - dependencies: - eslint-visitor-keys: 3.4.3 - lodash: 4.17.21 - yaml: 2.4.5 - yaml@2.4.1: {} yaml@2.4.5: {} From c097dcf011cb3688a387c789c8959bc82f1610fd Mon Sep 17 00:00:00 2001 From: Preschian Febryantara Date: Tue, 17 Dec 2024 22:27:06 +0700 Subject: [PATCH 3/6] style(ui): comment out unused SCSS imports in NeoInputitems and NeoSidebar --- libs/ui/src/components/NeoInputitems/NeoInputitems.scss | 2 +- libs/ui/src/components/NeoSidebar/NeoSidebar.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ui/src/components/NeoInputitems/NeoInputitems.scss b/libs/ui/src/components/NeoInputitems/NeoInputitems.scss index b1d4510a8f..97fdf228a5 100644 --- a/libs/ui/src/components/NeoInputitems/NeoInputitems.scss +++ b/libs/ui/src/components/NeoInputitems/NeoInputitems.scss @@ -9,7 +9,7 @@ $inputitems-item-border-radius: 0; $autocomplete-menu-border-radius: 0; @import '../NeoInput/NeoInput.scss'; -@import '@oruga-ui/oruga-next/src/scss/components/autocomplete.scss'; +// @import '@oruga-ui/oruga-next/src/scss/components/autocomplete.scss'; @import '@oruga-ui/oruga-next/src/scss/components/inputitems.scss'; .o-inputit__container { diff --git a/libs/ui/src/components/NeoSidebar/NeoSidebar.scss b/libs/ui/src/components/NeoSidebar/NeoSidebar.scss index e5706e8194..11fe056baf 100644 --- a/libs/ui/src/components/NeoSidebar/NeoSidebar.scss +++ b/libs/ui/src/components/NeoSidebar/NeoSidebar.scss @@ -10,7 +10,7 @@ $sidebar-width: 320px; $sidebar-zindex: 100; $sidebar-overlay: rgba(0, 0, 0, 0.17); -@import '@oruga-ui/oruga-next/src/scss/components/sidebar.scss'; +// @import '@oruga-ui/oruga-next/src/scss/components/sidebar.scss'; // to fix safari issue: https://github.com/kodadot/nft-gallery/issues/5227 .is-hidden-mobile > .o-side { From f22e3cd42f09e1024a3638a0c4070ccad14c84fa Mon Sep 17 00:00:00 2001 From: Preschian Febryantara Date: Tue, 17 Dec 2024 22:35:10 +0700 Subject: [PATCH 4/6] style(styles): update import paths for variables and comment out unused imports --- components/collection/unlockable/UnlockableTag.vue | 2 +- components/common/listingCart/ListingCartMini.vue | 2 +- components/drops/TimeTag.vue | 2 +- components/gallery/GalleryItemTabsPanel/GalleryItemActivity.vue | 2 +- components/gallery/UnlockableTag.vue | 2 +- components/massmint/Massmint.vue | 2 +- libs/ui/src/components/NeoButton/NeoButton.scss | 2 +- libs/ui/src/components/NeoIcon/NeoIcon.scss | 2 +- libs/ui/src/components/NeoInputitems/NeoInputitems.scss | 2 +- libs/ui/src/components/NeoNotification/NeoNotification.vue | 2 +- libs/ui/src/components/NeoPagination/NeoPagination.vue | 2 +- .../src/components/NeoSecondaryButton/NeoSecondaryButton.scss | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/components/collection/unlockable/UnlockableTag.vue b/components/collection/unlockable/UnlockableTag.vue index bf611e7805..9ef40d5f2c 100644 --- a/components/collection/unlockable/UnlockableTag.vue +++ b/components/collection/unlockable/UnlockableTag.vue @@ -41,7 +41,7 @@ const { isUnlockable } = useUnlockable( diff --git a/components/base/MediaItem.vue b/components/base/MediaItem.vue index a601c5c68b..7bca662857 100644 --- a/components/base/MediaItem.vue +++ b/components/base/MediaItem.vue @@ -221,38 +221,3 @@ function toggleFullscreen() { defineExpose({ isLewdBlurredLayer, toggleFullscreen }) - - diff --git a/components/blog/BlogPost.vue b/components/blog/BlogPost.vue index 6e235d1528..31e203a791 100644 --- a/components/blog/BlogPost.vue +++ b/components/blog/BlogPost.vue @@ -107,123 +107,3 @@ useSeoMeta({ twitterImage: post?.image, }) - - diff --git a/components/collection/CollectionHeader/CollectionBanner.vue b/components/collection/CollectionHeader/CollectionBanner.vue index 9623f5cdc6..db5cc60976 100644 --- a/components/collection/CollectionHeader/CollectionBanner.vue +++ b/components/collection/CollectionHeader/CollectionBanner.vue @@ -120,37 +120,3 @@ useSeoMeta({ ), }) - - diff --git a/components/collection/HeroButtons.vue b/components/collection/HeroButtons.vue index 3c6d523254..7b7520a885 100644 --- a/components/collection/HeroButtons.vue +++ b/components/collection/HeroButtons.vue @@ -186,25 +186,3 @@ const isOwner = computed(() => isCurrentOwner(collection.value?.currentOwner)) const QRModalActive = ref(false) - - diff --git a/components/collection/activity/events/eventRow/EventRowTablet.vue b/components/collection/activity/events/eventRow/EventRowTablet.vue index 57897b004c..51f412c73e 100644 --- a/components/collection/activity/events/eventRow/EventRowTablet.vue +++ b/components/collection/activity/events/eventRow/EventRowTablet.vue @@ -126,43 +126,3 @@ const getAvatar = async () => { } } - - diff --git a/components/collection/drop/AddFundsModal.vue b/components/collection/drop/AddFundsModal.vue index 254acac94d..79b50c3f07 100644 --- a/components/collection/drop/AddFundsModal.vue +++ b/components/collection/drop/AddFundsModal.vue @@ -115,17 +115,3 @@ const handleModalClose = (completed: boolean) => { } } - - diff --git a/components/collection/unlockable/CountdownTimer.vue b/components/collection/unlockable/CountdownTimer.vue index 609853e319..def5eee6ca 100644 --- a/components/collection/unlockable/CountdownTimer.vue +++ b/components/collection/unlockable/CountdownTimer.vue @@ -49,7 +49,3 @@ const [wrapper] = useKeenSlider({ }, }) - - diff --git a/components/collection/unlockable/ImageSlider.vue b/components/collection/unlockable/ImageSlider.vue index 6755eeb8d3..a0cc1137ca 100644 --- a/components/collection/unlockable/ImageSlider.vue +++ b/components/collection/unlockable/ImageSlider.vue @@ -105,92 +105,3 @@ const [thumbnail] = useKeenSlider( [ThumbnailPlugin(slider)], ) - - diff --git a/components/collection/unlockable/UnlockableCollectionBanner.vue b/components/collection/unlockable/UnlockableCollectionBanner.vue index 353d18f3bd..7ff3031de7 100644 --- a/components/collection/unlockable/UnlockableCollectionBanner.vue +++ b/components/collection/unlockable/UnlockableCollectionBanner.vue @@ -80,58 +80,3 @@ useHead({ meta, }) - - diff --git a/components/collection/unlockable/UnlockableCollectionInfo.vue b/components/collection/unlockable/UnlockableCollectionInfo.vue index 24428d039d..2b47168fed 100644 --- a/components/collection/unlockable/UnlockableCollectionInfo.vue +++ b/components/collection/unlockable/UnlockableCollectionInfo.vue @@ -69,30 +69,3 @@ const visibleDescription = computed(() => { ) }) - - diff --git a/components/collection/unlockable/UnlockableItemInfo.vue b/components/collection/unlockable/UnlockableItemInfo.vue index 7e932a1209..b5bc92f555 100644 --- a/components/collection/unlockable/UnlockableItemInfo.vue +++ b/components/collection/unlockable/UnlockableItemInfo.vue @@ -34,7 +34,7 @@
Unlockable
diff --git a/components/collection/unlockable/UnlockableTag.vue b/components/collection/unlockable/UnlockableTag.vue index 9ef40d5f2c..5e0871be2f 100644 --- a/components/collection/unlockable/UnlockableTag.vue +++ b/components/collection/unlockable/UnlockableTag.vue @@ -39,18 +39,3 @@ const { isUnlockable } = useUnlockable( computed(() => ({ id: props.collectionId })), ) - - diff --git a/components/collectionDetailsPopover/CollectionDetailsPopover.vue b/components/collectionDetailsPopover/CollectionDetailsPopover.vue index 3077178f01..0c851519d5 100644 --- a/components/collectionDetailsPopover/CollectionDetailsPopover.vue +++ b/components/collectionDetailsPopover/CollectionDetailsPopover.vue @@ -63,14 +63,3 @@ const nft = computed( }, ) - - diff --git a/components/collectionDetailsPopover/CollectionDetailsPopoverContent.vue b/components/collectionDetailsPopover/CollectionDetailsPopoverContent.vue index fe72a60e81..4548fa9fb3 100644 --- a/components/collectionDetailsPopover/CollectionDetailsPopoverContent.vue +++ b/components/collectionDetailsPopover/CollectionDetailsPopoverContent.vue @@ -136,54 +136,3 @@ const { nftEntities: soldItems } = useCollectionSoldData({ collectionId: props.nft?.collection?.id || props.nft?.collectionId, }) - - diff --git a/components/common/CartItemDetails.vue b/components/common/CartItemDetails.vue index 8301012aef..9425763fd5 100644 --- a/components/common/CartItemDetails.vue +++ b/components/common/CartItemDetails.vue @@ -76,18 +76,3 @@ onMounted(() => { } }) - - diff --git a/components/common/ChooseCollectionDropdown.vue b/components/common/ChooseCollectionDropdown.vue index c4efbf225c..3afd92a64e 100644 --- a/components/common/ChooseCollectionDropdown.vue +++ b/components/common/ChooseCollectionDropdown.vue @@ -135,29 +135,3 @@ watch(accountId, () => { watch(collectionsEntites, handleCollectionsChange, { immediate: true }) - - diff --git a/components/common/ConnectWallet/WalletAssetMenu.vue b/components/common/ConnectWallet/WalletAssetMenu.vue index 64b0f03aea..a99645f0dc 100644 --- a/components/common/ConnectWallet/WalletAssetMenu.vue +++ b/components/common/ConnectWallet/WalletAssetMenu.vue @@ -114,46 +114,3 @@ const closeModal = () => { neoModal.closeAll() } - - diff --git a/components/common/ConnectWallet/WalletAssetNfts.vue b/components/common/ConnectWallet/WalletAssetNfts.vue index 93624f9971..87a3a31699 100644 --- a/components/common/ConnectWallet/WalletAssetNfts.vue +++ b/components/common/ConnectWallet/WalletAssetNfts.vue @@ -58,24 +58,3 @@ watchEffect(() => { } }) - - diff --git a/components/common/autoTeleport/AutoTeleportModal.vue b/components/common/autoTeleport/AutoTeleportModal.vue index 481130a5af..3a59986d6d 100644 --- a/components/common/autoTeleport/AutoTeleportModal.vue +++ b/components/common/autoTeleport/AutoTeleportModal.vue @@ -334,16 +334,3 @@ watchDebounced( { debounce: 500 }, // wait for the modal closing animation to finish ) - - diff --git a/components/common/autoTeleport/AutoTeleportWelcomeModal.vue b/components/common/autoTeleport/AutoTeleportWelcomeModal.vue index 581446ae10..e303a34c24 100644 --- a/components/common/autoTeleport/AutoTeleportWelcomeModal.vue +++ b/components/common/autoTeleport/AutoTeleportWelcomeModal.vue @@ -91,29 +91,3 @@ const onClose = () => { emit('close') } - - diff --git a/components/common/listingCart/ListingCartMini.vue b/components/common/listingCart/ListingCartMini.vue index 236418c7bb..9de76e92dc 100644 --- a/components/common/listingCart/ListingCartMini.vue +++ b/components/common/listingCart/ListingCartMini.vue @@ -107,23 +107,3 @@ onBeforeUnmount(() => { listingCartStore.clear() }) - - diff --git a/components/common/shoppingCart/ShoppingCartModal.vue b/components/common/shoppingCart/ShoppingCartModal.vue index d1e029714b..8ccfbffdc0 100644 --- a/components/common/shoppingCart/ShoppingCartModal.vue +++ b/components/common/shoppingCart/ShoppingCartModal.vue @@ -188,26 +188,3 @@ const onCompletePurchase = () => { }, 100) } - - diff --git a/components/create/Confirm/MintConfirmModal.vue b/components/create/Confirm/MintConfirmModal.vue index b5d104ef85..b668f09f34 100644 --- a/components/create/Confirm/MintConfirmModal.vue +++ b/components/create/Confirm/MintConfirmModal.vue @@ -188,25 +188,3 @@ watchEffect(async () => { : Number(fee) }) - - diff --git a/components/create/CreateLanding.vue b/components/create/CreateLanding.vue index ef57dbd020..6afc8616cf 100644 --- a/components/create/CreateLanding.vue +++ b/components/create/CreateLanding.vue @@ -108,91 +108,3 @@ const gotoPathAfterLogin = (path: RawLocation) => { }) } - - diff --git a/components/create/CreateNftPreview.vue b/components/create/CreateNftPreview.vue index 14711cf350..d1712e5f8c 100644 --- a/components/create/CreateNftPreview.vue +++ b/components/create/CreateNftPreview.vue @@ -55,33 +55,3 @@ defineProps<{ image?: string }>() - - diff --git a/components/drops/BasicDropCard.vue b/components/drops/BasicDropCard.vue index ac5ca448de..9ffdb809ae 100644 --- a/components/drops/BasicDropCard.vue +++ b/components/drops/BasicDropCard.vue @@ -145,12 +145,3 @@ const { usd: formattedPrice } = useAmount( computed(() => chainPropList.tokenSymbol), ) - - diff --git a/components/drops/DropCard.vue b/components/drops/DropCard.vue index 81a12e3dce..a711665389 100644 --- a/components/drops/DropCard.vue +++ b/components/drops/DropCard.vue @@ -60,12 +60,3 @@ onMounted(async () => { image.value = props.drop.banner || props.drop.image }) - - diff --git a/components/drops/TimeTag.vue b/components/drops/TimeTag.vue index 2285d989fd..2469f6b880 100644 --- a/components/drops/TimeTag.vue +++ b/components/drops/TimeTag.vue @@ -49,20 +49,3 @@ const displayText = computed(() => { } }) - - diff --git a/components/explore/ActiveCount.vue b/components/explore/ActiveCount.vue index 00eaa7f2ce..3d5a982bdc 100644 --- a/components/explore/ActiveCount.vue +++ b/components/explore/ActiveCount.vue @@ -22,25 +22,3 @@ withDefaults( }, ) - - diff --git a/components/explore/DesktopControls.vue b/components/explore/DesktopControls.vue index bcfb902089..109a49225b 100644 --- a/components/explore/DesktopControls.vue +++ b/components/explore/DesktopControls.vue @@ -34,27 +34,3 @@ const isActivityTab = computed( () => route.name?.toString().includes('prefix-collection-id-activity'), ) - - diff --git a/components/explore/ExploreSort.vue b/components/explore/ExploreSort.vue index ca121f8a8f..09e0c8bda1 100644 --- a/components/explore/ExploreSort.vue +++ b/components/explore/ExploreSort.vue @@ -121,26 +121,3 @@ watch( { immediate: true }, ) - - diff --git a/components/explore/ExploreTabs.vue b/components/explore/ExploreTabs.vue index e447777d64..6c3c10c0dd 100644 --- a/components/explore/ExploreTabs.vue +++ b/components/explore/ExploreTabs.vue @@ -14,13 +14,3 @@ import TabOnCollection from './tab/TabOnCollection.vue' const route = useRoute() - - diff --git a/components/explore/MobileControls.vue b/components/explore/MobileControls.vue index 0fec8a1693..070fb441d8 100644 --- a/components/explore/MobileControls.vue +++ b/components/explore/MobileControls.vue @@ -29,29 +29,3 @@ const isActivityTab = computed( () => route.name?.toString().includes('prefix-collection-id-activity'), ) - - diff --git a/components/gallery/GalleryItem.vue b/components/gallery/GalleryItem.vue index 716b683ef4..03ff1edde7 100644 --- a/components/gallery/GalleryItem.vue +++ b/components/gallery/GalleryItem.vue @@ -334,116 +334,3 @@ function toggleFallback() { onBeforeMount(() => fiatStore.fetchFiatPrice()) - - - - diff --git a/components/gallery/GalleryItemAction/GalleryItemActionSection.vue b/components/gallery/GalleryItemAction/GalleryItemActionSection.vue index 47a54e5927..0408335c77 100644 --- a/components/gallery/GalleryItemAction/GalleryItemActionSection.vue +++ b/components/gallery/GalleryItemAction/GalleryItemActionSection.vue @@ -62,51 +62,3 @@ watchEffect(async () => { } }) - - diff --git a/components/gallery/GalleryItemAction/GalleryItemActionSlides.vue b/components/gallery/GalleryItemAction/GalleryItemActionSlides.vue index 77f5f04c6a..908baf44b5 100644 --- a/components/gallery/GalleryItemAction/GalleryItemActionSlides.vue +++ b/components/gallery/GalleryItemAction/GalleryItemActionSlides.vue @@ -20,132 +20,3 @@ defineProps<{ disabled?: boolean }>() - - diff --git a/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemBuy.vue b/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemBuy.vue index a8d163a606..76079f2641 100644 --- a/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemBuy.vue +++ b/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemBuy.vue @@ -114,33 +114,3 @@ const onClickShoppingCart = () => { } } - - diff --git a/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemRelist.vue b/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemRelist.vue index 55e4b7f43a..0a043ac009 100644 --- a/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemRelist.vue +++ b/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemRelist.vue @@ -71,25 +71,3 @@ const onListingModalClose = () => { const isListed = computed(() => Boolean(Number(nftPrice.value))) - - diff --git a/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemTrade.vue b/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemTrade.vue index e4107466fb..3ecbdb10e3 100644 --- a/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemTrade.vue +++ b/components/gallery/GalleryItemAction/GalleryItemActionType/GalleryItemTrade.vue @@ -114,25 +114,3 @@ useModalIsOpenTracker({ onChange: () => makeOfferStore.clear(), }) - - diff --git a/components/gallery/GalleryItemButton/GalleryItemButton.vue b/components/gallery/GalleryItemButton/GalleryItemButton.vue index 1816fe5e13..c3d2124cac 100644 --- a/components/gallery/GalleryItemButton/GalleryItemButton.vue +++ b/components/gallery/GalleryItemButton/GalleryItemButton.vue @@ -34,16 +34,3 @@ const customSharingContent = computed(() => { onKodahashRenderCompleted(({ payload }) => imageData.value = payload.image) - - diff --git a/components/gallery/GalleryItemDescription.vue b/components/gallery/GalleryItemDescription.vue index 8763a8e48a..6883bc16d9 100644 --- a/components/gallery/GalleryItemDescription.vue +++ b/components/gallery/GalleryItemDescription.vue @@ -311,21 +311,3 @@ const animatedMediaUrl = computed(() => { return nftAnimation.value }) - - diff --git a/components/gallery/GalleryItemTabsPanel/GalleryItemActivity.vue b/components/gallery/GalleryItemTabsPanel/GalleryItemActivity.vue index 5992763a3d..66cb14a47f 100644 --- a/components/gallery/GalleryItemTabsPanel/GalleryItemActivity.vue +++ b/components/gallery/GalleryItemTabsPanel/GalleryItemActivity.vue @@ -74,42 +74,3 @@ const cssActive = (value) => { } } - - diff --git a/components/gallery/GalleryItemTabsPanel/GalleryItemActivityTable.vue b/components/gallery/GalleryItemTabsPanel/GalleryItemActivityTable.vue index 6a59e7fac1..62ece07624 100644 --- a/components/gallery/GalleryItemTabsPanel/GalleryItemActivityTable.vue +++ b/components/gallery/GalleryItemTabsPanel/GalleryItemActivityTable.vue @@ -204,34 +204,3 @@ watchEffect(() => { } }) - - diff --git a/components/gallery/GalleryItemTabsPanel/GalleryItemTabsPanel.vue b/components/gallery/GalleryItemTabsPanel/GalleryItemTabsPanel.vue index 061ffa5582..aa574b14e1 100644 --- a/components/gallery/GalleryItemTabsPanel/GalleryItemTabsPanel.vue +++ b/components/gallery/GalleryItemTabsPanel/GalleryItemTabsPanel.vue @@ -86,19 +86,3 @@ watchEffect(() => { collectionId.value = nft.value?.collection.id || '' }) - - diff --git a/components/gallery/GalleryItemTabsPanel/GalleryItemTradesTable.vue b/components/gallery/GalleryItemTabsPanel/GalleryItemTradesTable.vue index 90a071ecc3..5117c38659 100644 --- a/components/gallery/GalleryItemTabsPanel/GalleryItemTradesTable.vue +++ b/components/gallery/GalleryItemTabsPanel/GalleryItemTradesTable.vue @@ -193,44 +193,3 @@ const closeTradeOverviewModal = () => { selectedTrade.value = undefined } - - diff --git a/components/gallery/UnlockableTag.vue b/components/gallery/UnlockableTag.vue index 06737b144d..0da3ed20d6 100644 --- a/components/gallery/UnlockableTag.vue +++ b/components/gallery/UnlockableTag.vue @@ -50,20 +50,3 @@ const { unlockableIcon } = useIcon() const isOwner = computed(() => isCurrentOwner(props.nft?.currentOwner)) - - diff --git a/components/identity/module/IdentityPopover.vue b/components/identity/module/IdentityPopover.vue index b3bfd1f8eb..33f742e4f1 100644 --- a/components/identity/module/IdentityPopover.vue +++ b/components/identity/module/IdentityPopover.vue @@ -42,21 +42,3 @@ const showContent = ref(false) const refresh = () => footer.value?.refresh() - - diff --git a/components/items/ItemsGrid/ItemsGridImage.vue b/components/items/ItemsGrid/ItemsGridImage.vue index 31cf805c1e..43a7701ab0 100644 --- a/components/items/ItemsGrid/ItemsGridImage.vue +++ b/components/items/ItemsGrid/ItemsGridImage.vue @@ -174,28 +174,3 @@ const onSelectAction = () => { } } - - diff --git a/components/items/ItemsGrid/ItemsGridImageTokenEntity.vue b/components/items/ItemsGrid/ItemsGridImageTokenEntity.vue index 922c92a68b..7c4d017e2a 100644 --- a/components/items/ItemsGrid/ItemsGridImageTokenEntity.vue +++ b/components/items/ItemsGrid/ItemsGridImageTokenEntity.vue @@ -228,28 +228,3 @@ onMounted(async () => { } }) - - diff --git a/components/landing/HeroBanner.vue b/components/landing/HeroBanner.vue index 258a9b8150..60bab2d1b3 100644 --- a/components/landing/HeroBanner.vue +++ b/components/landing/HeroBanner.vue @@ -30,31 +30,3 @@ - - diff --git a/components/massmint/Massmint.vue b/components/massmint/Massmint.vue index 896c52634d..56ebadba33 100644 --- a/components/massmint/Massmint.vue +++ b/components/massmint/Massmint.vue @@ -287,45 +287,3 @@ watch(urlPrefix, async () => { transactionFee.value = Number(await estimateTransactionFee(accountId.value, decimals.value)) }, { immediate: true }) - - - - diff --git a/components/massmint/OnBoarding.vue b/components/massmint/OnBoarding.vue index dcdf885d26..5c44beb305 100644 --- a/components/massmint/OnBoarding.vue +++ b/components/massmint/OnBoarding.vue @@ -178,130 +178,3 @@ const btn = computed(() => }, ) - - diff --git a/components/massmint/OnBoardingCard.vue b/components/massmint/OnBoardingCard.vue index eb0aa5a5a6..77507b804e 100644 --- a/components/massmint/OnBoardingCard.vue +++ b/components/massmint/OnBoardingCard.vue @@ -27,45 +27,3 @@ defineProps<{ active?: boolean }>() - - diff --git a/components/migrate/landing/content/Index.vue b/components/migrate/landing/content/Index.vue index 4b90609014..999971f243 100644 --- a/components/migrate/landing/content/Index.vue +++ b/components/migrate/landing/content/Index.vue @@ -48,81 +48,3 @@ const { entities: waitingItems, loading: loadingWaiting } = useWaitingItems() const isReady = computed(() => Object.keys(readyItems).length) const isWaiting = computed(() => Object.keys(waitingItems).length) - - diff --git a/components/migrate/landing/header/Index.vue b/components/migrate/landing/header/Index.vue index 7d0e6ae158..6ca506b366 100644 --- a/components/migrate/landing/header/Index.vue +++ b/components/migrate/landing/header/Index.vue @@ -170,57 +170,3 @@ import { const { source, sourceSelected, destination, destinationSelected } = useMigrate() - - diff --git a/components/profile/CollectionFilter.vue b/components/profile/CollectionFilter.vue index 37d64f1c3e..9e3ec01e82 100644 --- a/components/profile/CollectionFilter.vue +++ b/components/profile/CollectionFilter.vue @@ -176,15 +176,3 @@ useLazyAsyncData('profileCollections', async () => { await getProfileCollections() }) - - diff --git a/components/profile/OrderByDropdown.vue b/components/profile/OrderByDropdown.vue index c9b727bb45..719b14359c 100644 --- a/components/profile/OrderByDropdown.vue +++ b/components/profile/OrderByDropdown.vue @@ -162,26 +162,3 @@ onMounted(() => { } }) - - diff --git a/components/profile/ProfileDetail.vue b/components/profile/ProfileDetail.vue index e1fc50be37..8dd1e89da5 100644 --- a/components/profile/ProfileDetail.vue +++ b/components/profile/ProfileDetail.vue @@ -848,73 +848,3 @@ watchEffect(() => { } }) - - diff --git a/components/redirect/RedirectModal.vue b/components/redirect/RedirectModal.vue index a1f4b21365..a3ed4aeefd 100644 --- a/components/redirect/RedirectModal.vue +++ b/components/redirect/RedirectModal.vue @@ -46,26 +46,3 @@ const handleRedirect = () => { window.open(props.url, '_blank') } - - diff --git a/components/rmrk/Gallery/EmotionModal.vue b/components/rmrk/Gallery/EmotionModal.vue index 4d56ae0f3e..9c3835ca1b 100644 --- a/components/rmrk/Gallery/EmotionModal.vue +++ b/components/rmrk/Gallery/EmotionModal.vue @@ -59,39 +59,3 @@ const showAllEmotes = () => { DISPLAYED_EMOJI.value = props.emotes.length } - - diff --git a/components/rmrk/Gallery/GalleryCard.vue b/components/rmrk/Gallery/GalleryCard.vue index a44341f517..25a0b8f7cb 100644 --- a/components/rmrk/Gallery/GalleryCard.vue +++ b/components/rmrk/Gallery/GalleryCard.vue @@ -117,80 +117,3 @@ const largeDisplay = computed( () => preferencesStore.getLayoutClass === 'is-half-desktop is-half-tablet', ) - - - - diff --git a/components/search/SearchCollection.vue b/components/search/SearchCollection.vue index dc276c195c..02f3b06a67 100644 --- a/components/search/SearchCollection.vue +++ b/components/search/SearchCollection.vue @@ -179,45 +179,3 @@ const updateSearch = useDebounceFn((value: string) => { } }, 400) - - - - diff --git a/components/shared/AddressChecker.vue b/components/shared/AddressChecker.vue index 475aebfb2c..a5091ec1db 100644 --- a/components/shared/AddressChecker.vue +++ b/components/shared/AddressChecker.vue @@ -230,27 +230,3 @@ watch(addressCheck, (check) => { emit('check', isValid) }) - - diff --git a/components/shared/DragDrop.vue b/components/shared/DragDrop.vue index f9108dcaa3..130f24c88b 100644 --- a/components/shared/DragDrop.vue +++ b/components/shared/DragDrop.vue @@ -96,24 +96,3 @@ const onFileSelected = (file: File) => { } } - - diff --git a/components/shared/PillTabs.vue b/components/shared/PillTabs.vue index da68708060..f323810177 100644 --- a/components/shared/PillTabs.vue +++ b/components/shared/PillTabs.vue @@ -60,20 +60,3 @@ const handleTabClick = (value: string) => { emit('select', value) } - - diff --git a/components/shared/TabItem.vue b/components/shared/TabItem.vue index 6334f46ef6..3509e22ddc 100644 --- a/components/shared/TabItem.vue +++ b/components/shared/TabItem.vue @@ -54,31 +54,3 @@ const icon = computed(() => props.showActiveCheck && props.active ? 'check' : '', ) - - diff --git a/components/shared/filters/MobileFilter.vue b/components/shared/filters/MobileFilter.vue index 27e3866edd..7ee8f1647f 100644 --- a/components/shared/filters/MobileFilter.vue +++ b/components/shared/filters/MobileFilter.vue @@ -212,18 +212,3 @@ const applyFilters = () => { watch(() => route.query, syncFromUrl, { immediate: true }) - - diff --git a/components/shared/filters/SidebarFilter.vue b/components/shared/filters/SidebarFilter.vue index 17d6e1e5d4..2af5ee8747 100644 --- a/components/shared/filters/SidebarFilter.vue +++ b/components/shared/filters/SidebarFilter.vue @@ -59,24 +59,3 @@ const isCollectionActivityTab = computed( ) const isExploreItems = computed(() => route.name === 'prefix-explore-items') - - diff --git a/components/shared/filters/modules/PriceFilter.vue b/components/shared/filters/modules/PriceFilter.vue index 8b3add9775..d6a85f40bc 100644 --- a/components/shared/filters/modules/PriceFilter.vue +++ b/components/shared/filters/modules/PriceFilter.vue @@ -169,34 +169,3 @@ const toggleInputFocused = (): void => { inputFocused.value = !inputFocused.value } - - diff --git a/components/shared/gallery/NeoTag.vue b/components/shared/gallery/NeoTag.vue index 1cdca5e858..b11ee5b215 100644 --- a/components/shared/gallery/NeoTag.vue +++ b/components/shared/gallery/NeoTag.vue @@ -42,73 +42,3 @@ const onClose = () => { emit('close') } - - diff --git a/components/shared/modals/ModalBody.vue b/components/shared/modals/ModalBody.vue index b01d4b8f32..5e73e96003 100644 --- a/components/shared/modals/ModalBody.vue +++ b/components/shared/modals/ModalBody.vue @@ -151,49 +151,3 @@ watch( { immediate: true }, ) - - diff --git a/components/shared/view/InfoBox.vue b/components/shared/view/InfoBox.vue index 893a03595d..870e66f8ff 100644 --- a/components/shared/view/InfoBox.vue +++ b/components/shared/view/InfoBox.vue @@ -46,70 +46,3 @@ const onClose = () => { emit('close') } - - diff --git a/components/shared/view/SelectableImage.vue b/components/shared/view/SelectableImage.vue index e684a918a2..39fa547ea5 100644 --- a/components/shared/view/SelectableImage.vue +++ b/components/shared/view/SelectableImage.vue @@ -29,13 +29,3 @@ const handleClick = () => { emit(selected.value ? 'click' : 'remove', props.index) } - - diff --git a/components/teleport/Teleport.vue b/components/teleport/Teleport.vue index ea290c1681..2beaa488dc 100644 --- a/components/teleport/Teleport.vue +++ b/components/teleport/Teleport.vue @@ -528,96 +528,3 @@ onBeforeUnmount(() => { unsubscribeKusamaBalance.value && unsubscribeKusamaBalance.value() }) - - diff --git a/components/teleport/TeleportTabs.vue b/components/teleport/TeleportTabs.vue index acc1f58c19..f4db83939f 100644 --- a/components/teleport/TeleportTabs.vue +++ b/components/teleport/TeleportTabs.vue @@ -42,24 +42,3 @@ defineProps<{ }>() const emit = defineEmits(['select']) - - diff --git a/components/transfer/Transfer.vue b/components/transfer/Transfer.vue index 37eabcf074..5e01ee7df9 100644 --- a/components/transfer/Transfer.vue +++ b/components/transfer/Transfer.vue @@ -1061,27 +1061,3 @@ watchDebounced( { debounce: 300 }, ) - - diff --git a/components/transfer/TransferConfirmModal.vue b/components/transfer/TransferConfirmModal.vue index ed4d199814..e9d658ea7f 100644 --- a/components/transfer/TransferConfirmModal.vue +++ b/components/transfer/TransferConfirmModal.vue @@ -197,27 +197,3 @@ const onClose = () => { emit('close') } - - - - diff --git a/libs/ui/src/components/NeoAutocomplete/NeoAutocomplete.scss b/libs/ui/src/components/NeoAutocomplete/NeoAutocomplete.scss index 223b848d1e..e69de29bb2 100644 --- a/libs/ui/src/components/NeoAutocomplete/NeoAutocomplete.scss +++ b/libs/ui/src/components/NeoAutocomplete/NeoAutocomplete.scss @@ -1,13 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; - -.o-acp { - &__item { - @apply whitespace-normal; - } - &__menu { - @apply mt-4 p-0 shadow-primary border-default border-border-color text-text-color bg-background-color; - } -} diff --git a/libs/ui/src/components/NeoCarousel/NeoCarousel.vue b/libs/ui/src/components/NeoCarousel/NeoCarousel.vue index db2b782270..849bfb01bd 100644 --- a/libs/ui/src/components/NeoCarousel/NeoCarousel.vue +++ b/libs/ui/src/components/NeoCarousel/NeoCarousel.vue @@ -11,14 +11,3 @@ export default { }, } - - diff --git a/libs/ui/src/components/NeoCheckbox/NeoCheckbox.scss b/libs/ui/src/components/NeoCheckbox/NeoCheckbox.scss index e5d23ba426..e69de29bb2 100644 --- a/libs/ui/src/components/NeoCheckbox/NeoCheckbox.scss +++ b/libs/ui/src/components/NeoCheckbox/NeoCheckbox.scss @@ -1,18 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; - -$checkbox-checkmark-color: #000; - -.neo-checkbox { - .o-chk__check { - @apply rounded-none border-default border-border-color text-text-color bg-background-color; - } - - .o-chk__check--checked { - @apply bg-[length:10px] bg-no-repeat bg-center bg-k-primary; - } -} - -@import '@oruga-ui/oruga-next/src/scss/components/checkbox.scss'; diff --git a/libs/ui/src/components/NeoDatepicker/NeoDatepicker.vue b/libs/ui/src/components/NeoDatepicker/NeoDatepicker.vue index 8ce84f2886..ea242cb42e 100644 --- a/libs/ui/src/components/NeoDatepicker/NeoDatepicker.vue +++ b/libs/ui/src/components/NeoDatepicker/NeoDatepicker.vue @@ -5,12 +5,3 @@ export default { extends: ODatepicker, } - - diff --git a/libs/ui/src/components/NeoDropdown/NeoDropdown.scss b/libs/ui/src/components/NeoDropdown/NeoDropdown.scss index 2ad60ef237..e69de29bb2 100644 --- a/libs/ui/src/components/NeoDropdown/NeoDropdown.scss +++ b/libs/ui/src/components/NeoDropdown/NeoDropdown.scss @@ -1,46 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/_expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_helpers.scss'; - -$dropdown-menu-padding: 0; -$dropdown-menu-margin: 1rem 0; -$dropdown-menu-border-radius: 0; - -$dropdown-menu-box-shadow: var(--primary-shadow); -$dropdown-menu-background: var(--background-color); -$dropdown-item-color: var(--text-color); -$dropdown-item-hover-color: var(--text-color); -$dropdown-item-hover-background-color: var(--k-accent-hover); - -@import '@oruga-ui/oruga-next/src/scss/components/_dropdown.scss'; - -.o-drop__item { - @apply border-b border-b-border-color min-h-10; - - &.is-active, - &--active, - &[active='true'] { - @apply text-text-color-inverse bg-background-color-inverse; - - &:hover { - @apply text-text-color-inverse bg-background-color-inverse; - } - } - - .o-tip { - @apply w-full; - } -} - -.o-drop__menu { - @apply border-default border-border-color text-text-color; - - &.no-shadow { - @apply shadow-none; - } - - &.o-drop__menu--scrollable { - @apply max-h-[15rem] overflow-y-auto #{!important}; - } -} diff --git a/libs/ui/src/components/NeoDropdown/NeoDropdown.vue b/libs/ui/src/components/NeoDropdown/NeoDropdown.vue index 5c95313ad4..0c2c9f8285 100644 --- a/libs/ui/src/components/NeoDropdown/NeoDropdown.vue +++ b/libs/ui/src/components/NeoDropdown/NeoDropdown.vue @@ -120,7 +120,3 @@ export default { }, } - - diff --git a/libs/ui/src/components/NeoIcon/NeoIcon.scss b/libs/ui/src/components/NeoIcon/NeoIcon.scss index 8e04fdc8cc..e69de29bb2 100644 --- a/libs/ui/src/components/NeoIcon/NeoIcon.scss +++ b/libs/ui/src/components/NeoIcon/NeoIcon.scss @@ -1,21 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/_expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_helpers.scss'; -// @import '@oruga-ui/oruga-next/src/scss/components/_icon.scss'; - -.o-icon--success { - @apply text-k-green; -} - -.o-icon--primary { - @apply text-k-primary; -} - -.o-icon--k-grey { - @apply text-k-grey; -} - -.o-icon--spin { - @apply animate-icon-spin; -} diff --git a/libs/ui/src/components/NeoInput/NeoField.scss b/libs/ui/src/components/NeoInput/NeoField.scss index 0d6e41d504..e69de29bb2 100644 --- a/libs/ui/src/components/NeoInput/NeoField.scss +++ b/libs/ui/src/components/NeoInput/NeoField.scss @@ -1,39 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; - -$field-margin-bottom: 0.5rem; -$field-label-font-weight: 700; - -@import '@oruga-ui/oruga-next/src/scss/components/field.scss'; - -.o-field { - &--error .o-input { - @apply border-k-red; - - &::placeholder { - @apply text-k-red; - } - } - - .o-field__label { - @apply mb-3 text-text-color; - } - - &.o-field--focused { - input, - textarea { - @apply outline-none; - } - } - - .o-field__message-danger { - @apply text-k-red; - } - - .o-field--addons > :not(:first-child):not(:last-child) button, - .o-field--addons > button:not(:first-child):not(:last-child) { - @apply border-l-0 border-r-0; - } -} diff --git a/libs/ui/src/components/NeoInput/NeoInput.scss b/libs/ui/src/components/NeoInput/NeoInput.scss index 2fe848b823..e69de29bb2 100644 --- a/libs/ui/src/components/NeoInput/NeoInput.scss +++ b/libs/ui/src/components/NeoInput/NeoInput.scss @@ -1,42 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; - -$input-border-radius: 0; -$input-height: 3rem; -$input-padding: 0.75rem 1rem; -$input-textarea-padding: 0.75rem 1rem; - -@import '@oruga-ui/oruga-next/src/scss/components/input.scss'; - -.neo-input { - .o-input { - @apply outline-none shadow-none border-default border-k-grey-fix bg-background-color text-text-color; - - &:focus { - @apply border-default border-text-color; - } - - &--danger { - @apply border-default border-k-red; - - &:focus { - @apply border-default border-k-red; - } - } - } - - /* Remove Arrows/Spinners - Chrome, Safari, Edge, Opera */ - input::-webkit-outer-spin-button, - input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; - } - - /* Firefox */ - input[type=number] { - -moz-appearance: textfield; - } -} diff --git a/libs/ui/src/components/NeoInputitems/NeoInputitems.scss b/libs/ui/src/components/NeoInputitems/NeoInputitems.scss index 3b9082f9cf..e69de29bb2 100644 --- a/libs/ui/src/components/NeoInputitems/NeoInputitems.scss +++ b/libs/ui/src/components/NeoInputitems/NeoInputitems.scss @@ -1,37 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; - -$inputitems-border-width: 0; -$inputitems-border-radius: 0; -$inputitems-item-border-radius: 0; -$autocomplete-menu-border-radius: 0; - -@import '../NeoInput/NeoInput.scss'; -// @import '@oruga-ui/oruga-next/src/scss/components/autocomplete.scss'; -// @import '@oruga-ui/oruga-next/src/scss/components/inputitems.scss'; - -.o-inputit__container { - @apply pt-0 bg-background-color; - - .o-input.neo-input { - @apply outline-none shadow-none border-default border-k-grey-fix bg-background-color text-text-color; - - &:focus { - @apply border-text-color; - } - } - - .o-acp__menu { - @apply w-full shadow-primary border-default border-border-color bg-background-color; - - .o-acp__item { - @apply text-inherit; - - &:hover { - @apply text-k-hover-grey; - } - } - } -} diff --git a/libs/ui/src/components/NeoLoading/NeoLoading.scss b/libs/ui/src/components/NeoLoading/NeoLoading.scss index 77ec705f8e..e69de29bb2 100644 --- a/libs/ui/src/components/NeoLoading/NeoLoading.scss +++ b/libs/ui/src/components/NeoLoading/NeoLoading.scss @@ -1,8 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; - -$loading-overlay: rgb(0 0 0 / 0.5); - -@import '@oruga-ui/oruga-next/src/scss/components/loading.scss'; diff --git a/libs/ui/src/components/NeoModal/NeoModal.scss b/libs/ui/src/components/NeoModal/NeoModal.scss index 5509cf9cd6..e69de29bb2 100644 --- a/libs/ui/src/components/NeoModal/NeoModal.scss +++ b/libs/ui/src/components/NeoModal/NeoModal.scss @@ -1,45 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/_expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_helpers.scss'; - -$modal-content-border-radius: 0; -$modal-overlay-background-color: rgb(0 0 0 / 0.17); - -@import '@oruga-ui/oruga-next/src/scss/components/_modal.scss'; - -.neo-modal { - .o-modal__content { - @apply w-auto max-h-[var(--max-height)] shadow-primary border-default border-border-color text-text-color bg-background-color; - - hr { - @apply bg-k-shade2 #{!important}; - } - - &.no-shadow { - @apply shadow-none; - } - - &.enable-mobile { - @media screen and (max-width: 425px) { - @apply absolute -bottom-[1px] -right-[1px] -left-[1px] flex flex-col; - } - } - } - - .o-modal__content--full-screen { - @apply w-full h-screen; - } - - .modal-card-head { - @apply bg-[unset]; - } - - .card { - @apply rounded-none; - } - - &.append-to-body { - @apply z-[999]; - } -} diff --git a/libs/ui/src/components/NeoModalExtend/NeoModalExtend.vue b/libs/ui/src/components/NeoModalExtend/NeoModalExtend.vue index a343f9a1ce..e1d22dd659 100644 --- a/libs/ui/src/components/NeoModalExtend/NeoModalExtend.vue +++ b/libs/ui/src/components/NeoModalExtend/NeoModalExtend.vue @@ -6,16 +6,3 @@ export default { extends: OModal, } - - diff --git a/libs/ui/src/components/NeoNotification/NeoNotification.vue b/libs/ui/src/components/NeoNotification/NeoNotification.vue index c0094b5647..774c17222e 100644 --- a/libs/ui/src/components/NeoNotification/NeoNotification.vue +++ b/libs/ui/src/components/NeoNotification/NeoNotification.vue @@ -6,33 +6,3 @@ export default { extends: ONotification, } - - diff --git a/libs/ui/src/components/NeoPagination/NeoPagination.vue b/libs/ui/src/components/NeoPagination/NeoPagination.vue index 9c54fb6729..8d66ba6103 100644 --- a/libs/ui/src/components/NeoPagination/NeoPagination.vue +++ b/libs/ui/src/components/NeoPagination/NeoPagination.vue @@ -11,19 +11,3 @@ export default { }, } - - diff --git a/libs/ui/src/components/NeoRadio/NeoRadio.vue b/libs/ui/src/components/NeoRadio/NeoRadio.vue index 137b7d7fd6..2462bf13b6 100644 --- a/libs/ui/src/components/NeoRadio/NeoRadio.vue +++ b/libs/ui/src/components/NeoRadio/NeoRadio.vue @@ -5,11 +5,3 @@ export default { extends: ORadio, } - - diff --git a/libs/ui/src/components/NeoSecondaryButton/NeoSecondaryButton.vue b/libs/ui/src/components/NeoSecondaryButton/NeoSecondaryButton.vue index 0830f97115..a9e45554ae 100644 --- a/libs/ui/src/components/NeoSecondaryButton/NeoSecondaryButton.vue +++ b/libs/ui/src/components/NeoSecondaryButton/NeoSecondaryButton.vue @@ -16,7 +16,3 @@ defineProps<{ variant?: NeoButtonVariant }>() - - diff --git a/libs/ui/src/components/NeoSelect/NeoSelect.scss b/libs/ui/src/components/NeoSelect/NeoSelect.scss index 66552fc485..e69de29bb2 100644 --- a/libs/ui/src/components/NeoSelect/NeoSelect.scss +++ b/libs/ui/src/components/NeoSelect/NeoSelect.scss @@ -1,26 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; - -$select-padding: 0.5rem; -$select-height: 3rem; -$select-border-radius: 0; - -@import '@oruga-ui/oruga-next/src/scss/components/select.scss'; - -.neo-select.o-ctrl-sel { - @apply inline-block max-w-full; - - .o-sel { - @apply text-text-color border-k-grey; - } -} - -.dark .neo-select .o-sel-arrow { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cstyle%3Esvg%7Bfill:%23ffffff%7D%3C/style%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E"); -} - -.light .neo-select .o-sel-arrow { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cstyle%3Esvg%7Bfill:%23000000%7D%3C/style%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E"); -} diff --git a/libs/ui/src/components/NeoSidebar/NeoSidebar.scss b/libs/ui/src/components/NeoSidebar/NeoSidebar.scss index 11fe056baf..e69de29bb2 100644 --- a/libs/ui/src/components/NeoSidebar/NeoSidebar.scss +++ b/libs/ui/src/components/NeoSidebar/NeoSidebar.scss @@ -1,23 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; - -$sidebar-box-shadow: 0; -$sidebar-content-background-color: transparent; -$sidebar-mobile-width: 80px; -$sidebar-width: 320px; -$sidebar-zindex: 100; -$sidebar-overlay: rgba(0, 0, 0, 0.17); - -// @import '@oruga-ui/oruga-next/src/scss/components/sidebar.scss'; - -// to fix safari issue: https://github.com/kodadot/nft-gallery/issues/5227 -.is-hidden-mobile > .o-side { - transition: width 150ms; - width: 0; -} - -.is-hidden-mobile.sticky > .o-side { - width: $sidebar-width; -} diff --git a/libs/ui/src/components/NeoSkeleton/NeoSkeleton.scss b/libs/ui/src/components/NeoSkeleton/NeoSkeleton.scss index a1ecc96a3f..e69de29bb2 100644 --- a/libs/ui/src/components/NeoSkeleton/NeoSkeleton.scss +++ b/libs/ui/src/components/NeoSkeleton/NeoSkeleton.scss @@ -1,32 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; - -$skeleton-margin: 0.25rem; -$base-border-radius: 4px; -$skeleton-border-radius: var(--border-radius, $base-border-radius); - -.neo-skeleton { - &-item { - &.no-margin { - @apply m-0 #{!important}; - } - - @apply bg-[length:400%_100%] #{!important}; - - &--k-shade { - @apply bg-gradient-to-r from-k-shade from-25% via-k-shade/50 via-50% to-k-shade to-75% #{!important}; - } - - &--k-grey-light { - @apply bg-gradient-to-r from-k-grey-light from-25% via-k-grey-light/50 via-50% to-k-grey-light to-75% #{!important}; - } - } - - &-full-size { - @apply absolute left-0 top-0 w-full h-full; - } -} - -@import '@oruga-ui/oruga-next/src/scss/components/skeleton.scss'; diff --git a/libs/ui/src/components/NeoSlider/NeoSlider.vue b/libs/ui/src/components/NeoSlider/NeoSlider.vue index 6b16a3d75a..e9b7e0a458 100644 --- a/libs/ui/src/components/NeoSlider/NeoSlider.vue +++ b/libs/ui/src/components/NeoSlider/NeoSlider.vue @@ -5,15 +5,3 @@ export default { extends: OSlider, } - - diff --git a/libs/ui/src/components/NeoSteps/NeoSteps.scss b/libs/ui/src/components/NeoSteps/NeoSteps.scss index e8a2ed8298..e69de29bb2 100644 --- a/libs/ui/src/components/NeoSteps/NeoSteps.scss +++ b/libs/ui/src/components/NeoSteps/NeoSteps.scss @@ -1,89 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; - -$steps-details-background-color: hsla(0, 0%, 0%, 0); -$steps-details-padding: 0.5em !default; -$steps-font-size: var(--step-size, 0.85rem); -$steps-active-color: rgb(var(--steps-active-color)); -$steps-previous-color: #6188e7; -$steps-divider-height: 2px; - -$steps-marker-background: #fff; -$steps-marker-border: 0.2em solid $grey-light !default; - -$steps-marker-color: var(--background-color) !default; -$steps-marker-font-weight: 700 !default; -$steps-marker-rounded-border-radius: $base-rounded-border-radius !default; -$steps-color: $grey-lighter !default; -$steps-vertical-padding: 1em 0 !default; -$steps-item-line-height: $base-line-height !default; -$steps-link-color: hsl(0, 0%, 29%) !default; -$steps-content-padding: 1rem !default; - -@import '@oruga-ui/oruga-next/src/scss/components/steps'; - -.o-steps { - // Base styles - Themed - &__marker { - @apply bg-background-color; - } - - .o-icon { - @apply bg-background-color; - } - - &__divider { - @apply bg-none bg-k-shade bg-[length:200%_100%] bg-[right_bottom]; - } - - // oruga mixes the step size and the titlle font size together ($steps-font-size) - // we need to override the title font size to make it bigger (12px / 0.75rem - &__title { - @apply text-xs #{!important}; - @apply text-k-grey; - } - - // Navigation Items - &__nav-item { - // force active background color on last nav-item when active - &--last { - &.o-steps__nav-item-active { - .o-steps__marker { - @apply bg-steps-active-color; - } - } - } - - // Current nav-item styles - &-active { - .o-steps__title { - color: $steps-previous-color; - } - // move divider to right side (color it active) - // this is required because of the theme override above of the divider background - .o-steps__divider { - @apply bg-k-blue bg-[left_bottom]; - } - } - - // Previous nav-item styles - &-previous { - .o-steps__marker { - border-color: $steps-previous-color; - background-color: $steps-previous-color; - } - - .o-steps__title { - color: $steps-previous-color; - } - - // move divider to right side (color it active) - // this is required because of the theme override above of the divider background - .o-steps__divider { - @apply bg-k-blue bg-[left_bottom]; - } - } - } -} diff --git a/libs/ui/src/components/NeoSteps/NeoSteps.vue b/libs/ui/src/components/NeoSteps/NeoSteps.vue index eefba3c010..6badbafee2 100644 --- a/libs/ui/src/components/NeoSteps/NeoSteps.vue +++ b/libs/ui/src/components/NeoSteps/NeoSteps.vue @@ -42,7 +42,3 @@ const computedStepSize = computed(() => { return props.stepSize }) - - diff --git a/libs/ui/src/components/NeoSwitch/NeoSwitch.scss b/libs/ui/src/components/NeoSwitch/NeoSwitch.scss index 803c8af81d..e69de29bb2 100644 --- a/libs/ui/src/components/NeoSwitch/NeoSwitch.scss +++ b/libs/ui/src/components/NeoSwitch/NeoSwitch.scss @@ -1,27 +0,0 @@ -@import '../../scss/_theme.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_helpers.scss'; - -$switch-padding: 0; -$switch-width: 3rem; -$switch-background: #{var(--background-color)}; -$switch-border-color: #{var(--border-color)}; -$switch-active-background-color: #{var(--toggle-primary)}; -$switch-action-background: #{var(--toggle-active-switch)}; -$switch-action-checked-background: #{var(--background-color)}; - -@import '@oruga-ui/oruga-next/src/scss/components/_switch.scss'; - -.o-switch { - &__check-switch { - @apply h-6 w-6 shadow-none border border-border-color -ml-px; - } - &__check { - @apply h-6 border; - } - &__check--checked &__check-switch { - @apply bg-background-color; - } -} diff --git a/libs/ui/src/components/NeoTable/NeoTable.vue b/libs/ui/src/components/NeoTable/NeoTable.vue index ed89cefb84..3cb8992f8e 100644 --- a/libs/ui/src/components/NeoTable/NeoTable.vue +++ b/libs/ui/src/components/NeoTable/NeoTable.vue @@ -11,72 +11,3 @@ export default { }, } - - diff --git a/libs/ui/src/components/NeoTable/NeoTableColumn.vue b/libs/ui/src/components/NeoTable/NeoTableColumn.vue index 29406799a8..4caeb20158 100644 --- a/libs/ui/src/components/NeoTable/NeoTableColumn.vue +++ b/libs/ui/src/components/NeoTable/NeoTableColumn.vue @@ -5,10 +5,3 @@ export default { extends: OTableColumn, } - - diff --git a/libs/ui/src/components/NeoTabs/NeoTabs.scss b/libs/ui/src/components/NeoTabs/NeoTabs.scss index 338eed59c5..e69de29bb2 100644 --- a/libs/ui/src/components/NeoTabs/NeoTabs.scss +++ b/libs/ui/src/components/NeoTabs/NeoTabs.scss @@ -1,89 +0,0 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/_expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_variables.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_animations.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/_helpers.scss'; - -$tabs-font-size: 1rem; - -@import '@oruga-ui/oruga-next/src/scss/components/_tabs.scss'; - -.neo-tabs--toggle { - @apply bg-background-color shadow-primary; - - .o-tabs__content { - @apply p-0; - } -} - -.o-tabs { - &__nav { - @apply overflow-auto whitespace-nowrap; - - &--toggle { - @apply pb-0; - - & + .o-tabs__content { - @apply border-default border-border-color border-t-0; - } - } - - &-item { - &-default { - @apply text-text-color mb-6 border-b-k-shade; - - &--active { - @apply font-bold; - } - - &:hover:not(.o-tabs__nav-item-default--active) { - @apply bg-[unset]; - - .o-tabs__nav-item-text, - span, - div { - @apply text-link-hover; - } - } - } - - &-toggle { - @apply border-default border-border-color border-r-0 text-text-color; - - &--active { - @apply bg-background-color-inverse text-text-color-inverse; - } - - &--disabled { - @apply cursor-auto opacity-unset text-text-color/50; - @apply text-text-color/50 #{!important}; - - .o-tip { - @apply pointer-events-auto; - } - - &:hover { - @apply bg-inherit #{!important}; - } - } - - &:hover:not(.o-tabs__nav-item-toggle--active) { - @apply bg-k-accent-light-2 border-border-color; - } - } - - &-wrapper:last-child { - button.o-tabs__nav-item-toggle { - @apply border-r border-border-color; - } - } - } - } - - .o-tab-item__content { - @apply h-full; - } - - &__content--fixed { - @apply h-[20rem] overflow-y-auto; - } -} diff --git a/libs/ui/src/components/NeoTooltip/NeoTooltip.scss b/libs/ui/src/components/NeoTooltip/NeoTooltip.scss index c3a74745e9..88cfcaaf12 100644 --- a/libs/ui/src/components/NeoTooltip/NeoTooltip.scss +++ b/libs/ui/src/components/NeoTooltip/NeoTooltip.scss @@ -1,5 +1,5 @@ -@import '@oruga-ui/oruga-next/src/scss/utilities/expressions.scss'; -@import '@oruga-ui/oruga-next/src/scss/utilities/variables.scss'; + + @import '@oruga-ui/oruga-next/src/scss/utilities/animations.scss'; @import '@oruga-ui/oruga-next/src/scss/utilities/helpers.scss'; @@ -12,7 +12,6 @@ $tooltip-content-max-width: 25rem; $tooltip-content-multiline-width: var(--multiline-width, 10rem); $tooltip-arrow-margin: 1rem; -@import '@oruga-ui/oruga-next/src/scss/components/tooltip.scss'; .o-tip__content { @apply text-xs py-2 px-4 text-text-color border-default border-text-color bg-background-color; diff --git a/libs/ui/src/components/NeoTooltip/NeoTooltip.vue b/libs/ui/src/components/NeoTooltip/NeoTooltip.vue index 0fe7697a10..cc12155359 100644 --- a/libs/ui/src/components/NeoTooltip/NeoTooltip.vue +++ b/libs/ui/src/components/NeoTooltip/NeoTooltip.vue @@ -112,7 +112,3 @@ const handleClick = (event: MouseEvent) => { } } - - diff --git a/libs/ui/src/components/NeoUpload/NeoUpload.vue b/libs/ui/src/components/NeoUpload/NeoUpload.vue index 00bd931b7b..66dedb6b60 100644 --- a/libs/ui/src/components/NeoUpload/NeoUpload.vue +++ b/libs/ui/src/components/NeoUpload/NeoUpload.vue @@ -5,12 +5,3 @@ export default { extends: OUpload, } - - diff --git a/nuxt.config.ts b/nuxt.config.ts index 3ad35fdc18..23e649d87d 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -6,6 +6,8 @@ import { URLS, apolloClientConfig } from './utils/constants' const baseUrl = process.env.BASE_URL || 'http://localhost:9090' export default defineNuxtConfig({ + debug: true, + server: { port: 9090, // default: 3000 host: '0.0.0.0', diff --git a/pages/[prefix]/collection/[id]/activity.vue b/pages/[prefix]/collection/[id]/activity.vue index 172356fc53..59f0693714 100644 --- a/pages/[prefix]/collection/[id]/activity.vue +++ b/pages/[prefix]/collection/[id]/activity.vue @@ -47,20 +47,3 @@ useHead({ ], }) - - diff --git a/pages/[prefix]/collection/[id]/index.vue b/pages/[prefix]/collection/[id]/index.vue index 557d41d829..5ac5e35f41 100644 --- a/pages/[prefix]/collection/[id]/index.vue +++ b/pages/[prefix]/collection/[id]/index.vue @@ -20,20 +20,3 @@ const collectionid = (route.params?.id ?? '') as string const preferencesStore = usePreferencesStore() const isSidebarOpen = computed(() => preferencesStore.getsidebarFilterCollapse) - - diff --git a/pages/[prefix]/explore/items.vue b/pages/[prefix]/explore/items.vue index 7bd0bcbab2..8e3a4977cf 100644 --- a/pages/[prefix]/explore/items.vue +++ b/pages/[prefix]/explore/items.vue @@ -62,20 +62,3 @@ useSeoMeta({ ...getSeoMeta.value, }) - - diff --git a/pages/blog/index.vue b/pages/blog/index.vue index 1e82467f8d..5e623f9a00 100644 --- a/pages/blog/index.vue +++ b/pages/blog/index.vue @@ -144,191 +144,3 @@ const { data: posts } = useAsyncData('posts', async () => { return reduce }) - - diff --git a/pages/why-koda.vue b/pages/why-koda.vue index 0742d99226..3df446073f 100644 --- a/pages/why-koda.vue +++ b/pages/why-koda.vue @@ -22,8 +22,6 @@ definePageMeta({ const { $i18n } = useNuxtApp() -const glob = import.meta.glob('~/public/why-koda-*.webp', { eager: true }) - const chunckByBlock = (items: Section[]) => { const blocks: Section[][] = [] let block: Section[] = [] @@ -62,7 +60,13 @@ const sections = [ }, { id: 'offlineExhibitions', - images: Object.entries(glob).map(([, value]) => value.default), + images: [ + 'https://raw.githubusercontent.com/kodadot/nft-gallery/refs/heads/main/public/why-koda-1.webp', + 'https://raw.githubusercontent.com/kodadot/nft-gallery/refs/heads/main/public/why-koda-2.webp', + 'https://raw.githubusercontent.com/kodadot/nft-gallery/refs/heads/main/public/why-koda-3.webp', + 'https://raw.githubusercontent.com/kodadot/nft-gallery/refs/heads/main/public/why-koda-4.webp', + 'https://raw.githubusercontent.com/kodadot/nft-gallery/refs/heads/main/public/why-koda-5.webp', + ], tags: [ 'visibilityRecognition', 'digitalCreationsToPhysicalAudience', From 500c5c3a7f2aa4147e4157fb804d9c8f94d44e8b Mon Sep 17 00:00:00 2001 From: Preschian Febryantara Date: Wed, 18 Dec 2024 13:29:19 +0700 Subject: [PATCH 6/6] chore(nuxt): disable debug mode in nuxt.config.ts --- nuxt.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 23e649d87d..2595e30658 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -6,7 +6,7 @@ import { URLS, apolloClientConfig } from './utils/constants' const baseUrl = process.env.BASE_URL || 'http://localhost:9090' export default defineNuxtConfig({ - debug: true, + debug: false, server: { port: 9090, // default: 3000