From 1d38fb647e814ce4741d3c63cc9ace16f6955a50 Mon Sep 17 00:00:00 2001 From: Li Kui <90845831+likui628@users.noreply.github.com> Date: Wed, 7 Aug 2024 21:28:25 +0800 Subject: [PATCH] refactor: use @ant-design/fast-color instead (#4070) * refactor: Use @ant-design/fast-color instead * fix: test failed * chore: remove isValidColor All FastColor objects are valid. So isValid is always true. FastColor("not-a-color") -> `#000000` * refactor: rename directory `colorful` to `color` * fix: ci fail --- packages/@core/base/shared/build.config.ts | 2 +- packages/@core/base/shared/package.json | 10 +- .../src/{colorful => color}/convert.test.ts | 20 +- .../@core/base/shared/src/color/convert.ts | 38 + .../src/{colorful => color}/generator.ts | 5 +- .../shared/src/{colorful => color}/index.ts | 0 .../@core/base/shared/src/colorful/convert.ts | 73 - packages/@core/base/shared/src/index.ts | 2 +- .../src/components/menu-badge/menu-badge.vue | 6 +- .../effects/hooks/src/use-design-tokens.ts | 8 +- .../preferences/blocks/theme/builtin.vue | 12 +- packages/utils/src/index.ts | 2 +- pnpm-lock.yaml | 1773 ++++++++--------- 13 files changed, 871 insertions(+), 1080 deletions(-) rename packages/@core/base/shared/src/{colorful => color}/convert.test.ts (65%) create mode 100644 packages/@core/base/shared/src/color/convert.ts rename packages/@core/base/shared/src/{colorful => color}/generator.ts (85%) rename packages/@core/base/shared/src/{colorful => color}/index.ts (100%) delete mode 100644 packages/@core/base/shared/src/colorful/convert.ts diff --git a/packages/@core/base/shared/build.config.ts b/packages/@core/base/shared/build.config.ts index 79cc4a2b..4192eb26 100644 --- a/packages/@core/base/shared/build.config.ts +++ b/packages/@core/base/shared/build.config.ts @@ -7,7 +7,7 @@ export default defineBuildConfig({ 'src/index', 'src/constants/index', 'src/utils/index', - 'src/colorful/index', + 'src/color/index', 'src/cache/index', ], }); diff --git a/packages/@core/base/shared/package.json b/packages/@core/base/shared/package.json index bdeedb39..924a37c5 100644 --- a/packages/@core/base/shared/package.json +++ b/packages/@core/base/shared/package.json @@ -35,10 +35,10 @@ "development": "./src/utils/index.ts", "default": "./dist/utils/index.mjs" }, - "./colorful": { - "types": "./src/colorful/index.ts", - "development": "./src/colorful/index.ts", - "default": "./dist/colorful/index.mjs" + "./color": { + "types": "./src/color/index.ts", + "development": "./src/color/index.ts", + "default": "./dist/color/index.mjs" }, "./cache": { "types": "./src/cache/index.ts", @@ -55,7 +55,7 @@ } }, "dependencies": { - "@ctrl/tinycolor": "^4.1.0", + "@ant-design/fast-color": "^2.0.5", "@vue/shared": "^3.4.35", "clsx": "^2.1.1", "defu": "^6.1.4", diff --git a/packages/@core/base/shared/src/colorful/convert.test.ts b/packages/@core/base/shared/src/color/convert.test.ts similarity index 65% rename from packages/@core/base/shared/src/colorful/convert.test.ts rename to packages/@core/base/shared/src/color/convert.test.ts index 886bb739..bdd67e78 100644 --- a/packages/@core/base/shared/src/colorful/convert.test.ts +++ b/packages/@core/base/shared/src/color/convert.test.ts @@ -1,6 +1,6 @@ import { describe, expect, it } from 'vitest'; -import { convertToHsl, convertToHslCssVar, isValidColor } from './convert'; +import { convertToHsl, convertToHslCssVar, convertToRgb } from './convert'; describe('color conversion functions', () => { it('should correctly convert color to HSL format', () => { @@ -26,16 +26,16 @@ describe('color conversion functions', () => { const expectedHsl = '0 100% 50% / 0.5'; expect(convertToHslCssVar(color)).toEqual(expectedHsl); }); -}); -describe('isValidColor', () => { - it('isValidColor function', () => { - // 测试有效颜色 - expect(isValidColor('blue')).toBe(true); - expect(isValidColor('#000000')).toBe(true); + it('should correctly convert color to RGB CSS variable format', () => { + const color = 'hsl(284, 100%, 50%)'; + const expectedRgb = 'rgb(187,0,255)'; + expect(convertToRgb(color)).toEqual(expectedRgb); + }); - // 测试无效颜色 - expect(isValidColor('invalid color')).toBe(false); - expect(isValidColor()).toBe(false); + it('should correctly convert color with alpha to RGBA CSS variable format', () => { + const color = 'hsla(284, 100%, 50%, 0.92)'; + const expectedRgba = 'rgba(187,0,255,0.92)'; + expect(convertToRgb(color)).toEqual(expectedRgba); }); }); diff --git a/packages/@core/base/shared/src/color/convert.ts b/packages/@core/base/shared/src/color/convert.ts new file mode 100644 index 00000000..23bb7802 --- /dev/null +++ b/packages/@core/base/shared/src/color/convert.ts @@ -0,0 +1,38 @@ +import { FastColor } from '@ant-design/fast-color'; + +const Color = FastColor; + +/** + * 将颜色转换为HSL格式。 + * + * HSL是一种颜色模型,包括色相(Hue)、饱和度(Saturation)和亮度(Lightness)三个部分。 + * + * @param {string} color 输入的颜色。 + * @returns {string} HSL格式的颜色字符串。 + */ +function convertToHsl(color: string): string { + const { a, h, l, s } = new Color(color).toHsl(); + const hsl = `hsl(${Math.round(h)} ${Math.round(s * 100)}% ${Math.round(l * 100)}%)`; + return a < 1 ? `${hsl} ${a}` : hsl; +} + +/** + * 将颜色转换为HSL CSS变量。 + * + * 这个函数与convertToHsl函数类似,但是返回的字符串格式稍有不同, + * 以便可以作为CSS变量使用。 + * + * @param {string} color 输入的颜色。 + * @returns {string} 可以作为CSS变量使用的HSL格式的颜色字符串。 + */ +function convertToHslCssVar(color: string): string { + const { a, h, l, s } = new Color(color).toHsl(); + const hsl = `${Math.round(h)} ${Math.round(s * 100)}% ${Math.round(l * 100)}%`; + return a < 1 ? `${hsl} / ${a}` : hsl; +} + +function convertToRgb(color: string): string { + return new Color(color).toRgbString(); +} + +export { Color, convertToHsl, convertToHslCssVar, convertToRgb }; diff --git a/packages/@core/base/shared/src/colorful/generator.ts b/packages/@core/base/shared/src/color/generator.ts similarity index 85% rename from packages/@core/base/shared/src/colorful/generator.ts rename to packages/@core/base/shared/src/color/generator.ts index 547d111d..a03b4e00 100644 --- a/packages/@core/base/shared/src/colorful/generator.ts +++ b/packages/@core/base/shared/src/color/generator.ts @@ -1,7 +1,6 @@ -import { TinyColor } from '@ctrl/tinycolor'; import { getColors } from 'theme-colors'; -import { convertToHslCssVar } from './convert'; +import { Color, convertToHslCssVar } from './convert'; interface ColorItem { alias?: string; @@ -14,7 +13,7 @@ function generatorColorVariables(colorItems: ColorItem[]) { colorItems.forEach(({ alias, color, name }) => { if (color) { - const colorsMap = getColors(new TinyColor(color).toHexString()); + const colorsMap = getColors(new Color(color).toHexString()); let mainColor = colorsMap['500']; const colorKeys = Object.keys(colorsMap); diff --git a/packages/@core/base/shared/src/colorful/index.ts b/packages/@core/base/shared/src/color/index.ts similarity index 100% rename from packages/@core/base/shared/src/colorful/index.ts rename to packages/@core/base/shared/src/color/index.ts diff --git a/packages/@core/base/shared/src/colorful/convert.ts b/packages/@core/base/shared/src/colorful/convert.ts deleted file mode 100644 index f4fcc819..00000000 --- a/packages/@core/base/shared/src/colorful/convert.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { TinyColor } from '@ctrl/tinycolor'; -/** - * 将颜色转换为HSL格式。 - * - * HSL是一种颜色模型,包括色相(Hue)、饱和度(Saturation)和亮度(Lightness)三个部分。 - * 这个函数使用TinyColor库将输入的颜色转换为HSL格式,并返回一个字符串。 - * - * @param {string} color 输入的颜色,可以是任何TinyColor支持的颜色格式。 - * @returns {string} HSL格式的颜色字符串。 - */ -function convertToHsl(color: string): string { - const { a, h, l, s } = new TinyColor(color).toHsl(); - const hsl = `hsl(${Math.round(h)} ${Math.round(s * 100)}% ${Math.round(l * 100)}%)`; - return a < 1 ? `${hsl} ${a}` : hsl; -} - -/** - * 将颜色转换为HSL CSS变量。 - * - * 这个函数与convertToHsl函数类似,但是返回的字符串格式稍有不同, - * 以便可以作为CSS变量使用。 - * - * @param {string} color 输入的颜色,可以是任何TinyColor支持的颜色格式。 - * @returns {string} 可以作为CSS变量使用的HSL格式的颜色字符串。 - */ -function convertToHslCssVar(color: string): string { - const { a, h, l, s } = new TinyColor(color).toHsl(); - const hsl = `${Math.round(h)} ${Math.round(s * 100)}% ${Math.round(l * 100)}%`; - return a < 1 ? `${hsl} / ${a}` : hsl; -} - -/** - * 检查颜色是否有效 - * @param {string} color - 待检查的颜色 - * 如果颜色有效返回true,否则返回false - */ -function isValidColor(color?: string) { - if (!color) { - return false; - } - return new TinyColor(color).isValid; -} -/** - * 将HLS字符串转换为RGB颜色字符串 - * - * 本函数接收一个表示HLS值的字符串,移除其中的度量单位, - * 并将其转换为TinyColor对象,以便进行颜色处理。 - * 如果转换后的颜色无效,则直接返回原始字符串; - * 否则,返回转换后的RGB颜色字符串 - * - * @param str 表示HLS颜色值的字符串,可能包含度量单位如'deg'、'grad'、'rad'或'turn' - * @returns 如果颜色值有效,则返回对应的RGB颜色字符串;如果无效,则返回原始字符串 - */ -function hlsStringToRGBString(str: string): string { - // 移除HLS字符串中的度量单位,以便正确解析 - const color = new TinyColor( - `hsl(${str.replaceAll(/deg|grad|rad|turn/g, '')})`, - ); - // 检查颜色是否有效,如果无效则直接返回原始字符串 - if (!color.isValid) { - return str; - } - // 返回转换后的RGB颜色字符串 - return color.toRgbString(); -} - -export { - convertToHsl, - convertToHslCssVar, - hlsStringToRGBString, - isValidColor, - TinyColor, -}; diff --git a/packages/@core/base/shared/src/index.ts b/packages/@core/base/shared/src/index.ts index e4667cc2..55bf8502 100644 --- a/packages/@core/base/shared/src/index.ts +++ b/packages/@core/base/shared/src/index.ts @@ -1,4 +1,4 @@ export * from './cache'; -export * from './colorful'; +export * from './color'; export * from './constants'; export * from './utils'; diff --git a/packages/@core/ui-kit/shadcn-ui/src/components/menu-badge/menu-badge.vue b/packages/@core/ui-kit/shadcn-ui/src/components/menu-badge/menu-badge.vue index 0f5259fd..fa1e2953 100644 --- a/packages/@core/ui-kit/shadcn-ui/src/components/menu-badge/menu-badge.vue +++ b/packages/@core/ui-kit/shadcn-ui/src/components/menu-badge/menu-badge.vue @@ -3,7 +3,7 @@ import type { MenuRecordBadgeRaw } from '@vben-core/typings'; import { computed } from 'vue'; -import { isValidColor } from '@vben-core/shared'; +import { convertToRgb } from '@vben-core/shared'; import BadgeDot from './menu-badge-dot.vue'; @@ -34,9 +34,9 @@ const badgeClass = computed(() => { }); const badgeStyle = computed(() => { - if (badgeClass.value && isValidColor(badgeClass.value)) { + if (badgeClass.value) { return { - backgroundColor: badgeClass.value, + backgroundColor: convertToRgb(badgeClass.value), }; } return {}; diff --git a/packages/effects/hooks/src/use-design-tokens.ts b/packages/effects/hooks/src/use-design-tokens.ts index b4719cd9..8cf4f922 100644 --- a/packages/effects/hooks/src/use-design-tokens.ts +++ b/packages/effects/hooks/src/use-design-tokens.ts @@ -1,7 +1,7 @@ import { reactive, watch } from 'vue'; import { preferences } from '@vben/preferences'; -import { hlsStringToRGBString, updateCSSVariables } from '@vben/utils'; +import { convertToRgb, updateCSSVariables } from '@vben/utils'; /** * 用于适配各个框架的设计系统 @@ -102,7 +102,7 @@ export function useNaiveDesignTokens() { const getCssVariableValue = (variable: string, isColor: boolean = true) => { const value = rootStyles.getPropertyValue(variable); - return isColor ? hlsStringToRGBString(value) : value; + return isColor ? convertToRgb(`hsl(${value})`) : value; }; watch( @@ -145,8 +145,6 @@ export function useNaiveDesignTokens() { commonTokens.invertedColor = getCssVariableValue('--background-deep'); commonTokens.borderRadius = getCssVariableValue('--radius', false); - - // antDesignTokens.colorBgMask = getCssVariableValue('--overlay'); }, { immediate: true }, ); @@ -160,7 +158,7 @@ export function useElementPlusDesignTokens() { const getCssVariableValue = (variable: string, isColor: boolean = true) => { const value = rootStyles.getPropertyValue(variable); - return isColor ? `hsl(${value})` : value; + return isColor ? convertToRgb(`hsl(${value})`) : value; }; watch( () => preferences.theme, diff --git a/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue b/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue index 3c94ca68..50f530cd 100644 --- a/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue +++ b/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue @@ -9,7 +9,7 @@ import { BUILT_IN_THEME_PRESETS, type BuiltinThemePreset, } from '@vben/preferences'; -import { convertToHsl, TinyColor } from '@vben/utils'; +import { Color, convertToHsl } from '@vben/utils'; defineOptions({ name: 'PreferenceBuiltinTheme', @@ -22,17 +22,11 @@ const modelValue = defineModel({ default: 'default' }); const themeColorPrimary = defineModel('themeColorPrimary'); const inputValue = computed(() => { - return new TinyColor(themeColorPrimary.value).toHexString(); + return new Color(themeColorPrimary.value || '').toHexString(); }); const builtinThemePresets = computed(() => { - return [ - // { - // color: 'hsl(231 98% 65%)', - // type: 'default', - // }, - ...BUILT_IN_THEME_PRESETS, - ]; + return [...BUILT_IN_THEME_PRESETS]; }); function typeView(name: BuiltinThemeType) { diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index 97a18e58..9bf575c3 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -1,3 +1,3 @@ export * from './helpers'; -export * from '@vben-core/shared/colorful'; +export * from '@vben-core/shared/color'; export * from '@vben-core/shared/utils'; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1be47301..47ca3a8c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -60,7 +60,7 @@ importers: version: 2.4.6 autoprefixer: specifier: ^10.4.20 - version: 10.4.20(postcss@8.4.40) + version: 10.4.20(postcss@8.4.41) cross-env: specifier: ^7.0.3 version: 7.0.3 @@ -87,7 +87,7 @@ importers: version: 3.4.7 turbo: specifier: ^2.0.11 - version: 2.0.11 + version: 2.0.12 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -156,22 +156,22 @@ importers: version: link:../../packages/utils '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) ant-design-vue: specifier: ^4.2.3 - version: 4.2.3(vue@3.4.35(typescript@5.5.4)) + version: 4.2.3(vue@3.4.36(typescript@5.5.4)) dayjs: specifier: ^1.11.12 version: 1.11.12 pinia: specifier: 2.2.0 - version: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) apps/web-ele: dependencies: @@ -219,22 +219,22 @@ importers: version: link:../../packages/utils '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) dayjs: specifier: ^1.11.12 version: 1.11.12 element-plus: specifier: ^2.7.8 - version: 2.7.8(vue@3.4.35(typescript@5.5.4)) + version: 2.7.8(vue@3.4.36(typescript@5.5.4)) pinia: specifier: 2.2.0 - version: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) devDependencies: unplugin-element-plus: specifier: ^0.8.0 @@ -286,19 +286,19 @@ importers: version: link:../../packages/utils '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) naive-ui: specifier: ^2.39.0 - version: 2.39.0(vue@3.4.35(typescript@5.5.4)) + version: 2.39.0(vue@3.4.36(typescript@5.5.4)) pinia: specifier: 2.2.0 - version: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) docs: dependencies: @@ -311,16 +311,16 @@ importers: version: 0.5.0(vite-plugin-pwa@0.20.1(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0)) vitepress: specifier: ^1.3.2 - version: 1.3.2(@algolia/client-search@4.24.0)(@types/node@22.1.0)(async-validator@4.2.5)(axios@1.7.3)(nprogress@0.2.0)(postcss@8.4.40)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4) + version: 1.3.2(@algolia/client-search@4.24.0)(@types/node@22.1.0)(async-validator@4.2.5)(axios@1.7.3)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) internal/lint-configs/commitlint-config: dependencies: '@commitlint/cli': specifier: ^19.3.0 - version: 19.3.0(@types/node@22.1.0)(typescript@5.5.4) + version: 19.4.0(@types/node@22.1.0)(typescript@5.5.4) '@commitlint/config-conventional': specifier: ^19.2.2 version: 19.2.2 @@ -341,7 +341,7 @@ importers: dependencies: eslint-config-turbo: specifier: ^2.0.11 - version: 2.0.11(eslint@9.8.0) + version: 2.0.12(eslint@9.8.0) eslint-plugin-command: specifier: ^0.2.3 version: 0.2.3(eslint@9.8.0) @@ -436,13 +436,13 @@ importers: devDependencies: postcss: specifier: ^8.4.40 - version: 8.4.40 + version: 8.4.41 postcss-html: specifier: ^1.7.0 version: 1.7.0 postcss-scss: specifier: ^4.0.9 - version: 4.0.9(postcss@8.4.40) + version: 4.0.9(postcss@8.4.41) prettier: specifier: ^3.3.3 version: 3.3.3 @@ -454,7 +454,7 @@ importers: version: 14.0.1(stylelint@16.8.1(typescript@5.5.4)) stylelint-config-recommended-scss: specifier: ^14.1.0 - version: 14.1.0(postcss@8.4.40)(stylelint@16.8.1(typescript@5.5.4)) + version: 14.1.0(postcss@8.4.41)(stylelint@16.8.1(typescript@5.5.4)) stylelint-config-recommended-vue: specifier: ^1.5.0 version: 1.5.0(postcss-html@1.7.0)(stylelint@16.8.1(typescript@5.5.4)) @@ -521,28 +521,28 @@ importers: version: 1.1.2 '@tailwindcss/nesting': specifier: 0.0.0-insiders.565cd3e - version: 0.0.0-insiders.565cd3e(postcss@8.4.40) + version: 0.0.0-insiders.565cd3e(postcss@8.4.41) '@tailwindcss/typography': specifier: ^0.5.13 version: 0.5.13(tailwindcss@3.4.7) autoprefixer: specifier: ^10.4.20 - version: 10.4.20(postcss@8.4.40) + version: 10.4.20(postcss@8.4.41) cssnano: specifier: ^7.0.4 - version: 7.0.4(postcss@8.4.40) + version: 7.0.4(postcss@8.4.41) postcss: specifier: ^8.4.40 - version: 8.4.40 + version: 8.4.41 postcss-antd-fixes: specifier: ^0.2.0 - version: 0.2.0(postcss@8.4.40) + version: 0.2.0(postcss@8.4.41) postcss-import: specifier: ^16.1.0 - version: 16.1.0(postcss@8.4.40) + version: 16.1.0(postcss@8.4.41) postcss-preset-env: specifier: ^10.0.0 - version: 10.0.0(postcss@8.4.40) + version: 10.0.0(postcss@8.4.41) tailwindcss: specifier: ^3.4.7 version: 3.4.7 @@ -570,10 +570,10 @@ importers: dependencies: '@intlify/unplugin-vue-i18n': specifier: ^4.0.0 - version: 4.0.0(rollup@4.20.0)(vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4))) + version: 4.0.0(rollup@4.20.0)(vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4))) '@jspm/generator': specifier: ^2.1.2 - version: 2.1.2 + version: 2.1.3 cheerio: specifier: 1.0.0-rc.12 version: 1.0.0-rc.12 @@ -597,7 +597,7 @@ importers: version: 0.20.1(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0) vite-plugin-vue-devtools: specifier: ^7.3.7 - version: 7.3.7(rollup@4.20.0)(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + version: 7.3.7(rollup@4.20.0)(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)) devDependencies: '@types/html-minifier-terser': specifier: ^7.0.2 @@ -607,10 +607,10 @@ importers: version: link:../node-utils '@vitejs/plugin-vue': specifier: ^5.1.2 - version: 5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + version: 5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)) '@vitejs/plugin-vue-jsx': specifier: ^4.0.0 - version: 4.0.0(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + version: 4.0.0(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)) dayjs: specifier: ^1.11.12 version: 1.11.12 @@ -645,22 +645,22 @@ importers: dependencies: '@iconify/vue': specifier: ^4.1.2 - version: 4.1.2(vue@3.4.35(typescript@5.5.4)) + version: 4.1.2(vue@3.4.36(typescript@5.5.4)) lucide-vue-next: specifier: ^0.424.0 - version: 0.424.0(vue@3.4.35(typescript@5.5.4)) + version: 0.424.0(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/@core/base/shared: dependencies: - '@ctrl/tinycolor': - specifier: ^4.1.0 - version: 4.1.0 + '@ant-design/fast-color': + specifier: ^2.0.5 + version: 2.0.6 '@vue/shared': specifier: ^3.4.35 - version: 3.4.35 + version: 3.4.36 clsx: specifier: ^2.1.1 version: 2.1.1 @@ -691,10 +691,10 @@ importers: dependencies: vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/@core/composables: dependencies: @@ -703,16 +703,16 @@ importers: version: link:../base/shared '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) radix-vue: specifier: ^1.9.2 - version: 1.9.2(vue@3.4.35(typescript@5.5.4)) + version: 1.9.3(vue@3.4.36(typescript@5.5.4)) sortablejs: specifier: ^1.15.2 version: 1.15.2 vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) devDependencies: '@types/sortablejs': specifier: ^1.15.8 @@ -728,10 +728,10 @@ importers: version: link:../base/typings '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/layout-ui: dependencies: @@ -749,10 +749,10 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/menu-ui: dependencies: @@ -773,16 +773,16 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/shadcn-ui: dependencies: '@radix-icons/vue': specifier: ^1.0.0 - version: 1.0.0(vue@3.4.35(typescript@5.5.4)) + version: 1.0.0(vue@3.4.36(typescript@5.5.4)) '@vben-core/icons': specifier: workspace:* version: link:../../base/icons @@ -794,19 +794,19 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) class-variance-authority: specifier: ^0.7.0 version: 0.7.0 lucide-vue-next: specifier: ^0.424.0 - version: 0.424.0(vue@3.4.35(typescript@5.5.4)) + version: 0.424.0(vue@3.4.36(typescript@5.5.4)) radix-vue: specifier: ^1.9.2 - version: 1.9.2(vue@3.4.35(typescript@5.5.4)) + version: 1.9.3(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/tabs-ui: dependencies: @@ -824,7 +824,7 @@ importers: version: link:../../base/typings vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/constants: dependencies: @@ -848,7 +848,7 @@ importers: version: link:../../utils vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/effects/chart-ui: dependencies: @@ -857,13 +857,13 @@ importers: version: link:../../preferences '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) echarts: specifier: ^5.5.1 version: 5.5.1 vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/effects/common-ui: dependencies: @@ -887,16 +887,16 @@ importers: version: link:../../types '@vueuse/integrations': specifier: ^10.11.0 - version: 10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.36(typescript@5.5.4)) qrcode: specifier: ^1.5.3 - version: 1.5.3 + version: 1.5.4 vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) devDependencies: '@types/qrcode': specifier: ^1.5.5 @@ -921,10 +921,10 @@ importers: version: link:../../utils vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) watermark-js-plus: specifier: ^1.5.2 version: 1.5.2 @@ -969,13 +969,13 @@ importers: version: link:../../utils '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/effects/request: dependencies: @@ -1006,10 +1006,10 @@ importers: version: 9.13.1 vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-i18n: specifier: ^9.13.1 - version: 9.13.1(vue@3.4.35(typescript@5.5.4)) + version: 9.13.1(vue@3.4.36(typescript@5.5.4)) packages/preferences: dependencies: @@ -1030,16 +1030,16 @@ importers: version: link:../@core/base/typings pinia: specifier: 2.2.0 - version: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) pinia-plugin-persistedstate: specifier: ^3.2.1 - version: 3.2.1(pinia@2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4))) + version: 3.2.1(pinia@2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4))) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/styles: dependencies: @@ -1054,10 +1054,10 @@ importers: version: link:../@core/base/typings vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/utils: dependencies: @@ -1069,7 +1069,7 @@ importers: version: link:../@core/base/typings vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) scripts/turbo-run: dependencies: @@ -1179,6 +1179,10 @@ packages: '@ant-design/colors@6.0.0': resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==} + '@ant-design/fast-color@2.0.6': + resolution: {integrity: sha512-y2217gk4NqL35giHl72o6Zzqji9O7vHh9YmhUVkPtAOpoTCH4uWxo/pr4VE8t0+ChEPs0qo4eJRC5Q1eXWo3vA==} + engines: {node: '>=8.x'} + '@ant-design/icons-svg@4.4.2': resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==} @@ -1983,8 +1987,8 @@ packages: resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==} engines: {node: '>=16.13'} - '@commitlint/cli@19.3.0': - resolution: {integrity: sha512-LgYWOwuDR7BSTQ9OLZ12m7F/qhNY+NpAyPBgo4YNMkACE7lGuUnuQq1yi9hz1KA4+3VqpOYl8H1rY/LYK43v7g==} + '@commitlint/cli@19.4.0': + resolution: {integrity: sha512-sJX4J9UioVwZHq7JWM9tjT5bgWYaIN3rC4FP7YwfEwBYiIO+wMyRttRvQLNkow0vCdM0D67r9NEWU0Ui03I4Eg==} engines: {node: '>=v18'} hasBin: true @@ -2016,8 +2020,8 @@ packages: resolution: {integrity: sha512-xrzMmz4JqwGyKQKTpFzlN0dx0TAiT7Ran1fqEBgEmEj+PU98crOFtysJgY+QdeSagx6EDRigQIXJVnfrI0ratA==} engines: {node: '>=v18'} - '@commitlint/load@19.2.0': - resolution: {integrity: sha512-XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ==} + '@commitlint/load@19.4.0': + resolution: {integrity: sha512-I4lCWaEZYQJ1y+Y+gdvbGAx9pYPavqZAZ3/7/8BpWh+QjscAn8AjsUpLV2PycBsEx7gupq5gM4BViV9xwTIJuw==} engines: {node: '>=v18'} '@commitlint/message@19.0.0': @@ -2028,8 +2032,8 @@ packages: resolution: {integrity: sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==} engines: {node: '>=v18'} - '@commitlint/read@19.2.1': - resolution: {integrity: sha512-qETc4+PL0EUv7Q36lJbPG+NJiBOGg7SSC7B5BsPWOmei+Dyif80ErfWQ0qXoW9oCh7GTpTNRoaVhiI8RbhuaNw==} + '@commitlint/read@19.4.0': + resolution: {integrity: sha512-r95jLOEZzKDakXtnQub+zR3xjdnrl2XzerPwm7ch1/cc5JGq04tyaNpa6ty0CRCWdVrk4CZHhqHozb8yZwy2+g==} engines: {node: '>=v18'} '@commitlint/resolve-extends@19.1.0': @@ -2085,8 +2089,8 @@ packages: '@cspell/dict-bash@4.1.3': resolution: {integrity: sha512-tOdI3QVJDbQSwPjUkOiQFhYcu2eedmX/PtEpVWg0aFps/r6AyjUQINtTgpqMYnYuq8O1QUIQqnpx21aovcgZCw==} - '@cspell/dict-companies@3.1.3': - resolution: {integrity: sha512-qaAmfKtQLA7Sbe9zfFVpcwyG92cx6+EiWIpPURv11Ng2QMv2PKhYcterUJBooAvgqD0/qq+AsLN8MREloY5Mdw==} + '@cspell/dict-companies@3.1.4': + resolution: {integrity: sha512-y9e0amzEK36EiiKx3VAA+SHQJPpf2Qv5cCt5eTUSggpTkiFkCh6gRKQ97rVlrKh5GJrqinDwYIJtTsxuh2vy2Q==} '@cspell/dict-cpp@5.1.12': resolution: {integrity: sha512-6lXLOFIa+k/qBcu0bjaE/Kc6v3sh9VhsDOXD1Dalm3zgd0QIMjp5XBmkpSdCAK3pWCPV0Se7ysVLDfCea1BuXg==} @@ -2118,8 +2122,8 @@ packages: '@cspell/dict-elixir@4.0.3': resolution: {integrity: sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==} - '@cspell/dict-en-common-misspellings@2.0.3': - resolution: {integrity: sha512-8nF1z9nUiSgMyikL66HTbDO7jCGtB24TxKBasXIBwkBKMDZgA2M883iXdeByy6m1JJUcCGFkSftVYp2W0bUgjw==} + '@cspell/dict-en-common-misspellings@2.0.4': + resolution: {integrity: sha512-lvOiRjV/FG4pAGZL3PN2GCVHSTCE92cwhfLGGkOsQtxSmef6WCHfHwp9auafkBlX0yFQSKDfq6/TlpQbjbJBtQ==} '@cspell/dict-en-gb@1.1.33': resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==} @@ -2199,8 +2203,8 @@ packages: '@cspell/dict-public-licenses@2.0.7': resolution: {integrity: sha512-KlBXuGcN3LE7tQi/GEqKiDewWGGuopiAD0zRK1QilOx5Co8XAvs044gk4MNIQftc8r0nHeUI+irJKLGcR36DIQ==} - '@cspell/dict-python@4.2.3': - resolution: {integrity: sha512-C1CPX9wwEGgcHv/p7KfjuIOp1G6KNyx5gWYweAd6/KPv+ZpeM1v572zFUTmpO8WDuAfKFf00nqYL8/GmCENWBw==} + '@cspell/dict-python@4.2.4': + resolution: {integrity: sha512-sCtLBqMreb+8zRW2bXvFsfSnRUVU6IFm4mT6Dc4xbz0YajprbaPPh/kOUTw5IJRP8Uh+FFb7Xp2iH03CNWRq/A==} '@cspell/dict-r@2.0.1': resolution: {integrity: sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==} @@ -2214,11 +2218,11 @@ packages: '@cspell/dict-scala@5.0.3': resolution: {integrity: sha512-4yGb4AInT99rqprxVNT9TYb1YSpq58Owzq7zi3ZS5T0u899Y4VsxsBiOgHnQ/4W+ygi+sp+oqef8w8nABR2lkg==} - '@cspell/dict-software-terms@4.0.3': - resolution: {integrity: sha512-65QAVMc3YlcI7PcqWRY5ox53tTWC8aktUZdJYCVs4VDBPUCTSDnTSmSreeg4F5Z468clv9KF/S0PkxbLjgW72A==} + '@cspell/dict-software-terms@4.0.5': + resolution: {integrity: sha512-93knOtaQlWq1Zlz5LbjOl3P3hIiWbhd7kwGZPHVxCdD8+G3UEF9hivkpZ1miK/DzlV/Lcw2RoybOd91Xazc+dg==} - '@cspell/dict-sql@2.1.3': - resolution: {integrity: sha512-SEyTNKJrjqD6PAzZ9WpdSu6P7wgdNtGV2RV8Kpuw1x6bV+YsSptuClYG+JSdRExBTE6LwIe1bTklejUp3ZP8TQ==} + '@cspell/dict-sql@2.1.5': + resolution: {integrity: sha512-FmxanytHXss7GAWAXmgaxl3icTCW7YxlimyOSPNfm+njqeUDjw3kEv4mFNDDObBJv8Ec5AWCbUDkWIpkE3IpKg==} '@cspell/dict-svelte@1.0.2': resolution: {integrity: sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==} @@ -3160,17 +3164,17 @@ packages: resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} engines: {node: '>=14'} - '@floating-ui/core@1.6.5': - resolution: {integrity: sha512-8GrTWmoFhm5BsMZOTHeGD2/0FLKLQQHvO/ZmQga4tKempYRLz8aqJGqXVuQgisnMObq2YZ2SgkwctN1LOOxcqA==} + '@floating-ui/core@1.6.7': + resolution: {integrity: sha512-yDzVT/Lm101nQ5TCVeK65LtdN7Tj4Qpr9RTXJ2vPFLqtLxwOrpoxAHAJI8J3yYWUc40J0BDBheaitK5SJmno2g==} - '@floating-ui/dom@1.6.8': - resolution: {integrity: sha512-kx62rP19VZ767Q653wsP1XZCGIirkE09E0QUGNYTM/ttbbQHqcGPdSfWFxUyyNLc/W6aoJRBajOSXhP6GXjC0Q==} + '@floating-ui/dom@1.6.10': + resolution: {integrity: sha512-fskgCFv8J8OamCmyun8MfjB1Olfn+uZKjOKZ0vhYF3gRmEUXcGOjxWL8bBr7i4kIuPZ2KD2S3EUIOxnjC8kl2A==} - '@floating-ui/utils@0.2.5': - resolution: {integrity: sha512-sTcG+QZ6fdEUObICavU+aB3Mp8HY4n14wYHdxK4fXjPmv3PXZZeY5RaguJmGyeH/CJQhX3fqKUtS4qc1LoHwhQ==} + '@floating-ui/utils@0.2.7': + resolution: {integrity: sha512-X8R8Oj771YRl/w+c1HqAC1szL8zWQRwFvgDwT129k9ACdBoud/+/rX9V0qiMl6LWUdP9voC2nDVZYPMQQsb6eA==} - '@floating-ui/vue@1.1.2': - resolution: {integrity: sha512-7pq8HfhVhxOpV6iIMKSslI51fwFYy8G0BF0GjhlhpmUhVwL8jCByvcjzTwEtRWFVRrGD/I9kLp6eUHKumiUTjw==} + '@floating-ui/vue@1.1.4': + resolution: {integrity: sha512-ammH7T3vyCx7pmm9OF19Wc42zrGnUw0QvLoidgypWsCLJMtGXEwY7paYIHO+K+oLC3mbWpzIHzeTVienYenlNg==} '@gar/promisify@1.1.3': resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} @@ -3270,8 +3274,8 @@ packages: '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - '@jspm/generator@2.1.2': - resolution: {integrity: sha512-xc65/onT8tNbRq7yOw1o7BH3E9fm3Dhha98jikpML9XUd6YP6JuoymYM6AXrF1WxMGzaG0KslNNJDgo4GW2DZg==} + '@jspm/generator@2.1.3': + resolution: {integrity: sha512-LMpUk/rvM05ZYXv2shozxTkADBd6VHe5rsfWXl6g/f02ycaEh4JMYYhtIZ+O4x6iTRyZf3O3LOvgE8YItNSkKQ==} '@jspm/import-map@1.1.0': resolution: {integrity: sha512-vmk583YnMi4fmqeXbWIBiyzFu+vqVZ5VCoaa6H4xeSQy5E6JAWtmcq72OAMFTeSTqw7xxHQIJFq2OlHKdUWitQ==} @@ -3453,8 +3457,8 @@ packages: resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} engines: {node: '>=12.22.0'} - '@pnpm/npm-conf@2.2.2': - resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==} + '@pnpm/npm-conf@2.3.0': + resolution: {integrity: sha512-DqrO+oXGR7HCuicNy6quk6ALJSDDPKI7RZz1bP5im8mSL8J2e+9w26LdkjuAfpAjOutYUJVbnXnx4IbTQeIgfw==} engines: {node: '>=12'} '@polka/url@1.0.0-next.25': @@ -3563,161 +3567,81 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.19.2': - resolution: {integrity: sha512-OHflWINKtoCFSpm/WmuQaWW4jeX+3Qt3XQDepkkiFTsoxFc5BpF3Z5aDxFZgBqRjO6ATP5+b1iilp4kGIZVWlA==} - cpu: [arm] - os: [android] - '@rollup/rollup-android-arm-eabi@4.20.0': resolution: {integrity: sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.19.2': - resolution: {integrity: sha512-k0OC/b14rNzMLDOE6QMBCjDRm3fQOHAL8Ldc9bxEWvMo4Ty9RY6rWmGetNTWhPo+/+FNd1lsQYRd0/1OSix36A==} - cpu: [arm64] - os: [android] - '@rollup/rollup-android-arm64@4.20.0': resolution: {integrity: sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.19.2': - resolution: {integrity: sha512-IIARRgWCNWMTeQH+kr/gFTHJccKzwEaI0YSvtqkEBPj7AshElFq89TyreKNFAGh5frLfDCbodnq+Ye3dqGKPBw==} - cpu: [arm64] - os: [darwin] - '@rollup/rollup-darwin-arm64@4.20.0': resolution: {integrity: sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.19.2': - resolution: {integrity: sha512-52udDMFDv54BTAdnw+KXNF45QCvcJOcYGl3vQkp4vARyrcdI/cXH8VXTEv/8QWfd6Fru8QQuw1b2uNersXOL0g==} - cpu: [x64] - os: [darwin] - '@rollup/rollup-darwin-x64@4.20.0': resolution: {integrity: sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.19.2': - resolution: {integrity: sha512-r+SI2t8srMPYZeoa1w0o/AfoVt9akI1ihgazGYPQGRilVAkuzMGiTtexNZkrPkQsyFrvqq/ni8f3zOnHw4hUbA==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-gnueabihf@4.20.0': resolution: {integrity: sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.19.2': - resolution: {integrity: sha512-+tYiL4QVjtI3KliKBGtUU7yhw0GMcJJuB9mLTCEauHEsqfk49gtUBXGtGP3h1LW8MbaTY6rSFIQV1XOBps1gBA==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.20.0': resolution: {integrity: sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.19.2': - resolution: {integrity: sha512-OR5DcvZiYN75mXDNQQxlQPTv4D+uNCUsmSCSY2FolLf9W5I4DSoJyg7z9Ea3TjKfhPSGgMJiey1aWvlWuBzMtg==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.20.0': resolution: {integrity: sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.19.2': - resolution: {integrity: sha512-Hw3jSfWdUSauEYFBSFIte6I8m6jOj+3vifLg8EU3lreWulAUpch4JBjDMtlKosrBzkr0kwKgL9iCfjA8L3geoA==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-musl@4.20.0': resolution: {integrity: sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.19.2': - resolution: {integrity: sha512-rhjvoPBhBwVnJRq/+hi2Q3EMiVF538/o9dBuj9TVLclo9DuONqt5xfWSaE6MYiFKpo/lFPJ/iSI72rYWw5Hc7w==} - cpu: [ppc64] - os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.20.0': resolution: {integrity: sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.19.2': - resolution: {integrity: sha512-EAz6vjPwHHs2qOCnpQkw4xs14XJq84I81sDRGPEjKPFVPBw7fwvtwhVjcZR6SLydCv8zNK8YGFblKWd/vRmP8g==} - cpu: [riscv64] - os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.20.0': resolution: {integrity: sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.19.2': - resolution: {integrity: sha512-IJSUX1xb8k/zN9j2I7B5Re6B0NNJDJ1+soezjNojhT8DEVeDNptq2jgycCOpRhyGj0+xBn7Cq+PK7Q+nd2hxLA==} - cpu: [s390x] - os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.20.0': resolution: {integrity: sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.19.2': - resolution: {integrity: sha512-OgaToJ8jSxTpgGkZSkwKE+JQGihdcaqnyHEFOSAU45utQ+yLruE1dkonB2SDI8t375wOKgNn8pQvaWY9kPzxDQ==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-gnu@4.20.0': resolution: {integrity: sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.19.2': - resolution: {integrity: sha512-5V3mPpWkB066XZZBgSd1lwozBk7tmOkKtquyCJ6T4LN3mzKENXyBwWNQn8d0Ci81hvlBw5RoFgleVpL6aScLYg==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-musl@4.20.0': resolution: {integrity: sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.19.2': - resolution: {integrity: sha512-ayVstadfLeeXI9zUPiKRVT8qF55hm7hKa+0N1V6Vj+OTNFfKSoUxyZvzVvgtBxqSb5URQ8sK6fhwxr9/MLmxdA==} - cpu: [arm64] - os: [win32] - '@rollup/rollup-win32-arm64-msvc@4.20.0': resolution: {integrity: sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.19.2': - resolution: {integrity: sha512-Mda7iG4fOLHNsPqjWSjANvNZYoW034yxgrndof0DwCy0D3FvTjeNo+HGE6oGWgvcLZNLlcp0hLEFcRs+UGsMLg==} - cpu: [ia32] - os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.20.0': resolution: {integrity: sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.19.2': - resolution: {integrity: sha512-DPi0ubYhSow/00YqmG1jWm3qt1F8aXziHc/UNy8bo9cpCacqhuWu+iSq/fp2SyEQK7iYTZ60fBU9cat3MXTjIQ==} - cpu: [x64] - os: [win32] - '@rollup/rollup-win32-x64-msvc@4.20.0': resolution: {integrity: sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==} cpu: [x64] @@ -3793,8 +3717,8 @@ packages: '@tanstack/virtual-core@3.8.4': resolution: {integrity: sha512-iO5Ujgw3O1yIxWDe9FgUPNkGjyT657b1WNX52u+Wv1DyBFEpdCdGkuVaky0M3hHFqNWjAmHWTn4wgj9rTr7ZQg==} - '@tanstack/vue-virtual@3.8.4': - resolution: {integrity: sha512-4Pq8odunHQPsTg2iE2yzWdzYed/8LySy2knxqJYkaNOQRXbqJ7O/Owpoon8ZM9L+jLL1faM5TVHV0eJxm68q8A==} + '@tanstack/vue-virtual@3.8.5': + resolution: {integrity: sha512-JBHw3xFUslYgrbvNlCYtTWwFo8zjzRs7c2rs6B4JKFXWyP5yHuoeivgQgeZ34t6O6lJTNqc/K4ccmmcmKqpMPA==} peerDependencies: vue: ^3.4.35 @@ -3840,8 +3764,8 @@ packages: '@types/html-minifier-terser@7.0.2': resolution: {integrity: sha512-mm2HqV22l8lFQh4r2oSsOEVea+m0qqxEmwpc9kC1p/XzmjLWrReR9D/GRs8Pex2NX/imyEH9c5IU/7tMBQCHOA==} - '@types/http-proxy@1.17.14': - resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} + '@types/http-proxy@1.17.15': + resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==} '@types/jsdom@21.1.7': resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==} @@ -4097,17 +4021,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@vue/compiler-core@3.4.35': - resolution: {integrity: sha512-gKp0zGoLnMYtw4uS/SJRRO7rsVggLjvot3mcctlMXunYNsX+aRJDqqw/lV5/gHK91nvaAAlWFgdVl020AW1Prg==} + '@vue/compiler-core@3.4.36': + resolution: {integrity: sha512-qBkndgpwFKdupmOPoiS10i7oFdN7a+4UNDlezD0GlQ1kuA1pNrscg9g12HnB5E8hrWSuEftRsbJhL1HI2zpJhg==} - '@vue/compiler-dom@3.4.35': - resolution: {integrity: sha512-pWIZRL76/oE/VMhdv/ovZfmuooEni6JPG1BFe7oLk5DZRo/ImydXijoZl/4kh2406boRQ7lxTYzbZEEXEhj9NQ==} + '@vue/compiler-dom@3.4.36': + resolution: {integrity: sha512-eEIjy4GwwZTFon/Y+WO8tRRNGqylaRlA79T1RLhUpkOzJ7EtZkkb8MurNfkqY6x6Qiu0R7ESspEF7GkPR/4yYg==} - '@vue/compiler-sfc@3.4.35': - resolution: {integrity: sha512-xacnRS/h/FCsjsMfxBkzjoNxyxEyKyZfBch/P4vkLRvYJwe5ChXmZZrj8Dsed/752H2Q3JE8kYu9Uyha9J6PgA==} + '@vue/compiler-sfc@3.4.36': + resolution: {integrity: sha512-rhuHu7qztt/rNH90dXPTzhB7hLQT2OC4s4GrPVqmzVgPY4XBlfWmcWzn4bIPEWNImt0CjO7kfHAf/1UXOtx3vw==} - '@vue/compiler-ssr@3.4.35': - resolution: {integrity: sha512-7iynB+0KB1AAJKk/biENTV5cRGHRdbdaD7Mx3nWcm1W8bVD6QmnH3B4AHhQQ1qZHhqFwzEzMwiytXm3PX1e60A==} + '@vue/compiler-ssr@3.4.36': + resolution: {integrity: sha512-Wt1zyheF0zVvRJyhY74uxQbnkXV2Le/JPOrAxooR4rFYKC7cFr+cRqW6RU3cM/bsTy7sdZ83IDuy/gLPSfPGng==} '@vue/compiler-vue2@2.7.16': resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} @@ -4137,22 +4061,22 @@ packages: typescript: optional: true - '@vue/reactivity@3.4.35': - resolution: {integrity: sha512-Ggtz7ZZHakriKioveJtPlStYardwQH6VCs9V13/4qjHSQb/teE30LVJNrbBVs4+aoYGtTQKJbTe4CWGxVZrvEw==} + '@vue/reactivity@3.4.36': + resolution: {integrity: sha512-wN1aoCwSoqrt1yt8wO0gc13QaC+Vk1o6AoSt584YHNnz6TGDhh1NCMUYgAnvp4HEIkLdGsaC1bvu/P+wpoDEXw==} - '@vue/runtime-core@3.4.35': - resolution: {integrity: sha512-D+BAjFoWwT5wtITpSxwqfWZiBClhBbR+bm0VQlWYFOadUUXFo+5wbe9ErXhLvwguPiLZdEF13QAWi2vP3ZD5tA==} + '@vue/runtime-core@3.4.36': + resolution: {integrity: sha512-9+TR14LAVEerZWLOm/N/sG2DVYhrH2bKgFrbH/FVt/Q8Jdw4OtdcGMRC6Tx8VAo0DA1eqAqrZaX0fbOaOxxZ4A==} - '@vue/runtime-dom@3.4.35': - resolution: {integrity: sha512-yGOlbos+MVhlS5NWBF2HDNgblG8e2MY3+GigHEyR/dREAluvI5tuUUgie3/9XeqhPE4LF0i2wjlduh5thnfOqw==} + '@vue/runtime-dom@3.4.36': + resolution: {integrity: sha512-2Qe2fKkLxgZBVvHrG0QMNLL4bsx7Ae88pyXebY2WnQYABpOnGYvA+axMbcF9QwM4yxnsv+aELbC0eiNVns7mGw==} - '@vue/server-renderer@3.4.35': - resolution: {integrity: sha512-iZ0e/u9mRE4T8tNhlo0tbA+gzVkgv8r5BX6s1kRbOZqfpq14qoIvCZ5gIgraOmYkMYrSEZgkkojFPr+Nyq/Mnw==} + '@vue/server-renderer@3.4.36': + resolution: {integrity: sha512-2XW90Rq8+Y7S1EIsAuubZVLm0gCU8HYb5mRAruFdwfC3XSOU5/YKePz29csFzsch8hXaY5UHh7ZMddmi1XTJEA==} peerDependencies: vue: ^3.4.35 - '@vue/shared@3.4.35': - resolution: {integrity: sha512-hvuhBYYDe+b1G8KHxsQ0diDqDMA8D9laxWZhNAjE83VZb5UDaXl9Xnz7cGdDSyiHM90qqI/CyGMcpBpiDy6VVQ==} + '@vue/shared@3.4.36': + resolution: {integrity: sha512-fdPLStwl1sDfYuUftBaUVn2pIrVFDASYerZSrlBvVBfylObPA1gtcWJHy5Ox8jLEJ524zBibss488Q3SZtU1uA==} '@vue/test-utils@2.4.6': resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==} @@ -4495,8 +4419,8 @@ packages: boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - boxen@8.0.0: - resolution: {integrity: sha512-Mzw0gi6A0zH9bVVLSuoyaPFbae4gv3luQkkt3FmVgA1g/oeKpqxFII39OuV58AiwcN2FR+rwlZhJ2mfggjEWKw==} + boxen@8.0.1: + resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} engines: {node: '>=18'} brace-expansion@1.1.11: @@ -4581,8 +4505,8 @@ packages: caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - caniuse-lite@1.0.30001649: - resolution: {integrity: sha512-fJegqZZ0ZX8HOWr6rcafGr72+xcgJKI9oWfDW5DrD7ExUtgZC7a7R7ZYmZqplh7XDocFdGeIFn7roAxhOeYrPQ==} + caniuse-lite@1.0.30001650: + resolution: {integrity: sha512-fgEc7hP/LB7iicdXHUI9VsBsMZmUmlVJeQP2qqQW+3lkqVhbmjEU8zp+h5stWeilX+G7uXuIUIIlWlDw9jdt8g==} chai@5.1.1: resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} @@ -4660,9 +4584,9 @@ packages: resolution: {integrity: sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==} engines: {node: '>=8'} - cli-boxes@4.0.0: - resolution: {integrity: sha512-RU4tOq6V6/HggQwAumv7c8O2tuvg0gElkQ5FEdWULl4itMhvgqy1kWXq5oy3FbKOF65Ml8J4lxWbHDZcKaWLQA==} - engines: {node: '>=18.20'} + cli-boxes@3.0.0: + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} cli-cursor@4.0.0: resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} @@ -4839,14 +4763,11 @@ packages: resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} engines: {node: '>=12.13'} - core-js-compat@3.37.1: - resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} - core-js-compat@3.38.0: resolution: {integrity: sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==} - core-js@3.37.1: - resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} + core-js@3.38.0: + resolution: {integrity: sha512-XPpwqEodRljce9KswjZShh95qJ1URisBeKCjUdq27YdenkslVe7OO0ZJhlYXAChW7OhXaRLl8AAba7IBfoIHug==} core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} @@ -4881,8 +4802,8 @@ packages: resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} engines: {node: '>= 14'} - croner@8.1.0: - resolution: {integrity: sha512-sz990XOUPR8dG/r5BRKMBd15MYDDUu8oeSaxFD5DqvNgHSZw8Psd1s689/IGET7ezxRMiNlCIyGeY1Gvxp/MLg==} + croner@8.1.1: + resolution: {integrity: sha512-1VdUuRnQP4drdFkS8NKvDR1NBgevm8TOuflcaZEKsxw42CxonjW/2vkj1AKlinJb4ZLwBcuWF9GiPr7FQc6AQA==} engines: {node: '>=18.0'} cross-env@7.0.3: @@ -5322,8 +5243,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.4: - resolution: {integrity: sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==} + electron-to-chromium@1.5.5: + resolution: {integrity: sha512-QR7/A7ZkMS8tZuoftC/jfqNkZLQO779SSW3YuZHP4eXpj3EffGLFcB/Xu9AAZQzLccTiCV+EmUo3ha4mQ9wnlA==} element-plus@2.7.8: resolution: {integrity: sha512-h6dx2XihAbQaud0v+6O7Fy0b0G3YNplNVH7QnK3csTcvQd4y4raiyMRQpf9EKbRbTMdNrFsqAZrs9ok9DMcJHg==} @@ -5339,9 +5260,6 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - encode-utf8@1.0.3: - resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==} - encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} @@ -5364,6 +5282,10 @@ packages: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} + entities@5.0.0: + resolution: {integrity: sha512-BeJFvFRJddxobhvEdm5GqHzRV/X+ACeuw0/BuuxsCh1EUZcAIz8+kYmBp/LrQuloy6K1f3a0M7+IhmZ7QnkISA==} + engines: {node: '>=0.12'} + env-paths@2.2.1: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} engines: {node: '>=6'} @@ -5472,8 +5394,8 @@ packages: peerDependencies: eslint: '>=7.0.0' - eslint-config-turbo@2.0.11: - resolution: {integrity: sha512-hriQ+OQvKbtE1w7JH+w2X+Lh/9YPgnaNJmjrfhANWStFJTDa1NrJMCm2UaxHbDNKxFsr/mN9TTkVCRiTktIaqw==} + eslint-config-turbo@2.0.12: + resolution: {integrity: sha512-3PUzoyeJi2SjsTSjfWgTUIHK7kOqsapDEaOT7sCjFnZXvuhYLKxW37lysjq7+55abGGm0yQTXxNFLjrQKUORag==} peerDependencies: eslint: '>6.6.0' @@ -5564,8 +5486,8 @@ packages: peerDependencies: eslint: '>=8.44.0' - eslint-plugin-turbo@2.0.11: - resolution: {integrity: sha512-cM2KRlC6zh8Y5pOpiGTkBMp3/V4f4sEebSYcHjotfc4VQziPXuZtf/4Si4pd6l1FpmYfkgE+AReZsRfEfK17bw==} + eslint-plugin-turbo@2.0.12: + resolution: {integrity: sha512-vXWKer7F0RPTcVy1B+hFTEK4mlEOpouB8MCAFD3WW4C6t98wvuDCsIPjxIldpxg7CnwmRxALpNWgNVkU2LVVEQ==} peerDependencies: eslint: '>6.6.0' @@ -6549,6 +6471,10 @@ packages: resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==} engines: {node: '>=12.0.0'} + jsdoc-type-pratt-parser@4.1.0: + resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} + engines: {node: '>=12.0.0'} + jsdom@24.1.1: resolution: {integrity: sha512-5O1wWV99Jhq4DV7rCLIoZ/UIhyQeDR7wHVyZAHAshbrvZsLs+Xzz7gtwnlJTJDjleiTKh54F4dXrX70vJQTyJQ==} engines: {node: '>=18'} @@ -7446,8 +7372,8 @@ packages: peerDependencies: postcss: ^8.4 - postcss-calc@10.0.0: - resolution: {integrity: sha512-OmjhudoNTP0QleZCwl1i6NeBwN+5MZbY5ersLZz69mjJiDVv/p57RjRuKDkHeDWr4T+S97wQfsqRTNoDHB2e3g==} + postcss-calc@10.0.1: + resolution: {integrity: sha512-pp1Z3FxtxA+xHAoWXcOXgnBN1WPu4ZiJ5LWGjKyf9MMreagAsaTUtnqFK1y1sHhyJddAkYTPu6XSuLgb3oYCjw==} engines: {node: ^18.12 || ^20.9 || >=22.0} peerDependencies: postcss: ^8.4.38 @@ -7841,8 +7767,8 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.4.40: - resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==} + postcss@8.4.41: + resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==} engines: {node: ^10 || ^12 || >=14} preact@10.23.1: @@ -7983,8 +7909,8 @@ packages: resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==} engines: {node: '>=12.20'} - qrcode@1.5.3: - resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==} + qrcode@1.5.4: + resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==} engines: {node: '>=10.13.0'} hasBin: true @@ -7997,8 +7923,8 @@ packages: queue-tick@1.0.1: resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} - radix-vue@1.9.2: - resolution: {integrity: sha512-XXwEMmXJmzcy9SebywbQdrZg8UE1jueqPMpxKK6NoquRC0CP4dvlBcuzp4lDWNSsqOgmkXa6CNbwEzdCX96umg==} + radix-vue@1.9.3: + resolution: {integrity: sha512-9pewcgzghM+B+FO1h9mMsZa/csVH6hElpN1sqmG4/qoeieiDG0i4nhMjS7p2UOz11EEdVm7eLandHSPyx7hYhg==} peerDependencies: vue: ^3.4.35 @@ -8216,11 +8142,6 @@ packages: engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true - rollup@4.19.2: - resolution: {integrity: sha512-6/jgnN1svF9PjNYJ4ya3l+cqutg49vOZ4rVgsDKxdl+5gpGPnByFXWGyfH9YGx9i3nfBwSu1Iyu6vGwFFA0BdQ==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - rollup@4.20.0: resolution: {integrity: sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} @@ -8283,8 +8204,8 @@ packages: scule@1.3.0: resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} - search-insights@2.15.0: - resolution: {integrity: sha512-ch2sPCUDD4sbPQdknVl9ALSi9H7VyoeVbsxznYz6QV55jJ8CI3EtwpO1i84keN4+hF5IeHWIeGvc08530JkVXQ==} + search-insights@2.16.0: + resolution: {integrity: sha512-6ukNTOkN2OvJ8SJRmWionpn39OHOov1rx72kyGDYk60CaGrDfmT8wXYzgKLW9VFk+dVVXlUmWQVvrkRvx/x3Mg==} seemly@0.3.8: resolution: {integrity: sha512-MW8Qs6vbzo0pHmDpFSYPna+lwpZ6Zk1ancbajw/7E8TKtHdV+1DfZZD+kKJEhG/cAoB/i+LiT+5msZOqj0DwRA==} @@ -8815,11 +8736,11 @@ packages: through@2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - tinybench@2.8.0: - resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==} + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyglobby@0.2.0: - resolution: {integrity: sha512-+clyYQfAnNlt5a1x7CCQ6RLuTIztDfDAl6mAANvqRUlz6sVy5znCzJOhais8G6oyUyoeeaorLopO3HptVP8niA==} + tinyglobby@0.2.2: + resolution: {integrity: sha512-mZ2sDMaySvi1PkTp4lTo1In2zjU+cY8OvZsfwrDrx3YGRbXPX1/cbPwCR9zkm3O/Fz9Jo0F1HNgIQ1b8BepqyQ==} engines: {node: '>=12.0.0'} tinypool@1.0.0: @@ -8886,38 +8807,38 @@ packages: tslib@2.6.3: resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - turbo-darwin-64@2.0.11: - resolution: {integrity: sha512-YlHEEhcm+jI1BSZoLugGHUWDfRXaNaQIv7tGQBfadYjo9kixBnqoTOU6s1ubOrQMID+lizZZQs79GXwqM6vohg==} + turbo-darwin-64@2.0.12: + resolution: {integrity: sha512-NAgfgbXxX/JScWQmmQnGbPuFZq7LIswHfcMk5JwyBXQM/xmklNOxxac7MnGGIOf19Z2f6S3qHy17VIj0SeGfnA==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.0.11: - resolution: {integrity: sha512-K/YW+hWzRQ/wGmtffxllH4M1tgy8OlwgXODrIiAGzkSpZl9+pIsem/F86UULlhsIeavBYK/LS5+dzV3DPMjJ9w==} + turbo-darwin-arm64@2.0.12: + resolution: {integrity: sha512-cP02uer5KSJ+fXL+OfRRk5hnVjV0c60hxDgNcJxrZpfhun7HHoKDDR7w2xhQntiA45aC6ZZEXRqMKpj6GAmKbg==} cpu: [arm64] os: [darwin] - turbo-linux-64@2.0.11: - resolution: {integrity: sha512-mv8CwGP06UPweMh1Vlp6PI6OWnkuibxfIJ4Vlof7xqjohAaZU5FLqeOeHkjQflH/6YrCVuS9wrK0TFOu+meTtA==} + turbo-linux-64@2.0.12: + resolution: {integrity: sha512-+mQgGfg1eq5qF+wenK/FKJaNMNAo5DQLC4htQy+8osW+fx6U+8+6UlPQPaycAWDEqwOI7NwuqkeHfkEQLQUTyQ==} cpu: [x64] os: [linux] - turbo-linux-arm64@2.0.11: - resolution: {integrity: sha512-wLE5tl4oriTmHbuayc0ki0csaCplmVLj+uCWtecM/mfBuZgNS9ICNM9c4sB+Cfl5tlBBFeepqRNgvRvn8WeVZg==} + turbo-linux-arm64@2.0.12: + resolution: {integrity: sha512-KFyEZDXfPU1DK4zimxdCcqAcK7IIttX4mfsgB7NsSEOmH0dhHOih/YFYiyEDC1lTRx0C2RlzQ0Kjjdz48AN5Eg==} cpu: [arm64] os: [linux] - turbo-windows-64@2.0.11: - resolution: {integrity: sha512-tja3zvVCSWu3HizOoeQv0qDJ+GeWGWRFOOM6a8i3BYnXLgGKAaDZFcjwzgC50tWiAw4aowIVR4OouwIyRhLBaQ==} + turbo-windows-64@2.0.12: + resolution: {integrity: sha512-kJj4KCkZTkDTDCqsSw1m1dbO4WeoQq1mYUm/thXOH0OkeqYbSMt0EyoTcJOgKUDsrMnzZD2gPfYrlYHtV69lVA==} cpu: [x64] os: [win32] - turbo-windows-arm64@2.0.11: - resolution: {integrity: sha512-sYjXP6k94Bqh99R+y3M1Ks6LRIEZybMz+7enA8GKl6JJ2ZFaXxTnS6q+/2+ii1+rRwxohj5OBb4gxODcF8Jd4w==} + turbo-windows-arm64@2.0.12: + resolution: {integrity: sha512-TY3ROxguDilN2olCwcZMaePdW01Xhma0pZU7bNhsQEqca9RGAmsZBuzfGnTMcWPmv4tpnb/PlX1hrt1Hod/44Q==} cpu: [arm64] os: [win32] - turbo@2.0.11: - resolution: {integrity: sha512-imDlFFAvitbCm1JtDFJ6eG882qwxHUmVT2noPb3p2jq5o5DuXOchMbkVS9kUeC3/4WpY5N0GBZ3RvqNyjHZw1Q==} + turbo@2.0.12: + resolution: {integrity: sha512-8s2KwqjwQj7z8Z53SUZSKVkQOZ2/Sl4D2F440oaBY/k2lGju60dW6srEpnn8/RIDeICZmQn3pQHF79Jfnc5Skw==} hasBin: true type-check@0.4.0: @@ -9028,8 +8949,8 @@ packages: resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} engines: {node: '>=18'} - unimport@3.9.1: - resolution: {integrity: sha512-4gtacoNH6YPx2Aa5Xfyrf8pU2RdXjWUACb/eF7bH1AcZtqs+6ijbNB0M3BPENbtVjnCcg8tw9UJ1jQGbCzKA6g==} + unimport@3.10.0: + resolution: {integrity: sha512-/UvKRfWx3mNDWwWQhR62HsoM3wxHwYdTq8ellZzMOHnnw4Dp8tovgthyW7DjTrbjDL+i4idOp06voz2VKlvrLw==} unique-filename@1.1.1: resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} @@ -9323,8 +9244,8 @@ packages: peerDependencies: vue: ^3.4.35 - vue-router@4.4.2: - resolution: {integrity: sha512-1qNybkn2L7QsLzaXs8nvlQmRKp8XF8DCxZys/Jr1JpQcHsKUxTKzTxCVA1G7NfBfwRIBgCJPoujOG5lHCCNUxw==} + vue-router@4.4.3: + resolution: {integrity: sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==} peerDependencies: vue: ^3.4.35 @@ -9340,8 +9261,8 @@ packages: peerDependencies: vue: ^3.4.35 - vue@3.4.35: - resolution: {integrity: sha512-+fl/GLmI4GPileHftVlCdB7fUL4aziPcqTudpTGXCT8s+iZWuOCeNEB5haX6Uz2IpRrbEXOgIFbe+XciCuGbNQ==} + vue@3.4.36: + resolution: {integrity: sha512-mIFvbLgjODfx3Iy1SrxOsiPpDb8Bo3EU+87ioimOZzZTOp15IEdAels70IjBOLO3ZFlLW5AhdwY4dWbXVQKYow==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -9632,19 +9553,19 @@ packages: snapshots: - '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)': + '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0)': dependencies: - '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0) + '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0) '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) transitivePeerDependencies: - '@algolia/client-search' - algoliasearch - search-insights - '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)': + '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0)': dependencies: '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) - search-insights: 2.15.0 + search-insights: 2.16.0 transitivePeerDependencies: - '@algolia/client-search' - algoliasearch @@ -9747,13 +9668,17 @@ snapshots: dependencies: '@ctrl/tinycolor': 4.1.0 + '@ant-design/fast-color@2.0.6': + dependencies: + '@babel/runtime': 7.25.0 + '@ant-design/icons-svg@4.4.2': {} - '@ant-design/icons-vue@7.0.1(vue@3.4.35(typescript@5.5.4))': + '@ant-design/icons-vue@7.0.1(vue@3.4.36(typescript@5.5.4))': dependencies: '@ant-design/colors': 6.0.0 '@ant-design/icons-svg': 4.4.2 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@antfu/utils@0.7.10': {} @@ -10829,12 +10754,12 @@ snapshots: dependencies: mime: 3.0.0 - '@commitlint/cli@19.3.0(@types/node@22.1.0)(typescript@5.5.4)': + '@commitlint/cli@19.4.0(@types/node@22.1.0)(typescript@5.5.4)': dependencies: '@commitlint/format': 19.3.0 '@commitlint/lint': 19.2.2 - '@commitlint/load': 19.2.0(@types/node@22.1.0)(typescript@5.5.4) - '@commitlint/read': 19.2.1 + '@commitlint/load': 19.4.0(@types/node@22.1.0)(typescript@5.5.4) + '@commitlint/read': 19.4.0 '@commitlint/types': 19.0.3 execa: 8.0.1 yargs: 17.7.2 @@ -10880,7 +10805,7 @@ snapshots: '@commitlint/rules': 19.0.3 '@commitlint/types': 19.0.3 - '@commitlint/load@19.2.0(@types/node@22.1.0)(typescript@5.5.4)': + '@commitlint/load@19.4.0(@types/node@22.1.0)(typescript@5.5.4)': dependencies: '@commitlint/config-validator': 19.0.3 '@commitlint/execute-rule': 19.0.0 @@ -10904,7 +10829,7 @@ snapshots: conventional-changelog-angular: 7.0.0 conventional-commits-parser: 5.0.0 - '@commitlint/read@19.2.1': + '@commitlint/read@19.4.0': dependencies: '@commitlint/top-level': 19.0.0 '@commitlint/types': 19.0.3 @@ -10945,7 +10870,7 @@ snapshots: '@cspell/dict-ada': 4.0.2 '@cspell/dict-aws': 4.0.3 '@cspell/dict-bash': 4.1.3 - '@cspell/dict-companies': 3.1.3 + '@cspell/dict-companies': 3.1.4 '@cspell/dict-cpp': 5.1.12 '@cspell/dict-cryptocurrencies': 5.0.0 '@cspell/dict-csharp': 4.0.2 @@ -10955,7 +10880,7 @@ snapshots: '@cspell/dict-docker': 1.1.7 '@cspell/dict-dotnet': 5.0.2 '@cspell/dict-elixir': 4.0.3 - '@cspell/dict-en-common-misspellings': 2.0.3 + '@cspell/dict-en-common-misspellings': 2.0.4 '@cspell/dict-en-gb': 1.1.33 '@cspell/dict-en_us': 4.3.23 '@cspell/dict-filetypes': 3.0.4 @@ -10982,13 +10907,13 @@ snapshots: '@cspell/dict-php': 4.0.8 '@cspell/dict-powershell': 5.0.5 '@cspell/dict-public-licenses': 2.0.7 - '@cspell/dict-python': 4.2.3 + '@cspell/dict-python': 4.2.4 '@cspell/dict-r': 2.0.1 '@cspell/dict-ruby': 5.0.2 '@cspell/dict-rust': 4.0.5 '@cspell/dict-scala': 5.0.3 - '@cspell/dict-software-terms': 4.0.3 - '@cspell/dict-sql': 2.1.3 + '@cspell/dict-software-terms': 4.0.5 + '@cspell/dict-sql': 2.1.5 '@cspell/dict-svelte': 1.0.2 '@cspell/dict-swift': 2.0.1 '@cspell/dict-terraform': 1.0.0 @@ -11015,7 +10940,7 @@ snapshots: '@cspell/dict-bash@4.1.3': {} - '@cspell/dict-companies@3.1.3': {} + '@cspell/dict-companies@3.1.4': {} '@cspell/dict-cpp@5.1.12': {} @@ -11037,7 +10962,7 @@ snapshots: '@cspell/dict-elixir@4.0.3': {} - '@cspell/dict-en-common-misspellings@2.0.3': {} + '@cspell/dict-en-common-misspellings@2.0.4': {} '@cspell/dict-en-gb@1.1.33': {} @@ -11091,7 +11016,7 @@ snapshots: '@cspell/dict-public-licenses@2.0.7': {} - '@cspell/dict-python@4.2.3': + '@cspell/dict-python@4.2.4': dependencies: '@cspell/dict-data-science': 2.0.1 @@ -11103,9 +11028,9 @@ snapshots: '@cspell/dict-scala@5.0.3': {} - '@cspell/dict-software-terms@4.0.3': {} + '@cspell/dict-software-terms@4.0.5': {} - '@cspell/dict-sql@2.1.3': {} + '@cspell/dict-sql@2.1.5': {} '@cspell/dict-svelte@1.0.2': {} @@ -11129,9 +11054,9 @@ snapshots: dependencies: css-render: 0.15.14 - '@css-render/vue3-ssr@0.15.14(vue@3.4.35(typescript@5.5.4))': + '@css-render/vue3-ssr@0.15.14(vue@3.4.36(typescript@5.5.4))': dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@csstools/cascade-layer-name-parser@2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0)': dependencies: @@ -11174,201 +11099,201 @@ snapshots: '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-cascade-layers@5.0.0(postcss@8.4.40)': + '@csstools/postcss-cascade-layers@5.0.0(postcss@8.4.41)': dependencies: '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.1) - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - '@csstools/postcss-color-function@4.0.0(postcss@8.4.40)': + '@csstools/postcss-color-function@4.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-color-mix-function@3.0.0(postcss@8.4.40)': + '@csstools/postcss-color-mix-function@3.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-content-alt-text@2.0.0(postcss@8.4.40)': + '@csstools/postcss-content-alt-text@2.0.0(postcss@8.4.41)': dependencies: '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-exponential-functions@2.0.0(postcss@8.4.40)': + '@csstools/postcss-exponential-functions@2.0.0(postcss@8.4.41)': dependencies: '@csstools/css-calc': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-font-format-keywords@4.0.0(postcss@8.4.40)': + '@csstools/postcss-font-format-keywords@4.0.0(postcss@8.4.41)': dependencies: - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-gamut-mapping@2.0.0(postcss@8.4.40)': + '@csstools/postcss-gamut-mapping@2.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-gradients-interpolation-method@5.0.0(postcss@8.4.40)': + '@csstools/postcss-gradients-interpolation-method@5.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-hwb-function@4.0.0(postcss@8.4.40)': + '@csstools/postcss-hwb-function@4.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-ic-unit@4.0.0(postcss@8.4.40)': + '@csstools/postcss-ic-unit@4.0.0(postcss@8.4.41)': dependencies: - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-initial@2.0.0(postcss@8.4.40)': + '@csstools/postcss-initial@2.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-is-pseudo-class@5.0.0(postcss@8.4.40)': + '@csstools/postcss-is-pseudo-class@5.0.0(postcss@8.4.41)': dependencies: '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.1) - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - '@csstools/postcss-light-dark-function@2.0.0(postcss@8.4.40)': + '@csstools/postcss-light-dark-function@2.0.0(postcss@8.4.41)': dependencies: '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.4.40)': + '@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-logical-overflow@2.0.0(postcss@8.4.40)': + '@csstools/postcss-logical-overflow@2.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.4.40)': + '@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-logical-resize@3.0.0(postcss@8.4.40)': + '@csstools/postcss-logical-resize@3.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-logical-viewport-units@3.0.0(postcss@8.4.40)': + '@csstools/postcss-logical-viewport-units@3.0.0(postcss@8.4.41)': dependencies: '@csstools/css-tokenizer': 3.0.0 - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-media-minmax@2.0.0(postcss@8.4.40)': + '@csstools/postcss-media-minmax@2.0.0(postcss@8.4.41)': dependencies: '@csstools/css-calc': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 '@csstools/media-query-list-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.0(postcss@8.4.40)': + '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.0(postcss@8.4.41)': dependencies: '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 '@csstools/media-query-list-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-nested-calc@4.0.0(postcss@8.4.40)': + '@csstools/postcss-nested-calc@4.0.0(postcss@8.4.41)': dependencies: - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-normalize-display-values@4.0.0(postcss@8.4.40)': + '@csstools/postcss-normalize-display-values@4.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-oklab-function@4.0.0(postcss@8.4.40)': + '@csstools/postcss-oklab-function@4.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-progressive-custom-properties@4.0.0(postcss@8.4.40)': + '@csstools/postcss-progressive-custom-properties@4.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-relative-color-syntax@3.0.0(postcss@8.4.40)': + '@csstools/postcss-relative-color-syntax@3.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-scope-pseudo-class@4.0.0(postcss@8.4.40)': + '@csstools/postcss-scope-pseudo-class@4.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - '@csstools/postcss-stepped-value-functions@4.0.0(postcss@8.4.40)': + '@csstools/postcss-stepped-value-functions@4.0.0(postcss@8.4.41)': dependencies: '@csstools/css-calc': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-text-decoration-shorthand@4.0.0(postcss@8.4.40)': + '@csstools/postcss-text-decoration-shorthand@4.0.0(postcss@8.4.41)': dependencies: '@csstools/color-helpers': 4.2.1 - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-trigonometric-functions@4.0.0(postcss@8.4.40)': + '@csstools/postcss-trigonometric-functions@4.0.0(postcss@8.4.41)': dependencies: '@csstools/css-calc': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-unset-value@4.0.0(postcss@8.4.40)': + '@csstools/postcss-unset-value@4.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 '@csstools/selector-resolve-nested@2.0.0(postcss-selector-parser@6.1.1)': dependencies: @@ -11382,17 +11307,17 @@ snapshots: dependencies: postcss-selector-parser: 6.1.1 - '@csstools/utilities@2.0.0(postcss@8.4.40)': + '@csstools/utilities@2.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 '@ctrl/tinycolor@4.1.0': {} '@docsearch/css@3.6.1': {} - '@docsearch/js@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)': + '@docsearch/js@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.16.0)': dependencies: - '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0) + '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.16.0) preact: 10.23.1 transitivePeerDependencies: - '@algolia/client-search' @@ -11401,22 +11326,22 @@ snapshots: - react-dom - search-insights - '@docsearch/react@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)': + '@docsearch/react@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.16.0)': dependencies: - '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0) + '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0) '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) '@docsearch/css': 3.6.1 algoliasearch: 4.24.0 optionalDependencies: - search-insights: 2.15.0 + search-insights: 2.16.0 transitivePeerDependencies: - '@algolia/client-search' '@dual-bundle/import-meta-resolve@4.1.0': {} - '@element-plus/icons-vue@2.3.1(vue@3.4.35(typescript@5.5.4))': + '@element-plus/icons-vue@2.3.1(vue@3.4.36(typescript@5.5.4))': dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@emotion/hash@0.8.0': {} @@ -11753,22 +11678,22 @@ snapshots: '@fastify/busboy@2.1.1': {} - '@floating-ui/core@1.6.5': + '@floating-ui/core@1.6.7': dependencies: - '@floating-ui/utils': 0.2.5 + '@floating-ui/utils': 0.2.7 - '@floating-ui/dom@1.6.8': + '@floating-ui/dom@1.6.10': dependencies: - '@floating-ui/core': 1.6.5 - '@floating-ui/utils': 0.2.5 + '@floating-ui/core': 1.6.7 + '@floating-ui/utils': 0.2.7 - '@floating-ui/utils@0.2.5': {} + '@floating-ui/utils@0.2.7': {} - '@floating-ui/vue@1.1.2(vue@3.4.35(typescript@5.5.4))': + '@floating-ui/vue@1.1.4(vue@3.4.36(typescript@5.5.4))': dependencies: - '@floating-ui/dom': 1.6.8 - '@floating-ui/utils': 0.2.5 - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + '@floating-ui/dom': 1.6.10 + '@floating-ui/utils': 0.2.7 + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -11790,10 +11715,10 @@ snapshots: '@iconify/types@2.0.0': {} - '@iconify/vue@4.1.2(vue@3.4.35(typescript@5.5.4))': + '@iconify/vue@4.1.2(vue@3.4.36(typescript@5.5.4))': dependencies: '@iconify/types': 2.0.0 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@internationalized/date@3.5.5': dependencies: @@ -11803,7 +11728,7 @@ snapshots: dependencies: '@swc/helpers': 0.5.12 - '@intlify/bundle-utils@8.0.0(vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4)))': + '@intlify/bundle-utils@8.0.0(vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4)))': dependencies: '@intlify/message-compiler': 9.13.1 '@intlify/shared': 9.13.1 @@ -11815,7 +11740,7 @@ snapshots: source-map-js: 1.2.0 yaml-eslint-parser: 1.2.3 optionalDependencies: - vue-i18n: 9.13.1(vue@3.4.35(typescript@5.5.4)) + vue-i18n: 9.13.1(vue@3.4.36(typescript@5.5.4)) '@intlify/core-base@9.13.1': dependencies: @@ -11829,12 +11754,12 @@ snapshots: '@intlify/shared@9.13.1': {} - '@intlify/unplugin-vue-i18n@4.0.0(rollup@4.20.0)(vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4)))': + '@intlify/unplugin-vue-i18n@4.0.0(rollup@4.20.0)(vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4)))': dependencies: - '@intlify/bundle-utils': 8.0.0(vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4))) + '@intlify/bundle-utils': 8.0.0(vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4))) '@intlify/shared': 9.13.1 '@rollup/pluginutils': 5.1.0(rollup@4.20.0) - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.4.36 debug: 4.3.6 fast-glob: 3.3.2 js-yaml: 4.1.0 @@ -11844,7 +11769,7 @@ snapshots: source-map-js: 1.2.0 unplugin: 1.12.0 optionalDependencies: - vue-i18n: 9.13.1(vue@3.4.35(typescript@5.5.4)) + vue-i18n: 9.13.1(vue@3.4.36(typescript@5.5.4)) transitivePeerDependencies: - rollup - supports-color @@ -11882,7 +11807,7 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@jspm/generator@2.1.2': + '@jspm/generator@2.1.3': dependencies: '@babel/core': 7.25.2 '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2) @@ -12092,7 +12017,7 @@ snapshots: dependencies: graceful-fs: 4.2.10 - '@pnpm/npm-conf@2.2.2': + '@pnpm/npm-conf@2.3.0': dependencies: '@pnpm/config.env-replace': 1.1.0 '@pnpm/network.ca-file': 1.0.2 @@ -12100,9 +12025,9 @@ snapshots: '@polka/url@1.0.0-next.25': {} - '@radix-icons/vue@1.0.0(vue@3.4.35(typescript@5.5.4))': + '@radix-icons/vue@1.0.0(vue@3.4.36(typescript@5.5.4))': dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@rollup/plugin-alias@5.1.0(rollup@3.29.4)': dependencies: @@ -12110,11 +12035,11 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-alias@5.1.0(rollup@4.19.2)': + '@rollup/plugin-alias@5.1.0(rollup@4.20.0)': dependencies: slash: 4.0.0 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/plugin-babel@5.3.1(@babel/core@7.25.2)(rollup@2.79.1)': dependencies: @@ -12136,24 +12061,24 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-commonjs@25.0.8(rollup@4.19.2)': + '@rollup/plugin-commonjs@25.0.8(rollup@4.20.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.30.11 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 - '@rollup/plugin-inject@5.0.5(rollup@4.19.2)': + '@rollup/plugin-inject@5.0.5(rollup@4.20.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) estree-walker: 2.0.2 magic-string: 0.30.11 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/plugin-json@6.1.0(rollup@3.29.4)': dependencies: @@ -12161,11 +12086,11 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-json@6.1.0(rollup@4.19.2)': + '@rollup/plugin-json@6.1.0(rollup@4.20.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/plugin-node-resolve@15.2.3(rollup@2.79.1)': dependencies: @@ -12189,16 +12114,16 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-node-resolve@15.2.3(rollup@4.19.2)': + '@rollup/plugin-node-resolve@15.2.3(rollup@4.20.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/plugin-replace@2.4.2(rollup@2.79.1)': dependencies: @@ -12213,12 +12138,12 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-replace@5.0.7(rollup@4.19.2)': + '@rollup/plugin-replace@5.0.7(rollup@4.20.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) magic-string: 0.30.11 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/plugin-terser@0.4.4(rollup@2.79.1)': dependencies: @@ -12228,13 +12153,13 @@ snapshots: optionalDependencies: rollup: 2.79.1 - '@rollup/plugin-terser@0.4.4(rollup@4.19.2)': + '@rollup/plugin-terser@0.4.4(rollup@4.20.0)': dependencies: serialize-javascript: 6.0.2 smob: 1.5.0 terser: 5.31.3 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/pluginutils@3.1.0(rollup@2.79.1)': dependencies: @@ -12264,14 +12189,6 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/pluginutils@5.1.0(rollup@4.19.2)': - dependencies: - '@types/estree': 1.0.5 - estree-walker: 2.0.2 - picomatch: 2.3.1 - optionalDependencies: - rollup: 4.19.2 - '@rollup/pluginutils@5.1.0(rollup@4.20.0)': dependencies: '@types/estree': 1.0.5 @@ -12280,99 +12197,51 @@ snapshots: optionalDependencies: rollup: 4.20.0 - '@rollup/rollup-android-arm-eabi@4.19.2': - optional: true - '@rollup/rollup-android-arm-eabi@4.20.0': optional: true - '@rollup/rollup-android-arm64@4.19.2': - optional: true - '@rollup/rollup-android-arm64@4.20.0': optional: true - '@rollup/rollup-darwin-arm64@4.19.2': - optional: true - '@rollup/rollup-darwin-arm64@4.20.0': optional: true - '@rollup/rollup-darwin-x64@4.19.2': - optional: true - '@rollup/rollup-darwin-x64@4.20.0': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.19.2': - optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.20.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.19.2': - optional: true - '@rollup/rollup-linux-arm-musleabihf@4.20.0': optional: true - '@rollup/rollup-linux-arm64-gnu@4.19.2': - optional: true - '@rollup/rollup-linux-arm64-gnu@4.20.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.19.2': - optional: true - '@rollup/rollup-linux-arm64-musl@4.20.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.19.2': - optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.20.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.19.2': - optional: true - '@rollup/rollup-linux-riscv64-gnu@4.20.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.19.2': - optional: true - '@rollup/rollup-linux-s390x-gnu@4.20.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.19.2': - optional: true - '@rollup/rollup-linux-x64-gnu@4.20.0': optional: true - '@rollup/rollup-linux-x64-musl@4.19.2': - optional: true - '@rollup/rollup-linux-x64-musl@4.20.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.19.2': - optional: true - '@rollup/rollup-win32-arm64-msvc@4.20.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.19.2': - optional: true - '@rollup/rollup-win32-ia32-msvc@4.20.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.19.2': - optional: true - '@rollup/rollup-win32-x64-msvc@4.20.0': optional: true @@ -12422,7 +12291,7 @@ snapshots: '@simonwep/pickr@1.8.2': dependencies: - core-js: 3.37.1 + core-js: 3.38.0 nanopop: 2.4.2 '@sindresorhus/merge-streams@2.3.0': {} @@ -12453,10 +12322,10 @@ snapshots: '@sxzz/popperjs-es@2.11.7': {} - '@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.4.40)': + '@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.4.41)': dependencies: - postcss: 8.4.40 - postcss-nested: 5.0.6(postcss@8.4.40) + postcss: 8.4.41 + postcss-nested: 5.0.6(postcss@8.4.41) '@tailwindcss/typography@0.5.13(tailwindcss@3.4.7)': dependencies: @@ -12468,10 +12337,10 @@ snapshots: '@tanstack/virtual-core@3.8.4': {} - '@tanstack/vue-virtual@3.8.4(vue@3.4.35(typescript@5.5.4))': + '@tanstack/vue-virtual@3.8.5(vue@3.4.36(typescript@5.5.4))': dependencies: '@tanstack/virtual-core': 3.8.4 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@tootallnate/once@1.1.2': {} @@ -12514,7 +12383,7 @@ snapshots: '@types/html-minifier-terser@7.0.2': {} - '@types/http-proxy@1.17.14': + '@types/http-proxy@1.17.15': dependencies: '@types/node': 22.1.0 @@ -12573,7 +12442,7 @@ snapshots: '@types/postcss-import@14.0.3': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 '@types/ps-tree@1.1.6': {} @@ -12740,20 +12609,20 @@ snapshots: dependencies: vite-plugin-pwa: 0.20.1(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0) - '@vitejs/plugin-vue-jsx@4.0.0(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': + '@vitejs/plugin-vue-jsx@4.0.0(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4))': dependencies: '@babel/core': 7.25.2 '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2) '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2) vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': + '@vitejs/plugin-vue@5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4))': dependencies: vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@vitest/expect@2.0.5': dependencies: @@ -12839,37 +12708,37 @@ snapshots: '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.24.8 '@babel/parser': 7.25.3 - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.4.36 - '@vue/compiler-core@3.4.35': + '@vue/compiler-core@3.4.36': dependencies: '@babel/parser': 7.25.3 - '@vue/shared': 3.4.35 - entities: 4.5.0 + '@vue/shared': 3.4.36 + entities: 5.0.0 estree-walker: 2.0.2 source-map-js: 1.2.0 - '@vue/compiler-dom@3.4.35': + '@vue/compiler-dom@3.4.36': dependencies: - '@vue/compiler-core': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/compiler-core': 3.4.36 + '@vue/shared': 3.4.36 - '@vue/compiler-sfc@3.4.35': + '@vue/compiler-sfc@3.4.36': dependencies: '@babel/parser': 7.25.3 - '@vue/compiler-core': 3.4.35 - '@vue/compiler-dom': 3.4.35 - '@vue/compiler-ssr': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/compiler-core': 3.4.36 + '@vue/compiler-dom': 3.4.36 + '@vue/compiler-ssr': 3.4.36 + '@vue/shared': 3.4.36 estree-walker: 2.0.2 magic-string: 0.30.11 - postcss: 8.4.40 + postcss: 8.4.41 source-map-js: 1.2.0 - '@vue/compiler-ssr@3.4.35': + '@vue/compiler-ssr@3.4.36': dependencies: - '@vue/compiler-dom': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/compiler-dom': 3.4.36 + '@vue/shared': 3.4.36 '@vue/compiler-vue2@2.7.16': dependencies: @@ -12882,7 +12751,7 @@ snapshots: dependencies: '@vue/devtools-kit': 7.3.7 - '@vue/devtools-core@7.3.7(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': + '@vue/devtools-core@7.3.7(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4))': dependencies: '@vue/devtools-kit': 7.3.7 '@vue/devtools-shared': 7.3.7 @@ -12890,7 +12759,7 @@ snapshots: nanoid: 3.3.7 pathe: 1.1.2 vite-hot-client: 0.2.3(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3)) - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) transitivePeerDependencies: - vite @@ -12911,9 +12780,9 @@ snapshots: '@vue/language-core@2.0.29(typescript@5.5.4)': dependencies: '@volar/language-core': 2.4.0-alpha.18 - '@vue/compiler-dom': 3.4.35 + '@vue/compiler-dom': 3.4.36 '@vue/compiler-vue2': 2.7.16 - '@vue/shared': 3.4.35 + '@vue/shared': 3.4.36 computeds: 0.0.1 minimatch: 9.0.5 muggle-string: 0.4.1 @@ -12921,66 +12790,66 @@ snapshots: optionalDependencies: typescript: 5.5.4 - '@vue/reactivity@3.4.35': + '@vue/reactivity@3.4.36': dependencies: - '@vue/shared': 3.4.35 + '@vue/shared': 3.4.36 - '@vue/runtime-core@3.4.35': + '@vue/runtime-core@3.4.36': dependencies: - '@vue/reactivity': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/reactivity': 3.4.36 + '@vue/shared': 3.4.36 - '@vue/runtime-dom@3.4.35': + '@vue/runtime-dom@3.4.36': dependencies: - '@vue/reactivity': 3.4.35 - '@vue/runtime-core': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/reactivity': 3.4.36 + '@vue/runtime-core': 3.4.36 + '@vue/shared': 3.4.36 csstype: 3.1.3 - '@vue/server-renderer@3.4.35(vue@3.4.35(typescript@5.5.4))': + '@vue/server-renderer@3.4.36(vue@3.4.36(typescript@5.5.4))': dependencies: - '@vue/compiler-ssr': 3.4.35 - '@vue/shared': 3.4.35 - vue: 3.4.35(typescript@5.5.4) + '@vue/compiler-ssr': 3.4.36 + '@vue/shared': 3.4.36 + vue: 3.4.36(typescript@5.5.4) - '@vue/shared@3.4.35': {} + '@vue/shared@3.4.36': {} '@vue/test-utils@2.4.6': dependencies: js-beautify: 1.15.1 vue-component-type-helpers: 2.0.29 - '@vueuse/core@10.11.0(vue@3.4.35(typescript@5.5.4))': + '@vueuse/core@10.11.0(vue@3.4.36(typescript@5.5.4))': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 10.11.0 - '@vueuse/shared': 10.11.0(vue@3.4.35(typescript@5.5.4)) - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + '@vueuse/shared': 10.11.0(vue@3.4.36(typescript@5.5.4)) + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/core@9.13.0(vue@3.4.35(typescript@5.5.4))': + '@vueuse/core@9.13.0(vue@3.4.36(typescript@5.5.4))': dependencies: '@types/web-bluetooth': 0.0.16 '@vueuse/metadata': 9.13.0 - '@vueuse/shared': 9.13.0(vue@3.4.35(typescript@5.5.4)) - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + '@vueuse/shared': 9.13.0(vue@3.4.36(typescript@5.5.4)) + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/integrations@10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.4.35(typescript@5.5.4))': + '@vueuse/integrations@10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.36(typescript@5.5.4))': dependencies: - '@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.5.4)) - '@vueuse/shared': 10.11.0(vue@3.4.35(typescript@5.5.4)) - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + '@vueuse/core': 10.11.0(vue@3.4.36(typescript@5.5.4)) + '@vueuse/shared': 10.11.0(vue@3.4.36(typescript@5.5.4)) + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) optionalDependencies: async-validator: 4.2.5 axios: 1.7.3 focus-trap: 7.5.4 nprogress: 0.2.0 - qrcode: 1.5.3 + qrcode: 1.5.4 sortablejs: 1.15.2 transitivePeerDependencies: - '@vue/composition-api' @@ -12990,16 +12859,16 @@ snapshots: '@vueuse/metadata@9.13.0': {} - '@vueuse/shared@10.11.0(vue@3.4.35(typescript@5.5.4))': + '@vueuse/shared@10.11.0(vue@3.4.36(typescript@5.5.4))': dependencies: - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/shared@9.13.0(vue@3.4.35(typescript@5.5.4))': + '@vueuse/shared@9.13.0(vue@3.4.36(typescript@5.5.4))': dependencies: - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -13126,10 +12995,10 @@ snapshots: ansi-styles@6.2.1: {} - ant-design-vue@4.2.3(vue@3.4.35(typescript@5.5.4)): + ant-design-vue@4.2.3(vue@3.4.36(typescript@5.5.4)): dependencies: '@ant-design/colors': 6.0.0 - '@ant-design/icons-vue': 7.0.1(vue@3.4.35(typescript@5.5.4)) + '@ant-design/icons-vue': 7.0.1(vue@3.4.36(typescript@5.5.4)) '@babel/runtime': 7.25.0 '@ctrl/tinycolor': 4.1.0 '@emotion/hash': 0.9.2 @@ -13148,8 +13017,8 @@ snapshots: shallow-equal: 1.2.1 stylis: 4.3.2 throttle-debounce: 5.0.2 - vue: 3.4.35(typescript@5.5.4) - vue-types: 3.0.2(vue@3.4.35(typescript@5.5.4)) + vue: 3.4.36(typescript@5.5.4) + vue-types: 3.0.2(vue@3.4.36(typescript@5.5.4)) warning: 4.0.3 any-promise@1.3.0: {} @@ -13247,14 +13116,14 @@ snapshots: stubborn-fs: 1.2.5 when-exit: 2.1.3 - autoprefixer@10.4.20(postcss@8.4.40): + autoprefixer@10.4.20(postcss@8.4.41): dependencies: browserslist: 4.23.3 - caniuse-lite: 1.0.30001649 + caniuse-lite: 1.0.30001650 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.1 - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 available-typed-arrays@1.0.7: @@ -13326,12 +13195,12 @@ snapshots: boolbase@1.0.0: {} - boxen@8.0.0: + boxen@8.0.1: dependencies: ansi-align: 3.0.1 camelcase: 8.0.0 chalk: 5.3.0 - cli-boxes: 4.0.0 + cli-boxes: 3.0.0 string-width: 7.2.0 type-fest: 4.23.0 widest-line: 5.0.0 @@ -13352,8 +13221,8 @@ snapshots: browserslist@4.23.3: dependencies: - caniuse-lite: 1.0.30001649 - electron-to-chromium: 1.5.4 + caniuse-lite: 1.0.30001650 + electron-to-chromium: 1.5.5 node-releases: 2.0.18 update-browserslist-db: 1.1.0(browserslist@4.23.3) @@ -13440,11 +13309,11 @@ snapshots: caniuse-api@3.0.0: dependencies: browserslist: 4.23.3 - caniuse-lite: 1.0.30001649 + caniuse-lite: 1.0.30001650 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - caniuse-lite@1.0.30001649: {} + caniuse-lite@1.0.30001650: {} chai@5.1.1: dependencies: @@ -13515,7 +13384,7 @@ snapshots: circular-dependency-scanner@2.2.2: dependencies: '@ast-grep/napi': 0.21.4 - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.4.36 commander: 12.1.0 get-tsconfig: 4.7.6 graph-cycles: 3.0.0 @@ -13549,7 +13418,7 @@ snapshots: parent-module: 2.0.0 resolve-from: 5.0.0 - cli-boxes@4.0.0: {} + cli-boxes@3.0.0: {} cli-cursor@4.0.0: dependencies: @@ -13712,15 +13581,11 @@ snapshots: dependencies: is-what: 4.1.16 - core-js-compat@3.37.1: - dependencies: - browserslist: 4.23.3 - core-js-compat@3.38.0: dependencies: browserslist: 4.23.3 - core-js@3.37.1: {} + core-js@3.38.0: {} core-util-is@1.0.3: {} @@ -13755,7 +13620,7 @@ snapshots: crc-32: 1.2.2 readable-stream: 4.5.2 - croner@8.1.0: {} + croner@8.1.1: {} cross-env@7.0.3: dependencies: @@ -13866,27 +13731,27 @@ snapshots: semver: 7.6.3 strip-ansi: 7.1.0 - css-blank-pseudo@7.0.0(postcss@8.4.40): + css-blank-pseudo@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - css-declaration-sorter@7.2.0(postcss@8.4.40): + css-declaration-sorter@7.2.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 css-functions-list@3.2.2: {} - css-has-pseudo@7.0.0(postcss@8.4.40): + css-has-pseudo@7.0.0(postcss@8.4.41): dependencies: '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.1) - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 postcss-value-parser: 4.2.0 - css-prefers-color-scheme@10.0.0(postcss@8.4.40): + css-prefers-color-scheme@10.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 css-render@0.15.14: dependencies: @@ -13925,49 +13790,49 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-default@7.0.4(postcss@8.4.40): + cssnano-preset-default@7.0.4(postcss@8.4.41): dependencies: browserslist: 4.23.3 - css-declaration-sorter: 7.2.0(postcss@8.4.40) - cssnano-utils: 5.0.0(postcss@8.4.40) - postcss: 8.4.40 - postcss-calc: 10.0.0(postcss@8.4.40) - postcss-colormin: 7.0.1(postcss@8.4.40) - postcss-convert-values: 7.0.2(postcss@8.4.40) - postcss-discard-comments: 7.0.1(postcss@8.4.40) - postcss-discard-duplicates: 7.0.0(postcss@8.4.40) - postcss-discard-empty: 7.0.0(postcss@8.4.40) - postcss-discard-overridden: 7.0.0(postcss@8.4.40) - postcss-merge-longhand: 7.0.2(postcss@8.4.40) - postcss-merge-rules: 7.0.2(postcss@8.4.40) - postcss-minify-font-values: 7.0.0(postcss@8.4.40) - postcss-minify-gradients: 7.0.0(postcss@8.4.40) - postcss-minify-params: 7.0.1(postcss@8.4.40) - postcss-minify-selectors: 7.0.2(postcss@8.4.40) - postcss-normalize-charset: 7.0.0(postcss@8.4.40) - postcss-normalize-display-values: 7.0.0(postcss@8.4.40) - postcss-normalize-positions: 7.0.0(postcss@8.4.40) - postcss-normalize-repeat-style: 7.0.0(postcss@8.4.40) - postcss-normalize-string: 7.0.0(postcss@8.4.40) - postcss-normalize-timing-functions: 7.0.0(postcss@8.4.40) - postcss-normalize-unicode: 7.0.1(postcss@8.4.40) - postcss-normalize-url: 7.0.0(postcss@8.4.40) - postcss-normalize-whitespace: 7.0.0(postcss@8.4.40) - postcss-ordered-values: 7.0.1(postcss@8.4.40) - postcss-reduce-initial: 7.0.1(postcss@8.4.40) - postcss-reduce-transforms: 7.0.0(postcss@8.4.40) - postcss-svgo: 7.0.1(postcss@8.4.40) - postcss-unique-selectors: 7.0.1(postcss@8.4.40) + css-declaration-sorter: 7.2.0(postcss@8.4.41) + cssnano-utils: 5.0.0(postcss@8.4.41) + postcss: 8.4.41 + postcss-calc: 10.0.1(postcss@8.4.41) + postcss-colormin: 7.0.1(postcss@8.4.41) + postcss-convert-values: 7.0.2(postcss@8.4.41) + postcss-discard-comments: 7.0.1(postcss@8.4.41) + postcss-discard-duplicates: 7.0.0(postcss@8.4.41) + postcss-discard-empty: 7.0.0(postcss@8.4.41) + postcss-discard-overridden: 7.0.0(postcss@8.4.41) + postcss-merge-longhand: 7.0.2(postcss@8.4.41) + postcss-merge-rules: 7.0.2(postcss@8.4.41) + postcss-minify-font-values: 7.0.0(postcss@8.4.41) + postcss-minify-gradients: 7.0.0(postcss@8.4.41) + postcss-minify-params: 7.0.1(postcss@8.4.41) + postcss-minify-selectors: 7.0.2(postcss@8.4.41) + postcss-normalize-charset: 7.0.0(postcss@8.4.41) + postcss-normalize-display-values: 7.0.0(postcss@8.4.41) + postcss-normalize-positions: 7.0.0(postcss@8.4.41) + postcss-normalize-repeat-style: 7.0.0(postcss@8.4.41) + postcss-normalize-string: 7.0.0(postcss@8.4.41) + postcss-normalize-timing-functions: 7.0.0(postcss@8.4.41) + postcss-normalize-unicode: 7.0.1(postcss@8.4.41) + postcss-normalize-url: 7.0.0(postcss@8.4.41) + postcss-normalize-whitespace: 7.0.0(postcss@8.4.41) + postcss-ordered-values: 7.0.1(postcss@8.4.41) + postcss-reduce-initial: 7.0.1(postcss@8.4.41) + postcss-reduce-transforms: 7.0.0(postcss@8.4.41) + postcss-svgo: 7.0.1(postcss@8.4.41) + postcss-unique-selectors: 7.0.1(postcss@8.4.41) - cssnano-utils@5.0.0(postcss@8.4.40): + cssnano-utils@5.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - cssnano@7.0.4(postcss@8.4.40): + cssnano@7.0.4(postcss@8.4.41): dependencies: - cssnano-preset-default: 7.0.4(postcss@8.4.40) + cssnano-preset-default: 7.0.4(postcss@8.4.41) lilconfig: 3.1.2 - postcss: 8.4.40 + postcss: 8.4.41 csso@5.0.5: dependencies: @@ -14087,7 +13952,7 @@ snapshots: dependencies: '@babel/parser': 7.25.3 '@babel/traverse': 7.25.3 - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.4.36 callsite: 1.0.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 @@ -14226,17 +14091,17 @@ snapshots: dependencies: jake: 10.9.2 - electron-to-chromium@1.5.4: {} + electron-to-chromium@1.5.5: {} - element-plus@2.7.8(vue@3.4.35(typescript@5.5.4)): + element-plus@2.7.8(vue@3.4.36(typescript@5.5.4)): dependencies: '@ctrl/tinycolor': 4.1.0 - '@element-plus/icons-vue': 2.3.1(vue@3.4.35(typescript@5.5.4)) - '@floating-ui/dom': 1.6.8 + '@element-plus/icons-vue': 2.3.1(vue@3.4.36(typescript@5.5.4)) + '@floating-ui/dom': 1.6.10 '@popperjs/core': '@sxzz/popperjs-es@2.11.7' '@types/lodash': 4.17.7 '@types/lodash-es': 4.17.12 - '@vueuse/core': 9.13.0(vue@3.4.35(typescript@5.5.4)) + '@vueuse/core': 9.13.0(vue@3.4.36(typescript@5.5.4)) async-validator: 4.2.5 dayjs: 1.11.12 escape-html: 1.0.3 @@ -14245,7 +14110,7 @@ snapshots: lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21) memoize-one: 6.0.0 normalize-wheel-es: 1.2.0 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) transitivePeerDependencies: - '@vue/composition-api' @@ -14255,8 +14120,6 @@ snapshots: emoji-regex@9.2.2: {} - encode-utf8@1.0.3: {} - encodeurl@1.0.2: {} encoding@0.1.13: @@ -14278,6 +14141,8 @@ snapshots: entities@4.5.0: {} + entities@5.0.0: {} + env-paths@2.2.1: {} env-paths@3.0.0: {} @@ -14499,10 +14364,10 @@ snapshots: dependencies: eslint: 9.8.0 - eslint-config-turbo@2.0.11(eslint@9.8.0): + eslint-config-turbo@2.0.12(eslint@9.8.0): dependencies: eslint: 9.8.0 - eslint-plugin-turbo: 2.0.11(eslint@9.8.0) + eslint-plugin-turbo: 2.0.12(eslint@9.8.0) eslint-import-resolver-node@0.3.9: dependencies: @@ -14618,12 +14483,12 @@ snapshots: '@eslint-community/regexpp': 4.11.0 comment-parser: 1.4.1 eslint: 9.8.0 - jsdoc-type-pratt-parser: 4.0.0 + jsdoc-type-pratt-parser: 4.1.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-turbo@2.0.11(eslint@9.8.0): + eslint-plugin-turbo@2.0.12(eslint@9.8.0): dependencies: dotenv: 16.0.3 eslint: 9.8.0 @@ -14634,7 +14499,7 @@ snapshots: '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) ci-info: 4.0.0 clean-regexp: 1.0.0 - core-js-compat: 3.37.1 + core-js-compat: 3.38.0 eslint: 9.8.0 esquery: 1.6.0 globals: 15.9.0 @@ -15661,6 +15526,8 @@ snapshots: jsdoc-type-pratt-parser@4.0.0: {} + jsdoc-type-pratt-parser@4.1.0: {} + jsdom@24.1.1: dependencies: cssstyle: 4.0.1 @@ -15924,9 +15791,9 @@ snapshots: dependencies: yallist: 4.0.0 - lucide-vue-next@0.424.0(vue@3.4.35(typescript@5.5.4)): + lucide-vue-next@0.424.0(vue@3.4.36(typescript@5.5.4)): dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) magic-string@0.25.9: dependencies: @@ -16083,9 +15950,9 @@ snapshots: mkdist@1.5.4(sass@1.77.8)(typescript@5.5.4)(vue-tsc@2.0.29(typescript@5.5.4)): dependencies: - autoprefixer: 10.4.20(postcss@8.4.40) + autoprefixer: 10.4.20(postcss@8.4.41) citty: 0.1.6 - cssnano: 7.0.4(postcss@8.4.40) + cssnano: 7.0.4(postcss@8.4.41) defu: 6.1.4 esbuild: 0.23.0 fast-glob: 3.3.2 @@ -16093,8 +15960,8 @@ snapshots: mlly: 1.7.1 pathe: 1.1.2 pkg-types: 1.1.3 - postcss: 8.4.40 - postcss-nested: 6.2.0(postcss@8.4.40) + postcss: 8.4.41 + postcss-nested: 6.2.0(postcss@8.4.41) semver: 7.6.3 optionalDependencies: sass: 1.77.8 @@ -16134,10 +16001,10 @@ snapshots: object-assign: 4.1.1 thenify-all: 1.6.0 - naive-ui@2.39.0(vue@3.4.35(typescript@5.5.4)): + naive-ui@2.39.0(vue@3.4.36(typescript@5.5.4)): dependencies: '@css-render/plugin-bem': 0.15.14(css-render@0.15.14) - '@css-render/vue3-ssr': 0.15.14(vue@3.4.35(typescript@5.5.4)) + '@css-render/vue3-ssr': 0.15.14(vue@3.4.36(typescript@5.5.4)) '@types/katex': 0.16.7 '@types/lodash': 4.17.7 '@types/lodash-es': 4.17.12 @@ -16152,10 +16019,10 @@ snapshots: lodash-es: 4.17.21 seemly: 0.3.8 treemate: 0.3.11 - vdirs: 0.1.8(vue@3.4.35(typescript@5.5.4)) - vooks: 0.2.12(vue@3.4.35(typescript@5.5.4)) - vue: 3.4.35(typescript@5.5.4) - vueuc: 0.4.58(vue@3.4.35(typescript@5.5.4)) + vdirs: 0.1.8(vue@3.4.36(typescript@5.5.4)) + vooks: 0.2.12(vue@3.4.36(typescript@5.5.4)) + vue: 3.4.36(typescript@5.5.4) + vueuc: 0.4.58(vue@3.4.36(typescript@5.5.4)) nanoid@3.3.7: {} @@ -16171,15 +16038,15 @@ snapshots: dependencies: '@cloudflare/kv-asset-handler': 0.3.4 '@netlify/functions': 2.8.1 - '@rollup/plugin-alias': 5.1.0(rollup@4.19.2) - '@rollup/plugin-commonjs': 25.0.8(rollup@4.19.2) - '@rollup/plugin-inject': 5.0.5(rollup@4.19.2) - '@rollup/plugin-json': 6.1.0(rollup@4.19.2) - '@rollup/plugin-node-resolve': 15.2.3(rollup@4.19.2) - '@rollup/plugin-replace': 5.0.7(rollup@4.19.2) - '@rollup/plugin-terser': 0.4.4(rollup@4.19.2) - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) - '@types/http-proxy': 1.17.14 + '@rollup/plugin-alias': 5.1.0(rollup@4.20.0) + '@rollup/plugin-commonjs': 25.0.8(rollup@4.20.0) + '@rollup/plugin-inject': 5.0.5(rollup@4.20.0) + '@rollup/plugin-json': 6.1.0(rollup@4.20.0) + '@rollup/plugin-node-resolve': 15.2.3(rollup@4.20.0) + '@rollup/plugin-replace': 5.0.7(rollup@4.20.0) + '@rollup/plugin-terser': 0.4.4(rollup@4.20.0) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) + '@types/http-proxy': 1.17.15 '@vercel/nft': 0.26.5(encoding@0.1.13) archiver: 7.0.1 c12: 1.11.1 @@ -16188,7 +16055,7 @@ snapshots: citty: 0.1.6 consola: 3.2.3 cookie-es: 1.2.2 - croner: 8.1.0 + croner: 8.1.1 crossws: 0.2.4 db0: 0.1.4 defu: 6.1.4 @@ -16221,8 +16088,8 @@ snapshots: pkg-types: 1.1.3 pretty-bytes: 6.1.1 radix3: 1.1.2 - rollup: 4.19.2 - rollup-plugin-visualizer: 5.12.0(rollup@4.19.2) + rollup: 4.20.0 + rollup-plugin-visualizer: 5.12.0(rollup@4.20.0) scule: 1.3.0 semver: 7.6.3 serve-placeholder: 2.0.2 @@ -16232,7 +16099,7 @@ snapshots: uncrypto: 0.1.3 unctx: 2.3.1 unenv: 1.10.0 - unimport: 3.9.1(rollup@4.19.2) + unimport: 3.10.0(rollup@4.20.0) unstorage: 1.10.2(ioredis@5.4.1) unwasm: 0.3.9 transitivePeerDependencies: @@ -16586,15 +16453,15 @@ snapshots: pify@4.0.1: {} - pinia-plugin-persistedstate@3.2.1(pinia@2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4))): + pinia-plugin-persistedstate@3.2.1(pinia@2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4))): dependencies: - pinia: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + pinia: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) - pinia@2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)): + pinia@2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)): dependencies: '@vue/devtools-api': 6.6.3 - vue: 3.4.35(typescript@5.5.4) - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + vue: 3.4.36(typescript@5.5.4) + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) optionalDependencies: typescript: 5.5.4 @@ -16620,415 +16487,415 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss-antd-fixes@0.2.0(postcss@8.4.40): + postcss-antd-fixes@0.2.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-attribute-case-insensitive@7.0.0(postcss@8.4.40): + postcss-attribute-case-insensitive@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-calc@10.0.0(postcss@8.4.40): + postcss-calc@10.0.1(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 postcss-value-parser: 4.2.0 - postcss-clamp@4.1.0(postcss@8.4.40): + postcss-clamp@4.1.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-color-functional-notation@7.0.0(postcss@8.4.40): + postcss-color-functional-notation@7.0.0(postcss@8.4.41): dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - postcss-color-hex-alpha@10.0.0(postcss@8.4.40): + postcss-color-hex-alpha@10.0.0(postcss@8.4.41): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-color-rebeccapurple@10.0.0(postcss@8.4.40): + postcss-color-rebeccapurple@10.0.0(postcss@8.4.41): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-colormin@7.0.1(postcss@8.4.40): + postcss-colormin@7.0.1(postcss@8.4.41): dependencies: browserslist: 4.23.3 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-convert-values@7.0.2(postcss@8.4.40): + postcss-convert-values@7.0.2(postcss@8.4.41): dependencies: browserslist: 4.23.3 - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-custom-media@11.0.0(postcss@8.4.40): + postcss-custom-media@11.0.0(postcss@8.4.41): dependencies: '@csstools/cascade-layer-name-parser': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 '@csstools/media-query-list-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) - postcss: 8.4.40 + postcss: 8.4.41 - postcss-custom-properties@14.0.0(postcss@8.4.40): + postcss-custom-properties@14.0.0(postcss@8.4.41): dependencies: '@csstools/cascade-layer-name-parser': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-custom-selectors@8.0.0(postcss@8.4.40): + postcss-custom-selectors@8.0.0(postcss@8.4.41): dependencies: '@csstools/cascade-layer-name-parser': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-dir-pseudo-class@9.0.0(postcss@8.4.40): + postcss-dir-pseudo-class@9.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-discard-comments@7.0.1(postcss@8.4.40): + postcss-discard-comments@7.0.1(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-discard-duplicates@7.0.0(postcss@8.4.40): + postcss-discard-duplicates@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-discard-empty@7.0.0(postcss@8.4.40): + postcss-discard-empty@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-discard-overridden@7.0.0(postcss@8.4.40): + postcss-discard-overridden@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-double-position-gradients@6.0.0(postcss@8.4.40): + postcss-double-position-gradients@6.0.0(postcss@8.4.41): dependencies: - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-focus-visible@10.0.0(postcss@8.4.40): + postcss-focus-visible@10.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-focus-within@9.0.0(postcss@8.4.40): + postcss-focus-within@9.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-font-variant@5.0.0(postcss@8.4.40): + postcss-font-variant@5.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-gap-properties@6.0.0(postcss@8.4.40): + postcss-gap-properties@6.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-html@1.7.0: dependencies: htmlparser2: 8.0.2 js-tokens: 9.0.0 - postcss: 8.4.40 - postcss-safe-parser: 6.0.0(postcss@8.4.40) + postcss: 8.4.41 + postcss-safe-parser: 6.0.0(postcss@8.4.41) - postcss-image-set-function@7.0.0(postcss@8.4.40): + postcss-image-set-function@7.0.0(postcss@8.4.41): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-import@15.1.0(postcss@8.4.40): + postcss-import@15.1.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - postcss-import@16.1.0(postcss@8.4.40): + postcss-import@16.1.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - postcss-js@4.0.1(postcss@8.4.40): + postcss-js@4.0.1(postcss@8.4.41): dependencies: camelcase-css: 2.0.1 - postcss: 8.4.40 + postcss: 8.4.41 - postcss-lab-function@7.0.0(postcss@8.4.40): + postcss-lab-function@7.0.0(postcss@8.4.41): dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - postcss-load-config@4.0.2(postcss@8.4.40): + postcss-load-config@4.0.2(postcss@8.4.41): dependencies: lilconfig: 3.1.2 yaml: 2.5.0 optionalDependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-logical@8.0.0(postcss@8.4.40): + postcss-logical@8.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 postcss-media-query-parser@0.2.3: {} - postcss-merge-longhand@7.0.2(postcss@8.4.40): + postcss-merge-longhand@7.0.2(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - stylehacks: 7.0.2(postcss@8.4.40) + stylehacks: 7.0.2(postcss@8.4.41) - postcss-merge-rules@7.0.2(postcss@8.4.40): + postcss-merge-rules@7.0.2(postcss@8.4.41): dependencies: browserslist: 4.23.3 caniuse-api: 3.0.0 - cssnano-utils: 5.0.0(postcss@8.4.40) - postcss: 8.4.40 + cssnano-utils: 5.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-minify-font-values@7.0.0(postcss@8.4.40): + postcss-minify-font-values@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-minify-gradients@7.0.0(postcss@8.4.40): + postcss-minify-gradients@7.0.0(postcss@8.4.41): dependencies: colord: 2.9.3 - cssnano-utils: 5.0.0(postcss@8.4.40) - postcss: 8.4.40 + cssnano-utils: 5.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-minify-params@7.0.1(postcss@8.4.40): + postcss-minify-params@7.0.1(postcss@8.4.41): dependencies: browserslist: 4.23.3 - cssnano-utils: 5.0.0(postcss@8.4.40) - postcss: 8.4.40 + cssnano-utils: 5.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-minify-selectors@7.0.2(postcss@8.4.40): + postcss-minify-selectors@7.0.2(postcss@8.4.41): dependencies: cssesc: 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-nested@5.0.6(postcss@8.4.40): + postcss-nested@5.0.6(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-nested@6.2.0(postcss@8.4.40): + postcss-nested@6.2.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-nesting@13.0.0(postcss@8.4.40): + postcss-nesting@13.0.0(postcss@8.4.41): dependencies: '@csstools/selector-resolve-nested': 2.0.0(postcss-selector-parser@6.1.1) '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.1) - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-normalize-charset@7.0.0(postcss@8.4.40): + postcss-normalize-charset@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-normalize-display-values@7.0.0(postcss@8.4.40): + postcss-normalize-display-values@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-positions@7.0.0(postcss@8.4.40): + postcss-normalize-positions@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@7.0.0(postcss@8.4.40): + postcss-normalize-repeat-style@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-string@7.0.0(postcss@8.4.40): + postcss-normalize-string@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@7.0.0(postcss@8.4.40): + postcss-normalize-timing-functions@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@7.0.1(postcss@8.4.40): + postcss-normalize-unicode@7.0.1(postcss@8.4.41): dependencies: browserslist: 4.23.3 - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-url@7.0.0(postcss@8.4.40): + postcss-normalize-url@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@7.0.0(postcss@8.4.40): + postcss-normalize-whitespace@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-opacity-percentage@2.0.0(postcss@8.4.40): + postcss-opacity-percentage@2.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-ordered-values@7.0.1(postcss@8.4.40): + postcss-ordered-values@7.0.1(postcss@8.4.41): dependencies: - cssnano-utils: 5.0.0(postcss@8.4.40) - postcss: 8.4.40 + cssnano-utils: 5.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-overflow-shorthand@6.0.0(postcss@8.4.40): + postcss-overflow-shorthand@6.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-page-break@3.0.4(postcss@8.4.40): + postcss-page-break@3.0.4(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-place@10.0.0(postcss@8.4.40): + postcss-place@10.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-preset-env@10.0.0(postcss@8.4.40): + postcss-preset-env@10.0.0(postcss@8.4.41): dependencies: - '@csstools/postcss-cascade-layers': 5.0.0(postcss@8.4.40) - '@csstools/postcss-color-function': 4.0.0(postcss@8.4.40) - '@csstools/postcss-color-mix-function': 3.0.0(postcss@8.4.40) - '@csstools/postcss-content-alt-text': 2.0.0(postcss@8.4.40) - '@csstools/postcss-exponential-functions': 2.0.0(postcss@8.4.40) - '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.4.40) - '@csstools/postcss-gamut-mapping': 2.0.0(postcss@8.4.40) - '@csstools/postcss-gradients-interpolation-method': 5.0.0(postcss@8.4.40) - '@csstools/postcss-hwb-function': 4.0.0(postcss@8.4.40) - '@csstools/postcss-ic-unit': 4.0.0(postcss@8.4.40) - '@csstools/postcss-initial': 2.0.0(postcss@8.4.40) - '@csstools/postcss-is-pseudo-class': 5.0.0(postcss@8.4.40) - '@csstools/postcss-light-dark-function': 2.0.0(postcss@8.4.40) - '@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.4.40) - '@csstools/postcss-logical-overflow': 2.0.0(postcss@8.4.40) - '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.4.40) - '@csstools/postcss-logical-resize': 3.0.0(postcss@8.4.40) - '@csstools/postcss-logical-viewport-units': 3.0.0(postcss@8.4.40) - '@csstools/postcss-media-minmax': 2.0.0(postcss@8.4.40) - '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.0(postcss@8.4.40) - '@csstools/postcss-nested-calc': 4.0.0(postcss@8.4.40) - '@csstools/postcss-normalize-display-values': 4.0.0(postcss@8.4.40) - '@csstools/postcss-oklab-function': 4.0.0(postcss@8.4.40) - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/postcss-relative-color-syntax': 3.0.0(postcss@8.4.40) - '@csstools/postcss-scope-pseudo-class': 4.0.0(postcss@8.4.40) - '@csstools/postcss-stepped-value-functions': 4.0.0(postcss@8.4.40) - '@csstools/postcss-text-decoration-shorthand': 4.0.0(postcss@8.4.40) - '@csstools/postcss-trigonometric-functions': 4.0.0(postcss@8.4.40) - '@csstools/postcss-unset-value': 4.0.0(postcss@8.4.40) - autoprefixer: 10.4.20(postcss@8.4.40) + '@csstools/postcss-cascade-layers': 5.0.0(postcss@8.4.41) + '@csstools/postcss-color-function': 4.0.0(postcss@8.4.41) + '@csstools/postcss-color-mix-function': 3.0.0(postcss@8.4.41) + '@csstools/postcss-content-alt-text': 2.0.0(postcss@8.4.41) + '@csstools/postcss-exponential-functions': 2.0.0(postcss@8.4.41) + '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.4.41) + '@csstools/postcss-gamut-mapping': 2.0.0(postcss@8.4.41) + '@csstools/postcss-gradients-interpolation-method': 5.0.0(postcss@8.4.41) + '@csstools/postcss-hwb-function': 4.0.0(postcss@8.4.41) + '@csstools/postcss-ic-unit': 4.0.0(postcss@8.4.41) + '@csstools/postcss-initial': 2.0.0(postcss@8.4.41) + '@csstools/postcss-is-pseudo-class': 5.0.0(postcss@8.4.41) + '@csstools/postcss-light-dark-function': 2.0.0(postcss@8.4.41) + '@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.4.41) + '@csstools/postcss-logical-overflow': 2.0.0(postcss@8.4.41) + '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.4.41) + '@csstools/postcss-logical-resize': 3.0.0(postcss@8.4.41) + '@csstools/postcss-logical-viewport-units': 3.0.0(postcss@8.4.41) + '@csstools/postcss-media-minmax': 2.0.0(postcss@8.4.41) + '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.0(postcss@8.4.41) + '@csstools/postcss-nested-calc': 4.0.0(postcss@8.4.41) + '@csstools/postcss-normalize-display-values': 4.0.0(postcss@8.4.41) + '@csstools/postcss-oklab-function': 4.0.0(postcss@8.4.41) + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/postcss-relative-color-syntax': 3.0.0(postcss@8.4.41) + '@csstools/postcss-scope-pseudo-class': 4.0.0(postcss@8.4.41) + '@csstools/postcss-stepped-value-functions': 4.0.0(postcss@8.4.41) + '@csstools/postcss-text-decoration-shorthand': 4.0.0(postcss@8.4.41) + '@csstools/postcss-trigonometric-functions': 4.0.0(postcss@8.4.41) + '@csstools/postcss-unset-value': 4.0.0(postcss@8.4.41) + autoprefixer: 10.4.20(postcss@8.4.41) browserslist: 4.23.3 - css-blank-pseudo: 7.0.0(postcss@8.4.40) - css-has-pseudo: 7.0.0(postcss@8.4.40) - css-prefers-color-scheme: 10.0.0(postcss@8.4.40) + css-blank-pseudo: 7.0.0(postcss@8.4.41) + css-has-pseudo: 7.0.0(postcss@8.4.41) + css-prefers-color-scheme: 10.0.0(postcss@8.4.41) cssdb: 8.1.0 - postcss: 8.4.40 - postcss-attribute-case-insensitive: 7.0.0(postcss@8.4.40) - postcss-clamp: 4.1.0(postcss@8.4.40) - postcss-color-functional-notation: 7.0.0(postcss@8.4.40) - postcss-color-hex-alpha: 10.0.0(postcss@8.4.40) - postcss-color-rebeccapurple: 10.0.0(postcss@8.4.40) - postcss-custom-media: 11.0.0(postcss@8.4.40) - postcss-custom-properties: 14.0.0(postcss@8.4.40) - postcss-custom-selectors: 8.0.0(postcss@8.4.40) - postcss-dir-pseudo-class: 9.0.0(postcss@8.4.40) - postcss-double-position-gradients: 6.0.0(postcss@8.4.40) - postcss-focus-visible: 10.0.0(postcss@8.4.40) - postcss-focus-within: 9.0.0(postcss@8.4.40) - postcss-font-variant: 5.0.0(postcss@8.4.40) - postcss-gap-properties: 6.0.0(postcss@8.4.40) - postcss-image-set-function: 7.0.0(postcss@8.4.40) - postcss-lab-function: 7.0.0(postcss@8.4.40) - postcss-logical: 8.0.0(postcss@8.4.40) - postcss-nesting: 13.0.0(postcss@8.4.40) - postcss-opacity-percentage: 2.0.0(postcss@8.4.40) - postcss-overflow-shorthand: 6.0.0(postcss@8.4.40) - postcss-page-break: 3.0.4(postcss@8.4.40) - postcss-place: 10.0.0(postcss@8.4.40) - postcss-pseudo-class-any-link: 10.0.0(postcss@8.4.40) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.40) - postcss-selector-not: 8.0.0(postcss@8.4.40) + postcss: 8.4.41 + postcss-attribute-case-insensitive: 7.0.0(postcss@8.4.41) + postcss-clamp: 4.1.0(postcss@8.4.41) + postcss-color-functional-notation: 7.0.0(postcss@8.4.41) + postcss-color-hex-alpha: 10.0.0(postcss@8.4.41) + postcss-color-rebeccapurple: 10.0.0(postcss@8.4.41) + postcss-custom-media: 11.0.0(postcss@8.4.41) + postcss-custom-properties: 14.0.0(postcss@8.4.41) + postcss-custom-selectors: 8.0.0(postcss@8.4.41) + postcss-dir-pseudo-class: 9.0.0(postcss@8.4.41) + postcss-double-position-gradients: 6.0.0(postcss@8.4.41) + postcss-focus-visible: 10.0.0(postcss@8.4.41) + postcss-focus-within: 9.0.0(postcss@8.4.41) + postcss-font-variant: 5.0.0(postcss@8.4.41) + postcss-gap-properties: 6.0.0(postcss@8.4.41) + postcss-image-set-function: 7.0.0(postcss@8.4.41) + postcss-lab-function: 7.0.0(postcss@8.4.41) + postcss-logical: 8.0.0(postcss@8.4.41) + postcss-nesting: 13.0.0(postcss@8.4.41) + postcss-opacity-percentage: 2.0.0(postcss@8.4.41) + postcss-overflow-shorthand: 6.0.0(postcss@8.4.41) + postcss-page-break: 3.0.4(postcss@8.4.41) + postcss-place: 10.0.0(postcss@8.4.41) + postcss-pseudo-class-any-link: 10.0.0(postcss@8.4.41) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.41) + postcss-selector-not: 8.0.0(postcss@8.4.41) - postcss-pseudo-class-any-link@10.0.0(postcss@8.4.40): + postcss-pseudo-class-any-link@10.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-reduce-initial@7.0.1(postcss@8.4.40): + postcss-reduce-initial@7.0.1(postcss@8.4.41): dependencies: browserslist: 4.23.3 caniuse-api: 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 - postcss-reduce-transforms@7.0.0(postcss@8.4.40): + postcss-reduce-transforms@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-replace-overflow-wrap@4.0.0(postcss@8.4.40): + postcss-replace-overflow-wrap@4.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-resolve-nested-selector@0.1.4: {} - postcss-safe-parser@6.0.0(postcss@8.4.40): + postcss-safe-parser@6.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-safe-parser@7.0.0(postcss@8.4.40): + postcss-safe-parser@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-scss@4.0.9(postcss@8.4.40): + postcss-scss@4.0.9(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-selector-not@8.0.0(postcss@8.4.40): + postcss-selector-not@8.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 postcss-selector-parser@6.0.10: @@ -17041,24 +16908,24 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-sorting@8.0.2(postcss@8.4.40): + postcss-sorting@8.0.2(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-svgo@7.0.1(postcss@8.4.40): + postcss-svgo@7.0.1(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 svgo: 3.3.2 - postcss-unique-selectors@7.0.1(postcss@8.4.40): + postcss-unique-selectors@7.0.1(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 postcss-value-parser@4.2.0: {} - postcss@8.4.40: + postcss@8.4.41: dependencies: nanoid: 3.3.7 picocolors: 1.0.1 @@ -17130,10 +16997,9 @@ snapshots: dependencies: escape-goat: 4.0.0 - qrcode@1.5.3: + qrcode@1.5.4: dependencies: dijkstrajs: 1.0.3 - encode-utf8: 1.0.3 pngjs: 5.0.0 yargs: 15.4.1 @@ -17143,20 +17009,20 @@ snapshots: queue-tick@1.0.1: {} - radix-vue@1.9.2(vue@3.4.35(typescript@5.5.4)): + radix-vue@1.9.3(vue@3.4.36(typescript@5.5.4)): dependencies: - '@floating-ui/dom': 1.6.8 - '@floating-ui/vue': 1.1.2(vue@3.4.35(typescript@5.5.4)) + '@floating-ui/dom': 1.6.10 + '@floating-ui/vue': 1.1.4(vue@3.4.36(typescript@5.5.4)) '@internationalized/date': 3.5.5 '@internationalized/number': 3.5.3 - '@tanstack/vue-virtual': 3.8.4(vue@3.4.35(typescript@5.5.4)) - '@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.5.4)) - '@vueuse/shared': 10.11.0(vue@3.4.35(typescript@5.5.4)) + '@tanstack/vue-virtual': 3.8.5(vue@3.4.36(typescript@5.5.4)) + '@vueuse/core': 10.11.0(vue@3.4.36(typescript@5.5.4)) + '@vueuse/shared': 10.11.0(vue@3.4.36(typescript@5.5.4)) aria-hidden: 1.2.4 defu: 6.1.4 fast-deep-equal: 3.1.3 nanoid: 5.0.7 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) transitivePeerDependencies: - '@vue/composition-api' @@ -17283,7 +17149,7 @@ snapshots: registry-auth-token@5.0.2: dependencies: - '@pnpm/npm-conf': 2.2.2 + '@pnpm/npm-conf': 2.3.0 registry-url@6.0.1: dependencies: @@ -17365,15 +17231,6 @@ snapshots: optionalDependencies: '@babel/code-frame': 7.24.7 - rollup-plugin-visualizer@5.12.0(rollup@4.19.2): - dependencies: - open: 8.4.2 - picomatch: 2.3.1 - source-map: 0.7.4 - yargs: 17.7.2 - optionalDependencies: - rollup: 4.19.2 - rollup-plugin-visualizer@5.12.0(rollup@4.20.0): dependencies: open: 8.4.2 @@ -17391,28 +17248,6 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - rollup@4.19.2: - dependencies: - '@types/estree': 1.0.5 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.19.2 - '@rollup/rollup-android-arm64': 4.19.2 - '@rollup/rollup-darwin-arm64': 4.19.2 - '@rollup/rollup-darwin-x64': 4.19.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.19.2 - '@rollup/rollup-linux-arm-musleabihf': 4.19.2 - '@rollup/rollup-linux-arm64-gnu': 4.19.2 - '@rollup/rollup-linux-arm64-musl': 4.19.2 - '@rollup/rollup-linux-powerpc64le-gnu': 4.19.2 - '@rollup/rollup-linux-riscv64-gnu': 4.19.2 - '@rollup/rollup-linux-s390x-gnu': 4.19.2 - '@rollup/rollup-linux-x64-gnu': 4.19.2 - '@rollup/rollup-linux-x64-musl': 4.19.2 - '@rollup/rollup-win32-arm64-msvc': 4.19.2 - '@rollup/rollup-win32-ia32-msvc': 4.19.2 - '@rollup/rollup-win32-x64-msvc': 4.19.2 - fsevents: 2.3.3 - rollup@4.20.0: dependencies: '@types/estree': 1.0.5 @@ -17492,7 +17327,7 @@ snapshots: scule@1.3.0: {} - search-insights@2.15.0: {} + search-insights@2.16.0: {} seemly@0.3.8: {} @@ -17836,10 +17671,10 @@ snapshots: style-search@0.1.0: {} - stylehacks@7.0.2(postcss@8.4.40): + stylehacks@7.0.2(postcss@8.4.41): dependencies: browserslist: 4.23.3 - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 stylelint-config-html@1.1.0(postcss-html@1.7.0)(stylelint@16.8.1(typescript@5.5.4)): @@ -17852,14 +17687,14 @@ snapshots: stylelint: 16.8.1(typescript@5.5.4) stylelint-order: 6.0.4(stylelint@16.8.1(typescript@5.5.4)) - stylelint-config-recommended-scss@14.1.0(postcss@8.4.40)(stylelint@16.8.1(typescript@5.5.4)): + stylelint-config-recommended-scss@14.1.0(postcss@8.4.41)(stylelint@16.8.1(typescript@5.5.4)): dependencies: - postcss-scss: 4.0.9(postcss@8.4.40) + postcss-scss: 4.0.9(postcss@8.4.41) stylelint: 16.8.1(typescript@5.5.4) stylelint-config-recommended: 14.0.1(stylelint@16.8.1(typescript@5.5.4)) stylelint-scss: 6.5.0(stylelint@16.8.1(typescript@5.5.4)) optionalDependencies: - postcss: 8.4.40 + postcss: 8.4.41 stylelint-config-recommended-vue@1.5.0(postcss-html@1.7.0)(stylelint@16.8.1(typescript@5.5.4)): dependencies: @@ -17880,8 +17715,8 @@ snapshots: stylelint-order@6.0.4(stylelint@16.8.1(typescript@5.5.4)): dependencies: - postcss: 8.4.40 - postcss-sorting: 8.0.2(postcss@8.4.40) + postcss: 8.4.41 + postcss-sorting: 8.0.2(postcss@8.4.41) stylelint: 16.8.1(typescript@5.5.4) stylelint-prettier@5.0.2(prettier@3.3.3)(stylelint@16.8.1(typescript@5.5.4)): @@ -17930,9 +17765,9 @@ snapshots: micromatch: 4.0.7 normalize-path: 3.0.0 picocolors: 1.0.1 - postcss: 8.4.40 + postcss: 8.4.41 postcss-resolve-nested-selector: 0.1.4 - postcss-safe-parser: 7.0.0(postcss@8.4.40) + postcss-safe-parser: 7.0.0(postcss@8.4.41) postcss-selector-parser: 6.1.1 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 @@ -18044,11 +17879,11 @@ snapshots: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.1 - postcss: 8.4.40 - postcss-import: 15.1.0(postcss@8.4.40) - postcss-js: 4.0.1(postcss@8.4.40) - postcss-load-config: 4.0.2(postcss@8.4.40) - postcss-nested: 6.2.0(postcss@8.4.40) + postcss: 8.4.41 + postcss-import: 15.1.0(postcss@8.4.41) + postcss-js: 4.0.1(postcss@8.4.41) + postcss-load-config: 4.0.2(postcss@8.4.41) + postcss-nested: 6.2.0(postcss@8.4.41) postcss-selector-parser: 6.1.1 resolve: 1.22.8 sucrase: 3.35.0 @@ -18112,9 +17947,9 @@ snapshots: through@2.3.8: {} - tinybench@2.8.0: {} + tinybench@2.9.0: {} - tinyglobby@0.2.0: + tinyglobby@0.2.2: dependencies: fdir: 6.2.0(picomatch@4.0.2) picomatch: 4.0.2 @@ -18168,32 +18003,32 @@ snapshots: tslib@2.6.3: {} - turbo-darwin-64@2.0.11: + turbo-darwin-64@2.0.12: optional: true - turbo-darwin-arm64@2.0.11: + turbo-darwin-arm64@2.0.12: optional: true - turbo-linux-64@2.0.11: + turbo-linux-64@2.0.12: optional: true - turbo-linux-arm64@2.0.11: + turbo-linux-arm64@2.0.12: optional: true - turbo-windows-64@2.0.11: + turbo-windows-64@2.0.12: optional: true - turbo-windows-arm64@2.0.11: + turbo-windows-arm64@2.0.12: optional: true - turbo@2.0.11: + turbo@2.0.12: optionalDependencies: - turbo-darwin-64: 2.0.11 - turbo-darwin-arm64: 2.0.11 - turbo-linux-64: 2.0.11 - turbo-linux-arm64: 2.0.11 - turbo-windows-64: 2.0.11 - turbo-windows-arm64: 2.0.11 + turbo-darwin-64: 2.0.12 + turbo-darwin-arm64: 2.0.12 + turbo-linux-64: 2.0.12 + turbo-linux-arm64: 2.0.12 + turbo-windows-64: 2.0.12 + turbo-windows-arm64: 2.0.12 type-check@0.4.0: dependencies: @@ -18327,9 +18162,9 @@ snapshots: unicorn-magic@0.1.0: {} - unimport@3.9.1(rollup@4.19.2): + unimport@3.10.0(rollup@4.20.0): dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) acorn: 8.12.1 escape-string-regexp: 5.0.0 estree-walker: 3.0.3 @@ -18433,7 +18268,7 @@ snapshots: update-notifier@7.2.0: dependencies: - boxen: 8.0.0 + boxen: 8.0.1 chalk: 5.3.0 configstore: 7.0.0 import-lazy: 4.0.0 @@ -18466,10 +18301,10 @@ snapshots: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - vdirs@0.1.8(vue@3.4.35(typescript@5.5.4)): + vdirs@0.1.8(vue@3.4.36(typescript@5.5.4)): dependencies: evtd: 0.2.4 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) vite-hot-client@0.2.3(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3)): dependencies: @@ -18564,16 +18399,16 @@ snapshots: dependencies: debug: 4.3.6 pretty-bytes: 6.1.1 - tinyglobby: 0.2.0 + tinyglobby: 0.2.2 vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) workbox-build: 7.1.1 workbox-window: 7.1.0 transitivePeerDependencies: - supports-color - vite-plugin-vue-devtools@7.3.7(rollup@4.20.0)(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)): + vite-plugin-vue-devtools@7.3.7(rollup@4.20.0)(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)): dependencies: - '@vue/devtools-core': 7.3.7(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + '@vue/devtools-core': 7.3.7(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)) '@vue/devtools-kit': 7.3.7 '@vue/devtools-shared': 7.3.7 execa: 8.0.1 @@ -18595,7 +18430,7 @@ snapshots: '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2) '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2) '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2) - '@vue/compiler-dom': 3.4.35 + '@vue/compiler-dom': 3.4.36 kolorist: 1.8.0 magic-string: 0.30.11 vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) @@ -18605,7 +18440,7 @@ snapshots: vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3): dependencies: esbuild: 0.21.5 - postcss: 8.4.40 + postcss: 8.4.41 rollup: 4.20.0 optionalDependencies: '@types/node': 22.1.0 @@ -18613,26 +18448,26 @@ snapshots: sass: 1.77.8 terser: 5.31.3 - vitepress@1.3.2(@algolia/client-search@4.24.0)(@types/node@22.1.0)(async-validator@4.2.5)(axios@1.7.3)(nprogress@0.2.0)(postcss@8.4.40)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4): + vitepress@1.3.2(@algolia/client-search@4.24.0)(@types/node@22.1.0)(async-validator@4.2.5)(axios@1.7.3)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4): dependencies: '@docsearch/css': 3.6.1 - '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0) + '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.16.0) '@shikijs/core': 1.12.1 '@shikijs/transformers': 1.12.1 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + '@vitejs/plugin-vue': 5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)) '@vue/devtools-api': 7.3.7 - '@vue/shared': 3.4.35 - '@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.5.4)) - '@vueuse/integrations': 10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.4.35(typescript@5.5.4)) + '@vue/shared': 3.4.36 + '@vueuse/core': 10.11.0(vue@3.4.36(typescript@5.5.4)) + '@vueuse/integrations': 10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.36(typescript@5.5.4)) focus-trap: 7.5.4 mark.js: 8.11.1 minisearch: 7.1.0 shiki: 1.12.1 vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) optionalDependencies: - postcss: 8.4.40 + postcss: 8.4.41 transitivePeerDependencies: - '@algolia/client-search' - '@types/node' @@ -18675,7 +18510,7 @@ snapshots: magic-string: 0.30.11 pathe: 1.1.2 std-env: 3.7.0 - tinybench: 2.8.0 + tinybench: 2.9.0 tinypool: 1.0.0 tinyrainbow: 1.2.0 vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) @@ -18693,10 +18528,10 @@ snapshots: - supports-color - terser - vooks@0.2.12(vue@3.4.35(typescript@5.5.4)): + vooks@0.2.12(vue@3.4.36(typescript@5.5.4)): dependencies: evtd: 0.2.4 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) vscode-languageserver-textdocument@1.0.12: {} @@ -18704,9 +18539,9 @@ snapshots: vue-component-type-helpers@2.0.29: {} - vue-demi@0.14.10(vue@3.4.35(typescript@5.5.4)): + vue-demi@0.14.10(vue@3.4.36(typescript@5.5.4)): dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) vue-eslint-parser@9.4.3(eslint@9.8.0): dependencies: @@ -18721,17 +18556,17 @@ snapshots: transitivePeerDependencies: - supports-color - vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4)): + vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4)): dependencies: '@intlify/core-base': 9.13.1 '@intlify/shared': 9.13.1 '@vue/devtools-api': 6.6.3 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) - vue-router@4.4.2(vue@3.4.35(typescript@5.5.4)): + vue-router@4.4.3(vue@3.4.36(typescript@5.5.4)): dependencies: '@vue/devtools-api': 6.6.3 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) vue-tsc@2.0.29(typescript@5.5.4): dependencies: @@ -18740,31 +18575,31 @@ snapshots: semver: 7.6.3 typescript: 5.5.4 - vue-types@3.0.2(vue@3.4.35(typescript@5.5.4)): + vue-types@3.0.2(vue@3.4.36(typescript@5.5.4)): dependencies: is-plain-object: 3.0.1 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) - vue@3.4.35(typescript@5.5.4): + vue@3.4.36(typescript@5.5.4): dependencies: - '@vue/compiler-dom': 3.4.35 - '@vue/compiler-sfc': 3.4.35 - '@vue/runtime-dom': 3.4.35 - '@vue/server-renderer': 3.4.35(vue@3.4.35(typescript@5.5.4)) - '@vue/shared': 3.4.35 + '@vue/compiler-dom': 3.4.36 + '@vue/compiler-sfc': 3.4.36 + '@vue/runtime-dom': 3.4.36 + '@vue/server-renderer': 3.4.36(vue@3.4.36(typescript@5.5.4)) + '@vue/shared': 3.4.36 optionalDependencies: typescript: 5.5.4 - vueuc@0.4.58(vue@3.4.35(typescript@5.5.4)): + vueuc@0.4.58(vue@3.4.36(typescript@5.5.4)): dependencies: - '@css-render/vue3-ssr': 0.15.14(vue@3.4.35(typescript@5.5.4)) + '@css-render/vue3-ssr': 0.15.14(vue@3.4.36(typescript@5.5.4)) '@juggle/resize-observer': 3.4.0 css-render: 0.15.14 evtd: 0.2.4 seemly: 0.3.8 - vdirs: 0.1.8(vue@3.4.35(typescript@5.5.4)) - vooks: 0.2.12(vue@3.4.35(typescript@5.5.4)) - vue: 3.4.35(typescript@5.5.4) + vdirs: 0.1.8(vue@3.4.36(typescript@5.5.4)) + vooks: 0.2.12(vue@3.4.36(typescript@5.5.4)) + vue: 3.4.36(typescript@5.5.4) w3c-xmlserializer@5.0.0: dependencies: